@superblocksteam/sabs-types 0.0.1-demo-databricks-deploy
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/dist/build/v1/service_pb.d.ts +361 -0
- package/dist/build/v1/service_pb.d.ts.map +1 -0
- package/dist/build/v1/service_pb.js +528 -0
- package/dist/build/v1/service_pb.js.map +1 -0
- package/dist/google/api/http_pb.d.ts +454 -0
- package/dist/google/api/http_pb.d.ts.map +1 -0
- package/dist/google/api/http_pb.js +467 -0
- package/dist/google/api/http_pb.js.map +1 -0
- package/dist/health/v1/service_pb.d.ts +41 -0
- package/dist/health/v1/service_pb.d.ts.map +1 -0
- package/dist/health/v1/service_pb.js +75 -0
- package/dist/health/v1/service_pb.js.map +1 -0
- package/dist/index.d.ts +5 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +21 -0
- package/dist/index.js.map +1 -0
- package/dist/liveedit/v1/service_pb.d.ts +163 -0
- package/dist/liveedit/v1/service_pb.d.ts.map +1 -0
- package/dist/liveedit/v1/service_pb.js +240 -0
- package/dist/liveedit/v1/service_pb.js.map +1 -0
- package/dist/protoc-gen-openapiv2/options/openapiv2_pb.d.ts +1388 -0
- package/dist/protoc-gen-openapiv2/options/openapiv2_pb.d.ts.map +1 -0
- package/dist/protoc-gen-openapiv2/options/openapiv2_pb.js +1691 -0
- package/dist/protoc-gen-openapiv2/options/openapiv2_pb.js.map +1 -0
- package/dist/tsconfig.tsbuildinfo +1 -0
- package/package.json +31 -0
|
@@ -0,0 +1,361 @@
|
|
|
1
|
+
import type { BinaryReadOptions, FieldList, JsonReadOptions, JsonValue, PartialMessage, PlainMessage } from "@bufbuild/protobuf";
|
|
2
|
+
import { Message, proto3, Timestamp } from "@bufbuild/protobuf";
|
|
3
|
+
/**
|
|
4
|
+
* @generated from enum build.v1.BuildStatus
|
|
5
|
+
*/
|
|
6
|
+
export declare enum BuildStatus {
|
|
7
|
+
/**
|
|
8
|
+
* @generated from enum value: BUILD_STATUS_UNSPECIFIED = 0;
|
|
9
|
+
*/
|
|
10
|
+
UNSPECIFIED = 0,
|
|
11
|
+
/**
|
|
12
|
+
* @generated from enum value: BUILD_STATUS_RUNNING = 1;
|
|
13
|
+
*/
|
|
14
|
+
RUNNING = 1,
|
|
15
|
+
/**
|
|
16
|
+
* @generated from enum value: BUILD_STATUS_SUCCESS = 2;
|
|
17
|
+
*/
|
|
18
|
+
SUCCESS = 2,
|
|
19
|
+
/**
|
|
20
|
+
* @generated from enum value: BUILD_STATUS_FAILED = 3;
|
|
21
|
+
*/
|
|
22
|
+
FAILED = 3,
|
|
23
|
+
/**
|
|
24
|
+
* @generated from enum value: BUILD_STATUS_TIMED_OUT = 4;
|
|
25
|
+
*/
|
|
26
|
+
TIMED_OUT = 4
|
|
27
|
+
}
|
|
28
|
+
/**
|
|
29
|
+
* @generated from message build.v1.BuildRequest
|
|
30
|
+
*/
|
|
31
|
+
export declare class BuildRequest extends Message<BuildRequest> {
|
|
32
|
+
/**
|
|
33
|
+
* @generated from field: string directory_hash = 1;
|
|
34
|
+
*/
|
|
35
|
+
directoryHash: string;
|
|
36
|
+
/**
|
|
37
|
+
* @generated from field: build.v1.ApplicationMetadata application_metadata = 2;
|
|
38
|
+
*/
|
|
39
|
+
applicationMetadata?: ApplicationMetadata;
|
|
40
|
+
/**
|
|
41
|
+
* Secret key to associate with this build (required by any subsequent
|
|
42
|
+
* request to change the state of the build e.g. when terminating the build)
|
|
43
|
+
*
|
|
44
|
+
* @generated from field: string build_key = 3;
|
|
45
|
+
*/
|
|
46
|
+
buildKey: string;
|
|
47
|
+
constructor(data?: PartialMessage<BuildRequest>);
|
|
48
|
+
static readonly runtime: typeof proto3;
|
|
49
|
+
static readonly typeName = "build.v1.BuildRequest";
|
|
50
|
+
static readonly fields: FieldList;
|
|
51
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): BuildRequest;
|
|
52
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): BuildRequest;
|
|
53
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): BuildRequest;
|
|
54
|
+
static equals(a: BuildRequest | PlainMessage<BuildRequest> | undefined, b: BuildRequest | PlainMessage<BuildRequest> | undefined): boolean;
|
|
55
|
+
}
|
|
56
|
+
/**
|
|
57
|
+
* Required data for constructing upload path and fetching application files
|
|
58
|
+
*
|
|
59
|
+
* @generated from message build.v1.ApplicationMetadata
|
|
60
|
+
*/
|
|
61
|
+
export declare class ApplicationMetadata extends Message<ApplicationMetadata> {
|
|
62
|
+
/**
|
|
63
|
+
* @generated from field: string id = 1;
|
|
64
|
+
*/
|
|
65
|
+
id: string;
|
|
66
|
+
/**
|
|
67
|
+
* @generated from field: string organization_id = 2;
|
|
68
|
+
*/
|
|
69
|
+
organizationId: string;
|
|
70
|
+
constructor(data?: PartialMessage<ApplicationMetadata>);
|
|
71
|
+
static readonly runtime: typeof proto3;
|
|
72
|
+
static readonly typeName = "build.v1.ApplicationMetadata";
|
|
73
|
+
static readonly fields: FieldList;
|
|
74
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ApplicationMetadata;
|
|
75
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ApplicationMetadata;
|
|
76
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ApplicationMetadata;
|
|
77
|
+
static equals(a: ApplicationMetadata | PlainMessage<ApplicationMetadata> | undefined, b: ApplicationMetadata | PlainMessage<ApplicationMetadata> | undefined): boolean;
|
|
78
|
+
}
|
|
79
|
+
/**
|
|
80
|
+
* @generated from message build.v1.BuildResponse
|
|
81
|
+
*/
|
|
82
|
+
export declare class BuildResponse extends Message<BuildResponse> {
|
|
83
|
+
/**
|
|
84
|
+
* For use to query build status
|
|
85
|
+
*
|
|
86
|
+
* @generated from field: string build_id = 1;
|
|
87
|
+
*/
|
|
88
|
+
buildId: string;
|
|
89
|
+
/**
|
|
90
|
+
* @generated from field: google.protobuf.Timestamp created = 2;
|
|
91
|
+
*/
|
|
92
|
+
created?: Timestamp;
|
|
93
|
+
/**
|
|
94
|
+
* @generated from field: google.protobuf.Timestamp updated = 3;
|
|
95
|
+
*/
|
|
96
|
+
updated?: Timestamp;
|
|
97
|
+
constructor(data?: PartialMessage<BuildResponse>);
|
|
98
|
+
static readonly runtime: typeof proto3;
|
|
99
|
+
static readonly typeName = "build.v1.BuildResponse";
|
|
100
|
+
static readonly fields: FieldList;
|
|
101
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): BuildResponse;
|
|
102
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): BuildResponse;
|
|
103
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): BuildResponse;
|
|
104
|
+
static equals(a: BuildResponse | PlainMessage<BuildResponse> | undefined, b: BuildResponse | PlainMessage<BuildResponse> | undefined): boolean;
|
|
105
|
+
}
|
|
106
|
+
/**
|
|
107
|
+
* @generated from message build.v1.DeployDatabricksRequest
|
|
108
|
+
*/
|
|
109
|
+
export declare class DeployDatabricksRequest extends Message<DeployDatabricksRequest> {
|
|
110
|
+
/**
|
|
111
|
+
* @generated from field: string directory_hash = 1;
|
|
112
|
+
*/
|
|
113
|
+
directoryHash: string;
|
|
114
|
+
/**
|
|
115
|
+
* @generated from field: build.v1.ApplicationMetadata application_metadata = 2;
|
|
116
|
+
*/
|
|
117
|
+
applicationMetadata?: ApplicationMetadata;
|
|
118
|
+
/**
|
|
119
|
+
* Secret key to associate with this build (required by any subsequent
|
|
120
|
+
* request to change the state of the build e.g. when terminating the build)
|
|
121
|
+
*
|
|
122
|
+
* @generated from field: string build_key = 3;
|
|
123
|
+
*/
|
|
124
|
+
buildKey: string;
|
|
125
|
+
constructor(data?: PartialMessage<DeployDatabricksRequest>);
|
|
126
|
+
static readonly runtime: typeof proto3;
|
|
127
|
+
static readonly typeName = "build.v1.DeployDatabricksRequest";
|
|
128
|
+
static readonly fields: FieldList;
|
|
129
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): DeployDatabricksRequest;
|
|
130
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): DeployDatabricksRequest;
|
|
131
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): DeployDatabricksRequest;
|
|
132
|
+
static equals(a: DeployDatabricksRequest | PlainMessage<DeployDatabricksRequest> | undefined, b: DeployDatabricksRequest | PlainMessage<DeployDatabricksRequest> | undefined): boolean;
|
|
133
|
+
}
|
|
134
|
+
/**
|
|
135
|
+
* @generated from message build.v1.DeployDatabricksResponse
|
|
136
|
+
*/
|
|
137
|
+
export declare class DeployDatabricksResponse extends Message<DeployDatabricksResponse> {
|
|
138
|
+
/**
|
|
139
|
+
* @generated from field: string build_id = 1;
|
|
140
|
+
*/
|
|
141
|
+
buildId: string;
|
|
142
|
+
/**
|
|
143
|
+
* @generated from field: google.protobuf.Timestamp created = 2;
|
|
144
|
+
*/
|
|
145
|
+
created?: Timestamp;
|
|
146
|
+
/**
|
|
147
|
+
* @generated from field: google.protobuf.Timestamp updated = 3;
|
|
148
|
+
*/
|
|
149
|
+
updated?: Timestamp;
|
|
150
|
+
constructor(data?: PartialMessage<DeployDatabricksResponse>);
|
|
151
|
+
static readonly runtime: typeof proto3;
|
|
152
|
+
static readonly typeName = "build.v1.DeployDatabricksResponse";
|
|
153
|
+
static readonly fields: FieldList;
|
|
154
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): DeployDatabricksResponse;
|
|
155
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): DeployDatabricksResponse;
|
|
156
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): DeployDatabricksResponse;
|
|
157
|
+
static equals(a: DeployDatabricksResponse | PlainMessage<DeployDatabricksResponse> | undefined, b: DeployDatabricksResponse | PlainMessage<DeployDatabricksResponse> | undefined): boolean;
|
|
158
|
+
}
|
|
159
|
+
/**
|
|
160
|
+
* @generated from message build.v1.ListRequest
|
|
161
|
+
*/
|
|
162
|
+
export declare class ListRequest extends Message<ListRequest> {
|
|
163
|
+
/**
|
|
164
|
+
* @generated from field: string organization_id = 1;
|
|
165
|
+
*/
|
|
166
|
+
organizationId: string;
|
|
167
|
+
/**
|
|
168
|
+
* @generated from field: string application_id = 2;
|
|
169
|
+
*/
|
|
170
|
+
applicationId: string;
|
|
171
|
+
/**
|
|
172
|
+
* @generated from field: string directory_hash = 3;
|
|
173
|
+
*/
|
|
174
|
+
directoryHash: string;
|
|
175
|
+
constructor(data?: PartialMessage<ListRequest>);
|
|
176
|
+
static readonly runtime: typeof proto3;
|
|
177
|
+
static readonly typeName = "build.v1.ListRequest";
|
|
178
|
+
static readonly fields: FieldList;
|
|
179
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ListRequest;
|
|
180
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ListRequest;
|
|
181
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ListRequest;
|
|
182
|
+
static equals(a: ListRequest | PlainMessage<ListRequest> | undefined, b: ListRequest | PlainMessage<ListRequest> | undefined): boolean;
|
|
183
|
+
}
|
|
184
|
+
/**
|
|
185
|
+
* @generated from message build.v1.ListResponse
|
|
186
|
+
*/
|
|
187
|
+
export declare class ListResponse extends Message<ListResponse> {
|
|
188
|
+
/**
|
|
189
|
+
* @generated from field: repeated build.v1.StatusResponse builds = 1;
|
|
190
|
+
*/
|
|
191
|
+
builds: StatusResponse[];
|
|
192
|
+
constructor(data?: PartialMessage<ListResponse>);
|
|
193
|
+
static readonly runtime: typeof proto3;
|
|
194
|
+
static readonly typeName = "build.v1.ListResponse";
|
|
195
|
+
static readonly fields: FieldList;
|
|
196
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ListResponse;
|
|
197
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ListResponse;
|
|
198
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ListResponse;
|
|
199
|
+
static equals(a: ListResponse | PlainMessage<ListResponse> | undefined, b: ListResponse | PlainMessage<ListResponse> | undefined): boolean;
|
|
200
|
+
}
|
|
201
|
+
/**
|
|
202
|
+
* @generated from message build.v1.StatusRequest
|
|
203
|
+
*/
|
|
204
|
+
export declare class StatusRequest extends Message<StatusRequest> {
|
|
205
|
+
/**
|
|
206
|
+
* @generated from field: string build_id = 1;
|
|
207
|
+
*/
|
|
208
|
+
buildId: string;
|
|
209
|
+
constructor(data?: PartialMessage<StatusRequest>);
|
|
210
|
+
static readonly runtime: typeof proto3;
|
|
211
|
+
static readonly typeName = "build.v1.StatusRequest";
|
|
212
|
+
static readonly fields: FieldList;
|
|
213
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): StatusRequest;
|
|
214
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): StatusRequest;
|
|
215
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): StatusRequest;
|
|
216
|
+
static equals(a: StatusRequest | PlainMessage<StatusRequest> | undefined, b: StatusRequest | PlainMessage<StatusRequest> | undefined): boolean;
|
|
217
|
+
}
|
|
218
|
+
/**
|
|
219
|
+
* @generated from message build.v1.BulkStatusRequest
|
|
220
|
+
*/
|
|
221
|
+
export declare class BulkStatusRequest extends Message<BulkStatusRequest> {
|
|
222
|
+
/**
|
|
223
|
+
* @generated from field: string organization_id = 1;
|
|
224
|
+
*/
|
|
225
|
+
organizationId: string;
|
|
226
|
+
/**
|
|
227
|
+
* @generated from field: string application_id = 2;
|
|
228
|
+
*/
|
|
229
|
+
applicationId: string;
|
|
230
|
+
/**
|
|
231
|
+
* directory hashes will all belong to the given org id and app id
|
|
232
|
+
*
|
|
233
|
+
* @generated from field: repeated string directory_hashes = 3;
|
|
234
|
+
*/
|
|
235
|
+
directoryHashes: string[];
|
|
236
|
+
constructor(data?: PartialMessage<BulkStatusRequest>);
|
|
237
|
+
static readonly runtime: typeof proto3;
|
|
238
|
+
static readonly typeName = "build.v1.BulkStatusRequest";
|
|
239
|
+
static readonly fields: FieldList;
|
|
240
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): BulkStatusRequest;
|
|
241
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): BulkStatusRequest;
|
|
242
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): BulkStatusRequest;
|
|
243
|
+
static equals(a: BulkStatusRequest | PlainMessage<BulkStatusRequest> | undefined, b: BulkStatusRequest | PlainMessage<BulkStatusRequest> | undefined): boolean;
|
|
244
|
+
}
|
|
245
|
+
/**
|
|
246
|
+
* @generated from message build.v1.BulkStatusResponse
|
|
247
|
+
*/
|
|
248
|
+
export declare class BulkStatusResponse extends Message<BulkStatusResponse> {
|
|
249
|
+
/**
|
|
250
|
+
* @generated from field: map<string, build.v1.StatusResponse> directory_hash_to_status = 1;
|
|
251
|
+
*/
|
|
252
|
+
directoryHashToStatus: {
|
|
253
|
+
[key: string]: StatusResponse;
|
|
254
|
+
};
|
|
255
|
+
constructor(data?: PartialMessage<BulkStatusResponse>);
|
|
256
|
+
static readonly runtime: typeof proto3;
|
|
257
|
+
static readonly typeName = "build.v1.BulkStatusResponse";
|
|
258
|
+
static readonly fields: FieldList;
|
|
259
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): BulkStatusResponse;
|
|
260
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): BulkStatusResponse;
|
|
261
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): BulkStatusResponse;
|
|
262
|
+
static equals(a: BulkStatusResponse | PlainMessage<BulkStatusResponse> | undefined, b: BulkStatusResponse | PlainMessage<BulkStatusResponse> | undefined): boolean;
|
|
263
|
+
}
|
|
264
|
+
/**
|
|
265
|
+
* @generated from message build.v1.StatusResponse
|
|
266
|
+
*/
|
|
267
|
+
export declare class StatusResponse extends Message<StatusResponse> {
|
|
268
|
+
/**
|
|
269
|
+
* @generated from field: string build_id = 1;
|
|
270
|
+
*/
|
|
271
|
+
buildId: string;
|
|
272
|
+
/**
|
|
273
|
+
* @generated from field: build.v1.BuildStatus status = 2;
|
|
274
|
+
*/
|
|
275
|
+
status: BuildStatus;
|
|
276
|
+
/**
|
|
277
|
+
* @generated from field: optional string error = 3;
|
|
278
|
+
*/
|
|
279
|
+
error?: string;
|
|
280
|
+
/**
|
|
281
|
+
* @generated from field: google.protobuf.Timestamp created = 4;
|
|
282
|
+
*/
|
|
283
|
+
created?: Timestamp;
|
|
284
|
+
/**
|
|
285
|
+
* @generated from field: google.protobuf.Timestamp updated = 5;
|
|
286
|
+
*/
|
|
287
|
+
updated?: Timestamp;
|
|
288
|
+
constructor(data?: PartialMessage<StatusResponse>);
|
|
289
|
+
static readonly runtime: typeof proto3;
|
|
290
|
+
static readonly typeName = "build.v1.StatusResponse";
|
|
291
|
+
static readonly fields: FieldList;
|
|
292
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): StatusResponse;
|
|
293
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): StatusResponse;
|
|
294
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): StatusResponse;
|
|
295
|
+
static equals(a: StatusResponse | PlainMessage<StatusResponse> | undefined, b: StatusResponse | PlainMessage<StatusResponse> | undefined): boolean;
|
|
296
|
+
}
|
|
297
|
+
/**
|
|
298
|
+
* @generated from message build.v1.TerminateRequest
|
|
299
|
+
*/
|
|
300
|
+
export declare class TerminateRequest extends Message<TerminateRequest> {
|
|
301
|
+
/**
|
|
302
|
+
* @generated from field: string build_id = 1;
|
|
303
|
+
*/
|
|
304
|
+
buildId: string;
|
|
305
|
+
/**
|
|
306
|
+
* @generated from field: build.v1.BuildStatus status = 2;
|
|
307
|
+
*/
|
|
308
|
+
status: BuildStatus;
|
|
309
|
+
/**
|
|
310
|
+
* @generated from field: optional string error = 3;
|
|
311
|
+
*/
|
|
312
|
+
error?: string;
|
|
313
|
+
/**
|
|
314
|
+
* Secret key for the build being terminated
|
|
315
|
+
*
|
|
316
|
+
* @generated from field: string build_key = 4;
|
|
317
|
+
*/
|
|
318
|
+
buildKey: string;
|
|
319
|
+
constructor(data?: PartialMessage<TerminateRequest>);
|
|
320
|
+
static readonly runtime: typeof proto3;
|
|
321
|
+
static readonly typeName = "build.v1.TerminateRequest";
|
|
322
|
+
static readonly fields: FieldList;
|
|
323
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): TerminateRequest;
|
|
324
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): TerminateRequest;
|
|
325
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): TerminateRequest;
|
|
326
|
+
static equals(a: TerminateRequest | PlainMessage<TerminateRequest> | undefined, b: TerminateRequest | PlainMessage<TerminateRequest> | undefined): boolean;
|
|
327
|
+
}
|
|
328
|
+
/**
|
|
329
|
+
* @generated from message build.v1.TerminateResponse
|
|
330
|
+
*/
|
|
331
|
+
export declare class TerminateResponse extends Message<TerminateResponse> {
|
|
332
|
+
/**
|
|
333
|
+
* @generated from field: string build_id = 1;
|
|
334
|
+
*/
|
|
335
|
+
buildId: string;
|
|
336
|
+
/**
|
|
337
|
+
* @generated from field: build.v1.BuildStatus status = 2;
|
|
338
|
+
*/
|
|
339
|
+
status: BuildStatus;
|
|
340
|
+
/**
|
|
341
|
+
* @generated from field: optional string error = 3;
|
|
342
|
+
*/
|
|
343
|
+
error?: string;
|
|
344
|
+
/**
|
|
345
|
+
* @generated from field: google.protobuf.Timestamp created = 4;
|
|
346
|
+
*/
|
|
347
|
+
created?: Timestamp;
|
|
348
|
+
/**
|
|
349
|
+
* @generated from field: google.protobuf.Timestamp updated = 5;
|
|
350
|
+
*/
|
|
351
|
+
updated?: Timestamp;
|
|
352
|
+
constructor(data?: PartialMessage<TerminateResponse>);
|
|
353
|
+
static readonly runtime: typeof proto3;
|
|
354
|
+
static readonly typeName = "build.v1.TerminateResponse";
|
|
355
|
+
static readonly fields: FieldList;
|
|
356
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): TerminateResponse;
|
|
357
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): TerminateResponse;
|
|
358
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): TerminateResponse;
|
|
359
|
+
static equals(a: TerminateResponse | PlainMessage<TerminateResponse> | undefined, b: TerminateResponse | PlainMessage<TerminateResponse> | undefined): boolean;
|
|
360
|
+
}
|
|
361
|
+
//# sourceMappingURL=service_pb.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"service_pb.d.ts","sourceRoot":"","sources":["../../../build/v1/service_pb.ts"],"names":[],"mappings":"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"}
|