@liquidmetal-ai/drizzle 0.9.2 → 0.11.0

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 (42) hide show
  1. package/CHANGELOG.md +12 -0
  2. package/dist/appify/build.d.ts +8 -1
  3. package/dist/appify/build.d.ts.map +1 -1
  4. package/dist/appify/build.js +69 -1
  5. package/dist/appify/build.test.js +156 -0
  6. package/dist/appify/validate.d.ts.map +1 -1
  7. package/dist/appify/validate.js +37 -0
  8. package/dist/appify/validate.test.js +38 -1
  9. package/dist/liquidmetal/v1alpha1/bucket_name_pb.d.ts +11 -11
  10. package/dist/liquidmetal/v1alpha1/bucket_name_pb.d.ts.map +1 -1
  11. package/dist/liquidmetal/v1alpha1/bucket_name_pb.js +1 -1
  12. package/dist/liquidmetal/v1alpha1/object_pb.d.ts +8 -0
  13. package/dist/liquidmetal/v1alpha1/object_pb.d.ts.map +1 -1
  14. package/dist/liquidmetal/v1alpha1/object_pb.js +1 -1
  15. package/dist/liquidmetal/v1alpha1/payments_pb.d.ts +461 -0
  16. package/dist/liquidmetal/v1alpha1/payments_pb.d.ts.map +1 -0
  17. package/dist/liquidmetal/v1alpha1/payments_pb.js +152 -0
  18. package/dist/liquidmetal/v1alpha1/rainbow_auth_pb.d.ts +315 -0
  19. package/dist/liquidmetal/v1alpha1/rainbow_auth_pb.d.ts.map +1 -1
  20. package/dist/liquidmetal/v1alpha1/rainbow_auth_pb.js +56 -1
  21. package/dist/liquidmetal/v1alpha1/riverjack_pb.d.ts +6 -0
  22. package/dist/liquidmetal/v1alpha1/riverjack_pb.d.ts.map +1 -1
  23. package/dist/liquidmetal/v1alpha1/riverjack_pb.js +1 -1
  24. package/dist/liquidmetal/v1alpha1/search_agent_pb.d.ts +374 -0
  25. package/dist/liquidmetal/v1alpha1/search_agent_pb.d.ts.map +1 -1
  26. package/dist/liquidmetal/v1alpha1/search_agent_pb.js +46 -1
  27. package/dist/liquidmetal/v1alpha1/stripe_seller_integration_pb.d.ts +468 -0
  28. package/dist/liquidmetal/v1alpha1/stripe_seller_integration_pb.d.ts.map +1 -0
  29. package/dist/liquidmetal/v1alpha1/stripe_seller_integration_pb.js +151 -0
  30. package/package.json +3 -3
  31. package/src/appify/build.test.ts +184 -0
  32. package/src/appify/build.ts +73 -1
  33. package/src/appify/validate.test.ts +40 -1
  34. package/src/appify/validate.ts +40 -0
  35. package/src/liquidmetal/v1alpha1/bucket_name_pb.ts +12 -12
  36. package/src/liquidmetal/v1alpha1/object_pb.ts +10 -1
  37. package/src/liquidmetal/v1alpha1/payments_pb.ts +546 -0
  38. package/src/liquidmetal/v1alpha1/rainbow_auth_pb.ts +362 -1
  39. package/src/liquidmetal/v1alpha1/riverjack_pb.ts +8 -1
  40. package/src/liquidmetal/v1alpha1/search_agent_pb.ts +432 -1
  41. package/src/liquidmetal/v1alpha1/stripe_seller_integration_pb.ts +545 -0
  42. package/tsconfig.tsbuildinfo +1 -1
