Skip to content

Commit 8bf34fe

Browse files
sergeibbbaxosoft-ramint
authored andcommitted
Provides more information about azure PR and issue types
(#3977, #3996)
1 parent a0a5820 commit 8bf34fe

File tree

1 file changed

+13
-0
lines changed
  • src/plus/integrations/providers/azure

1 file changed

+13
-0
lines changed

src/plus/integrations/providers/azure/models.ts

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,19 @@ export interface AzureProject {
133133
lastUpdateTime: string;
134134
}
135135

136+
export type AzureProjectState = 'createPending' | 'deleted' | 'deleting' | 'new' | 'unchanged' | 'wellFormed';
137+
export type AzureProjectVisibility = 'private' | 'public';
138+
139+
export interface AzureProject {
140+
id: string;
141+
name: string;
142+
url: string;
143+
state: AzureProjectState;
144+
revision: number;
145+
visibility: AzureProjectVisibility;
146+
lastUpdateTime: string;
147+
}
148+
136149
export interface AzureRepository {
137150
id: string;
138151
name: string;

0 commit comments

Comments
 (0)