This repository was archived by the owner on Apr 3, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +13
-14
lines changed Expand file tree Collapse file tree 1 file changed +13
-14
lines changed Original file line number Diff line number Diff line change @@ -46,10 +46,10 @@ export interface AliasContext {
4646}
4747
4848export interface CloudRepoSourceContext {
49- repoId : RepoId ;
50- revisionId : string ;
51- aliasName ?: string ;
52- aliasContext : AliasContext ;
49+ cloudRepo : {
50+ repoId : RepoId ; revisionId : string ;
51+ aliasName ?: string ; aliasContext : AliasContext ;
52+ } ;
5353}
5454
5555export interface CloudWorkspaceId {
@@ -58,22 +58,21 @@ export interface CloudWorkspaceId {
5858}
5959
6060export interface CloudWorkspaceSourceContext {
61- workspaceId : CloudWorkspaceId ;
62- snapshotId : string ;
61+ cloudWorkspace : { workspaceId : CloudWorkspaceId ; snapshotId : string ; } ;
6362}
6463
6564export interface GerritSourceContext {
66- hostUri : string ;
67- gerritProject : string ;
68- // one of:
69- revisionId ?: string ;
70- aliasName ?: string ;
71- aliasContext ?: AliasContext ;
65+ gerrit : {
66+ hostUri : string ; gerritProject : string ;
67+ // one of:
68+ revisionId ?: string ;
69+ aliasName ?: string ;
70+ aliasContext ?: AliasContext ;
71+ } ;
7272}
7373
7474export interface GitSourceContext {
75- url : string ;
76- revisionId : string ;
75+ git : { url : string ; revisionId : string ; } ;
7776}
7877
7978export interface ResolvedDebugAgentConfig extends GoogleAuthOptions {
You can’t perform that action at this time.
0 commit comments