@liquidmetal-ai/drizzle 0.2.3 → 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.
Files changed (52) hide show
  1. package/.turbo/turbo-test.log +208 -1
  2. package/dist/codestore.js +1 -1
  3. package/dist/liquidmetal/v1alpha1/catalog_pb.d.ts +518 -479
  4. package/dist/liquidmetal/v1alpha1/catalog_pb.d.ts.map +1 -1
  5. package/dist/liquidmetal/v1alpha1/catalog_pb.js +210 -1726
  6. package/dist/liquidmetal/v1alpha1/rainbow_auth_pb.d.ts +110 -92
  7. package/dist/liquidmetal/v1alpha1/rainbow_auth_pb.d.ts.map +1 -1
  8. package/dist/liquidmetal/v1alpha1/rainbow_auth_pb.js +38 -361
  9. package/dist/liquidmetal/v1alpha1/raindrop_pb.d.ts +14 -13
  10. package/dist/liquidmetal/v1alpha1/raindrop_pb.d.ts.map +1 -1
  11. package/dist/liquidmetal/v1alpha1/raindrop_pb.js +10 -48
  12. package/dist/liquidmetal/v1alpha1/resource_interface_pb.d.ts +146 -122
  13. package/dist/liquidmetal/v1alpha1/resource_interface_pb.d.ts.map +1 -1
  14. package/dist/liquidmetal/v1alpha1/resource_interface_pb.js +49 -428
  15. package/dist/liquidmetal/v1alpha1/search_agent_pb.d.ts +262 -142
  16. package/dist/liquidmetal/v1alpha1/search_agent_pb.d.ts.map +1 -1
  17. package/dist/liquidmetal/v1alpha1/search_agent_pb.js +68 -684
  18. package/eslint.config.mjs +3 -1
  19. package/package.json +2 -1
  20. package/src/codestore.ts +1 -1
  21. package/src/liquidmetal/v1alpha1/catalog_pb.ts +710 -1468
  22. package/src/liquidmetal/v1alpha1/rainbow_auth_pb.ts +142 -284
  23. package/src/liquidmetal/v1alpha1/raindrop_pb.ts +21 -35
  24. package/src/liquidmetal/v1alpha1/resource_interface_pb.ts +192 -378
  25. package/src/liquidmetal/v1alpha1/search_agent_pb.ts +310 -450
  26. package/tsconfig.json +11 -3
  27. package/tsconfig.tsbuildinfo +1 -1
  28. package/.turbo/turbo-lint.log +0 -6
  29. package/dist/liquidmetal/v1alpha1/catalog_connect.d.ts +0 -168
  30. package/dist/liquidmetal/v1alpha1/catalog_connect.d.ts.map +0 -1
  31. package/dist/liquidmetal/v1alpha1/catalog_connect.js +0 -171
  32. package/dist/liquidmetal/v1alpha1/rainbow_auth_connect.d.ts +0 -49
  33. package/dist/liquidmetal/v1alpha1/rainbow_auth_connect.d.ts.map +0 -1
  34. package/dist/liquidmetal/v1alpha1/rainbow_auth_connect.js +0 -52
  35. package/dist/liquidmetal/v1alpha1/rainbow_public_connect.d.ts +0 -26
  36. package/dist/liquidmetal/v1alpha1/rainbow_public_connect.d.ts.map +0 -1
  37. package/dist/liquidmetal/v1alpha1/rainbow_public_connect.js +0 -29
  38. package/dist/liquidmetal/v1alpha1/rainbow_public_pb.d.ts +0 -202
  39. package/dist/liquidmetal/v1alpha1/rainbow_public_pb.d.ts.map +0 -1
  40. package/dist/liquidmetal/v1alpha1/rainbow_public_pb.js +0 -298
  41. package/dist/liquidmetal/v1alpha1/resource_interface_connect.d.ts +0 -68
  42. package/dist/liquidmetal/v1alpha1/resource_interface_connect.d.ts.map +0 -1
  43. package/dist/liquidmetal/v1alpha1/resource_interface_connect.js +0 -73
  44. package/dist/liquidmetal/v1alpha1/search_agent_connect.d.ts +0 -170
  45. package/dist/liquidmetal/v1alpha1/search_agent_connect.d.ts.map +0 -1
  46. package/dist/liquidmetal/v1alpha1/search_agent_connect.js +0 -173
  47. package/src/liquidmetal/v1alpha1/catalog_connect.ts +0 -174
  48. package/src/liquidmetal/v1alpha1/rainbow_auth_connect.ts +0 -55
  49. package/src/liquidmetal/v1alpha1/rainbow_public_connect.ts +0 -32
  50. package/src/liquidmetal/v1alpha1/rainbow_public_pb.ts +0 -366
  51. package/src/liquidmetal/v1alpha1/resource_interface_connect.ts +0 -77
  52. package/src/liquidmetal/v1alpha1/search_agent_connect.ts +0 -176
