@gitpod/public-api 0.1.5-sje-installer-proxy-config-backup.0 → 0.1.5-sje-no-log-envvars.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 (33) hide show
  1. package/lib/gitpod/v1/pagination_pb.d.ts +27 -30
  2. package/lib/gitpod/v1/pagination_pb.d.ts.map +1 -0
  3. package/lib/gitpod/v1/pagination_pb.js +43 -199
  4. package/lib/gitpod/v1/pagination_pb.js.map +1 -0
  5. package/lib/gitpod/v1/pagination_pb.ts +60 -0
  6. package/lib/gitpod/v1/prebuilds_connectweb.d.ts +65 -0
  7. package/lib/gitpod/v1/prebuilds_connectweb.d.ts.map +1 -0
  8. package/lib/gitpod/v1/prebuilds_connectweb.js +72 -0
  9. package/lib/gitpod/v1/prebuilds_connectweb.js.map +1 -0
  10. package/lib/gitpod/v1/prebuilds_connectweb.ts +71 -0
  11. package/lib/gitpod/v1/prebuilds_pb.d.ts +263 -265
  12. package/lib/gitpod/v1/prebuilds_pb.d.ts.map +1 -0
  13. package/lib/gitpod/v1/prebuilds_pb.js +398 -1960
  14. package/lib/gitpod/v1/prebuilds_pb.js.map +1 -0
  15. package/lib/gitpod/v1/prebuilds_pb.ts +540 -0
  16. package/lib/gitpod/v1/workspaces_connectweb.d.ts +134 -0
  17. package/lib/gitpod/v1/workspaces_connectweb.d.ts.map +1 -0
  18. package/lib/gitpod/v1/workspaces_connectweb.js +141 -0
  19. package/lib/gitpod/v1/workspaces_connectweb.js.map +1 -0
  20. package/lib/gitpod/v1/workspaces_connectweb.ts +140 -0
  21. package/lib/gitpod/v1/workspaces_pb.d.ts +819 -804
  22. package/lib/gitpod/v1/workspaces_pb.d.ts.map +1 -0
  23. package/lib/gitpod/v1/workspaces_pb.js +1148 -5941
  24. package/lib/gitpod/v1/workspaces_pb.js.map +1 -0
  25. package/lib/gitpod/v1/workspaces_pb.ts +1509 -0
  26. package/package.json +7 -10
  27. package/pkg-yarn.lock +5 -5
  28. package/provenance-bundle.jsonl +2 -2
  29. package/lib/gitpod/v1/pagination_grpc_pb.js +0 -7
  30. package/lib/gitpod/v1/prebuilds_grpc_pb.d.ts +0 -95
  31. package/lib/gitpod/v1/prebuilds_grpc_pb.js +0 -161
  32. package/lib/gitpod/v1/workspaces_grpc_pb.d.ts +0 -197
  33. package/lib/gitpod/v1/workspaces_grpc_pb.js +0 -368
@@ -3,281 +3,279 @@
3
3
  * Licensed under the GNU Affero General Public License (AGPL).
4
4
  * See License-AGPL.txt in the project root for license information.
5
5
  */
