@gitpod/public-api 0.1.5-tar-sh-active-users-new.0 → 0.1.5-tar-sh-active-users-new.5

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.
Files changed (52) hide show
  1. package/lib/gitpod/experimental/v1/index.d.ts +9 -0
  2. package/lib/gitpod/experimental/v1/index.d.ts.map +1 -0
  3. package/lib/gitpod/experimental/v1/index.js +21 -0
  4. package/lib/gitpod/experimental/v1/index.js.map +1 -0
  5. package/lib/gitpod/{v1 → experimental/v1}/pagination_pb.d.ts +2 -2
  6. package/lib/gitpod/experimental/v1/pagination_pb.d.ts.map +1 -0
  7. package/lib/gitpod/{v1 → experimental/v1}/pagination_pb.js +2 -2
  8. package/lib/gitpod/experimental/v1/pagination_pb.js.map +1 -0
  9. package/lib/gitpod/experimental/v1/teams_connectweb.d.ts +93 -0
  10. package/lib/gitpod/experimental/v1/teams_connectweb.d.ts.map +1 -0
  11. package/lib/gitpod/experimental/v1/teams_connectweb.js +100 -0
  12. package/lib/gitpod/experimental/v1/teams_connectweb.js.map +1 -0
  13. package/lib/gitpod/experimental/v1/teams_pb.d.ts +401 -0
  14. package/lib/gitpod/experimental/v1/teams_pb.d.ts.map +1 -0
  15. package/lib/gitpod/experimental/v1/teams_pb.js +613 -0
  16. package/lib/gitpod/experimental/v1/teams_pb.js.map +1 -0
  17. package/lib/gitpod/experimental/v1/workspaces_connectweb.d.ts +74 -0
  18. package/lib/gitpod/experimental/v1/workspaces_connectweb.d.ts.map +1 -0
  19. package/lib/gitpod/experimental/v1/workspaces_connectweb.js +81 -0
  20. package/lib/gitpod/experimental/v1/workspaces_connectweb.js.map +1 -0
  21. package/lib/gitpod/{v1 → experimental/v1}/workspaces_pb.d.ts +88 -218
  22. package/lib/gitpod/experimental/v1/workspaces_pb.d.ts.map +1 -0
  23. package/lib/gitpod/{v1 → experimental/v1}/workspaces_pb.js +83 -321
  24. package/lib/gitpod/experimental/v1/workspaces_pb.js.map +1 -0
  25. package/lib/index.d.ts +7 -0
  26. package/lib/index.d.ts.map +1 -0
  27. package/lib/index.js +10 -0
  28. package/lib/index.js.map +1 -0
  29. package/package.json +4 -3
  30. package/pkg-yarn.lock +1 -1
  31. package/provenance-bundle.jsonl +2 -2
  32. package/lib/gitpod/v1/pagination_pb.d.ts.map +0 -1
  33. package/lib/gitpod/v1/pagination_pb.js.map +0 -1
  34. package/lib/gitpod/v1/pagination_pb.ts +0 -60
  35. package/lib/gitpod/v1/prebuilds_connectweb.d.ts +0 -65
  36. package/lib/gitpod/v1/prebuilds_connectweb.d.ts.map +0 -1
  37. package/lib/gitpod/v1/prebuilds_connectweb.js +0 -72
  38. package/lib/gitpod/v1/prebuilds_connectweb.js.map +0 -1
  39. package/lib/gitpod/v1/prebuilds_connectweb.ts +0 -71
  40. package/lib/gitpod/v1/prebuilds_pb.d.ts +0 -281
  41. package/lib/gitpod/v1/prebuilds_pb.d.ts.map +0 -1
  42. package/lib/gitpod/v1/prebuilds_pb.js +0 -435
  43. package/lib/gitpod/v1/prebuilds_pb.js.map +0 -1
  44. package/lib/gitpod/v1/prebuilds_pb.ts +0 -540
  45. package/lib/gitpod/v1/workspaces_connectweb.d.ts +0 -134
  46. package/lib/gitpod/v1/workspaces_connectweb.d.ts.map +0 -1
  47. package/lib/gitpod/v1/workspaces_connectweb.js +0 -141
  48. package/lib/gitpod/v1/workspaces_connectweb.js.map +0 -1
  49. package/lib/gitpod/v1/workspaces_connectweb.ts +0 -140
  50. package/lib/gitpod/v1/workspaces_pb.d.ts.map +0 -1
  51. package/lib/gitpod/v1/workspaces_pb.js.map +0 -1
  52. package/lib/gitpod/v1/workspaces_pb.ts +0 -1509
