@gitpod/public-api 0.1.5-se-usage-view.45 → 0.1.5-se-jsonrpc-date.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.
Files changed (47) hide show
  1. package/lib/gitpod/experimental/v1/pagination_pb.d.ts +7 -4
  2. package/lib/gitpod/experimental/v1/pagination_pb.d.ts.map +1 -1
  3. package/lib/gitpod/experimental/v1/pagination_pb.js +8 -5
  4. package/lib/gitpod/experimental/v1/pagination_pb.js.map +1 -1
  5. package/lib/gitpod/experimental/v1/projects_connectweb.d.ts +60 -0
  6. package/lib/gitpod/experimental/v1/projects_connectweb.d.ts.map +1 -0
  7. package/lib/gitpod/experimental/v1/projects_connectweb.js +67 -0
  8. package/lib/gitpod/experimental/v1/projects_connectweb.js.map +1 -0
  9. package/lib/gitpod/experimental/v1/projects_pb.d.ts +319 -0
  10. package/lib/gitpod/experimental/v1/projects_pb.d.ts.map +1 -0
  11. package/lib/gitpod/experimental/v1/projects_pb.js +474 -0
  12. package/lib/gitpod/experimental/v1/projects_pb.js.map +1 -0
  13. package/lib/gitpod/experimental/v1/teams_connectweb.d.ts +12 -1
  14. package/lib/gitpod/experimental/v1/teams_connectweb.d.ts.map +1 -1
  15. package/lib/gitpod/experimental/v1/teams_connectweb.js +11 -0
  16. package/lib/gitpod/experimental/v1/teams_connectweb.js.map +1 -1
  17. package/lib/gitpod/experimental/v1/teams_pb.d.ts +32 -0
  18. package/lib/gitpod/experimental/v1/teams_pb.d.ts.map +1 -1
  19. package/lib/gitpod/experimental/v1/teams_pb.js +59 -1
  20. package/lib/gitpod/experimental/v1/teams_pb.js.map +1 -1
  21. package/lib/gitpod/experimental/v1/tokens_connectweb.d.ts +82 -0
  22. package/lib/gitpod/experimental/v1/tokens_connectweb.d.ts.map +1 -0
  23. package/lib/gitpod/experimental/v1/tokens_connectweb.js +89 -0
  24. package/lib/gitpod/experimental/v1/tokens_connectweb.js.map +1 -0
  25. package/lib/gitpod/experimental/v1/tokens_pb.d.ts +288 -0
  26. package/lib/gitpod/experimental/v1/tokens_pb.d.ts.map +1 -0
  27. package/lib/gitpod/experimental/v1/tokens_pb.js +430 -0
  28. package/lib/gitpod/experimental/v1/tokens_pb.js.map +1 -0
  29. package/lib/gitpod/experimental/v1/user_connectweb.d.ts +71 -0
  30. package/lib/gitpod/experimental/v1/user_connectweb.d.ts.map +1 -0
  31. package/lib/gitpod/experimental/v1/user_connectweb.js +78 -0
  32. package/lib/gitpod/experimental/v1/user_connectweb.js.map +1 -0
  33. package/lib/gitpod/experimental/v1/user_pb.d.ts +254 -0
  34. package/lib/gitpod/experimental/v1/user_pb.d.ts.map +1 -0
  35. package/lib/gitpod/experimental/v1/user_pb.js +401 -0
  36. package/lib/gitpod/experimental/v1/user_pb.js.map +1 -0
  37. package/lib/gitpod/experimental/v1/workspaces_connectweb.d.ts +23 -1
  38. package/lib/gitpod/experimental/v1/workspaces_connectweb.d.ts.map +1 -1
  39. package/lib/gitpod/experimental/v1/workspaces_connectweb.js +22 -0
  40. package/lib/gitpod/experimental/v1/workspaces_connectweb.js.map +1 -1
  41. package/lib/gitpod/experimental/v1/workspaces_pb.d.ts +60 -0
  42. package/lib/gitpod/experimental/v1/workspaces_pb.d.ts.map +1 -1
  43. package/lib/gitpod/experimental/v1/workspaces_pb.js +113 -1
  44. package/lib/gitpod/experimental/v1/workspaces_pb.js.map +1 -1
  45. package/package.json +1 -1
  46. package/pkg-yarn.lock +1 -1
  47. package/provenance-bundle.jsonl +3 -2