6
-
7
- // package: gitpod.v1
8
- // file: gitpod/v1/prebuilds.proto
9
-
10
- /* tslint:disable */
11
- /* eslint-disable */
12
-
13
- import * as jspb from "google-protobuf";
14
- import * as gitpod_v1_workspaces_pb from "../../gitpod/v1/workspaces_pb";
15
-
16
- export class GetPrebuildRequest extends jspb.Message {
17
- getPrebuildId(): string;
18
- setPrebuildId(value: string): GetPrebuildRequest;
19
-
20
- serializeBinary(): Uint8Array;
21
- toObject(includeInstance?: boolean): GetPrebuildRequest.AsObject;
22
- static toObject(includeInstance: boolean, msg: GetPrebuildRequest): GetPrebuildRequest.AsObject;
23
- static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
24
- static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
25
- static serializeBinaryToWriter(message: GetPrebuildRequest, writer: jspb.BinaryWriter): void;
26
- static deserializeBinary(bytes: Uint8Array): GetPrebuildRequest;
27
- static deserializeBinaryFromReader(message: GetPrebuildRequest, reader: jspb.BinaryReader): GetPrebuildRequest;
28
- }
29
-
30
- export namespace GetPrebuildRequest {
31
- export type AsObject = {
32
- prebuildId: string,
33
- }
34
- }
35
-
36
- export class GetPrebuildResponse extends jspb.Message {
37
-
38
- hasPrebuild(): boolean;
39
- clearPrebuild(): void;
40
- getPrebuild(): Prebuild | undefined;
41
- setPrebuild(value?: Prebuild): GetPrebuildResponse;
42
-
43
- serializeBinary(): Uint8Array;
44
- toObject(includeInstance?: boolean): GetPrebuildResponse.AsObject;
45
- static toObject(includeInstance: boolean, msg: GetPrebuildResponse): GetPrebuildResponse.AsObject;
46
- static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
47
- static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
48
- static serializeBinaryToWriter(message: GetPrebuildResponse, writer: jspb.BinaryWriter): void;
49
- static deserializeBinary(bytes: Uint8Array): GetPrebuildResponse;
50
- static deserializeBinaryFromReader(message: GetPrebuildResponse, reader: jspb.BinaryReader): GetPrebuildResponse;
51
- }
52
-
53
- export namespace GetPrebuildResponse {
54
- export type AsObject = {
55
- prebuild?: Prebuild.AsObject,
56
- }
57
- }
58
-
59
- export class GetRunningPrebuildRequest extends jspb.Message {
60
- getContextUrl(): string;
61
- setContextUrl(value: string): GetRunningPrebuildRequest;
62
-
63
- serializeBinary(): Uint8Array;
64
- toObject(includeInstance?: boolean): GetRunningPrebuildRequest.AsObject;
65
- static toObject(includeInstance: boolean, msg: GetRunningPrebuildRequest): GetRunningPrebuildRequest.AsObject;
66
- static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
67
- static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
68
- static serializeBinaryToWriter(message: GetRunningPrebuildRequest, writer: jspb.BinaryWriter): void;
69
- static deserializeBinary(bytes: Uint8Array): GetRunningPrebuildRequest;
70
- static deserializeBinaryFromReader(message: GetRunningPrebuildRequest, reader: jspb.BinaryReader): GetRunningPrebuildRequest;
71
- }
72
-
73
- export namespace GetRunningPrebuildRequest {
74
- export type AsObject = {
75
- contextUrl: string,
76
- }
77
- }
78
-
79
- export class GetRunningPrebuildResponse extends jspb.Message {
80
-
81
- hasPrebuild(): boolean;
82
- clearPrebuild(): void;
83
- getPrebuild(): Prebuild | undefined;
84
- setPrebuild(value?: Prebuild): GetRunningPrebuildResponse;
85
-
86
- serializeBinary(): Uint8Array;
87
- toObject(includeInstance?: boolean): GetRunningPrebuildResponse.AsObject;
88
- static toObject(includeInstance: boolean, msg: GetRunningPrebuildResponse): GetRunningPrebuildResponse.AsObject;
89
- static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
90
- static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
91
- static serializeBinaryToWriter(message: GetRunningPrebuildResponse, writer: jspb.BinaryWriter): void;
92
- static deserializeBinary(bytes: Uint8Array): GetRunningPrebuildResponse;
93
- static deserializeBinaryFromReader(message: GetRunningPrebuildResponse, reader: jspb.BinaryReader): GetRunningPrebuildResponse;
94
- }
95
-
96
- export namespace GetRunningPrebuildResponse {
97
- export type AsObject = {
98
- prebuild?: Prebuild.AsObject,
99
- }
100
- }
101
-
102
- export class ListenToPrebuildStatusRequest extends jspb.Message {
103
- getPrebuildId(): string;
104
- setPrebuildId(value: string): ListenToPrebuildStatusRequest;
105
-
106
- serializeBinary(): Uint8Array;
107
- toObject(includeInstance?: boolean): ListenToPrebuildStatusRequest.AsObject;
108
- static toObject(includeInstance: boolean, msg: ListenToPrebuildStatusRequest): ListenToPrebuildStatusRequest.AsObject;
109
- static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
110
- static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
111
- static serializeBinaryToWriter(message: ListenToPrebuildStatusRequest, writer: jspb.BinaryWriter): void;
112
- static deserializeBinary(bytes: Uint8Array): ListenToPrebuildStatusRequest;
113
- static deserializeBinaryFromReader(message: ListenToPrebuildStatusRequest, reader: jspb.BinaryReader): ListenToPrebuildStatusRequest;
114
- }
115
-
116
- export namespace ListenToPrebuildStatusRequest {
117
- export type AsObject = {
118
- prebuildId: string,
119
- }
6
+ import type { BinaryReadOptions, FieldList, JsonReadOptions, JsonValue, PartialMessage, PlainMessage } from "@bufbuild/protobuf";
7
+ import { Message } from "@bufbuild/protobuf";
8
+ import { WorkspaceContext } from "./workspaces_pb.js";
9
+ /**
10
+ * @generated from message gitpod.v1.GetPrebuildRequest
11
+ */
12
+ export declare class GetPrebuildRequest extends Message<GetPrebuildRequest> {
13
+ /**
14
+ * @generated from field: string prebuild_id = 1;
15
+ */
16
+ prebuildId: string;
17
+ constructor(data?: PartialMessage<GetPrebuildRequest>);
18
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
19
+ static readonly typeName = "gitpod.v1.GetPrebuildRequest";
20
+ static readonly fields: FieldList;
21
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetPrebuildRequest;
22
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetPrebuildRequest;
23
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetPrebuildRequest;
24
+ static equals(a: GetPrebuildRequest | PlainMessage<GetPrebuildRequest> | undefined, b: GetPrebuildRequest | PlainMessage<GetPrebuildRequest> | undefined): boolean;
120
25
  }
121
-
122
- export class ListenToPrebuildStatusResponse extends jspb.Message {
123
-
124
- hasStatus(): boolean;
125
- clearStatus(): void;
126
- getStatus(): PrebuildStatus | undefined;
127
- setStatus(value?: PrebuildStatus): ListenToPrebuildStatusResponse;
128
-
129
- serializeBinary(): Uint8Array;
130
- toObject(includeInstance?: boolean): ListenToPrebuildStatusResponse.AsObject;
131
- static toObject(includeInstance: boolean, msg: ListenToPrebuildStatusResponse): ListenToPrebuildStatusResponse.AsObject;
132
- static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
133
- static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
134
- static serializeBinaryToWriter(message: ListenToPrebuildStatusResponse, writer: jspb.BinaryWriter): void;
135
- static deserializeBinary(bytes: Uint8Array): ListenToPrebuildStatusResponse;
136
- static deserializeBinaryFromReader(message: ListenToPrebuildStatusResponse, reader: jspb.BinaryReader): ListenToPrebuildStatusResponse;
26
+ /**
27
+ * @generated from message gitpod.v1.GetPrebuildResponse
28
+ */
29
+ export declare class GetPrebuildResponse extends Message<GetPrebuildResponse> {
30
+ /**
31
+ * @generated from field: gitpod.v1.Prebuild prebuild = 1;
32
+ */
33
+ prebuild?: Prebuild;
34
+ constructor(data?: PartialMessage<GetPrebuildResponse>);
35
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
36
+ static readonly typeName = "gitpod.v1.GetPrebuildResponse";
37
+ static readonly fields: FieldList;
38
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetPrebuildResponse;
39
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetPrebuildResponse;
40
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetPrebuildResponse;
41
+ static equals(a: GetPrebuildResponse | PlainMessage<GetPrebuildResponse> | undefined, b: GetPrebuildResponse | PlainMessage<GetPrebuildResponse> | undefined): boolean;
137
42
  }
138
-
139
- export namespace ListenToPrebuildStatusResponse {
140
- export type AsObject = {
141
- status?: PrebuildStatus.AsObject,
142
- }
43
+ /**
44
+ * @generated from message gitpod.v1.GetRunningPrebuildRequest
45
+ */
46
+ export declare class GetRunningPrebuildRequest extends Message<GetRunningPrebuildRequest> {
47
+ /**
48
+ * @generated from field: string context_url = 1;
49
+ */
50
+ contextUrl: string;
51
+ constructor(data?: PartialMessage<GetRunningPrebuildRequest>);
52
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
53
+ static readonly typeName = "gitpod.v1.GetRunningPrebuildRequest";
54
+ static readonly fields: FieldList;
55
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetRunningPrebuildRequest;
56
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetRunningPrebuildRequest;
57
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetRunningPrebuildRequest;
58
+ static equals(a: GetRunningPrebuildRequest | PlainMessage<GetRunningPrebuildRequest> | undefined, b: GetRunningPrebuildRequest | PlainMessage<GetRunningPrebuildRequest> | undefined): boolean;
143
59
  }
144
-
145
- export class ListenToPrebuildLogsRequest extends jspb.Message {
146
- getPrebuildId(): string;
147
- setPrebuildId(value: string): ListenToPrebuildLogsRequest;
148
-
149
- serializeBinary(): Uint8Array;
150
- toObject(includeInstance?: boolean): ListenToPrebuildLogsRequest.AsObject;
151
- static toObject(includeInstance: boolean, msg: ListenToPrebuildLogsRequest): ListenToPrebuildLogsRequest.AsObject;
152
- static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
153
- static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
154
- static serializeBinaryToWriter(message: ListenToPrebuildLogsRequest, writer: jspb.BinaryWriter): void;
155
- static deserializeBinary(bytes: Uint8Array): ListenToPrebuildLogsRequest;
156
- static deserializeBinaryFromReader(message: ListenToPrebuildLogsRequest, reader: jspb.BinaryReader): ListenToPrebuildLogsRequest;
60
+ /**
61
+ * @generated from message gitpod.v1.GetRunningPrebuildResponse
62
+ */
63
+ export declare class GetRunningPrebuildResponse extends Message<GetRunningPrebuildResponse> {
64
+ /**
65
+ * @generated from field: gitpod.v1.Prebuild prebuild = 1;
66
+ */
67
+ prebuild?: Prebuild;
68
+ constructor(data?: PartialMessage<GetRunningPrebuildResponse>);
69
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
70
+ static readonly typeName = "gitpod.v1.GetRunningPrebuildResponse";
71
+ static readonly fields: FieldList;
72
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetRunningPrebuildResponse;
73
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetRunningPrebuildResponse;
74
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetRunningPrebuildResponse;
75
+ static equals(a: GetRunningPrebuildResponse | PlainMessage<GetRunningPrebuildResponse> | undefined, b: GetRunningPrebuildResponse | PlainMessage<GetRunningPrebuildResponse> | undefined): boolean;
157
76
  }
158
-
159
- export namespace ListenToPrebuildLogsRequest {
160
- export type AsObject = {
161
- prebuildId: string,
162
- }
77
+ /**
78
+ * @generated from message gitpod.v1.ListenToPrebuildStatusRequest
79
+ */
80
+ export declare class ListenToPrebuildStatusRequest extends Message<ListenToPrebuildStatusRequest> {
81
+ /**
82
+ * @generated from field: string prebuild_id = 1;
83
+ */
84
+ prebuildId: string;
85
+ constructor(data?: PartialMessage<ListenToPrebuildStatusRequest>);
86
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
87
+ static readonly typeName = "gitpod.v1.ListenToPrebuildStatusRequest";
88
+ static readonly fields: FieldList;
89
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ListenToPrebuildStatusRequest;
90
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ListenToPrebuildStatusRequest;
91
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ListenToPrebuildStatusRequest;
92
+ static equals(a: ListenToPrebuildStatusRequest | PlainMessage<ListenToPrebuildStatusRequest> | undefined, b: ListenToPrebuildStatusRequest | PlainMessage<ListenToPrebuildStatusRequest> | undefined): boolean;
163
93
  }
164
-
165
- export class ListenToPrebuildLogsResponse extends jspb.Message {
166
- getLine(): string;
167
- setLine(value: string): ListenToPrebuildLogsResponse;
168
-
169
- serializeBinary(): Uint8Array;
170
- toObject(includeInstance?: boolean): ListenToPrebuildLogsResponse.AsObject;
171
- static toObject(includeInstance: boolean, msg: ListenToPrebuildLogsResponse): ListenToPrebuildLogsResponse.AsObject;
172
- static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
173
- static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
174
- static serializeBinaryToWriter(message: ListenToPrebuildLogsResponse, writer: jspb.BinaryWriter): void;
175
- static deserializeBinary(bytes: Uint8Array): ListenToPrebuildLogsResponse;
176
- static deserializeBinaryFromReader(message: ListenToPrebuildLogsResponse, reader: jspb.BinaryReader): ListenToPrebuildLogsResponse;
94
+ /**
95
+ * @generated from message gitpod.v1.ListenToPrebuildStatusResponse
96
+ */
97
+ export declare class ListenToPrebuildStatusResponse extends Message<ListenToPrebuildStatusResponse> {
98
+ /**
99
+ * @generated from field: gitpod.v1.PrebuildStatus status = 1;
100
+ */
101
+ status?: PrebuildStatus;
102
+ constructor(data?: PartialMessage<ListenToPrebuildStatusResponse>);
103
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
104
+ static readonly typeName = "gitpod.v1.ListenToPrebuildStatusResponse";
105
+ static readonly fields: FieldList;
106
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ListenToPrebuildStatusResponse;
107
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ListenToPrebuildStatusResponse;
108
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ListenToPrebuildStatusResponse;
109
+ static equals(a: ListenToPrebuildStatusResponse | PlainMessage<ListenToPrebuildStatusResponse> | undefined, b: ListenToPrebuildStatusResponse | PlainMessage<ListenToPrebuildStatusResponse> | undefined): boolean;
177
110
  }
178
-
179
- export namespace ListenToPrebuildLogsResponse {
180
- export type AsObject = {
181
- line: string,
182
- }
111
+ /**
112
+ * @generated from message gitpod.v1.ListenToPrebuildLogsRequest
113
+ */
114
+ export declare class ListenToPrebuildLogsRequest extends Message<ListenToPrebuildLogsRequest> {
115
+ /**
116
+ * @generated from field: string prebuild_id = 1;
117
+ */
118
+ prebuildId: string;
119
+ constructor(data?: PartialMessage<ListenToPrebuildLogsRequest>);
120
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
121
+ static readonly typeName = "gitpod.v1.ListenToPrebuildLogsRequest";
122
+ static readonly fields: FieldList;
123
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ListenToPrebuildLogsRequest;
124
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ListenToPrebuildLogsRequest;
125
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ListenToPrebuildLogsRequest;
126
+ static equals(a: ListenToPrebuildLogsRequest | PlainMessage<ListenToPrebuildLogsRequest> | undefined, b: ListenToPrebuildLogsRequest | PlainMessage<ListenToPrebuildLogsRequest> | undefined): boolean;
183
127
  }
184
-
185
- export class Prebuild extends jspb.Message {
186
- getPrebuildId(): string;
187
- setPrebuildId(value: string): Prebuild;
188
-
189
- hasSpec(): boolean;
190
- clearSpec(): void;
191
- getSpec(): PrebuildSpec | undefined;
192
- setSpec(value?: PrebuildSpec): Prebuild;
193
-
194
- hasStatus(): boolean;
195
- clearStatus(): void;
196
- getStatus(): PrebuildStatus | undefined;
197
- setStatus(value?: PrebuildStatus): Prebuild;
198
-
199
- serializeBinary(): Uint8Array;
200
- toObject(includeInstance?: boolean): Prebuild.AsObject;
201
- static toObject(includeInstance: boolean, msg: Prebuild): Prebuild.AsObject;
202
- static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
203
- static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
204
- static serializeBinaryToWriter(message: Prebuild, writer: jspb.BinaryWriter): void;
205
- static deserializeBinary(bytes: Uint8Array): Prebuild;
206
- static deserializeBinaryFromReader(message: Prebuild, reader: jspb.BinaryReader): Prebuild;
128
+ /**
129
+ * @generated from message gitpod.v1.ListenToPrebuildLogsResponse
130
+ */
131
+ export declare class ListenToPrebuildLogsResponse extends Message<ListenToPrebuildLogsResponse> {
132
+ /**
133
+ * @generated from field: string line = 1;
134
+ */
135
+ line: string;
136
+ constructor(data?: PartialMessage<ListenToPrebuildLogsResponse>);
137
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
138
+ static readonly typeName = "gitpod.v1.ListenToPrebuildLogsResponse";
139
+ static readonly fields: FieldList;
140
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ListenToPrebuildLogsResponse;
141
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ListenToPrebuildLogsResponse;
142
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ListenToPrebuildLogsResponse;
143
+ static equals(a: ListenToPrebuildLogsResponse | PlainMessage<ListenToPrebuildLogsResponse> | undefined, b: ListenToPrebuildLogsResponse | PlainMessage<ListenToPrebuildLogsResponse> | undefined): boolean;
207
144
  }
208
-
209
- export namespace Prebuild {
210
- export type AsObject = {
211
- prebuildId: string,
212
- spec?: PrebuildSpec.AsObject,
213
- status?: PrebuildStatus.AsObject,
214
- }
145
+ /**
146
+ * Prebuild describes a prebuild
147
+ *
148
+ * @generated from message gitpod.v1.Prebuild
149
+ */
150
+ export declare class Prebuild extends Message<Prebuild> {
151
+ /**
152
+ * @generated from field: string prebuild_id = 1;
153
+ */
154
+ prebuildId: string;
155
+ /**
156
+ * @generated from field: gitpod.v1.PrebuildSpec spec = 2;
157
+ */
158
+ spec?: PrebuildSpec;
159
+ /**
160
+ * @generated from field: gitpod.v1.PrebuildStatus status = 3;
161
+ */
162
+ status?: PrebuildStatus;
163
+ constructor(data?: PartialMessage<Prebuild>);
164
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
165
+ static readonly typeName = "gitpod.v1.Prebuild";
166
+ static readonly fields: FieldList;
167
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): Prebuild;
168
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): Prebuild;
169
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): Prebuild;
170
+ static equals(a: Prebuild | PlainMessage<Prebuild> | undefined, b: Prebuild | PlainMessage<Prebuild> | undefined): boolean;
215
171
  }
216
-
217
- export class PrebuildSpec extends jspb.Message {
218
-
219
- hasContext(): boolean;
220
- clearContext(): void;
221
- getContext(): gitpod_v1_workspaces_pb.WorkspaceContext | undefined;
222
- setContext(value?: gitpod_v1_workspaces_pb.WorkspaceContext): PrebuildSpec;
223
- getIncremental(): boolean;
224
- setIncremental(value: boolean): PrebuildSpec;
225
-
226
- serializeBinary(): Uint8Array;
227
- toObject(includeInstance?: boolean): PrebuildSpec.AsObject;
228
- static toObject(includeInstance: boolean, msg: PrebuildSpec): PrebuildSpec.AsObject;
229
- static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
230
- static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
231
- static serializeBinaryToWriter(message: PrebuildSpec, writer: jspb.BinaryWriter): void;
232
- static deserializeBinary(bytes: Uint8Array): PrebuildSpec;
233
- static deserializeBinaryFromReader(message: PrebuildSpec, reader: jspb.BinaryReader): PrebuildSpec;
172
+ /**
173
+ * PrebuildSpec specifies the prebuild input.
174
+ *
175
+ * @generated from message gitpod.v1.PrebuildSpec
176
+ */
177
+ export declare class PrebuildSpec extends Message<PrebuildSpec> {
178
+ /**
179
+ * @generated from field: gitpod.v1.WorkspaceContext context = 1;
180
+ */
181
+ context?: WorkspaceContext;
182
+ /**
183
+ * Incremental prebuilds are based on other prebuilds. If this field is true,
184
+ * expect the context detail to point to another prebuild.
185
+ *
186
+ * @generated from field: bool incremental = 2;
187
+ */
188
+ incremental: boolean;
189
+ constructor(data?: PartialMessage<PrebuildSpec>);
190
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
191
+ static readonly typeName = "gitpod.v1.PrebuildSpec";
192
+ static readonly fields: FieldList;
193
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): PrebuildSpec;
194
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): PrebuildSpec;
195
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): PrebuildSpec;
196
+ static equals(a: PrebuildSpec | PlainMessage<PrebuildSpec> | undefined, b: PrebuildSpec | PlainMessage<PrebuildSpec> | undefined): boolean;
234
197
  }
235
-
236
- export namespace PrebuildSpec {
237
- export type AsObject = {
238
- context?: gitpod_v1_workspaces_pb.WorkspaceContext.AsObject,
239
- incremental: boolean,
240
- }
198
+ /**
199
+ * PrebuildStatus describes the prebuild status.
200
+ *
201
+ * @generated from message gitpod.v1.PrebuildStatus
202
+ */
203
+ export declare class PrebuildStatus extends Message<PrebuildStatus> {
204
+ /**
205
+ * Phase is the prebuild phase we're in
206
+ *
207
+ * @generated from field: gitpod.v1.PrebuildStatus.Phase phase = 1;
208
+ */
209
+ phase: PrebuildStatus_Phase;
210
+ /**
211
+ * Result indicates what result the prebuild produced, i.e. if it ran
212
+ * successfully or failed for some reason. If phase != done, this field
213
+ * will have RESULT_UNSPECIFIED as value.
214
+ *
215
+ * @generated from field: gitpod.v1.PrebuildStatus.Result result = 2;
216
+ */
217
+ result: PrebuildStatus_Result;
218
+ /**
219
+ * result_message contains a human readable message describing the prebuild
220
+ * result. E.g. if teh result is SYSTEM_FAILURE, the message describes what
221
+ * that failure was.
222
+ *
223
+ * @generated from field: string result_message = 3;
224
+ */
225
+ resultMessage: string;
226
+ constructor(data?: PartialMessage<PrebuildStatus>);
227
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
228
+ static readonly typeName = "gitpod.v1.PrebuildStatus";
229
+ static readonly fields: FieldList;
230
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): PrebuildStatus;
231
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): PrebuildStatus;
232
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): PrebuildStatus;
233
+ static equals(a: PrebuildStatus | PlainMessage<PrebuildStatus> | undefined, b: PrebuildStatus | PlainMessage<PrebuildStatus> | undefined): boolean;
241
234
  }
242
-
243
- export class PrebuildStatus extends jspb.Message {
244
- getPhase(): PrebuildStatus.Phase;
245
- setPhase(value: PrebuildStatus.Phase): PrebuildStatus;
246
- getResult(): PrebuildStatus.Result;
247
- setResult(value: PrebuildStatus.Result): PrebuildStatus;
248
- getResultMessage(): string;
249
- setResultMessage(value: string): PrebuildStatus;
250
-
251
- serializeBinary(): Uint8Array;
252
- toObject(includeInstance?: boolean): PrebuildStatus.AsObject;
253
- static toObject(includeInstance: boolean, msg: PrebuildStatus): PrebuildStatus.AsObject;
254
- static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
255
- static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
256
- static serializeBinaryToWriter(message: PrebuildStatus, writer: jspb.BinaryWriter): void;
257
- static deserializeBinary(bytes: Uint8Array): PrebuildStatus;
258
- static deserializeBinaryFromReader(message: PrebuildStatus, reader: jspb.BinaryReader): PrebuildStatus;
235
+ /**
236
+ * @generated from enum gitpod.v1.PrebuildStatus.Phase
237
+ */
238
+ export declare enum PrebuildStatus_Phase {
239
+ /**
240
+ * @generated from enum value: PHASE_UNSPECIFIED = 0;
241
+ */
242
+ UNSPECIFIED = 0,
243
+ /**
244
+ * @generated from enum value: PHASE_PENDING = 1;
245
+ */
246
+ PENDING = 1,
247
+ /**
248
+ * @generated from enum value: PHASE_RUNNING = 2;
249
+ */
250
+ RUNNING = 2,
251
+ /**
252
+ * @generated from enum value: PHASE_DONE = 3;
253
+ */
254
+ DONE = 3
259
255
  }
260
-
261
- export namespace PrebuildStatus {
262
- export type AsObject = {
263
- phase: PrebuildStatus.Phase,
264
- result: PrebuildStatus.Result,
265
- resultMessage: string,
266
- }
267
-
268
- export enum Phase {
269
- PHASE_UNSPECIFIED = 0,
270
- PHASE_PENDING = 1,
271
- PHASE_RUNNING = 2,
272
- PHASE_DONE = 3,
273
- }
274
-
275
- export enum Result {
276
- RESULT_UNSPECIFIED = 0,
277
- RESULT_SUCCESS = 1,
278
- RESULT_USER_CANCELED = 2,
279
- RESULT_SYSTEM_FAILURE = 3,
280
- RESULT_TASK_FAILURE = 4,
281
- }
282
-
256
+ /**
257
+ * @generated from enum gitpod.v1.PrebuildStatus.Result
258
+ */
259
+ export declare enum PrebuildStatus_Result {
260
+ /**
261
+ * @generated from enum value: RESULT_UNSPECIFIED = 0;
262
+ */
263
+ UNSPECIFIED = 0,
264
+ /**
265
+ * @generated from enum value: RESULT_SUCCESS = 1;
266
+ */
267
+ SUCCESS = 1,
268
+ /**
269
+ * @generated from enum value: RESULT_USER_CANCELED = 2;
270
+ */
271
+ USER_CANCELED = 2,
272
+ /**
273
+ * @generated from enum value: RESULT_SYSTEM_FAILURE = 3;
274
+ */
275
+ SYSTEM_FAILURE = 3,
276
+ /**
277
+ * @generated from enum value: RESULT_TASK_FAILURE = 4;
278
+ */
279
+ TASK_FAILURE = 4
283
280
  }
281
+ //# sourceMappingURL=prebuilds_pb.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"prebuilds_pb.d.ts","sourceRoot":"","sources":["../../../src/gitpod/v1/prebuilds_pb.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAOH,OAAO,KAAK,EAAC,iBAAiB,EAAE,SAAS,EAAE,eAAe,EAAE,SAAS,EAAE,cAAc,EAAE,YAAY,EAAC,MAAM,oBAAoB,CAAC;AAC/H,OAAO,EAAC,OAAO,EAAS,MAAM,oBAAoB,CAAC;AACnD,OAAO,EAAC,gBAAgB,EAAC,MAAM,oBAAoB,CAAC;AAEpD;;GAEG;AACH,qBAAa,kBAAmB,SAAQ,OAAO,CAAC,kBAAkB,CAAC;IACjE;;OAEG;IACH,UAAU,SAAM;gBAEJ,IAAI,CAAC,EAAE,cAAc,CAAC,kBAAkB,CAAC;IAKrD,MAAM,CAAC,QAAQ,CAAC,OAAO,6EAAU;IACjC,MAAM,CAAC,QAAQ,CAAC,QAAQ,kCAAkC;IAC1D,MAAM,CAAC,QAAQ,CAAC,MAAM,EAAE,SAAS,CAE9B;IAEH,MAAM,CAAC,UAAU,CAAC,KAAK,EAAE,UAAU,EAAE,OAAO,CAAC,EAAE,OAAO,CAAC,iBAAiB,CAAC,GAAG,kBAAkB;IAI9F,MAAM,CAAC,QAAQ,CAAC,SAAS,EAAE,SAAS,EAAE,OAAO,CAAC,EAAE,OAAO,CAAC,eAAe,CAAC,GAAG,kBAAkB;IAI7F,MAAM,CAAC,cAAc,CAAC,UAAU,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,OAAO,CAAC,eAAe,CAAC,GAAG,kBAAkB;IAIjG,MAAM,CAAC,MAAM,CAAC,CAAC,EAAE,kBAAkB,GAAG,YAAY,CAAC,kBAAkB,CAAC,GAAG,SAAS,EAAE,CAAC,EAAE,kBAAkB,GAAG,YAAY,CAAC,kBAAkB,CAAC,GAAG,SAAS,GAAG,OAAO;CAGnK;AAED;;GAEG;AACH,qBAAa,mBAAoB,SAAQ,OAAO,CAAC,mBAAmB,CAAC;IACnE;;OAEG;IACH,QAAQ,CAAC,EAAE,QAAQ,CAAC;gBAER,IAAI,CAAC,EAAE,cAAc,CAAC,mBAAmB,CAAC;IAKtD,MAAM,CAAC,QAAQ,CAAC,OAAO,6EAAU;IACjC,MAAM,CAAC,QAAQ,CAAC,QAAQ,mCAAmC;IAC3D,MAAM,CAAC,QAAQ,CAAC,MAAM,EAAE,SAAS,CAE9B;IAEH,MAAM,CAAC,UAAU,CAAC,KAAK,EAAE,UAAU,EAAE,OAAO,CAAC,EAAE,OAAO,CAAC,iBAAiB,CAAC,GAAG,mBAAmB;IAI/F,MAAM,CAAC,QAAQ,CAAC,SAAS,EAAE,SAAS,EAAE,OAAO,CAAC,EAAE,OAAO,CAAC,eAAe,CAAC,GAAG,mBAAmB;IAI9F,MAAM,CAAC,cAAc,CAAC,UAAU,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,OAAO,CAAC,eAAe,CAAC,GAAG,mBAAmB;IAIlG,MAAM,CAAC,MAAM,CAAC,CAAC,EAAE,mBAAmB,GAAG,YAAY,CAAC,mBAAmB,CAAC,GAAG,SAAS,EAAE,CAAC,EAAE,mBAAmB,GAAG,YAAY,CAAC,mBAAmB,CAAC,GAAG,SAAS,GAAG,OAAO;CAGvK;AAED;;GAEG;AACH,qBAAa,yBAA0B,SAAQ,OAAO,CAAC,yBAAyB,CAAC;IAC/E;;OAEG;IACH,UAAU,SAAM;gBAEJ,IAAI,CAAC,EAAE,cAAc,CAAC,yBAAyB,CAAC;IAK5D,MAAM,CAAC,QAAQ,CAAC,OAAO,6EAAU;IACjC,MAAM,CAAC,QAAQ,CAAC,QAAQ,yCAAyC;IACjE,MAAM,CAAC,QAAQ,CAAC,MAAM,EAAE,SAAS,CAE9B;IAEH,MAAM,CAAC,UAAU,CAAC,KAAK,EAAE,UAAU,EAAE,OAAO,CAAC,EAAE,OAAO,CAAC,iBAAiB,CAAC,GAAG,yBAAyB;IAIrG,MAAM,CAAC,QAAQ,CAAC,SAAS,EAAE,SAAS,EAAE,OAAO,CAAC,EAAE,OAAO,CAAC,eAAe,CAAC,GAAG,yBAAyB;IAIpG,MAAM,CAAC,cAAc,CAAC,UAAU,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,OAAO,CAAC,eAAe,CAAC,GAAG,yBAAyB;IAIxG,MAAM,CAAC,MAAM,CAAC,CAAC,EAAE,yBAAyB,GAAG,YAAY,CAAC,yBAAyB,CAAC,GAAG,SAAS,EAAE,CAAC,EAAE,yBAAyB,GAAG,YAAY,CAAC,yBAAyB,CAAC,GAAG,SAAS,GAAG,OAAO;CAG/L;AAED;;GAEG;AACH,qBAAa,0BAA2B,SAAQ,OAAO,CAAC,0BAA0B,CAAC;IACjF;;OAEG;IACH,QAAQ,CAAC,EAAE,QAAQ,CAAC;gBAER,IAAI,CAAC,EAAE,cAAc,CAAC,0BAA0B,CAAC;IAK7D,MAAM,CAAC,QAAQ,CAAC,OAAO,6EAAU;IACjC,MAAM,CAAC,QAAQ,CAAC,QAAQ,0CAA0C;IAClE,MAAM,CAAC,QAAQ,CAAC,MAAM,EAAE,SAAS,CAE9B;IAEH,MAAM,CAAC,UAAU,CAAC,KAAK,EAAE,UAAU,EAAE,OAAO,CAAC,EAAE,OAAO,CAAC,iBAAiB,CAAC,GAAG,0BAA0B;IAItG,MAAM,CAAC,QAAQ,CAAC,SAAS,EAAE,SAAS,EAAE,OAAO,CAAC,EAAE,OAAO,CAAC,eAAe,CAAC,GAAG,0BAA0B;IAIrG,MAAM,CAAC,cAAc,CAAC,UAAU,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,OAAO,CAAC,eAAe,CAAC,GAAG,0BAA0B;IAIzG,MAAM,CAAC,MAAM,CAAC,CAAC,EAAE,0BAA0B,GAAG,YAAY,CAAC,0BAA0B,CAAC,GAAG,SAAS,EAAE,CAAC,EAAE,0BAA0B,GAAG,YAAY,CAAC,0BAA0B,CAAC,GAAG,SAAS,GAAG,OAAO;CAGnM;AAED;;GAEG;AACH,qBAAa,6BAA8B,SAAQ,OAAO,CAAC,6BAA6B,CAAC;IACvF;;OAEG;IACH,UAAU,SAAM;gBAEJ,IAAI,CAAC,EAAE,cAAc,CAAC,6BAA6B,CAAC;IAKhE,MAAM,CAAC,QAAQ,CAAC,OAAO,6EAAU;IACjC,MAAM,CAAC,QAAQ,CAAC,QAAQ,6CAA6C;IACrE,MAAM,CAAC,QAAQ,CAAC,MAAM,EAAE,SAAS,CAE9B;IAEH,MAAM,CAAC,UAAU,CAAC,KAAK,EAAE,UAAU,EAAE,OAAO,CAAC,EAAE,OAAO,CAAC,iBAAiB,CAAC,GAAG,6BAA6B;IAIzG,MAAM,CAAC,QAAQ,CAAC,SAAS,EAAE,SAAS,EAAE,OAAO,CAAC,EAAE,OAAO,CAAC,eAAe,CAAC,GAAG,6BAA6B;IAIxG,MAAM,CAAC,cAAc,CAAC,UAAU,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,OAAO,CAAC,eAAe,CAAC,GAAG,6BAA6B;IAI5G,MAAM,CAAC,MAAM,CAAC,CAAC,EAAE,6BAA6B,GAAG,YAAY,CAAC,6BAA6B,CAAC,GAAG,SAAS,EAAE,CAAC,EAAE,6BAA6B,GAAG,YAAY,CAAC,6BAA6B,CAAC,GAAG,SAAS,GAAG,OAAO;CAG/M;AAED;;GAEG;AACH,qBAAa,8BAA+B,SAAQ,OAAO,CAAC,8BAA8B,CAAC;IACzF;;OAEG;IACH,MAAM,CAAC,EAAE,cAAc,CAAC;gBAEZ,IAAI,CAAC,EAAE,cAAc,CAAC,8BAA8B,CAAC;IAKjE,MAAM,CAAC,QAAQ,CAAC,OAAO,6EAAU;IACjC,MAAM,CAAC,QAAQ,CAAC,QAAQ,8CAA8C;IACtE,MAAM,CAAC,QAAQ,CAAC,MAAM,EAAE,SAAS,CAE9B;IAEH,MAAM,CAAC,UAAU,CAAC,KAAK,EAAE,UAAU,EAAE,OAAO,CAAC,EAAE,OAAO,CAAC,iBAAiB,CAAC,GAAG,8BAA8B;IAI1G,MAAM,CAAC,QAAQ,CAAC,SAAS,EAAE,SAAS,EAAE,OAAO,CAAC,EAAE,OAAO,CAAC,eAAe,CAAC,GAAG,8BAA8B;IAIzG,MAAM,CAAC,cAAc,CAAC,UAAU,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,OAAO,CAAC,eAAe,CAAC,GAAG,8BAA8B;IAI7G,MAAM,CAAC,MAAM,CAAC,CAAC,EAAE,8BAA8B,GAAG,YAAY,CAAC,8BAA8B,CAAC,GAAG,SAAS,EAAE,CAAC,EAAE,8BAA8B,GAAG,YAAY,CAAC,8BAA8B,CAAC,GAAG,SAAS,GAAG,OAAO;CAGnN;AAED;;GAEG;AACH,qBAAa,2BAA4B,SAAQ,OAAO,CAAC,2BAA2B,CAAC;IACnF;;OAEG;IACH,UAAU,SAAM;gBAEJ,IAAI,CAAC,EAAE,cAAc,CAAC,2BAA2B,CAAC;IAK9D,MAAM,CAAC,QAAQ,CAAC,OAAO,6EAAU;IACjC,MAAM,CAAC,QAAQ,CAAC,QAAQ,2CAA2C;IACnE,MAAM,CAAC,QAAQ,CAAC,MAAM,EAAE,SAAS,CAE9B;IAEH,MAAM,CAAC,UAAU,CAAC,KAAK,EAAE,UAAU,EAAE,OAAO,CAAC,EAAE,OAAO,CAAC,iBAAiB,CAAC,GAAG,2BAA2B;IAIvG,MAAM,CAAC,QAAQ,CAAC,SAAS,EAAE,SAAS,EAAE,OAAO,CAAC,EAAE,OAAO,CAAC,eAAe,CAAC,GAAG,2BAA2B;IAItG,MAAM,CAAC,cAAc,CAAC,UAAU,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,OAAO,CAAC,eAAe,CAAC,GAAG,2BAA2B;IAI1G,MAAM,CAAC,MAAM,CAAC,CAAC,EAAE,2BAA2B,GAAG,YAAY,CAAC,2BAA2B,CAAC,GAAG,SAAS,EAAE,CAAC,EAAE,2BAA2B,GAAG,YAAY,CAAC,2BAA2B,CAAC,GAAG,SAAS,GAAG,OAAO;CAGvM;AAED;;GAEG;AACH,qBAAa,4BAA6B,SAAQ,OAAO,CAAC,4BAA4B,CAAC;IACrF;;OAEG;IACH,IAAI,SAAM;gBAEE,IAAI,CAAC,EAAE,cAAc,CAAC,4BAA4B,CAAC;IAK/D,MAAM,CAAC,QAAQ,CAAC,OAAO,6EAAU;IACjC,MAAM,CAAC,QAAQ,CAAC,QAAQ,4CAA4C;IACpE,MAAM,CAAC,QAAQ,CAAC,MAAM,EAAE,SAAS,CAE9B;IAEH,MAAM,CAAC,UAAU,CAAC,KAAK,EAAE,UAAU,EAAE,OAAO,CAAC,EAAE,OAAO,CAAC,iBAAiB,CAAC,GAAG,4BAA4B;IAIxG,MAAM,CAAC,QAAQ,CAAC,SAAS,EAAE,SAAS,EAAE,OAAO,CAAC,EAAE,OAAO,CAAC,eAAe,CAAC,GAAG,4BAA4B;IAIvG,MAAM,CAAC,cAAc,CAAC,UAAU,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,OAAO,CAAC,eAAe,CAAC,GAAG,4BAA4B;IAI3G,MAAM,CAAC,MAAM,CAAC,CAAC,EAAE,4BAA4B,GAAG,YAAY,CAAC,4BAA4B,CAAC,GAAG,SAAS,EAAE,CAAC,EAAE,4BAA4B,GAAG,YAAY,CAAC,4BAA4B,CAAC,GAAG,SAAS,GAAG,OAAO;CAG3M;AAED;;;;GAIG;AACH,qBAAa,QAAS,SAAQ,OAAO,CAAC,QAAQ,CAAC;IAC7C;;OAEG;IACH,UAAU,SAAM;IAEhB;;OAEG;IACH,IAAI,CAAC,EAAE,YAAY,CAAC;IAEpB;;OAEG;IACH,MAAM,CAAC,EAAE,cAAc,CAAC;gBAEZ,IAAI,CAAC,EAAE,cAAc,CAAC,QAAQ,CAAC;IAK3C,MAAM,CAAC,QAAQ,CAAC,OAAO,6EAAU;IACjC,MAAM,CAAC,QAAQ,CAAC,QAAQ,wBAAwB;IAChD,MAAM,CAAC,QAAQ,CAAC,MAAM,EAAE,SAAS,CAI9B;IAEH,MAAM,CAAC,UAAU,CAAC,KAAK,EAAE,UAAU,EAAE,OAAO,CAAC,EAAE,OAAO,CAAC,iBAAiB,CAAC,GAAG,QAAQ;IAIpF,MAAM,CAAC,QAAQ,CAAC,SAAS,EAAE,SAAS,EAAE,OAAO,CAAC,EAAE,OAAO,CAAC,eAAe,CAAC,GAAG,QAAQ;IAInF,MAAM,CAAC,cAAc,CAAC,UAAU,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,OAAO,CAAC,eAAe,CAAC,GAAG,QAAQ;IAIvF,MAAM,CAAC,MAAM,CAAC,CAAC,EAAE,QAAQ,GAAG,YAAY,CAAC,QAAQ,CAAC,GAAG,SAAS,EAAE,CAAC,EAAE,QAAQ,GAAG,YAAY,CAAC,QAAQ,CAAC,GAAG,SAAS,GAAG,OAAO;CAG3H;AAED;;;;GAIG;AACH,qBAAa,YAAa,SAAQ,OAAO,CAAC,YAAY,CAAC;IACrD;;OAEG;IACH,OAAO,CAAC,EAAE,gBAAgB,CAAC;IAE3B;;;;;OAKG;IACH,WAAW,UAAS;gBAER,IAAI,CAAC,EAAE,cAAc,CAAC,YAAY,CAAC;IAK/C,MAAM,CAAC,QAAQ,CAAC,OAAO,6EAAU;IACjC,MAAM,CAAC,QAAQ,CAAC,QAAQ,4BAA4B;IACpD,MAAM,CAAC,QAAQ,CAAC,MAAM,EAAE,SAAS,CAG9B;IAEH,MAAM,CAAC,UAAU,CAAC,KAAK,EAAE,UAAU,EAAE,OAAO,CAAC,EAAE,OAAO,CAAC,iBAAiB,CAAC,GAAG,YAAY;IAIxF,MAAM,CAAC,QAAQ,CAAC,SAAS,EAAE,SAAS,EAAE,OAAO,CAAC,EAAE,OAAO,CAAC,eAAe,CAAC,GAAG,YAAY;IAIvF,MAAM,CAAC,cAAc,CAAC,UAAU,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,OAAO,CAAC,eAAe,CAAC,GAAG,YAAY;IAI3F,MAAM,CAAC,MAAM,CAAC,CAAC,EAAE,YAAY,GAAG,YAAY,CAAC,YAAY,CAAC,GAAG,SAAS,EAAE,CAAC,EAAE,YAAY,GAAG,YAAY,CAAC,YAAY,CAAC,GAAG,SAAS,GAAG,OAAO;CAG3I;AAED;;;;GAIG;AACH,qBAAa,cAAe,SAAQ,OAAO,CAAC,cAAc,CAAC;IACzD;;;;OAIG;IACH,KAAK,uBAAoC;IAEzC;;;;;;OAMG;IACH,MAAM,wBAAqC;IAE3C;;;;;;OAMG;IACH,aAAa,SAAM;gBAEP,IAAI,CAAC,EAAE,cAAc,CAAC,cAAc,CAAC;IAKjD,MAAM,CAAC,QAAQ,CAAC,OAAO,6EAAU;IACjC,MAAM,CAAC,QAAQ,CAAC,QAAQ,8BAA8B;IACtD,MAAM,CAAC,QAAQ,CAAC,MAAM,EAAE,SAAS,CAI9B;IAEH,MAAM,CAAC,UAAU,CAAC,KAAK,EAAE,UAAU,EAAE,OAAO,CAAC,EAAE,OAAO,CAAC,iBAAiB,CAAC,GAAG,cAAc;IAI1F,MAAM,CAAC,QAAQ,CAAC,SAAS,EAAE,SAAS,EAAE,OAAO,CAAC,EAAE,OAAO,CAAC,eAAe,CAAC,GAAG,cAAc;IAIzF,MAAM,CAAC,cAAc,CAAC,UAAU,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,OAAO,CAAC,eAAe,CAAC,GAAG,cAAc;IAI7F,MAAM,CAAC,MAAM,CAAC,CAAC,EAAE,cAAc,GAAG,YAAY,CAAC,cAAc,CAAC,GAAG,SAAS,EAAE,CAAC,EAAE,cAAc,GAAG,YAAY,CAAC,cAAc,CAAC,GAAG,SAAS,GAAG,OAAO;CAGnJ;AAED;;GAEG;AACH,oBAAY,oBAAoB;IAC9B;;OAEG;IACH,WAAW,IAAI;IAEf;;OAEG;IACH,OAAO,IAAI;IAEX;;OAEG;IACH,OAAO,IAAI;IAEX;;OAEG;IACH,IAAI,IAAI;CACT;AASD;;GAEG;AACH,oBAAY,qBAAqB;IAC/B;;OAEG;IACH,WAAW,IAAI;IAEf;;OAEG;IACH,OAAO,IAAI;IAEX;;OAEG;IACH,aAAa,IAAI;IAEjB;;OAEG;IACH,cAAc,IAAI;IAElB;;OAEG;IACH,YAAY,IAAI;CACjB"}