@@ -1,28 +1,30 @@
1
- import type { BinaryReadOptions, FieldList, JsonReadOptions, JsonValue, PartialMessage, PlainMessage } from "@bufbuild/protobuf";
2
- import { Duration, Message, proto3, Timestamp } from "@bufbuild/protobuf";
1
+ import type { GenFile, GenMessage, GenService } from "@bufbuild/protobuf/codegenv1";
2
+ import type { Duration, Timestamp } from "@bufbuild/protobuf/wkt";
3
+ import type { Message } from "@bufbuild/protobuf";
4
+ /**
5
+ * Describes the file liquidmetal/v1alpha1/rainbow_auth.proto.
6
+ */
7
+ export declare const file_liquidmetal_v1alpha1_rainbow_auth: GenFile;
3
8
  /**
4
9
  * @generated from message liquidmetal.v1alpha1.DeviceAuthorizationRequest
5
10
  */
6
- export declare class DeviceAuthorizationRequest extends Message<DeviceAuthorizationRequest> {
11
+ export type DeviceAuthorizationRequest = Message<"liquidmetal.v1alpha1.DeviceAuthorizationRequest"> & {
7
12
  /**
8
13
  * client_id should be the application name and version e.g. raindrop@v1.0.0
9
14
  *
10
15
  * @generated from field: string client_id = 1;
11
16
  */
12
17
  clientId: string;
13
- constructor(data?: PartialMessage<DeviceAuthorizationRequest>);
14
- static readonly runtime: typeof proto3;
15
- static readonly typeName = "liquidmetal.v1alpha1.DeviceAuthorizationRequest";
16
- static readonly fields: FieldList;
17
- static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): DeviceAuthorizationRequest;
18
- static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): DeviceAuthorizationRequest;
19
- static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): DeviceAuthorizationRequest;
20
- static equals(a: DeviceAuthorizationRequest | PlainMessage<DeviceAuthorizationRequest> | undefined, b: DeviceAuthorizationRequest | PlainMessage<DeviceAuthorizationRequest> | undefined): boolean;
21
- }
18
+ };
19
+ /**
20
+ * Describes the message liquidmetal.v1alpha1.DeviceAuthorizationRequest.
21
+ * Use `create(DeviceAuthorizationRequestSchema)` to create a new message.
22
+ */
23
+ export declare const DeviceAuthorizationRequestSchema: GenMessage<DeviceAuthorizationRequest>;
22
24
  /**
23
25
  * @generated from message liquidmetal.v1alpha1.DeviceAuthorizationResponse
24
26
  */
25
- export declare class DeviceAuthorizationResponse extends Message<DeviceAuthorizationResponse> {
27
+ export type DeviceAuthorizationResponse = Message<"liquidmetal.v1alpha1.DeviceAuthorizationResponse"> & {
26
28
  /**
27
29
  * device_code is a name from RFC8628 that will be used by the invoker of
28
30
  * DeviceAuthorization to continuously poll to see if the authorization has
@@ -58,36 +60,30 @@ export declare class DeviceAuthorizationResponse extends Message<DeviceAuthoriza
58
60
  * @generated from field: google.protobuf.Duration interval = 4;
59
61
  */
60
62
  interval?: Duration;
61
- constructor(data?: PartialMessage<DeviceAuthorizationResponse>);
62
- static readonly runtime: typeof proto3;
63
- static readonly typeName = "liquidmetal.v1alpha1.DeviceAuthorizationResponse";
64
- static readonly fields: FieldList;
65
- static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): DeviceAuthorizationResponse;
66
- static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): DeviceAuthorizationResponse;
67
- static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): DeviceAuthorizationResponse;
68
- static equals(a: DeviceAuthorizationResponse | PlainMessage<DeviceAuthorizationResponse> | undefined, b: DeviceAuthorizationResponse | PlainMessage<DeviceAuthorizationResponse> | undefined): boolean;
69
- }
63
+ };
64
+ /**
65
+ * Describes the message liquidmetal.v1alpha1.DeviceAuthorizationResponse.
66
+ * Use `create(DeviceAuthorizationResponseSchema)` to create a new message.
67
+ */
68
+ export declare const DeviceAuthorizationResponseSchema: GenMessage<DeviceAuthorizationResponse>;
70
69
  /**
71
70
  * @generated from message liquidmetal.v1alpha1.DeviceAccessTokenRequest
72
71
  */
