@liquidmetal-ai/drizzle 0.2.1 → 0.2.2

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.
@@ -0,0 +1,6 @@
1
+ ---
2
+ '@liquidmetal-ai/raindrop': patch
3
+ '@liquidmetal-ai/drizzle': patch
4
+ ---
5
+
6
+ Add missing connect/proto dependencies.
@@ -0,0 +1,68 @@
1
+ import { DeleteObjectRequest, DeleteObjectResponse, GetObjectRequest, GetObjectResponse, ListObjectsRequest, ListObjectsResponse, ListSmartBucketsRequest, ListSmartBucketsResponse, PutObjectRequest, PutObjectResponse } from "./resource_interface_pb.js";
2
+ import { MethodKind } from "@bufbuild/protobuf";
3
+ /**
4
+ * ObjectService handles operations on objects stored in buckets
5
+ *
6
+ * @generated from service liquidmetal.v1alpha1.ObjectService
7
+ */
8
+ export declare const ObjectService: {
9
+ readonly typeName: "liquidmetal.v1alpha1.ObjectService";
10
+ readonly methods: {
11
+ /**
12
+ * PutObject uploads an object to a bucket
13
+ *
14
+ * @generated from rpc liquidmetal.v1alpha1.ObjectService.PutObject
15
+ */
16
+ readonly putObject: {
17
+ readonly name: "PutObject";
18
+ readonly I: typeof PutObjectRequest;
19
+ readonly O: typeof PutObjectResponse;
20
+ readonly kind: MethodKind.Unary;
21
+ };
22
+ /**
23
+ * GetObject retrieves an object from a bucket
24
+ *
25
+ * @generated from rpc liquidmetal.v1alpha1.ObjectService.GetObject
26
+ */
27
+ readonly getObject: {
28
+ readonly name: "GetObject";
29
+ readonly I: typeof GetObjectRequest;
30
+ readonly O: typeof GetObjectResponse;
31
+ readonly kind: MethodKind.Unary;
32
+ };
33
+ /**
34
+ * DeleteObject removes an object from a bucket
35
+ *
36
+ * @generated from rpc liquidmetal.v1alpha1.ObjectService.DeleteObject
37
+ */
38
+ readonly deleteObject: {
39
+ readonly name: "DeleteObject";
40
+ readonly I: typeof DeleteObjectRequest;
41
+ readonly O: typeof DeleteObjectResponse;
42
+ readonly kind: MethodKind.Unary;
43
+ };
44
+ /**
45
+ * ListObjects lists all objects in a bucket
46
+ *
47
+ * @generated from rpc liquidmetal.v1alpha1.ObjectService.ListObjects
48
+ */
49
+ readonly listObjects: {
50
+ readonly name: "ListObjects";
51
+ readonly I: typeof ListObjectsRequest;
52
+ readonly O: typeof ListObjectsResponse;
53
+ readonly kind: MethodKind.Unary;
54
+ };
55
+ /**
56
+ * list all available smart buckets
57
+ *
58
+ * @generated from rpc liquidmetal.v1alpha1.ObjectService.ListSmartBuckets
59
+ */
60
+ readonly listSmartBuckets: {
61
+ readonly name: "ListSmartBuckets";
62
+ readonly I: typeof ListSmartBucketsRequest;
63
+ readonly O: typeof ListSmartBucketsResponse;
64
+ readonly kind: MethodKind.Unary;
65
+ };
66
+ };
67
+ };
68
+ //# sourceMappingURL=resource_interface_connect.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"resource_interface_connect.d.ts","sourceRoot":"","sources":["../../../src/liquidmetal/v1alpha1/resource_interface_connect.ts"],"names":[],"mappings":"AAQA,OAAO,EAAE,mBAAmB,EAAE,oBAAoB,EAAE,gBAAgB,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,mBAAmB,EAAE,uBAAuB,EAAE,wBAAwB,EAAE,gBAAgB,EAAE,iBAAiB,EAAE,MAAM,4BAA4B,CAAC;AAC7P,OAAO,EAAE,UAAU,EAAE,MAAM,oBAAoB,CAAC;AAEhD;;;;GAIG;AACH,eAAO,MAAM,aAAa;;;QAGtB;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;;CAQG,CAAC"}
@@ -0,0 +1,73 @@
1
+ // @generated by protoc-gen-connect-es v1.4.0 with parameter "target=ts,import_extension=.js"
2
+ // @generated from file liquidmetal/v1alpha1/resource_interface.proto (package liquidmetal.v1alpha1, syntax proto3)
3
+ /* eslint-disable */
4
+ // @ts-nocheck
5
+ //
6
+ //This is the interface for the LiquidMetal resource service. It provides RPC methods for directly interacting with resources such as objects, buckets. In the future this will include other resourcs such as SQL, vectorrize etc.
7
+ import { DeleteObjectRequest, DeleteObjectResponse, GetObjectRequest, GetObjectResponse, ListObjectsRequest, ListObjectsResponse, ListSmartBucketsRequest, ListSmartBucketsResponse, PutObjectRequest, PutObjectResponse } from "./resource_interface_pb.js";
8
+ import { MethodKind } from "@bufbuild/protobuf";
9
+ /**
10
+ * ObjectService handles operations on objects stored in buckets
11
+ *
12
+ * @generated from service liquidmetal.v1alpha1.ObjectService
13
+ */
14
+ export const ObjectService = {
15
+ typeName: "liquidmetal.v1alpha1.ObjectService",
16
+ methods: {
17
+ /**
18
+ * PutObject uploads an object to a bucket
19
+ *
20
+ * @generated from rpc liquidmetal.v1alpha1.ObjectService.PutObject
21
+ */
22
+ putObject: {
23
+ name: "PutObject",
24
+ I: PutObjectRequest,
25
+ O: PutObjectResponse,
26
+ kind: MethodKind.Unary,
27
+ },
28
+ /**
29
+ * GetObject retrieves an object from a bucket
30
+ *
31
+ * @generated from rpc liquidmetal.v1alpha1.ObjectService.GetObject
32
+ */
33
+ getObject: {
34
+ name: "GetObject",
35
+ I: GetObjectRequest,
36
+ O: GetObjectResponse,
37
+ kind: MethodKind.Unary,
38
+ },
39
+ /**
40
+ * DeleteObject removes an object from a bucket
41
+ *
42
+ * @generated from rpc liquidmetal.v1alpha1.ObjectService.DeleteObject
43
+ */
44
+ deleteObject: {
45
+ name: "DeleteObject",
46
+ I: DeleteObjectRequest,
47
+ O: DeleteObjectResponse,
48
+ kind: MethodKind.Unary,
49
+ },
50
+ /**
51
+ * ListObjects lists all objects in a bucket
52
+ *
53
+ * @generated from rpc liquidmetal.v1alpha1.ObjectService.ListObjects
54
+ */
55
+ listObjects: {
56
+ name: "ListObjects",
57
+ I: ListObjectsRequest,
58
+ O: ListObjectsResponse,
59
+ kind: MethodKind.Unary,
60
+ },
61
+ /**
62
+ * list all available smart buckets
63
+ *
64
+ * @generated from rpc liquidmetal.v1alpha1.ObjectService.ListSmartBuckets
65
+ */
66
+ listSmartBuckets: {
67
+ name: "ListSmartBuckets",
68
+ I: ListSmartBucketsRequest,
69
+ O: ListSmartBucketsResponse,
70
+ kind: MethodKind.Unary,
71
+ },
72
+ }
73
+ };
@@ -0,0 +1,283 @@
1
+ import type { BinaryReadOptions, FieldList, JsonReadOptions, JsonValue, PartialMessage, PlainMessage } from "@bufbuild/protobuf";
2
+ import { Message, proto3, Timestamp } from "@bufbuild/protobuf";
3
+ /**
4
+ * Smartbucket details as stored in the catalog SQL database
5
+ *
6
+ * @generated from message liquidmetal.v1alpha1.SmartBucket
7
+ */
8
+ export declare class SmartBucket extends Message<SmartBucket> {
9
+ /**
10
+ * id of the record in the catalog SQL database
11
+ *
12
+ * @generated from field: int32 id = 1;
13
+ */
14
+ id: number;
15
+ /**
16
+ * internal bucket ID i.e the resource ID of the smart bucket
17
+ *
18
+ * @generated from field: string bucket_id = 2;
19
+ */
20
+ bucketId: string;
21
+ /**
22
+ * user friendly name for the smart bucket
23
+ *
24
+ * @generated from field: string bucket_name = 3;
25
+ */
26
+ bucketName: string;
27
+ /**
28
+ * the URL that can be called to retrieve an objects metadata from a smart bucket
29
+ *
30
+ * @generated from field: string url = 4;
31
+ */
32
+ url: string;
33
+ /**
34
+ * the URL that can be called to delete an objects metadata from a smart bucket
35
+ *
36
+ * @generated from field: string delete_url = 5;
37
+ */
38
+ deleteUrl: string;
39
+ /**
40
+ * the date and time the smart bucket was registered in the catalog
41
+ *
42
+ * @generated from field: google.protobuf.Timestamp created_at = 6;
43
+ */
44
+ createdAt?: Timestamp;
45
+ /**
46
+ * the date and time the smart bucket was last updated
47
+ *
48
+ * @generated from field: google.protobuf.Timestamp updated_at = 7;
49
+ */
50
+ updatedAt?: Timestamp;
51
+ constructor(data?: PartialMessage<SmartBucket>);
52
+ static readonly runtime: typeof proto3;
53
+ static readonly typeName = "liquidmetal.v1alpha1.SmartBucket";
54
+ static readonly fields: FieldList;
55
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SmartBucket;
56
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SmartBucket;
57
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SmartBucket;
58
+ static equals(a: SmartBucket | PlainMessage<SmartBucket> | undefined, b: SmartBucket | PlainMessage<SmartBucket> | undefined): boolean;
59
+ }
60
+ /**
61
+ * @generated from message liquidmetal.v1alpha1.PutObjectRequest
62
+ */
63
+ export declare class PutObjectRequest extends Message<PutObjectRequest> {
64
+ /**
65
+ * @generated from field: string bucket = 1;
66
+ */
67
+ bucket: string;
68
+ /**
69
+ * @generated from field: string key = 2;
70
+ */
71
+ key: string;
72
+ /**
73
+ * @generated from field: bytes content = 3;
74
+ */
75
+ content: Uint8Array;
76
+ /**
77
+ * @generated from field: string content_type = 4;
78
+ */
79
+ contentType: string;
80
+ constructor(data?: PartialMessage<PutObjectRequest>);
81
+ static readonly runtime: typeof proto3;
82
+ static readonly typeName = "liquidmetal.v1alpha1.PutObjectRequest";
83
+ static readonly fields: FieldList;
84
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): PutObjectRequest;
85
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): PutObjectRequest;
86
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): PutObjectRequest;
87
+ static equals(a: PutObjectRequest | PlainMessage<PutObjectRequest> | undefined, b: PutObjectRequest | PlainMessage<PutObjectRequest> | undefined): boolean;
88
+ }
89
+ /**
90
+ * @generated from message liquidmetal.v1alpha1.PutObjectResponse
91
+ */
92
+ export declare class PutObjectResponse extends Message<PutObjectResponse> {
93
+ /**
94
+ * @generated from field: bool success = 1;
95
+ */
96
+ success: boolean;
97
+ /**
98
+ * @generated from field: string bucket = 2;
99
+ */
100
+ bucket: string;
101
+ /**
102
+ * @generated from field: string key = 3;
103
+ */
104
+ key: string;
105
+ constructor(data?: PartialMessage<PutObjectResponse>);
106
+ static readonly runtime: typeof proto3;
107
+ static readonly typeName = "liquidmetal.v1alpha1.PutObjectResponse";
108
+ static readonly fields: FieldList;
109
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): PutObjectResponse;
110
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): PutObjectResponse;
111
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): PutObjectResponse;
112
+ static equals(a: PutObjectResponse | PlainMessage<PutObjectResponse> | undefined, b: PutObjectResponse | PlainMessage<PutObjectResponse> | undefined): boolean;
113
+ }
114
+ /**
115
+ * @generated from message liquidmetal.v1alpha1.GetObjectRequest
116
+ */
117
+ export declare class GetObjectRequest extends Message<GetObjectRequest> {
118
+ /**
119
+ * @generated from field: string bucket = 1;
120
+ */
121
+ bucket: string;
122
+ /**
123
+ * @generated from field: string key = 2;
124
+ */
125
+ key: string;
126
+ constructor(data?: PartialMessage<GetObjectRequest>);
127
+ static readonly runtime: typeof proto3;
128
+ static readonly typeName = "liquidmetal.v1alpha1.GetObjectRequest";
129
+ static readonly fields: FieldList;
130
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetObjectRequest;
131
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetObjectRequest;
132
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetObjectRequest;
133
+ static equals(a: GetObjectRequest | PlainMessage<GetObjectRequest> | undefined, b: GetObjectRequest | PlainMessage<GetObjectRequest> | undefined): boolean;
134
+ }
135
+ /**
136
+ * @generated from message liquidmetal.v1alpha1.GetObjectResponse
137
+ */
138
+ export declare class GetObjectResponse extends Message<GetObjectResponse> {
139
+ /**
140
+ * @generated from field: bytes content = 1;
141
+ */
142
+ content: Uint8Array;
143
+ /**
144
+ * @generated from field: string content_type = 2;
145
+ */
146
+ contentType: string;
147
+ constructor(data?: PartialMessage<GetObjectResponse>);
148
+ static readonly runtime: typeof proto3;
149
+ static readonly typeName = "liquidmetal.v1alpha1.GetObjectResponse";
150
+ static readonly fields: FieldList;
151
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetObjectResponse;
152
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetObjectResponse;
153
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetObjectResponse;
154
+ static equals(a: GetObjectResponse | PlainMessage<GetObjectResponse> | undefined, b: GetObjectResponse | PlainMessage<GetObjectResponse> | undefined): boolean;
155
+ }
156
+ /**
157
+ * @generated from message liquidmetal.v1alpha1.DeleteObjectRequest
158
+ */
159
+ export declare class DeleteObjectRequest extends Message<DeleteObjectRequest> {
160
+ /**
161
+ * @generated from field: string bucket = 1;
162
+ */
163
+ bucket: string;
164
+ /**
165
+ * @generated from field: string key = 2;
166
+ */
167
+ key: string;
168
+ constructor(data?: PartialMessage<DeleteObjectRequest>);
169
+ static readonly runtime: typeof proto3;
170
+ static readonly typeName = "liquidmetal.v1alpha1.DeleteObjectRequest";
171
+ static readonly fields: FieldList;
172
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): DeleteObjectRequest;
173
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): DeleteObjectRequest;
174
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): DeleteObjectRequest;
175
+ static equals(a: DeleteObjectRequest | PlainMessage<DeleteObjectRequest> | undefined, b: DeleteObjectRequest | PlainMessage<DeleteObjectRequest> | undefined): boolean;
176
+ }
177
+ /**
178
+ * @generated from message liquidmetal.v1alpha1.DeleteObjectResponse
179
+ */
180
+ export declare class DeleteObjectResponse extends Message<DeleteObjectResponse> {
181
+ constructor(data?: PartialMessage<DeleteObjectResponse>);
182
+ static readonly runtime: typeof proto3;
183
+ static readonly typeName = "liquidmetal.v1alpha1.DeleteObjectResponse";
184
+ static readonly fields: FieldList;
185
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): DeleteObjectResponse;
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
+ }
190
+ /**
191
+ * @generated from message liquidmetal.v1alpha1.ListObjectsRequest
192
+ */
193
+ export declare class ListObjectsRequest extends Message<ListObjectsRequest> {
194
+ /**
195
+ * @generated from field: string bucket = 1;
196
+ */
197
+ bucket: string;
198
+ constructor(data?: PartialMessage<ListObjectsRequest>);
199
+ static readonly runtime: typeof proto3;
200
+ static readonly typeName = "liquidmetal.v1alpha1.ListObjectsRequest";
201
+ static readonly fields: FieldList;
202
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ListObjectsRequest;
203
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ListObjectsRequest;
204
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ListObjectsRequest;
205
+ static equals(a: ListObjectsRequest | PlainMessage<ListObjectsRequest> | undefined, b: ListObjectsRequest | PlainMessage<ListObjectsRequest> | undefined): boolean;
206
+ }
207
+ /**
208
+ * @generated from message liquidmetal.v1alpha1.ObjectInfo
209
+ */
210
+ export declare class ObjectInfo extends Message<ObjectInfo> {
211
+ /**
212
+ * @generated from field: string key = 1;
213
+ */
214
+ key: string;
215
+ /**
216
+ * @generated from field: int64 size = 2;
217
+ */
218
+ size: bigint;
219
+ /**
220
+ * @generated from field: string content_type = 3;
221
+ */
222
+ contentType: string;
223
+ /**
224
+ * @generated from field: google.protobuf.Timestamp last_modified = 4;
225
+ */
226
+ lastModified?: Timestamp;
227
+ constructor(data?: PartialMessage<ObjectInfo>);
228
+ static readonly runtime: typeof proto3;
229
+ static readonly typeName = "liquidmetal.v1alpha1.ObjectInfo";
230
+ static readonly fields: FieldList;
231
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ObjectInfo;
232
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ObjectInfo;
233
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ObjectInfo;
234
+ static equals(a: ObjectInfo | PlainMessage<ObjectInfo> | undefined, b: ObjectInfo | PlainMessage<ObjectInfo> | undefined): boolean;
235
+ }
236
+ /**
237
+ * @generated from message liquidmetal.v1alpha1.ListObjectsResponse
238
+ */
239
+ export declare class ListObjectsResponse extends Message<ListObjectsResponse> {
240
+ /**
241
+ * @generated from field: repeated liquidmetal.v1alpha1.ObjectInfo objects = 1;
242
+ */
243
+ objects: ObjectInfo[];
244
+ constructor(data?: PartialMessage<ListObjectsResponse>);
245
+ static readonly runtime: typeof proto3;
246
+ static readonly typeName = "liquidmetal.v1alpha1.ListObjectsResponse";
247
+ static readonly fields: FieldList;
248
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ListObjectsResponse;
249
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ListObjectsResponse;
250
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ListObjectsResponse;
251
+ static equals(a: ListObjectsResponse | PlainMessage<ListObjectsResponse> | undefined, b: ListObjectsResponse | PlainMessage<ListObjectsResponse> | undefined): boolean;
252
+ }
253
+ /**
254
+ * @generated from message liquidmetal.v1alpha1.ListSmartBucketsRequest
255
+ */
256
+ export declare class ListSmartBucketsRequest extends Message<ListSmartBucketsRequest> {
257
+ constructor(data?: PartialMessage<ListSmartBucketsRequest>);
258
+ static readonly runtime: typeof proto3;
259
+ static readonly typeName = "liquidmetal.v1alpha1.ListSmartBucketsRequest";
260
+ static readonly fields: FieldList;
261
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ListSmartBucketsRequest;
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
+ }
266
+ /**
267
+ * @generated from message liquidmetal.v1alpha1.ListSmartBucketsResponse
268
+ */
269
+ export declare class ListSmartBucketsResponse extends Message<ListSmartBucketsResponse> {
270
+ /**
271
+ * @generated from field: repeated liquidmetal.v1alpha1.SmartBucket buckets = 1;
272
+ */
273
+ buckets: SmartBucket[];
274
+ constructor(data?: PartialMessage<ListSmartBucketsResponse>);
275
+ static readonly runtime: typeof proto3;
276
+ static readonly typeName = "liquidmetal.v1alpha1.ListSmartBucketsResponse";
277
+ static readonly fields: FieldList;
278
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ListSmartBucketsResponse;
279
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ListSmartBucketsResponse;
280
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ListSmartBucketsResponse;
281
+ static equals(a: ListSmartBucketsResponse | PlainMessage<ListSmartBucketsResponse> | undefined, b: ListSmartBucketsResponse | PlainMessage<ListSmartBucketsResponse> | undefined): boolean;
282
+ }
283
+ //# sourceMappingURL=resource_interface_pb.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"resource_interface_pb.d.ts","sourceRoot":"","sources":["../../../src/liquidmetal/v1alpha1/resource_interface_pb.ts"],"names":[],"mappings":"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"}