|
|
@ -1,7 +1,6 @@ |
|
|
|
import type { Disposable } from '../../api/gitlens'; |
|
|
|
import type { Container } from '../../container'; |
|
|
|
import type { Repository } from '../../git/models/repository'; |
|
|
|
import type { GkProviderId } from '../../gk/models/repositoryIdentities'; |
|
|
|
|
|
|
|
export type WorkspaceType = 'cloud' | 'local'; |
|
|
|
export type WorkspaceAutoAddSetting = 'disabled' | 'enabled' | 'prompt'; |
|
|
@ -150,7 +149,7 @@ export interface CloudWorkspaceRepositoryDescriptor { |
|
|
|
name: string; |
|
|
|
description: string; |
|
|
|
repository_id: string; |
|
|
|
provider: GkProviderId | null; |
|
|
|
provider: CloudWorkspaceProviderType | null; |
|
|
|
provider_project_name: string | null; |
|
|
|
provider_organization_id: string; |
|
|
|
provider_organization_name: string | null; |
|
|
@ -318,7 +317,7 @@ export interface CloudWorkspaceRepositoryData { |
|
|
|
name: string; |
|
|
|
description: string; |
|
|
|
repository_id: string; |
|
|
|
provider: GkProviderId | null; |
|
|
|
provider: CloudWorkspaceProviderType | null; |
|
|
|
provider_project_name: string | null; |
|
|
|
provider_organization_id: string; |
|
|
|
provider_organization_name: string | null; |
|
|
|