73
- export declare class DeviceAccessTokenRequest extends Message<DeviceAccessTokenRequest> {
72
+ export type DeviceAccessTokenRequest = Message<"liquidmetal.v1alpha1.DeviceAccessTokenRequest"> & {
74
73
  /**
75
74
  * @generated from field: string device_code = 1;
76
75
  */
77
76
  deviceCode: string;
78
- constructor(data?: PartialMessage<DeviceAccessTokenRequest>);
79
- static readonly runtime: typeof proto3;
80
- static readonly typeName = "liquidmetal.v1alpha1.DeviceAccessTokenRequest";
81
- static readonly fields: FieldList;
82
- static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): DeviceAccessTokenRequest;
83
- static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): DeviceAccessTokenRequest;
84
- static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): DeviceAccessTokenRequest;
85
- static equals(a: DeviceAccessTokenRequest | PlainMessage<DeviceAccessTokenRequest> | undefined, b: DeviceAccessTokenRequest | PlainMessage<DeviceAccessTokenRequest> | undefined): boolean;
86
- }
77
+ };
78
+ /**
79
+ * Describes the message liquidmetal.v1alpha1.DeviceAccessTokenRequest.
80
+ * Use `create(DeviceAccessTokenRequestSchema)` to create a new message.
81
+ */
82
+ export declare const DeviceAccessTokenRequestSchema: GenMessage<DeviceAccessTokenRequest>;
87
83
  /**
88
84
  * @generated from message liquidmetal.v1alpha1.DeviceAccessTokenResponse
89
85
  */
90
- export declare class DeviceAccessTokenResponse extends Message<DeviceAccessTokenResponse> {
86
+ export type DeviceAccessTokenResponse = Message<"liquidmetal.v1alpha1.DeviceAccessTokenResponse"> & {
91
87
  /**
92
88
  * @generated from oneof liquidmetal.v1alpha1.DeviceAccessTokenResponse.response
93
89
  */
@@ -113,19 +109,16 @@ export declare class DeviceAccessTokenResponse extends Message<DeviceAccessToken
113
109
  case: undefined;
114
110
  value?: undefined;
115
111
  };
116
- constructor(data?: PartialMessage<DeviceAccessTokenResponse>);
117
- static readonly runtime: typeof proto3;
118
- static readonly typeName = "liquidmetal.v1alpha1.DeviceAccessTokenResponse";
119
- static readonly fields: FieldList;
120
- static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): DeviceAccessTokenResponse;
121
- static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): DeviceAccessTokenResponse;
122
- static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): DeviceAccessTokenResponse;
123
- static equals(a: DeviceAccessTokenResponse | PlainMessage<DeviceAccessTokenResponse> | undefined, b: DeviceAccessTokenResponse | PlainMessage<DeviceAccessTokenResponse> | undefined): boolean;
124
- }
112
+ };
113
+ /**
114
+ * Describes the message liquidmetal.v1alpha1.DeviceAccessTokenResponse.
115
+ * Use `create(DeviceAccessTokenResponseSchema)` to create a new message.
116
+ */
117
+ export declare const DeviceAccessTokenResponseSchema: GenMessage<DeviceAccessTokenResponse>;
125
118
  /**
126
119
  * @generated from message liquidmetal.v1alpha1.RefreshAccessTokenRequest
127
120
  */
128
- export declare class RefreshAccessTokenRequest extends Message<RefreshAccessTokenRequest> {
121
+ export type RefreshAccessTokenRequest = Message<"liquidmetal.v1alpha1.RefreshAccessTokenRequest"> & {
129
122
  /**
130
123
  * @generated from field: string refresh_token = 1;
131
124
  */
@@ -134,36 +127,30 @@ export declare class RefreshAccessTokenRequest extends Message<RefreshAccessToke
134
127
  * @generated from field: string organization_id = 2;
135
128
  */
136
129
  organizationId: string;
137
- constructor(data?: PartialMessage<RefreshAccessTokenRequest>);
138
- static readonly runtime: typeof proto3;
139
- static readonly typeName = "liquidmetal.v1alpha1.RefreshAccessTokenRequest";
140
- static readonly fields: FieldList;
141
- static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): RefreshAccessTokenRequest;
142
- static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): RefreshAccessTokenRequest;
143
- static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): RefreshAccessTokenRequest;
144
- static equals(a: RefreshAccessTokenRequest | PlainMessage<RefreshAccessTokenRequest> | undefined, b: RefreshAccessTokenRequest | PlainMessage<RefreshAccessTokenRequest> | undefined): boolean;
145
- }
130
+ };
131
+ /**
132
+ * Describes the message liquidmetal.v1alpha1.RefreshAccessTokenRequest.
133
+ * Use `create(RefreshAccessTokenRequestSchema)` to create a new message.
134
+ */
135
+ export declare const RefreshAccessTokenRequestSchema: GenMessage<RefreshAccessTokenRequest>;
146
136
  /**
147
137
  * @generated from message liquidmetal.v1alpha1.RefreshAccessTokenResponse
148
138
  */
