@gitpod/public-api 0.1.5-sje-no-log-envvars.0 → 0.1.5-sje-kots-db-migration-logger.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/gitpod/{v1 → experimental/v1}/pagination_pb.d.ts +2 -2
- package/lib/gitpod/experimental/v1/pagination_pb.d.ts.map +1 -0
- package/lib/gitpod/{v1 → experimental/v1}/pagination_pb.js +2 -2
- package/lib/gitpod/experimental/v1/pagination_pb.js.map +1 -0
- package/lib/gitpod/{v1 → experimental/v1}/pagination_pb.ts +3 -3
- package/lib/gitpod/experimental/v1/workspaces_connectweb.d.ts +74 -0
- package/lib/gitpod/experimental/v1/workspaces_connectweb.d.ts.map +1 -0
- package/lib/gitpod/experimental/v1/workspaces_connectweb.js +81 -0
- package/lib/gitpod/experimental/v1/workspaces_connectweb.js.map +1 -0
- package/lib/gitpod/experimental/v1/workspaces_connectweb.ts +80 -0
- package/lib/gitpod/{v1 → experimental/v1}/workspaces_pb.d.ts +88 -218
- package/lib/gitpod/experimental/v1/workspaces_pb.d.ts.map +1 -0
- package/lib/gitpod/{v1 → experimental/v1}/workspaces_pb.js +83 -321
- package/lib/gitpod/experimental/v1/workspaces_pb.js.map +1 -0
- package/lib/gitpod/{v1 → experimental/v1}/workspaces_pb.ts +114 -404
- package/package.json +1 -2
- package/pkg-yarn.lock +1 -1
- package/provenance-bundle.jsonl +2 -2
- package/lib/gitpod/v1/pagination_pb.d.ts.map +0 -1
- package/lib/gitpod/v1/pagination_pb.js.map +0 -1
- package/lib/gitpod/v1/prebuilds_connectweb.d.ts +0 -65
- package/lib/gitpod/v1/prebuilds_connectweb.d.ts.map +0 -1
- package/lib/gitpod/v1/prebuilds_connectweb.js +0 -72
- package/lib/gitpod/v1/prebuilds_connectweb.js.map +0 -1
- package/lib/gitpod/v1/prebuilds_connectweb.ts +0 -71
- package/lib/gitpod/v1/prebuilds_pb.d.ts +0 -281
- package/lib/gitpod/v1/prebuilds_pb.d.ts.map +0 -1
- package/lib/gitpod/v1/prebuilds_pb.js +0 -435
- package/lib/gitpod/v1/prebuilds_pb.js.map +0 -1
- package/lib/gitpod/v1/prebuilds_pb.ts +0 -540
- package/lib/gitpod/v1/workspaces_connectweb.d.ts +0 -134
- package/lib/gitpod/v1/workspaces_connectweb.d.ts.map +0 -1
- package/lib/gitpod/v1/workspaces_connectweb.js +0 -141
- package/lib/gitpod/v1/workspaces_connectweb.js.map +0 -1
- package/lib/gitpod/v1/workspaces_connectweb.ts +0 -140
- package/lib/gitpod/v1/workspaces_pb.d.ts.map +0 -1
- package/lib/gitpod/v1/workspaces_pb.js.map +0 -1
@@ -1,71 +0,0 @@
|
|
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
|
-
|
7
|
-
// @generated by protoc-gen-connect-web v0.2.1 with parameter "target=ts"
|
8
|
-
// @generated from file gitpod/v1/prebuilds.proto (package gitpod.v1, syntax proto3)
|
9
|
-
/* eslint-disable */
|
10
|
-
/* @ts-nocheck */
|
11
|
-
|
12
|
-
import {GetPrebuildRequest, GetPrebuildResponse, GetRunningPrebuildRequest, GetRunningPrebuildResponse, ListenToPrebuildLogsRequest, ListenToPrebuildLogsResponse, ListenToPrebuildStatusRequest, ListenToPrebuildStatusResponse} from "./prebuilds_pb.js";
|
13
|
-
import {MethodKind} from "@bufbuild/protobuf";
|
14
|
-
|
15
|
-
/**
|
16
|
-
* @generated from service gitpod.v1.PrebuildsService
|
17
|
-
*/
|
18
|
-
export const PrebuildsService = {
|
19
|
-
typeName: "gitpod.v1.PrebuildsService",
|
20
|
-
methods: {
|
21
|
-
/**
|
22
|
-
* GetPrebuild retrieves a single rebuild.
|
23
|
-
* Errors:
|
24
|
-
* NOT_FOUND if the prebuild_id does not exist
|
25
|
-
*
|
26
|
-
* @generated from rpc gitpod.v1.PrebuildsService.GetPrebuild
|
27
|
-
*/
|
28
|
-
getPrebuild: {
|
29
|
-
name: "GetPrebuild",
|
30
|
-
I: GetPrebuildRequest,
|
31
|
-
O: GetPrebuildResponse,
|
32
|
-
kind: MethodKind.Unary,
|
33
|
-
},
|
34
|
-
/**
|
35
|
-
* GetRunningPrebuild returns the prebuild ID of a running prebuild,
|
36
|
-
* or NOT_FOUND if there is no prebuild running for the content_url.
|
37
|
-
*
|
38
|
-
* @generated from rpc gitpod.v1.PrebuildsService.GetRunningPrebuild
|
39
|
-
*/
|
40
|
-
getRunningPrebuild: {
|
41
|
-
name: "GetRunningPrebuild",
|
42
|
-
I: GetRunningPrebuildRequest,
|
43
|
-
O: GetRunningPrebuildResponse,
|
44
|
-
kind: MethodKind.Unary,
|
45
|
-
},
|
46
|
-
/**
|
47
|
-
* ListenToPrebuildStatus streams status updates for a prebuild. If the prebuild is already
|
48
|
-
* in the Done phase, only that single status is streamed.
|
49
|
-
*
|
50
|
-
* @generated from rpc gitpod.v1.PrebuildsService.ListenToPrebuildStatus
|
51
|
-
*/
|
52
|
-
listenToPrebuildStatus: {
|
53
|
-
name: "ListenToPrebuildStatus",
|
54
|
-
I: ListenToPrebuildStatusRequest,
|
55
|
-
O: ListenToPrebuildStatusResponse,
|
56
|
-
kind: MethodKind.ServerStreaming,
|
57
|
-
},
|
58
|
-
/**
|
59
|
-
* ListenToPrebuildLogs returns the log output of a prebuild.
|
60
|
-
* This does NOT include an image build if one happened.
|
61
|
-
*
|
62
|
-
* @generated from rpc gitpod.v1.PrebuildsService.ListenToPrebuildLogs
|
63
|
-
*/
|
64
|
-
listenToPrebuildLogs: {
|
65
|
-
name: "ListenToPrebuildLogs",
|
66
|
-
I: ListenToPrebuildLogsRequest,
|
67
|
-
O: ListenToPrebuildLogsResponse,
|
68
|
-
kind: MethodKind.ServerStreaming,
|
69
|
-
},
|
70
|
-
}
|
71
|
-
} as const;
|
@@ -1,281 +0,0 @@
|
|
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 } 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;
|
25
|
-
}
|
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;
|
42
|
-
}
|
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;
|
59
|
-
}
|
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;
|
76
|
-
}
|
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;
|
93
|
-
}
|
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;
|
110
|
-
}
|
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;
|
127
|
-
}
|
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;
|
144
|
-
}
|
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;
|
171
|
-
}
|
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;
|
197
|
-
}
|
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;
|
234
|
-
}
|
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
|
255
|
-
}
|
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
|
280
|
-
}
|
281
|
-
//# sourceMappingURL=prebuilds_pb.d.ts.map
|
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"prebuilds_pb.d.ts","sourceRoot":"","sources":["../../../src/gitpod/v1/prebuilds_pb.ts"],"names":[],"mappings":"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"}
|