@gitpod/public-api 0.1.5-platform-artificial-job-ceae6d6621b5b260816d.0 → 0.1.5-platform-artificial-job-211a22b3f5cbaa18b05e.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (47) hide show
  1. package/lib/gitpod/experimental/v1/ide_client_connectweb.d.ts +38 -0
  2. package/lib/gitpod/experimental/v1/ide_client_connectweb.d.ts.map +1 -0
  3. package/lib/gitpod/experimental/v1/ide_client_connectweb.js +45 -0
  4. package/lib/gitpod/experimental/v1/ide_client_connectweb.js.map +1 -0
  5. package/lib/gitpod/experimental/v1/ide_client_pb.d.ts +68 -0
  6. package/lib/gitpod/experimental/v1/ide_client_pb.d.ts.map +1 -0
  7. package/lib/gitpod/experimental/v1/ide_client_pb.js +122 -0
  8. package/lib/gitpod/experimental/v1/ide_client_pb.js.map +1 -0
  9. package/lib/gitpod/experimental/v1/pagination_pb.d.ts +7 -4
  10. package/lib/gitpod/experimental/v1/pagination_pb.d.ts.map +1 -1
  11. package/lib/gitpod/experimental/v1/pagination_pb.js +8 -5
  12. package/lib/gitpod/experimental/v1/pagination_pb.js.map +1 -1
  13. package/lib/gitpod/experimental/v1/projects_connectweb.d.ts +60 -0
  14. package/lib/gitpod/experimental/v1/projects_connectweb.d.ts.map +1 -0
  15. package/lib/gitpod/experimental/v1/projects_connectweb.js +67 -0
  16. package/lib/gitpod/experimental/v1/projects_connectweb.js.map +1 -0
  17. package/lib/gitpod/experimental/v1/projects_pb.d.ts +319 -0
  18. package/lib/gitpod/experimental/v1/projects_pb.d.ts.map +1 -0
  19. package/lib/gitpod/experimental/v1/projects_pb.js +474 -0
  20. package/lib/gitpod/experimental/v1/projects_pb.js.map +1 -0
  21. package/lib/gitpod/experimental/v1/teams_connectweb.d.ts +78 -1
  22. package/lib/gitpod/experimental/v1/teams_connectweb.d.ts.map +1 -1
  23. package/lib/gitpod/experimental/v1/teams_connectweb.js +77 -0
  24. package/lib/gitpod/experimental/v1/teams_connectweb.js.map +1 -1
  25. package/lib/gitpod/experimental/v1/teams_pb.d.ts +279 -1
  26. package/lib/gitpod/experimental/v1/teams_pb.d.ts.map +1 -1
  27. package/lib/gitpod/experimental/v1/teams_pb.js +443 -1
  28. package/lib/gitpod/experimental/v1/teams_pb.js.map +1 -1
  29. package/lib/gitpod/experimental/v1/tokens_connectweb.d.ts +82 -0
  30. package/lib/gitpod/experimental/v1/tokens_connectweb.d.ts.map +1 -0
  31. package/lib/gitpod/experimental/v1/tokens_connectweb.js +89 -0
  32. package/lib/gitpod/experimental/v1/tokens_connectweb.js.map +1 -0
  33. package/lib/gitpod/experimental/v1/tokens_pb.d.ts +290 -0
  34. package/lib/gitpod/experimental/v1/tokens_pb.d.ts.map +1 -0
  35. package/lib/gitpod/experimental/v1/tokens_pb.js +428 -0
  36. package/lib/gitpod/experimental/v1/tokens_pb.js.map +1 -0
  37. package/lib/gitpod/experimental/v1/user_connectweb.d.ts +71 -0
  38. package/lib/gitpod/experimental/v1/user_connectweb.d.ts.map +1 -0
  39. package/lib/gitpod/experimental/v1/user_connectweb.js +78 -0
  40. package/lib/gitpod/experimental/v1/user_connectweb.js.map +1 -0
  41. package/lib/gitpod/experimental/v1/user_pb.d.ts +254 -0
  42. package/lib/gitpod/experimental/v1/user_pb.d.ts.map +1 -0
  43. package/lib/gitpod/experimental/v1/user_pb.js +401 -0
  44. package/lib/gitpod/experimental/v1/user_pb.js.map +1 -0
  45. package/package.json +1 -1
  46. package/pkg-yarn.lock +1 -1
  47. package/provenance-bundle.jsonl +2 -2
