@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,89 @@
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.TokensService = void 0;
9
+ // @generated by protoc-gen-connect-web v0.2.1 with parameter "target=ts"
10
+ // @generated from file gitpod/experimental/v1/tokens.proto (package gitpod.experimental.v1, syntax proto3)
11
+ /* eslint-disable */
12
+ /* @ts-nocheck */
13
+ const tokens_pb_js_1 = require("./tokens_pb.js");
14
+ const protobuf_1 = require("@bufbuild/protobuf");
15
+ /**
16
+ * @generated from service gitpod.experimental.v1.TokensService
17
+ */
18
+ exports.TokensService = {
19
+ typeName: "gitpod.experimental.v1.TokensService",
20
+ methods: {
21
+ /**
22
+ * CreatePersonalAccessTokenRequest creates a new token.
23
+ *
24
+ * @generated from rpc gitpod.experimental.v1.TokensService.CreatePersonalAccessToken
25
+ */
26
+ createPersonalAccessToken: {
27
+ name: "CreatePersonalAccessToken",
28
+ I: tokens_pb_js_1.CreatePersonalAccessTokenRequest,
29
+ O: tokens_pb_js_1.CreatePersonalAccessTokenResponse,
30
+ kind: protobuf_1.MethodKind.Unary,
31
+ },
32
+ /**
33
+ * ListPersonalAccessTokens returns token by ID.
34
+ *
35
+ * @generated from rpc gitpod.experimental.v1.TokensService.GetPersonalAccessToken
36
+ */
37
+ getPersonalAccessToken: {
38
+ name: "GetPersonalAccessToken",
39
+ I: tokens_pb_js_1.GetPersonalAccessTokenRequest,
40
+ O: tokens_pb_js_1.GetPersonalAccessTokenResponse,
41
+ kind: protobuf_1.MethodKind.Unary,
42
+ },
43
+ /**
44
+ * ListPersonalAccessTokens returns a list of tokens.
45
+ *
46
+ * @generated from rpc gitpod.experimental.v1.TokensService.ListPersonalAccessTokens
47
+ */
48
+ listPersonalAccessTokens: {
49
+ name: "ListPersonalAccessTokens",
50
+ I: tokens_pb_js_1.ListPersonalAccessTokensRequest,
51
+ O: tokens_pb_js_1.ListPersonalAccessTokensResponse,
52
+ kind: protobuf_1.MethodKind.Unary,
53
+ },
54
+ /**
55
+ * RegeneratePersonalAccessToken generates a new token and replaces the previous one.
56
+ *
57
+ * @generated from rpc gitpod.experimental.v1.TokensService.RegeneratePersonalAccessToken
58
+ */
59
+ regeneratePersonalAccessToken: {
60
+ name: "RegeneratePersonalAccessToken",
61
+ I: tokens_pb_js_1.RegeneratePersonalAccessTokenRequest,
62
+ O: tokens_pb_js_1.RegeneratePersonalAccessTokenResponse,
63
+ kind: protobuf_1.MethodKind.Unary,
64
+ },
65
+ /**
66
+ * UpdatePersonalAccessToken updates writable properties of a PersonalAccessToken.
67
+ *
68
+ * @generated from rpc gitpod.experimental.v1.TokensService.UpdatePersonalAccessToken
69
+ */
70
+ updatePersonalAccessToken: {
71
+ name: "UpdatePersonalAccessToken",
72
+ I: tokens_pb_js_1.UpdatePersonalAccessTokenRequest,
73
+ O: tokens_pb_js_1.UpdatePersonalAccessTokenResponse,
74
+ kind: protobuf_1.MethodKind.Unary,
75
+ },
76
+ /**
77
+ * DeletePersonalAccessToken removes token by ID.
78
+ *
79
+ * @generated from rpc gitpod.experimental.v1.TokensService.DeletePersonalAccessToken
80
+ */
81
+ deletePersonalAccessToken: {
82
+ name: "DeletePersonalAccessToken",
83
+ I: tokens_pb_js_1.DeletePersonalAccessTokenRequest,
84
+ O: tokens_pb_js_1.DeletePersonalAccessTokenResponse,
85
+ kind: protobuf_1.MethodKind.Unary,
86
+ },
87
+ }
88
+ };
89
+ //# sourceMappingURL=tokens_connectweb.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"tokens_connectweb.js","sourceRoot":"","sources":["../../../../src/gitpod/experimental/v1/tokens_connectweb.ts"],"names":[],"mappings":";AAAA;;;;GAIG;;;AAEH,yEAAyE;AACzE,2GAA2G;AAC3G,oBAAoB;AACpB,iBAAiB;AAEjB,iDAA4b;AAC5b,iDAA8C;AAE9C;;GAEG;AACU,QAAA,aAAa,GAAG;IAC3B,QAAQ,EAAE,sCAAsC;IAChD,OAAO,EAAE;QACP;;;;WAIG;QACH,yBAAyB,EAAE;YACzB,IAAI,EAAE,2BAA2B;YACjC,CAAC,EAAE,+CAAgC;YACnC,CAAC,EAAE,gDAAiC;YACpC,IAAI,EAAE,qBAAU,CAAC,KAAK;SACvB;QACD;;;;WAIG;QACH,sBAAsB,EAAE;YACtB,IAAI,EAAE,wBAAwB;YAC9B,CAAC,EAAE,4CAA6B;YAChC,CAAC,EAAE,6CAA8B;YACjC,IAAI,EAAE,qBAAU,CAAC,KAAK;SACvB;QACD;;;;WAIG;QACH,wBAAwB,EAAE;YACxB,IAAI,EAAE,0BAA0B;YAChC,CAAC,EAAE,8CAA+B;YAClC,CAAC,EAAE,+CAAgC;YACnC,IAAI,EAAE,qBAAU,CAAC,KAAK;SACvB;QACD;;;;WAIG;QACH,6BAA6B,EAAE;YAC7B,IAAI,EAAE,+BAA+B;YACrC,CAAC,EAAE,mDAAoC;YACvC,CAAC,EAAE,oDAAqC;YACxC,IAAI,EAAE,qBAAU,CAAC,KAAK;SACvB;QACD;;;;WAIG;QACH,yBAAyB,EAAE;YACzB,IAAI,EAAE,2BAA2B;YACjC,CAAC,EAAE,+CAAgC;YACnC,CAAC,EAAE,gDAAiC;YACpC,IAAI,EAAE,qBAAU,CAAC,KAAK;SACvB;QACD;;;;WAIG;QACH,yBAAyB,EAAE;YACzB,IAAI,EAAE,2BAA2B;YACjC,CAAC,EAAE,+CAAgC;YACnC,CAAC,EAAE,gDAAiC;YACpC,IAAI,EAAE,qBAAU,CAAC,KAAK;SACvB;KACF;CACO,CAAC"}
@@ -0,0 +1,290 @@
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 { FieldMask, Message, Timestamp } from "@bufbuild/protobuf";
8
+ import { Pagination } from "./pagination_pb.js";
9
+ /**
10
+ * PersonalAccessToken represents details of an access token for personal use.
11
+ *
12
+ * @generated from message gitpod.experimental.v1.PersonalAccessToken
13
+ */
14
+ export declare class PersonalAccessToken extends Message<PersonalAccessToken> {
15
+ /**
16
+ * id is the unique identifier of this token
17
+ * Read only.
18
+ *
19
+ * @generated from field: string id = 1;
20
+ */
21
+ id: string;
22
+ /**
23
+ * value is the secret value of the token
24
+ * The value property is only populated when the PersonalAccessToken is first created, and never again.
25
+ * Read only.
26
+ *
27
+ * @generated from field: string value = 2;
28
+ */
29
+ value: string;
30
+ /**
31
+ * name is the name of the token for humans, set by the user
32
+ *
33
+ * @generated from field: string name = 3;
34
+ */
35
+ name: string;
36
+ /**
37
+ * description is the description of the token set by the user
38
+ *
39
+ * @generated from field: string description = 4;
40
+ */
41
+ description: string;
42
+ /**
43
+ * expiration_time is the time when the token expires
44
+ * Read only.
45
+ *
46
+ * @generated from field: google.protobuf.Timestamp expiration_time = 5;
47
+ */
48
+ expirationTime?: Timestamp;
49
+ /**
50
+ * scopes are the permission scopes attached to this token.
51
+ * By default, no scopes are attached and therefore no access is granted to this token.
52
+ * Specifying '*' grants all permissions the owner of the token has.
53
+ *
54
+ * @generated from field: repeated string scopes = 6;
55
+ */
56
+ scopes: string[];
57
+ /**
58
+ * created_time is the time when the token was first created.
59
+ *
60
+ * @generated from field: google.protobuf.Timestamp created_at = 7;
61
+ */
62
+ createdAt?: Timestamp;
63
+ constructor(data?: PartialMessage<PersonalAccessToken>);
64
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
65
+ static readonly typeName = "gitpod.experimental.v1.PersonalAccessToken";
66
+ static readonly fields: FieldList;
67
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): PersonalAccessToken;
68
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): PersonalAccessToken;
69
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): PersonalAccessToken;
70
+ static equals(a: PersonalAccessToken | PlainMessage<PersonalAccessToken> | undefined, b: PersonalAccessToken | PlainMessage<PersonalAccessToken> | undefined): boolean;
71
+ }
72
+ /**
73
+ * @generated from message gitpod.experimental.v1.CreatePersonalAccessTokenRequest
74
+ */
75
+ export declare class CreatePersonalAccessTokenRequest extends Message<CreatePersonalAccessTokenRequest> {
76
+ /**
77
+ * @generated from field: gitpod.experimental.v1.PersonalAccessToken token = 1;
78
+ */
79
+ token?: PersonalAccessToken;
80
+ constructor(data?: PartialMessage<CreatePersonalAccessTokenRequest>);
81
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
82
+ static readonly typeName = "gitpod.experimental.v1.CreatePersonalAccessTokenRequest";
83
+ static readonly fields: FieldList;
84
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): CreatePersonalAccessTokenRequest;
85
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): CreatePersonalAccessTokenRequest;
86
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): CreatePersonalAccessTokenRequest;
87
+ static equals(a: CreatePersonalAccessTokenRequest | PlainMessage<CreatePersonalAccessTokenRequest> | undefined, b: CreatePersonalAccessTokenRequest | PlainMessage<CreatePersonalAccessTokenRequest> | undefined): boolean;
88
+ }
89
+ /**
90
+ * @generated from message gitpod.experimental.v1.CreatePersonalAccessTokenResponse
91
+ */
92
+ export declare class CreatePersonalAccessTokenResponse extends Message<CreatePersonalAccessTokenResponse> {
93
+ /**
94
+ * @generated from field: gitpod.experimental.v1.PersonalAccessToken token = 1;
95
+ */
96
+ token?: PersonalAccessToken;
97
+ constructor(data?: PartialMessage<CreatePersonalAccessTokenResponse>);
98
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
99
+ static readonly typeName = "gitpod.experimental.v1.CreatePersonalAccessTokenResponse";
100
+ static readonly fields: FieldList;
101
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): CreatePersonalAccessTokenResponse;
102
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): CreatePersonalAccessTokenResponse;
103
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): CreatePersonalAccessTokenResponse;
104
+ static equals(a: CreatePersonalAccessTokenResponse | PlainMessage<CreatePersonalAccessTokenResponse> | undefined, b: CreatePersonalAccessTokenResponse | PlainMessage<CreatePersonalAccessTokenResponse> | undefined): boolean;
105
+ }
106
+ /**
107
+ * @generated from message gitpod.experimental.v1.GetPersonalAccessTokenRequest
108
+ */
109
+ export declare class GetPersonalAccessTokenRequest extends Message<GetPersonalAccessTokenRequest> {
110
+ /**
111
+ * @generated from field: string id = 1;
112
+ */
113
+ id: string;
114
+ constructor(data?: PartialMessage<GetPersonalAccessTokenRequest>);
115
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
116
+ static readonly typeName = "gitpod.experimental.v1.GetPersonalAccessTokenRequest";
117
+ static readonly fields: FieldList;
118
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetPersonalAccessTokenRequest;
119
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetPersonalAccessTokenRequest;
120
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetPersonalAccessTokenRequest;
121
+ static equals(a: GetPersonalAccessTokenRequest | PlainMessage<GetPersonalAccessTokenRequest> | undefined, b: GetPersonalAccessTokenRequest | PlainMessage<GetPersonalAccessTokenRequest> | undefined): boolean;
122
+ }
123
+ /**
124
+ * @generated from message gitpod.experimental.v1.GetPersonalAccessTokenResponse
125
+ */
126
+ export declare class GetPersonalAccessTokenResponse extends Message<GetPersonalAccessTokenResponse> {
127
+ /**
128
+ * @generated from field: gitpod.experimental.v1.PersonalAccessToken token = 1;
129
+ */
130
+ token?: PersonalAccessToken;
131
+ constructor(data?: PartialMessage<GetPersonalAccessTokenResponse>);
132
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
133
+ static readonly typeName = "gitpod.experimental.v1.GetPersonalAccessTokenResponse";
134
+ static readonly fields: FieldList;
135
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetPersonalAccessTokenResponse;
136
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetPersonalAccessTokenResponse;
137
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetPersonalAccessTokenResponse;
138
+ static equals(a: GetPersonalAccessTokenResponse | PlainMessage<GetPersonalAccessTokenResponse> | undefined, b: GetPersonalAccessTokenResponse | PlainMessage<GetPersonalAccessTokenResponse> | undefined): boolean;
139
+ }
140
+ /**
141
+ * @generated from message gitpod.experimental.v1.ListPersonalAccessTokensRequest
142
+ */
143
+ export declare class ListPersonalAccessTokensRequest extends Message<ListPersonalAccessTokensRequest> {
144
+ /**
145
+ * Page information
146
+ *
147
+ * @generated from field: gitpod.experimental.v1.Pagination pagination = 1;
148
+ */
149
+ pagination?: Pagination;
150
+ constructor(data?: PartialMessage<ListPersonalAccessTokensRequest>);
151
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
152
+ static readonly typeName = "gitpod.experimental.v1.ListPersonalAccessTokensRequest";
153
+ static readonly fields: FieldList;
154
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ListPersonalAccessTokensRequest;
155
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ListPersonalAccessTokensRequest;
156
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ListPersonalAccessTokensRequest;
157
+ static equals(a: ListPersonalAccessTokensRequest | PlainMessage<ListPersonalAccessTokensRequest> | undefined, b: ListPersonalAccessTokensRequest | PlainMessage<ListPersonalAccessTokensRequest> | undefined): boolean;
158
+ }
159
+ /**
160
+ * @generated from message gitpod.experimental.v1.ListPersonalAccessTokensResponse
161
+ */
162
+ export declare class ListPersonalAccessTokensResponse extends Message<ListPersonalAccessTokensResponse> {
163
+ /**
164
+ * @generated from field: repeated gitpod.experimental.v1.PersonalAccessToken tokens = 1;
165
+ */
166
+ tokens: PersonalAccessToken[];
167
+ /**
168
+ * @generated from field: int64 total_results = 2;
169
+ */
170
+ totalResults: bigint;
171
+ constructor(data?: PartialMessage<ListPersonalAccessTokensResponse>);
172
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
173
+ static readonly typeName = "gitpod.experimental.v1.ListPersonalAccessTokensResponse";
174
+ static readonly fields: FieldList;
175
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ListPersonalAccessTokensResponse;
176
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ListPersonalAccessTokensResponse;
177
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ListPersonalAccessTokensResponse;
178
+ static equals(a: ListPersonalAccessTokensResponse | PlainMessage<ListPersonalAccessTokensResponse> | undefined, b: ListPersonalAccessTokensResponse | PlainMessage<ListPersonalAccessTokensResponse> | undefined): boolean;
179
+ }
180
+ /**
181
+ * @generated from message gitpod.experimental.v1.RegeneratePersonalAccessTokenRequest
182
+ */
183
+ export declare class RegeneratePersonalAccessTokenRequest extends Message<RegeneratePersonalAccessTokenRequest> {
184
+ /**
185
+ * id is the ID of the PersonalAccessToken
186
+ *
187
+ * @generated from field: string id = 1;
188
+ */
189
+ id: string;
190
+ /**
191
+ * expiration time is the time when the new token should expire
192
+ *
193
+ * @generated from field: google.protobuf.Timestamp expiration_time = 2;
194
+ */
195
+ expirationTime?: Timestamp;
196
+ constructor(data?: PartialMessage<RegeneratePersonalAccessTokenRequest>);
197
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
198
+ static readonly typeName = "gitpod.experimental.v1.RegeneratePersonalAccessTokenRequest";
199
+ static readonly fields: FieldList;
200
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): RegeneratePersonalAccessTokenRequest;
201
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): RegeneratePersonalAccessTokenRequest;
202
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): RegeneratePersonalAccessTokenRequest;
203
+ static equals(a: RegeneratePersonalAccessTokenRequest | PlainMessage<RegeneratePersonalAccessTokenRequest> | undefined, b: RegeneratePersonalAccessTokenRequest | PlainMessage<RegeneratePersonalAccessTokenRequest> | undefined): boolean;
204
+ }
205
+ /**
206
+ * @generated from message gitpod.experimental.v1.RegeneratePersonalAccessTokenResponse
207
+ */
208
+ export declare class RegeneratePersonalAccessTokenResponse extends Message<RegeneratePersonalAccessTokenResponse> {
209
+ /**
210
+ * @generated from field: gitpod.experimental.v1.PersonalAccessToken token = 1;
211
+ */
212
+ token?: PersonalAccessToken;
213
+ constructor(data?: PartialMessage<RegeneratePersonalAccessTokenResponse>);
214
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
215
+ static readonly typeName = "gitpod.experimental.v1.RegeneratePersonalAccessTokenResponse";
216
+ static readonly fields: FieldList;
217
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): RegeneratePersonalAccessTokenResponse;
218
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): RegeneratePersonalAccessTokenResponse;
219
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): RegeneratePersonalAccessTokenResponse;
220
+ static equals(a: RegeneratePersonalAccessTokenResponse | PlainMessage<RegeneratePersonalAccessTokenResponse> | undefined, b: RegeneratePersonalAccessTokenResponse | PlainMessage<RegeneratePersonalAccessTokenResponse> | undefined): boolean;
221
+ }
222
+ /**
223
+ * @generated from message gitpod.experimental.v1.UpdatePersonalAccessTokenRequest
224
+ */
225
+ export declare class UpdatePersonalAccessTokenRequest extends Message<UpdatePersonalAccessTokenRequest> {
226
+ /**
227
+ * @generated from field: gitpod.experimental.v1.PersonalAccessToken token = 1;
228
+ */
229
+ token?: PersonalAccessToken;
230
+ /**
231
+ * @generated from field: google.protobuf.FieldMask update_mask = 2;
232
+ */
233
+ updateMask?: FieldMask;
234
+ constructor(data?: PartialMessage<UpdatePersonalAccessTokenRequest>);
235
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
236
+ static readonly typeName = "gitpod.experimental.v1.UpdatePersonalAccessTokenRequest";
237
+ static readonly fields: FieldList;
238
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): UpdatePersonalAccessTokenRequest;
239
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): UpdatePersonalAccessTokenRequest;
240
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): UpdatePersonalAccessTokenRequest;
241
+ static equals(a: UpdatePersonalAccessTokenRequest | PlainMessage<UpdatePersonalAccessTokenRequest> | undefined, b: UpdatePersonalAccessTokenRequest | PlainMessage<UpdatePersonalAccessTokenRequest> | undefined): boolean;
242
+ }
243
+ /**
244
+ * @generated from message gitpod.experimental.v1.UpdatePersonalAccessTokenResponse
245
+ */
246
+ export declare class UpdatePersonalAccessTokenResponse extends Message<UpdatePersonalAccessTokenResponse> {
247
+ /**
248
+ * @generated from field: gitpod.experimental.v1.PersonalAccessToken token = 1;
249
+ */
250
+ token?: PersonalAccessToken;
251
+ constructor(data?: PartialMessage<UpdatePersonalAccessTokenResponse>);
252
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
253
+ static readonly typeName = "gitpod.experimental.v1.UpdatePersonalAccessTokenResponse";
254
+ static readonly fields: FieldList;
255
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): UpdatePersonalAccessTokenResponse;
256
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): UpdatePersonalAccessTokenResponse;
257
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): UpdatePersonalAccessTokenResponse;
258
+ static equals(a: UpdatePersonalAccessTokenResponse | PlainMessage<UpdatePersonalAccessTokenResponse> | undefined, b: UpdatePersonalAccessTokenResponse | PlainMessage<UpdatePersonalAccessTokenResponse> | undefined): boolean;
259
+ }
260
+ /**
261
+ * @generated from message gitpod.experimental.v1.DeletePersonalAccessTokenRequest
262
+ */
263
+ export declare class DeletePersonalAccessTokenRequest extends Message<DeletePersonalAccessTokenRequest> {
264
+ /**
265
+ * @generated from field: string id = 1;
266
+ */
267
+ id: string;
268
+ constructor(data?: PartialMessage<DeletePersonalAccessTokenRequest>);
269
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
270
+ static readonly typeName = "gitpod.experimental.v1.DeletePersonalAccessTokenRequest";
271
+ static readonly fields: FieldList;
272
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): DeletePersonalAccessTokenRequest;
273
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): DeletePersonalAccessTokenRequest;
274
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): DeletePersonalAccessTokenRequest;
275
+ static equals(a: DeletePersonalAccessTokenRequest | PlainMessage<DeletePersonalAccessTokenRequest> | undefined, b: DeletePersonalAccessTokenRequest | PlainMessage<DeletePersonalAccessTokenRequest> | undefined): boolean;
276
+ }
277
+ /**
278
+ * @generated from message gitpod.experimental.v1.DeletePersonalAccessTokenResponse
279
+ */
280
+ export declare class DeletePersonalAccessTokenResponse extends Message<DeletePersonalAccessTokenResponse> {
281
+ constructor(data?: PartialMessage<DeletePersonalAccessTokenResponse>);
282
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
283
+ static readonly typeName = "gitpod.experimental.v1.DeletePersonalAccessTokenResponse";
284
+ static readonly fields: FieldList;
285
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): DeletePersonalAccessTokenResponse;
286
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): DeletePersonalAccessTokenResponse;
287
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): DeletePersonalAccessTokenResponse;
288
+ static equals(a: DeletePersonalAccessTokenResponse | PlainMessage<DeletePersonalAccessTokenResponse> | undefined, b: DeletePersonalAccessTokenResponse | PlainMessage<DeletePersonalAccessTokenResponse> | undefined): boolean;
289
+ }
290
+ //# sourceMappingURL=tokens_pb.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"tokens_pb.d.ts","sourceRoot":"","sources":["../../../../src/gitpod/experimental/v1/tokens_pb.ts"],"names":[],"mappings":"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"}