@gitpod/public-api 0.1.5-pd-linux-jb-test.29 → 0.1.5-pd-inte.0
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/gitpod/experimental/v1/index.d.ts +9 -0
- package/lib/gitpod/experimental/v1/index.d.ts.map +1 -0
- package/lib/gitpod/experimental/v1/index.js +21 -0
- package/lib/gitpod/experimental/v1/index.js.map +1 -0
- package/lib/gitpod/experimental/v1/pagination_pb.d.ts +4 -4
- package/lib/gitpod/experimental/v1/pagination_pb.d.ts.map +1 -1
- package/lib/gitpod/experimental/v1/pagination_pb.js +5 -5
- package/lib/gitpod/experimental/v1/pagination_pb.js.map +1 -1
- package/lib/gitpod/experimental/v1/projects_connectweb.d.ts +60 -0
- package/lib/gitpod/experimental/v1/projects_connectweb.d.ts.map +1 -0
- package/lib/gitpod/experimental/v1/projects_connectweb.js +67 -0
- package/lib/gitpod/experimental/v1/projects_connectweb.js.map +1 -0
- package/lib/gitpod/experimental/v1/projects_pb.d.ts +303 -0
- package/lib/gitpod/experimental/v1/projects_pb.d.ts.map +1 -0
- package/lib/gitpod/experimental/v1/projects_pb.js +458 -0
- package/lib/gitpod/experimental/v1/projects_pb.js.map +1 -0
- package/lib/gitpod/experimental/v1/teams_connectweb.d.ts +104 -0
- package/lib/gitpod/experimental/v1/teams_connectweb.d.ts.map +1 -0
- package/lib/gitpod/experimental/v1/teams_connectweb.js +111 -0
- package/lib/gitpod/experimental/v1/teams_connectweb.js.map +1 -0
- package/lib/gitpod/experimental/v1/teams_pb.d.ts +433 -0
- package/lib/gitpod/experimental/v1/teams_pb.d.ts.map +1 -0
- package/lib/gitpod/experimental/v1/teams_pb.js +671 -0
- package/lib/gitpod/experimental/v1/teams_pb.js.map +1 -0
- package/lib/gitpod/experimental/v1/tokens_connectweb.d.ts +82 -0
- package/lib/gitpod/experimental/v1/tokens_connectweb.d.ts.map +1 -0
- package/lib/gitpod/experimental/v1/tokens_connectweb.js +89 -0
- package/lib/gitpod/experimental/v1/tokens_connectweb.js.map +1 -0
- package/lib/gitpod/experimental/v1/tokens_pb.d.ts +282 -0
- package/lib/gitpod/experimental/v1/tokens_pb.d.ts.map +1 -0
- package/lib/gitpod/experimental/v1/tokens_pb.js +423 -0
- package/lib/gitpod/experimental/v1/tokens_pb.js.map +1 -0
- package/lib/index.d.ts +7 -0
- package/lib/index.d.ts.map +1 -0
- package/lib/index.js +10 -0
- package/lib/index.js.map +1 -0
- package/package.json +4 -3
- package/pkg-yarn.lock +1 -1
- package/provenance-bundle.jsonl +3 -2
- package/lib/gitpod/experimental/v1/pagination_pb.ts +0 -60
- package/lib/gitpod/experimental/v1/workspaces_connectweb.ts +0 -80
- package/lib/gitpod/experimental/v1/workspaces_pb.ts +0 -1219
@@ -0,0 +1,458 @@
|
|
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.DeleteProjectResponse = exports.DeleteProjectRequest = exports.ListProjectsResponse = exports.ListProjectsRequest = exports.GetProjectResponse = exports.GetProjectRequest = exports.CreateProjectResponse = exports.CreateProjectRequest = exports.WorkspaceClassSettings = exports.WorkspaceSettings = exports.PrebuildSettings = exports.ProjectSettings = exports.Project = void 0;
|
9
|
+
const protobuf_1 = require("@bufbuild/protobuf");
|
10
|
+
const pagination_pb_js_1 = require("./pagination_pb.js");
|
11
|
+
/**
|
12
|
+
* @generated from message gitpod.experimental.v1.Project
|
13
|
+
*/
|
14
|
+
class Project extends protobuf_1.Message {
|
15
|
+
constructor(data) {
|
16
|
+
super();
|
17
|
+
/**
|
18
|
+
* ID is the unique identifier for the project.
|
19
|
+
* Read only.
|
20
|
+
*
|
21
|
+
* @generated from field: string id = 1;
|
22
|
+
*/
|
23
|
+
this.id = "";
|
24
|
+
/**
|
25
|
+
* Team ID is the Team this Project belongs to.
|
26
|
+
* team_id will be empty if the Project belongs to a User, in which case user_id will be set.
|
27
|
+
*
|
28
|
+
* @generated from field: string team_id = 2;
|
29
|
+
*/
|
30
|
+
this.teamId = "";
|
31
|
+
/**
|
32
|
+
* User ID is the User this Project belongs to.
|
33
|
+
* user_id will be empty if the Project belongs to a Team, in which case team_id will be set.
|
34
|
+
*
|
35
|
+
* @generated from field: string user_id = 3;
|
36
|
+
*/
|
37
|
+
this.userId = "";
|
38
|
+
/**
|
39
|
+
* Name is the name of the Project.
|
40
|
+
* Required.
|
41
|
+
*
|
42
|
+
* @generated from field: string name = 4;
|
43
|
+
*/
|
44
|
+
this.name = "";
|
45
|
+
/**
|
46
|
+
* Slug is a short-hand identifier for a project.
|
47
|
+
* Read-only.
|
48
|
+
*
|
49
|
+
* @generated from field: string slug = 5;
|
50
|
+
*/
|
51
|
+
this.slug = "";
|
52
|
+
/**
|
53
|
+
* Clone URL is the clone URL on which this Project is based.
|
54
|
+
* Required.
|
55
|
+
*
|
56
|
+
* @generated from field: string clone_url = 6;
|
57
|
+
*/
|
58
|
+
this.cloneUrl = "";
|
59
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
60
|
+
}
|
61
|
+
static fromBinary(bytes, options) {
|
62
|
+
return new Project().fromBinary(bytes, options);
|
63
|
+
}
|
64
|
+
static fromJson(jsonValue, options) {
|
65
|
+
return new Project().fromJson(jsonValue, options);
|
66
|
+
}
|
67
|
+
static fromJsonString(jsonString, options) {
|
68
|
+
return new Project().fromJsonString(jsonString, options);
|
69
|
+
}
|
70
|
+
static equals(a, b) {
|
71
|
+
return protobuf_1.proto3.util.equals(Project, a, b);
|
72
|
+
}
|
73
|
+
}
|
74
|
+
exports.Project = Project;
|
75
|
+
Project.runtime = protobuf_1.proto3;
|
76
|
+
Project.typeName = "gitpod.experimental.v1.Project";
|
77
|
+
Project.fields = protobuf_1.proto3.util.newFieldList(() => [
|
78
|
+
{ no: 1, name: "id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
79
|
+
{ no: 2, name: "team_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
80
|
+
{ no: 3, name: "user_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
81
|
+
{ no: 4, name: "name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
82
|
+
{ no: 5, name: "slug", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
83
|
+
{ no: 6, name: "clone_url", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
84
|
+
{ no: 7, name: "creation_time", kind: "message", T: protobuf_1.Timestamp },
|
85
|
+
{ no: 8, name: "settings", kind: "message", T: ProjectSettings },
|
86
|
+
]);
|
87
|
+
/**
|
88
|
+
* @generated from message gitpod.experimental.v1.ProjectSettings
|
89
|
+
*/
|
90
|
+
class ProjectSettings extends protobuf_1.Message {
|
91
|
+
constructor(data) {
|
92
|
+
super();
|
93
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
94
|
+
}
|
95
|
+
static fromBinary(bytes, options) {
|
96
|
+
return new ProjectSettings().fromBinary(bytes, options);
|
97
|
+
}
|
98
|
+
static fromJson(jsonValue, options) {
|
99
|
+
return new ProjectSettings().fromJson(jsonValue, options);
|
100
|
+
}
|
101
|
+
static fromJsonString(jsonString, options) {
|
102
|
+
return new ProjectSettings().fromJsonString(jsonString, options);
|
103
|
+
}
|
104
|
+
static equals(a, b) {
|
105
|
+
return protobuf_1.proto3.util.equals(ProjectSettings, a, b);
|
106
|
+
}
|
107
|
+
}
|
108
|
+
exports.ProjectSettings = ProjectSettings;
|
109
|
+
ProjectSettings.runtime = protobuf_1.proto3;
|
110
|
+
ProjectSettings.typeName = "gitpod.experimental.v1.ProjectSettings";
|
111
|
+
ProjectSettings.fields = protobuf_1.proto3.util.newFieldList(() => [
|
112
|
+
{ no: 1, name: "prebuild", kind: "message", T: PrebuildSettings },
|
113
|
+
]);
|
114
|
+
/**
|
115
|
+
* @generated from message gitpod.experimental.v1.PrebuildSettings
|
116
|
+
*/
|
117
|
+
class PrebuildSettings extends protobuf_1.Message {
|
118
|
+
constructor(data) {
|
119
|
+
super();
|
120
|
+
/**
|
121
|
+
* @generated from field: bool enable_incremental_prebuilds = 1;
|
122
|
+
*/
|
123
|
+
this.enableIncrementalPrebuilds = false;
|
124
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
125
|
+
}
|
126
|
+
static fromBinary(bytes, options) {
|
127
|
+
return new PrebuildSettings().fromBinary(bytes, options);
|
128
|
+
}
|
129
|
+
static fromJson(jsonValue, options) {
|
130
|
+
return new PrebuildSettings().fromJson(jsonValue, options);
|
131
|
+
}
|
132
|
+
static fromJsonString(jsonString, options) {
|
133
|
+
return new PrebuildSettings().fromJsonString(jsonString, options);
|
134
|
+
}
|
135
|
+
static equals(a, b) {
|
136
|
+
return protobuf_1.proto3.util.equals(PrebuildSettings, a, b);
|
137
|
+
}
|
138
|
+
}
|
139
|
+
exports.PrebuildSettings = PrebuildSettings;
|
140
|
+
PrebuildSettings.runtime = protobuf_1.proto3;
|
141
|
+
PrebuildSettings.typeName = "gitpod.experimental.v1.PrebuildSettings";
|
142
|
+
PrebuildSettings.fields = protobuf_1.proto3.util.newFieldList(() => [
|
143
|
+
{ no: 1, name: "enable_incremental_prebuilds", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
|
144
|
+
]);
|
145
|
+
/**
|
146
|
+
* @generated from message gitpod.experimental.v1.WorkspaceSettings
|
147
|
+
*/
|
148
|
+
class WorkspaceSettings extends protobuf_1.Message {
|
149
|
+
constructor(data) {
|
150
|
+
super();
|
151
|
+
/**
|
152
|
+
* @generated from field: bool enable_persistent_volume_claim = 1;
|
153
|
+
*/
|
154
|
+
this.enablePersistentVolumeClaim = false;
|
155
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
156
|
+
}
|
157
|
+
static fromBinary(bytes, options) {
|
158
|
+
return new WorkspaceSettings().fromBinary(bytes, options);
|
159
|
+
}
|
160
|
+
static fromJson(jsonValue, options) {
|
161
|
+
return new WorkspaceSettings().fromJson(jsonValue, options);
|
162
|
+
}
|
163
|
+
static fromJsonString(jsonString, options) {
|
164
|
+
return new WorkspaceSettings().fromJsonString(jsonString, options);
|
165
|
+
}
|
166
|
+
static equals(a, b) {
|
167
|
+
return protobuf_1.proto3.util.equals(WorkspaceSettings, a, b);
|
168
|
+
}
|
169
|
+
}
|
170
|
+
exports.WorkspaceSettings = WorkspaceSettings;
|
171
|
+
WorkspaceSettings.runtime = protobuf_1.proto3;
|
172
|
+
WorkspaceSettings.typeName = "gitpod.experimental.v1.WorkspaceSettings";
|
173
|
+
WorkspaceSettings.fields = protobuf_1.proto3.util.newFieldList(() => [
|
174
|
+
{ no: 1, name: "enable_persistent_volume_claim", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
|
175
|
+
{ no: 2, name: "workspace_class", kind: "message", T: WorkspaceClassSettings },
|
176
|
+
]);
|
177
|
+
/**
|
178
|
+
* @generated from message gitpod.experimental.v1.WorkspaceClassSettings
|
179
|
+
*/
|
180
|
+
class WorkspaceClassSettings extends protobuf_1.Message {
|
181
|
+
constructor(data) {
|
182
|
+
super();
|
183
|
+
/**
|
184
|
+
* @generated from field: string regular = 1;
|
185
|
+
*/
|
186
|
+
this.regular = "";
|
187
|
+
/**
|
188
|
+
* @generated from field: string prebuild = 2;
|
189
|
+
*/
|
190
|
+
this.prebuild = "";
|
191
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
192
|
+
}
|
193
|
+
static fromBinary(bytes, options) {
|
194
|
+
return new WorkspaceClassSettings().fromBinary(bytes, options);
|
195
|
+
}
|
196
|
+
static fromJson(jsonValue, options) {
|
197
|
+
return new WorkspaceClassSettings().fromJson(jsonValue, options);
|
198
|
+
}
|
199
|
+
static fromJsonString(jsonString, options) {
|
200
|
+
return new WorkspaceClassSettings().fromJsonString(jsonString, options);
|
201
|
+
}
|
202
|
+
static equals(a, b) {
|
203
|
+
return protobuf_1.proto3.util.equals(WorkspaceClassSettings, a, b);
|
204
|
+
}
|
205
|
+
}
|
206
|
+
exports.WorkspaceClassSettings = WorkspaceClassSettings;
|
207
|
+
WorkspaceClassSettings.runtime = protobuf_1.proto3;
|
208
|
+
WorkspaceClassSettings.typeName = "gitpod.experimental.v1.WorkspaceClassSettings";
|
209
|
+
WorkspaceClassSettings.fields = protobuf_1.proto3.util.newFieldList(() => [
|
210
|
+
{ no: 1, name: "regular", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
211
|
+
{ no: 2, name: "prebuild", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
212
|
+
]);
|
213
|
+
/**
|
214
|
+
* @generated from message gitpod.experimental.v1.CreateProjectRequest
|
215
|
+
*/
|
216
|
+
class CreateProjectRequest extends protobuf_1.Message {
|
217
|
+
constructor(data) {
|
218
|
+
super();
|
219
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
220
|
+
}
|
221
|
+
static fromBinary(bytes, options) {
|
222
|
+
return new CreateProjectRequest().fromBinary(bytes, options);
|
223
|
+
}
|
224
|
+
static fromJson(jsonValue, options) {
|
225
|
+
return new CreateProjectRequest().fromJson(jsonValue, options);
|
226
|
+
}
|
227
|
+
static fromJsonString(jsonString, options) {
|
228
|
+
return new CreateProjectRequest().fromJsonString(jsonString, options);
|
229
|
+
}
|
230
|
+
static equals(a, b) {
|
231
|
+
return protobuf_1.proto3.util.equals(CreateProjectRequest, a, b);
|
232
|
+
}
|
233
|
+
}
|
234
|
+
exports.CreateProjectRequest = CreateProjectRequest;
|
235
|
+
CreateProjectRequest.runtime = protobuf_1.proto3;
|
236
|
+
CreateProjectRequest.typeName = "gitpod.experimental.v1.CreateProjectRequest";
|
237
|
+
CreateProjectRequest.fields = protobuf_1.proto3.util.newFieldList(() => [
|
238
|
+
{ no: 1, name: "project", kind: "message", T: Project },
|
239
|
+
]);
|
240
|
+
/**
|
241
|
+
* @generated from message gitpod.experimental.v1.CreateProjectResponse
|
242
|
+
*/
|
243
|
+
class CreateProjectResponse extends protobuf_1.Message {
|
244
|
+
constructor(data) {
|
245
|
+
super();
|
246
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
247
|
+
}
|
248
|
+
static fromBinary(bytes, options) {
|
249
|
+
return new CreateProjectResponse().fromBinary(bytes, options);
|
250
|
+
}
|
251
|
+
static fromJson(jsonValue, options) {
|
252
|
+
return new CreateProjectResponse().fromJson(jsonValue, options);
|
253
|
+
}
|
254
|
+
static fromJsonString(jsonString, options) {
|
255
|
+
return new CreateProjectResponse().fromJsonString(jsonString, options);
|
256
|
+
}
|
257
|
+
static equals(a, b) {
|
258
|
+
return protobuf_1.proto3.util.equals(CreateProjectResponse, a, b);
|
259
|
+
}
|
260
|
+
}
|
261
|
+
exports.CreateProjectResponse = CreateProjectResponse;
|
262
|
+
CreateProjectResponse.runtime = protobuf_1.proto3;
|
263
|
+
CreateProjectResponse.typeName = "gitpod.experimental.v1.CreateProjectResponse";
|
264
|
+
CreateProjectResponse.fields = protobuf_1.proto3.util.newFieldList(() => [
|
265
|
+
{ no: 1, name: "project", kind: "message", T: Project },
|
266
|
+
]);
|
267
|
+
/**
|
268
|
+
* @generated from message gitpod.experimental.v1.GetProjectRequest
|
269
|
+
*/
|
270
|
+
class GetProjectRequest extends protobuf_1.Message {
|
271
|
+
constructor(data) {
|
272
|
+
super();
|
273
|
+
/**
|
274
|
+
* @generated from field: string project_id = 1;
|
275
|
+
*/
|
276
|
+
this.projectId = "";
|
277
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
278
|
+
}
|
279
|
+
static fromBinary(bytes, options) {
|
280
|
+
return new GetProjectRequest().fromBinary(bytes, options);
|
281
|
+
}
|
282
|
+
static fromJson(jsonValue, options) {
|
283
|
+
return new GetProjectRequest().fromJson(jsonValue, options);
|
284
|
+
}
|
285
|
+
static fromJsonString(jsonString, options) {
|
286
|
+
return new GetProjectRequest().fromJsonString(jsonString, options);
|
287
|
+
}
|
288
|
+
static equals(a, b) {
|
289
|
+
return protobuf_1.proto3.util.equals(GetProjectRequest, a, b);
|
290
|
+
}
|
291
|
+
}
|
292
|
+
exports.GetProjectRequest = GetProjectRequest;
|
293
|
+
GetProjectRequest.runtime = protobuf_1.proto3;
|
294
|
+
GetProjectRequest.typeName = "gitpod.experimental.v1.GetProjectRequest";
|
295
|
+
GetProjectRequest.fields = protobuf_1.proto3.util.newFieldList(() => [
|
296
|
+
{ no: 1, name: "project_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
297
|
+
]);
|
298
|
+
/**
|
299
|
+
* @generated from message gitpod.experimental.v1.GetProjectResponse
|
300
|
+
*/
|
301
|
+
class GetProjectResponse extends protobuf_1.Message {
|
302
|
+
constructor(data) {
|
303
|
+
super();
|
304
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
305
|
+
}
|
306
|
+
static fromBinary(bytes, options) {
|
307
|
+
return new GetProjectResponse().fromBinary(bytes, options);
|
308
|
+
}
|
309
|
+
static fromJson(jsonValue, options) {
|
310
|
+
return new GetProjectResponse().fromJson(jsonValue, options);
|
311
|
+
}
|
312
|
+
static fromJsonString(jsonString, options) {
|
313
|
+
return new GetProjectResponse().fromJsonString(jsonString, options);
|
314
|
+
}
|
315
|
+
static equals(a, b) {
|
316
|
+
return protobuf_1.proto3.util.equals(GetProjectResponse, a, b);
|
317
|
+
}
|
318
|
+
}
|
319
|
+
exports.GetProjectResponse = GetProjectResponse;
|
320
|
+
GetProjectResponse.runtime = protobuf_1.proto3;
|
321
|
+
GetProjectResponse.typeName = "gitpod.experimental.v1.GetProjectResponse";
|
322
|
+
GetProjectResponse.fields = protobuf_1.proto3.util.newFieldList(() => [
|
323
|
+
{ no: 1, name: "project", kind: "message", T: Project },
|
324
|
+
]);
|
325
|
+
/**
|
326
|
+
* @generated from message gitpod.experimental.v1.ListProjectsRequest
|
327
|
+
*/
|
328
|
+
class ListProjectsRequest extends protobuf_1.Message {
|
329
|
+
constructor(data) {
|
330
|
+
super();
|
331
|
+
/**
|
332
|
+
* User ID filters Projects owned by user_id
|
333
|
+
*
|
334
|
+
* @generated from field: string user_id = 1;
|
335
|
+
*/
|
336
|
+
this.userId = "";
|
337
|
+
/**
|
338
|
+
* Team ID filters Projects owned by team_id
|
339
|
+
*
|
340
|
+
* @generated from field: string team_id = 2;
|
341
|
+
*/
|
342
|
+
this.teamId = "";
|
343
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
344
|
+
}
|
345
|
+
static fromBinary(bytes, options) {
|
346
|
+
return new ListProjectsRequest().fromBinary(bytes, options);
|
347
|
+
}
|
348
|
+
static fromJson(jsonValue, options) {
|
349
|
+
return new ListProjectsRequest().fromJson(jsonValue, options);
|
350
|
+
}
|
351
|
+
static fromJsonString(jsonString, options) {
|
352
|
+
return new ListProjectsRequest().fromJsonString(jsonString, options);
|
353
|
+
}
|
354
|
+
static equals(a, b) {
|
355
|
+
return protobuf_1.proto3.util.equals(ListProjectsRequest, a, b);
|
356
|
+
}
|
357
|
+
}
|
358
|
+
exports.ListProjectsRequest = ListProjectsRequest;
|
359
|
+
ListProjectsRequest.runtime = protobuf_1.proto3;
|
360
|
+
ListProjectsRequest.typeName = "gitpod.experimental.v1.ListProjectsRequest";
|
361
|
+
ListProjectsRequest.fields = protobuf_1.proto3.util.newFieldList(() => [
|
362
|
+
{ no: 1, name: "user_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
363
|
+
{ no: 2, name: "team_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
364
|
+
{ no: 3, name: "pagination", kind: "message", T: pagination_pb_js_1.Pagination },
|
365
|
+
]);
|
366
|
+
/**
|
367
|
+
* @generated from message gitpod.experimental.v1.ListProjectsResponse
|
368
|
+
*/
|
369
|
+
class ListProjectsResponse extends protobuf_1.Message {
|
370
|
+
constructor(data) {
|
371
|
+
super();
|
372
|
+
/**
|
373
|
+
* @generated from field: repeated gitpod.experimental.v1.Project projects = 1;
|
374
|
+
*/
|
375
|
+
this.projects = [];
|
376
|
+
/**
|
377
|
+
* @generated from field: int32 total_results = 2;
|
378
|
+
*/
|
379
|
+
this.totalResults = 0;
|
380
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
381
|
+
}
|
382
|
+
static fromBinary(bytes, options) {
|
383
|
+
return new ListProjectsResponse().fromBinary(bytes, options);
|
384
|
+
}
|
385
|
+
static fromJson(jsonValue, options) {
|
386
|
+
return new ListProjectsResponse().fromJson(jsonValue, options);
|
387
|
+
}
|
388
|
+
static fromJsonString(jsonString, options) {
|
389
|
+
return new ListProjectsResponse().fromJsonString(jsonString, options);
|
390
|
+
}
|
391
|
+
static equals(a, b) {
|
392
|
+
return protobuf_1.proto3.util.equals(ListProjectsResponse, a, b);
|
393
|
+
}
|
394
|
+
}
|
395
|
+
exports.ListProjectsResponse = ListProjectsResponse;
|
396
|
+
ListProjectsResponse.runtime = protobuf_1.proto3;
|
397
|
+
ListProjectsResponse.typeName = "gitpod.experimental.v1.ListProjectsResponse";
|
398
|
+
ListProjectsResponse.fields = protobuf_1.proto3.util.newFieldList(() => [
|
399
|
+
{ no: 1, name: "projects", kind: "message", T: Project, repeated: true },
|
400
|
+
{ no: 2, name: "total_results", kind: "scalar", T: 5 /* ScalarType.INT32 */ },
|
401
|
+
]);
|
402
|
+
/**
|
403
|
+
* @generated from message gitpod.experimental.v1.DeleteProjectRequest
|
404
|
+
*/
|
405
|
+
class DeleteProjectRequest extends protobuf_1.Message {
|
406
|
+
constructor(data) {
|
407
|
+
super();
|
408
|
+
/**
|
409
|
+
* @generated from field: string project_id = 1;
|
410
|
+
*/
|
411
|
+
this.projectId = "";
|
412
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
413
|
+
}
|
414
|
+
static fromBinary(bytes, options) {
|
415
|
+
return new DeleteProjectRequest().fromBinary(bytes, options);
|
416
|
+
}
|
417
|
+
static fromJson(jsonValue, options) {
|
418
|
+
return new DeleteProjectRequest().fromJson(jsonValue, options);
|
419
|
+
}
|
420
|
+
static fromJsonString(jsonString, options) {
|
421
|
+
return new DeleteProjectRequest().fromJsonString(jsonString, options);
|
422
|
+
}
|
423
|
+
static equals(a, b) {
|
424
|
+
return protobuf_1.proto3.util.equals(DeleteProjectRequest, a, b);
|
425
|
+
}
|
426
|
+
}
|
427
|
+
exports.DeleteProjectRequest = DeleteProjectRequest;
|
428
|
+
DeleteProjectRequest.runtime = protobuf_1.proto3;
|
429
|
+
DeleteProjectRequest.typeName = "gitpod.experimental.v1.DeleteProjectRequest";
|
430
|
+
DeleteProjectRequest.fields = protobuf_1.proto3.util.newFieldList(() => [
|
431
|
+
{ no: 1, name: "project_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
432
|
+
]);
|
433
|
+
/**
|
434
|
+
* @generated from message gitpod.experimental.v1.DeleteProjectResponse
|
435
|
+
*/
|
436
|
+
class DeleteProjectResponse extends protobuf_1.Message {
|
437
|
+
constructor(data) {
|
438
|
+
super();
|
439
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
440
|
+
}
|
441
|
+
static fromBinary(bytes, options) {
|
442
|
+
return new DeleteProjectResponse().fromBinary(bytes, options);
|
443
|
+
}
|
444
|
+
static fromJson(jsonValue, options) {
|
445
|
+
return new DeleteProjectResponse().fromJson(jsonValue, options);
|
446
|
+
}
|
447
|
+
static fromJsonString(jsonString, options) {
|
448
|
+
return new DeleteProjectResponse().fromJsonString(jsonString, options);
|
449
|
+
}
|
450
|
+
static equals(a, b) {
|
451
|
+
return protobuf_1.proto3.util.equals(DeleteProjectResponse, a, b);
|
452
|
+
}
|
453
|
+
}
|
454
|
+
exports.DeleteProjectResponse = DeleteProjectResponse;
|
455
|
+
DeleteProjectResponse.runtime = protobuf_1.proto3;
|
456
|
+
DeleteProjectResponse.typeName = "gitpod.experimental.v1.DeleteProjectResponse";
|
457
|
+
DeleteProjectResponse.fields = protobuf_1.proto3.util.newFieldList(() => []);
|
458
|
+
//# sourceMappingURL=projects_pb.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"projects_pb.js","sourceRoot":"","sources":["../../../../src/gitpod/experimental/v1/projects_pb.ts"],"names":[],"mappings":"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"}
|
@@ -0,0 +1,104 @@
|
|
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 { CreateTeamRequest, CreateTeamResponse, DeleteTeamMemberRequest, DeleteTeamMemberResponse, DeleteTeamRequest, DeleteTeamResponse, GetTeamRequest, GetTeamResponse, JoinTeamRequest, JoinTeamResponse, ListTeamsRequest, ListTeamsResponse, ResetTeamInvitationRequest, ResetTeamInvitationResponse, UpdateTeamMemberRequest, UpdateTeamMemberResponse } from "./teams_pb.js";
|
7
|
+
import { MethodKind } from "@bufbuild/protobuf";
|
8
|
+
/**
|
9
|
+
* @generated from service gitpod.experimental.v1.TeamsService
|
10
|
+
*/
|
11
|
+
export declare const TeamsService: {
|
12
|
+
readonly typeName: "gitpod.experimental.v1.TeamsService";
|
13
|
+
readonly methods: {
|
14
|
+
/**
|
15
|
+
* CreateTeam creates a new Team.
|
16
|
+
*
|
17
|
+
* @generated from rpc gitpod.experimental.v1.TeamsService.CreateTeam
|
18
|
+
*/
|
19
|
+
readonly createTeam: {
|
20
|
+
readonly name: "CreateTeam";
|
21
|
+
readonly I: typeof CreateTeamRequest;
|
22
|
+
readonly O: typeof CreateTeamResponse;
|
23
|
+
readonly kind: MethodKind.Unary;
|
24
|
+
};
|
25
|
+
/**
|
26
|
+
* GetTeam retrieves a single Team.
|
27
|
+
*
|
28
|
+
* @generated from rpc gitpod.experimental.v1.TeamsService.GetTeam
|
29
|
+
*/
|
30
|
+
readonly getTeam: {
|
31
|
+
readonly name: "GetTeam";
|
32
|
+
readonly I: typeof GetTeamRequest;
|
33
|
+
readonly O: typeof GetTeamResponse;
|
34
|
+
readonly kind: MethodKind.Unary;
|
35
|
+
};
|
36
|
+
/**
|
37
|
+
* ListTeams lists the caller has access to.
|
38
|
+
*
|
39
|
+
* @generated from rpc gitpod.experimental.v1.TeamsService.ListTeams
|
40
|
+
*/
|
41
|
+
readonly listTeams: {
|
42
|
+
readonly name: "ListTeams";
|
43
|
+
readonly I: typeof ListTeamsRequest;
|
44
|
+
readonly O: typeof ListTeamsResponse;
|
45
|
+
readonly kind: MethodKind.Unary;
|
46
|
+
};
|
47
|
+
/**
|
48
|
+
* DeleteTeam deletes the specified team.
|
49
|
+
*
|
50
|
+
* @generated from rpc gitpod.experimental.v1.TeamsService.DeleteTeam
|
51
|
+
*/
|
52
|
+
readonly deleteTeam: {
|
53
|
+
readonly name: "DeleteTeam";
|
54
|
+
readonly I: typeof DeleteTeamRequest;
|
55
|
+
readonly O: typeof DeleteTeamResponse;
|
56
|
+
readonly kind: MethodKind.Unary;
|
57
|
+
};
|
58
|
+
/**
|
59
|
+
* JoinTeam makes the caller a TeamMember of the Team.
|
60
|
+
*
|
61
|
+
* @generated from rpc gitpod.experimental.v1.TeamsService.JoinTeam
|
62
|
+
*/
|
63
|
+
readonly joinTeam: {
|
64
|
+
readonly name: "JoinTeam";
|
65
|
+
readonly I: typeof JoinTeamRequest;
|
66
|
+
readonly O: typeof JoinTeamResponse;
|
67
|
+
readonly kind: MethodKind.Unary;
|
68
|
+
};
|
69
|
+
/**
|
70
|
+
* ResetTeamInvitation resets the invitation_id for a Team.
|
71
|
+
*
|
72
|
+
* @generated from rpc gitpod.experimental.v1.TeamsService.ResetTeamInvitation
|
73
|
+
*/
|
74
|
+
readonly resetTeamInvitation: {
|
75
|
+
readonly name: "ResetTeamInvitation";
|
76
|
+
readonly I: typeof ResetTeamInvitationRequest;
|
77
|
+
readonly O: typeof ResetTeamInvitationResponse;
|
78
|
+
readonly kind: MethodKind.Unary;
|
79
|
+
};
|
80
|
+
/**
|
81
|
+
* UpdateTeamMember updates team membership properties.
|
82
|
+
*
|
83
|
+
* @generated from rpc gitpod.experimental.v1.TeamsService.UpdateTeamMember
|
84
|
+
*/
|
85
|
+
readonly updateTeamMember: {
|
86
|
+
readonly name: "UpdateTeamMember";
|
87
|
+
readonly I: typeof UpdateTeamMemberRequest;
|
88
|
+
readonly O: typeof UpdateTeamMemberResponse;
|
89
|
+
readonly kind: MethodKind.Unary;
|
90
|
+
};
|
91
|
+
/**
|
92
|
+
* DeleteTeamMember removes a TeamMember from the Team.
|
93
|
+
*
|
94
|
+
* @generated from rpc gitpod.experimental.v1.TeamsService.DeleteTeamMember
|
95
|
+
*/
|
96
|
+
readonly deleteTeamMember: {
|
97
|
+
readonly name: "DeleteTeamMember";
|
98
|
+
readonly I: typeof DeleteTeamMemberRequest;
|
99
|
+
readonly O: typeof DeleteTeamMemberResponse;
|
100
|
+
readonly kind: MethodKind.Unary;
|
101
|
+
};
|
102
|
+
};
|
103
|
+
};
|
104
|
+
//# sourceMappingURL=teams_connectweb.d.ts.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"teams_connectweb.d.ts","sourceRoot":"","sources":["../../../../src/gitpod/experimental/v1/teams_connectweb.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAOH,OAAO,EAAC,iBAAiB,EAAE,kBAAkB,EAAE,uBAAuB,EAAE,wBAAwB,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,cAAc,EAAE,eAAe,EAAE,eAAe,EAAE,gBAAgB,EAAE,gBAAgB,EAAE,iBAAiB,EAAE,0BAA0B,EAAE,2BAA2B,EAAE,uBAAuB,EAAE,wBAAwB,EAAC,MAAM,eAAe,CAAC;AACnX,OAAO,EAAC,UAAU,EAAC,MAAM,oBAAoB,CAAC;AAE9C;;GAEG;AACH,eAAO,MAAM,YAAY;;;QAGrB;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;;CAQG,CAAC"}
|