@@ -0,0 +1,288 @@
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
+ /**
9
+ * PersonalAccessToken represents details of an access token for personal use.
10
+ *
11
+ * @generated from message gitpod.experimental.v1.PersonalAccessToken
12
+ */
13
+ export declare class PersonalAccessToken extends Message<PersonalAccessToken> {
14
+ /**
15
+ * id is the unique identifier of this token
16
+ * Read only.
17
+ *
18
+ * @generated from field: string id = 1;
19
+ */
20
+ id: string;
21
+ /**
22
+ * value is the secret value of the token
23
+ * The value property is only populated when the PersonalAccessToken is first created, and never again.
24
+ * If you you want to compare your existing token, use the hash property
25
+ * Read only.
26
+ *
27
+ * @generated from field: string value = 2;
28
+ */
29
+ value: string;
30
+ /**
31
+ * hash is the SHA-512 hash of the token value
32
+ * You can use the hash to compare a token you hold against the one we keep on record by doing `echo -n $TOKEN | sha256sum`.
33
+ * Read only.
34
+ *
35
+ * @generated from field: string hash = 3;
36
+ */
37
+ hash: string;
38
+ /**
39
+ * name is the name of the token for humans, set by the user
40
+ *
41
+ * @generated from field: string name = 4;
42
+ */
43
+ name: string;
44
+ /**
45
+ * description is the description of the token set by the user
46
+ *
47
+ * @generated from field: string description = 5;
48
+ */
49
+ description: string;
50
+ /**
51
+ * expiration_time is the time when the token expires
52
+ * Read only.
53
+ *
54
+ * @generated from field: google.protobuf.Timestamp expiration_time = 6;
55
+ */
56
+ expirationTime?: Timestamp;
57
+ /**
58
+ * scopes are the permission scopes attached to this token.
59
+ * By default, no scopes are attached and therefore no access is granted to this token.
60
+ * Specifying '*' grants all permissions the owner of the token has.
61
+ *
62
+ * @generated from field: repeated string scopes = 7;
63
+ */
64
+ scopes: string[];
65
+ /**
66
+ * created_time is the time when the token was first created.
67
+ *
68
+ * @generated from field: google.protobuf.Timestamp created_at = 8;
69
+ */
70
+ createdAt?: Timestamp;
71
+ constructor(data?: PartialMessage<PersonalAccessToken>);
72
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
73
+ static readonly typeName = "gitpod.experimental.v1.PersonalAccessToken";
74
+ static readonly fields: FieldList;
75
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): PersonalAccessToken;
76
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): PersonalAccessToken;
77
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): PersonalAccessToken;
78
+ static equals(a: PersonalAccessToken | PlainMessage<PersonalAccessToken> | undefined, b: PersonalAccessToken | PlainMessage<PersonalAccessToken> | undefined): boolean;
79
+ }
80
+ /**
81
+ * @generated from message gitpod.experimental.v1.CreatePersonalAccessTokenRequest
82
+ */
83
+ export declare class CreatePersonalAccessTokenRequest extends Message<CreatePersonalAccessTokenRequest> {
84
+ /**
85
+ * @generated from field: gitpod.experimental.v1.PersonalAccessToken token = 1;
86
+ */
87
+ token?: PersonalAccessToken;
88
+ constructor(data?: PartialMessage<CreatePersonalAccessTokenRequest>);
89
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
90
+ static readonly typeName = "gitpod.experimental.v1.CreatePersonalAccessTokenRequest";
91
+ static readonly fields: FieldList;
92
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): CreatePersonalAccessTokenRequest;
93
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): CreatePersonalAccessTokenRequest;
94
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): CreatePersonalAccessTokenRequest;
95
+ static equals(a: CreatePersonalAccessTokenRequest | PlainMessage<CreatePersonalAccessTokenRequest> | undefined, b: CreatePersonalAccessTokenRequest | PlainMessage<CreatePersonalAccessTokenRequest> | undefined): boolean;
96
+ }
97
+ /**
98
+ * @generated from message gitpod.experimental.v1.CreatePersonalAccessTokenResponse
99
+ */
100
+ export declare class CreatePersonalAccessTokenResponse extends Message<CreatePersonalAccessTokenResponse> {
101
+ /**
102
+ * @generated from field: gitpod.experimental.v1.PersonalAccessToken token = 1;
103
+ */
104
+ token?: PersonalAccessToken;
105
+ constructor(data?: PartialMessage<CreatePersonalAccessTokenResponse>);
106
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
107
+ static readonly typeName = "gitpod.experimental.v1.CreatePersonalAccessTokenResponse";
108
+ static readonly fields: FieldList;
109
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): CreatePersonalAccessTokenResponse;
110
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): CreatePersonalAccessTokenResponse;
111
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): CreatePersonalAccessTokenResponse;
112
+ static equals(a: CreatePersonalAccessTokenResponse | PlainMessage<CreatePersonalAccessTokenResponse> | undefined, b: CreatePersonalAccessTokenResponse | PlainMessage<CreatePersonalAccessTokenResponse> | undefined): boolean;
113
+ }
114
+ /**
115
+ * @generated from message gitpod.experimental.v1.GetPersonalAccessTokenRequest
116
+ */
117
+ export declare class GetPersonalAccessTokenRequest extends Message<GetPersonalAccessTokenRequest> {
118
+ /**
119
+ * @generated from field: string id = 1;
120
+ */
121
+ id: string;
122
+ constructor(data?: PartialMessage<GetPersonalAccessTokenRequest>);
123
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
124
+ static readonly typeName = "gitpod.experimental.v1.GetPersonalAccessTokenRequest";
125
+ static readonly fields: FieldList;
126
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetPersonalAccessTokenRequest;
127
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetPersonalAccessTokenRequest;
128
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetPersonalAccessTokenRequest;
129
+ static equals(a: GetPersonalAccessTokenRequest | PlainMessage<GetPersonalAccessTokenRequest> | undefined, b: GetPersonalAccessTokenRequest | PlainMessage<GetPersonalAccessTokenRequest> | undefined): boolean;
130
+ }
131
+ /**
132
+ * @generated from message gitpod.experimental.v1.GetPersonalAccessTokenResponse
133
+ */
134
+ export declare class GetPersonalAccessTokenResponse extends Message<GetPersonalAccessTokenResponse> {
135
+ /**
136
+ * @generated from field: gitpod.experimental.v1.PersonalAccessToken token = 1;
137
+ */
138
+ token?: PersonalAccessToken;
139
+ constructor(data?: PartialMessage<GetPersonalAccessTokenResponse>);
140
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
141
+ static readonly typeName = "gitpod.experimental.v1.GetPersonalAccessTokenResponse";
142
+ static readonly fields: FieldList;
143
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetPersonalAccessTokenResponse;
144
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetPersonalAccessTokenResponse;
145
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetPersonalAccessTokenResponse;
146
+ static equals(a: GetPersonalAccessTokenResponse | PlainMessage<GetPersonalAccessTokenResponse> | undefined, b: GetPersonalAccessTokenResponse | PlainMessage<GetPersonalAccessTokenResponse> | undefined): boolean;
147
+ }
148
+ /**
149
+ * @generated from message gitpod.experimental.v1.ListPersonalAccessTokensRequest
150
+ */
151
+ export declare class ListPersonalAccessTokensRequest extends Message<ListPersonalAccessTokensRequest> {
152
+ constructor(data?: PartialMessage<ListPersonalAccessTokensRequest>);
153
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
154
+ static readonly typeName = "gitpod.experimental.v1.ListPersonalAccessTokensRequest";
155
+ static readonly fields: FieldList;
156
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ListPersonalAccessTokensRequest;
157
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ListPersonalAccessTokensRequest;
158
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ListPersonalAccessTokensRequest;
159
+ static equals(a: ListPersonalAccessTokensRequest | PlainMessage<ListPersonalAccessTokensRequest> | undefined, b: ListPersonalAccessTokensRequest | PlainMessage<ListPersonalAccessTokensRequest> | undefined): boolean;
160
+ }
161
+ /**
162
+ * @generated from message gitpod.experimental.v1.ListPersonalAccessTokensResponse
163
+ */
164
+ export declare class ListPersonalAccessTokensResponse extends Message<ListPersonalAccessTokensResponse> {
165
+ /**
166
+ * @generated from field: repeated gitpod.experimental.v1.PersonalAccessToken tokens = 1;
167
+ */
168
+ tokens: PersonalAccessToken[];
169
+ constructor(data?: PartialMessage<ListPersonalAccessTokensResponse>);
170
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
171
+ static readonly typeName = "gitpod.experimental.v1.ListPersonalAccessTokensResponse";
172
+ static readonly fields: FieldList;
173
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ListPersonalAccessTokensResponse;
174
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ListPersonalAccessTokensResponse;
175
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ListPersonalAccessTokensResponse;
176
+ static equals(a: ListPersonalAccessTokensResponse | PlainMessage<ListPersonalAccessTokensResponse> | undefined, b: ListPersonalAccessTokensResponse | PlainMessage<ListPersonalAccessTokensResponse> | undefined): boolean;
177
+ }
178
+ /**
179
+ * @generated from message gitpod.experimental.v1.RegeneratePersonalAccessTokenRequest
180
+ */
181
+ export declare class RegeneratePersonalAccessTokenRequest extends Message<RegeneratePersonalAccessTokenRequest> {
182
+ /**
183
+ * id is the ID of the PersonalAccessToken
184
+ *
185
+ * @generated from field: string id = 1;
186
+ */
187
+ id: string;
188
+ /**
189
+ * expiration time is the time when the new token should expire
190
+ *
191
+ * @generated from field: google.protobuf.Timestamp expiration_time = 2;
192
+ */
193
+ expirationTime?: Timestamp;
194
+ constructor(data?: PartialMessage<RegeneratePersonalAccessTokenRequest>);
195
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
196
+ static readonly typeName = "gitpod.experimental.v1.RegeneratePersonalAccessTokenRequest";
197
+ static readonly fields: FieldList;
198
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): RegeneratePersonalAccessTokenRequest;
199
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): RegeneratePersonalAccessTokenRequest;
200
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): RegeneratePersonalAccessTokenRequest;
201
+ static equals(a: RegeneratePersonalAccessTokenRequest | PlainMessage<RegeneratePersonalAccessTokenRequest> | undefined, b: RegeneratePersonalAccessTokenRequest | PlainMessage<RegeneratePersonalAccessTokenRequest> | undefined): boolean;
202
+ }
203
+ /**
204
+ * @generated from message gitpod.experimental.v1.RegeneratePersonalAccessTokenResponse
205
+ */
206
+ export declare class RegeneratePersonalAccessTokenResponse extends Message<RegeneratePersonalAccessTokenResponse> {
207
+ /**
208
+ * @generated from field: gitpod.experimental.v1.PersonalAccessToken token = 1;
209
+ */
210
+ token?: PersonalAccessToken;
211
+ constructor(data?: PartialMessage<RegeneratePersonalAccessTokenResponse>);
212
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
213
+ static readonly typeName = "gitpod.experimental.v1.RegeneratePersonalAccessTokenResponse";
214
+ static readonly fields: FieldList;
215
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): RegeneratePersonalAccessTokenResponse;
216
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): RegeneratePersonalAccessTokenResponse;
217
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): RegeneratePersonalAccessTokenResponse;
218
+ static equals(a: RegeneratePersonalAccessTokenResponse | PlainMessage<RegeneratePersonalAccessTokenResponse> | undefined, b: RegeneratePersonalAccessTokenResponse | PlainMessage<RegeneratePersonalAccessTokenResponse> | undefined): boolean;
219
+ }
220
+ /**
221
+ * @generated from message gitpod.experimental.v1.UpdatePersonalAccessTokenRequest
222
+ */
223
+ export declare class UpdatePersonalAccessTokenRequest extends Message<UpdatePersonalAccessTokenRequest> {
224
+ /**
225
+ * @generated from field: gitpod.experimental.v1.PersonalAccessToken token = 1;
226
+ */
227
+ token?: PersonalAccessToken;
228
+ /**
229
+ * @generated from field: google.protobuf.FieldMask update_mask = 2;
230
+ */
231
+ updateMask?: FieldMask;
232
+ constructor(data?: PartialMessage<UpdatePersonalAccessTokenRequest>);
233
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
234
+ static readonly typeName = "gitpod.experimental.v1.UpdatePersonalAccessTokenRequest";
235
+ static readonly fields: FieldList;
236
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): UpdatePersonalAccessTokenRequest;
237
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): UpdatePersonalAccessTokenRequest;
238
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): UpdatePersonalAccessTokenRequest;
239
+ static equals(a: UpdatePersonalAccessTokenRequest | PlainMessage<UpdatePersonalAccessTokenRequest> | undefined, b: UpdatePersonalAccessTokenRequest | PlainMessage<UpdatePersonalAccessTokenRequest> | undefined): boolean;
240
+ }
241
+ /**
242
+ * @generated from message gitpod.experimental.v1.UpdatePersonalAccessTokenResponse
243
+ */
244
+ export declare class UpdatePersonalAccessTokenResponse extends Message<UpdatePersonalAccessTokenResponse> {
245
+ /**
246
+ * @generated from field: gitpod.experimental.v1.PersonalAccessToken token = 1;
247
+ */
248
+ token?: PersonalAccessToken;
249
+ constructor(data?: PartialMessage<UpdatePersonalAccessTokenResponse>);
250
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
251
+ static readonly typeName = "gitpod.experimental.v1.UpdatePersonalAccessTokenResponse";
252
+ static readonly fields: FieldList;
253
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): UpdatePersonalAccessTokenResponse;
254
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): UpdatePersonalAccessTokenResponse;
255
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): UpdatePersonalAccessTokenResponse;
256
+ static equals(a: UpdatePersonalAccessTokenResponse | PlainMessage<UpdatePersonalAccessTokenResponse> | undefined, b: UpdatePersonalAccessTokenResponse | PlainMessage<UpdatePersonalAccessTokenResponse> | undefined): boolean;
257
+ }
258
+ /**
259
+ * @generated from message gitpod.experimental.v1.DeletePersonalAccessTokenRequest
260
+ */
261
+ export declare class DeletePersonalAccessTokenRequest extends Message<DeletePersonalAccessTokenRequest> {
262
+ /**
263
+ * @generated from field: string id = 1;
264
+ */
265
+ id: string;
266
+ constructor(data?: PartialMessage<DeletePersonalAccessTokenRequest>);
267
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
268
+ static readonly typeName = "gitpod.experimental.v1.DeletePersonalAccessTokenRequest";
269
+ static readonly fields: FieldList;
270
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): DeletePersonalAccessTokenRequest;
271
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): DeletePersonalAccessTokenRequest;
272
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): DeletePersonalAccessTokenRequest;
273
+ static equals(a: DeletePersonalAccessTokenRequest | PlainMessage<DeletePersonalAccessTokenRequest> | undefined, b: DeletePersonalAccessTokenRequest | PlainMessage<DeletePersonalAccessTokenRequest> | undefined): boolean;
274
+ }
275
+ /**
276
+ * @generated from message gitpod.experimental.v1.DeletePersonalAccessTokenResponse
277
+ */
278
+ export declare class DeletePersonalAccessTokenResponse extends Message<DeletePersonalAccessTokenResponse> {
279
+ constructor(data?: PartialMessage<DeletePersonalAccessTokenResponse>);
280
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
281
+ static readonly typeName = "gitpod.experimental.v1.DeletePersonalAccessTokenResponse";
282
+ static readonly fields: FieldList;
283
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): DeletePersonalAccessTokenResponse;
284
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): DeletePersonalAccessTokenResponse;
285
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): DeletePersonalAccessTokenResponse;
286
+ static equals(a: DeletePersonalAccessTokenResponse | PlainMessage<DeletePersonalAccessTokenResponse> | undefined, b: DeletePersonalAccessTokenResponse | PlainMessage<DeletePersonalAccessTokenResponse> | undefined): boolean;
287
+ }
288
+ //# 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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"}