@gitpod/supervisor-api-grpc 0.1.5-patch-1.2 → 0.1.5-pavel-git-status-fix.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/control_grpc_pb.d.ts +17 -1
- package/lib/control_grpc_pb.js +34 -0
- package/lib/control_pb.d.ts +37 -5
- package/lib/control_pb.js +301 -42
- package/lib/info_grpc_pb.d.ts +0 -1
- package/lib/info_pb.d.ts +46 -15
- package/lib/info_pb.js +470 -43
- package/lib/notification_grpc_pb.d.ts +122 -0
- package/lib/notification_grpc_pb.js +232 -0
- package/lib/notification_pb.d.ts +339 -0
- package/lib/notification_pb.js +2486 -0
- package/lib/port_grpc_pb.d.ts +108 -0
- package/lib/port_grpc_pb.js +187 -0
- package/lib/port_pb.d.ts +232 -0
- package/lib/port_pb.js +1666 -0
- package/lib/status_grpc_pb.d.ts +18 -1
- package/lib/status_grpc_pb.js +35 -0
- package/lib/status_pb.d.ts +155 -27
- package/lib/status_pb.js +1803 -546
- package/lib/terminal_grpc_pb.d.ts +34 -1
- package/lib/terminal_grpc_pb.js +68 -0
- package/lib/terminal_pb.d.ts +103 -45
- package/lib/terminal_pb.js +1055 -177
- package/lib/token_grpc_pb.d.ts +0 -1
- package/lib/token_pb.d.ts +9 -29
- package/lib/token_pb.js +256 -111
- package/package.json +10 -8
- package/pkg-yarn.lock +3 -3
- package/provenance-bundle.jsonl +4 -0
package/lib/info_pb.d.ts
CHANGED
|
@@ -26,37 +26,44 @@ export namespace WorkspaceInfoRequest {
|
|
|
26
26
|
export class WorkspaceInfoResponse extends jspb.Message {
|
|
27
27
|
getWorkspaceId(): string;
|
|
28
28
|
setWorkspaceId(value: string): WorkspaceInfoResponse;
|
|
29
|
-
|
|
30
29
|
getInstanceId(): string;
|
|
31
30
|
setInstanceId(value: string): WorkspaceInfoResponse;
|
|
32
|
-
|
|
33
31
|
getCheckoutLocation(): string;
|
|
34
32
|
setCheckoutLocation(value: string): WorkspaceInfoResponse;
|
|
35
33
|
|
|
36
|
-
|
|
37
34
|
hasWorkspaceLocationFile(): boolean;
|
|
38
35
|
clearWorkspaceLocationFile(): void;
|
|
39
36
|
getWorkspaceLocationFile(): string;
|
|
40
37
|
setWorkspaceLocationFile(value: string): WorkspaceInfoResponse;
|
|
41
38
|
|
|
42
|
-
|
|
43
39
|
hasWorkspaceLocationFolder(): boolean;
|
|
44
40
|
clearWorkspaceLocationFolder(): void;
|
|
45
41
|
getWorkspaceLocationFolder(): string;
|
|
46
42
|
setWorkspaceLocationFolder(value: string): WorkspaceInfoResponse;
|
|
47
|
-
|
|
48
43
|
getUserHome(): string;
|
|
49
44
|
setUserHome(value: string): WorkspaceInfoResponse;
|
|
50
45
|
|
|
51
|
-
|
|
52
46
|
hasGitpodApi(): boolean;
|
|
53
47
|
clearGitpodApi(): void;
|
|
54
48
|
getGitpodApi(): WorkspaceInfoResponse.GitpodAPI | undefined;
|
|
55
49
|
setGitpodApi(value?: WorkspaceInfoResponse.GitpodAPI): WorkspaceInfoResponse;
|
|
56
|
-
|
|
57
50
|
getGitpodHost(): string;
|
|
58
51
|
setGitpodHost(value: string): WorkspaceInfoResponse;
|
|
59
|
-
|
|
52
|
+
getWorkspaceContextUrl(): string;
|
|
53
|
+
setWorkspaceContextUrl(value: string): WorkspaceInfoResponse;
|
|
54
|
+
|
|
55
|
+
hasRepository(): boolean;
|
|
56
|
+
clearRepository(): void;
|
|
57
|
+
getRepository(): WorkspaceInfoResponse.Repository | undefined;
|
|
58
|
+
setRepository(value?: WorkspaceInfoResponse.Repository): WorkspaceInfoResponse;
|
|
59
|
+
getWorkspaceClusterHost(): string;
|
|
60
|
+
setWorkspaceClusterHost(value: string): WorkspaceInfoResponse;
|
|
61
|
+
getWorkspaceUrl(): string;
|
|
62
|
+
setWorkspaceUrl(value: string): WorkspaceInfoResponse;
|
|
63
|
+
getIdeAlias(): string;
|
|
64
|
+
setIdeAlias(value: string): WorkspaceInfoResponse;
|
|
65
|
+
getIdePort(): number;
|
|
66
|
+
setIdePort(value: number): WorkspaceInfoResponse;
|
|
60
67
|
|
|
61
68
|
getWorkspaceLocationCase(): WorkspaceInfoResponse.WorkspaceLocationCase;
|
|
62
69
|
|
|
@@ -80,17 +87,21 @@ export namespace WorkspaceInfoResponse {
|
|
|
80
87
|
userHome: string,
|
|
81
88
|
gitpodApi?: WorkspaceInfoResponse.GitpodAPI.AsObject,
|
|
82
89
|
gitpodHost: string,
|
|
90
|
+
workspaceContextUrl: string,
|
|
91
|
+
repository?: WorkspaceInfoResponse.Repository.AsObject,
|
|
92
|
+
workspaceClusterHost: string,
|
|
93
|
+
workspaceUrl: string,
|
|
94
|
+
ideAlias: string,
|
|
95
|
+
idePort: number,
|
|
83
96
|
}
|
|
84
97
|
|
|
85
98
|
|
|
86
99
|
export class GitpodAPI extends jspb.Message {
|
|
87
100
|
getEndpoint(): string;
|
|
88
101
|
setEndpoint(value: string): GitpodAPI;
|
|
89
|
-
|
|
90
102
|
getHost(): string;
|
|
91
103
|
setHost(value: string): GitpodAPI;
|
|
92
104
|
|
|
93
|
-
|
|
94
105
|
serializeBinary(): Uint8Array;
|
|
95
106
|
toObject(includeInstance?: boolean): GitpodAPI.AsObject;
|
|
96
107
|
static toObject(includeInstance: boolean, msg: GitpodAPI): GitpodAPI.AsObject;
|
|
@@ -108,14 +119,34 @@ export namespace WorkspaceInfoResponse {
|
|
|
108
119
|
}
|
|
109
120
|
}
|
|
110
121
|
|
|
122
|
+
export class Repository extends jspb.Message {
|
|
123
|
+
getOwner(): string;
|
|
124
|
+
setOwner(value: string): Repository;
|
|
125
|
+
getName(): string;
|
|
126
|
+
setName(value: string): Repository;
|
|
111
127
|
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
128
|
+
serializeBinary(): Uint8Array;
|
|
129
|
+
toObject(includeInstance?: boolean): Repository.AsObject;
|
|
130
|
+
static toObject(includeInstance: boolean, msg: Repository): Repository.AsObject;
|
|
131
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
132
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
133
|
+
static serializeBinaryToWriter(message: Repository, writer: jspb.BinaryWriter): void;
|
|
134
|
+
static deserializeBinary(bytes: Uint8Array): Repository;
|
|
135
|
+
static deserializeBinaryFromReader(message: Repository, reader: jspb.BinaryReader): Repository;
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
export namespace Repository {
|
|
139
|
+
export type AsObject = {
|
|
140
|
+
owner: string,
|
|
141
|
+
name: string,
|
|
142
|
+
}
|
|
143
|
+
}
|
|
116
144
|
|
|
117
|
-
WORKSPACE_LOCATION_FOLDER = 5,
|
|
118
145
|
|
|
146
|
+
export enum WorkspaceLocationCase {
|
|
147
|
+
WORKSPACE_LOCATION_NOT_SET = 0,
|
|
148
|
+
WORKSPACE_LOCATION_FILE = 4,
|
|
149
|
+
WORKSPACE_LOCATION_FOLDER = 5,
|
|
119
150
|
}
|
|
120
151
|
|
|
121
152
|
}
|