@gitpod/supervisor-api-grpc 0.1.5-patch-2-fork.0 → 0.1.5-port-description-3059-fork.2
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 +0 -1
- package/lib/control_pb.d.ts +0 -5
- package/lib/control_pb.js +32 -42
- package/lib/info_grpc_pb.d.ts +0 -1
- package/lib/info_pb.d.ts +42 -15
- package/lib/info_pb.js +451 -45
- package/lib/notification_grpc_pb.d.ts +0 -1
- package/lib/notification_grpc_pb.js +1 -1
- package/lib/notification_pb.d.ts +0 -8
- package/lib/notification_pb.js +108 -58
- 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 +1672 -0
- package/lib/status_grpc_pb.d.ts +1 -1
- package/lib/status_grpc_pb.js +1 -0
- package/lib/status_pb.d.ts +80 -27
- package/lib/status_pb.js +887 -213
- 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 +1061 -177
- package/lib/token_grpc_pb.d.ts +0 -1
- package/lib/token_pb.d.ts +4 -30
- package/lib/token_pb.js +214 -114
- package/package.json +8 -7
- package/pkg-yarn.lock +3 -3
package/lib/token_grpc_pb.d.ts
CHANGED
|
@@ -5,7 +5,6 @@
|
|
|
5
5
|
/* eslint-disable */
|
|
6
6
|
|
|
7
7
|
import * as grpc from "@grpc/grpc-js";
|
|
8
|
-
import {handleClientStreamingCall} from "@grpc/grpc-js/build/src/server-call";
|
|
9
8
|
import * as token_pb from "./token_pb";
|
|
10
9
|
import * as google_protobuf_timestamp_pb from "google-protobuf/google/protobuf/timestamp_pb";
|
|
11
10
|
|
package/lib/token_pb.d.ts
CHANGED
|
@@ -10,19 +10,15 @@ import * as google_protobuf_timestamp_pb from "google-protobuf/google/protobuf/t
|
|
|
10
10
|
export class GetTokenRequest extends jspb.Message {
|
|
11
11
|
getHost(): string;
|
|
12
12
|
setHost(value: string): GetTokenRequest;
|
|
13
|
-
|
|
14
13
|
clearScopeList(): void;
|
|
15
14
|
getScopeList(): Array<string>;
|
|
16
15
|
setScopeList(value: Array<string>): GetTokenRequest;
|
|
17
16
|
addScope(value: string, index?: number): string;
|
|
18
|
-
|
|
19
17
|
getDescription(): string;
|
|
20
18
|
setDescription(value: string): GetTokenRequest;
|
|
21
|
-
|
|
22
19
|
getKind(): string;
|
|
23
20
|
setKind(value: string): GetTokenRequest;
|
|
24
21
|
|
|
25
|
-
|
|
26
22
|
serializeBinary(): Uint8Array;
|
|
27
23
|
toObject(includeInstance?: boolean): GetTokenRequest.AsObject;
|
|
28
24
|
static toObject(includeInstance: boolean, msg: GetTokenRequest): GetTokenRequest.AsObject;
|
|
@@ -45,16 +41,13 @@ export namespace GetTokenRequest {
|
|
|
45
41
|
export class GetTokenResponse extends jspb.Message {
|
|
46
42
|
getToken(): string;
|
|
47
43
|
setToken(value: string): GetTokenResponse;
|
|
48
|
-
|
|
49
44
|
getUser(): string;
|
|
50
45
|
setUser(value: string): GetTokenResponse;
|
|
51
|
-
|
|
52
46
|
clearScopeList(): void;
|
|
53
47
|
getScopeList(): Array<string>;
|
|
54
48
|
setScopeList(value: Array<string>): GetTokenResponse;
|
|
55
49
|
addScope(value: string, index?: number): string;
|
|
56
50
|
|
|
57
|
-
|
|
58
51
|
serializeBinary(): Uint8Array;
|
|
59
52
|
toObject(includeInstance?: boolean): GetTokenResponse.AsObject;
|
|
60
53
|
static toObject(includeInstance: boolean, msg: GetTokenResponse): GetTokenResponse.AsObject;
|
|
@@ -76,28 +69,22 @@ export namespace GetTokenResponse {
|
|
|
76
69
|
export class SetTokenRequest extends jspb.Message {
|
|
77
70
|
getHost(): string;
|
|
78
71
|
setHost(value: string): SetTokenRequest;
|
|
79
|
-
|
|
80
72
|
clearScopeList(): void;
|
|
81
73
|
getScopeList(): Array<string>;
|
|
82
74
|
setScopeList(value: Array<string>): SetTokenRequest;
|
|
83
75
|
addScope(value: string, index?: number): string;
|
|
84
|
-
|
|
85
76
|
getToken(): string;
|
|
86
77
|
setToken(value: string): SetTokenRequest;
|
|
87
78
|
|
|
88
|
-
|
|
89
79
|
hasExpiryDate(): boolean;
|
|
90
80
|
clearExpiryDate(): void;
|
|
91
81
|
getExpiryDate(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
92
82
|
setExpiryDate(value?: google_protobuf_timestamp_pb.Timestamp): SetTokenRequest;
|
|
93
|
-
|
|
94
83
|
getReuse(): TokenReuse;
|
|
95
84
|
setReuse(value: TokenReuse): SetTokenRequest;
|
|
96
|
-
|
|
97
85
|
getKind(): string;
|
|
98
86
|
setKind(value: string): SetTokenRequest;
|
|
99
87
|
|
|
100
|
-
|
|
101
88
|
serializeBinary(): Uint8Array;
|
|
102
89
|
toObject(includeInstance?: boolean): SetTokenRequest.AsObject;
|
|
103
90
|
static toObject(includeInstance: boolean, msg: SetTokenRequest): SetTokenRequest.AsObject;
|
|
@@ -143,16 +130,13 @@ export class ClearTokenRequest extends jspb.Message {
|
|
|
143
130
|
getValue(): string;
|
|
144
131
|
setValue(value: string): ClearTokenRequest;
|
|
145
132
|
|
|
146
|
-
|
|
147
133
|
hasAll(): boolean;
|
|
148
134
|
clearAll(): void;
|
|
149
135
|
getAll(): boolean;
|
|
150
136
|
setAll(value: boolean): ClearTokenRequest;
|
|
151
|
-
|
|
152
137
|
getKind(): string;
|
|
153
138
|
setKind(value: string): ClearTokenRequest;
|
|
154
139
|
|
|
155
|
-
|
|
156
140
|
getTokenCase(): ClearTokenRequest.TokenCase;
|
|
157
141
|
|
|
158
142
|
serializeBinary(): Uint8Array;
|
|
@@ -174,11 +158,8 @@ export namespace ClearTokenRequest {
|
|
|
174
158
|
|
|
175
159
|
export enum TokenCase {
|
|
176
160
|
TOKEN_NOT_SET = 0,
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
ALL = 2,
|
|
181
|
-
|
|
161
|
+
VALUE = 1,
|
|
162
|
+
ALL = 2,
|
|
182
163
|
}
|
|
183
164
|
|
|
184
165
|
}
|
|
@@ -207,13 +188,11 @@ export class ProvideTokenRequest extends jspb.Message {
|
|
|
207
188
|
getRegistration(): ProvideTokenRequest.RegisterProvider | undefined;
|
|
208
189
|
setRegistration(value?: ProvideTokenRequest.RegisterProvider): ProvideTokenRequest;
|
|
209
190
|
|
|
210
|
-
|
|
211
191
|
hasAnswer(): boolean;
|
|
212
192
|
clearAnswer(): void;
|
|
213
193
|
getAnswer(): SetTokenRequest | undefined;
|
|
214
194
|
setAnswer(value?: SetTokenRequest): ProvideTokenRequest;
|
|
215
195
|
|
|
216
|
-
|
|
217
196
|
getMessageCase(): ProvideTokenRequest.MessageCase;
|
|
218
197
|
|
|
219
198
|
serializeBinary(): Uint8Array;
|
|
@@ -237,7 +216,6 @@ export namespace ProvideTokenRequest {
|
|
|
237
216
|
getKind(): string;
|
|
238
217
|
setKind(value: string): RegisterProvider;
|
|
239
218
|
|
|
240
|
-
|
|
241
219
|
serializeBinary(): Uint8Array;
|
|
242
220
|
toObject(includeInstance?: boolean): RegisterProvider.AsObject;
|
|
243
221
|
static toObject(includeInstance: boolean, msg: RegisterProvider): RegisterProvider.AsObject;
|
|
@@ -257,11 +235,8 @@ export namespace ProvideTokenRequest {
|
|
|
257
235
|
|
|
258
236
|
export enum MessageCase {
|
|
259
237
|
MESSAGE_NOT_SET = 0,
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
ANSWER = 2,
|
|
264
|
-
|
|
238
|
+
REGISTRATION = 1,
|
|
239
|
+
ANSWER = 2,
|
|
265
240
|
}
|
|
266
241
|
|
|
267
242
|
}
|
|
@@ -273,7 +248,6 @@ export class ProvideTokenResponse extends jspb.Message {
|
|
|
273
248
|
getRequest(): GetTokenRequest | undefined;
|
|
274
249
|
setRequest(value?: GetTokenRequest): ProvideTokenResponse;
|
|
275
250
|
|
|
276
|
-
|
|
277
251
|
serializeBinary(): Uint8Array;
|
|
278
252
|
toObject(includeInstance?: boolean): ProvideTokenResponse.AsObject;
|
|
279
253
|
static toObject(includeInstance: boolean, msg: ProvideTokenResponse): ProvideTokenResponse.AsObject;
|