@@ -0,0 +1,401 @@
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 type { BinaryReadOptions, FieldList, JsonReadOptions, JsonValue, PartialMessage, PlainMessage } from "@bufbuild/protobuf";
7
+ import { Message, Timestamp } from "@bufbuild/protobuf";
8
+ /**
9
+ * @generated from enum gitpod.experimental.v1.TeamRole
10
+ */
11
+ export declare enum TeamRole {
12
+ /**
13
+ * TEAM_ROLE_UNKNOWN is the unkwnon state.
14
+ *
15
+ * @generated from enum value: TEAM_ROLE_UNSPECIFIED = 0;
16
+ */
17
+ UNSPECIFIED = 0,
18
+ /**
19
+ * TEAM_ROLE_OWNER is the owner of the team.
20
+ * A team can have multiple owners, but there must always be at least one owner.
21
+ *
22
+ * @generated from enum value: TEAM_ROLE_OWNER = 1;
23
+ */
24
+ OWNER = 1,
25
+ /**
26
+ * TEAM_ROLE_MEMBER is a regular member of a team.
27
+ *
28
+ * @generated from enum value: TEAM_ROLE_MEMBER = 2;
29
+ */
30
+ MEMBER = 2
31
+ }
32
+ /**
33
+ * @generated from message gitpod.experimental.v1.Team
34
+ */
35
+ export declare class Team extends Message<Team> {
36
+ /**
37
+ * id is a UUID of the Team
38
+ *
39
+ * @generated from field: string id = 1;
40
+ */
41
+ id: string;
42
+ /**
43
+ * name is the name of the Team
44
+ *
45
+ * @generated from field: string name = 2;
46
+ */
47
+ name: string;
48
+ /**
49
+ * slug is the short version of the Team name
50
+ *
51
+ * @generated from field: string slug = 3;
52
+ */
53
+ slug: string;
54
+ /**
55
+ * members are the team members of this Team
56
+ *
57
+ * @generated from field: repeated gitpod.experimental.v1.TeamMember members = 4;
58
+ */
59
+ members: TeamMember[];
60
+ /**
61
+ * team_invitation is the team invitation.
62
+ *
63
+ * @generated from field: gitpod.experimental.v1.TeamInvitation team_invitation = 5;
64
+ */
65
+ teamInvitation?: TeamInvitation;
66
+ constructor(data?: PartialMessage<Team>);
67
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
68
+ static readonly typeName = "gitpod.experimental.v1.Team";
69
+ static readonly fields: FieldList;
70
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): Team;
71
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): Team;
72
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): Team;
73
+ static equals(a: Team | PlainMessage<Team> | undefined, b: Team | PlainMessage<Team> | undefined): boolean;
74
+ }
75
+ /**
76
+ * @generated from message gitpod.experimental.v1.TeamMember
77
+ */
78
+ export declare class TeamMember extends Message<TeamMember> {
79
+ /**
80
+ * user_id is the identifier of the user
81
+ *
82
+ * @generated from field: string user_id = 1;
83
+ */
84
+ userId: string;
85
+ /**
86
+ * role is the role this member is assigned
87
+ *
88
+ * @generated from field: gitpod.experimental.v1.TeamRole role = 2;
89
+ */
90
+ role: TeamRole;
91
+ /**
92
+ * member_since is the timestamp when the member joined the team
93
+ *
94
+ * @generated from field: google.protobuf.Timestamp member_since = 3;
95
+ */
96
+ memberSince?: Timestamp;
97
+ /**
98
+ * avatar_url is the URL for the TeamMember
99
+ *
100
+ * @generated from field: string avatar_url = 4;
101
+ */
102
+ avatarUrl: string;
103
+ /**
104
+ * full_name is the name of the TeamMember
105
+ *
106
+ * @generated from field: string full_name = 5;
107
+ */
108
+ fullName: string;
109
+ /**
110
+ * primary_email is the primary email of the TeamMember
111
+ *
112
+ * @generated from field: string primary_email = 6;
113
+ */
114
+ primaryEmail: string;
115
+ constructor(data?: PartialMessage<TeamMember>);
116
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
117
+ static readonly typeName = "gitpod.experimental.v1.TeamMember";
118
+ static readonly fields: FieldList;
119
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): TeamMember;
120
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): TeamMember;
121
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): TeamMember;
122
+ static equals(a: TeamMember | PlainMessage<TeamMember> | undefined, b: TeamMember | PlainMessage<TeamMember> | undefined): boolean;
123
+ }
124
+ /**
125
+ * @generated from message gitpod.experimental.v1.TeamInvitation
126
+ */
127
+ export declare class TeamInvitation extends Message<TeamInvitation> {
128
+ /**
129
+ * id is the invitation ID.
130
+ *
131
+ * @generated from field: string id = 1;
132
+ */
133
+ id: string;
134
+ constructor(data?: PartialMessage<TeamInvitation>);
135
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
136
+ static readonly typeName = "gitpod.experimental.v1.TeamInvitation";
137
+ static readonly fields: FieldList;
138
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): TeamInvitation;
139
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): TeamInvitation;
140
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): TeamInvitation;
141
+ static equals(a: TeamInvitation | PlainMessage<TeamInvitation> | undefined, b: TeamInvitation | PlainMessage<TeamInvitation> | undefined): boolean;
142
+ }
143
+ /**
144
+ * @generated from message gitpod.experimental.v1.CreateTeamRequest
145
+ */
146
+ export declare class CreateTeamRequest extends Message<CreateTeamRequest> {
147
+ /**
148
+ * name is the team name
149
+ *
150
+ * @generated from field: string name = 1;
151
+ */
152
+ name: string;
153
+ constructor(data?: PartialMessage<CreateTeamRequest>);
154
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
155
+ static readonly typeName = "gitpod.experimental.v1.CreateTeamRequest";
156
+ static readonly fields: FieldList;
157
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): CreateTeamRequest;
158
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): CreateTeamRequest;
159
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): CreateTeamRequest;
160
+ static equals(a: CreateTeamRequest | PlainMessage<CreateTeamRequest> | undefined, b: CreateTeamRequest | PlainMessage<CreateTeamRequest> | undefined): boolean;
161
+ }
162
+ /**
163
+ * @generated from message gitpod.experimental.v1.CreateTeamResponse
164
+ */
165
+ export declare class CreateTeamResponse extends Message<CreateTeamResponse> {
166
+ /**
167
+ * @generated from field: gitpod.experimental.v1.Team team = 1;
168
+ */
169
+ team?: Team;
170
+ constructor(data?: PartialMessage<CreateTeamResponse>);
171
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
172
+ static readonly typeName = "gitpod.experimental.v1.CreateTeamResponse";
173
+ static readonly fields: FieldList;
174
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): CreateTeamResponse;
175
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): CreateTeamResponse;
176
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): CreateTeamResponse;
177
+ static equals(a: CreateTeamResponse | PlainMessage<CreateTeamResponse> | undefined, b: CreateTeamResponse | PlainMessage<CreateTeamResponse> | undefined): boolean;
178
+ }
179
+ /**
180
+ * @generated from message gitpod.experimental.v1.GetTeamRequest
181
+ */
182
+ export declare class GetTeamRequest extends Message<GetTeamRequest> {
183
+ /**
184
+ * team_id is the unique identifier of the Team to retreive.
185
+ *
186
+ * @generated from field: string team_id = 1;
187
+ */
188
+ teamId: string;
189
+ constructor(data?: PartialMessage<GetTeamRequest>);
190
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
191
+ static readonly typeName = "gitpod.experimental.v1.GetTeamRequest";
192
+ static readonly fields: FieldList;
193
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetTeamRequest;
194
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetTeamRequest;
195
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetTeamRequest;
196
+ static equals(a: GetTeamRequest | PlainMessage<GetTeamRequest> | undefined, b: GetTeamRequest | PlainMessage<GetTeamRequest> | undefined): boolean;
197
+ }
198
+ /**
199
+ * @generated from message gitpod.experimental.v1.GetTeamResponse
200
+ */
201
+ export declare class GetTeamResponse extends Message<GetTeamResponse> {
202
+ /**
203
+ * @generated from field: gitpod.experimental.v1.Team team = 1;
204
+ */
205
+ team?: Team;
206
+ constructor(data?: PartialMessage<GetTeamResponse>);
207
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
208
+ static readonly typeName = "gitpod.experimental.v1.GetTeamResponse";
209
+ static readonly fields: FieldList;
210
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetTeamResponse;
211
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetTeamResponse;
212
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetTeamResponse;
213
+ static equals(a: GetTeamResponse | PlainMessage<GetTeamResponse> | undefined, b: GetTeamResponse | PlainMessage<GetTeamResponse> | undefined): boolean;
214
+ }
215
+ /**
216
+ * TODO: pagination options
217
+ *
218
+ * @generated from message gitpod.experimental.v1.ListTeamsRequest
219
+ */
220
+ export declare class ListTeamsRequest extends Message<ListTeamsRequest> {
221
+ constructor(data?: PartialMessage<ListTeamsRequest>);
222
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
223
+ static readonly typeName = "gitpod.experimental.v1.ListTeamsRequest";
224
+ static readonly fields: FieldList;
225
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ListTeamsRequest;
226
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ListTeamsRequest;
227
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ListTeamsRequest;
228
+ static equals(a: ListTeamsRequest | PlainMessage<ListTeamsRequest> | undefined, b: ListTeamsRequest | PlainMessage<ListTeamsRequest> | undefined): boolean;
229
+ }
230
+ /**
231
+ * @generated from message gitpod.experimental.v1.ListTeamsResponse
232
+ */
233
+ export declare class ListTeamsResponse extends Message<ListTeamsResponse> {
234
+ /**
235
+ * @generated from field: repeated gitpod.experimental.v1.Team teams = 1;
236
+ */
237
+ teams: Team[];
238
+ constructor(data?: PartialMessage<ListTeamsResponse>);
239
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
240
+ static readonly typeName = "gitpod.experimental.v1.ListTeamsResponse";
241
+ static readonly fields: FieldList;
242
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ListTeamsResponse;
243
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ListTeamsResponse;
244
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ListTeamsResponse;
245
+ static equals(a: ListTeamsResponse | PlainMessage<ListTeamsResponse> | undefined, b: ListTeamsResponse | PlainMessage<ListTeamsResponse> | undefined): boolean;
246
+ }
247
+ /**
248
+ * @generated from message gitpod.experimental.v1.JoinTeamRequest
249
+ */
250
+ export declare class JoinTeamRequest extends Message<JoinTeamRequest> {
251
+ /**
252
+ * invitation_id is the invitation ID for a Team
253
+ *
254
+ * @generated from field: string invitation_id = 1;
255
+ */
256
+ invitationId: string;
257
+ constructor(data?: PartialMessage<JoinTeamRequest>);
258
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
259
+ static readonly typeName = "gitpod.experimental.v1.JoinTeamRequest";
260
+ static readonly fields: FieldList;
261
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): JoinTeamRequest;
262
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): JoinTeamRequest;
263
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): JoinTeamRequest;
264
+ static equals(a: JoinTeamRequest | PlainMessage<JoinTeamRequest> | undefined, b: JoinTeamRequest | PlainMessage<JoinTeamRequest> | undefined): boolean;
265
+ }
266
+ /**
267
+ * @generated from message gitpod.experimental.v1.JoinTeamResponse
268
+ */
269
+ export declare class JoinTeamResponse extends Message<JoinTeamResponse> {
270
+ /**
271
+ * team is the team the user has just joined
272
+ *
273
+ * @generated from field: gitpod.experimental.v1.Team team = 1;
274
+ */
275
+ team?: Team;
276
+ constructor(data?: PartialMessage<JoinTeamResponse>);
277
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
278
+ static readonly typeName = "gitpod.experimental.v1.JoinTeamResponse";
279
+ static readonly fields: FieldList;
280
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): JoinTeamResponse;
281
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): JoinTeamResponse;
282
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): JoinTeamResponse;
283
+ static equals(a: JoinTeamResponse | PlainMessage<JoinTeamResponse> | undefined, b: JoinTeamResponse | PlainMessage<JoinTeamResponse> | undefined): boolean;
284
+ }
285
+ /**
286
+ * @generated from message gitpod.experimental.v1.ResetTeamInvitationRequest
287
+ */
288
+ export declare class ResetTeamInvitationRequest extends Message<ResetTeamInvitationRequest> {
289
+ /**
290
+ * @generated from field: string team_id = 1;
291
+ */
292
+ teamId: string;
293
+ constructor(data?: PartialMessage<ResetTeamInvitationRequest>);
294
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
295
+ static readonly typeName = "gitpod.experimental.v1.ResetTeamInvitationRequest";
296
+ static readonly fields: FieldList;
297
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ResetTeamInvitationRequest;
298
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ResetTeamInvitationRequest;
299
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ResetTeamInvitationRequest;
300
+ static equals(a: ResetTeamInvitationRequest | PlainMessage<ResetTeamInvitationRequest> | undefined, b: ResetTeamInvitationRequest | PlainMessage<ResetTeamInvitationRequest> | undefined): boolean;
301
+ }
302
+ /**
303
+ * @generated from message gitpod.experimental.v1.ResetTeamInvitationResponse
304
+ */
305
+ export declare class ResetTeamInvitationResponse extends Message<ResetTeamInvitationResponse> {
306
+ /**
307
+ * team_invitation is the new invitation for the team.
308
+ *
309
+ * @generated from field: gitpod.experimental.v1.TeamInvitation team_invitation = 1;
310
+ */
311
+ teamInvitation?: TeamInvitation;
312
+ constructor(data?: PartialMessage<ResetTeamInvitationResponse>);
313
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
314
+ static readonly typeName = "gitpod.experimental.v1.ResetTeamInvitationResponse";
315
+ static readonly fields: FieldList;
316
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ResetTeamInvitationResponse;
317
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ResetTeamInvitationResponse;
318
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ResetTeamInvitationResponse;
319
+ static equals(a: ResetTeamInvitationResponse | PlainMessage<ResetTeamInvitationResponse> | undefined, b: ResetTeamInvitationResponse | PlainMessage<ResetTeamInvitationResponse> | undefined): boolean;
320
+ }
321
+ /**
322
+ * @generated from message gitpod.experimental.v1.UpdateTeamMemberRequest
323
+ */
324
+ export declare class UpdateTeamMemberRequest extends Message<UpdateTeamMemberRequest> {
325
+ /**
326
+ * team_id is the ID of the team in which the role is to be updated
327
+ *
328
+ * @generated from field: string team_id = 1;
329
+ */
330
+ teamId: string;
331
+ /**
332
+ * team_member is the team member being updated.
333
+ *
334
+ * @generated from field: gitpod.experimental.v1.TeamMember team_member = 2;
335
+ */
336
+ teamMember?: TeamMember;
337
+ constructor(data?: PartialMessage<UpdateTeamMemberRequest>);
338
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
339
+ static readonly typeName = "gitpod.experimental.v1.UpdateTeamMemberRequest";
340
+ static readonly fields: FieldList;
341
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): UpdateTeamMemberRequest;
342
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): UpdateTeamMemberRequest;
343
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): UpdateTeamMemberRequest;
344
+ static equals(a: UpdateTeamMemberRequest | PlainMessage<UpdateTeamMemberRequest> | undefined, b: UpdateTeamMemberRequest | PlainMessage<UpdateTeamMemberRequest> | undefined): boolean;
345
+ }
346
+ /**
347
+ * @generated from message gitpod.experimental.v1.UpdateTeamMemberResponse
348
+ */
349
+ export declare class UpdateTeamMemberResponse extends Message<UpdateTeamMemberResponse> {
350
+ /**
351
+ * @generated from field: gitpod.experimental.v1.TeamMember team_member = 2;
352
+ */
353
+ teamMember?: TeamMember;
354
+ constructor(data?: PartialMessage<UpdateTeamMemberResponse>);
355
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
356
+ static readonly typeName = "gitpod.experimental.v1.UpdateTeamMemberResponse";
357
+ static readonly fields: FieldList;
358
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): UpdateTeamMemberResponse;
359
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): UpdateTeamMemberResponse;
360
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): UpdateTeamMemberResponse;
361
+ static equals(a: UpdateTeamMemberResponse | PlainMessage<UpdateTeamMemberResponse> | undefined, b: UpdateTeamMemberResponse | PlainMessage<UpdateTeamMemberResponse> | undefined): boolean;
362
+ }
363
+ /**
364
+ * @generated from message gitpod.experimental.v1.DeleteTeamMemberRequest
365
+ */
366
+ export declare class DeleteTeamMemberRequest extends Message<DeleteTeamMemberRequest> {
367
+ /**
368
+ * team_id is the ID of the team in which a member should be deleted.
369
+ *
370
+ * @generated from field: string team_id = 1;
371
+ */
372
+ teamId: string;
373
+ /**
374
+ * team_member_id is the ID of the TeamMember that should be deleted from the team.
375
+ *
376
+ * @generated from field: string team_member_id = 2;
377
+ */
378
+ teamMemberId: string;
379
+ constructor(data?: PartialMessage<DeleteTeamMemberRequest>);
380
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
381
+ static readonly typeName = "gitpod.experimental.v1.DeleteTeamMemberRequest";
382
+ static readonly fields: FieldList;
383
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): DeleteTeamMemberRequest;
384
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): DeleteTeamMemberRequest;
385
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): DeleteTeamMemberRequest;
386
+ static equals(a: DeleteTeamMemberRequest | PlainMessage<DeleteTeamMemberRequest> | undefined, b: DeleteTeamMemberRequest | PlainMessage<DeleteTeamMemberRequest> | undefined): boolean;
387
+ }
388
+ /**
389
+ * @generated from message gitpod.experimental.v1.DeleteTeamMemberResponse
390
+ */
391
+ export declare class DeleteTeamMemberResponse extends Message<DeleteTeamMemberResponse> {
392
+ constructor(data?: PartialMessage<DeleteTeamMemberResponse>);
393
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
394
+ static readonly typeName = "gitpod.experimental.v1.DeleteTeamMemberResponse";
395
+ static readonly fields: FieldList;
396
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): DeleteTeamMemberResponse;
397
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): DeleteTeamMemberResponse;
398
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): DeleteTeamMemberResponse;
399
+ static equals(a: DeleteTeamMemberResponse | PlainMessage<DeleteTeamMemberResponse> | undefined, b: DeleteTeamMemberResponse | PlainMessage<DeleteTeamMemberResponse> | undefined): boolean;
400
+ }
401
+ //# sourceMappingURL=teams_pb.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"teams_pb.d.ts","sourceRoot":"","sources":["../../../../src/gitpod/experimental/v1/teams_pb.ts"],"names":[],"mappings":"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"}