149
- export declare class RefreshAccessTokenResponse extends Message<RefreshAccessTokenResponse> {
139
+ export type RefreshAccessTokenResponse = Message<"liquidmetal.v1alpha1.RefreshAccessTokenResponse"> & {
150
140
  /**
151
141
  * @generated from field: liquidmetal.v1alpha1.BearerToken bearer_token = 1;
152
142
  */
153
143
  bearerToken?: BearerToken;
154
- constructor(data?: PartialMessage<RefreshAccessTokenResponse>);
155
- static readonly runtime: typeof proto3;
156
- static readonly typeName = "liquidmetal.v1alpha1.RefreshAccessTokenResponse";
157
- static readonly fields: FieldList;
158
- static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): RefreshAccessTokenResponse;
159
- static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): RefreshAccessTokenResponse;
160
- static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): RefreshAccessTokenResponse;
161
- static equals(a: RefreshAccessTokenResponse | PlainMessage<RefreshAccessTokenResponse> | undefined, b: RefreshAccessTokenResponse | PlainMessage<RefreshAccessTokenResponse> | undefined): boolean;
162
- }
144
+ };
145
+ /**
146
+ * Describes the message liquidmetal.v1alpha1.RefreshAccessTokenResponse.
147
+ * Use `create(RefreshAccessTokenResponseSchema)` to create a new message.
148
+ */
149
+ export declare const RefreshAccessTokenResponseSchema: GenMessage<RefreshAccessTokenResponse>;
163
150
  /**
164
151
  * @generated from message liquidmetal.v1alpha1.AuthorizationPending
165
152
  */
166
- export declare class AuthorizationPending extends Message<AuthorizationPending> {
153
+ export type AuthorizationPending = Message<"liquidmetal.v1alpha1.AuthorizationPending"> & {
167
154
  /**
168
155
  * interval is the minimum amount of time that the client should wait between
169
156
  * polling requests
@@ -171,19 +158,16 @@ export declare class AuthorizationPending extends Message<AuthorizationPending>
171
158
  * @generated from field: google.protobuf.Duration interval = 1;
172
159
  */
173
160
  interval?: Duration;
174
- constructor(data?: PartialMessage<AuthorizationPending>);
175
- static readonly runtime: typeof proto3;
176
- static readonly typeName = "liquidmetal.v1alpha1.AuthorizationPending";
177
- static readonly fields: FieldList;
178
- static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): AuthorizationPending;
179
- static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): AuthorizationPending;
180
- static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): AuthorizationPending;
181
- static equals(a: AuthorizationPending | PlainMessage<AuthorizationPending> | undefined, b: AuthorizationPending | PlainMessage<AuthorizationPending> | undefined): boolean;
182
- }
161
+ };
162
+ /**
163
+ * Describes the message liquidmetal.v1alpha1.AuthorizationPending.
164
+ * Use `create(AuthorizationPendingSchema)` to create a new message.
165
+ */
166
+ export declare const AuthorizationPendingSchema: GenMessage<AuthorizationPending>;
183
167
  /**
184
168
  * @generated from message liquidmetal.v1alpha1.BearerToken
185
169
  */
