@liquidmetal-ai/drizzle 0.2.2 → 0.2.8
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/.turbo/turbo-test.log +208 -1
- package/dist/appify/index.d.ts +4 -0
- package/dist/appify/index.d.ts.map +1 -1
- package/dist/appify/index.js +18 -1
- package/dist/codestore.js +1 -1
- package/dist/liquidmetal/v1alpha1/catalog_pb.d.ts +595 -478
- package/dist/liquidmetal/v1alpha1/catalog_pb.d.ts.map +1 -1
- package/dist/liquidmetal/v1alpha1/catalog_pb.js +244 -1661
- package/dist/liquidmetal/v1alpha1/rainbow_auth_pb.d.ts +110 -92
- package/dist/liquidmetal/v1alpha1/rainbow_auth_pb.d.ts.map +1 -1
- package/dist/liquidmetal/v1alpha1/rainbow_auth_pb.js +38 -361
- package/dist/liquidmetal/v1alpha1/raindrop_pb.d.ts +14 -13
- package/dist/liquidmetal/v1alpha1/raindrop_pb.d.ts.map +1 -1
- package/dist/liquidmetal/v1alpha1/raindrop_pb.js +10 -48
- package/dist/liquidmetal/v1alpha1/resource_interface_pb.d.ts +146 -122
- package/dist/liquidmetal/v1alpha1/resource_interface_pb.d.ts.map +1 -1
- package/dist/liquidmetal/v1alpha1/resource_interface_pb.js +49 -428
- package/dist/liquidmetal/v1alpha1/search_agent_pb.d.ts +262 -142
- package/dist/liquidmetal/v1alpha1/search_agent_pb.d.ts.map +1 -1
- package/dist/liquidmetal/v1alpha1/search_agent_pb.js +68 -684
- package/eslint.config.mjs +3 -1
- package/package.json +2 -1
- package/src/appify/index.ts +18 -1
- package/src/codestore.ts +1 -1
- package/src/liquidmetal/v1alpha1/catalog_pb.ts +800 -1443
- package/src/liquidmetal/v1alpha1/rainbow_auth_pb.ts +142 -284
- package/src/liquidmetal/v1alpha1/raindrop_pb.ts +21 -35
- package/src/liquidmetal/v1alpha1/resource_interface_pb.ts +192 -378
- package/src/liquidmetal/v1alpha1/search_agent_pb.ts +310 -450
- package/tsconfig.json +11 -3
- package/tsconfig.tsbuildinfo +1 -1
- package/.turbo/turbo-lint.log +0 -6
- package/dist/liquidmetal/v1alpha1/catalog_connect.d.ts +0 -168
- package/dist/liquidmetal/v1alpha1/catalog_connect.d.ts.map +0 -1
- package/dist/liquidmetal/v1alpha1/catalog_connect.js +0 -171
- package/dist/liquidmetal/v1alpha1/rainbow_auth_connect.d.ts +0 -49
- package/dist/liquidmetal/v1alpha1/rainbow_auth_connect.d.ts.map +0 -1
- package/dist/liquidmetal/v1alpha1/rainbow_auth_connect.js +0 -52
- package/dist/liquidmetal/v1alpha1/rainbow_public_connect.d.ts +0 -26
- package/dist/liquidmetal/v1alpha1/rainbow_public_connect.d.ts.map +0 -1
- package/dist/liquidmetal/v1alpha1/rainbow_public_connect.js +0 -29
- package/dist/liquidmetal/v1alpha1/rainbow_public_pb.d.ts +0 -202
- package/dist/liquidmetal/v1alpha1/rainbow_public_pb.d.ts.map +0 -1
- package/dist/liquidmetal/v1alpha1/rainbow_public_pb.js +0 -298
- package/dist/liquidmetal/v1alpha1/resource_interface_connect.d.ts +0 -68
- package/dist/liquidmetal/v1alpha1/resource_interface_connect.d.ts.map +0 -1
- package/dist/liquidmetal/v1alpha1/resource_interface_connect.js +0 -73
- package/dist/liquidmetal/v1alpha1/search_agent_connect.d.ts +0 -170
- package/dist/liquidmetal/v1alpha1/search_agent_connect.d.ts.map +0 -1
- package/dist/liquidmetal/v1alpha1/search_agent_connect.js +0 -173
- package/src/liquidmetal/v1alpha1/catalog_connect.ts +0 -174
- package/src/liquidmetal/v1alpha1/rainbow_auth_connect.ts +0 -55
- package/src/liquidmetal/v1alpha1/rainbow_public_connect.ts +0 -32
- package/src/liquidmetal/v1alpha1/rainbow_public_pb.ts +0 -366
- package/src/liquidmetal/v1alpha1/resource_interface_connect.ts +0 -77
- package/src/liquidmetal/v1alpha1/search_agent_connect.ts +0 -176
|
@@ -1,11 +1,16 @@
|
|
|
1
|
-
import type {
|
|
2
|
-
import {
|
|
1
|
+
import type { GenFile, GenMessage, GenService } from "@bufbuild/protobuf/codegenv1";
|
|
2
|
+
import type { Timestamp } from "@bufbuild/protobuf/wkt";
|
|
3
|
+
import type { Message } from "@bufbuild/protobuf";
|
|
4
|
+
/**
|
|
5
|
+
* Describes the file liquidmetal/v1alpha1/resource_interface.proto.
|
|
6
|
+
*/
|
|
7
|
+
export declare const file_liquidmetal_v1alpha1_resource_interface: GenFile;
|
|
3
8
|
/**
|
|
4
9
|
* Smartbucket details as stored in the catalog SQL database
|
|
5
10
|
*
|
|
6
11
|
* @generated from message liquidmetal.v1alpha1.SmartBucket
|
|
7
12
|
*/
|
|
8
|
-
export
|
|
13
|
+
export type SmartBucket = Message<"liquidmetal.v1alpha1.SmartBucket"> & {
|
|
9
14
|
/**
|
|
10
15
|
* id of the record in the catalog SQL database
|
|
11
16
|
*
|
|
@@ -48,19 +53,16 @@ export declare class SmartBucket extends Message<SmartBucket> {
|
|
|
48
53
|
* @generated from field: google.protobuf.Timestamp updated_at = 7;
|
|
49
54
|
*/
|
|
50
55
|
updatedAt?: Timestamp;
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SmartBucket;
|
|
58
|
-
static equals(a: SmartBucket | PlainMessage<SmartBucket> | undefined, b: SmartBucket | PlainMessage<SmartBucket> | undefined): boolean;
|
|
59
|
-
}
|
|
56
|
+
};
|
|
57
|
+
/**
|
|
58
|
+
* Describes the message liquidmetal.v1alpha1.SmartBucket.
|
|
59
|
+
* Use `create(SmartBucketSchema)` to create a new message.
|
|
60
|
+
*/
|
|
61
|
+
export declare const SmartBucketSchema: GenMessage<SmartBucket>;
|
|
60
62
|
/**
|
|
61
63
|
* @generated from message liquidmetal.v1alpha1.PutObjectRequest
|
|
62
64
|
*/
|
|
63
|
-
export
|
|
65
|
+
export type PutObjectRequest = Message<"liquidmetal.v1alpha1.PutObjectRequest"> & {
|
|
64
66
|
/**
|
|
65
67
|
* @generated from field: string bucket = 1;
|
|
66
68
|
*/
|
|
@@ -77,19 +79,16 @@ export declare class PutObjectRequest extends Message<PutObjectRequest> {
|
|
|
77
79
|
* @generated from field: string content_type = 4;
|
|
78
80
|
*/
|
|
79
81
|
contentType: string;
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): PutObjectRequest;
|
|
87
|
-
static equals(a: PutObjectRequest | PlainMessage<PutObjectRequest> | undefined, b: PutObjectRequest | PlainMessage<PutObjectRequest> | undefined): boolean;
|
|
88
|
-
}
|
|
82
|
+
};
|
|
83
|
+
/**
|
|
84
|
+
* Describes the message liquidmetal.v1alpha1.PutObjectRequest.
|
|
85
|
+
* Use `create(PutObjectRequestSchema)` to create a new message.
|
|
86
|
+
*/
|
|
87
|
+
export declare const PutObjectRequestSchema: GenMessage<PutObjectRequest>;
|
|
89
88
|
/**
|
|
90
89
|
* @generated from message liquidmetal.v1alpha1.PutObjectResponse
|
|
91
90
|
*/
|
|
92
|
-
export
|
|
91
|
+
export type PutObjectResponse = Message<"liquidmetal.v1alpha1.PutObjectResponse"> & {
|
|
93
92
|
/**
|
|
94
93
|
* @generated from field: bool success = 1;
|
|
95
94
|
*/
|
|
@@ -102,19 +101,16 @@ export declare class PutObjectResponse extends Message<PutObjectResponse> {
|
|
|
102
101
|
* @generated from field: string key = 3;
|
|
103
102
|
*/
|
|
104
103
|
key: string;
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): PutObjectResponse;
|
|
112
|
-
static equals(a: PutObjectResponse | PlainMessage<PutObjectResponse> | undefined, b: PutObjectResponse | PlainMessage<PutObjectResponse> | undefined): boolean;
|
|
113
|
-
}
|
|
104
|
+
};
|
|
105
|
+
/**
|
|
106
|
+
* Describes the message liquidmetal.v1alpha1.PutObjectResponse.
|
|
107
|
+
* Use `create(PutObjectResponseSchema)` to create a new message.
|
|
108
|
+
*/
|
|
109
|
+
export declare const PutObjectResponseSchema: GenMessage<PutObjectResponse>;
|
|
114
110
|
/**
|
|
115
111
|
* @generated from message liquidmetal.v1alpha1.GetObjectRequest
|
|
116
112
|
*/
|
|
117
|
-
export
|
|
113
|
+
export type GetObjectRequest = Message<"liquidmetal.v1alpha1.GetObjectRequest"> & {
|
|
118
114
|
/**
|
|
119
115
|
* @generated from field: string bucket = 1;
|
|
120
116
|
*/
|
|
@@ -123,19 +119,16 @@ export declare class GetObjectRequest extends Message<GetObjectRequest> {
|
|
|
123
119
|
* @generated from field: string key = 2;
|
|
124
120
|
*/
|
|
125
121
|
key: string;
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetObjectRequest;
|
|
133
|
-
static equals(a: GetObjectRequest | PlainMessage<GetObjectRequest> | undefined, b: GetObjectRequest | PlainMessage<GetObjectRequest> | undefined): boolean;
|
|
134
|
-
}
|
|
122
|
+
};
|
|
123
|
+
/**
|
|
124
|
+
* Describes the message liquidmetal.v1alpha1.GetObjectRequest.
|
|
125
|
+
* Use `create(GetObjectRequestSchema)` to create a new message.
|
|
126
|
+
*/
|
|
127
|
+
export declare const GetObjectRequestSchema: GenMessage<GetObjectRequest>;
|
|
135
128
|
/**
|
|
136
129
|
* @generated from message liquidmetal.v1alpha1.GetObjectResponse
|
|
137
130
|
*/
|
|
138
|
-
export
|
|
131
|
+
export type GetObjectResponse = Message<"liquidmetal.v1alpha1.GetObjectResponse"> & {
|
|
139
132
|
/**
|
|
140
133
|
* @generated from field: bytes content = 1;
|
|
141
134
|
*/
|
|
@@ -144,19 +137,16 @@ export declare class GetObjectResponse extends Message<GetObjectResponse> {
|
|
|
144
137
|
* @generated from field: string content_type = 2;
|
|
145
138
|
*/
|
|
146
139
|
contentType: string;
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetObjectResponse;
|
|
154
|
-
static equals(a: GetObjectResponse | PlainMessage<GetObjectResponse> | undefined, b: GetObjectResponse | PlainMessage<GetObjectResponse> | undefined): boolean;
|
|
155
|
-
}
|
|
140
|
+
};
|
|
141
|
+
/**
|
|
142
|
+
* Describes the message liquidmetal.v1alpha1.GetObjectResponse.
|
|
143
|
+
* Use `create(GetObjectResponseSchema)` to create a new message.
|
|
144
|
+
*/
|
|
145
|
+
export declare const GetObjectResponseSchema: GenMessage<GetObjectResponse>;
|
|
156
146
|
/**
|
|
157
147
|
* @generated from message liquidmetal.v1alpha1.DeleteObjectRequest
|
|
158
148
|
*/
|
|
159
|
-
export
|
|
149
|
+
export type DeleteObjectRequest = Message<"liquidmetal.v1alpha1.DeleteObjectRequest"> & {
|
|
160
150
|
/**
|
|
161
151
|
* @generated from field: string bucket = 1;
|
|
162
152
|
*/
|
|
@@ -165,49 +155,39 @@ export declare class DeleteObjectRequest extends Message<DeleteObjectRequest> {
|
|
|
165
155
|
* @generated from field: string key = 2;
|
|
166
156
|
*/
|
|
167
157
|
key: string;
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): DeleteObjectRequest;
|
|
175
|
-
static equals(a: DeleteObjectRequest | PlainMessage<DeleteObjectRequest> | undefined, b: DeleteObjectRequest | PlainMessage<DeleteObjectRequest> | undefined): boolean;
|
|
176
|
-
}
|
|
158
|
+
};
|
|
159
|
+
/**
|
|
160
|
+
* Describes the message liquidmetal.v1alpha1.DeleteObjectRequest.
|
|
161
|
+
* Use `create(DeleteObjectRequestSchema)` to create a new message.
|
|
162
|
+
*/
|
|
163
|
+
export declare const DeleteObjectRequestSchema: GenMessage<DeleteObjectRequest>;
|
|
177
164
|
/**
|
|
178
165
|
* @generated from message liquidmetal.v1alpha1.DeleteObjectResponse
|
|
179
166
|
*/
|
|
180
|
-
export
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): DeleteObjectResponse;
|
|
187
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): DeleteObjectResponse;
|
|
188
|
-
static equals(a: DeleteObjectResponse | PlainMessage<DeleteObjectResponse> | undefined, b: DeleteObjectResponse | PlainMessage<DeleteObjectResponse> | undefined): boolean;
|
|
189
|
-
}
|
|
167
|
+
export type DeleteObjectResponse = Message<"liquidmetal.v1alpha1.DeleteObjectResponse"> & {};
|
|
168
|
+
/**
|
|
169
|
+
* Describes the message liquidmetal.v1alpha1.DeleteObjectResponse.
|
|
170
|
+
* Use `create(DeleteObjectResponseSchema)` to create a new message.
|
|
171
|
+
*/
|
|
172
|
+
export declare const DeleteObjectResponseSchema: GenMessage<DeleteObjectResponse>;
|
|
190
173
|
/**
|
|
191
174
|
* @generated from message liquidmetal.v1alpha1.ListObjectsRequest
|
|
192
175
|
*/
|
|
193
|
-
export
|
|
176
|
+
export type ListObjectsRequest = Message<"liquidmetal.v1alpha1.ListObjectsRequest"> & {
|
|
194
177
|
/**
|
|
195
178
|
* @generated from field: string bucket = 1;
|
|
196
179
|
*/
|
|
197
180
|
bucket: string;
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ListObjectsRequest;
|
|
205
|
-
static equals(a: ListObjectsRequest | PlainMessage<ListObjectsRequest> | undefined, b: ListObjectsRequest | PlainMessage<ListObjectsRequest> | undefined): boolean;
|
|
206
|
-
}
|
|
181
|
+
};
|
|
182
|
+
/**
|
|
183
|
+
* Describes the message liquidmetal.v1alpha1.ListObjectsRequest.
|
|
184
|
+
* Use `create(ListObjectsRequestSchema)` to create a new message.
|
|
185
|
+
*/
|
|
186
|
+
export declare const ListObjectsRequestSchema: GenMessage<ListObjectsRequest>;
|
|
207
187
|
/**
|
|
208
188
|
* @generated from message liquidmetal.v1alpha1.ObjectInfo
|
|
209
189
|
*/
|
|
210
|
-
export
|
|
190
|
+
export type ObjectInfo = Message<"liquidmetal.v1alpha1.ObjectInfo"> & {
|
|
211
191
|
/**
|
|
212
192
|
* @generated from field: string key = 1;
|
|
213
193
|
*/
|
|
@@ -224,60 +204,104 @@ export declare class ObjectInfo extends Message<ObjectInfo> {
|
|
|
224
204
|
* @generated from field: google.protobuf.Timestamp last_modified = 4;
|
|
225
205
|
*/
|
|
226
206
|
lastModified?: Timestamp;
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ObjectInfo;
|
|
234
|
-
static equals(a: ObjectInfo | PlainMessage<ObjectInfo> | undefined, b: ObjectInfo | PlainMessage<ObjectInfo> | undefined): boolean;
|
|
235
|
-
}
|
|
207
|
+
};
|
|
208
|
+
/**
|
|
209
|
+
* Describes the message liquidmetal.v1alpha1.ObjectInfo.
|
|
210
|
+
* Use `create(ObjectInfoSchema)` to create a new message.
|
|
211
|
+
*/
|
|
212
|
+
export declare const ObjectInfoSchema: GenMessage<ObjectInfo>;
|
|
236
213
|
/**
|
|
237
214
|
* @generated from message liquidmetal.v1alpha1.ListObjectsResponse
|
|
238
215
|
*/
|
|
239
|
-
export
|
|
216
|
+
export type ListObjectsResponse = Message<"liquidmetal.v1alpha1.ListObjectsResponse"> & {
|
|
240
217
|
/**
|
|
241
218
|
* @generated from field: repeated liquidmetal.v1alpha1.ObjectInfo objects = 1;
|
|
242
219
|
*/
|
|
243
220
|
objects: ObjectInfo[];
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ListObjectsResponse;
|
|
251
|
-
static equals(a: ListObjectsResponse | PlainMessage<ListObjectsResponse> | undefined, b: ListObjectsResponse | PlainMessage<ListObjectsResponse> | undefined): boolean;
|
|
252
|
-
}
|
|
221
|
+
};
|
|
222
|
+
/**
|
|
223
|
+
* Describes the message liquidmetal.v1alpha1.ListObjectsResponse.
|
|
224
|
+
* Use `create(ListObjectsResponseSchema)` to create a new message.
|
|
225
|
+
*/
|
|
226
|
+
export declare const ListObjectsResponseSchema: GenMessage<ListObjectsResponse>;
|
|
253
227
|
/**
|
|
254
228
|
* @generated from message liquidmetal.v1alpha1.ListSmartBucketsRequest
|
|
255
229
|
*/
|
|
256
|
-
export
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ListSmartBucketsRequest;
|
|
263
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ListSmartBucketsRequest;
|
|
264
|
-
static equals(a: ListSmartBucketsRequest | PlainMessage<ListSmartBucketsRequest> | undefined, b: ListSmartBucketsRequest | PlainMessage<ListSmartBucketsRequest> | undefined): boolean;
|
|
265
|
-
}
|
|
230
|
+
export type ListSmartBucketsRequest = Message<"liquidmetal.v1alpha1.ListSmartBucketsRequest"> & {};
|
|
231
|
+
/**
|
|
232
|
+
* Describes the message liquidmetal.v1alpha1.ListSmartBucketsRequest.
|
|
233
|
+
* Use `create(ListSmartBucketsRequestSchema)` to create a new message.
|
|
234
|
+
*/
|
|
235
|
+
export declare const ListSmartBucketsRequestSchema: GenMessage<ListSmartBucketsRequest>;
|
|
266
236
|
/**
|
|
267
237
|
* @generated from message liquidmetal.v1alpha1.ListSmartBucketsResponse
|
|
268
238
|
*/
|
|
269
|
-
export
|
|
239
|
+
export type ListSmartBucketsResponse = Message<"liquidmetal.v1alpha1.ListSmartBucketsResponse"> & {
|
|
270
240
|
/**
|
|
271
241
|
* @generated from field: repeated liquidmetal.v1alpha1.SmartBucket buckets = 1;
|
|
272
242
|
*/
|
|
273
243
|
buckets: SmartBucket[];
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
244
|
+
};
|
|
245
|
+
/**
|
|
246
|
+
* Describes the message liquidmetal.v1alpha1.ListSmartBucketsResponse.
|
|
247
|
+
* Use `create(ListSmartBucketsResponseSchema)` to create a new message.
|
|
248
|
+
*/
|
|
249
|
+
export declare const ListSmartBucketsResponseSchema: GenMessage<ListSmartBucketsResponse>;
|
|
250
|
+
/**
|
|
251
|
+
* ObjectService handles operations on objects stored in buckets
|
|
252
|
+
*
|
|
253
|
+
* @generated from service liquidmetal.v1alpha1.ObjectService
|
|
254
|
+
*/
|
|
255
|
+
export declare const ObjectService: GenService<{
|
|
256
|
+
/**
|
|
257
|
+
* PutObject uploads an object to a bucket
|
|
258
|
+
*
|
|
259
|
+
* @generated from rpc liquidmetal.v1alpha1.ObjectService.PutObject
|
|
260
|
+
*/
|
|
261
|
+
putObject: {
|
|
262
|
+
methodKind: "unary";
|
|
263
|
+
input: typeof PutObjectRequestSchema;
|
|
264
|
+
output: typeof PutObjectResponseSchema;
|
|
265
|
+
};
|
|
266
|
+
/**
|
|
267
|
+
* GetObject retrieves an object from a bucket
|
|
268
|
+
*
|
|
269
|
+
* @generated from rpc liquidmetal.v1alpha1.ObjectService.GetObject
|
|
270
|
+
*/
|
|
271
|
+
getObject: {
|
|
272
|
+
methodKind: "unary";
|
|
273
|
+
input: typeof GetObjectRequestSchema;
|
|
274
|
+
output: typeof GetObjectResponseSchema;
|
|
275
|
+
};
|
|
276
|
+
/**
|
|
277
|
+
* DeleteObject removes an object from a bucket
|
|
278
|
+
*
|
|
279
|
+
* @generated from rpc liquidmetal.v1alpha1.ObjectService.DeleteObject
|
|
280
|
+
*/
|
|
281
|
+
deleteObject: {
|
|
282
|
+
methodKind: "unary";
|
|
283
|
+
input: typeof DeleteObjectRequestSchema;
|
|
284
|
+
output: typeof DeleteObjectResponseSchema;
|
|
285
|
+
};
|
|
286
|
+
/**
|
|
287
|
+
* ListObjects lists all objects in a bucket
|
|
288
|
+
*
|
|
289
|
+
* @generated from rpc liquidmetal.v1alpha1.ObjectService.ListObjects
|
|
290
|
+
*/
|
|
291
|
+
listObjects: {
|
|
292
|
+
methodKind: "unary";
|
|
293
|
+
input: typeof ListObjectsRequestSchema;
|
|
294
|
+
output: typeof ListObjectsResponseSchema;
|
|
295
|
+
};
|
|
296
|
+
/**
|
|
297
|
+
* list all available smart buckets
|
|
298
|
+
*
|
|
299
|
+
* @generated from rpc liquidmetal.v1alpha1.ObjectService.ListSmartBuckets
|
|
300
|
+
*/
|
|
301
|
+
listSmartBuckets: {
|
|
302
|
+
methodKind: "unary";
|
|
303
|
+
input: typeof ListSmartBucketsRequestSchema;
|
|
304
|
+
output: typeof ListSmartBucketsResponseSchema;
|
|
305
|
+
};
|
|
306
|
+
}>;
|
|
283
307
|
//# sourceMappingURL=resource_interface_pb.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"resource_interface_pb.d.ts","sourceRoot":"","sources":["../../../src/liquidmetal/v1alpha1/resource_interface_pb.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"resource_interface_pb.d.ts","sourceRoot":"","sources":["../../../src/liquidmetal/v1alpha1/resource_interface_pb.ts"],"names":[],"mappings":"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"}
|