@@ -0,0 +1,468 @@
1
+ import type { GenEnum, GenFile, GenMessage, GenService } from "@bufbuild/protobuf/codegenv2";
2
+ import type { Timestamp } from "@bufbuild/protobuf/wkt";
3
+ import type { Message } from "@bufbuild/protobuf";
4
+ /**
5
+ * Describes the file liquidmetal/v1alpha1/stripe_seller_integration.proto.
6
+ */
7
+ export declare const file_liquidmetal_v1alpha1_stripe_seller_integration: GenFile;
8
+ /**
9
+ * SellerAccount represents a Stripe Connect account stored in organization state
10
+ *
11
+ * @generated from message liquidmetal.v1alpha1.SellerAccount
12
+ */
13
+ export type SellerAccount = Message<"liquidmetal.v1alpha1.SellerAccount"> & {
14
+ /**
15
+ * Stripe Connect account ID
16
+ *
17
+ * @generated from field: string account_id = 1;
18
+ */
19
+ accountId: string;
20
+ /**
21
+ * Account type (standard or express)
22
+ *
23
+ * @generated from field: liquidmetal.v1alpha1.StripeAccountType account_type = 2;
24
+ */
25
+ accountType: StripeAccountType;
26
+ /**
27
+ * Business type (individual or company)
28
+ *
29
+ * @generated from field: liquidmetal.v1alpha1.StripeBusinessType business_type = 3;
30
+ */
31
+ businessType: StripeBusinessType;
32
+ /**
33
+ * Stripe mode (test or live)
34
+ *
35
+ * @generated from field: liquidmetal.v1alpha1.StripeMode mode = 4;
36
+ */
37
+ mode: StripeMode;
38
+ /**
39
+ * Can accept payments
40
+ *
41
+ * @generated from field: bool charges_enabled = 5;
42
+ */
43
+ chargesEnabled: boolean;
44
+ /**
45
+ * Can receive payouts
46
+ *
47
+ * @generated from field: bool payouts_enabled = 6;
48
+ */
49
+ payoutsEnabled: boolean;
50
+ /**
51
+ * Completed onboarding
52
+ *
53
+ * @generated from field: bool details_submitted = 7;
54
+ */
55
+ detailsSubmitted: boolean;
56
+ /**
57
+ * Account country code
58
+ *
59
+ * @generated from field: string country = 8;
60
+ */
61
+ country: string;
62
+ /**
63
+ * Default currency
64
+ *
65
+ * @generated from field: string currency = 9;
66
+ */
67
+ currency: string;
68
+ /**
69
+ * When the account was created
70
+ *
71
+ * @generated from field: google.protobuf.Timestamp created_at = 10;
72
+ */
73
+ createdAt?: Timestamp;
74
+ /**
75
+ * When the account was last updated
76
+ *
77
+ * @generated from field: google.protobuf.Timestamp updated_at = 11;
78
+ */
79
+ updatedAt?: Timestamp;
80
+ };
81
+ /**
82
+ * Describes the message liquidmetal.v1alpha1.SellerAccount.
83
+ * Use `create(SellerAccountSchema)` to create a new message.
84
+ */
85
+ export declare const SellerAccountSchema: GenMessage<SellerAccount>;
86
+ /**
87
+ * CreateSellerAccountRequest activates Stripe Connect for an organization
88
+ *
89
+ * @generated from message liquidmetal.v1alpha1.CreateSellerAccountRequest
90
+ */
91
+ export type CreateSellerAccountRequest = Message<"liquidmetal.v1alpha1.CreateSellerAccountRequest"> & {
92
+ /**
93
+ * User making the request
94
+ *
95
+ * @generated from field: string user_id = 1;
96
+ */
97
+ userId: string;
98
+ /**
99
+ * Organization to activate Stripe Connect for
100
+ *
101
+ * @generated from field: string organization_id = 2;
102
+ */
103
+ organizationId: string;
104
+ /**
105
+ * Email address for the account admin
106
+ *
107
+ * @generated from field: string admin_email = 3;
108
+ */
109
+ adminEmail: string;
110
+ /**
111
+ * Country code for the account (e.g., "US", "CA", "GB")
112
+ *
113
+ * @generated from field: string country = 4;
114
+ */
115
+ country: string;
116
+ /**
117
+ * Account type to create (default: STANDARD)
118
+ *
119
+ * @generated from field: liquidmetal.v1alpha1.StripeAccountType account_type = 5;
120
+ */
121
+ accountType: StripeAccountType;
122
+ /**
123
+ * Business type (individual or company)
124
+ *
125
+ * @generated from field: liquidmetal.v1alpha1.StripeBusinessType business_type = 6;
126
+ */
127
+ businessType: StripeBusinessType;
128
+ /**
129
+ * Stripe mode (test or live, default: TEST)
130
+ *
131
+ * @generated from field: liquidmetal.v1alpha1.StripeMode mode = 7;
132
+ */
133
+ mode: StripeMode;
134
+ };
135
+ /**
136
+ * Describes the message liquidmetal.v1alpha1.CreateSellerAccountRequest.
137
+ * Use `create(CreateSellerAccountRequestSchema)` to create a new message.
138
+ */
139
+ export declare const CreateSellerAccountRequestSchema: GenMessage<CreateSellerAccountRequest>;
140
+ /**
141
+ * CreateSellerAccountResponse returns the created Stripe Connect account details
142
+ *
143
+ * @generated from message liquidmetal.v1alpha1.CreateSellerAccountResponse
144
+ */
145
+ export type CreateSellerAccountResponse = Message<"liquidmetal.v1alpha1.CreateSellerAccountResponse"> & {
146
+ /**
147
+ * @generated from field: liquidmetal.v1alpha1.SellerAccount account = 1;
148
+ */
149
+ account?: SellerAccount;
150
+ };
151
+ /**
152
+ * Describes the message liquidmetal.v1alpha1.CreateSellerAccountResponse.
153
+ * Use `create(CreateSellerAccountResponseSchema)` to create a new message.
154
+ */
155
+ export declare const CreateSellerAccountResponseSchema: GenMessage<CreateSellerAccountResponse>;
156
+ /**
157
+ * GetSellerAccountRequest retrieves Stripe Connect account information
158
+ *
159
+ * @generated from message liquidmetal.v1alpha1.GetSellerAccountRequest
160
+ */
161
+ export type GetSellerAccountRequest = Message<"liquidmetal.v1alpha1.GetSellerAccountRequest"> & {
162
+ /**
163
+ * User making the request
164
+ *
165
+ * @generated from field: string user_id = 1;
166
+ */
167
+ userId: string;
168
+ /**
169
+ * Organization to get seller account for
170
+ *
171
+ * @generated from field: string organization_id = 2;
172
+ */
173
+ organizationId: string;
174
+ /**
175
+ * Stripe mode (test or live, default: TEST)
176
+ *
177
+ * @generated from field: liquidmetal.v1alpha1.StripeMode mode = 3;
178
+ */
179
+ mode: StripeMode;
180
+ };
181
+ /**
182
+ * Describes the message liquidmetal.v1alpha1.GetSellerAccountRequest.
183
+ * Use `create(GetSellerAccountRequestSchema)` to create a new message.
184
+ */
185
+ export declare const GetSellerAccountRequestSchema: GenMessage<GetSellerAccountRequest>;
186
+ /**
187
+ * GetSellerAccountResponse returns the seller account details
188
+ *
189
+ * @generated from message liquidmetal.v1alpha1.GetSellerAccountResponse
190
+ */
191
+ export type GetSellerAccountResponse = Message<"liquidmetal.v1alpha1.GetSellerAccountResponse"> & {
192
+ /**
193
+ * @generated from field: liquidmetal.v1alpha1.SellerAccount account = 1;
194
+ */
195
+ account?: SellerAccount;
196
+ };
197
+ /**
198
+ * Describes the message liquidmetal.v1alpha1.GetSellerAccountResponse.
199
+ * Use `create(GetSellerAccountResponseSchema)` to create a new message.
200
+ */
201
+ export declare const GetSellerAccountResponseSchema: GenMessage<GetSellerAccountResponse>;
202
+ /**
203
+ * GetSellerAccountOnboardingURLRequest generates onboarding link
204
+ *
205
+ * @generated from message liquidmetal.v1alpha1.GetSellerAccountOnboardingURLRequest
206
+ */
207
+ export type GetSellerAccountOnboardingURLRequest = Message<"liquidmetal.v1alpha1.GetSellerAccountOnboardingURLRequest"> & {
208
+ /**
209
+ * User making the request
210
+ *
211
+ * @generated from field: string user_id = 1;
212
+ */
213
+ userId: string;
214
+ /**
215
+ * Organization whose seller account to onboard
216
+ *
217
+ * @generated from field: string organization_id = 2;
218
+ */
219
+ organizationId: string;
220
+ /**
221
+ * Stripe mode (test or live, default: TEST)
222
+ *
223
+ * @generated from field: liquidmetal.v1alpha1.StripeMode mode = 3;
224
+ */
225
+ mode: StripeMode;
226
+ /**
227
+ * Optional URL to redirect to if user needs to refresh the link
228
+ * If not provided, uses Stripe's default
229
+ *
230
+ * @generated from field: optional string refresh_url = 4;
231
+ */
232
+ refreshUrl?: string;
233
+ /**
234
+ * Optional URL to redirect to when onboarding is complete
235
+ * If not provided, uses Stripe's default
236
+ *
237
+ * @generated from field: optional string return_url = 5;
238
+ */
239
+ returnUrl?: string;
240
+ };
241
+ /**
242
+ * Describes the message liquidmetal.v1alpha1.GetSellerAccountOnboardingURLRequest.
243
+ * Use `create(GetSellerAccountOnboardingURLRequestSchema)` to create a new message.
244
+ */
245
+ export declare const GetSellerAccountOnboardingURLRequestSchema: GenMessage<GetSellerAccountOnboardingURLRequest>;
246
+ /**
247
+ * GetSellerAccountOnboardingURLResponse returns the onboarding URL
248
+ *
249
+ * @generated from message liquidmetal.v1alpha1.GetSellerAccountOnboardingURLResponse
250
+ */
251
+ export type GetSellerAccountOnboardingURLResponse = Message<"liquidmetal.v1alpha1.GetSellerAccountOnboardingURLResponse"> & {
252
+ /**
253
+ * Stripe-hosted onboarding URL (expires in 5 minutes)
254
+ *
255
+ * @generated from field: string url = 1;
256
+ */
257
+ url: string;
258
+ /**
259
+ * Expiration time for the URL
260
+ *
261
+ * @generated from field: google.protobuf.Timestamp expires_at = 2;
262
+ */
263
+ expiresAt?: Timestamp;
264
+ };
265
+ /**
266
+ * Describes the message liquidmetal.v1alpha1.GetSellerAccountOnboardingURLResponse.
267
+ * Use `create(GetSellerAccountOnboardingURLResponseSchema)` to create a new message.
268
+ */
269
+ export declare const GetSellerAccountOnboardingURLResponseSchema: GenMessage<GetSellerAccountOnboardingURLResponse>;
270
+ /**
271
+ * GetSellerAccountDashboardURLRequest generates dashboard link
272
+ *
273
+ * @generated from message liquidmetal.v1alpha1.GetSellerAccountDashboardURLRequest
274
+ */
275
+ export type GetSellerAccountDashboardURLRequest = Message<"liquidmetal.v1alpha1.GetSellerAccountDashboardURLRequest"> & {
276
+ /**
277
+ * User making the request
278
+ *
279
+ * @generated from field: string user_id = 1;
280
+ */
281
+ userId: string;
282
+ /**
283
+ * Organization whose seller dashboard to access
284
+ *
285
+ * @generated from field: string organization_id = 2;
286
+ */
287
+ organizationId: string;
288
+ /**
289
+ * Stripe mode (test or live, default: TEST)
290
+ *
291
+ * @generated from field: liquidmetal.v1alpha1.StripeMode mode = 3;
292
+ */
293
+ mode: StripeMode;
294
+ };
295
+ /**
296
+ * Describes the message liquidmetal.v1alpha1.GetSellerAccountDashboardURLRequest.
297
+ * Use `create(GetSellerAccountDashboardURLRequestSchema)` to create a new message.
298
+ */
299
+ export declare const GetSellerAccountDashboardURLRequestSchema: GenMessage<GetSellerAccountDashboardURLRequest>;
300
+ /**
301
+ * GetSellerAccountDashboardURLResponse returns the dashboard URL
302
+ *
303
+ * @generated from message liquidmetal.v1alpha1.GetSellerAccountDashboardURLResponse
304
+ */
305
+ export type GetSellerAccountDashboardURLResponse = Message<"liquidmetal.v1alpha1.GetSellerAccountDashboardURLResponse"> & {
306
+ /**
307
+ * Stripe Express Dashboard URL
308
+ *
309
+ * @generated from field: string url = 1;
310
+ */
311
+ url: string;
312
+ };
313
+ /**
314
+ * Describes the message liquidmetal.v1alpha1.GetSellerAccountDashboardURLResponse.
315
+ * Use `create(GetSellerAccountDashboardURLResponseSchema)` to create a new message.
316
+ */
317
+ export declare const GetSellerAccountDashboardURLResponseSchema: GenMessage<GetSellerAccountDashboardURLResponse>;
318
+ /**
319
+ * Stripe environment mode
320
+ *
321
+ * @generated from enum liquidmetal.v1alpha1.StripeMode
322
+ */
323
+ export declare enum StripeMode {
324
+ /**
325
+ * @generated from enum value: STRIPE_MODE_UNSPECIFIED = 0;
326
+ */
327
+ UNSPECIFIED = 0,
328
+ /**
329
+ * Test mode (uses test keys, test data)
330
+ *
331
+ * @generated from enum value: STRIPE_MODE_TEST = 1;
332
+ */
333
+ TEST = 1,
334
+ /**
335
+ * Live/production mode (uses live keys, real money)
336
+ *
337
+ * @generated from enum value: STRIPE_MODE_LIVE = 2;
338
+ */
339
+ LIVE = 2
340
+ }
341
+ /**
342
+ * Describes the enum liquidmetal.v1alpha1.StripeMode.
343
+ */
344
+ export declare const StripeModeSchema: GenEnum<StripeMode>;
345
+ /**
346
+ * Account types for Stripe Connect
347
+ *
348
+ * @generated from enum liquidmetal.v1alpha1.StripeAccountType
349
+ */
350
+ export declare enum StripeAccountType {
351
+ /**
352
+ * @generated from enum value: STRIPE_ACCOUNT_TYPE_UNSPECIFIED = 0;
353
+ */
354
+ UNSPECIFIED = 0,
355
+ /**
356
+ * Recommended: Full control
357
+ *
358
+ * @generated from enum value: STRIPE_ACCOUNT_TYPE_STANDARD = 1;
359
+ */
360
+ STANDARD = 1,
361
+ /**
362
+ * Alternative: Simplified onboarding
363
+ *
364
+ * @generated from enum value: STRIPE_ACCOUNT_TYPE_EXPRESS = 2;
365
+ */
366
+ EXPRESS = 2
367
+ }
368
+ /**
369
+ * Describes the enum liquidmetal.v1alpha1.StripeAccountType.
370
+ */
371
+ export declare const StripeAccountTypeSchema: GenEnum<StripeAccountType>;
372
+ /**
373
+ * Business type for Stripe Connect account
374
+ *
375
+ * @generated from enum liquidmetal.v1alpha1.StripeBusinessType
376
+ */
377
+ export declare enum StripeBusinessType {
378
+ /**
379
+ * @generated from enum value: STRIPE_BUSINESS_TYPE_UNSPECIFIED = 0;
380
+ */
381
+ UNSPECIFIED = 0,
382
+ /**
383
+ * Sole proprietor, freelancer
384
+ *
385
+ * @generated from enum value: STRIPE_BUSINESS_TYPE_INDIVIDUAL = 1;
386
+ */
387
+ INDIVIDUAL = 1,
388
+ /**
389
+ * LLC, corporation, partnership
390
+ *
391
+ * @generated from enum value: STRIPE_BUSINESS_TYPE_COMPANY = 2;
392
+ */
393
+ COMPANY = 2
394
+ }
395
+ /**
396
+ * Describes the enum liquidmetal.v1alpha1.StripeBusinessType.
397
+ */
398
+ export declare const StripeBusinessTypeSchema: GenEnum<StripeBusinessType>;
399
+ /**
400
+ * StripeSellerIntegrationService provides integration with Stripe Connect
401
+ * for organization-level seller account management.
402
+ *
403
+ * The service maps LiquidMetal concepts to Stripe concepts:
404
+ * - 1 LiquidMetal organization = 1 Stripe Connect account
405
+ *
406
+ * Applications receive seller credentials via environment variables during
407
+ * deployment (similar to WorkOS integration pattern).
408
+ *
409
+ * @generated from service liquidmetal.v1alpha1.StripeSellerIntegrationService
410
+ */
411
+ export declare const StripeSellerIntegrationService: GenService<{
412
+ /**
413
+ * CreateSellerAccount activates Stripe Connect for an organization by
414
+ * creating a connected account and storing credentials in organization state.
415
+ *
416
+ * Supports both individual and business accounts:
417
+ * - Individual: Sole proprietors, freelancers (SSN-based)
418
+ * - Business: Companies, LLCs, corporations (EIN-based)
419
+ *
420
+ * Error handling:
421
+ * - If organization already has a seller account, returns an error
422
+ * - If email conflicts with existing Stripe account, returns an error
423
+ *
424
+ * @generated from rpc liquidmetal.v1alpha1.StripeSellerIntegrationService.CreateSellerAccount
425
+ */
426
+ createSellerAccount: {
427
+ methodKind: "unary";
428
+ input: typeof CreateSellerAccountRequestSchema;
429
+ output: typeof CreateSellerAccountResponseSchema;
430
+ };
431
+ /**
432
+ * GetSellerAccount retrieves the Stripe Connect account information for
433
+ * an organization from Catalog Service state.
434
+ * Returns an error if seller account has not been created.
435
+ *
436
+ * @generated from rpc liquidmetal.v1alpha1.StripeSellerIntegrationService.GetSellerAccount
437
+ */
438
+ getSellerAccount: {
439
+ methodKind: "unary";
440
+ input: typeof GetSellerAccountRequestSchema;
441
+ output: typeof GetSellerAccountResponseSchema;
442
+ };
443
+ /**
444
+ * GetSellerAccountOnboardingURL generates a Stripe Connect onboarding link.
445
+ * Organizations complete KYC and banking information through Stripe's
446
+ * hosted onboarding flow.
447
+ *
448
+ * @generated from rpc liquidmetal.v1alpha1.StripeSellerIntegrationService.GetSellerAccountOnboardingURL
449
+ */
450
+ getSellerAccountOnboardingURL: {
451
+ methodKind: "unary";
452
+ input: typeof GetSellerAccountOnboardingURLRequestSchema;
453
+ output: typeof GetSellerAccountOnboardingURLResponseSchema;
454
+ };
455
+ /**
456
+ * GetSellerAccountDashboardURL generates a Stripe Express Dashboard link.
457
+ * Allows sellers to view payments, payouts, and manage their account.
458
+ * All seller management happens through Stripe's dashboard.
459
+ *
460
+ * @generated from rpc liquidmetal.v1alpha1.StripeSellerIntegrationService.GetSellerAccountDashboardURL
461
+ */
462
+ getSellerAccountDashboardURL: {
463
+ methodKind: "unary";
464
+ input: typeof GetSellerAccountDashboardURLRequestSchema;
465
+ output: typeof GetSellerAccountDashboardURLResponseSchema;
466
+ };
467
+ }>;
468
+ //# sourceMappingURL=stripe_seller_integration_pb.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"stripe_seller_integration_pb.d.ts","sourceRoot":"","sources":["../../../src/liquidmetal/v1alpha1/stripe_seller_integration_pb.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,151 @@
1
+ // @generated by protoc-gen-es v2.10.0 with parameter "target=ts,import_extension=.js"
2
+ // @generated from file liquidmetal/v1alpha1/stripe_seller_integration.proto (package liquidmetal.v1alpha1, syntax proto3)
3
+ /* eslint-disable */
4
+ import { enumDesc, fileDesc, messageDesc, serviceDesc } from "@bufbuild/protobuf/codegenv2";
5
+ import { file_google_protobuf_timestamp } from "@bufbuild/protobuf/wkt";
6
+ /**
7
+ * Describes the file liquidmetal/v1alpha1/stripe_seller_integration.proto.
8
+ */
9
+ export const file_liquidmetal_v1alpha1_stripe_seller_integration = /*@__PURE__*/ fileDesc("CjRsaXF1aWRtZXRhbC92MWFscGhhMS9zdHJpcGVfc2VsbGVyX2ludGVncmF0aW9uLnByb3RvEhRsaXF1aWRtZXRhbC52MWFscGhhMSKjAwoNU2VsbGVyQWNjb3VudBISCgphY2NvdW50X2lkGAEgASgJEj0KDGFjY291bnRfdHlwZRgCIAEoDjInLmxpcXVpZG1ldGFsLnYxYWxwaGExLlN0cmlwZUFjY291bnRUeXBlEj8KDWJ1c2luZXNzX3R5cGUYAyABKA4yKC5saXF1aWRtZXRhbC52MWFscGhhMS5TdHJpcGVCdXNpbmVzc1R5cGUSLgoEbW9kZRgEIAEoDjIgLmxpcXVpZG1ldGFsLnYxYWxwaGExLlN0cmlwZU1vZGUSFwoPY2hhcmdlc19lbmFibGVkGAUgASgIEhcKD3BheW91dHNfZW5hYmxlZBgGIAEoCBIZChFkZXRhaWxzX3N1Ym1pdHRlZBgHIAEoCBIPCgdjb3VudHJ5GAggASgJEhAKCGN1cnJlbmN5GAkgASgJEi4KCmNyZWF0ZWRfYXQYCiABKAsyGi5nb29nbGUucHJvdG9idWYuVGltZXN0YW1wEi4KCnVwZGF0ZWRfYXQYCyABKAsyGi5nb29nbGUucHJvdG9idWYuVGltZXN0YW1wIpwCChpDcmVhdGVTZWxsZXJBY2NvdW50UmVxdWVzdBIPCgd1c2VyX2lkGAEgASgJEhcKD29yZ2FuaXphdGlvbl9pZBgCIAEoCRITCgthZG1pbl9lbWFpbBgDIAEoCRIPCgdjb3VudHJ5GAQgASgJEj0KDGFjY291bnRfdHlwZRgFIAEoDjInLmxpcXVpZG1ldGFsLnYxYWxwaGExLlN0cmlwZUFjY291bnRUeXBlEj8KDWJ1c2luZXNzX3R5cGUYBiABKA4yKC5saXF1aWRtZXRhbC52MWFscGhhMS5TdHJpcGVCdXNpbmVzc1R5cGUSLgoEbW9kZRgHIAEoDjIgLmxpcXVpZG1ldGFsLnYxYWxwaGExLlN0cmlwZU1vZGUiUwobQ3JlYXRlU2VsbGVyQWNjb3VudFJlc3BvbnNlEjQKB2FjY291bnQYASABKAsyIy5saXF1aWRtZXRhbC52MWFscGhhMS5TZWxsZXJBY2NvdW50InMKF0dldFNlbGxlckFjY291bnRSZXF1ZXN0Eg8KB3VzZXJfaWQYASABKAkSFwoPb3JnYW5pemF0aW9uX2lkGAIgASgJEi4KBG1vZGUYAyABKA4yIC5saXF1aWRtZXRhbC52MWFscGhhMS5TdHJpcGVNb2RlIlAKGEdldFNlbGxlckFjY291bnRSZXNwb25zZRI0CgdhY2NvdW50GAEgASgLMiMubGlxdWlkbWV0YWwudjFhbHBoYTEuU2VsbGVyQWNjb3VudCLSAQokR2V0U2VsbGVyQWNjb3VudE9uYm9hcmRpbmdVUkxSZXF1ZXN0Eg8KB3VzZXJfaWQYASABKAkSFwoPb3JnYW5pemF0aW9uX2lkGAIgASgJEi4KBG1vZGUYAyABKA4yIC5saXF1aWRtZXRhbC52MWFscGhhMS5TdHJpcGVNb2RlEhgKC3JlZnJlc2hfdXJsGAQgASgJSACIAQESFwoKcmV0dXJuX3VybBgFIAEoCUgBiAEBQg4KDF9yZWZyZXNoX3VybEINCgtfcmV0dXJuX3VybCJkCiVHZXRTZWxsZXJBY2NvdW50T25ib2FyZGluZ1VSTFJlc3BvbnNlEgsKA3VybBgBIAEoCRIuCgpleHBpcmVzX2F0GAIgASgLMhouZ29vZ2xlLnByb3RvYnVmLlRpbWVzdGFtcCJ/CiNHZXRTZWxsZXJBY2NvdW50RGFzaGJvYXJkVVJMUmVxdWVzdBIPCgd1c2VyX2lkGAEgASgJEhcKD29yZ2FuaXphdGlvbl9pZBgCIAEoCRIuCgRtb2RlGAMgASgOMiAubGlxdWlkbWV0YWwudjFhbHBoYTEuU3RyaXBlTW9kZSIzCiRHZXRTZWxsZXJBY2NvdW50RGFzaGJvYXJkVVJMUmVzcG9uc2USCwoDdXJsGAEgASgJKlUKClN0cmlwZU1vZGUSGwoXU1RSSVBFX01PREVfVU5TUEVDSUZJRUQQABIUChBTVFJJUEVfTU9ERV9URVNUEAESFAoQU1RSSVBFX01PREVfTElWRRACKnsKEVN0cmlwZUFjY291bnRUeXBlEiMKH1NUUklQRV9BQ0NPVU5UX1RZUEVfVU5TUEVDSUZJRUQQABIgChxTVFJJUEVfQUNDT1VOVF9UWVBFX1NUQU5EQVJEEAESHwobU1RSSVBFX0FDQ09VTlRfVFlQRV9FWFBSRVNTEAIqgQEKElN0cmlwZUJ1c2luZXNzVHlwZRIkCiBTVFJJUEVfQlVTSU5FU1NfVFlQRV9VTlNQRUNJRklFRBAAEiMKH1NUUklQRV9CVVNJTkVTU19UWVBFX0lORElWSURVQUwQARIgChxTVFJJUEVfQlVTSU5FU1NfVFlQRV9DT01QQU5ZEAIywgQKHlN0cmlwZVNlbGxlckludGVncmF0aW9uU2VydmljZRJ6ChNDcmVhdGVTZWxsZXJBY2NvdW50EjAubGlxdWlkbWV0YWwudjFhbHBoYTEuQ3JlYXRlU2VsbGVyQWNjb3VudFJlcXVlc3QaMS5saXF1aWRtZXRhbC52MWFscGhhMS5DcmVhdGVTZWxsZXJBY2NvdW50UmVzcG9uc2UScQoQR2V0U2VsbGVyQWNjb3VudBItLmxpcXVpZG1ldGFsLnYxYWxwaGExLkdldFNlbGxlckFjY291bnRSZXF1ZXN0Gi4ubGlxdWlkbWV0YWwudjFhbHBoYTEuR2V0U2VsbGVyQWNjb3VudFJlc3BvbnNlEpgBCh1HZXRTZWxsZXJBY2NvdW50T25ib2FyZGluZ1VSTBI6LmxpcXVpZG1ldGFsLnYxYWxwaGExLkdldFNlbGxlckFjY291bnRPbmJvYXJkaW5nVVJMUmVxdWVzdBo7LmxpcXVpZG1ldGFsLnYxYWxwaGExLkdldFNlbGxlckFjY291bnRPbmJvYXJkaW5nVVJMUmVzcG9uc2USlQEKHEdldFNlbGxlckFjY291bnREYXNoYm9hcmRVUkwSOS5saXF1aWRtZXRhbC52MWFscGhhMS5HZXRTZWxsZXJBY2NvdW50RGFzaGJvYXJkVVJMUmVxdWVzdBo6LmxpcXVpZG1ldGFsLnYxYWxwaGExLkdldFNlbGxlckFjY291bnREYXNoYm9hcmRVUkxSZXNwb25zZUL3AQoYY29tLmxpcXVpZG1ldGFsLnYxYWxwaGExQhxTdHJpcGVTZWxsZXJJbnRlZ3JhdGlvblByb3RvUAFaTGdpdGh1Yi5jb20vbGlxdWlkbWV0YWwtYWkvcHJvdG9nZW4yL2xpcXVpZG1ldGFsL3YxYWxwaGExO2xpcXVpZG1ldGFsdjFhbHBoYTGiAgNMWFiqAhRMaXF1aWRtZXRhbC5WMWFscGhhMcoCFExpcXVpZG1ldGFsXFYxYWxwaGEx4gIgTGlxdWlkbWV0YWxcVjFhbHBoYTFcR1BCTWV0YWRhdGHqAhVMaXF1aWRtZXRhbDo6VjFhbHBoYTFiBnByb3RvMw", [file_google_protobuf_timestamp]);
10
+ /**
11
+ * Describes the message liquidmetal.v1alpha1.SellerAccount.
12
+ * Use `create(SellerAccountSchema)` to create a new message.
13
+ */
14
+ export const SellerAccountSchema = /*@__PURE__*/ messageDesc(file_liquidmetal_v1alpha1_stripe_seller_integration, 0);
15
+ /**
16
+ * Describes the message liquidmetal.v1alpha1.CreateSellerAccountRequest.
17
+ * Use `create(CreateSellerAccountRequestSchema)` to create a new message.
18
+ */
19
+ export const CreateSellerAccountRequestSchema = /*@__PURE__*/ messageDesc(file_liquidmetal_v1alpha1_stripe_seller_integration, 1);
20
+ /**
21
+ * Describes the message liquidmetal.v1alpha1.CreateSellerAccountResponse.
22
+ * Use `create(CreateSellerAccountResponseSchema)` to create a new message.
23
+ */
24
+ export const CreateSellerAccountResponseSchema = /*@__PURE__*/ messageDesc(file_liquidmetal_v1alpha1_stripe_seller_integration, 2);
25
+ /**
26
+ * Describes the message liquidmetal.v1alpha1.GetSellerAccountRequest.
27
+ * Use `create(GetSellerAccountRequestSchema)` to create a new message.
28
+ */
29
+ export const GetSellerAccountRequestSchema = /*@__PURE__*/ messageDesc(file_liquidmetal_v1alpha1_stripe_seller_integration, 3);
30
+ /**
31
+ * Describes the message liquidmetal.v1alpha1.GetSellerAccountResponse.
32
+ * Use `create(GetSellerAccountResponseSchema)` to create a new message.
33
+ */
34
+ export const GetSellerAccountResponseSchema = /*@__PURE__*/ messageDesc(file_liquidmetal_v1alpha1_stripe_seller_integration, 4);
35
+ /**
36
+ * Describes the message liquidmetal.v1alpha1.GetSellerAccountOnboardingURLRequest.
37
+ * Use `create(GetSellerAccountOnboardingURLRequestSchema)` to create a new message.
38
+ */
39
+ export const GetSellerAccountOnboardingURLRequestSchema = /*@__PURE__*/ messageDesc(file_liquidmetal_v1alpha1_stripe_seller_integration, 5);
40
+ /**
41
+ * Describes the message liquidmetal.v1alpha1.GetSellerAccountOnboardingURLResponse.
42
+ * Use `create(GetSellerAccountOnboardingURLResponseSchema)` to create a new message.
43
+ */
44
+ export const GetSellerAccountOnboardingURLResponseSchema = /*@__PURE__*/ messageDesc(file_liquidmetal_v1alpha1_stripe_seller_integration, 6);
45
+ /**
46
+ * Describes the message liquidmetal.v1alpha1.GetSellerAccountDashboardURLRequest.
47
+ * Use `create(GetSellerAccountDashboardURLRequestSchema)` to create a new message.
48
+ */
49
+ export const GetSellerAccountDashboardURLRequestSchema = /*@__PURE__*/ messageDesc(file_liquidmetal_v1alpha1_stripe_seller_integration, 7);
50
+ /**
51
+ * Describes the message liquidmetal.v1alpha1.GetSellerAccountDashboardURLResponse.
52
+ * Use `create(GetSellerAccountDashboardURLResponseSchema)` to create a new message.
53
+ */
54
+ export const GetSellerAccountDashboardURLResponseSchema = /*@__PURE__*/ messageDesc(file_liquidmetal_v1alpha1_stripe_seller_integration, 8);
55
+ /**
56
+ * Stripe environment mode
57
+ *
58
+ * @generated from enum liquidmetal.v1alpha1.StripeMode
59
+ */
60
+ export var StripeMode;
61
+ (function (StripeMode) {
62
+ /**
63
+ * @generated from enum value: STRIPE_MODE_UNSPECIFIED = 0;
64
+ */
65
+ StripeMode[StripeMode["UNSPECIFIED"] = 0] = "UNSPECIFIED";
66
+ /**
67
+ * Test mode (uses test keys, test data)
68
+ *
69
+ * @generated from enum value: STRIPE_MODE_TEST = 1;
70
+ */
71
+ StripeMode[StripeMode["TEST"] = 1] = "TEST";
72
+ /**
73
+ * Live/production mode (uses live keys, real money)
74
+ *
75
+ * @generated from enum value: STRIPE_MODE_LIVE = 2;
76
+ */
77
+ StripeMode[StripeMode["LIVE"] = 2] = "LIVE";
78
+ })(StripeMode || (StripeMode = {}));
79
+ /**
80
+ * Describes the enum liquidmetal.v1alpha1.StripeMode.
81
+ */
82
+ export const StripeModeSchema = /*@__PURE__*/ enumDesc(file_liquidmetal_v1alpha1_stripe_seller_integration, 0);
83
+ /**
84
+ * Account types for Stripe Connect
85
+ *
86
+ * @generated from enum liquidmetal.v1alpha1.StripeAccountType
87
+ */
88
+ export var StripeAccountType;
89
+ (function (StripeAccountType) {
90
+ /**
91
+ * @generated from enum value: STRIPE_ACCOUNT_TYPE_UNSPECIFIED = 0;
92
+ */
93
+ StripeAccountType[StripeAccountType["UNSPECIFIED"] = 0] = "UNSPECIFIED";
94
+ /**
95
+ * Recommended: Full control
96
+ *
97
+ * @generated from enum value: STRIPE_ACCOUNT_TYPE_STANDARD = 1;
98
+ */
99
+ StripeAccountType[StripeAccountType["STANDARD"] = 1] = "STANDARD";
100
+ /**
101
+ * Alternative: Simplified onboarding
102
+ *
103
+ * @generated from enum value: STRIPE_ACCOUNT_TYPE_EXPRESS = 2;
104
+ */
105
+ StripeAccountType[StripeAccountType["EXPRESS"] = 2] = "EXPRESS";
106
+ })(StripeAccountType || (StripeAccountType = {}));
107
+ /**
108
+ * Describes the enum liquidmetal.v1alpha1.StripeAccountType.
109
+ */
110
+ export const StripeAccountTypeSchema = /*@__PURE__*/ enumDesc(file_liquidmetal_v1alpha1_stripe_seller_integration, 1);
111
+ /**
112
+ * Business type for Stripe Connect account
113
+ *
114
+ * @generated from enum liquidmetal.v1alpha1.StripeBusinessType
115
+ */
116
+ export var StripeBusinessType;
117
+ (function (StripeBusinessType) {
118
+ /**
119
+ * @generated from enum value: STRIPE_BUSINESS_TYPE_UNSPECIFIED = 0;
120
+ */
121
+ StripeBusinessType[StripeBusinessType["UNSPECIFIED"] = 0] = "UNSPECIFIED";
122
+ /**
123
+ * Sole proprietor, freelancer
124
+ *
125
+ * @generated from enum value: STRIPE_BUSINESS_TYPE_INDIVIDUAL = 1;
126
+ */
127
+ StripeBusinessType[StripeBusinessType["INDIVIDUAL"] = 1] = "INDIVIDUAL";
128
+ /**
129
+ * LLC, corporation, partnership
130
+ *
131
+ * @generated from enum value: STRIPE_BUSINESS_TYPE_COMPANY = 2;
132
+ */
133
+ StripeBusinessType[StripeBusinessType["COMPANY"] = 2] = "COMPANY";
134
+ })(StripeBusinessType || (StripeBusinessType = {}));
135
+ /**
136
+ * Describes the enum liquidmetal.v1alpha1.StripeBusinessType.
137
+ */
138
+ export const StripeBusinessTypeSchema = /*@__PURE__*/ enumDesc(file_liquidmetal_v1alpha1_stripe_seller_integration, 2);
139
+ /**
140
+ * StripeSellerIntegrationService provides integration with Stripe Connect
141
+ * for organization-level seller account management.
142
+ *
143
+ * The service maps LiquidMetal concepts to Stripe concepts:
144
+ * - 1 LiquidMetal organization = 1 Stripe Connect account
145
+ *
146
+ * Applications receive seller credentials via environment variables during
147
+ * deployment (similar to WorkOS integration pattern).
148
+ *
149
+ * @generated from service liquidmetal.v1alpha1.StripeSellerIntegrationService
150
+ */
151
+ export const StripeSellerIntegrationService = /*@__PURE__*/ serviceDesc(file_liquidmetal_v1alpha1_stripe_seller_integration, 0);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@liquidmetal-ai/drizzle",
3
- "version": "0.9.2",
3
+ "version": "0.11.0",
4
4
  "description": "Raindrop core operational libraries",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",
@@ -20,8 +20,8 @@
20
20
  "typescript-eslint": "^8.7.0",
21
21
  "vitest": "^2.1.1",
22
22
  "@liquidmetal-ai/eslint-config": "0.0.0",
23
- "@liquidmetal-ai/typescript-config": "0.0.0",
24
- "@liquidmetal-ai/raindrop-framework": "0.9.2"
23
+ "@liquidmetal-ai/raindrop-framework": "0.11.0",
24
+ "@liquidmetal-ai/typescript-config": "0.0.0"
25
25
  },
26
26
  "dependencies": {
27
27
  "fflate": "^0.8.2"