186
- export declare class BearerToken extends Message<BearerToken> {
170
+ export type BearerToken = Message<"liquidmetal.v1alpha1.BearerToken"> & {
187
171
  /**
188
172
  * access_token is the string to be provided as a Bearer to APIs
189
173
  *
@@ -235,15 +219,12 @@ export declare class BearerToken extends Message<BearerToken> {
235
219
  * @generated from field: string catalog_service_base_url = 8;
236
220
  */
237
221
  catalogServiceBaseUrl: string;
238
- constructor(data?: PartialMessage<BearerToken>);
239
- static readonly runtime: typeof proto3;
240
- static readonly typeName = "liquidmetal.v1alpha1.BearerToken";
241
- static readonly fields: FieldList;
242
- static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): BearerToken;
243
- static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): BearerToken;
244
- static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): BearerToken;
245
- static equals(a: BearerToken | PlainMessage<BearerToken> | undefined, b: BearerToken | PlainMessage<BearerToken> | undefined): boolean;
246
- }
222
+ };
223
+ /**
224
+ * Describes the message liquidmetal.v1alpha1.BearerToken.
225
+ * Use `create(BearerTokenSchema)` to create a new message.
226
+ */
227
+ export declare const BearerTokenSchema: GenMessage<BearerToken>;
247
228
  /**
248
229
  * AuthenticationState is serialized and provided to WorkOS when redirecting the
249
230
  * user to complete authentication, this state is then copied forward by WorkOS
@@ -251,7 +232,7 @@ export declare class BearerToken extends Message<BearerToken> {
251
232
  *
252
233
  * @generated from message liquidmetal.v1alpha1.AuthenticationState
253
234
  */
254
- export declare class AuthenticationState extends Message<AuthenticationState> {
235
+ export type AuthenticationState = Message<"liquidmetal.v1alpha1.AuthenticationState"> & {
255
236
  /**
256
237
  * device_code is the RFC8628 code that the cli is polling for and the browser
257
238
  * needs to know about once authentication from WorkOS completes.
@@ -259,13 +240,50 @@ export declare class AuthenticationState extends Message<AuthenticationState> {
259
240
  * @generated from field: string device_code = 1;
260
241
  */
261
242
  deviceCode: string;
262
- constructor(data?: PartialMessage<AuthenticationState>);
263
- static readonly runtime: typeof proto3;
264
- static readonly typeName = "liquidmetal.v1alpha1.AuthenticationState";
265
- static readonly fields: FieldList;
266
- static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): AuthenticationState;
267
- static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): AuthenticationState;
268
- static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): AuthenticationState;
269
- static equals(a: AuthenticationState | PlainMessage<AuthenticationState> | undefined, b: AuthenticationState | PlainMessage<AuthenticationState> | undefined): boolean;
270
- }
243
+ };
244
+ /**
245
+ * Describes the message liquidmetal.v1alpha1.AuthenticationState.
246
+ * Use `create(AuthenticationStateSchema)` to create a new message.
247
+ */
248
+ export declare const AuthenticationStateSchema: GenMessage<AuthenticationState>;
249
+ /**
250
+ * @generated from service liquidmetal.v1alpha1.RainbowAuthService
251
+ */
252
+ export declare const RainbowAuthService: GenService<{
253
+ /**
254
+ * DeviceAuthorization is similar to the RFC8628 Device Authorization Request
255
+ * and Response.
256
+ *
257
+ * https://datatracker.ietf.org/doc/html/rfc8628#section-3.1
258
+ *
259
+ * @generated from rpc liquidmetal.v1alpha1.RainbowAuthService.DeviceAuthorization
260
+ */
261
+ deviceAuthorization: {
262
+ methodKind: "unary";
263
+ input: typeof DeviceAuthorizationRequestSchema;
264
+ output: typeof DeviceAuthorizationResponseSchema;
265
+ };
266
+ /**
267
+ * DeviceAccessToken is polled after a successful call to DeviceAuthorization
268
+ * awaiting the verification_uri_complete to have been followed allowing this
269
+ * RPC to return a BearerToken response.
270
+ *
271
+ * @generated from rpc liquidmetal.v1alpha1.RainbowAuthService.DeviceAccessToken
272
+ */
273
+ deviceAccessToken: {
274
+ methodKind: "unary";
275
+ input: typeof DeviceAccessTokenRequestSchema;
276
+ output: typeof DeviceAccessTokenResponseSchema;
277
+ };
278
+ /**
279
+ * RefreshAccessToken is invoked when the access token expires.
280
+ *
281
+ * @generated from rpc liquidmetal.v1alpha1.RainbowAuthService.RefreshAccessToken
282
+ */
283
+ refreshAccessToken: {
284
+ methodKind: "unary";
285
+ input: typeof RefreshAccessTokenRequestSchema;
286
+ output: typeof RefreshAccessTokenResponseSchema;
287
+ };
288
+ }>;
271
289
  //# sourceMappingURL=rainbow_auth_pb.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"rainbow_auth_pb.d.ts","sourceRoot":"","sources":["../../../src/liquidmetal/v1alpha1/rainbow_auth_pb.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"rainbow_auth_pb.d.ts","sourceRoot":"","sources":["../../../src/liquidmetal/v1alpha1/rainbow_auth_pb.ts"],"names":[],"mappings":"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"}