@bubblelab/bubble-core 0.1.101 → 0.1.102
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/dist/bubble-bundle.d.ts +80 -80
- package/dist/bubbles/service-bubble/agi-inc.d.ts +40 -40
- package/dist/bubbles/service-bubble/ai-agent.d.ts +24 -24
- package/dist/bubbles/service-bubble/airtable.d.ts +84 -84
- package/dist/bubbles/service-bubble/apify/apify.d.ts +16 -16
- package/dist/bubbles/service-bubble/ashby/ashby.d.ts +20 -20
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +4 -4
- package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +116 -116
- package/dist/bubbles/service-bubble/eleven-labs.d.ts +12 -12
- package/dist/bubbles/service-bubble/firecrawl.d.ts +773 -773
- package/dist/bubbles/service-bubble/followupboss.d.ts +274 -274
- package/dist/bubbles/service-bubble/fullenrich/fullenrich.d.ts +122 -122
- package/dist/bubbles/service-bubble/github.d.ts +240 -240
- package/dist/bubbles/service-bubble/gmail.d.ts +84 -84
- package/dist/bubbles/service-bubble/google-calendar.d.ts +118 -118
- package/dist/bubbles/service-bubble/google-drive.d.ts +40 -40
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +10 -10
- package/dist/bubbles/service-bubble/hello-world.d.ts +4 -4
- package/dist/bubbles/service-bubble/http.d.ts +8 -8
- package/dist/bubbles/service-bubble/insforge-db.d.ts +4 -4
- package/dist/bubbles/service-bubble/jira/jira.d.ts +38 -38
- package/dist/bubbles/service-bubble/notion/notion.d.ts +1007 -1007
- package/dist/bubbles/service-bubble/postgresql.d.ts +4 -4
- package/dist/bubbles/service-bubble/resend.d.ts +24 -24
- package/dist/bubbles/service-bubble/slack/slack.d.ts +638 -638
- package/dist/bubbles/service-bubble/stripe/stripe.d.ts +152 -82
- package/dist/bubbles/service-bubble/stripe/stripe.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/stripe/stripe.js +53 -8
- package/dist/bubbles/service-bubble/stripe/stripe.js.map +1 -1
- package/dist/bubbles/service-bubble/stripe/stripe.schema.d.ts +69 -0
- package/dist/bubbles/service-bubble/stripe/stripe.schema.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/stripe/stripe.schema.js +35 -0
- package/dist/bubbles/service-bubble/stripe/stripe.schema.js.map +1 -1
- package/dist/bubbles/service-bubble/telegram.d.ts +1129 -1129
- package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +9 -9
- package/dist/bubbles/tool-bubble/bubbleflow-validation-tool.d.ts +16 -16
- package/dist/bubbles/tool-bubble/chart-js-tool.d.ts +20 -20
- package/dist/bubbles/tool-bubble/code-edit-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +86 -86
- package/dist/bubbles/tool-bubble/google-maps-tool.d.ts +36 -36
- package/dist/bubbles/tool-bubble/instagram-tool.d.ts +34 -34
- package/dist/bubbles/tool-bubble/linkedin-connection-tool/linkedin-connection-tool.d.ts +2 -2
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +210 -210
- package/dist/bubbles/tool-bubble/people-search-tool.d.ts +254 -254
- package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +60 -60
- package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +24 -24
- package/dist/bubbles/tool-bubble/twitter-tool.d.ts +44 -44
- package/dist/bubbles/tool-bubble/web-crawl-tool.d.ts +24 -24
- package/dist/bubbles/tool-bubble/web-extract-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/web-scrape-tool.d.ts +6 -6
- package/dist/bubbles/tool-bubble/web-search-tool.d.ts +14 -14
- package/dist/bubbles/tool-bubble/yc-scraper-tool.d.ts +88 -88
- package/dist/bubbles/tool-bubble/youtube-tool.d.ts +10 -10
- package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +24 -24
- package/dist/bubbles/workflow-bubble/parse-document.workflow.d.ts +4 -4
- package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +48 -48
- package/dist/bubbles/workflow-bubble/pdf-ocr.workflow.d.ts +8 -8
- package/dist/bubbles/workflow-bubble/slack-data-assistant.workflow.d.ts +30 -30
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +84 -84
- package/dist/bubbles/workflow-bubble/slack-notifier.workflow.d.ts +4 -4
- package/dist/bubbles.json +109 -2
- package/package.json +2 -2
|
@@ -59,17 +59,32 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
|
|
|
59
59
|
operation: import("zod").ZodLiteral<"list_customers">;
|
|
60
60
|
limit: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodNumber>>;
|
|
61
61
|
email: import("zod").ZodOptional<import("zod").ZodString>;
|
|
62
|
+
cursor: import("zod").ZodOptional<import("zod").ZodString>;
|
|
62
63
|
credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>;
|
|
63
64
|
}, "strip", import("zod").ZodTypeAny, {
|
|
64
|
-
limit: number;
|
|
65
65
|
operation: "list_customers";
|
|
66
|
+
limit: number;
|
|
66
67
|
email?: string | undefined;
|
|
67
68
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
69
|
+
cursor?: string | undefined;
|
|
68
70
|
}, {
|
|
69
71
|
operation: "list_customers";
|
|
70
72
|
email?: string | undefined;
|
|
71
73
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
72
74
|
limit?: number | undefined;
|
|
75
|
+
cursor?: string | undefined;
|
|
76
|
+
}>, import("zod").ZodObject<{
|
|
77
|
+
operation: import("zod").ZodLiteral<"retrieve_customer">;
|
|
78
|
+
customer_id: import("zod").ZodString;
|
|
79
|
+
credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>;
|
|
80
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
81
|
+
operation: "retrieve_customer";
|
|
82
|
+
customer_id: string;
|
|
83
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
84
|
+
}, {
|
|
85
|
+
operation: "retrieve_customer";
|
|
86
|
+
customer_id: string;
|
|
87
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
73
88
|
}>, import("zod").ZodObject<{
|
|
74
89
|
operation: import("zod").ZodLiteral<"create_product">;
|
|
75
90
|
name: import("zod").ZodString;
|
|
@@ -94,8 +109,8 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
|
|
|
94
109
|
active: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
95
110
|
credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>;
|
|
96
111
|
}, "strip", import("zod").ZodTypeAny, {
|
|
97
|
-
limit: number;
|
|
98
112
|
operation: "list_products";
|
|
113
|
+
limit: number;
|
|
99
114
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
100
115
|
active?: boolean | undefined;
|
|
101
116
|
}, {
|
|
@@ -149,17 +164,17 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
|
|
|
149
164
|
active: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
150
165
|
credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>;
|
|
151
166
|
}, "strip", import("zod").ZodTypeAny, {
|
|
152
|
-
limit: number;
|
|
153
167
|
operation: "list_prices";
|
|
168
|
+
limit: number;
|
|
154
169
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
155
|
-
active?: boolean | undefined;
|
|
156
170
|
product?: string | undefined;
|
|
171
|
+
active?: boolean | undefined;
|
|
157
172
|
}, {
|
|
158
173
|
operation: "list_prices";
|
|
159
174
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
160
175
|
limit?: number | undefined;
|
|
161
|
-
active?: boolean | undefined;
|
|
162
176
|
product?: string | undefined;
|
|
177
|
+
active?: boolean | undefined;
|
|
163
178
|
}>, import("zod").ZodObject<{
|
|
164
179
|
operation: import("zod").ZodLiteral<"create_payment_link">;
|
|
165
180
|
price: import("zod").ZodString;
|
|
@@ -168,15 +183,15 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
|
|
|
168
183
|
metadata: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodString>>;
|
|
169
184
|
credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>;
|
|
170
185
|
}, "strip", import("zod").ZodTypeAny, {
|
|
171
|
-
price: string;
|
|
172
186
|
operation: "create_payment_link";
|
|
187
|
+
price: string;
|
|
173
188
|
quantity: number;
|
|
174
189
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
175
190
|
metadata?: Record<string, string> | undefined;
|
|
176
191
|
redirect_url?: string | undefined;
|
|
177
192
|
}, {
|
|
178
|
-
price: string;
|
|
179
193
|
operation: "create_payment_link";
|
|
194
|
+
price: string;
|
|
180
195
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
181
196
|
metadata?: Record<string, string> | undefined;
|
|
182
197
|
quantity?: number | undefined;
|
|
@@ -192,8 +207,8 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
|
|
|
192
207
|
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
193
208
|
quantity: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodNumber>>;
|
|
194
209
|
}, "strip", import("zod").ZodTypeAny, {
|
|
195
|
-
unit_amount: number;
|
|
196
210
|
quantity: number;
|
|
211
|
+
unit_amount: number;
|
|
197
212
|
description?: string | undefined;
|
|
198
213
|
}, {
|
|
199
214
|
unit_amount: number;
|
|
@@ -208,8 +223,8 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
|
|
|
208
223
|
auto_advance: boolean;
|
|
209
224
|
collection_method: "charge_automatically" | "send_invoice";
|
|
210
225
|
items?: {
|
|
211
|
-
unit_amount: number;
|
|
212
226
|
quantity: number;
|
|
227
|
+
unit_amount: number;
|
|
213
228
|
description?: string | undefined;
|
|
214
229
|
}[] | undefined;
|
|
215
230
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
@@ -235,8 +250,8 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
|
|
|
235
250
|
status: import("zod").ZodOptional<import("zod").ZodEnum<["draft", "open", "paid", "uncollectible", "void"]>>;
|
|
236
251
|
credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>;
|
|
237
252
|
}, "strip", import("zod").ZodTypeAny, {
|
|
238
|
-
limit: number;
|
|
239
253
|
operation: "list_invoices";
|
|
254
|
+
limit: number;
|
|
240
255
|
status?: "void" | "draft" | "open" | "paid" | "uncollectible" | undefined;
|
|
241
256
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
242
257
|
customer?: string | undefined;
|
|
@@ -286,8 +301,8 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
|
|
|
286
301
|
}, "strip", import("zod").ZodTypeAny, {
|
|
287
302
|
operation: "create_invoice_item";
|
|
288
303
|
currency: string;
|
|
289
|
-
unit_amount: number;
|
|
290
304
|
quantity: number;
|
|
305
|
+
unit_amount: number;
|
|
291
306
|
customer: string;
|
|
292
307
|
description?: string | undefined;
|
|
293
308
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
@@ -330,8 +345,8 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
|
|
|
330
345
|
customer: import("zod").ZodOptional<import("zod").ZodString>;
|
|
331
346
|
credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>;
|
|
332
347
|
}, "strip", import("zod").ZodTypeAny, {
|
|
333
|
-
limit: number;
|
|
334
348
|
operation: "list_payment_intents";
|
|
349
|
+
limit: number;
|
|
335
350
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
336
351
|
customer?: string | undefined;
|
|
337
352
|
}, {
|
|
@@ -346,14 +361,14 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
|
|
|
346
361
|
status: import("zod").ZodOptional<import("zod").ZodEnum<["incomplete", "incomplete_expired", "trialing", "active", "past_due", "canceled", "unpaid", "paused", "all"]>>;
|
|
347
362
|
credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>;
|
|
348
363
|
}, "strip", import("zod").ZodTypeAny, {
|
|
349
|
-
limit: number;
|
|
350
364
|
operation: "list_subscriptions";
|
|
351
|
-
|
|
365
|
+
limit: number;
|
|
366
|
+
status?: "all" | "paused" | "active" | "incomplete" | "incomplete_expired" | "trialing" | "past_due" | "canceled" | "unpaid" | undefined;
|
|
352
367
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
353
368
|
customer?: string | undefined;
|
|
354
369
|
}, {
|
|
355
370
|
operation: "list_subscriptions";
|
|
356
|
-
status?: "
|
|
371
|
+
status?: "all" | "paused" | "active" | "incomplete" | "incomplete_expired" | "trialing" | "past_due" | "canceled" | "unpaid" | undefined;
|
|
357
372
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
358
373
|
limit?: number | undefined;
|
|
359
374
|
customer?: string | undefined;
|
|
@@ -378,8 +393,8 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
|
|
|
378
393
|
active: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
379
394
|
credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>;
|
|
380
395
|
}, "strip", import("zod").ZodTypeAny, {
|
|
381
|
-
limit: number;
|
|
382
396
|
operation: "list_payment_links";
|
|
397
|
+
limit: number;
|
|
383
398
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
384
399
|
active?: boolean | undefined;
|
|
385
400
|
}, {
|
|
@@ -396,16 +411,16 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
|
|
|
396
411
|
metadata: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodString>>;
|
|
397
412
|
credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>;
|
|
398
413
|
}, "strip", import("zod").ZodTypeAny, {
|
|
399
|
-
price: string;
|
|
400
414
|
operation: "create_subscription";
|
|
415
|
+
price: string;
|
|
401
416
|
customer: string;
|
|
402
417
|
payment_behavior: "default_incomplete" | "error_if_incomplete" | "allow_incomplete";
|
|
403
418
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
404
419
|
metadata?: Record<string, string> | undefined;
|
|
405
420
|
trial_period_days?: number | undefined;
|
|
406
421
|
}, {
|
|
407
|
-
price: string;
|
|
408
422
|
operation: "create_subscription";
|
|
423
|
+
price: string;
|
|
409
424
|
customer: string;
|
|
410
425
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
411
426
|
metadata?: Record<string, string> | undefined;
|
|
@@ -479,11 +494,15 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
|
|
|
479
494
|
email?: string | null | undefined;
|
|
480
495
|
metadata?: Record<string, string> | undefined;
|
|
481
496
|
}>, "many">>;
|
|
497
|
+
has_more: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
498
|
+
next_cursor: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
482
499
|
error: import("zod").ZodString;
|
|
483
500
|
}, "strip", import("zod").ZodTypeAny, {
|
|
484
501
|
success: boolean;
|
|
485
502
|
error: string;
|
|
486
503
|
operation: "list_customers";
|
|
504
|
+
next_cursor?: string | null | undefined;
|
|
505
|
+
has_more?: boolean | undefined;
|
|
487
506
|
customers?: {
|
|
488
507
|
id: string;
|
|
489
508
|
created: number;
|
|
@@ -495,6 +514,8 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
|
|
|
495
514
|
success: boolean;
|
|
496
515
|
error: string;
|
|
497
516
|
operation: "list_customers";
|
|
517
|
+
next_cursor?: string | null | undefined;
|
|
518
|
+
has_more?: boolean | undefined;
|
|
498
519
|
customers?: {
|
|
499
520
|
id: string;
|
|
500
521
|
created: number;
|
|
@@ -502,6 +523,54 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
|
|
|
502
523
|
email?: string | null | undefined;
|
|
503
524
|
metadata?: Record<string, string> | undefined;
|
|
504
525
|
}[] | undefined;
|
|
526
|
+
}>, import("zod").ZodObject<{
|
|
527
|
+
operation: import("zod").ZodLiteral<"retrieve_customer">;
|
|
528
|
+
success: import("zod").ZodBoolean;
|
|
529
|
+
customer: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
530
|
+
id: import("zod").ZodString;
|
|
531
|
+
name: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
532
|
+
email: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
533
|
+
created: import("zod").ZodNumber;
|
|
534
|
+
metadata: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodString>>;
|
|
535
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
536
|
+
id: string;
|
|
537
|
+
created: number;
|
|
538
|
+
name?: string | null | undefined;
|
|
539
|
+
email?: string | null | undefined;
|
|
540
|
+
metadata?: Record<string, string> | undefined;
|
|
541
|
+
}, {
|
|
542
|
+
id: string;
|
|
543
|
+
created: number;
|
|
544
|
+
name?: string | null | undefined;
|
|
545
|
+
email?: string | null | undefined;
|
|
546
|
+
metadata?: Record<string, string> | undefined;
|
|
547
|
+
}>>;
|
|
548
|
+
deleted: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
549
|
+
error: import("zod").ZodString;
|
|
550
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
551
|
+
success: boolean;
|
|
552
|
+
error: string;
|
|
553
|
+
operation: "retrieve_customer";
|
|
554
|
+
deleted?: boolean | undefined;
|
|
555
|
+
customer?: {
|
|
556
|
+
id: string;
|
|
557
|
+
created: number;
|
|
558
|
+
name?: string | null | undefined;
|
|
559
|
+
email?: string | null | undefined;
|
|
560
|
+
metadata?: Record<string, string> | undefined;
|
|
561
|
+
} | undefined;
|
|
562
|
+
}, {
|
|
563
|
+
success: boolean;
|
|
564
|
+
error: string;
|
|
565
|
+
operation: "retrieve_customer";
|
|
566
|
+
deleted?: boolean | undefined;
|
|
567
|
+
customer?: {
|
|
568
|
+
id: string;
|
|
569
|
+
created: number;
|
|
570
|
+
name?: string | null | undefined;
|
|
571
|
+
email?: string | null | undefined;
|
|
572
|
+
metadata?: Record<string, string> | undefined;
|
|
573
|
+
} | undefined;
|
|
505
574
|
}>, import("zod").ZodObject<{
|
|
506
575
|
operation: import("zod").ZodLiteral<"create_product">;
|
|
507
576
|
success: import("zod").ZodBoolean;
|
|
@@ -619,8 +688,8 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
|
|
|
619
688
|
id: string;
|
|
620
689
|
created: number;
|
|
621
690
|
currency: string;
|
|
622
|
-
active: boolean;
|
|
623
691
|
product: string;
|
|
692
|
+
active: boolean;
|
|
624
693
|
unit_amount: number | null;
|
|
625
694
|
metadata?: Record<string, string> | undefined;
|
|
626
695
|
}, {
|
|
@@ -628,8 +697,8 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
|
|
|
628
697
|
id: string;
|
|
629
698
|
created: number;
|
|
630
699
|
currency: string;
|
|
631
|
-
active: boolean;
|
|
632
700
|
product: string;
|
|
701
|
+
active: boolean;
|
|
633
702
|
unit_amount: number | null;
|
|
634
703
|
metadata?: Record<string, string> | undefined;
|
|
635
704
|
}>>;
|
|
@@ -643,8 +712,8 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
|
|
|
643
712
|
id: string;
|
|
644
713
|
created: number;
|
|
645
714
|
currency: string;
|
|
646
|
-
active: boolean;
|
|
647
715
|
product: string;
|
|
716
|
+
active: boolean;
|
|
648
717
|
unit_amount: number | null;
|
|
649
718
|
metadata?: Record<string, string> | undefined;
|
|
650
719
|
} | undefined;
|
|
@@ -657,8 +726,8 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
|
|
|
657
726
|
id: string;
|
|
658
727
|
created: number;
|
|
659
728
|
currency: string;
|
|
660
|
-
active: boolean;
|
|
661
729
|
product: string;
|
|
730
|
+
active: boolean;
|
|
662
731
|
unit_amount: number | null;
|
|
663
732
|
metadata?: Record<string, string> | undefined;
|
|
664
733
|
} | undefined;
|
|
@@ -679,8 +748,8 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
|
|
|
679
748
|
id: string;
|
|
680
749
|
created: number;
|
|
681
750
|
currency: string;
|
|
682
|
-
active: boolean;
|
|
683
751
|
product: string;
|
|
752
|
+
active: boolean;
|
|
684
753
|
unit_amount: number | null;
|
|
685
754
|
metadata?: Record<string, string> | undefined;
|
|
686
755
|
}, {
|
|
@@ -688,8 +757,8 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
|
|
|
688
757
|
id: string;
|
|
689
758
|
created: number;
|
|
690
759
|
currency: string;
|
|
691
|
-
active: boolean;
|
|
692
760
|
product: string;
|
|
761
|
+
active: boolean;
|
|
693
762
|
unit_amount: number | null;
|
|
694
763
|
metadata?: Record<string, string> | undefined;
|
|
695
764
|
}>, "many">>;
|
|
@@ -703,8 +772,8 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
|
|
|
703
772
|
id: string;
|
|
704
773
|
created: number;
|
|
705
774
|
currency: string;
|
|
706
|
-
active: boolean;
|
|
707
775
|
product: string;
|
|
776
|
+
active: boolean;
|
|
708
777
|
unit_amount: number | null;
|
|
709
778
|
metadata?: Record<string, string> | undefined;
|
|
710
779
|
}[] | undefined;
|
|
@@ -717,8 +786,8 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
|
|
|
717
786
|
id: string;
|
|
718
787
|
created: number;
|
|
719
788
|
currency: string;
|
|
720
|
-
active: boolean;
|
|
721
789
|
product: string;
|
|
790
|
+
active: boolean;
|
|
722
791
|
unit_amount: number | null;
|
|
723
792
|
metadata?: Record<string, string> | undefined;
|
|
724
793
|
}[] | undefined;
|
|
@@ -735,14 +804,14 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
|
|
|
735
804
|
url: string;
|
|
736
805
|
id: string;
|
|
737
806
|
active: boolean;
|
|
738
|
-
metadata?: Record<string, string> | undefined;
|
|
739
807
|
created?: number | undefined;
|
|
808
|
+
metadata?: Record<string, string> | undefined;
|
|
740
809
|
}, {
|
|
741
810
|
url: string;
|
|
742
811
|
id: string;
|
|
743
812
|
active: boolean;
|
|
744
|
-
metadata?: Record<string, string> | undefined;
|
|
745
813
|
created?: number | undefined;
|
|
814
|
+
metadata?: Record<string, string> | undefined;
|
|
746
815
|
}>>;
|
|
747
816
|
error: import("zod").ZodString;
|
|
748
817
|
}, "strip", import("zod").ZodTypeAny, {
|
|
@@ -753,8 +822,8 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
|
|
|
753
822
|
url: string;
|
|
754
823
|
id: string;
|
|
755
824
|
active: boolean;
|
|
756
|
-
metadata?: Record<string, string> | undefined;
|
|
757
825
|
created?: number | undefined;
|
|
826
|
+
metadata?: Record<string, string> | undefined;
|
|
758
827
|
} | undefined;
|
|
759
828
|
}, {
|
|
760
829
|
success: boolean;
|
|
@@ -764,8 +833,8 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
|
|
|
764
833
|
url: string;
|
|
765
834
|
id: string;
|
|
766
835
|
active: boolean;
|
|
767
|
-
metadata?: Record<string, string> | undefined;
|
|
768
836
|
created?: number | undefined;
|
|
837
|
+
metadata?: Record<string, string> | undefined;
|
|
769
838
|
} | undefined;
|
|
770
839
|
}>, import("zod").ZodObject<{
|
|
771
840
|
operation: import("zod").ZodLiteral<"create_invoice">;
|
|
@@ -787,8 +856,8 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
|
|
|
787
856
|
total: number;
|
|
788
857
|
currency: string;
|
|
789
858
|
customer: string | null;
|
|
790
|
-
metadata?: Record<string, string> | undefined;
|
|
791
859
|
created?: number | undefined;
|
|
860
|
+
metadata?: Record<string, string> | undefined;
|
|
792
861
|
due_date?: string | null | undefined;
|
|
793
862
|
hosted_invoice_url?: string | null | undefined;
|
|
794
863
|
invoice_pdf?: string | null | undefined;
|
|
@@ -798,8 +867,8 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
|
|
|
798
867
|
total: number;
|
|
799
868
|
currency: string;
|
|
800
869
|
customer: string | null;
|
|
801
|
-
metadata?: Record<string, string> | undefined;
|
|
802
870
|
created?: number | undefined;
|
|
871
|
+
metadata?: Record<string, string> | undefined;
|
|
803
872
|
due_date?: string | null | undefined;
|
|
804
873
|
hosted_invoice_url?: string | null | undefined;
|
|
805
874
|
invoice_pdf?: string | null | undefined;
|
|
@@ -815,8 +884,8 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
|
|
|
815
884
|
total: number;
|
|
816
885
|
currency: string;
|
|
817
886
|
customer: string | null;
|
|
818
|
-
metadata?: Record<string, string> | undefined;
|
|
819
887
|
created?: number | undefined;
|
|
888
|
+
metadata?: Record<string, string> | undefined;
|
|
820
889
|
due_date?: string | null | undefined;
|
|
821
890
|
hosted_invoice_url?: string | null | undefined;
|
|
822
891
|
invoice_pdf?: string | null | undefined;
|
|
@@ -831,8 +900,8 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
|
|
|
831
900
|
total: number;
|
|
832
901
|
currency: string;
|
|
833
902
|
customer: string | null;
|
|
834
|
-
metadata?: Record<string, string> | undefined;
|
|
835
903
|
created?: number | undefined;
|
|
904
|
+
metadata?: Record<string, string> | undefined;
|
|
836
905
|
due_date?: string | null | undefined;
|
|
837
906
|
hosted_invoice_url?: string | null | undefined;
|
|
838
907
|
invoice_pdf?: string | null | undefined;
|
|
@@ -857,8 +926,8 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
|
|
|
857
926
|
total: number;
|
|
858
927
|
currency: string;
|
|
859
928
|
customer: string | null;
|
|
860
|
-
metadata?: Record<string, string> | undefined;
|
|
861
929
|
created?: number | undefined;
|
|
930
|
+
metadata?: Record<string, string> | undefined;
|
|
862
931
|
due_date?: string | null | undefined;
|
|
863
932
|
hosted_invoice_url?: string | null | undefined;
|
|
864
933
|
invoice_pdf?: string | null | undefined;
|
|
@@ -868,8 +937,8 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
|
|
|
868
937
|
total: number;
|
|
869
938
|
currency: string;
|
|
870
939
|
customer: string | null;
|
|
871
|
-
metadata?: Record<string, string> | undefined;
|
|
872
940
|
created?: number | undefined;
|
|
941
|
+
metadata?: Record<string, string> | undefined;
|
|
873
942
|
due_date?: string | null | undefined;
|
|
874
943
|
hosted_invoice_url?: string | null | undefined;
|
|
875
944
|
invoice_pdf?: string | null | undefined;
|
|
@@ -885,8 +954,8 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
|
|
|
885
954
|
total: number;
|
|
886
955
|
currency: string;
|
|
887
956
|
customer: string | null;
|
|
888
|
-
metadata?: Record<string, string> | undefined;
|
|
889
957
|
created?: number | undefined;
|
|
958
|
+
metadata?: Record<string, string> | undefined;
|
|
890
959
|
due_date?: string | null | undefined;
|
|
891
960
|
hosted_invoice_url?: string | null | undefined;
|
|
892
961
|
invoice_pdf?: string | null | undefined;
|
|
@@ -901,8 +970,8 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
|
|
|
901
970
|
total: number;
|
|
902
971
|
currency: string;
|
|
903
972
|
customer: string | null;
|
|
904
|
-
metadata?: Record<string, string> | undefined;
|
|
905
973
|
created?: number | undefined;
|
|
974
|
+
metadata?: Record<string, string> | undefined;
|
|
906
975
|
due_date?: string | null | undefined;
|
|
907
976
|
hosted_invoice_url?: string | null | undefined;
|
|
908
977
|
invoice_pdf?: string | null | undefined;
|
|
@@ -927,8 +996,8 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
|
|
|
927
996
|
total: number;
|
|
928
997
|
currency: string;
|
|
929
998
|
customer: string | null;
|
|
930
|
-
metadata?: Record<string, string> | undefined;
|
|
931
999
|
created?: number | undefined;
|
|
1000
|
+
metadata?: Record<string, string> | undefined;
|
|
932
1001
|
due_date?: string | null | undefined;
|
|
933
1002
|
hosted_invoice_url?: string | null | undefined;
|
|
934
1003
|
invoice_pdf?: string | null | undefined;
|
|
@@ -938,8 +1007,8 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
|
|
|
938
1007
|
total: number;
|
|
939
1008
|
currency: string;
|
|
940
1009
|
customer: string | null;
|
|
941
|
-
metadata?: Record<string, string> | undefined;
|
|
942
1010
|
created?: number | undefined;
|
|
1011
|
+
metadata?: Record<string, string> | undefined;
|
|
943
1012
|
due_date?: string | null | undefined;
|
|
944
1013
|
hosted_invoice_url?: string | null | undefined;
|
|
945
1014
|
invoice_pdf?: string | null | undefined;
|
|
@@ -955,8 +1024,8 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
|
|
|
955
1024
|
total: number;
|
|
956
1025
|
currency: string;
|
|
957
1026
|
customer: string | null;
|
|
958
|
-
metadata?: Record<string, string> | undefined;
|
|
959
1027
|
created?: number | undefined;
|
|
1028
|
+
metadata?: Record<string, string> | undefined;
|
|
960
1029
|
due_date?: string | null | undefined;
|
|
961
1030
|
hosted_invoice_url?: string | null | undefined;
|
|
962
1031
|
invoice_pdf?: string | null | undefined;
|
|
@@ -971,8 +1040,8 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
|
|
|
971
1040
|
total: number;
|
|
972
1041
|
currency: string;
|
|
973
1042
|
customer: string | null;
|
|
974
|
-
metadata?: Record<string, string> | undefined;
|
|
975
1043
|
created?: number | undefined;
|
|
1044
|
+
metadata?: Record<string, string> | undefined;
|
|
976
1045
|
due_date?: string | null | undefined;
|
|
977
1046
|
hosted_invoice_url?: string | null | undefined;
|
|
978
1047
|
invoice_pdf?: string | null | undefined;
|
|
@@ -997,8 +1066,8 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
|
|
|
997
1066
|
total: number;
|
|
998
1067
|
currency: string;
|
|
999
1068
|
customer: string | null;
|
|
1000
|
-
metadata?: Record<string, string> | undefined;
|
|
1001
1069
|
created?: number | undefined;
|
|
1070
|
+
metadata?: Record<string, string> | undefined;
|
|
1002
1071
|
due_date?: string | null | undefined;
|
|
1003
1072
|
hosted_invoice_url?: string | null | undefined;
|
|
1004
1073
|
invoice_pdf?: string | null | undefined;
|
|
@@ -1008,8 +1077,8 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
|
|
|
1008
1077
|
total: number;
|
|
1009
1078
|
currency: string;
|
|
1010
1079
|
customer: string | null;
|
|
1011
|
-
metadata?: Record<string, string> | undefined;
|
|
1012
1080
|
created?: number | undefined;
|
|
1081
|
+
metadata?: Record<string, string> | undefined;
|
|
1013
1082
|
due_date?: string | null | undefined;
|
|
1014
1083
|
hosted_invoice_url?: string | null | undefined;
|
|
1015
1084
|
invoice_pdf?: string | null | undefined;
|
|
@@ -1025,8 +1094,8 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
|
|
|
1025
1094
|
total: number;
|
|
1026
1095
|
currency: string;
|
|
1027
1096
|
customer: string | null;
|
|
1028
|
-
metadata?: Record<string, string> | undefined;
|
|
1029
1097
|
created?: number | undefined;
|
|
1098
|
+
metadata?: Record<string, string> | undefined;
|
|
1030
1099
|
due_date?: string | null | undefined;
|
|
1031
1100
|
hosted_invoice_url?: string | null | undefined;
|
|
1032
1101
|
invoice_pdf?: string | null | undefined;
|
|
@@ -1041,8 +1110,8 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
|
|
|
1041
1110
|
total: number;
|
|
1042
1111
|
currency: string;
|
|
1043
1112
|
customer: string | null;
|
|
1044
|
-
metadata?: Record<string, string> | undefined;
|
|
1045
1113
|
created?: number | undefined;
|
|
1114
|
+
metadata?: Record<string, string> | undefined;
|
|
1046
1115
|
due_date?: string | null | undefined;
|
|
1047
1116
|
hosted_invoice_url?: string | null | undefined;
|
|
1048
1117
|
invoice_pdf?: string | null | undefined;
|
|
@@ -1069,8 +1138,8 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
|
|
|
1069
1138
|
description?: string | null | undefined;
|
|
1070
1139
|
date?: number | undefined;
|
|
1071
1140
|
metadata?: Record<string, string> | undefined;
|
|
1072
|
-
unit_amount?: number | null | undefined;
|
|
1073
1141
|
quantity?: number | undefined;
|
|
1142
|
+
unit_amount?: number | null | undefined;
|
|
1074
1143
|
invoice?: string | null | undefined;
|
|
1075
1144
|
}, {
|
|
1076
1145
|
id: string;
|
|
@@ -1080,8 +1149,8 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
|
|
|
1080
1149
|
description?: string | null | undefined;
|
|
1081
1150
|
date?: number | undefined;
|
|
1082
1151
|
metadata?: Record<string, string> | undefined;
|
|
1083
|
-
unit_amount?: number | null | undefined;
|
|
1084
1152
|
quantity?: number | undefined;
|
|
1153
|
+
unit_amount?: number | null | undefined;
|
|
1085
1154
|
invoice?: string | null | undefined;
|
|
1086
1155
|
}>>;
|
|
1087
1156
|
error: import("zod").ZodString;
|
|
@@ -1097,8 +1166,8 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
|
|
|
1097
1166
|
description?: string | null | undefined;
|
|
1098
1167
|
date?: number | undefined;
|
|
1099
1168
|
metadata?: Record<string, string> | undefined;
|
|
1100
|
-
unit_amount?: number | null | undefined;
|
|
1101
1169
|
quantity?: number | undefined;
|
|
1170
|
+
unit_amount?: number | null | undefined;
|
|
1102
1171
|
invoice?: string | null | undefined;
|
|
1103
1172
|
} | undefined;
|
|
1104
1173
|
}, {
|
|
@@ -1113,8 +1182,8 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
|
|
|
1113
1182
|
description?: string | null | undefined;
|
|
1114
1183
|
date?: number | undefined;
|
|
1115
1184
|
metadata?: Record<string, string> | undefined;
|
|
1116
|
-
unit_amount?: number | null | undefined;
|
|
1117
1185
|
quantity?: number | undefined;
|
|
1186
|
+
unit_amount?: number | null | undefined;
|
|
1118
1187
|
invoice?: string | null | undefined;
|
|
1119
1188
|
} | undefined;
|
|
1120
1189
|
}>, import("zod").ZodObject<{
|
|
@@ -1137,8 +1206,8 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
|
|
|
1137
1206
|
total: number;
|
|
1138
1207
|
currency: string;
|
|
1139
1208
|
customer: string | null;
|
|
1140
|
-
metadata?: Record<string, string> | undefined;
|
|
1141
1209
|
created?: number | undefined;
|
|
1210
|
+
metadata?: Record<string, string> | undefined;
|
|
1142
1211
|
due_date?: string | null | undefined;
|
|
1143
1212
|
hosted_invoice_url?: string | null | undefined;
|
|
1144
1213
|
invoice_pdf?: string | null | undefined;
|
|
@@ -1148,8 +1217,8 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
|
|
|
1148
1217
|
total: number;
|
|
1149
1218
|
currency: string;
|
|
1150
1219
|
customer: string | null;
|
|
1151
|
-
metadata?: Record<string, string> | undefined;
|
|
1152
1220
|
created?: number | undefined;
|
|
1221
|
+
metadata?: Record<string, string> | undefined;
|
|
1153
1222
|
due_date?: string | null | undefined;
|
|
1154
1223
|
hosted_invoice_url?: string | null | undefined;
|
|
1155
1224
|
invoice_pdf?: string | null | undefined;
|
|
@@ -1165,8 +1234,8 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
|
|
|
1165
1234
|
total: number;
|
|
1166
1235
|
currency: string;
|
|
1167
1236
|
customer: string | null;
|
|
1168
|
-
metadata?: Record<string, string> | undefined;
|
|
1169
1237
|
created?: number | undefined;
|
|
1238
|
+
metadata?: Record<string, string> | undefined;
|
|
1170
1239
|
due_date?: string | null | undefined;
|
|
1171
1240
|
hosted_invoice_url?: string | null | undefined;
|
|
1172
1241
|
invoice_pdf?: string | null | undefined;
|
|
@@ -1181,8 +1250,8 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
|
|
|
1181
1250
|
total: number;
|
|
1182
1251
|
currency: string;
|
|
1183
1252
|
customer: string | null;
|
|
1184
|
-
metadata?: Record<string, string> | undefined;
|
|
1185
1253
|
created?: number | undefined;
|
|
1254
|
+
metadata?: Record<string, string> | undefined;
|
|
1186
1255
|
due_date?: string | null | undefined;
|
|
1187
1256
|
hosted_invoice_url?: string | null | undefined;
|
|
1188
1257
|
invoice_pdf?: string | null | undefined;
|
|
@@ -1212,20 +1281,20 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
|
|
|
1212
1281
|
amount: number;
|
|
1213
1282
|
}>, "many">;
|
|
1214
1283
|
}, "strip", import("zod").ZodTypeAny, {
|
|
1215
|
-
|
|
1284
|
+
available: {
|
|
1216
1285
|
currency: string;
|
|
1217
1286
|
amount: number;
|
|
1218
1287
|
}[];
|
|
1219
|
-
|
|
1288
|
+
pending: {
|
|
1220
1289
|
currency: string;
|
|
1221
1290
|
amount: number;
|
|
1222
1291
|
}[];
|
|
1223
1292
|
}, {
|
|
1224
|
-
|
|
1293
|
+
available: {
|
|
1225
1294
|
currency: string;
|
|
1226
1295
|
amount: number;
|
|
1227
1296
|
}[];
|
|
1228
|
-
|
|
1297
|
+
pending: {
|
|
1229
1298
|
currency: string;
|
|
1230
1299
|
amount: number;
|
|
1231
1300
|
}[];
|
|
@@ -1236,11 +1305,11 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
|
|
|
1236
1305
|
error: string;
|
|
1237
1306
|
operation: "get_balance";
|
|
1238
1307
|
balance?: {
|
|
1239
|
-
|
|
1308
|
+
available: {
|
|
1240
1309
|
currency: string;
|
|
1241
1310
|
amount: number;
|
|
1242
1311
|
}[];
|
|
1243
|
-
|
|
1312
|
+
pending: {
|
|
1244
1313
|
currency: string;
|
|
1245
1314
|
amount: number;
|
|
1246
1315
|
}[];
|
|
@@ -1250,11 +1319,11 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
|
|
|
1250
1319
|
error: string;
|
|
1251
1320
|
operation: "get_balance";
|
|
1252
1321
|
balance?: {
|
|
1253
|
-
|
|
1322
|
+
available: {
|
|
1254
1323
|
currency: string;
|
|
1255
1324
|
amount: number;
|
|
1256
1325
|
}[];
|
|
1257
|
-
|
|
1326
|
+
pending: {
|
|
1258
1327
|
currency: string;
|
|
1259
1328
|
amount: number;
|
|
1260
1329
|
}[];
|
|
@@ -1271,7 +1340,7 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
|
|
|
1271
1340
|
created: import("zod").ZodNumber;
|
|
1272
1341
|
metadata: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodString>>;
|
|
1273
1342
|
}, "strip", import("zod").ZodTypeAny, {
|
|
1274
|
-
status: "
|
|
1343
|
+
status: "processing" | "canceled" | "requires_payment_method" | "requires_confirmation" | "requires_action" | "requires_capture" | "succeeded";
|
|
1275
1344
|
id: string;
|
|
1276
1345
|
created: number;
|
|
1277
1346
|
currency: string;
|
|
@@ -1279,7 +1348,7 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
|
|
|
1279
1348
|
metadata?: Record<string, string> | undefined;
|
|
1280
1349
|
customer?: string | null | undefined;
|
|
1281
1350
|
}, {
|
|
1282
|
-
status: "
|
|
1351
|
+
status: "processing" | "canceled" | "requires_payment_method" | "requires_confirmation" | "requires_action" | "requires_capture" | "succeeded";
|
|
1283
1352
|
id: string;
|
|
1284
1353
|
created: number;
|
|
1285
1354
|
currency: string;
|
|
@@ -1293,7 +1362,7 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
|
|
|
1293
1362
|
error: string;
|
|
1294
1363
|
operation: "list_payment_intents";
|
|
1295
1364
|
payment_intents?: {
|
|
1296
|
-
status: "
|
|
1365
|
+
status: "processing" | "canceled" | "requires_payment_method" | "requires_confirmation" | "requires_action" | "requires_capture" | "succeeded";
|
|
1297
1366
|
id: string;
|
|
1298
1367
|
created: number;
|
|
1299
1368
|
currency: string;
|
|
@@ -1306,7 +1375,7 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
|
|
|
1306
1375
|
error: string;
|
|
1307
1376
|
operation: "list_payment_intents";
|
|
1308
1377
|
payment_intents?: {
|
|
1309
|
-
status: "
|
|
1378
|
+
status: "processing" | "canceled" | "requires_payment_method" | "requires_confirmation" | "requires_action" | "requires_capture" | "succeeded";
|
|
1310
1379
|
id: string;
|
|
1311
1380
|
created: number;
|
|
1312
1381
|
currency: string;
|
|
@@ -1327,7 +1396,7 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
|
|
|
1327
1396
|
created: import("zod").ZodNumber;
|
|
1328
1397
|
metadata: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodString>>;
|
|
1329
1398
|
}, "strip", import("zod").ZodTypeAny, {
|
|
1330
|
-
status: "
|
|
1399
|
+
status: "paused" | "active" | "incomplete" | "incomplete_expired" | "trialing" | "past_due" | "canceled" | "unpaid";
|
|
1331
1400
|
id: string;
|
|
1332
1401
|
created: number;
|
|
1333
1402
|
customer: string;
|
|
@@ -1336,7 +1405,7 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
|
|
|
1336
1405
|
current_period_start?: number | undefined;
|
|
1337
1406
|
current_period_end?: number | undefined;
|
|
1338
1407
|
}, {
|
|
1339
|
-
status: "
|
|
1408
|
+
status: "paused" | "active" | "incomplete" | "incomplete_expired" | "trialing" | "past_due" | "canceled" | "unpaid";
|
|
1340
1409
|
id: string;
|
|
1341
1410
|
created: number;
|
|
1342
1411
|
customer: string;
|
|
@@ -1351,7 +1420,7 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
|
|
|
1351
1420
|
error: string;
|
|
1352
1421
|
operation: "list_subscriptions";
|
|
1353
1422
|
subscriptions?: {
|
|
1354
|
-
status: "
|
|
1423
|
+
status: "paused" | "active" | "incomplete" | "incomplete_expired" | "trialing" | "past_due" | "canceled" | "unpaid";
|
|
1355
1424
|
id: string;
|
|
1356
1425
|
created: number;
|
|
1357
1426
|
customer: string;
|
|
@@ -1365,7 +1434,7 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
|
|
|
1365
1434
|
error: string;
|
|
1366
1435
|
operation: "list_subscriptions";
|
|
1367
1436
|
subscriptions?: {
|
|
1368
|
-
status: "
|
|
1437
|
+
status: "paused" | "active" | "incomplete" | "incomplete_expired" | "trialing" | "past_due" | "canceled" | "unpaid";
|
|
1369
1438
|
id: string;
|
|
1370
1439
|
created: number;
|
|
1371
1440
|
customer: string;
|
|
@@ -1387,7 +1456,7 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
|
|
|
1387
1456
|
created: import("zod").ZodNumber;
|
|
1388
1457
|
metadata: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodString>>;
|
|
1389
1458
|
}, "strip", import("zod").ZodTypeAny, {
|
|
1390
|
-
status: "
|
|
1459
|
+
status: "paused" | "active" | "incomplete" | "incomplete_expired" | "trialing" | "past_due" | "canceled" | "unpaid";
|
|
1391
1460
|
id: string;
|
|
1392
1461
|
created: number;
|
|
1393
1462
|
customer: string;
|
|
@@ -1396,7 +1465,7 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
|
|
|
1396
1465
|
current_period_start?: number | undefined;
|
|
1397
1466
|
current_period_end?: number | undefined;
|
|
1398
1467
|
}, {
|
|
1399
|
-
status: "
|
|
1468
|
+
status: "paused" | "active" | "incomplete" | "incomplete_expired" | "trialing" | "past_due" | "canceled" | "unpaid";
|
|
1400
1469
|
id: string;
|
|
1401
1470
|
created: number;
|
|
1402
1471
|
customer: string;
|
|
@@ -1411,7 +1480,7 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
|
|
|
1411
1480
|
error: string;
|
|
1412
1481
|
operation: "cancel_subscription";
|
|
1413
1482
|
subscription?: {
|
|
1414
|
-
status: "
|
|
1483
|
+
status: "paused" | "active" | "incomplete" | "incomplete_expired" | "trialing" | "past_due" | "canceled" | "unpaid";
|
|
1415
1484
|
id: string;
|
|
1416
1485
|
created: number;
|
|
1417
1486
|
customer: string;
|
|
@@ -1425,7 +1494,7 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
|
|
|
1425
1494
|
error: string;
|
|
1426
1495
|
operation: "cancel_subscription";
|
|
1427
1496
|
subscription?: {
|
|
1428
|
-
status: "
|
|
1497
|
+
status: "paused" | "active" | "incomplete" | "incomplete_expired" | "trialing" | "past_due" | "canceled" | "unpaid";
|
|
1429
1498
|
id: string;
|
|
1430
1499
|
created: number;
|
|
1431
1500
|
customer: string;
|
|
@@ -1447,14 +1516,14 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
|
|
|
1447
1516
|
url: string;
|
|
1448
1517
|
id: string;
|
|
1449
1518
|
active: boolean;
|
|
1450
|
-
metadata?: Record<string, string> | undefined;
|
|
1451
1519
|
created?: number | undefined;
|
|
1520
|
+
metadata?: Record<string, string> | undefined;
|
|
1452
1521
|
}, {
|
|
1453
1522
|
url: string;
|
|
1454
1523
|
id: string;
|
|
1455
1524
|
active: boolean;
|
|
1456
|
-
metadata?: Record<string, string> | undefined;
|
|
1457
1525
|
created?: number | undefined;
|
|
1526
|
+
metadata?: Record<string, string> | undefined;
|
|
1458
1527
|
}>, "many">>;
|
|
1459
1528
|
error: import("zod").ZodString;
|
|
1460
1529
|
}, "strip", import("zod").ZodTypeAny, {
|
|
@@ -1465,8 +1534,8 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
|
|
|
1465
1534
|
url: string;
|
|
1466
1535
|
id: string;
|
|
1467
1536
|
active: boolean;
|
|
1468
|
-
metadata?: Record<string, string> | undefined;
|
|
1469
1537
|
created?: number | undefined;
|
|
1538
|
+
metadata?: Record<string, string> | undefined;
|
|
1470
1539
|
}[] | undefined;
|
|
1471
1540
|
}, {
|
|
1472
1541
|
success: boolean;
|
|
@@ -1476,8 +1545,8 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
|
|
|
1476
1545
|
url: string;
|
|
1477
1546
|
id: string;
|
|
1478
1547
|
active: boolean;
|
|
1479
|
-
metadata?: Record<string, string> | undefined;
|
|
1480
1548
|
created?: number | undefined;
|
|
1549
|
+
metadata?: Record<string, string> | undefined;
|
|
1481
1550
|
}[] | undefined;
|
|
1482
1551
|
}>, import("zod").ZodObject<{
|
|
1483
1552
|
operation: import("zod").ZodLiteral<"create_subscription">;
|
|
@@ -1492,7 +1561,7 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
|
|
|
1492
1561
|
created: import("zod").ZodNumber;
|
|
1493
1562
|
metadata: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodString>>;
|
|
1494
1563
|
}, "strip", import("zod").ZodTypeAny, {
|
|
1495
|
-
status: "
|
|
1564
|
+
status: "paused" | "active" | "incomplete" | "incomplete_expired" | "trialing" | "past_due" | "canceled" | "unpaid";
|
|
1496
1565
|
id: string;
|
|
1497
1566
|
created: number;
|
|
1498
1567
|
customer: string;
|
|
@@ -1501,7 +1570,7 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
|
|
|
1501
1570
|
current_period_start?: number | undefined;
|
|
1502
1571
|
current_period_end?: number | undefined;
|
|
1503
1572
|
}, {
|
|
1504
|
-
status: "
|
|
1573
|
+
status: "paused" | "active" | "incomplete" | "incomplete_expired" | "trialing" | "past_due" | "canceled" | "unpaid";
|
|
1505
1574
|
id: string;
|
|
1506
1575
|
created: number;
|
|
1507
1576
|
customer: string;
|
|
@@ -1516,7 +1585,7 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
|
|
|
1516
1585
|
error: string;
|
|
1517
1586
|
operation: "create_subscription";
|
|
1518
1587
|
subscription?: {
|
|
1519
|
-
status: "
|
|
1588
|
+
status: "paused" | "active" | "incomplete" | "incomplete_expired" | "trialing" | "past_due" | "canceled" | "unpaid";
|
|
1520
1589
|
id: string;
|
|
1521
1590
|
created: number;
|
|
1522
1591
|
customer: string;
|
|
@@ -1530,7 +1599,7 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
|
|
|
1530
1599
|
error: string;
|
|
1531
1600
|
operation: "create_subscription";
|
|
1532
1601
|
subscription?: {
|
|
1533
|
-
status: "
|
|
1602
|
+
status: "paused" | "active" | "incomplete" | "incomplete_expired" | "trialing" | "past_due" | "canceled" | "unpaid";
|
|
1534
1603
|
id: string;
|
|
1535
1604
|
created: number;
|
|
1536
1605
|
customer: string;
|
|
@@ -1552,6 +1621,7 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
|
|
|
1552
1621
|
}>>;
|
|
1553
1622
|
private createCustomer;
|
|
1554
1623
|
private listCustomers;
|
|
1624
|
+
private retrieveCustomer;
|
|
1555
1625
|
private createProduct;
|
|
1556
1626
|
private listProducts;
|
|
1557
1627
|
private createPrice;
|