chore: Updated api-report.

Signed-off-by: Marley Powell <Marley.Powell@exclaimer.com>
This commit is contained in:
Marley Powell
2021-11-11 14:19:26 +00:00
parent d75972b352
commit 9a84e7f4e9
+160
View File
@@ -27,6 +27,108 @@ export enum BuildStatus {
Postponed = 8,
}
// Warning: (ae-missing-release-tag) "CreatedBy" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal)
//
// @public (undocumented)
export interface CreatedBy {
// (undocumented)
displayName?: string;
// (undocumented)
id?: string;
// (undocumented)
imageUrl?: string;
// (undocumented)
uniqueName?: string;
}
// Warning: (ae-missing-release-tag) "DashboardPullRequest" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal)
//
// @public (undocumented)
export interface DashboardPullRequest {
// (undocumented)
createdBy?: CreatedBy;
// (undocumented)
creationDate?: string;
// (undocumented)
description?: string;
// (undocumented)
hasAutoComplete: boolean;
// (undocumented)
isDraft?: boolean;
// (undocumented)
link?: string;
// (undocumented)
policies?: Policy[];
// (undocumented)
pullRequestId?: number;
// (undocumented)
repository?: Repository;
// (undocumented)
reviewers?: Reviewer[];
// (undocumented)
status?: PullRequestStatus;
// (undocumented)
title?: string;
}
// Warning: (ae-missing-release-tag) "Policy" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal)
//
// @public (undocumented)
export interface Policy {
// (undocumented)
id?: number;
// (undocumented)
link?: string;
// (undocumented)
status?: PolicyEvaluationStatus;
// (undocumented)
text?: string;
// (undocumented)
type: PolicyType;
}
// Warning: (ae-missing-release-tag) "PolicyEvaluationStatus" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal)
//
// @public
export enum PolicyEvaluationStatus {
Approved = 2,
Broken = 5,
NotApplicable = 4,
Queued = 0,
Rejected = 3,
Running = 1,
}
// Warning: (ae-missing-release-tag) "PolicyType" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal)
//
// @public (undocumented)
export enum PolicyType {
// (undocumented)
Build = 'Build',
// (undocumented)
Comments = 'Comments',
// (undocumented)
MergeStrategy = 'MergeStrategy',
// (undocumented)
MinimumReviewers = 'MinimumReviewers',
// (undocumented)
RequiredReviewers = 'RequiredReviewers',
// (undocumented)
Status = 'Status',
}
// Warning: (ae-missing-release-tag) "PolicyTypeId" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal)
//
// @public (undocumented)
export const PolicyTypeId: {
Build: string;
Status: string;
MinimumReviewers: string;
Comments: string;
RequiredReviewers: string;
MergeStrategy: string;
};
// Warning: (ae-missing-release-tag) "PullRequest" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal)
//
// @public (undocumented)
@@ -63,6 +165,22 @@ export enum PullRequestStatus {
NotSet = 0,
}
// Warning: (ae-missing-release-tag) "PullRequestVoteStatus" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal)
//
// @public (undocumented)
export enum PullRequestVoteStatus {
// (undocumented)
Approved = 10,
// (undocumented)
ApprovedWithSuggestions = 5,
// (undocumented)
NoVote = 0,
// (undocumented)
Rejected = -10,
// (undocumented)
WaitingForAuthor = -5,
}
// Warning: (ae-missing-release-tag) "RepoBuild" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal)
//
// @public (undocumented)
@@ -86,5 +204,47 @@ export type RepoBuildOptions = {
top?: number;
};
// Warning: (ae-missing-release-tag) "Repository" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal)
//
// @public (undocumented)
export interface Repository {
// (undocumented)
id?: string;
// (undocumented)
name?: string;
// (undocumented)
url?: string;
}
// Warning: (ae-missing-release-tag) "Reviewer" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal)
//
// @public (undocumented)
export interface Reviewer {
// (undocumented)
displayName?: string;
// (undocumented)
id?: string;
// (undocumented)
imageUrl?: string;
// (undocumented)
isContainer?: boolean;
// (undocumented)
isRequired?: boolean;
// (undocumented)
voteStatus: PullRequestVoteStatus;
}
// Warning: (ae-missing-release-tag) "Team" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal)
//
// @public (undocumented)
export interface Team {
// (undocumented)
id?: string;
// (undocumented)
memberIds?: string[];
// (undocumented)
name?: string;
}
// (No @packageDocumentation comment for this package)
```