@@ -0,0 +1,428 @@
1
+ "use strict";
2
+ /**
3
+ * Copyright (c) 2022 Gitpod GmbH. All rights reserved.
4
+ * Licensed under the GNU Affero General Public License (AGPL).
5
+ * See License-AGPL.txt in the project root for license information.
6
+ */
7
+ Object.defineProperty(exports, "__esModule", { value: true });
8
+ exports.DeletePersonalAccessTokenResponse = exports.DeletePersonalAccessTokenRequest = exports.UpdatePersonalAccessTokenResponse = exports.UpdatePersonalAccessTokenRequest = exports.RegeneratePersonalAccessTokenResponse = exports.RegeneratePersonalAccessTokenRequest = exports.ListPersonalAccessTokensResponse = exports.ListPersonalAccessTokensRequest = exports.GetPersonalAccessTokenResponse = exports.GetPersonalAccessTokenRequest = exports.CreatePersonalAccessTokenResponse = exports.CreatePersonalAccessTokenRequest = exports.PersonalAccessToken = void 0;
9
+ const protobuf_1 = require("@bufbuild/protobuf");
10
+ const pagination_pb_js_1 = require("./pagination_pb.js");
11
+ /**
12
+ * PersonalAccessToken represents details of an access token for personal use.
13
+ *
14
+ * @generated from message gitpod.experimental.v1.PersonalAccessToken
15
+ */
16
+ class PersonalAccessToken extends protobuf_1.Message {
17
+ constructor(data) {
18
+ super();
19
+ /**
20
+ * id is the unique identifier of this token
21
+ * Read only.
22
+ *
23
+ * @generated from field: string id = 1;
24
+ */
25
+ this.id = "";
26
+ /**
27
+ * value is the secret value of the token
28
+ * The value property is only populated when the PersonalAccessToken is first created, and never again.
29
+ * Read only.
30
+ *
31
+ * @generated from field: string value = 2;
32
+ */
33
+ this.value = "";
34
+ /**
35
+ * name is the name of the token for humans, set by the user
36
+ *
37
+ * @generated from field: string name = 3;
38
+ */
39
+ this.name = "";
40
+ /**
41
+ * description is the description of the token set by the user
42
+ *
43
+ * @generated from field: string description = 4;
44
+ */
45
+ this.description = "";
46
+ /**
47
+ * scopes are the permission scopes attached to this token.
48
+ * By default, no scopes are attached and therefore no access is granted to this token.
49
+ * Specifying '*' grants all permissions the owner of the token has.
50
+ *
51
+ * @generated from field: repeated string scopes = 6;
52
+ */
53
+ this.scopes = [];
54
+ protobuf_1.proto3.util.initPartial(data, this);
55
+ }
56
+ static fromBinary(bytes, options) {
57
+ return new PersonalAccessToken().fromBinary(bytes, options);
58
+ }
59
+ static fromJson(jsonValue, options) {
60
+ return new PersonalAccessToken().fromJson(jsonValue, options);
61
+ }
62
+ static fromJsonString(jsonString, options) {
63
+ return new PersonalAccessToken().fromJsonString(jsonString, options);
64
+ }
65
+ static equals(a, b) {
66
+ return protobuf_1.proto3.util.equals(PersonalAccessToken, a, b);
67
+ }
68
+ }
69
+ exports.PersonalAccessToken = PersonalAccessToken;
70
+ PersonalAccessToken.runtime = protobuf_1.proto3;
71
+ PersonalAccessToken.typeName = "gitpod.experimental.v1.PersonalAccessToken";
72
+ PersonalAccessToken.fields = protobuf_1.proto3.util.newFieldList(() => [
73
+ { no: 1, name: "id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
74
+ { no: 2, name: "value", kind: "scalar", T: 9 /* ScalarType.STRING */ },
75
+ { no: 3, name: "name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
76
+ { no: 4, name: "description", kind: "scalar", T: 9 /* ScalarType.STRING */ },
77
+ { no: 5, name: "expiration_time", kind: "message", T: protobuf_1.Timestamp },
78
+ { no: 6, name: "scopes", kind: "scalar", T: 9 /* ScalarType.STRING */, repeated: true },
79
+ { no: 7, name: "created_at", kind: "message", T: protobuf_1.Timestamp },
80
+ ]);
81
+ /**
82
+ * @generated from message gitpod.experimental.v1.CreatePersonalAccessTokenRequest
83
+ */
84
+ class CreatePersonalAccessTokenRequest extends protobuf_1.Message {
85
+ constructor(data) {
86
+ super();
87
+ protobuf_1.proto3.util.initPartial(data, this);
88
+ }
89
+ static fromBinary(bytes, options) {
90
+ return new CreatePersonalAccessTokenRequest().fromBinary(bytes, options);
91
+ }
92
+ static fromJson(jsonValue, options) {
93
+ return new CreatePersonalAccessTokenRequest().fromJson(jsonValue, options);
94
+ }
95
+ static fromJsonString(jsonString, options) {
96
+ return new CreatePersonalAccessTokenRequest().fromJsonString(jsonString, options);
97
+ }
98
+ static equals(a, b) {
99
+ return protobuf_1.proto3.util.equals(CreatePersonalAccessTokenRequest, a, b);
100
+ }
101
+ }
102
+ exports.CreatePersonalAccessTokenRequest = CreatePersonalAccessTokenRequest;
103
+ CreatePersonalAccessTokenRequest.runtime = protobuf_1.proto3;
104
+ CreatePersonalAccessTokenRequest.typeName = "gitpod.experimental.v1.CreatePersonalAccessTokenRequest";
105
+ CreatePersonalAccessTokenRequest.fields = protobuf_1.proto3.util.newFieldList(() => [
106
+ { no: 1, name: "token", kind: "message", T: PersonalAccessToken },
107
+ ]);
108
+ /**
109
+ * @generated from message gitpod.experimental.v1.CreatePersonalAccessTokenResponse
110
+ */
111
+ class CreatePersonalAccessTokenResponse extends protobuf_1.Message {
112
+ constructor(data) {
113
+ super();
114
+ protobuf_1.proto3.util.initPartial(data, this);
115
+ }
116
+ static fromBinary(bytes, options) {
117
+ return new CreatePersonalAccessTokenResponse().fromBinary(bytes, options);
118
+ }
119
+ static fromJson(jsonValue, options) {
120
+ return new CreatePersonalAccessTokenResponse().fromJson(jsonValue, options);
121
+ }
122
+ static fromJsonString(jsonString, options) {
123
+ return new CreatePersonalAccessTokenResponse().fromJsonString(jsonString, options);
124
+ }
125
+ static equals(a, b) {
126
+ return protobuf_1.proto3.util.equals(CreatePersonalAccessTokenResponse, a, b);
127
+ }
128
+ }
129
+ exports.CreatePersonalAccessTokenResponse = CreatePersonalAccessTokenResponse;
130
+ CreatePersonalAccessTokenResponse.runtime = protobuf_1.proto3;
131
+ CreatePersonalAccessTokenResponse.typeName = "gitpod.experimental.v1.CreatePersonalAccessTokenResponse";
132
+ CreatePersonalAccessTokenResponse.fields = protobuf_1.proto3.util.newFieldList(() => [
133
+ { no: 1, name: "token", kind: "message", T: PersonalAccessToken },
134
+ ]);
135
+ /**
136
+ * @generated from message gitpod.experimental.v1.GetPersonalAccessTokenRequest
137
+ */
138
+ class GetPersonalAccessTokenRequest extends protobuf_1.Message {
139
+ constructor(data) {
140
+ super();
141
+ /**
142
+ * @generated from field: string id = 1;
143
+ */
144
+ this.id = "";
145
+ protobuf_1.proto3.util.initPartial(data, this);
146
+ }
147
+ static fromBinary(bytes, options) {
148
+ return new GetPersonalAccessTokenRequest().fromBinary(bytes, options);
149
+ }
150
+ static fromJson(jsonValue, options) {
151
+ return new GetPersonalAccessTokenRequest().fromJson(jsonValue, options);
152
+ }
153
+ static fromJsonString(jsonString, options) {
154
+ return new GetPersonalAccessTokenRequest().fromJsonString(jsonString, options);
155
+ }
156
+ static equals(a, b) {
157
+ return protobuf_1.proto3.util.equals(GetPersonalAccessTokenRequest, a, b);
158
+ }
159
+ }
160
+ exports.GetPersonalAccessTokenRequest = GetPersonalAccessTokenRequest;
161
+ GetPersonalAccessTokenRequest.runtime = protobuf_1.proto3;
162
+ GetPersonalAccessTokenRequest.typeName = "gitpod.experimental.v1.GetPersonalAccessTokenRequest";
163
+ GetPersonalAccessTokenRequest.fields = protobuf_1.proto3.util.newFieldList(() => [
164
+ { no: 1, name: "id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
165
+ ]);
166
+ /**
167
+ * @generated from message gitpod.experimental.v1.GetPersonalAccessTokenResponse
168
+ */
169
+ class GetPersonalAccessTokenResponse extends protobuf_1.Message {
170
+ constructor(data) {
171
+ super();
172
+ protobuf_1.proto3.util.initPartial(data, this);
173
+ }
174
+ static fromBinary(bytes, options) {
175
+ return new GetPersonalAccessTokenResponse().fromBinary(bytes, options);
176
+ }
177
+ static fromJson(jsonValue, options) {
178
+ return new GetPersonalAccessTokenResponse().fromJson(jsonValue, options);
179
+ }
180
+ static fromJsonString(jsonString, options) {
181
+ return new GetPersonalAccessTokenResponse().fromJsonString(jsonString, options);
182
+ }
183
+ static equals(a, b) {
184
+ return protobuf_1.proto3.util.equals(GetPersonalAccessTokenResponse, a, b);
185
+ }
186
+ }
187
+ exports.GetPersonalAccessTokenResponse = GetPersonalAccessTokenResponse;
188
+ GetPersonalAccessTokenResponse.runtime = protobuf_1.proto3;
189
+ GetPersonalAccessTokenResponse.typeName = "gitpod.experimental.v1.GetPersonalAccessTokenResponse";
190
+ GetPersonalAccessTokenResponse.fields = protobuf_1.proto3.util.newFieldList(() => [
191
+ { no: 1, name: "token", kind: "message", T: PersonalAccessToken },
192
+ ]);
193
+ /**
194
+ * @generated from message gitpod.experimental.v1.ListPersonalAccessTokensRequest
195
+ */
196
+ class ListPersonalAccessTokensRequest extends protobuf_1.Message {
197
+ constructor(data) {
198
+ super();
199
+ protobuf_1.proto3.util.initPartial(data, this);
200
+ }
201
+ static fromBinary(bytes, options) {
202
+ return new ListPersonalAccessTokensRequest().fromBinary(bytes, options);
203
+ }
204
+ static fromJson(jsonValue, options) {
205
+ return new ListPersonalAccessTokensRequest().fromJson(jsonValue, options);
206
+ }
207
+ static fromJsonString(jsonString, options) {
208
+ return new ListPersonalAccessTokensRequest().fromJsonString(jsonString, options);
209
+ }
210
+ static equals(a, b) {
211
+ return protobuf_1.proto3.util.equals(ListPersonalAccessTokensRequest, a, b);
212
+ }
213
+ }
214
+ exports.ListPersonalAccessTokensRequest = ListPersonalAccessTokensRequest;
215
+ ListPersonalAccessTokensRequest.runtime = protobuf_1.proto3;
216
+ ListPersonalAccessTokensRequest.typeName = "gitpod.experimental.v1.ListPersonalAccessTokensRequest";
217
+ ListPersonalAccessTokensRequest.fields = protobuf_1.proto3.util.newFieldList(() => [
218
+ { no: 1, name: "pagination", kind: "message", T: pagination_pb_js_1.Pagination },
219
+ ]);
220
+ /**
221
+ * @generated from message gitpod.experimental.v1.ListPersonalAccessTokensResponse
222
+ */
223
+ class ListPersonalAccessTokensResponse extends protobuf_1.Message {
224
+ constructor(data) {
225
+ super();
226
+ /**
227
+ * @generated from field: repeated gitpod.experimental.v1.PersonalAccessToken tokens = 1;
228
+ */
229
+ this.tokens = [];
230
+ /**
231
+ * @generated from field: int64 total_results = 2;
232
+ */
233
+ this.totalResults = protobuf_1.protoInt64.zero;
234
+ protobuf_1.proto3.util.initPartial(data, this);
235
+ }
236
+ static fromBinary(bytes, options) {
237
+ return new ListPersonalAccessTokensResponse().fromBinary(bytes, options);
238
+ }
239
+ static fromJson(jsonValue, options) {
240
+ return new ListPersonalAccessTokensResponse().fromJson(jsonValue, options);
241
+ }
242
+ static fromJsonString(jsonString, options) {
243
+ return new ListPersonalAccessTokensResponse().fromJsonString(jsonString, options);
244
+ }
245
+ static equals(a, b) {
246
+ return protobuf_1.proto3.util.equals(ListPersonalAccessTokensResponse, a, b);
247
+ }
248
+ }
249
+ exports.ListPersonalAccessTokensResponse = ListPersonalAccessTokensResponse;
250
+ ListPersonalAccessTokensResponse.runtime = protobuf_1.proto3;
251
+ ListPersonalAccessTokensResponse.typeName = "gitpod.experimental.v1.ListPersonalAccessTokensResponse";
252
+ ListPersonalAccessTokensResponse.fields = protobuf_1.proto3.util.newFieldList(() => [
253
+ { no: 1, name: "tokens", kind: "message", T: PersonalAccessToken, repeated: true },
254
+ { no: 2, name: "total_results", kind: "scalar", T: 3 /* ScalarType.INT64 */ },
255
+ ]);
256
+ /**
257
+ * @generated from message gitpod.experimental.v1.RegeneratePersonalAccessTokenRequest
258
+ */
259
+ class RegeneratePersonalAccessTokenRequest extends protobuf_1.Message {
260
+ constructor(data) {
261
+ super();
262
+ /**
263
+ * id is the ID of the PersonalAccessToken
264
+ *
265
+ * @generated from field: string id = 1;
266
+ */
267
+ this.id = "";
268
+ protobuf_1.proto3.util.initPartial(data, this);
269
+ }
270
+ static fromBinary(bytes, options) {
271
+ return new RegeneratePersonalAccessTokenRequest().fromBinary(bytes, options);
272
+ }
273
+ static fromJson(jsonValue, options) {
274
+ return new RegeneratePersonalAccessTokenRequest().fromJson(jsonValue, options);
275
+ }
276
+ static fromJsonString(jsonString, options) {
277
+ return new RegeneratePersonalAccessTokenRequest().fromJsonString(jsonString, options);
278
+ }
279
+ static equals(a, b) {
280
+ return protobuf_1.proto3.util.equals(RegeneratePersonalAccessTokenRequest, a, b);
281
+ }
282
+ }
283
+ exports.RegeneratePersonalAccessTokenRequest = RegeneratePersonalAccessTokenRequest;
284
+ RegeneratePersonalAccessTokenRequest.runtime = protobuf_1.proto3;
285
+ RegeneratePersonalAccessTokenRequest.typeName = "gitpod.experimental.v1.RegeneratePersonalAccessTokenRequest";
286
+ RegeneratePersonalAccessTokenRequest.fields = protobuf_1.proto3.util.newFieldList(() => [
287
+ { no: 1, name: "id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
288
+ { no: 2, name: "expiration_time", kind: "message", T: protobuf_1.Timestamp },
289
+ ]);
290
+ /**
291
+ * @generated from message gitpod.experimental.v1.RegeneratePersonalAccessTokenResponse
292
+ */
293
+ class RegeneratePersonalAccessTokenResponse extends protobuf_1.Message {
294
+ constructor(data) {
295
+ super();
296
+ protobuf_1.proto3.util.initPartial(data, this);
297
+ }
298
+ static fromBinary(bytes, options) {
299
+ return new RegeneratePersonalAccessTokenResponse().fromBinary(bytes, options);
300
+ }
301
+ static fromJson(jsonValue, options) {
302
+ return new RegeneratePersonalAccessTokenResponse().fromJson(jsonValue, options);
303
+ }
304
+ static fromJsonString(jsonString, options) {
305
+ return new RegeneratePersonalAccessTokenResponse().fromJsonString(jsonString, options);
306
+ }
307
+ static equals(a, b) {
308
+ return protobuf_1.proto3.util.equals(RegeneratePersonalAccessTokenResponse, a, b);
309
+ }
310
+ }
311
+ exports.RegeneratePersonalAccessTokenResponse = RegeneratePersonalAccessTokenResponse;
312
+ RegeneratePersonalAccessTokenResponse.runtime = protobuf_1.proto3;
313
+ RegeneratePersonalAccessTokenResponse.typeName = "gitpod.experimental.v1.RegeneratePersonalAccessTokenResponse";
314
+ RegeneratePersonalAccessTokenResponse.fields = protobuf_1.proto3.util.newFieldList(() => [
315
+ { no: 1, name: "token", kind: "message", T: PersonalAccessToken },
316
+ ]);
317
+ /**
318
+ * @generated from message gitpod.experimental.v1.UpdatePersonalAccessTokenRequest
319
+ */
320
+ class UpdatePersonalAccessTokenRequest extends protobuf_1.Message {
321
+ constructor(data) {
322
+ super();
323
+ protobuf_1.proto3.util.initPartial(data, this);
324
+ }
325
+ static fromBinary(bytes, options) {
326
+ return new UpdatePersonalAccessTokenRequest().fromBinary(bytes, options);
327
+ }
328
+ static fromJson(jsonValue, options) {
329
+ return new UpdatePersonalAccessTokenRequest().fromJson(jsonValue, options);
330
+ }
331
+ static fromJsonString(jsonString, options) {
332
+ return new UpdatePersonalAccessTokenRequest().fromJsonString(jsonString, options);
333
+ }
334
+ static equals(a, b) {
335
+ return protobuf_1.proto3.util.equals(UpdatePersonalAccessTokenRequest, a, b);
336
+ }
337
+ }
338
+ exports.UpdatePersonalAccessTokenRequest = UpdatePersonalAccessTokenRequest;
339
+ UpdatePersonalAccessTokenRequest.runtime = protobuf_1.proto3;
340
+ UpdatePersonalAccessTokenRequest.typeName = "gitpod.experimental.v1.UpdatePersonalAccessTokenRequest";
341
+ UpdatePersonalAccessTokenRequest.fields = protobuf_1.proto3.util.newFieldList(() => [
342
+ { no: 1, name: "token", kind: "message", T: PersonalAccessToken },
343
+ { no: 2, name: "update_mask", kind: "message", T: protobuf_1.FieldMask },
344
+ ]);
345
+ /**
346
+ * @generated from message gitpod.experimental.v1.UpdatePersonalAccessTokenResponse
347
+ */
348
+ class UpdatePersonalAccessTokenResponse extends protobuf_1.Message {
349
+ constructor(data) {
350
+ super();
351
+ protobuf_1.proto3.util.initPartial(data, this);
352
+ }
353
+ static fromBinary(bytes, options) {
354
+ return new UpdatePersonalAccessTokenResponse().fromBinary(bytes, options);
355
+ }
356
+ static fromJson(jsonValue, options) {
357
+ return new UpdatePersonalAccessTokenResponse().fromJson(jsonValue, options);
358
+ }
359
+ static fromJsonString(jsonString, options) {
360
+ return new UpdatePersonalAccessTokenResponse().fromJsonString(jsonString, options);
361
+ }
362
+ static equals(a, b) {
363
+ return protobuf_1.proto3.util.equals(UpdatePersonalAccessTokenResponse, a, b);
364
+ }
365
+ }
366
+ exports.UpdatePersonalAccessTokenResponse = UpdatePersonalAccessTokenResponse;
367
+ UpdatePersonalAccessTokenResponse.runtime = protobuf_1.proto3;
368
+ UpdatePersonalAccessTokenResponse.typeName = "gitpod.experimental.v1.UpdatePersonalAccessTokenResponse";
369
+ UpdatePersonalAccessTokenResponse.fields = protobuf_1.proto3.util.newFieldList(() => [
370
+ { no: 1, name: "token", kind: "message", T: PersonalAccessToken },
371
+ ]);
372
+ /**
373
+ * @generated from message gitpod.experimental.v1.DeletePersonalAccessTokenRequest
374
+ */
375
+ class DeletePersonalAccessTokenRequest extends protobuf_1.Message {
376
+ constructor(data) {
377
+ super();
378
+ /**
379
+ * @generated from field: string id = 1;
380
+ */
381
+ this.id = "";
382
+ protobuf_1.proto3.util.initPartial(data, this);
383
+ }
384
+ static fromBinary(bytes, options) {
385
+ return new DeletePersonalAccessTokenRequest().fromBinary(bytes, options);
386
+ }
387
+ static fromJson(jsonValue, options) {
388
+ return new DeletePersonalAccessTokenRequest().fromJson(jsonValue, options);
389
+ }
390
+ static fromJsonString(jsonString, options) {
391
+ return new DeletePersonalAccessTokenRequest().fromJsonString(jsonString, options);
392
+ }
393
+ static equals(a, b) {
394
+ return protobuf_1.proto3.util.equals(DeletePersonalAccessTokenRequest, a, b);
395
+ }
396
+ }
397
+ exports.DeletePersonalAccessTokenRequest = DeletePersonalAccessTokenRequest;
398
+ DeletePersonalAccessTokenRequest.runtime = protobuf_1.proto3;
399
+ DeletePersonalAccessTokenRequest.typeName = "gitpod.experimental.v1.DeletePersonalAccessTokenRequest";
400
+ DeletePersonalAccessTokenRequest.fields = protobuf_1.proto3.util.newFieldList(() => [
401
+ { no: 1, name: "id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
402
+ ]);
403
+ /**
404
+ * @generated from message gitpod.experimental.v1.DeletePersonalAccessTokenResponse
405
+ */
406
+ class DeletePersonalAccessTokenResponse extends protobuf_1.Message {
407
+ constructor(data) {
408
+ super();
409
+ protobuf_1.proto3.util.initPartial(data, this);
410
+ }
411
+ static fromBinary(bytes, options) {
412
+ return new DeletePersonalAccessTokenResponse().fromBinary(bytes, options);
413
+ }
414
+ static fromJson(jsonValue, options) {
415
+ return new DeletePersonalAccessTokenResponse().fromJson(jsonValue, options);
416
+ }
417
+ static fromJsonString(jsonString, options) {
418
+ return new DeletePersonalAccessTokenResponse().fromJsonString(jsonString, options);
419
+ }
420
+ static equals(a, b) {
421
+ return protobuf_1.proto3.util.equals(DeletePersonalAccessTokenResponse, a, b);
422
+ }
423
+ }
424
+ exports.DeletePersonalAccessTokenResponse = DeletePersonalAccessTokenResponse;
425
+ DeletePersonalAccessTokenResponse.runtime = protobuf_1.proto3;
426
+ DeletePersonalAccessTokenResponse.typeName = "gitpod.experimental.v1.DeletePersonalAccessTokenResponse";
427
+ DeletePersonalAccessTokenResponse.fields = protobuf_1.proto3.util.newFieldList(() => []);
428
+ //# sourceMappingURL=tokens_pb.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"tokens_pb.js","sourceRoot":"","sources":["../../../../src/gitpod/experimental/v1/tokens_pb.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,71 @@
1
+ /**
2
+ * Copyright (c) 2022 Gitpod GmbH. All rights reserved.
3
+ * Licensed under the GNU Affero General Public License (AGPL).
4
+ * See License-AGPL.txt in the project root for license information.
5
+ */
6
+ import { CreateSSHKeyRequest, CreateSSHKeyResponse, DeleteSSHKeyRequest, DeleteSSHKeyResponse, GetAuthenticatedUserRequest, GetAuthenticatedUserResponse, GetSSHKeyRequest, GetSSHKeyResponse, ListSSHKeysRequest, ListSSHKeysResponse } from "./user_pb.js";
7
+ import { MethodKind } from "@bufbuild/protobuf";
8
+ /**
9
+ * @generated from service gitpod.experimental.v1.UserService
10
+ */
11
+ export declare const UserService: {
12
+ readonly typeName: "gitpod.experimental.v1.UserService";
13
+ readonly methods: {
14
+ /**
15
+ * GetAuthenticatedUser gets the user info.
16
+ *
17
+ * @generated from rpc gitpod.experimental.v1.UserService.GetAuthenticatedUser
18
+ */
19
+ readonly getAuthenticatedUser: {
20
+ readonly name: "GetAuthenticatedUser";
21
+ readonly I: typeof GetAuthenticatedUserRequest;
22
+ readonly O: typeof GetAuthenticatedUserResponse;
23
+ readonly kind: MethodKind.Unary;
24
+ };
25
+ /**
26
+ * ListSSHKeys lists the public SSH keys.
27
+ *
28
+ * @generated from rpc gitpod.experimental.v1.UserService.ListSSHKeys
29
+ */
30
+ readonly listSSHKeys: {
31
+ readonly name: "ListSSHKeys";
32
+ readonly I: typeof ListSSHKeysRequest;
33
+ readonly O: typeof ListSSHKeysResponse;
34
+ readonly kind: MethodKind.Unary;
35
+ };
36
+ /**
37
+ * CreateSSHKey adds a public SSH key.
38
+ *
39
+ * @generated from rpc gitpod.experimental.v1.UserService.CreateSSHKey
40
+ */
41
+ readonly createSSHKey: {
42
+ readonly name: "CreateSSHKey";
43
+ readonly I: typeof CreateSSHKeyRequest;
44
+ readonly O: typeof CreateSSHKeyResponse;
45
+ readonly kind: MethodKind.Unary;
46
+ };
47
+ /**
48
+ * GetSSHKey retrieves an ssh key by ID.
49
+ *
50
+ * @generated from rpc gitpod.experimental.v1.UserService.GetSSHKey
51
+ */
52
+ readonly getSSHKey: {
53
+ readonly name: "GetSSHKey";
54
+ readonly I: typeof GetSSHKeyRequest;
55
+ readonly O: typeof GetSSHKeyResponse;
56
+ readonly kind: MethodKind.Unary;
57
+ };
58
+ /**
59
+ * DeleteSSHKey removes a public SSH key.
60
+ *
61
+ * @generated from rpc gitpod.experimental.v1.UserService.DeleteSSHKey
62
+ */
63
+ readonly deleteSSHKey: {
64
+ readonly name: "DeleteSSHKey";
65
+ readonly I: typeof DeleteSSHKeyRequest;
66
+ readonly O: typeof DeleteSSHKeyResponse;
67
+ readonly kind: MethodKind.Unary;
68
+ };
69
+ };
70
+ };
71
+ //# sourceMappingURL=user_connectweb.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"user_connectweb.d.ts","sourceRoot":"","sources":["../../../../src/gitpod/experimental/v1/user_connectweb.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAOH,OAAO,EAAC,mBAAmB,EAAE,oBAAoB,EAAE,mBAAmB,EAAE,oBAAoB,EAAE,2BAA2B,EAAE,4BAA4B,EAAE,gBAAgB,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,mBAAmB,EAAC,MAAM,cAAc,CAAC;AAC3P,OAAO,EAAC,UAAU,EAAC,MAAM,oBAAoB,CAAC;AAE9C;;GAEG;AACH,eAAO,MAAM,WAAW;;;QAGpB;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;;CAQG,CAAC"}
@@ -0,0 +1,78 @@
1
+ "use strict";
2
+ /**
3
+ * Copyright (c) 2022 Gitpod GmbH. All rights reserved.
4
+ * Licensed under the GNU Affero General Public License (AGPL).
5
+ * See License-AGPL.txt in the project root for license information.
6
+ */
7
+ Object.defineProperty(exports, "__esModule", { value: true });
8
+ exports.UserService = void 0;
9
+ // @generated by protoc-gen-connect-web v0.2.1 with parameter "target=ts"
10
+ // @generated from file gitpod/experimental/v1/user.proto (package gitpod.experimental.v1, syntax proto3)
11
+ /* eslint-disable */
12
+ /* @ts-nocheck */
13
+ const user_pb_js_1 = require("./user_pb.js");
14
+ const protobuf_1 = require("@bufbuild/protobuf");
15
+ /**
16
+ * @generated from service gitpod.experimental.v1.UserService
17
+ */
18
+ exports.UserService = {
19
+ typeName: "gitpod.experimental.v1.UserService",
20
+ methods: {
21
+ /**
22
+ * GetAuthenticatedUser gets the user info.
23
+ *
24
+ * @generated from rpc gitpod.experimental.v1.UserService.GetAuthenticatedUser
25
+ */
26
+ getAuthenticatedUser: {
27
+ name: "GetAuthenticatedUser",
28
+ I: user_pb_js_1.GetAuthenticatedUserRequest,
29
+ O: user_pb_js_1.GetAuthenticatedUserResponse,
30
+ kind: protobuf_1.MethodKind.Unary,
31
+ },
32
+ /**
33
+ * ListSSHKeys lists the public SSH keys.
34
+ *
35
+ * @generated from rpc gitpod.experimental.v1.UserService.ListSSHKeys
36
+ */
37
+ listSSHKeys: {
38
+ name: "ListSSHKeys",
39
+ I: user_pb_js_1.ListSSHKeysRequest,
40
+ O: user_pb_js_1.ListSSHKeysResponse,
41
+ kind: protobuf_1.MethodKind.Unary,
42
+ },
43
+ /**
44
+ * CreateSSHKey adds a public SSH key.
45
+ *
46
+ * @generated from rpc gitpod.experimental.v1.UserService.CreateSSHKey
47
+ */
48
+ createSSHKey: {
49
+ name: "CreateSSHKey",
50
+ I: user_pb_js_1.CreateSSHKeyRequest,
51
+ O: user_pb_js_1.CreateSSHKeyResponse,
52
+ kind: protobuf_1.MethodKind.Unary,
53
+ },
54
+ /**
55
+ * GetSSHKey retrieves an ssh key by ID.
56
+ *
57
+ * @generated from rpc gitpod.experimental.v1.UserService.GetSSHKey
58
+ */
59
+ getSSHKey: {
60
+ name: "GetSSHKey",
61
+ I: user_pb_js_1.GetSSHKeyRequest,
62
+ O: user_pb_js_1.GetSSHKeyResponse,
63
+ kind: protobuf_1.MethodKind.Unary,
64
+ },
65
+ /**
66
+ * DeleteSSHKey removes a public SSH key.
67
+ *
68
+ * @generated from rpc gitpod.experimental.v1.UserService.DeleteSSHKey
69
+ */
70
+ deleteSSHKey: {
71
+ name: "DeleteSSHKey",
72
+ I: user_pb_js_1.DeleteSSHKeyRequest,
73
+ O: user_pb_js_1.DeleteSSHKeyResponse,
74
+ kind: protobuf_1.MethodKind.Unary,
75
+ },
76
+ }
77
+ };
78
+ //# sourceMappingURL=user_connectweb.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"user_connectweb.js","sourceRoot":"","sources":["../../../../src/gitpod/experimental/v1/user_connectweb.ts"],"names":[],"mappings":";AAAA;;;;GAIG;;;AAEH,yEAAyE;AACzE,yGAAyG;AACzG,oBAAoB;AACpB,iBAAiB;AAEjB,6CAA2P;AAC3P,iDAA8C;AAE9C;;GAEG;AACU,QAAA,WAAW,GAAG;IACzB,QAAQ,EAAE,oCAAoC;IAC9C,OAAO,EAAE;QACP;;;;WAIG;QACH,oBAAoB,EAAE;YACpB,IAAI,EAAE,sBAAsB;YAC5B,CAAC,EAAE,wCAA2B;YAC9B,CAAC,EAAE,yCAA4B;YAC/B,IAAI,EAAE,qBAAU,CAAC,KAAK;SACvB;QACD;;;;WAIG;QACH,WAAW,EAAE;YACX,IAAI,EAAE,aAAa;YACnB,CAAC,EAAE,+BAAkB;YACrB,CAAC,EAAE,gCAAmB;YACtB,IAAI,EAAE,qBAAU,CAAC,KAAK;SACvB;QACD;;;;WAIG;QACH,YAAY,EAAE;YACZ,IAAI,EAAE,cAAc;YACpB,CAAC,EAAE,gCAAmB;YACtB,CAAC,EAAE,iCAAoB;YACvB,IAAI,EAAE,qBAAU,CAAC,KAAK;SACvB;QACD;;;;WAIG;QACH,SAAS,EAAE;YACT,IAAI,EAAE,WAAW;YACjB,CAAC,EAAE,6BAAgB;YACnB,CAAC,EAAE,8BAAiB;YACpB,IAAI,EAAE,qBAAU,CAAC,KAAK;SACvB;QACD;;;;WAIG;QACH,YAAY,EAAE;YACZ,IAAI,EAAE,cAAc;YACpB,CAAC,EAAE,gCAAmB;YACtB,CAAC,EAAE,iCAAoB;YACvB,IAAI,EAAE,qBAAU,CAAC,KAAK;SACvB;KACF;CACO,CAAC"}