feat: Created PullRequestsDashboardProvider for resolving team and team member relations
Signed-off-by: Marley Powell <Marley.Powell@exclaimer.com>
This commit is contained in:
@@ -270,9 +270,27 @@ export interface Team {
|
||||
// (undocumented)
|
||||
id?: string;
|
||||
// (undocumented)
|
||||
memberIds?: string[];
|
||||
members?: string[];
|
||||
// (undocumented)
|
||||
name?: string;
|
||||
// (undocumented)
|
||||
projectId?: string;
|
||||
// (undocumented)
|
||||
projectName?: string;
|
||||
}
|
||||
|
||||
// Warning: (ae-missing-release-tag) "TeamMember" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal)
|
||||
//
|
||||
// @public (undocumented)
|
||||
export interface TeamMember {
|
||||
// (undocumented)
|
||||
displayName?: string;
|
||||
// (undocumented)
|
||||
id?: string;
|
||||
// (undocumented)
|
||||
memberOf?: string[];
|
||||
// (undocumented)
|
||||
uniqueName?: string;
|
||||
}
|
||||
|
||||
// (No @packageDocumentation comment for this package)
|
||||
|
||||
@@ -178,7 +178,16 @@ export interface Repository {
|
||||
export interface Team {
|
||||
id?: string;
|
||||
name?: string;
|
||||
memberIds?: string[];
|
||||
projectId?: string;
|
||||
projectName?: string;
|
||||
members?: string[];
|
||||
}
|
||||
|
||||
export interface TeamMember {
|
||||
id?: string;
|
||||
displayName?: string;
|
||||
uniqueName?: string;
|
||||
memberOf?: string[];
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user