@raideno/convex-stripe 0.1.2 → 0.1.3
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/server/actions/pay.d.ts +52 -52
- package/dist/server/actions/setup.d.ts +3 -3
- package/dist/server/actions/subscribe.d.ts +7 -7
- package/dist/server/index.d.ts +451 -73
- package/dist/server/schema/charge.d.ts +294 -0
- package/dist/server/schema/checkout-session.d.ts +21 -21
- package/dist/server/schema/coupon.d.ts +3 -3
- package/dist/server/schema/credit-note.d.ts +228 -0
- package/dist/server/schema/customer.d.ts +19 -19
- package/dist/server/schema/dispute.d.ts +76 -0
- package/dist/server/schema/early-fraud-warning.d.ts +40 -0
- package/dist/server/schema/index.d.ts +4157 -1605
- package/dist/server/schema/invoice.d.ts +35 -35
- package/dist/server/schema/payment-intent.d.ts +28 -28
- package/dist/server/schema/payment-method.d.ts +248 -0
- package/dist/server/schema/payout.d.ts +11 -11
- package/dist/server/schema/plan.d.ts +112 -0
- package/dist/server/schema/price.d.ts +17 -17
- package/dist/server/schema/product.d.ts +7 -7
- package/dist/server/schema/promotion-code.d.ts +7 -7
- package/dist/server/schema/refund.d.ts +11 -11
- package/dist/server/schema/review.d.ts +9 -9
- package/dist/server/schema/setup-intent.d.ts +156 -0
- package/dist/server/schema/subscription-schedule.d.ts +468 -0
- package/dist/server/schema/tax-id.d.ts +120 -0
- package/dist/server/store/index.d.ts +450 -72
- package/dist/server/sync/charges.handler.d.ts +5 -0
- package/dist/server/sync/credit-notes.handler.d.ts +5 -0
- package/dist/server/sync/disputes.handler.d.ts +5 -0
- package/dist/server/sync/early-fraud-warnings.handler.d.ts +5 -0
- package/dist/server/sync/payment-methods.handler.d.ts +5 -0
- package/dist/server/sync/plans.handler.d.ts +5 -0
- package/dist/server/sync/setup-intents.handler.d.ts +5 -0
- package/dist/server/sync/subscription-schedules.handler.d.ts +5 -0
- package/dist/server/sync/tax-id.handler.d.ts +5 -0
- package/dist/server/webhooks/charges.handler.d.ts +2 -0
- package/dist/server/webhooks/credit-notes.handler.d.ts +2 -0
- package/dist/server/webhooks/disputes.handler.d.ts +2 -0
- package/dist/server/webhooks/early-fraud-warnings.handler.d.ts +2 -0
- package/dist/server/webhooks/payment-methods.handler.d.ts +2 -0
- package/dist/server/webhooks/plans.handler.d.ts +2 -0
- package/dist/server/webhooks/refunds.handler.d.ts +1 -1
- package/dist/server/webhooks/setup-intent.handler.d.ts +2 -0
- package/dist/server/webhooks/subscription-schedules.handler.d.ts +2 -0
- package/dist/server/webhooks/tax-id.handler.d.ts +2 -0
- package/dist/server.js +2022 -89
- package/package.json +1 -3
- /package/dist/server/sync/{checkouts-session.handler.d.ts → checkout-sessions.handler.d.ts} +0 -0
- /package/dist/server/sync/{payment-intent.handler.d.ts → payment-intents.handler.d.ts} +0 -0
- /package/dist/server/webhooks/{checkouts-session.handler.d.ts → checkout-sessions.handler.d.ts} +0 -0
package/dist/server/index.d.ts
CHANGED
|
@@ -25,7 +25,7 @@ export declare const internalConvexStripe: (configuration_: InputConfiguration)
|
|
|
25
25
|
operation: string;
|
|
26
26
|
table: string;
|
|
27
27
|
}, Promise<{
|
|
28
|
-
id: import('convex/values').GenericId<"stripe_products" | "stripe_prices" | "stripe_customers" | "stripe_subscriptions" | "stripe_coupons" | "stripe_promotion_codes" | "stripe_payouts" | "stripe_refunds" | "stripe_payment_intents" | "stripe_checkout_sessions" | "stripe_invoices" | "stripe_reviews">;
|
|
28
|
+
id: import('convex/values').GenericId<"stripe_products" | "stripe_prices" | "stripe_customers" | "stripe_subscriptions" | "stripe_coupons" | "stripe_promotion_codes" | "stripe_payouts" | "stripe_refunds" | "stripe_payment_intents" | "stripe_checkout_sessions" | "stripe_invoices" | "stripe_reviews" | "stripe_plans" | "stripe_disputes" | "stripe_early_fraud_warnings" | "stripe_tax_ids" | "stripe_setup_intents" | "stripe_credit_notes" | "stripe_charges" | "stripe_payment_methods" | "stripe_subscription_schedules">;
|
|
29
29
|
deleted?: undefined;
|
|
30
30
|
doc?: undefined;
|
|
31
31
|
docs?: undefined;
|
|
@@ -50,11 +50,11 @@ export declare const internalConvexStripe: (configuration_: InputConfiguration)
|
|
|
50
50
|
unit_label?: string | null | undefined;
|
|
51
51
|
object: string;
|
|
52
52
|
id: string;
|
|
53
|
-
url: string | null;
|
|
54
|
-
created: number;
|
|
55
|
-
livemode: boolean;
|
|
56
53
|
name: string;
|
|
57
54
|
description: string | null;
|
|
55
|
+
created: number;
|
|
56
|
+
livemode: boolean;
|
|
57
|
+
url: string | null;
|
|
58
58
|
active: boolean;
|
|
59
59
|
images: string[];
|
|
60
60
|
package_dimensions: {
|
|
@@ -82,20 +82,20 @@ export declare const internalConvexStripe: (configuration_: InputConfiguration)
|
|
|
82
82
|
currency: string;
|
|
83
83
|
created: number;
|
|
84
84
|
livemode: boolean;
|
|
85
|
+
active: boolean;
|
|
86
|
+
nickname: string | null;
|
|
87
|
+
billing_scheme: "per_unit" | "tiered";
|
|
88
|
+
tiers_mode: "graduated" | "volume" | null;
|
|
85
89
|
recurring: {
|
|
86
90
|
interval: "day" | "week" | "month" | "year";
|
|
87
91
|
interval_count: number;
|
|
88
|
-
trial_period_days: number | null;
|
|
89
92
|
meter: string | null;
|
|
93
|
+
trial_period_days: number | null;
|
|
90
94
|
usage_type: "licensed" | "metered";
|
|
91
95
|
} | null;
|
|
92
|
-
active: boolean;
|
|
93
|
-
nickname: string | null;
|
|
94
96
|
productId: string;
|
|
95
97
|
unit_amount: number | null;
|
|
96
|
-
billing_scheme: "per_unit" | "tiered";
|
|
97
98
|
lookup_key: string | null;
|
|
98
|
-
tiers_mode: "graduated" | "volume" | null;
|
|
99
99
|
transform_quantity: {
|
|
100
100
|
divide_by: number;
|
|
101
101
|
round: "up" | "down";
|
|
@@ -108,9 +108,6 @@ export declare const internalConvexStripe: (configuration_: InputConfiguration)
|
|
|
108
108
|
_id: import('convex/values').GenericId<"stripe_customers">;
|
|
109
109
|
_creationTime: number;
|
|
110
110
|
stripe: {
|
|
111
|
-
currency?: string | null | undefined;
|
|
112
|
-
metadata?: Record<string, string | number | null> | null | undefined;
|
|
113
|
-
name?: string | null | undefined;
|
|
114
111
|
address?: {
|
|
115
112
|
city?: string | null | undefined;
|
|
116
113
|
country?: string | null | undefined;
|
|
@@ -119,11 +116,13 @@ export declare const internalConvexStripe: (configuration_: InputConfiguration)
|
|
|
119
116
|
postal_code?: string | null | undefined;
|
|
120
117
|
state?: string | null | undefined;
|
|
121
118
|
} | null | undefined;
|
|
119
|
+
email?: string | null | undefined;
|
|
120
|
+
name?: string | null | undefined;
|
|
122
121
|
phone?: string | null | undefined;
|
|
122
|
+
currency?: string | null | undefined;
|
|
123
123
|
description?: string | null | undefined;
|
|
124
|
-
|
|
124
|
+
metadata?: Record<string, string | number | null> | null | undefined;
|
|
125
125
|
shipping?: {
|
|
126
|
-
name?: string | undefined;
|
|
127
126
|
address?: {
|
|
128
127
|
city?: string | null | undefined;
|
|
129
128
|
country?: string | null | undefined;
|
|
@@ -132,10 +131,12 @@ export declare const internalConvexStripe: (configuration_: InputConfiguration)
|
|
|
132
131
|
postal_code?: string | null | undefined;
|
|
133
132
|
state?: string | null | undefined;
|
|
134
133
|
} | undefined;
|
|
134
|
+
name?: string | undefined;
|
|
135
135
|
phone?: string | null | undefined;
|
|
136
136
|
carrier?: string | null | undefined;
|
|
137
137
|
tracking_number?: string | null | undefined;
|
|
138
138
|
} | null | undefined;
|
|
139
|
+
discount?: any;
|
|
139
140
|
tax?: {
|
|
140
141
|
ip_address?: string | null | undefined;
|
|
141
142
|
automatic_tax: "failed" | "not_collecting" | "supported" | "unrecognized_location";
|
|
@@ -148,7 +149,6 @@ export declare const internalConvexStripe: (configuration_: InputConfiguration)
|
|
|
148
149
|
cash_balance?: any;
|
|
149
150
|
default_source?: string | null | undefined;
|
|
150
151
|
delinquent?: boolean | null | undefined;
|
|
151
|
-
discount?: any;
|
|
152
152
|
invoice_credit_balance?: any;
|
|
153
153
|
invoice_prefix?: string | null | undefined;
|
|
154
154
|
invoice_settings?: any;
|
|
@@ -179,10 +179,10 @@ export declare const internalConvexStripe: (configuration_: InputConfiguration)
|
|
|
179
179
|
_id: import('convex/values').GenericId<"stripe_coupons">;
|
|
180
180
|
_creationTime: number;
|
|
181
181
|
stripe: {
|
|
182
|
+
name?: string | null | undefined;
|
|
182
183
|
currency?: string | null | undefined;
|
|
183
184
|
metadata?: Record<string, string | number | null> | null | undefined;
|
|
184
185
|
amount_off?: number | null | undefined;
|
|
185
|
-
name?: string | null | undefined;
|
|
186
186
|
percent_off?: number | null | undefined;
|
|
187
187
|
applies_to?: {
|
|
188
188
|
products: string[];
|
|
@@ -217,10 +217,10 @@ export declare const internalConvexStripe: (configuration_: InputConfiguration)
|
|
|
217
217
|
livemode: boolean;
|
|
218
218
|
times_redeemed: number;
|
|
219
219
|
coupon: {
|
|
220
|
+
name?: string | null | undefined;
|
|
220
221
|
currency?: string | null | undefined;
|
|
221
222
|
metadata?: Record<string, string | number | null> | null | undefined;
|
|
222
223
|
amount_off?: number | null | undefined;
|
|
223
|
-
name?: string | null | undefined;
|
|
224
224
|
percent_off?: number | null | undefined;
|
|
225
225
|
applies_to?: {
|
|
226
226
|
products: string[];
|
|
@@ -256,17 +256,17 @@ export declare const internalConvexStripe: (configuration_: InputConfiguration)
|
|
|
256
256
|
_id: import('convex/values').GenericId<"stripe_payouts">;
|
|
257
257
|
_creationTime: number;
|
|
258
258
|
stripe: {
|
|
259
|
+
balance_transaction?: string | null | undefined;
|
|
259
260
|
currency?: string | null | undefined;
|
|
260
|
-
metadata?: Record<string, string | number | null> | null | undefined;
|
|
261
261
|
description?: string | null | undefined;
|
|
262
|
+
metadata?: Record<string, string | number | null> | null | undefined;
|
|
262
263
|
statement_descriptor?: string | null | undefined;
|
|
263
264
|
application_fee_amount?: number | null | undefined;
|
|
264
|
-
application_only?: string | null | undefined;
|
|
265
|
-
balance_transaction?: string | null | undefined;
|
|
266
|
-
destination?: string | null | undefined;
|
|
267
265
|
failure_balance_transaction?: string | null | undefined;
|
|
268
266
|
failure_code?: string | null | undefined;
|
|
269
267
|
failure_message?: string | null | undefined;
|
|
268
|
+
application_only?: string | null | undefined;
|
|
269
|
+
destination?: string | null | undefined;
|
|
270
270
|
original_payout?: string | null | undefined;
|
|
271
271
|
payout_method?: string | null | undefined;
|
|
272
272
|
reconciliation_status?: "completed" | "in_progress" | "not_applicable" | undefined;
|
|
@@ -278,10 +278,10 @@ export declare const internalConvexStripe: (configuration_: InputConfiguration)
|
|
|
278
278
|
object: string;
|
|
279
279
|
type: "card" | "bank_account";
|
|
280
280
|
id: string;
|
|
281
|
+
amount: number;
|
|
281
282
|
status: string;
|
|
282
283
|
created: number;
|
|
283
284
|
livemode: boolean;
|
|
284
|
-
amount: number;
|
|
285
285
|
automatic: boolean;
|
|
286
286
|
arrival_date: number;
|
|
287
287
|
method: string;
|
|
@@ -293,16 +293,16 @@ export declare const internalConvexStripe: (configuration_: InputConfiguration)
|
|
|
293
293
|
_id: import('convex/values').GenericId<"stripe_refunds">;
|
|
294
294
|
_creationTime: number;
|
|
295
295
|
stripe: {
|
|
296
|
+
balance_transaction?: string | null | undefined;
|
|
297
|
+
description?: string | null | undefined;
|
|
296
298
|
metadata?: Record<string, string | number | null> | null | undefined;
|
|
297
299
|
payment_intent?: string | null | undefined;
|
|
298
300
|
status?: string | null | undefined;
|
|
299
|
-
|
|
301
|
+
failure_balance_transaction?: string | null | undefined;
|
|
300
302
|
receipt_number?: string | null | undefined;
|
|
301
303
|
charge?: string | null | undefined;
|
|
302
|
-
next_action?: any;
|
|
303
|
-
balance_transaction?: string | null | undefined;
|
|
304
|
-
failure_balance_transaction?: string | null | undefined;
|
|
305
304
|
reason?: string | null | undefined;
|
|
305
|
+
next_action?: any;
|
|
306
306
|
destination_details?: any;
|
|
307
307
|
failure_reason?: string | null | undefined;
|
|
308
308
|
instructions_email?: string | null | undefined;
|
|
@@ -311,9 +311,9 @@ export declare const internalConvexStripe: (configuration_: InputConfiguration)
|
|
|
311
311
|
transfer_reversal?: string | null | undefined;
|
|
312
312
|
object: string;
|
|
313
313
|
id: string;
|
|
314
|
+
amount: number;
|
|
314
315
|
currency: string;
|
|
315
316
|
created: number;
|
|
316
|
-
amount: number;
|
|
317
317
|
};
|
|
318
318
|
last_synced_at: number;
|
|
319
319
|
refundId: string;
|
|
@@ -322,24 +322,30 @@ export declare const internalConvexStripe: (configuration_: InputConfiguration)
|
|
|
322
322
|
_creationTime: number;
|
|
323
323
|
stripe: {
|
|
324
324
|
customer?: string | null | undefined;
|
|
325
|
+
description?: string | null | undefined;
|
|
325
326
|
metadata?: Record<string, string | number | null> | null | undefined;
|
|
327
|
+
receipt_email?: string | null | undefined;
|
|
328
|
+
shipping?: any;
|
|
329
|
+
statement_descriptor?: string | null | undefined;
|
|
330
|
+
statement_descriptor_suffix?: string | null | undefined;
|
|
331
|
+
application?: string | null | undefined;
|
|
332
|
+
application_fee_amount?: number | null | undefined;
|
|
333
|
+
on_behalf_of?: string | null | undefined;
|
|
334
|
+
payment_method?: string | null | undefined;
|
|
335
|
+
presentment_details?: any;
|
|
336
|
+
review?: string | null | undefined;
|
|
337
|
+
transfer_data?: any;
|
|
338
|
+
transfer_group?: string | null | undefined;
|
|
326
339
|
client_secret?: string | null | undefined;
|
|
327
340
|
payment_method_configuration_details?: {
|
|
328
341
|
parent?: string | null | undefined;
|
|
329
342
|
id: string;
|
|
330
343
|
} | null | undefined;
|
|
331
344
|
payment_method_options?: any;
|
|
332
|
-
presentment_details?: any;
|
|
333
|
-
description?: string | null | undefined;
|
|
334
|
-
shipping?: any;
|
|
335
|
-
payment_method?: string | null | undefined;
|
|
336
|
-
application?: string | null | undefined;
|
|
337
|
-
on_behalf_of?: string | null | undefined;
|
|
338
|
-
statement_descriptor?: string | null | undefined;
|
|
339
345
|
last_payment_error?: {
|
|
340
346
|
payment_method?: any;
|
|
341
|
-
advice_code?: string | null | undefined;
|
|
342
347
|
charge?: string | null | undefined;
|
|
348
|
+
advice_code?: string | null | undefined;
|
|
343
349
|
code?: string | null | undefined;
|
|
344
350
|
decline_code?: string | null | undefined;
|
|
345
351
|
doc_url?: string | null | undefined;
|
|
@@ -359,27 +365,21 @@ export declare const internalConvexStripe: (configuration_: InputConfiguration)
|
|
|
359
365
|
enabled: boolean;
|
|
360
366
|
} | null | undefined;
|
|
361
367
|
next_action?: any;
|
|
362
|
-
receipt_email?: string | null | undefined;
|
|
363
|
-
statement_descriptor_suffix?: string | null | undefined;
|
|
364
368
|
amount_details?: {
|
|
365
369
|
tip?: {
|
|
366
370
|
amount?: number | null | undefined;
|
|
367
371
|
} | null | undefined;
|
|
368
372
|
} | null | undefined;
|
|
369
|
-
application_fee_amount?: number | null | undefined;
|
|
370
373
|
canceled_at?: number | null | undefined;
|
|
371
|
-
cancellation_reason?: "expired" | "
|
|
372
|
-
review?: string | null | undefined;
|
|
373
|
-
transfer_data?: any;
|
|
374
|
-
transfer_group?: string | null | undefined;
|
|
374
|
+
cancellation_reason?: "expired" | "duplicate" | "fraudulent" | "abandoned" | "automatic" | "failed_invoice" | "requested_by_customer" | "void_invoice" | null | undefined;
|
|
375
375
|
object: string;
|
|
376
376
|
id: string;
|
|
377
|
+
amount: number;
|
|
377
378
|
currency: string | null;
|
|
378
|
-
status: "canceled" | "processing" | "requires_action" | "requires_capture" | "requires_confirmation" | "requires_payment_method"
|
|
379
|
+
status: "succeeded" | "canceled" | "processing" | "requires_action" | "requires_capture" | "requires_confirmation" | "requires_payment_method";
|
|
379
380
|
created: number;
|
|
380
381
|
livemode: boolean;
|
|
381
382
|
payment_method_types: string[];
|
|
382
|
-
amount: number;
|
|
383
383
|
setup_future_usage: "off_session" | "on_session" | null;
|
|
384
384
|
amount_capturable: number;
|
|
385
385
|
amount_received: number;
|
|
@@ -393,14 +393,15 @@ export declare const internalConvexStripe: (configuration_: InputConfiguration)
|
|
|
393
393
|
_id: import('convex/values').GenericId<"stripe_checkout_sessions">;
|
|
394
394
|
_creationTime: number;
|
|
395
395
|
stripe: {
|
|
396
|
-
subscription?: string | null | undefined;
|
|
397
|
-
client_reference_id?: string | null | undefined;
|
|
398
396
|
currency?: string | null | undefined;
|
|
399
397
|
customer?: string | null | undefined;
|
|
400
|
-
customer_email?: string | null | undefined;
|
|
401
|
-
line_items?: any[] | null | undefined;
|
|
402
398
|
metadata?: Record<string, string | number | null> | null | undefined;
|
|
403
399
|
payment_intent?: string | null | undefined;
|
|
400
|
+
presentment_details?: any;
|
|
401
|
+
subscription?: string | null | undefined;
|
|
402
|
+
client_reference_id?: string | null | undefined;
|
|
403
|
+
customer_email?: string | null | undefined;
|
|
404
|
+
line_items?: any[] | null | undefined;
|
|
404
405
|
return_url?: string | null | undefined;
|
|
405
406
|
success_url?: string | null | undefined;
|
|
406
407
|
ui_mode?: "custom" | "embedded" | "hosted" | null | undefined;
|
|
@@ -431,7 +432,6 @@ export declare const internalConvexStripe: (configuration_: InputConfiguration)
|
|
|
431
432
|
payment_method_options?: any;
|
|
432
433
|
permissions?: any;
|
|
433
434
|
phone_number_collection?: any;
|
|
434
|
-
presentment_details?: any;
|
|
435
435
|
recovered_from?: string | null | undefined;
|
|
436
436
|
redirect_on_completion?: "always" | "if_required" | "never" | null | undefined;
|
|
437
437
|
saved_payment_method_options?: any;
|
|
@@ -444,15 +444,15 @@ export declare const internalConvexStripe: (configuration_: InputConfiguration)
|
|
|
444
444
|
wallet_options?: any;
|
|
445
445
|
object: string;
|
|
446
446
|
id: string;
|
|
447
|
-
automatic_tax: any;
|
|
448
|
-
mode: "payment" | "setup" | "subscription";
|
|
449
|
-
payment_status: "no_payment_required" | "paid" | "unpaid";
|
|
450
447
|
status: "complete" | "expired" | "open" | null;
|
|
451
448
|
created: number;
|
|
449
|
+
livemode: boolean;
|
|
450
|
+
automatic_tax: any;
|
|
451
|
+
mode: "payment" | "setup" | "subscription";
|
|
452
|
+
payment_status: "paid" | "no_payment_required" | "unpaid";
|
|
452
453
|
custom_fields: any[];
|
|
453
454
|
custom_text: any;
|
|
454
455
|
expires_at: number;
|
|
455
|
-
livemode: boolean;
|
|
456
456
|
payment_method_types: string[];
|
|
457
457
|
shipping_options: any[];
|
|
458
458
|
};
|
|
@@ -463,23 +463,30 @@ export declare const internalConvexStripe: (configuration_: InputConfiguration)
|
|
|
463
463
|
_creationTime: number;
|
|
464
464
|
stripe: {
|
|
465
465
|
number?: string | null | undefined;
|
|
466
|
+
description?: string | null | undefined;
|
|
467
|
+
metadata?: Record<string, string | number | null> | null | undefined;
|
|
468
|
+
statement_descriptor?: string | null | undefined;
|
|
469
|
+
application?: string | null | undefined;
|
|
470
|
+
on_behalf_of?: string | null | undefined;
|
|
471
|
+
receipt_number?: string | null | undefined;
|
|
466
472
|
automatic_tax?: any;
|
|
467
473
|
customer_email?: string | null | undefined;
|
|
468
|
-
metadata?: Record<string, string | number | null> | null | undefined;
|
|
469
474
|
custom_fields?: any[] | null | undefined;
|
|
470
475
|
shipping_cost?: any;
|
|
471
|
-
|
|
476
|
+
lines?: any;
|
|
477
|
+
effective_at?: number | null | undefined;
|
|
478
|
+
subtotal_excluding_tax?: number | null | undefined;
|
|
479
|
+
total_excluding_tax?: number | null | undefined;
|
|
480
|
+
total_taxes?: any[] | null | undefined;
|
|
472
481
|
default_source?: string | null | undefined;
|
|
473
482
|
test_clock?: string | null | undefined;
|
|
474
483
|
auto_advance?: boolean | undefined;
|
|
475
484
|
confirmation_secret?: any;
|
|
476
485
|
hosted_invoice_url?: string | null | undefined;
|
|
477
|
-
lines?: any;
|
|
478
486
|
parent?: any;
|
|
479
487
|
account_country?: string | null | undefined;
|
|
480
488
|
account_name?: string | null | undefined;
|
|
481
489
|
account_tax_ids?: string[] | null | undefined;
|
|
482
|
-
application?: string | null | undefined;
|
|
483
490
|
automatically_finalizes_at?: number | null | undefined;
|
|
484
491
|
customer_address?: any;
|
|
485
492
|
customer_name?: string | null | undefined;
|
|
@@ -488,7 +495,6 @@ export declare const internalConvexStripe: (configuration_: InputConfiguration)
|
|
|
488
495
|
customer_tax_ids?: any[] | null | undefined;
|
|
489
496
|
default_payment_method?: string | null | undefined;
|
|
490
497
|
due_date?: number | null | undefined;
|
|
491
|
-
effective_at?: number | null | undefined;
|
|
492
498
|
ending_balance?: number | null | undefined;
|
|
493
499
|
footer?: string | null | undefined;
|
|
494
500
|
from_invoice?: any;
|
|
@@ -497,38 +503,33 @@ export declare const internalConvexStripe: (configuration_: InputConfiguration)
|
|
|
497
503
|
last_finalization_error?: any;
|
|
498
504
|
latest_revision?: string | null | undefined;
|
|
499
505
|
next_payment_attempt?: number | null | undefined;
|
|
500
|
-
on_behalf_of?: string | null | undefined;
|
|
501
506
|
payment_settings?: any;
|
|
502
507
|
payments?: any;
|
|
503
|
-
receipt_number?: string | null | undefined;
|
|
504
508
|
rendering?: any;
|
|
505
509
|
shipping_details?: any;
|
|
506
|
-
statement_descriptor?: string | null | undefined;
|
|
507
510
|
status_transitions?: any;
|
|
508
|
-
subtotal_excluding_tax?: number | null | undefined;
|
|
509
511
|
threshold_reason?: any;
|
|
510
512
|
total_discount_amounts?: any[] | null | undefined;
|
|
511
|
-
total_excluding_tax?: number | null | undefined;
|
|
512
513
|
total_pretax_credit_amounts?: any[] | null | undefined;
|
|
513
|
-
total_taxes?: any[] | null | undefined;
|
|
514
514
|
webhooks_delivered_at?: number | null | undefined;
|
|
515
515
|
object: string;
|
|
516
516
|
id: string;
|
|
517
517
|
currency: string;
|
|
518
518
|
customer: string;
|
|
519
|
-
status: "paid" | "open" | "
|
|
519
|
+
status: "paid" | "open" | "void" | "draft" | "uncollectible";
|
|
520
520
|
created: number;
|
|
521
|
-
discounts: string[];
|
|
522
521
|
livemode: boolean;
|
|
522
|
+
discounts: string[];
|
|
523
|
+
subtotal: number;
|
|
524
|
+
total: number;
|
|
525
|
+
amount_shipping: number;
|
|
523
526
|
collection_method: "charge_automatically" | "send_invoice";
|
|
524
527
|
period_end: number;
|
|
525
528
|
period_start: number;
|
|
526
|
-
total: number;
|
|
527
529
|
amount_due: number;
|
|
528
530
|
amount_overpaid: number;
|
|
529
531
|
amount_paid: number;
|
|
530
532
|
amount_remaining: number;
|
|
531
|
-
amount_shipping: number;
|
|
532
533
|
attempt_count: number;
|
|
533
534
|
attempted: boolean;
|
|
534
535
|
billing_reason: "subscription" | "automatic_pending_invoice_item_invoice" | "manual" | "quote_accept" | "subscription_create" | "subscription_cycle" | "subscription_threshold" | "subscription_update" | "upcoming" | null;
|
|
@@ -537,7 +538,6 @@ export declare const internalConvexStripe: (configuration_: InputConfiguration)
|
|
|
537
538
|
post_payment_credit_notes_amount: number;
|
|
538
539
|
pre_payment_credit_notes_amount: number;
|
|
539
540
|
starting_balance: number;
|
|
540
|
-
subtotal: number;
|
|
541
541
|
};
|
|
542
542
|
last_synced_at: number;
|
|
543
543
|
invoiceId: string;
|
|
@@ -546,10 +546,10 @@ export declare const internalConvexStripe: (configuration_: InputConfiguration)
|
|
|
546
546
|
_creationTime: number;
|
|
547
547
|
stripe: {
|
|
548
548
|
payment_intent?: string | null | undefined;
|
|
549
|
-
ip_address?: string | null | undefined;
|
|
550
549
|
charge?: string | null | undefined;
|
|
550
|
+
ip_address?: string | null | undefined;
|
|
551
551
|
billing_zip?: string | null | undefined;
|
|
552
|
-
closed_reason?: "
|
|
552
|
+
closed_reason?: "disputed" | "refunded" | "canceled" | "approved" | "refunded_as_fraud" | "redacted" | "payment_never_settled" | "acknowledged" | null | undefined;
|
|
553
553
|
ip_address_location?: {
|
|
554
554
|
city?: string | null | undefined;
|
|
555
555
|
country?: string | null | undefined;
|
|
@@ -565,14 +565,392 @@ export declare const internalConvexStripe: (configuration_: InputConfiguration)
|
|
|
565
565
|
} | null | undefined;
|
|
566
566
|
object: string;
|
|
567
567
|
id: string;
|
|
568
|
-
open: boolean;
|
|
569
568
|
created: number;
|
|
570
569
|
livemode: boolean;
|
|
570
|
+
open: boolean;
|
|
571
571
|
reason: string;
|
|
572
572
|
opened_reason: "manual" | "rule";
|
|
573
573
|
};
|
|
574
574
|
last_synced_at: number;
|
|
575
575
|
reviewId: string;
|
|
576
|
+
} | {
|
|
577
|
+
_id: import('convex/values').GenericId<"stripe_plans">;
|
|
578
|
+
_creationTime: number;
|
|
579
|
+
stripe: {
|
|
580
|
+
amount?: number | null | undefined;
|
|
581
|
+
metadata?: Record<string, string | number | null> | null | undefined;
|
|
582
|
+
nickname?: string | null | undefined;
|
|
583
|
+
product?: string | null | undefined;
|
|
584
|
+
amount_decimal?: string | null | undefined;
|
|
585
|
+
meter?: string | null | undefined;
|
|
586
|
+
tiers?: any[] | null | undefined;
|
|
587
|
+
tiers_mode?: "graduated" | "volume" | null | undefined;
|
|
588
|
+
transform_usage?: {
|
|
589
|
+
divide_by: number;
|
|
590
|
+
round: "up" | "down";
|
|
591
|
+
} | null | undefined;
|
|
592
|
+
trial_period_days?: number | null | undefined;
|
|
593
|
+
object: string;
|
|
594
|
+
id: string;
|
|
595
|
+
currency: string;
|
|
596
|
+
created: number;
|
|
597
|
+
livemode: boolean;
|
|
598
|
+
active: boolean;
|
|
599
|
+
interval: "day" | "week" | "month" | "year";
|
|
600
|
+
billing_scheme: "per_unit" | "tiered";
|
|
601
|
+
interval_count: number;
|
|
602
|
+
usage_type: string;
|
|
603
|
+
};
|
|
604
|
+
last_synced_at: number;
|
|
605
|
+
planId: string;
|
|
606
|
+
} | {
|
|
607
|
+
_id: import('convex/values').GenericId<"stripe_disputes">;
|
|
608
|
+
_creationTime: number;
|
|
609
|
+
stripe: {
|
|
610
|
+
metadata?: Record<string, string | number | null> | null | undefined;
|
|
611
|
+
payment_intent?: string | null | undefined;
|
|
612
|
+
object: string;
|
|
613
|
+
id: string;
|
|
614
|
+
amount: number;
|
|
615
|
+
currency: string;
|
|
616
|
+
payment_method_details: any;
|
|
617
|
+
status: "lost" | "needs_response" | "prevented" | "under_review" | "warning_closed" | "warning_needs_response" | "warning_under_review" | "won";
|
|
618
|
+
created: number;
|
|
619
|
+
livemode: boolean;
|
|
620
|
+
charge: string;
|
|
621
|
+
reason: string;
|
|
622
|
+
evidence: any;
|
|
623
|
+
balance_transactions: any[];
|
|
624
|
+
enhanced_eligibility_types: ("visa_compelling_evidence_3" | "visa_compliance")[];
|
|
625
|
+
evidence_details: any;
|
|
626
|
+
is_charge_refundable: boolean;
|
|
627
|
+
};
|
|
628
|
+
last_synced_at: number;
|
|
629
|
+
disputeId: string;
|
|
630
|
+
} | {
|
|
631
|
+
_id: import('convex/values').GenericId<"stripe_early_fraud_warnings">;
|
|
632
|
+
_creationTime: number;
|
|
633
|
+
stripe: {
|
|
634
|
+
payment_intent?: string | null | undefined;
|
|
635
|
+
object: string;
|
|
636
|
+
id: string;
|
|
637
|
+
created: number;
|
|
638
|
+
livemode: boolean;
|
|
639
|
+
charge: string;
|
|
640
|
+
actionable: boolean;
|
|
641
|
+
fraud_type: string;
|
|
642
|
+
};
|
|
643
|
+
last_synced_at: number;
|
|
644
|
+
earlyFraudWarningId: string;
|
|
645
|
+
} | {
|
|
646
|
+
_id: import('convex/values').GenericId<"stripe_tax_ids">;
|
|
647
|
+
_creationTime: number;
|
|
648
|
+
stripe: {
|
|
649
|
+
country?: string | null | undefined;
|
|
650
|
+
customer?: string | null | undefined;
|
|
651
|
+
owner?: {
|
|
652
|
+
customer?: string | null | undefined;
|
|
653
|
+
application?: string | null | undefined;
|
|
654
|
+
account?: string | null | undefined;
|
|
655
|
+
type: "customer" | "application" | "account" | "self";
|
|
656
|
+
} | null | undefined;
|
|
657
|
+
verification?: {
|
|
658
|
+
verified_address?: string | null | undefined;
|
|
659
|
+
verified_name?: string | null | undefined;
|
|
660
|
+
status: "pending" | "unavailable" | "unverified" | "verified";
|
|
661
|
+
} | null | undefined;
|
|
662
|
+
object: string;
|
|
663
|
+
type: string;
|
|
664
|
+
id: string;
|
|
665
|
+
created: number;
|
|
666
|
+
livemode: boolean;
|
|
667
|
+
value: string;
|
|
668
|
+
};
|
|
669
|
+
last_synced_at: number;
|
|
670
|
+
taxIdId: string;
|
|
671
|
+
} | {
|
|
672
|
+
_id: import('convex/values').GenericId<"stripe_setup_intents">;
|
|
673
|
+
_creationTime: number;
|
|
674
|
+
stripe: {
|
|
675
|
+
customer?: string | null | undefined;
|
|
676
|
+
description?: string | null | undefined;
|
|
677
|
+
metadata?: Record<string, string | number | null> | null | undefined;
|
|
678
|
+
application?: string | null | undefined;
|
|
679
|
+
on_behalf_of?: string | null | undefined;
|
|
680
|
+
payment_method?: string | null | undefined;
|
|
681
|
+
client_secret?: string | null | undefined;
|
|
682
|
+
payment_method_configuration_details?: {
|
|
683
|
+
parent?: string | null | undefined;
|
|
684
|
+
id: string;
|
|
685
|
+
} | null | undefined;
|
|
686
|
+
automatic_payment_methods?: {
|
|
687
|
+
allow_redirects?: "always" | "never" | null | undefined;
|
|
688
|
+
enabled?: boolean | null | undefined;
|
|
689
|
+
} | null | undefined;
|
|
690
|
+
cancellation_reason?: "duplicate" | "abandoned" | "requested_by_customer" | null | undefined;
|
|
691
|
+
attach_to_self?: boolean | null | undefined;
|
|
692
|
+
latest_attempt?: string | null | undefined;
|
|
693
|
+
mandate?: string | null | undefined;
|
|
694
|
+
single_use_mandate?: string | null | undefined;
|
|
695
|
+
object: string;
|
|
696
|
+
id: string;
|
|
697
|
+
status: "succeeded" | "canceled" | "processing" | "requires_action" | "requires_confirmation" | "requires_payment_method";
|
|
698
|
+
created: number;
|
|
699
|
+
livemode: boolean;
|
|
700
|
+
payment_method_options: any;
|
|
701
|
+
payment_method_types: string[];
|
|
702
|
+
next_action: any;
|
|
703
|
+
last_setup_error: any;
|
|
704
|
+
usage: string;
|
|
705
|
+
flow_directions: ("inbound" | "outbound")[] | null;
|
|
706
|
+
};
|
|
707
|
+
last_synced_at: number;
|
|
708
|
+
setupIntentId: string;
|
|
709
|
+
} | {
|
|
710
|
+
_id: import('convex/values').GenericId<"stripe_credit_notes">;
|
|
711
|
+
_creationTime: number;
|
|
712
|
+
stripe: {
|
|
713
|
+
customer?: string | null | undefined;
|
|
714
|
+
metadata?: Record<string, string | number | null> | null | undefined;
|
|
715
|
+
invoice?: string | null | undefined;
|
|
716
|
+
memo?: string | null | undefined;
|
|
717
|
+
customer_balance_transaction?: string | null | undefined;
|
|
718
|
+
effective_at?: number | null | undefined;
|
|
719
|
+
out_of_band_amount?: number | null | undefined;
|
|
720
|
+
subtotal_excluding_tax?: number | null | undefined;
|
|
721
|
+
total_excluding_tax?: number | null | undefined;
|
|
722
|
+
voided_at?: number | null | undefined;
|
|
723
|
+
number: string;
|
|
724
|
+
object: string;
|
|
725
|
+
type: "mixed" | "post_payment" | "pre_payment";
|
|
726
|
+
id: string;
|
|
727
|
+
amount: number;
|
|
728
|
+
currency: string;
|
|
729
|
+
status: "issued" | "void";
|
|
730
|
+
created: number;
|
|
731
|
+
livemode: boolean;
|
|
732
|
+
refunds: {
|
|
733
|
+
amount_refunded: number;
|
|
734
|
+
refund: string;
|
|
735
|
+
}[];
|
|
736
|
+
shipping_cost: any;
|
|
737
|
+
lines: any;
|
|
738
|
+
reason: "duplicate" | "fraudulent" | "order_change" | "product_unsatisfactory" | null;
|
|
739
|
+
subtotal: number;
|
|
740
|
+
total: number;
|
|
741
|
+
amount_shipping: number;
|
|
742
|
+
discount_amount: number;
|
|
743
|
+
discount_amounts: {
|
|
744
|
+
amount: number;
|
|
745
|
+
discount: string;
|
|
746
|
+
}[];
|
|
747
|
+
pdf: string;
|
|
748
|
+
post_payment_amount: number;
|
|
749
|
+
pre_payment_amount: number;
|
|
750
|
+
pretax_credit_amounts: {
|
|
751
|
+
discount?: string | null | undefined;
|
|
752
|
+
credit_balance_transaction?: string | null | undefined;
|
|
753
|
+
type: "discount" | "credit_balance_transaction";
|
|
754
|
+
amount: number;
|
|
755
|
+
}[];
|
|
756
|
+
total_taxes: any;
|
|
757
|
+
};
|
|
758
|
+
last_synced_at: number;
|
|
759
|
+
creditNoteId: string;
|
|
760
|
+
} | {
|
|
761
|
+
_id: import('convex/values').GenericId<"stripe_charges">;
|
|
762
|
+
_creationTime: number;
|
|
763
|
+
stripe: {
|
|
764
|
+
balance_transaction?: string | null | undefined;
|
|
765
|
+
customer?: string | null | undefined;
|
|
766
|
+
description?: string | null | undefined;
|
|
767
|
+
metadata?: Record<string, string | number | null> | null | undefined;
|
|
768
|
+
payment_intent?: string | null | undefined;
|
|
769
|
+
receipt_email?: string | null | undefined;
|
|
770
|
+
statement_descriptor?: string | null | undefined;
|
|
771
|
+
statement_descriptor_suffix?: string | null | undefined;
|
|
772
|
+
application?: string | null | undefined;
|
|
773
|
+
application_fee?: string | null | undefined;
|
|
774
|
+
application_fee_amount?: number | null | undefined;
|
|
775
|
+
calculated_statement_descriptor?: string | null | undefined;
|
|
776
|
+
failure_balance_transaction?: string | null | undefined;
|
|
777
|
+
failure_code?: string | null | undefined;
|
|
778
|
+
failure_message?: string | null | undefined;
|
|
779
|
+
on_behalf_of?: string | null | undefined;
|
|
780
|
+
payment_method?: string | null | undefined;
|
|
781
|
+
receipt_number?: string | null | undefined;
|
|
782
|
+
receipt_url?: string | null | undefined;
|
|
783
|
+
review?: string | null | undefined;
|
|
784
|
+
source_transfer?: string | null | undefined;
|
|
785
|
+
transfer?: string | null | undefined;
|
|
786
|
+
object: string;
|
|
787
|
+
id: string;
|
|
788
|
+
amount: number;
|
|
789
|
+
billing_details: {
|
|
790
|
+
address?: {
|
|
791
|
+
city?: string | null | undefined;
|
|
792
|
+
country?: string | null | undefined;
|
|
793
|
+
line1?: string | null | undefined;
|
|
794
|
+
line2?: string | null | undefined;
|
|
795
|
+
postal_code?: string | null | undefined;
|
|
796
|
+
state?: string | null | undefined;
|
|
797
|
+
} | null | undefined;
|
|
798
|
+
email?: string | null | undefined;
|
|
799
|
+
name?: string | null | undefined;
|
|
800
|
+
phone?: string | null | undefined;
|
|
801
|
+
tax_id?: string | null | undefined;
|
|
802
|
+
};
|
|
803
|
+
currency: string;
|
|
804
|
+
disputed: boolean;
|
|
805
|
+
payment_method_details: any;
|
|
806
|
+
refunded: boolean;
|
|
807
|
+
shipping: any;
|
|
808
|
+
status: "succeeded" | "failed" | "pending";
|
|
809
|
+
amount_captured: number;
|
|
810
|
+
amount_refunded: number;
|
|
811
|
+
captured: boolean;
|
|
812
|
+
created: number;
|
|
813
|
+
fraud_details: any;
|
|
814
|
+
livemode: boolean;
|
|
815
|
+
outcome: any;
|
|
816
|
+
paid: boolean;
|
|
817
|
+
presentment_details: any;
|
|
818
|
+
radar_options: any;
|
|
819
|
+
refunds: any;
|
|
820
|
+
transfer_data: any;
|
|
821
|
+
transfer_group: any;
|
|
822
|
+
};
|
|
823
|
+
last_synced_at: number;
|
|
824
|
+
chargeId: string;
|
|
825
|
+
} | {
|
|
826
|
+
_id: import('convex/values').GenericId<"stripe_payment_methods">;
|
|
827
|
+
_creationTime: number;
|
|
828
|
+
stripe: {
|
|
829
|
+
customer?: string | null | undefined;
|
|
830
|
+
metadata?: Record<string, string | number | null> | null | undefined;
|
|
831
|
+
object: string;
|
|
832
|
+
type: string;
|
|
833
|
+
id: string;
|
|
834
|
+
link: any;
|
|
835
|
+
billing_details: any;
|
|
836
|
+
created: number;
|
|
837
|
+
livemode: boolean;
|
|
838
|
+
radar_options: any;
|
|
839
|
+
acss_debit: any;
|
|
840
|
+
affirm: any;
|
|
841
|
+
afterpay_clearpay: any;
|
|
842
|
+
alipay: any;
|
|
843
|
+
alma: any;
|
|
844
|
+
amazon_pay: any;
|
|
845
|
+
au_becs_debit: any;
|
|
846
|
+
bacs_debit: any;
|
|
847
|
+
bancontact: any;
|
|
848
|
+
billie: any;
|
|
849
|
+
blik: any;
|
|
850
|
+
boleto: any;
|
|
851
|
+
card: any;
|
|
852
|
+
cashapp: any;
|
|
853
|
+
crypto: any;
|
|
854
|
+
customer_balance: any;
|
|
855
|
+
eps: any;
|
|
856
|
+
fpx: any;
|
|
857
|
+
giropay: any;
|
|
858
|
+
grabpay: any;
|
|
859
|
+
ideal: any;
|
|
860
|
+
kakao_pay: any;
|
|
861
|
+
klarna: any;
|
|
862
|
+
konbini: any;
|
|
863
|
+
kr_card: any;
|
|
864
|
+
mobilepay: any;
|
|
865
|
+
multibanco: any;
|
|
866
|
+
naver_pay: any;
|
|
867
|
+
nz_bank_account: any;
|
|
868
|
+
oxxo: any;
|
|
869
|
+
p24: any;
|
|
870
|
+
pay_by_bank: any;
|
|
871
|
+
payco: any;
|
|
872
|
+
paynow: any;
|
|
873
|
+
paypal: any;
|
|
874
|
+
pix: any;
|
|
875
|
+
promptpay: any;
|
|
876
|
+
revolut_pay: any;
|
|
877
|
+
samsung_pay: any;
|
|
878
|
+
satispay: any;
|
|
879
|
+
sepa_debit: any;
|
|
880
|
+
sofort: any;
|
|
881
|
+
swish: any;
|
|
882
|
+
twint: any;
|
|
883
|
+
us_bank_account: any;
|
|
884
|
+
wechat_pay: any;
|
|
885
|
+
zip: any;
|
|
886
|
+
allow_redisplay: "always" | "limited" | "unspecified" | null;
|
|
887
|
+
card_present: any;
|
|
888
|
+
interac_present: any;
|
|
889
|
+
};
|
|
890
|
+
last_synced_at: number;
|
|
891
|
+
paymentMethodId: string;
|
|
892
|
+
} | {
|
|
893
|
+
_id: import('convex/values').GenericId<"stripe_subscription_schedules">;
|
|
894
|
+
_creationTime: number;
|
|
895
|
+
stripe: {
|
|
896
|
+
metadata?: Record<string, string | number | null> | null | undefined;
|
|
897
|
+
application?: string | null | undefined;
|
|
898
|
+
test_clock?: string | null | undefined;
|
|
899
|
+
canceled_at?: number | null | undefined;
|
|
900
|
+
current_phase?: {
|
|
901
|
+
end_date: number;
|
|
902
|
+
start_date: number;
|
|
903
|
+
} | null | undefined;
|
|
904
|
+
completed_at?: number | null | undefined;
|
|
905
|
+
default_settings?: {
|
|
906
|
+
description?: string | null | undefined;
|
|
907
|
+
on_behalf_of?: string | null | undefined;
|
|
908
|
+
transfer_data?: {
|
|
909
|
+
amount_percent?: number | null | undefined;
|
|
910
|
+
destination: string;
|
|
911
|
+
} | null | undefined;
|
|
912
|
+
automatic_tax?: {
|
|
913
|
+
enabled?: boolean | null | undefined;
|
|
914
|
+
disabled_reason?: "requires_location_inputs" | null | undefined;
|
|
915
|
+
liability?: {
|
|
916
|
+
account?: string | null | undefined;
|
|
917
|
+
type: "account" | "self";
|
|
918
|
+
} | null | undefined;
|
|
919
|
+
} | null | undefined;
|
|
920
|
+
invoice_settings?: {
|
|
921
|
+
account_tax_ids?: string[] | null | undefined;
|
|
922
|
+
days_until_due?: number | null | undefined;
|
|
923
|
+
issuer: {
|
|
924
|
+
account?: string | null | undefined;
|
|
925
|
+
type: "account" | "self";
|
|
926
|
+
};
|
|
927
|
+
} | null | undefined;
|
|
928
|
+
collection_method?: "charge_automatically" | "send_invoice" | null | undefined;
|
|
929
|
+
default_payment_method?: string | null | undefined;
|
|
930
|
+
application_fee_percent?: number | null | undefined;
|
|
931
|
+
billing_thresholds?: {
|
|
932
|
+
amount_gte?: number | null | undefined;
|
|
933
|
+
reset_billing_cycle_anchor?: boolean | null | undefined;
|
|
934
|
+
} | null | undefined;
|
|
935
|
+
billing_cycle_anchor: "automatic" | "phase_start";
|
|
936
|
+
} | null | undefined;
|
|
937
|
+
released_at?: number | null | undefined;
|
|
938
|
+
released_subscription?: string | null | undefined;
|
|
939
|
+
object: string;
|
|
940
|
+
id: string;
|
|
941
|
+
customer: string;
|
|
942
|
+
status: "canceled" | "completed" | "active" | "not_started" | "released";
|
|
943
|
+
created: number;
|
|
944
|
+
livemode: boolean;
|
|
945
|
+
phases: any;
|
|
946
|
+
billing_mode: {
|
|
947
|
+
updated_at?: number | null | undefined;
|
|
948
|
+
type: "classic" | "flexible";
|
|
949
|
+
};
|
|
950
|
+
end_behavior: "none" | "cancel" | "release" | "renew";
|
|
951
|
+
};
|
|
952
|
+
last_synced_at: number;
|
|
953
|
+
subscriptionScheduleId: string;
|
|
576
954
|
})[];
|
|
577
955
|
id?: undefined;
|
|
578
956
|
deleted?: undefined;
|
|
@@ -580,8 +958,8 @@ export declare const internalConvexStripe: (configuration_: InputConfiguration)
|
|
|
580
958
|
} | undefined>>;
|
|
581
959
|
sync: import('convex/server').RegisteredAction<"internal", {}, Promise<void>>;
|
|
582
960
|
setup: import('convex/server').RegisteredAction<"internal", {
|
|
583
|
-
metadata?: Record<string, any> | undefined;
|
|
584
961
|
email?: string | undefined;
|
|
962
|
+
metadata?: Record<string, any> | undefined;
|
|
585
963
|
entityId: string;
|
|
586
964
|
}, Promise<{
|
|
587
965
|
customerId: string;
|