We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a0a5820 commit 8bf34feCopy full SHA for 8bf34fe
src/plus/integrations/providers/azure/models.ts
@@ -133,6 +133,19 @@ export interface AzureProject {
133
lastUpdateTime: string;
134
}
135
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
149
export interface AzureRepository {
150
id: string;
151
name: string;
0 commit comments