@liquidmetal-ai/drizzle 0.0.1
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/.changeset/README.md +4 -0
- package/.changeset/config.json +11 -0
- package/.changeset/odd-plums-dress.md +7 -0
- package/.turbo/turbo-build.log +6 -0
- package/dist/appify/build.d.ts +130 -0
- package/dist/appify/build.d.ts.map +1 -0
- package/dist/appify/build.js +703 -0
- package/dist/appify/build.test.d.ts +2 -0
- package/dist/appify/build.test.d.ts.map +1 -0
- package/dist/appify/build.test.js +111 -0
- package/dist/appify/index.d.ts +8 -0
- package/dist/appify/index.d.ts.map +1 -0
- package/dist/appify/index.js +28 -0
- package/dist/appify/index.test.d.ts +2 -0
- package/dist/appify/index.test.d.ts.map +1 -0
- package/dist/appify/index.test.js +40 -0
- package/dist/appify/parse.d.ts +151 -0
- package/dist/appify/parse.d.ts.map +1 -0
- package/dist/appify/parse.js +579 -0
- package/dist/appify/parse.test.d.ts +2 -0
- package/dist/appify/parse.test.d.ts.map +1 -0
- package/dist/appify/parse.test.js +319 -0
- package/dist/appify/validate.d.ts +22 -0
- package/dist/appify/validate.d.ts.map +1 -0
- package/dist/appify/validate.js +346 -0
- package/dist/appify/validate.test.d.ts +2 -0
- package/dist/appify/validate.test.d.ts.map +1 -0
- package/dist/appify/validate.test.js +327 -0
- package/dist/codestore.d.ts +34 -0
- package/dist/codestore.d.ts.map +1 -0
- package/dist/codestore.js +54 -0
- package/dist/codestore.test.d.ts +2 -0
- package/dist/codestore.test.d.ts.map +1 -0
- package/dist/codestore.test.js +84 -0
- package/dist/liquidmetal/v1alpha1/catalog_connect.d.ts +147 -0
- package/dist/liquidmetal/v1alpha1/catalog_connect.d.ts.map +1 -0
- package/dist/liquidmetal/v1alpha1/catalog_connect.js +150 -0
- package/dist/liquidmetal/v1alpha1/catalog_pb.d.ts +965 -0
- package/dist/liquidmetal/v1alpha1/catalog_pb.d.ts.map +1 -0
- package/dist/liquidmetal/v1alpha1/catalog_pb.js +1486 -0
- package/dist/liquidmetal/v1alpha1/rainbow_auth_connect.d.ts +49 -0
- package/dist/liquidmetal/v1alpha1/rainbow_auth_connect.d.ts.map +1 -0
- package/dist/liquidmetal/v1alpha1/rainbow_auth_connect.js +52 -0
- package/dist/liquidmetal/v1alpha1/rainbow_auth_pb.d.ts +271 -0
- package/dist/liquidmetal/v1alpha1/rainbow_auth_pb.d.ts.map +1 -0
- package/dist/liquidmetal/v1alpha1/rainbow_auth_pb.js +381 -0
- package/dist/liquidmetal/v1alpha1/raindrop_pb.d.ts +38 -0
- package/dist/liquidmetal/v1alpha1/raindrop_pb.d.ts.map +1 -0
- package/dist/liquidmetal/v1alpha1/raindrop_pb.js +52 -0
- package/dist/unsafe/codestore.d.ts +10 -0
- package/dist/unsafe/codestore.d.ts.map +1 -0
- package/dist/unsafe/codestore.js +23 -0
- package/dist/unsafe/codestore.test.d.ts +2 -0
- package/dist/unsafe/codestore.test.d.ts.map +1 -0
- package/dist/unsafe/codestore.test.js +27 -0
- package/eslint.config.mjs +4 -0
- package/package.json +45 -0
- package/src/appify/build.test.ts +116 -0
- package/src/appify/build.ts +783 -0
- package/src/appify/index.test.ts +43 -0
- package/src/appify/index.ts +33 -0
- package/src/appify/parse.test.ts +337 -0
- package/src/appify/parse.ts +744 -0
- package/src/appify/validate.test.ts +341 -0
- package/src/appify/validate.ts +435 -0
- package/src/codestore.test.ts +98 -0
- package/src/codestore.ts +93 -0
- package/src/liquidmetal/v1alpha1/catalog_connect.ts +153 -0
- package/src/liquidmetal/v1alpha1/catalog_pb.ts +1827 -0
- package/src/liquidmetal/v1alpha1/rainbow_auth_connect.ts +55 -0
- package/src/liquidmetal/v1alpha1/rainbow_auth_pb.ts +476 -0
- package/src/liquidmetal/v1alpha1/raindrop_pb.ts +63 -0
- package/src/unsafe/codestore.test.ts +34 -0
- package/src/unsafe/codestore.ts +29 -0
- package/tsconfig.json +31 -0
- package/tsconfig.tsbuildinfo +1 -0
|
@@ -0,0 +1,965 @@
|
|
|
1
|
+
import type { BinaryReadOptions, FieldList, JsonReadOptions, JsonValue, PartialMessage, PlainMessage } from "@bufbuild/protobuf";
|
|
2
|
+
import { Message, proto3, Struct, Timestamp } from "@bufbuild/protobuf";
|
|
3
|
+
/**
|
|
4
|
+
* @generated from enum liquidmetal.v1alpha1.BundleArchiveType
|
|
5
|
+
*/
|
|
6
|
+
export declare enum BundleArchiveType {
|
|
7
|
+
/**
|
|
8
|
+
* @generated from enum value: BUNDLE_ARCHIVE_TYPE_UNSPECIFIED = 0;
|
|
9
|
+
*/
|
|
10
|
+
UNSPECIFIED = 0,
|
|
11
|
+
/**
|
|
12
|
+
* @generated from enum value: BUNDLE_ARCHIVE_TYPE_ZIP = 1;
|
|
13
|
+
*/
|
|
14
|
+
ZIP = 1
|
|
15
|
+
}
|
|
16
|
+
/**
|
|
17
|
+
* @generated from message liquidmetal.v1alpha1.ApplicationsRequest
|
|
18
|
+
*/
|
|
19
|
+
export declare class ApplicationsRequest extends Message<ApplicationsRequest> {
|
|
20
|
+
/**
|
|
21
|
+
* user_id is the user for which applications are being requested.
|
|
22
|
+
*
|
|
23
|
+
* @generated from field: string user_id = 1;
|
|
24
|
+
*/
|
|
25
|
+
userId: string;
|
|
26
|
+
/**
|
|
27
|
+
* organization_id is the organization within which applications are being requested.
|
|
28
|
+
*
|
|
29
|
+
* @generated from field: string organization_id = 2;
|
|
30
|
+
*/
|
|
31
|
+
organizationId: string;
|
|
32
|
+
/**
|
|
33
|
+
* show_deleted is a flag to indicate if deleted applications should be included in the response.
|
|
34
|
+
*
|
|
35
|
+
* @generated from field: bool show_deleted = 3;
|
|
36
|
+
*/
|
|
37
|
+
showDeleted: boolean;
|
|
38
|
+
/**
|
|
39
|
+
* @generated from field: optional string next_page_token = 4;
|
|
40
|
+
*/
|
|
41
|
+
nextPageToken?: string;
|
|
42
|
+
constructor(data?: PartialMessage<ApplicationsRequest>);
|
|
43
|
+
static readonly runtime: typeof proto3;
|
|
44
|
+
static readonly typeName = "liquidmetal.v1alpha1.ApplicationsRequest";
|
|
45
|
+
static readonly fields: FieldList;
|
|
46
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ApplicationsRequest;
|
|
47
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ApplicationsRequest;
|
|
48
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ApplicationsRequest;
|
|
49
|
+
static equals(a: ApplicationsRequest | PlainMessage<ApplicationsRequest> | undefined, b: ApplicationsRequest | PlainMessage<ApplicationsRequest> | undefined): boolean;
|
|
50
|
+
}
|
|
51
|
+
/**
|
|
52
|
+
* @generated from message liquidmetal.v1alpha1.ApplicationsResponse
|
|
53
|
+
*/
|
|
54
|
+
export declare class ApplicationsResponse extends Message<ApplicationsResponse> {
|
|
55
|
+
/**
|
|
56
|
+
* @generated from field: repeated liquidmetal.v1alpha1.ApplicationsResponse.Application applications = 1;
|
|
57
|
+
*/
|
|
58
|
+
applications: ApplicationsResponse_Application[];
|
|
59
|
+
/**
|
|
60
|
+
* @generated from field: optional string next_page_token = 2;
|
|
61
|
+
*/
|
|
62
|
+
nextPageToken?: string;
|
|
63
|
+
constructor(data?: PartialMessage<ApplicationsResponse>);
|
|
64
|
+
static readonly runtime: typeof proto3;
|
|
65
|
+
static readonly typeName = "liquidmetal.v1alpha1.ApplicationsResponse";
|
|
66
|
+
static readonly fields: FieldList;
|
|
67
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ApplicationsResponse;
|
|
68
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ApplicationsResponse;
|
|
69
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ApplicationsResponse;
|
|
70
|
+
static equals(a: ApplicationsResponse | PlainMessage<ApplicationsResponse> | undefined, b: ApplicationsResponse | PlainMessage<ApplicationsResponse> | undefined): boolean;
|
|
71
|
+
}
|
|
72
|
+
/**
|
|
73
|
+
* @generated from message liquidmetal.v1alpha1.ApplicationsResponse.Application
|
|
74
|
+
*/
|
|
75
|
+
export declare class ApplicationsResponse_Application extends Message<ApplicationsResponse_Application> {
|
|
76
|
+
/**
|
|
77
|
+
* @generated from field: string name = 1;
|
|
78
|
+
*/
|
|
79
|
+
name: string;
|
|
80
|
+
/**
|
|
81
|
+
* @generated from field: string version_id = 2;
|
|
82
|
+
*/
|
|
83
|
+
versionId: string;
|
|
84
|
+
/**
|
|
85
|
+
* @generated from field: string manifest = 3;
|
|
86
|
+
*/
|
|
87
|
+
manifest: string;
|
|
88
|
+
/**
|
|
89
|
+
* @generated from field: optional string suite = 4;
|
|
90
|
+
*/
|
|
91
|
+
suite?: string;
|
|
92
|
+
/**
|
|
93
|
+
* @generated from field: google.protobuf.Timestamp created_at = 5;
|
|
94
|
+
*/
|
|
95
|
+
createdAt?: Timestamp;
|
|
96
|
+
/**
|
|
97
|
+
* @generated from field: google.protobuf.Timestamp updated_at = 6;
|
|
98
|
+
*/
|
|
99
|
+
updatedAt?: Timestamp;
|
|
100
|
+
/**
|
|
101
|
+
* @generated from field: optional google.protobuf.Timestamp deleted_at = 7;
|
|
102
|
+
*/
|
|
103
|
+
deletedAt?: Timestamp;
|
|
104
|
+
/**
|
|
105
|
+
* @generated from field: bool is_active = 8;
|
|
106
|
+
*/
|
|
107
|
+
isActive: boolean;
|
|
108
|
+
constructor(data?: PartialMessage<ApplicationsResponse_Application>);
|
|
109
|
+
static readonly runtime: typeof proto3;
|
|
110
|
+
static readonly typeName = "liquidmetal.v1alpha1.ApplicationsResponse.Application";
|
|
111
|
+
static readonly fields: FieldList;
|
|
112
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ApplicationsResponse_Application;
|
|
113
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ApplicationsResponse_Application;
|
|
114
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ApplicationsResponse_Application;
|
|
115
|
+
static equals(a: ApplicationsResponse_Application | PlainMessage<ApplicationsResponse_Application> | undefined, b: ApplicationsResponse_Application | PlainMessage<ApplicationsResponse_Application> | undefined): boolean;
|
|
116
|
+
}
|
|
117
|
+
/**
|
|
118
|
+
* InternalApplicationsRequestPaginationToken is what we serialize into an
|
|
119
|
+
* opaque string that is interpreted within internal backend systems
|
|
120
|
+
* implementing the API but not to be parsed by API consumers.
|
|
121
|
+
*
|
|
122
|
+
* to be defined as we understand the underlying database structure
|
|
123
|
+
*
|
|
124
|
+
* @generated from message liquidmetal.v1alpha1.InternalApplicationsRequestPaginationToken
|
|
125
|
+
*/
|
|
126
|
+
export declare class InternalApplicationsRequestPaginationToken extends Message<InternalApplicationsRequestPaginationToken> {
|
|
127
|
+
constructor(data?: PartialMessage<InternalApplicationsRequestPaginationToken>);
|
|
128
|
+
static readonly runtime: typeof proto3;
|
|
129
|
+
static readonly typeName = "liquidmetal.v1alpha1.InternalApplicationsRequestPaginationToken";
|
|
130
|
+
static readonly fields: FieldList;
|
|
131
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): InternalApplicationsRequestPaginationToken;
|
|
132
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): InternalApplicationsRequestPaginationToken;
|
|
133
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): InternalApplicationsRequestPaginationToken;
|
|
134
|
+
static equals(a: InternalApplicationsRequestPaginationToken | PlainMessage<InternalApplicationsRequestPaginationToken> | undefined, b: InternalApplicationsRequestPaginationToken | PlainMessage<InternalApplicationsRequestPaginationToken> | undefined): boolean;
|
|
135
|
+
}
|
|
136
|
+
/**
|
|
137
|
+
* @generated from message liquidmetal.v1alpha1.CreateApplicationsRequest
|
|
138
|
+
*/
|
|
139
|
+
export declare class CreateApplicationsRequest extends Message<CreateApplicationsRequest> {
|
|
140
|
+
/**
|
|
141
|
+
* @generated from field: repeated liquidmetal.v1alpha1.CreateApplicationsRequest.Application applications = 1;
|
|
142
|
+
*/
|
|
143
|
+
applications: CreateApplicationsRequest_Application[];
|
|
144
|
+
/**
|
|
145
|
+
* @generated from field: string user_id = 2;
|
|
146
|
+
*/
|
|
147
|
+
userId: string;
|
|
148
|
+
/**
|
|
149
|
+
* @generated from field: string organization_id = 3;
|
|
150
|
+
*/
|
|
151
|
+
organizationId: string;
|
|
152
|
+
/**
|
|
153
|
+
* @generated from field: optional string suite = 4;
|
|
154
|
+
*/
|
|
155
|
+
suite?: string;
|
|
156
|
+
constructor(data?: PartialMessage<CreateApplicationsRequest>);
|
|
157
|
+
static readonly runtime: typeof proto3;
|
|
158
|
+
static readonly typeName = "liquidmetal.v1alpha1.CreateApplicationsRequest";
|
|
159
|
+
static readonly fields: FieldList;
|
|
160
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): CreateApplicationsRequest;
|
|
161
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): CreateApplicationsRequest;
|
|
162
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): CreateApplicationsRequest;
|
|
163
|
+
static equals(a: CreateApplicationsRequest | PlainMessage<CreateApplicationsRequest> | undefined, b: CreateApplicationsRequest | PlainMessage<CreateApplicationsRequest> | undefined): boolean;
|
|
164
|
+
}
|
|
165
|
+
/**
|
|
166
|
+
* @generated from message liquidmetal.v1alpha1.CreateApplicationsRequest.Application
|
|
167
|
+
*/
|
|
168
|
+
export declare class CreateApplicationsRequest_Application extends Message<CreateApplicationsRequest_Application> {
|
|
169
|
+
/**
|
|
170
|
+
* @generated from field: string name = 1;
|
|
171
|
+
*/
|
|
172
|
+
name: string;
|
|
173
|
+
/**
|
|
174
|
+
* @generated from oneof liquidmetal.v1alpha1.CreateApplicationsRequest.Application.version
|
|
175
|
+
*/
|
|
176
|
+
version: {
|
|
177
|
+
/**
|
|
178
|
+
* @generated from field: string version_id = 2;
|
|
179
|
+
*/
|
|
180
|
+
value: string;
|
|
181
|
+
case: "versionId";
|
|
182
|
+
} | {
|
|
183
|
+
/**
|
|
184
|
+
* @generated from field: string previous_version_id = 3;
|
|
185
|
+
*/
|
|
186
|
+
value: string;
|
|
187
|
+
case: "previousVersionId";
|
|
188
|
+
} | {
|
|
189
|
+
case: undefined;
|
|
190
|
+
value?: undefined;
|
|
191
|
+
};
|
|
192
|
+
/**
|
|
193
|
+
* @generated from field: string manifest = 4;
|
|
194
|
+
*/
|
|
195
|
+
manifest: string;
|
|
196
|
+
/**
|
|
197
|
+
* @generated from field: string manifest_json = 5;
|
|
198
|
+
*/
|
|
199
|
+
manifestJson: string;
|
|
200
|
+
/**
|
|
201
|
+
* @generated from field: bool is_active = 6;
|
|
202
|
+
*/
|
|
203
|
+
isActive: boolean;
|
|
204
|
+
constructor(data?: PartialMessage<CreateApplicationsRequest_Application>);
|
|
205
|
+
static readonly runtime: typeof proto3;
|
|
206
|
+
static readonly typeName = "liquidmetal.v1alpha1.CreateApplicationsRequest.Application";
|
|
207
|
+
static readonly fields: FieldList;
|
|
208
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): CreateApplicationsRequest_Application;
|
|
209
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): CreateApplicationsRequest_Application;
|
|
210
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): CreateApplicationsRequest_Application;
|
|
211
|
+
static equals(a: CreateApplicationsRequest_Application | PlainMessage<CreateApplicationsRequest_Application> | undefined, b: CreateApplicationsRequest_Application | PlainMessage<CreateApplicationsRequest_Application> | undefined): boolean;
|
|
212
|
+
}
|
|
213
|
+
/**
|
|
214
|
+
* @generated from message liquidmetal.v1alpha1.CreateApplicationsResponse
|
|
215
|
+
*/
|
|
216
|
+
export declare class CreateApplicationsResponse extends Message<CreateApplicationsResponse> {
|
|
217
|
+
/**
|
|
218
|
+
* @generated from field: repeated liquidmetal.v1alpha1.CreateApplicationsResponse.Application applications = 1;
|
|
219
|
+
*/
|
|
220
|
+
applications: CreateApplicationsResponse_Application[];
|
|
221
|
+
constructor(data?: PartialMessage<CreateApplicationsResponse>);
|
|
222
|
+
static readonly runtime: typeof proto3;
|
|
223
|
+
static readonly typeName = "liquidmetal.v1alpha1.CreateApplicationsResponse";
|
|
224
|
+
static readonly fields: FieldList;
|
|
225
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): CreateApplicationsResponse;
|
|
226
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): CreateApplicationsResponse;
|
|
227
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): CreateApplicationsResponse;
|
|
228
|
+
static equals(a: CreateApplicationsResponse | PlainMessage<CreateApplicationsResponse> | undefined, b: CreateApplicationsResponse | PlainMessage<CreateApplicationsResponse> | undefined): boolean;
|
|
229
|
+
}
|
|
230
|
+
/**
|
|
231
|
+
* @generated from message liquidmetal.v1alpha1.CreateApplicationsResponse.Application
|
|
232
|
+
*/
|
|
233
|
+
export declare class CreateApplicationsResponse_Application extends Message<CreateApplicationsResponse_Application> {
|
|
234
|
+
/**
|
|
235
|
+
* @generated from field: string name = 1;
|
|
236
|
+
*/
|
|
237
|
+
name: string;
|
|
238
|
+
/**
|
|
239
|
+
* @generated from field: string version_id = 2;
|
|
240
|
+
*/
|
|
241
|
+
versionId: string;
|
|
242
|
+
constructor(data?: PartialMessage<CreateApplicationsResponse_Application>);
|
|
243
|
+
static readonly runtime: typeof proto3;
|
|
244
|
+
static readonly typeName = "liquidmetal.v1alpha1.CreateApplicationsResponse.Application";
|
|
245
|
+
static readonly fields: FieldList;
|
|
246
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): CreateApplicationsResponse_Application;
|
|
247
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): CreateApplicationsResponse_Application;
|
|
248
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): CreateApplicationsResponse_Application;
|
|
249
|
+
static equals(a: CreateApplicationsResponse_Application | PlainMessage<CreateApplicationsResponse_Application> | undefined, b: CreateApplicationsResponse_Application | PlainMessage<CreateApplicationsResponse_Application> | undefined): boolean;
|
|
250
|
+
}
|
|
251
|
+
/**
|
|
252
|
+
* @generated from message liquidmetal.v1alpha1.VersionsRequest
|
|
253
|
+
*/
|
|
254
|
+
export declare class VersionsRequest extends Message<VersionsRequest> {
|
|
255
|
+
/**
|
|
256
|
+
* @generated from field: string user_id = 1;
|
|
257
|
+
*/
|
|
258
|
+
userId: string;
|
|
259
|
+
/**
|
|
260
|
+
* @generated from field: string organization_id = 2;
|
|
261
|
+
*/
|
|
262
|
+
organizationId: string;
|
|
263
|
+
/**
|
|
264
|
+
* @generated from field: optional string next_page_token = 3;
|
|
265
|
+
*/
|
|
266
|
+
nextPageToken?: string;
|
|
267
|
+
constructor(data?: PartialMessage<VersionsRequest>);
|
|
268
|
+
static readonly runtime: typeof proto3;
|
|
269
|
+
static readonly typeName = "liquidmetal.v1alpha1.VersionsRequest";
|
|
270
|
+
static readonly fields: FieldList;
|
|
271
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): VersionsRequest;
|
|
272
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): VersionsRequest;
|
|
273
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): VersionsRequest;
|
|
274
|
+
static equals(a: VersionsRequest | PlainMessage<VersionsRequest> | undefined, b: VersionsRequest | PlainMessage<VersionsRequest> | undefined): boolean;
|
|
275
|
+
}
|
|
276
|
+
/**
|
|
277
|
+
* @generated from message liquidmetal.v1alpha1.VersionsResponse
|
|
278
|
+
*/
|
|
279
|
+
export declare class VersionsResponse extends Message<VersionsResponse> {
|
|
280
|
+
/**
|
|
281
|
+
* @generated from field: repeated liquidmetal.v1alpha1.VersionsResponse.Version versions = 1;
|
|
282
|
+
*/
|
|
283
|
+
versions: VersionsResponse_Version[];
|
|
284
|
+
/**
|
|
285
|
+
* @generated from field: optional string next_page_token = 2;
|
|
286
|
+
*/
|
|
287
|
+
nextPageToken?: string;
|
|
288
|
+
constructor(data?: PartialMessage<VersionsResponse>);
|
|
289
|
+
static readonly runtime: typeof proto3;
|
|
290
|
+
static readonly typeName = "liquidmetal.v1alpha1.VersionsResponse";
|
|
291
|
+
static readonly fields: FieldList;
|
|
292
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): VersionsResponse;
|
|
293
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): VersionsResponse;
|
|
294
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): VersionsResponse;
|
|
295
|
+
static equals(a: VersionsResponse | PlainMessage<VersionsResponse> | undefined, b: VersionsResponse | PlainMessage<VersionsResponse> | undefined): boolean;
|
|
296
|
+
}
|
|
297
|
+
/**
|
|
298
|
+
* @generated from message liquidmetal.v1alpha1.VersionsResponse.Version
|
|
299
|
+
*/
|
|
300
|
+
export declare class VersionsResponse_Version extends Message<VersionsResponse_Version> {
|
|
301
|
+
/**
|
|
302
|
+
* @generated from field: string version_id = 1;
|
|
303
|
+
*/
|
|
304
|
+
versionId: string;
|
|
305
|
+
/**
|
|
306
|
+
* @generated from field: string previous_version_id = 2;
|
|
307
|
+
*/
|
|
308
|
+
previousVersionId: string;
|
|
309
|
+
/**
|
|
310
|
+
* @generated from field: google.protobuf.Timestamp created_at = 3;
|
|
311
|
+
*/
|
|
312
|
+
createdAt?: Timestamp;
|
|
313
|
+
/**
|
|
314
|
+
* @generated from field: google.protobuf.Timestamp updated_at = 4;
|
|
315
|
+
*/
|
|
316
|
+
updatedAt?: Timestamp;
|
|
317
|
+
constructor(data?: PartialMessage<VersionsResponse_Version>);
|
|
318
|
+
static readonly runtime: typeof proto3;
|
|
319
|
+
static readonly typeName = "liquidmetal.v1alpha1.VersionsResponse.Version";
|
|
320
|
+
static readonly fields: FieldList;
|
|
321
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): VersionsResponse_Version;
|
|
322
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): VersionsResponse_Version;
|
|
323
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): VersionsResponse_Version;
|
|
324
|
+
static equals(a: VersionsResponse_Version | PlainMessage<VersionsResponse_Version> | undefined, b: VersionsResponse_Version | PlainMessage<VersionsResponse_Version> | undefined): boolean;
|
|
325
|
+
}
|
|
326
|
+
/**
|
|
327
|
+
* @generated from message liquidmetal.v1alpha1.CreateVersionRequest
|
|
328
|
+
*/
|
|
329
|
+
export declare class CreateVersionRequest extends Message<CreateVersionRequest> {
|
|
330
|
+
/**
|
|
331
|
+
* @generated from field: string user_id = 1;
|
|
332
|
+
*/
|
|
333
|
+
userId: string;
|
|
334
|
+
/**
|
|
335
|
+
* @generated from field: string organization_id = 2;
|
|
336
|
+
*/
|
|
337
|
+
organizationId: string;
|
|
338
|
+
/**
|
|
339
|
+
* @generated from field: string previous_version_id = 3;
|
|
340
|
+
*/
|
|
341
|
+
previousVersionId: string;
|
|
342
|
+
constructor(data?: PartialMessage<CreateVersionRequest>);
|
|
343
|
+
static readonly runtime: typeof proto3;
|
|
344
|
+
static readonly typeName = "liquidmetal.v1alpha1.CreateVersionRequest";
|
|
345
|
+
static readonly fields: FieldList;
|
|
346
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): CreateVersionRequest;
|
|
347
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): CreateVersionRequest;
|
|
348
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): CreateVersionRequest;
|
|
349
|
+
static equals(a: CreateVersionRequest | PlainMessage<CreateVersionRequest> | undefined, b: CreateVersionRequest | PlainMessage<CreateVersionRequest> | undefined): boolean;
|
|
350
|
+
}
|
|
351
|
+
/**
|
|
352
|
+
* @generated from message liquidmetal.v1alpha1.CreateVersionResponse
|
|
353
|
+
*/
|
|
354
|
+
export declare class CreateVersionResponse extends Message<CreateVersionResponse> {
|
|
355
|
+
/**
|
|
356
|
+
* @generated from field: string version_id = 1;
|
|
357
|
+
*/
|
|
358
|
+
versionId: string;
|
|
359
|
+
/**
|
|
360
|
+
* @generated from field: string previous_version_id = 2;
|
|
361
|
+
*/
|
|
362
|
+
previousVersionId: string;
|
|
363
|
+
constructor(data?: PartialMessage<CreateVersionResponse>);
|
|
364
|
+
static readonly runtime: typeof proto3;
|
|
365
|
+
static readonly typeName = "liquidmetal.v1alpha1.CreateVersionResponse";
|
|
366
|
+
static readonly fields: FieldList;
|
|
367
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): CreateVersionResponse;
|
|
368
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): CreateVersionResponse;
|
|
369
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): CreateVersionResponse;
|
|
370
|
+
static equals(a: CreateVersionResponse | PlainMessage<CreateVersionResponse> | undefined, b: CreateVersionResponse | PlainMessage<CreateVersionResponse> | undefined): boolean;
|
|
371
|
+
}
|
|
372
|
+
/**
|
|
373
|
+
* @generated from message liquidmetal.v1alpha1.UploadBundleRequest
|
|
374
|
+
*/
|
|
375
|
+
export declare class UploadBundleRequest extends Message<UploadBundleRequest> {
|
|
376
|
+
/**
|
|
377
|
+
* @generated from field: string user_id = 1;
|
|
378
|
+
*/
|
|
379
|
+
userId: string;
|
|
380
|
+
/**
|
|
381
|
+
* @generated from field: string organization_id = 2;
|
|
382
|
+
*/
|
|
383
|
+
organizationId: string;
|
|
384
|
+
/**
|
|
385
|
+
* @generated from field: string application_name = 3;
|
|
386
|
+
*/
|
|
387
|
+
applicationName: string;
|
|
388
|
+
/**
|
|
389
|
+
* @generated from field: string application_version_id = 4;
|
|
390
|
+
*/
|
|
391
|
+
applicationVersionId: string;
|
|
392
|
+
/**
|
|
393
|
+
* @generated from field: string bundle_name = 5;
|
|
394
|
+
*/
|
|
395
|
+
bundleName: string;
|
|
396
|
+
/**
|
|
397
|
+
* @generated from field: liquidmetal.v1alpha1.BundleArchiveType archive_type = 6;
|
|
398
|
+
*/
|
|
399
|
+
archiveType: BundleArchiveType;
|
|
400
|
+
/**
|
|
401
|
+
* @generated from field: bytes archive = 7;
|
|
402
|
+
*/
|
|
403
|
+
archive: Uint8Array;
|
|
404
|
+
constructor(data?: PartialMessage<UploadBundleRequest>);
|
|
405
|
+
static readonly runtime: typeof proto3;
|
|
406
|
+
static readonly typeName = "liquidmetal.v1alpha1.UploadBundleRequest";
|
|
407
|
+
static readonly fields: FieldList;
|
|
408
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): UploadBundleRequest;
|
|
409
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): UploadBundleRequest;
|
|
410
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): UploadBundleRequest;
|
|
411
|
+
static equals(a: UploadBundleRequest | PlainMessage<UploadBundleRequest> | undefined, b: UploadBundleRequest | PlainMessage<UploadBundleRequest> | undefined): boolean;
|
|
412
|
+
}
|
|
413
|
+
/**
|
|
414
|
+
* @generated from message liquidmetal.v1alpha1.UploadBundleResponse
|
|
415
|
+
*/
|
|
416
|
+
export declare class UploadBundleResponse extends Message<UploadBundleResponse> {
|
|
417
|
+
constructor(data?: PartialMessage<UploadBundleResponse>);
|
|
418
|
+
static readonly runtime: typeof proto3;
|
|
419
|
+
static readonly typeName = "liquidmetal.v1alpha1.UploadBundleResponse";
|
|
420
|
+
static readonly fields: FieldList;
|
|
421
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): UploadBundleResponse;
|
|
422
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): UploadBundleResponse;
|
|
423
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): UploadBundleResponse;
|
|
424
|
+
static equals(a: UploadBundleResponse | PlainMessage<UploadBundleResponse> | undefined, b: UploadBundleResponse | PlainMessage<UploadBundleResponse> | undefined): boolean;
|
|
425
|
+
}
|
|
426
|
+
/**
|
|
427
|
+
* @generated from message liquidmetal.v1alpha1.StatBundleRequest
|
|
428
|
+
*/
|
|
429
|
+
export declare class StatBundleRequest extends Message<StatBundleRequest> {
|
|
430
|
+
/**
|
|
431
|
+
* @generated from field: string user_id = 1;
|
|
432
|
+
*/
|
|
433
|
+
userId: string;
|
|
434
|
+
/**
|
|
435
|
+
* @generated from field: string organization_id = 2;
|
|
436
|
+
*/
|
|
437
|
+
organizationId: string;
|
|
438
|
+
/**
|
|
439
|
+
* @generated from field: string application_name = 3;
|
|
440
|
+
*/
|
|
441
|
+
applicationName: string;
|
|
442
|
+
/**
|
|
443
|
+
* @generated from field: string application_version_id = 4;
|
|
444
|
+
*/
|
|
445
|
+
applicationVersionId: string;
|
|
446
|
+
/**
|
|
447
|
+
* @generated from field: string bundle_name = 5;
|
|
448
|
+
*/
|
|
449
|
+
bundleName: string;
|
|
450
|
+
constructor(data?: PartialMessage<StatBundleRequest>);
|
|
451
|
+
static readonly runtime: typeof proto3;
|
|
452
|
+
static readonly typeName = "liquidmetal.v1alpha1.StatBundleRequest";
|
|
453
|
+
static readonly fields: FieldList;
|
|
454
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): StatBundleRequest;
|
|
455
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): StatBundleRequest;
|
|
456
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): StatBundleRequest;
|
|
457
|
+
static equals(a: StatBundleRequest | PlainMessage<StatBundleRequest> | undefined, b: StatBundleRequest | PlainMessage<StatBundleRequest> | undefined): boolean;
|
|
458
|
+
}
|
|
459
|
+
/**
|
|
460
|
+
* @generated from message liquidmetal.v1alpha1.StatBundleResponse
|
|
461
|
+
*/
|
|
462
|
+
export declare class StatBundleResponse extends Message<StatBundleResponse> {
|
|
463
|
+
/**
|
|
464
|
+
* @generated from field: repeated liquidmetal.v1alpha1.StatBundleResponse.File files = 1;
|
|
465
|
+
*/
|
|
466
|
+
files: StatBundleResponse_File[];
|
|
467
|
+
constructor(data?: PartialMessage<StatBundleResponse>);
|
|
468
|
+
static readonly runtime: typeof proto3;
|
|
469
|
+
static readonly typeName = "liquidmetal.v1alpha1.StatBundleResponse";
|
|
470
|
+
static readonly fields: FieldList;
|
|
471
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): StatBundleResponse;
|
|
472
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): StatBundleResponse;
|
|
473
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): StatBundleResponse;
|
|
474
|
+
static equals(a: StatBundleResponse | PlainMessage<StatBundleResponse> | undefined, b: StatBundleResponse | PlainMessage<StatBundleResponse> | undefined): boolean;
|
|
475
|
+
}
|
|
476
|
+
/**
|
|
477
|
+
* @generated from message liquidmetal.v1alpha1.StatBundleResponse.File
|
|
478
|
+
*/
|
|
479
|
+
export declare class StatBundleResponse_File extends Message<StatBundleResponse_File> {
|
|
480
|
+
/**
|
|
481
|
+
* @generated from field: string name = 1;
|
|
482
|
+
*/
|
|
483
|
+
name: string;
|
|
484
|
+
/**
|
|
485
|
+
* @generated from field: int32 size_bytes = 2;
|
|
486
|
+
*/
|
|
487
|
+
sizeBytes: number;
|
|
488
|
+
/**
|
|
489
|
+
* @generated from field: string sha256 = 3;
|
|
490
|
+
*/
|
|
491
|
+
sha256: string;
|
|
492
|
+
constructor(data?: PartialMessage<StatBundleResponse_File>);
|
|
493
|
+
static readonly runtime: typeof proto3;
|
|
494
|
+
static readonly typeName = "liquidmetal.v1alpha1.StatBundleResponse.File";
|
|
495
|
+
static readonly fields: FieldList;
|
|
496
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): StatBundleResponse_File;
|
|
497
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): StatBundleResponse_File;
|
|
498
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): StatBundleResponse_File;
|
|
499
|
+
static equals(a: StatBundleResponse_File | PlainMessage<StatBundleResponse_File> | undefined, b: StatBundleResponse_File | PlainMessage<StatBundleResponse_File> | undefined): boolean;
|
|
500
|
+
}
|
|
501
|
+
/**
|
|
502
|
+
* @generated from message liquidmetal.v1alpha1.SetEnvRequest
|
|
503
|
+
*/
|
|
504
|
+
export declare class SetEnvRequest extends Message<SetEnvRequest> {
|
|
505
|
+
/**
|
|
506
|
+
* @generated from field: string user_id = 1;
|
|
507
|
+
*/
|
|
508
|
+
userId: string;
|
|
509
|
+
/**
|
|
510
|
+
* @generated from field: string organization_id = 2;
|
|
511
|
+
*/
|
|
512
|
+
organizationId: string;
|
|
513
|
+
/**
|
|
514
|
+
* @generated from field: string application_name = 3;
|
|
515
|
+
*/
|
|
516
|
+
applicationName: string;
|
|
517
|
+
/**
|
|
518
|
+
* @generated from field: string application_version_id = 4;
|
|
519
|
+
*/
|
|
520
|
+
applicationVersionId: string;
|
|
521
|
+
/**
|
|
522
|
+
* @generated from field: string key = 5;
|
|
523
|
+
*/
|
|
524
|
+
key: string;
|
|
525
|
+
/**
|
|
526
|
+
* @generated from field: string value = 6;
|
|
527
|
+
*/
|
|
528
|
+
value: string;
|
|
529
|
+
/**
|
|
530
|
+
* @generated from field: bool is_secret = 7;
|
|
531
|
+
*/
|
|
532
|
+
isSecret: boolean;
|
|
533
|
+
constructor(data?: PartialMessage<SetEnvRequest>);
|
|
534
|
+
static readonly runtime: typeof proto3;
|
|
535
|
+
static readonly typeName = "liquidmetal.v1alpha1.SetEnvRequest";
|
|
536
|
+
static readonly fields: FieldList;
|
|
537
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SetEnvRequest;
|
|
538
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SetEnvRequest;
|
|
539
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SetEnvRequest;
|
|
540
|
+
static equals(a: SetEnvRequest | PlainMessage<SetEnvRequest> | undefined, b: SetEnvRequest | PlainMessage<SetEnvRequest> | undefined): boolean;
|
|
541
|
+
}
|
|
542
|
+
/**
|
|
543
|
+
* @generated from message liquidmetal.v1alpha1.SetEnvResponse
|
|
544
|
+
*/
|
|
545
|
+
export declare class SetEnvResponse extends Message<SetEnvResponse> {
|
|
546
|
+
constructor(data?: PartialMessage<SetEnvResponse>);
|
|
547
|
+
static readonly runtime: typeof proto3;
|
|
548
|
+
static readonly typeName = "liquidmetal.v1alpha1.SetEnvResponse";
|
|
549
|
+
static readonly fields: FieldList;
|
|
550
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SetEnvResponse;
|
|
551
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SetEnvResponse;
|
|
552
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SetEnvResponse;
|
|
553
|
+
static equals(a: SetEnvResponse | PlainMessage<SetEnvResponse> | undefined, b: SetEnvResponse | PlainMessage<SetEnvResponse> | undefined): boolean;
|
|
554
|
+
}
|
|
555
|
+
/**
|
|
556
|
+
* @generated from message liquidmetal.v1alpha1.GetEnvRequest
|
|
557
|
+
*/
|
|
558
|
+
export declare class GetEnvRequest extends Message<GetEnvRequest> {
|
|
559
|
+
/**
|
|
560
|
+
* @generated from field: string user_id = 1;
|
|
561
|
+
*/
|
|
562
|
+
userId: string;
|
|
563
|
+
/**
|
|
564
|
+
* @generated from field: string organization_id = 2;
|
|
565
|
+
*/
|
|
566
|
+
organizationId: string;
|
|
567
|
+
/**
|
|
568
|
+
* @generated from field: string application_name = 3;
|
|
569
|
+
*/
|
|
570
|
+
applicationName: string;
|
|
571
|
+
/**
|
|
572
|
+
* @generated from field: string application_version_id = 4;
|
|
573
|
+
*/
|
|
574
|
+
applicationVersionId: string;
|
|
575
|
+
/**
|
|
576
|
+
* @generated from field: string key = 5;
|
|
577
|
+
*/
|
|
578
|
+
key: string;
|
|
579
|
+
constructor(data?: PartialMessage<GetEnvRequest>);
|
|
580
|
+
static readonly runtime: typeof proto3;
|
|
581
|
+
static readonly typeName = "liquidmetal.v1alpha1.GetEnvRequest";
|
|
582
|
+
static readonly fields: FieldList;
|
|
583
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetEnvRequest;
|
|
584
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetEnvRequest;
|
|
585
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetEnvRequest;
|
|
586
|
+
static equals(a: GetEnvRequest | PlainMessage<GetEnvRequest> | undefined, b: GetEnvRequest | PlainMessage<GetEnvRequest> | undefined): boolean;
|
|
587
|
+
}
|
|
588
|
+
/**
|
|
589
|
+
* @generated from message liquidmetal.v1alpha1.GetEnvResponse
|
|
590
|
+
*/
|
|
591
|
+
export declare class GetEnvResponse extends Message<GetEnvResponse> {
|
|
592
|
+
/**
|
|
593
|
+
* @generated from field: optional string value = 1;
|
|
594
|
+
*/
|
|
595
|
+
value?: string;
|
|
596
|
+
/**
|
|
597
|
+
* @generated from field: optional string sha256 = 2;
|
|
598
|
+
*/
|
|
599
|
+
sha256?: string;
|
|
600
|
+
constructor(data?: PartialMessage<GetEnvResponse>);
|
|
601
|
+
static readonly runtime: typeof proto3;
|
|
602
|
+
static readonly typeName = "liquidmetal.v1alpha1.GetEnvResponse";
|
|
603
|
+
static readonly fields: FieldList;
|
|
604
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetEnvResponse;
|
|
605
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetEnvResponse;
|
|
606
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetEnvResponse;
|
|
607
|
+
static equals(a: GetEnvResponse | PlainMessage<GetEnvResponse> | undefined, b: GetEnvResponse | PlainMessage<GetEnvResponse> | undefined): boolean;
|
|
608
|
+
}
|
|
609
|
+
/**
|
|
610
|
+
* @generated from message liquidmetal.v1alpha1.BootstrapRequest
|
|
611
|
+
*/
|
|
612
|
+
export declare class BootstrapRequest extends Message<BootstrapRequest> {
|
|
613
|
+
/**
|
|
614
|
+
* @generated from field: string user_id = 1;
|
|
615
|
+
*/
|
|
616
|
+
userId: string;
|
|
617
|
+
/**
|
|
618
|
+
* @generated from field: string organization_id = 2;
|
|
619
|
+
*/
|
|
620
|
+
organizationId: string;
|
|
621
|
+
/**
|
|
622
|
+
* token is a special string interpreted by the catalog service to prove that
|
|
623
|
+
* bootstrapping is desired from a trusted caller.
|
|
624
|
+
*
|
|
625
|
+
* @generated from field: string token = 3;
|
|
626
|
+
*/
|
|
627
|
+
token: string;
|
|
628
|
+
/**
|
|
629
|
+
* cloudflare_account_id is cloudflare's account identifier tag.
|
|
630
|
+
* <= 32 characters
|
|
631
|
+
* Example:
|
|
632
|
+
* eb78d65290b24279ba6f44721b3ea3c4
|
|
633
|
+
*
|
|
634
|
+
* @generated from field: string cloudflare_account_id = 4;
|
|
635
|
+
*/
|
|
636
|
+
cloudflareAccountId: string;
|
|
637
|
+
/**
|
|
638
|
+
* cloudflare_bearer_token is an API key used with an http header
|
|
639
|
+
* "Authorization: Bearer {cloudflare_bearer_token}".
|
|
640
|
+
*
|
|
641
|
+
* @generated from field: string cloudflare_bearer_token = 5;
|
|
642
|
+
*/
|
|
643
|
+
cloudflareBearerToken: string;
|
|
644
|
+
/**
|
|
645
|
+
* liquidmetal_services_domain is a domain allocated for running services like
|
|
646
|
+
* catalog api within the tenant account. The zone managing records for this
|
|
647
|
+
* domain already exists in the provided account specified by
|
|
648
|
+
* cloudflare_account_id.
|
|
649
|
+
*
|
|
650
|
+
* e.g. 01j5980p15smvppgf3zbbw491h.tenant.liquidmetal.run
|
|
651
|
+
*
|
|
652
|
+
* @generated from field: string liquidmetal_services_domain = 6;
|
|
653
|
+
*/
|
|
654
|
+
liquidmetalServicesDomain: string;
|
|
655
|
+
/**
|
|
656
|
+
* customer_services_domain is a domain allocated for running
|
|
657
|
+
* customer-deployed applications. The zone managing records for this domain
|
|
658
|
+
* already exists in the provided account specified by cloudflare_account_id.
|
|
659
|
+
* e.g. 01j5980p15smvppgf3zbbw491h.lmapp.run
|
|
660
|
+
*
|
|
661
|
+
* @generated from field: string customer_services_domain = 7;
|
|
662
|
+
*/
|
|
663
|
+
customerServicesDomain: string;
|
|
664
|
+
constructor(data?: PartialMessage<BootstrapRequest>);
|
|
665
|
+
static readonly runtime: typeof proto3;
|
|
666
|
+
static readonly typeName = "liquidmetal.v1alpha1.BootstrapRequest";
|
|
667
|
+
static readonly fields: FieldList;
|
|
668
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): BootstrapRequest;
|
|
669
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): BootstrapRequest;
|
|
670
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): BootstrapRequest;
|
|
671
|
+
static equals(a: BootstrapRequest | PlainMessage<BootstrapRequest> | undefined, b: BootstrapRequest | PlainMessage<BootstrapRequest> | undefined): boolean;
|
|
672
|
+
}
|
|
673
|
+
/**
|
|
674
|
+
* @generated from message liquidmetal.v1alpha1.BootstrapResponse
|
|
675
|
+
*/
|
|
676
|
+
export declare class BootstrapResponse extends Message<BootstrapResponse> {
|
|
677
|
+
constructor(data?: PartialMessage<BootstrapResponse>);
|
|
678
|
+
static readonly runtime: typeof proto3;
|
|
679
|
+
static readonly typeName = "liquidmetal.v1alpha1.BootstrapResponse";
|
|
680
|
+
static readonly fields: FieldList;
|
|
681
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): BootstrapResponse;
|
|
682
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): BootstrapResponse;
|
|
683
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): BootstrapResponse;
|
|
684
|
+
static equals(a: BootstrapResponse | PlainMessage<BootstrapResponse> | undefined, b: BootstrapResponse | PlainMessage<BootstrapResponse> | undefined): boolean;
|
|
685
|
+
}
|
|
686
|
+
/**
|
|
687
|
+
* @generated from message liquidmetal.v1alpha1.SetApplicationActiveStatesRequest
|
|
688
|
+
*/
|
|
689
|
+
export declare class SetApplicationActiveStatesRequest extends Message<SetApplicationActiveStatesRequest> {
|
|
690
|
+
/**
|
|
691
|
+
* @generated from field: repeated liquidmetal.v1alpha1.SetApplicationActiveStatesRequest.State states = 1;
|
|
692
|
+
*/
|
|
693
|
+
states: SetApplicationActiveStatesRequest_State[];
|
|
694
|
+
/**
|
|
695
|
+
* @generated from field: string user_id = 2;
|
|
696
|
+
*/
|
|
697
|
+
userId: string;
|
|
698
|
+
/**
|
|
699
|
+
* @generated from field: string organization_id = 3;
|
|
700
|
+
*/
|
|
701
|
+
organizationId: string;
|
|
702
|
+
constructor(data?: PartialMessage<SetApplicationActiveStatesRequest>);
|
|
703
|
+
static readonly runtime: typeof proto3;
|
|
704
|
+
static readonly typeName = "liquidmetal.v1alpha1.SetApplicationActiveStatesRequest";
|
|
705
|
+
static readonly fields: FieldList;
|
|
706
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SetApplicationActiveStatesRequest;
|
|
707
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SetApplicationActiveStatesRequest;
|
|
708
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SetApplicationActiveStatesRequest;
|
|
709
|
+
static equals(a: SetApplicationActiveStatesRequest | PlainMessage<SetApplicationActiveStatesRequest> | undefined, b: SetApplicationActiveStatesRequest | PlainMessage<SetApplicationActiveStatesRequest> | undefined): boolean;
|
|
710
|
+
}
|
|
711
|
+
/**
|
|
712
|
+
* @generated from message liquidmetal.v1alpha1.SetApplicationActiveStatesRequest.State
|
|
713
|
+
*/
|
|
714
|
+
export declare class SetApplicationActiveStatesRequest_State extends Message<SetApplicationActiveStatesRequest_State> {
|
|
715
|
+
/**
|
|
716
|
+
* @generated from field: string application_name = 1;
|
|
717
|
+
*/
|
|
718
|
+
applicationName: string;
|
|
719
|
+
/**
|
|
720
|
+
* @generated from field: string application_version_id = 2;
|
|
721
|
+
*/
|
|
722
|
+
applicationVersionId: string;
|
|
723
|
+
/**
|
|
724
|
+
* @generated from field: bool is_active = 3;
|
|
725
|
+
*/
|
|
726
|
+
isActive: boolean;
|
|
727
|
+
constructor(data?: PartialMessage<SetApplicationActiveStatesRequest_State>);
|
|
728
|
+
static readonly runtime: typeof proto3;
|
|
729
|
+
static readonly typeName = "liquidmetal.v1alpha1.SetApplicationActiveStatesRequest.State";
|
|
730
|
+
static readonly fields: FieldList;
|
|
731
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SetApplicationActiveStatesRequest_State;
|
|
732
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SetApplicationActiveStatesRequest_State;
|
|
733
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SetApplicationActiveStatesRequest_State;
|
|
734
|
+
static equals(a: SetApplicationActiveStatesRequest_State | PlainMessage<SetApplicationActiveStatesRequest_State> | undefined, b: SetApplicationActiveStatesRequest_State | PlainMessage<SetApplicationActiveStatesRequest_State> | undefined): boolean;
|
|
735
|
+
}
|
|
736
|
+
/**
|
|
737
|
+
* @generated from message liquidmetal.v1alpha1.SetApplicationActiveStatesResponse
|
|
738
|
+
*/
|
|
739
|
+
export declare class SetApplicationActiveStatesResponse extends Message<SetApplicationActiveStatesResponse> {
|
|
740
|
+
/**
|
|
741
|
+
* @generated from field: repeated liquidmetal.v1alpha1.SetApplicationActiveStatesResponse.Application success = 1;
|
|
742
|
+
*/
|
|
743
|
+
success: SetApplicationActiveStatesResponse_Application[];
|
|
744
|
+
/**
|
|
745
|
+
* @generated from field: repeated liquidmetal.v1alpha1.SetApplicationActiveStatesResponse.Application failure = 2;
|
|
746
|
+
*/
|
|
747
|
+
failure: SetApplicationActiveStatesResponse_Application[];
|
|
748
|
+
constructor(data?: PartialMessage<SetApplicationActiveStatesResponse>);
|
|
749
|
+
static readonly runtime: typeof proto3;
|
|
750
|
+
static readonly typeName = "liquidmetal.v1alpha1.SetApplicationActiveStatesResponse";
|
|
751
|
+
static readonly fields: FieldList;
|
|
752
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SetApplicationActiveStatesResponse;
|
|
753
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SetApplicationActiveStatesResponse;
|
|
754
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SetApplicationActiveStatesResponse;
|
|
755
|
+
static equals(a: SetApplicationActiveStatesResponse | PlainMessage<SetApplicationActiveStatesResponse> | undefined, b: SetApplicationActiveStatesResponse | PlainMessage<SetApplicationActiveStatesResponse> | undefined): boolean;
|
|
756
|
+
}
|
|
757
|
+
/**
|
|
758
|
+
* @generated from message liquidmetal.v1alpha1.SetApplicationActiveStatesResponse.Application
|
|
759
|
+
*/
|
|
760
|
+
export declare class SetApplicationActiveStatesResponse_Application extends Message<SetApplicationActiveStatesResponse_Application> {
|
|
761
|
+
/**
|
|
762
|
+
* @generated from field: string name = 1;
|
|
763
|
+
*/
|
|
764
|
+
name: string;
|
|
765
|
+
/**
|
|
766
|
+
* @generated from field: optional string version_id = 2;
|
|
767
|
+
*/
|
|
768
|
+
versionId?: string;
|
|
769
|
+
constructor(data?: PartialMessage<SetApplicationActiveStatesResponse_Application>);
|
|
770
|
+
static readonly runtime: typeof proto3;
|
|
771
|
+
static readonly typeName = "liquidmetal.v1alpha1.SetApplicationActiveStatesResponse.Application";
|
|
772
|
+
static readonly fields: FieldList;
|
|
773
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SetApplicationActiveStatesResponse_Application;
|
|
774
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SetApplicationActiveStatesResponse_Application;
|
|
775
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SetApplicationActiveStatesResponse_Application;
|
|
776
|
+
static equals(a: SetApplicationActiveStatesResponse_Application | PlainMessage<SetApplicationActiveStatesResponse_Application> | undefined, b: SetApplicationActiveStatesResponse_Application | PlainMessage<SetApplicationActiveStatesResponse_Application> | undefined): boolean;
|
|
777
|
+
}
|
|
778
|
+
/**
|
|
779
|
+
* @generated from message liquidmetal.v1alpha1.DeleteApplicationsRequest
|
|
780
|
+
*/
|
|
781
|
+
export declare class DeleteApplicationsRequest extends Message<DeleteApplicationsRequest> {
|
|
782
|
+
/**
|
|
783
|
+
* @generated from field: repeated liquidmetal.v1alpha1.DeleteApplicationsRequest.Application applications = 1;
|
|
784
|
+
*/
|
|
785
|
+
applications: DeleteApplicationsRequest_Application[];
|
|
786
|
+
/**
|
|
787
|
+
* @generated from field: string user_id = 2;
|
|
788
|
+
*/
|
|
789
|
+
userId: string;
|
|
790
|
+
/**
|
|
791
|
+
* @generated from field: string organization_id = 3;
|
|
792
|
+
*/
|
|
793
|
+
organizationId: string;
|
|
794
|
+
constructor(data?: PartialMessage<DeleteApplicationsRequest>);
|
|
795
|
+
static readonly runtime: typeof proto3;
|
|
796
|
+
static readonly typeName = "liquidmetal.v1alpha1.DeleteApplicationsRequest";
|
|
797
|
+
static readonly fields: FieldList;
|
|
798
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): DeleteApplicationsRequest;
|
|
799
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): DeleteApplicationsRequest;
|
|
800
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): DeleteApplicationsRequest;
|
|
801
|
+
static equals(a: DeleteApplicationsRequest | PlainMessage<DeleteApplicationsRequest> | undefined, b: DeleteApplicationsRequest | PlainMessage<DeleteApplicationsRequest> | undefined): boolean;
|
|
802
|
+
}
|
|
803
|
+
/**
|
|
804
|
+
* @generated from message liquidmetal.v1alpha1.DeleteApplicationsRequest.Application
|
|
805
|
+
*/
|
|
806
|
+
export declare class DeleteApplicationsRequest_Application extends Message<DeleteApplicationsRequest_Application> {
|
|
807
|
+
/**
|
|
808
|
+
* @generated from field: string name = 1;
|
|
809
|
+
*/
|
|
810
|
+
name: string;
|
|
811
|
+
/**
|
|
812
|
+
* @generated from field: optional string version_id = 2;
|
|
813
|
+
*/
|
|
814
|
+
versionId?: string;
|
|
815
|
+
constructor(data?: PartialMessage<DeleteApplicationsRequest_Application>);
|
|
816
|
+
static readonly runtime: typeof proto3;
|
|
817
|
+
static readonly typeName = "liquidmetal.v1alpha1.DeleteApplicationsRequest.Application";
|
|
818
|
+
static readonly fields: FieldList;
|
|
819
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): DeleteApplicationsRequest_Application;
|
|
820
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): DeleteApplicationsRequest_Application;
|
|
821
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): DeleteApplicationsRequest_Application;
|
|
822
|
+
static equals(a: DeleteApplicationsRequest_Application | PlainMessage<DeleteApplicationsRequest_Application> | undefined, b: DeleteApplicationsRequest_Application | PlainMessage<DeleteApplicationsRequest_Application> | undefined): boolean;
|
|
823
|
+
}
|
|
824
|
+
/**
|
|
825
|
+
* @generated from message liquidmetal.v1alpha1.DeleteApplicationsResponse
|
|
826
|
+
*/
|
|
827
|
+
export declare class DeleteApplicationsResponse extends Message<DeleteApplicationsResponse> {
|
|
828
|
+
/**
|
|
829
|
+
* @generated from field: repeated liquidmetal.v1alpha1.DeleteApplicationsResponse.Application success = 1;
|
|
830
|
+
*/
|
|
831
|
+
success: DeleteApplicationsResponse_Application[];
|
|
832
|
+
/**
|
|
833
|
+
* @generated from field: repeated liquidmetal.v1alpha1.DeleteApplicationsResponse.Application failure = 2;
|
|
834
|
+
*/
|
|
835
|
+
failure: DeleteApplicationsResponse_Application[];
|
|
836
|
+
constructor(data?: PartialMessage<DeleteApplicationsResponse>);
|
|
837
|
+
static readonly runtime: typeof proto3;
|
|
838
|
+
static readonly typeName = "liquidmetal.v1alpha1.DeleteApplicationsResponse";
|
|
839
|
+
static readonly fields: FieldList;
|
|
840
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): DeleteApplicationsResponse;
|
|
841
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): DeleteApplicationsResponse;
|
|
842
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): DeleteApplicationsResponse;
|
|
843
|
+
static equals(a: DeleteApplicationsResponse | PlainMessage<DeleteApplicationsResponse> | undefined, b: DeleteApplicationsResponse | PlainMessage<DeleteApplicationsResponse> | undefined): boolean;
|
|
844
|
+
}
|
|
845
|
+
/**
|
|
846
|
+
* @generated from message liquidmetal.v1alpha1.DeleteApplicationsResponse.Application
|
|
847
|
+
*/
|
|
848
|
+
export declare class DeleteApplicationsResponse_Application extends Message<DeleteApplicationsResponse_Application> {
|
|
849
|
+
/**
|
|
850
|
+
* @generated from field: string name = 1;
|
|
851
|
+
*/
|
|
852
|
+
name: string;
|
|
853
|
+
/**
|
|
854
|
+
* @generated from field: optional string version_id = 2;
|
|
855
|
+
*/
|
|
856
|
+
versionId?: string;
|
|
857
|
+
constructor(data?: PartialMessage<DeleteApplicationsResponse_Application>);
|
|
858
|
+
static readonly runtime: typeof proto3;
|
|
859
|
+
static readonly typeName = "liquidmetal.v1alpha1.DeleteApplicationsResponse.Application";
|
|
860
|
+
static readonly fields: FieldList;
|
|
861
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): DeleteApplicationsResponse_Application;
|
|
862
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): DeleteApplicationsResponse_Application;
|
|
863
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): DeleteApplicationsResponse_Application;
|
|
864
|
+
static equals(a: DeleteApplicationsResponse_Application | PlainMessage<DeleteApplicationsResponse_Application> | undefined, b: DeleteApplicationsResponse_Application | PlainMessage<DeleteApplicationsResponse_Application> | undefined): boolean;
|
|
865
|
+
}
|
|
866
|
+
/**
|
|
867
|
+
* @generated from message liquidmetal.v1alpha1.QueryResourcesRequest
|
|
868
|
+
*/
|
|
869
|
+
export declare class QueryResourcesRequest extends Message<QueryResourcesRequest> {
|
|
870
|
+
/**
|
|
871
|
+
* @generated from field: string user_id = 1;
|
|
872
|
+
*/
|
|
873
|
+
userId: string;
|
|
874
|
+
/**
|
|
875
|
+
* @generated from field: string organization_id = 2;
|
|
876
|
+
*/
|
|
877
|
+
organizationId: string;
|
|
878
|
+
/**
|
|
879
|
+
* @generated from field: string application_name = 3;
|
|
880
|
+
*/
|
|
881
|
+
applicationName: string;
|
|
882
|
+
/**
|
|
883
|
+
* @generated from field: string application_version_id = 4;
|
|
884
|
+
*/
|
|
885
|
+
applicationVersionId: string;
|
|
886
|
+
constructor(data?: PartialMessage<QueryResourcesRequest>);
|
|
887
|
+
static readonly runtime: typeof proto3;
|
|
888
|
+
static readonly typeName = "liquidmetal.v1alpha1.QueryResourcesRequest";
|
|
889
|
+
static readonly fields: FieldList;
|
|
890
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): QueryResourcesRequest;
|
|
891
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): QueryResourcesRequest;
|
|
892
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): QueryResourcesRequest;
|
|
893
|
+
static equals(a: QueryResourcesRequest | PlainMessage<QueryResourcesRequest> | undefined, b: QueryResourcesRequest | PlainMessage<QueryResourcesRequest> | undefined): boolean;
|
|
894
|
+
}
|
|
895
|
+
/**
|
|
896
|
+
* @generated from message liquidmetal.v1alpha1.QueryResourcesResponse
|
|
897
|
+
*/
|
|
898
|
+
export declare class QueryResourcesResponse extends Message<QueryResourcesResponse> {
|
|
899
|
+
/**
|
|
900
|
+
* @generated from field: repeated liquidmetal.v1alpha1.QueryResourcesResponse.Resource resources = 1;
|
|
901
|
+
*/
|
|
902
|
+
resources: QueryResourcesResponse_Resource[];
|
|
903
|
+
/**
|
|
904
|
+
* @generated from field: optional string next_page_token = 2;
|
|
905
|
+
*/
|
|
906
|
+
nextPageToken?: string;
|
|
907
|
+
constructor(data?: PartialMessage<QueryResourcesResponse>);
|
|
908
|
+
static readonly runtime: typeof proto3;
|
|
909
|
+
static readonly typeName = "liquidmetal.v1alpha1.QueryResourcesResponse";
|
|
910
|
+
static readonly fields: FieldList;
|
|
911
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): QueryResourcesResponse;
|
|
912
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): QueryResourcesResponse;
|
|
913
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): QueryResourcesResponse;
|
|
914
|
+
static equals(a: QueryResourcesResponse | PlainMessage<QueryResourcesResponse> | undefined, b: QueryResourcesResponse | PlainMessage<QueryResourcesResponse> | undefined): boolean;
|
|
915
|
+
}
|
|
916
|
+
/**
|
|
917
|
+
* @generated from message liquidmetal.v1alpha1.QueryResourcesResponse.Resource
|
|
918
|
+
*/
|
|
919
|
+
export declare class QueryResourcesResponse_Resource extends Message<QueryResourcesResponse_Resource> {
|
|
920
|
+
/**
|
|
921
|
+
* @generated from field: string organization_id = 1;
|
|
922
|
+
*/
|
|
923
|
+
organizationId: string;
|
|
924
|
+
/**
|
|
925
|
+
* @generated from field: string application_name = 2;
|
|
926
|
+
*/
|
|
927
|
+
applicationName: string;
|
|
928
|
+
/**
|
|
929
|
+
* @generated from field: string application_version_id = 3;
|
|
930
|
+
*/
|
|
931
|
+
applicationVersionId: string;
|
|
932
|
+
/**
|
|
933
|
+
* @generated from field: string resource_id = 4;
|
|
934
|
+
*/
|
|
935
|
+
resourceId: string;
|
|
936
|
+
/**
|
|
937
|
+
* @generated from field: string name = 5;
|
|
938
|
+
*/
|
|
939
|
+
name: string;
|
|
940
|
+
/**
|
|
941
|
+
* @generated from field: string type = 6;
|
|
942
|
+
*/
|
|
943
|
+
type: string;
|
|
944
|
+
/**
|
|
945
|
+
* @generated from field: google.protobuf.Struct attributes = 8;
|
|
946
|
+
*/
|
|
947
|
+
attributes?: Struct;
|
|
948
|
+
/**
|
|
949
|
+
* @generated from field: google.protobuf.Timestamp created_at = 9;
|
|
950
|
+
*/
|
|
951
|
+
createdAt?: Timestamp;
|
|
952
|
+
/**
|
|
953
|
+
* @generated from field: google.protobuf.Timestamp updated_at = 10;
|
|
954
|
+
*/
|
|
955
|
+
updatedAt?: Timestamp;
|
|
956
|
+
constructor(data?: PartialMessage<QueryResourcesResponse_Resource>);
|
|
957
|
+
static readonly runtime: typeof proto3;
|
|
958
|
+
static readonly typeName = "liquidmetal.v1alpha1.QueryResourcesResponse.Resource";
|
|
959
|
+
static readonly fields: FieldList;
|
|
960
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): QueryResourcesResponse_Resource;
|
|
961
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): QueryResourcesResponse_Resource;
|
|
962
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): QueryResourcesResponse_Resource;
|
|
963
|
+
static equals(a: QueryResourcesResponse_Resource | PlainMessage<QueryResourcesResponse_Resource> | undefined, b: QueryResourcesResponse_Resource | PlainMessage<QueryResourcesResponse_Resource> | undefined): boolean;
|
|
964
|
+
}
|
|
965
|
+
//# sourceMappingURL=catalog_pb.d.ts.map
|