@openmeter/sdk 1.0.0-beta-253cc22d1efb → 1.0.0-beta-c19dca6a9462
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/cjs/src/client/schemas.d.cts +11 -0
- package/dist/cjs/src/zod/index.cjs +167 -28
- package/dist/cjs/src/zod/index.cjs.map +1 -1
- package/dist/cjs/src/zod/index.d.cts +46 -0
- package/dist/src/client/schemas.d.ts +11 -0
- package/dist/src/zod/index.d.ts +46 -0
- package/dist/src/zod/index.js +138 -0
- package/dist/src/zod/index.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
package/dist/src/zod/index.d.ts
CHANGED
|
@@ -71,6 +71,7 @@ export declare const createAddonBodyRateCardsItemOneEntitlementTemplateOneOneIss
|
|
|
71
71
|
export declare const createAddonBodyRateCardsItemOneEntitlementTemplateOneOneIssueAfterResetPriorityMax = 255;
|
|
72
72
|
export declare const createAddonBodyRateCardsItemOneEntitlementTemplateOneOnePreserveOverageAtResetDefault = false;
|
|
73
73
|
export declare const createAddonBodyRateCardsItemOneTaxConfigOneStripeOneCodeRegExp: RegExp;
|
|
74
|
+
export declare const createAddonBodyRateCardsItemOneTaxConfigOneTaxCodeIdRegExp: RegExp;
|
|
74
75
|
export declare const createAddonBodyRateCardsItemOnePriceOneAmountOneRegExp: RegExp;
|
|
75
76
|
export declare const createAddonBodyRateCardsItemOnePriceOnePaymentTermDefault = "in_advance";
|
|
76
77
|
export declare const createAddonBodyRateCardsItemOneDiscountsOneUsageOneQuantityOneRegExp: RegExp;
|
|
@@ -86,6 +87,7 @@ export declare const createAddonBodyRateCardsItemTwoEntitlementTemplateOneOneIss
|
|
|
86
87
|
export declare const createAddonBodyRateCardsItemTwoEntitlementTemplateOneOneIssueAfterResetPriorityMax = 255;
|
|
87
88
|
export declare const createAddonBodyRateCardsItemTwoEntitlementTemplateOneOnePreserveOverageAtResetDefault = false;
|
|
88
89
|
export declare const createAddonBodyRateCardsItemTwoTaxConfigOneStripeOneCodeRegExp: RegExp;
|
|
90
|
+
export declare const createAddonBodyRateCardsItemTwoTaxConfigOneTaxCodeIdRegExp: RegExp;
|
|
89
91
|
export declare const createAddonBodyRateCardsItemTwoPriceOneOneAmountOneRegExp: RegExp;
|
|
90
92
|
export declare const createAddonBodyRateCardsItemTwoPriceOneOnePaymentTermDefault = "in_advance";
|
|
91
93
|
export declare const createAddonBodyRateCardsItemTwoPriceOneTwoAmountOneRegExp: RegExp;
|
|
@@ -173,6 +175,7 @@ export declare const CreateAddonBody: zod.ZodObject<{
|
|
|
173
175
|
stripe: zod.ZodOptional<zod.ZodObject<{
|
|
174
176
|
code: zod.z.ZodCoercedString<unknown>;
|
|
175
177
|
}, zod.z.core.$strip>>;
|
|
178
|
+
taxCodeId: zod.ZodOptional<zod.z.ZodCoercedString<unknown>>;
|
|
176
179
|
}, zod.z.core.$strip>>;
|
|
177
180
|
type: zod.ZodEnum<{
|
|
178
181
|
flat_fee: "flat_fee";
|
|
@@ -282,6 +285,7 @@ export declare const CreateAddonBody: zod.ZodObject<{
|
|
|
282
285
|
stripe: zod.ZodOptional<zod.ZodObject<{
|
|
283
286
|
code: zod.z.ZodCoercedString<unknown>;
|
|
284
287
|
}, zod.z.core.$strip>>;
|
|
288
|
+
taxCodeId: zod.ZodOptional<zod.z.ZodCoercedString<unknown>>;
|
|
285
289
|
}, zod.z.core.$strip>>;
|
|
286
290
|
type: zod.ZodEnum<{
|
|
287
291
|
usage_based: "usage_based";
|
|
@@ -310,6 +314,7 @@ export declare const updateAddonBodyRateCardsItemOneEntitlementTemplateOneOneIss
|
|
|
310
314
|
export declare const updateAddonBodyRateCardsItemOneEntitlementTemplateOneOneIssueAfterResetPriorityMax = 255;
|
|
311
315
|
export declare const updateAddonBodyRateCardsItemOneEntitlementTemplateOneOnePreserveOverageAtResetDefault = false;
|
|
312
316
|
export declare const updateAddonBodyRateCardsItemOneTaxConfigOneStripeOneCodeRegExp: RegExp;
|
|
317
|
+
export declare const updateAddonBodyRateCardsItemOneTaxConfigOneTaxCodeIdRegExp: RegExp;
|
|
313
318
|
export declare const updateAddonBodyRateCardsItemOnePriceOneAmountOneRegExp: RegExp;
|
|
314
319
|
export declare const updateAddonBodyRateCardsItemOnePriceOnePaymentTermDefault = "in_advance";
|
|
315
320
|
export declare const updateAddonBodyRateCardsItemOneDiscountsOneUsageOneQuantityOneRegExp: RegExp;
|
|
@@ -325,6 +330,7 @@ export declare const updateAddonBodyRateCardsItemTwoEntitlementTemplateOneOneIss
|
|
|
325
330
|
export declare const updateAddonBodyRateCardsItemTwoEntitlementTemplateOneOneIssueAfterResetPriorityMax = 255;
|
|
326
331
|
export declare const updateAddonBodyRateCardsItemTwoEntitlementTemplateOneOnePreserveOverageAtResetDefault = false;
|
|
327
332
|
export declare const updateAddonBodyRateCardsItemTwoTaxConfigOneStripeOneCodeRegExp: RegExp;
|
|
333
|
+
export declare const updateAddonBodyRateCardsItemTwoTaxConfigOneTaxCodeIdRegExp: RegExp;
|
|
328
334
|
export declare const updateAddonBodyRateCardsItemTwoPriceOneOneAmountOneRegExp: RegExp;
|
|
329
335
|
export declare const updateAddonBodyRateCardsItemTwoPriceOneOnePaymentTermDefault = "in_advance";
|
|
330
336
|
export declare const updateAddonBodyRateCardsItemTwoPriceOneTwoAmountOneRegExp: RegExp;
|
|
@@ -410,6 +416,7 @@ export declare const UpdateAddonBody: zod.ZodObject<{
|
|
|
410
416
|
stripe: zod.ZodOptional<zod.ZodObject<{
|
|
411
417
|
code: zod.z.ZodCoercedString<unknown>;
|
|
412
418
|
}, zod.z.core.$strip>>;
|
|
419
|
+
taxCodeId: zod.ZodOptional<zod.z.ZodCoercedString<unknown>>;
|
|
413
420
|
}, zod.z.core.$strip>>;
|
|
414
421
|
type: zod.ZodEnum<{
|
|
415
422
|
flat_fee: "flat_fee";
|
|
@@ -519,6 +526,7 @@ export declare const UpdateAddonBody: zod.ZodObject<{
|
|
|
519
526
|
stripe: zod.ZodOptional<zod.ZodObject<{
|
|
520
527
|
code: zod.z.ZodCoercedString<unknown>;
|
|
521
528
|
}, zod.z.core.$strip>>;
|
|
529
|
+
taxCodeId: zod.ZodOptional<zod.z.ZodCoercedString<unknown>>;
|
|
522
530
|
}, zod.z.core.$strip>>;
|
|
523
531
|
type: zod.ZodEnum<{
|
|
524
532
|
usage_based: "usage_based";
|
|
@@ -829,6 +837,7 @@ export declare const createPendingInvoiceLineBodyCurrencyOneRegExp: RegExp;
|
|
|
829
837
|
export declare const createPendingInvoiceLineBodyLinesItemNameMax = 256;
|
|
830
838
|
export declare const createPendingInvoiceLineBodyLinesItemDescriptionMax = 1024;
|
|
831
839
|
export declare const createPendingInvoiceLineBodyLinesItemTaxConfigOneStripeOneCodeRegExp: RegExp;
|
|
840
|
+
export declare const createPendingInvoiceLineBodyLinesItemTaxConfigOneTaxCodeIdRegExp: RegExp;
|
|
832
841
|
export declare const createPendingInvoiceLineBodyLinesItemPriceOneOneAmountOneRegExp: RegExp;
|
|
833
842
|
export declare const createPendingInvoiceLineBodyLinesItemPriceOneOnePaymentTermDefault = "in_advance";
|
|
834
843
|
export declare const createPendingInvoiceLineBodyLinesItemPriceOneTwoAmountOneRegExp: RegExp;
|
|
@@ -852,6 +861,7 @@ export declare const createPendingInvoiceLineBodyLinesItemFeatureKeyRegExp: RegE
|
|
|
852
861
|
export declare const createPendingInvoiceLineBodyLinesItemRateCardOneFeatureKeyMax = 64;
|
|
853
862
|
export declare const createPendingInvoiceLineBodyLinesItemRateCardOneFeatureKeyRegExp: RegExp;
|
|
854
863
|
export declare const createPendingInvoiceLineBodyLinesItemRateCardOneTaxConfigOneStripeOneCodeRegExp: RegExp;
|
|
864
|
+
export declare const createPendingInvoiceLineBodyLinesItemRateCardOneTaxConfigOneTaxCodeIdRegExp: RegExp;
|
|
855
865
|
export declare const createPendingInvoiceLineBodyLinesItemRateCardOnePriceOneOneAmountOneRegExp: RegExp;
|
|
856
866
|
export declare const createPendingInvoiceLineBodyLinesItemRateCardOnePriceOneOnePaymentTermDefault = "in_advance";
|
|
857
867
|
export declare const createPendingInvoiceLineBodyLinesItemRateCardOnePriceOneTwoAmountOneRegExp: RegExp;
|
|
@@ -1022,6 +1032,7 @@ export declare const CreatePendingInvoiceLineBody: zod.ZodObject<{
|
|
|
1022
1032
|
stripe: zod.ZodOptional<zod.ZodObject<{
|
|
1023
1033
|
code: zod.z.ZodCoercedString<unknown>;
|
|
1024
1034
|
}, zod.z.core.$strip>>;
|
|
1035
|
+
taxCodeId: zod.ZodOptional<zod.z.ZodCoercedString<unknown>>;
|
|
1025
1036
|
}, zod.z.core.$strip>>;
|
|
1026
1037
|
}, zod.z.core.$strip>>;
|
|
1027
1038
|
taxConfig: zod.ZodOptional<zod.ZodObject<{
|
|
@@ -1035,6 +1046,7 @@ export declare const CreatePendingInvoiceLineBody: zod.ZodObject<{
|
|
|
1035
1046
|
stripe: zod.ZodOptional<zod.ZodObject<{
|
|
1036
1047
|
code: zod.z.ZodCoercedString<unknown>;
|
|
1037
1048
|
}, zod.z.core.$strip>>;
|
|
1049
|
+
taxCodeId: zod.ZodOptional<zod.z.ZodCoercedString<unknown>>;
|
|
1038
1050
|
}, zod.z.core.$strip>>;
|
|
1039
1051
|
}, zod.z.core.$strip>>;
|
|
1040
1052
|
}, zod.z.core.$strip>;
|
|
@@ -1057,6 +1069,7 @@ export declare const simulateInvoiceBodyCurrencyOneRegExp: RegExp;
|
|
|
1057
1069
|
export declare const simulateInvoiceBodyLinesItemNameMax = 256;
|
|
1058
1070
|
export declare const simulateInvoiceBodyLinesItemDescriptionMax = 1024;
|
|
1059
1071
|
export declare const simulateInvoiceBodyLinesItemTaxConfigOneStripeOneCodeRegExp: RegExp;
|
|
1072
|
+
export declare const simulateInvoiceBodyLinesItemTaxConfigOneTaxCodeIdRegExp: RegExp;
|
|
1060
1073
|
export declare const simulateInvoiceBodyLinesItemPriceOneOneAmountOneRegExp: RegExp;
|
|
1061
1074
|
export declare const simulateInvoiceBodyLinesItemPriceOneOnePaymentTermDefault = "in_advance";
|
|
1062
1075
|
export declare const simulateInvoiceBodyLinesItemPriceOneTwoAmountOneRegExp: RegExp;
|
|
@@ -1080,6 +1093,7 @@ export declare const simulateInvoiceBodyLinesItemFeatureKeyRegExp: RegExp;
|
|
|
1080
1093
|
export declare const simulateInvoiceBodyLinesItemRateCardOneFeatureKeyMax = 64;
|
|
1081
1094
|
export declare const simulateInvoiceBodyLinesItemRateCardOneFeatureKeyRegExp: RegExp;
|
|
1082
1095
|
export declare const simulateInvoiceBodyLinesItemRateCardOneTaxConfigOneStripeOneCodeRegExp: RegExp;
|
|
1096
|
+
export declare const simulateInvoiceBodyLinesItemRateCardOneTaxConfigOneTaxCodeIdRegExp: RegExp;
|
|
1083
1097
|
export declare const simulateInvoiceBodyLinesItemRateCardOnePriceOneOneAmountOneRegExp: RegExp;
|
|
1084
1098
|
export declare const simulateInvoiceBodyLinesItemRateCardOnePriceOneOnePaymentTermDefault = "in_advance";
|
|
1085
1099
|
export declare const simulateInvoiceBodyLinesItemRateCardOnePriceOneTwoAmountOneRegExp: RegExp;
|
|
@@ -1256,6 +1270,7 @@ export declare const SimulateInvoiceBody: zod.ZodObject<{
|
|
|
1256
1270
|
stripe: zod.ZodOptional<zod.ZodObject<{
|
|
1257
1271
|
code: zod.z.ZodCoercedString<unknown>;
|
|
1258
1272
|
}, zod.z.core.$strip>>;
|
|
1273
|
+
taxCodeId: zod.ZodOptional<zod.z.ZodCoercedString<unknown>>;
|
|
1259
1274
|
}, zod.z.core.$strip>>;
|
|
1260
1275
|
}, zod.z.core.$strip>>;
|
|
1261
1276
|
taxConfig: zod.ZodOptional<zod.ZodObject<{
|
|
@@ -1269,6 +1284,7 @@ export declare const SimulateInvoiceBody: zod.ZodObject<{
|
|
|
1269
1284
|
stripe: zod.ZodOptional<zod.ZodObject<{
|
|
1270
1285
|
code: zod.z.ZodCoercedString<unknown>;
|
|
1271
1286
|
}, zod.z.core.$strip>>;
|
|
1287
|
+
taxCodeId: zod.ZodOptional<zod.z.ZodCoercedString<unknown>>;
|
|
1272
1288
|
}, zod.z.core.$strip>>;
|
|
1273
1289
|
}, zod.z.core.$strip>>;
|
|
1274
1290
|
number: zod.ZodOptional<zod.z.ZodCoercedString<unknown>>;
|
|
@@ -1407,6 +1423,7 @@ export declare const updateInvoiceBodyCustomerOneAddressesMax = 1;
|
|
|
1407
1423
|
export declare const updateInvoiceBodyLinesItemNameMax = 256;
|
|
1408
1424
|
export declare const updateInvoiceBodyLinesItemDescriptionMax = 1024;
|
|
1409
1425
|
export declare const updateInvoiceBodyLinesItemTaxConfigOneStripeOneCodeRegExp: RegExp;
|
|
1426
|
+
export declare const updateInvoiceBodyLinesItemTaxConfigOneTaxCodeIdRegExp: RegExp;
|
|
1410
1427
|
export declare const updateInvoiceBodyLinesItemPriceOneOneAmountOneRegExp: RegExp;
|
|
1411
1428
|
export declare const updateInvoiceBodyLinesItemPriceOneOnePaymentTermDefault = "in_advance";
|
|
1412
1429
|
export declare const updateInvoiceBodyLinesItemPriceOneTwoAmountOneRegExp: RegExp;
|
|
@@ -1430,6 +1447,7 @@ export declare const updateInvoiceBodyLinesItemFeatureKeyRegExp: RegExp;
|
|
|
1430
1447
|
export declare const updateInvoiceBodyLinesItemRateCardOneFeatureKeyMax = 64;
|
|
1431
1448
|
export declare const updateInvoiceBodyLinesItemRateCardOneFeatureKeyRegExp: RegExp;
|
|
1432
1449
|
export declare const updateInvoiceBodyLinesItemRateCardOneTaxConfigOneStripeOneCodeRegExp: RegExp;
|
|
1450
|
+
export declare const updateInvoiceBodyLinesItemRateCardOneTaxConfigOneTaxCodeIdRegExp: RegExp;
|
|
1433
1451
|
export declare const updateInvoiceBodyLinesItemRateCardOnePriceOneOneAmountOneRegExp: RegExp;
|
|
1434
1452
|
export declare const updateInvoiceBodyLinesItemRateCardOnePriceOneOnePaymentTermDefault = "in_advance";
|
|
1435
1453
|
export declare const updateInvoiceBodyLinesItemRateCardOnePriceOneTwoAmountOneRegExp: RegExp;
|
|
@@ -1456,6 +1474,7 @@ export declare const updateInvoiceBodyWorkflowOneWorkflowOneInvoicingOneAutoAdva
|
|
|
1456
1474
|
export declare const updateInvoiceBodyWorkflowOneWorkflowOneInvoicingOneDraftPeriodDefault = "P0D";
|
|
1457
1475
|
export declare const updateInvoiceBodyWorkflowOneWorkflowOneInvoicingOneDueAfterDefault = "P30D";
|
|
1458
1476
|
export declare const updateInvoiceBodyWorkflowOneWorkflowOneInvoicingOneDefaultTaxConfigOneStripeOneCodeRegExp: RegExp;
|
|
1477
|
+
export declare const updateInvoiceBodyWorkflowOneWorkflowOneInvoicingOneDefaultTaxConfigOneTaxCodeIdRegExp: RegExp;
|
|
1459
1478
|
export declare const updateInvoiceBodyWorkflowOneWorkflowOnePaymentOneCollectionMethodDefault = "charge_automatically";
|
|
1460
1479
|
export declare const UpdateInvoiceBody: zod.ZodObject<{
|
|
1461
1480
|
customer: zod.ZodObject<{
|
|
@@ -1623,6 +1642,7 @@ export declare const UpdateInvoiceBody: zod.ZodObject<{
|
|
|
1623
1642
|
stripe: zod.ZodOptional<zod.ZodObject<{
|
|
1624
1643
|
code: zod.z.ZodCoercedString<unknown>;
|
|
1625
1644
|
}, zod.z.core.$strip>>;
|
|
1645
|
+
taxCodeId: zod.ZodOptional<zod.z.ZodCoercedString<unknown>>;
|
|
1626
1646
|
}, zod.z.core.$strip>>;
|
|
1627
1647
|
}, zod.z.core.$strip>>;
|
|
1628
1648
|
taxConfig: zod.ZodOptional<zod.ZodObject<{
|
|
@@ -1636,6 +1656,7 @@ export declare const UpdateInvoiceBody: zod.ZodObject<{
|
|
|
1636
1656
|
stripe: zod.ZodOptional<zod.ZodObject<{
|
|
1637
1657
|
code: zod.z.ZodCoercedString<unknown>;
|
|
1638
1658
|
}, zod.z.core.$strip>>;
|
|
1659
|
+
taxCodeId: zod.ZodOptional<zod.z.ZodCoercedString<unknown>>;
|
|
1639
1660
|
}, zod.z.core.$strip>>;
|
|
1640
1661
|
}, zod.z.core.$strip>>;
|
|
1641
1662
|
metadata: zod.ZodOptional<zod.ZodNullable<zod.ZodRecord<zod.ZodString, zod.z.ZodCoercedString<unknown>>>>;
|
|
@@ -1670,6 +1691,7 @@ export declare const UpdateInvoiceBody: zod.ZodObject<{
|
|
|
1670
1691
|
stripe: zod.ZodOptional<zod.ZodObject<{
|
|
1671
1692
|
code: zod.z.ZodCoercedString<unknown>;
|
|
1672
1693
|
}, zod.z.core.$strip>>;
|
|
1694
|
+
taxCodeId: zod.ZodOptional<zod.z.ZodCoercedString<unknown>>;
|
|
1673
1695
|
}, zod.z.core.$strip>>;
|
|
1674
1696
|
draftPeriod: zod.ZodDefault<zod.z.ZodCoercedString<unknown>>;
|
|
1675
1697
|
dueAfter: zod.ZodDefault<zod.z.ZodCoercedString<unknown>>;
|
|
@@ -1843,6 +1865,7 @@ export declare const createBillingProfileBodyWorkflowOneInvoicingOneDraftPeriodD
|
|
|
1843
1865
|
export declare const createBillingProfileBodyWorkflowOneInvoicingOneDueAfterDefault = "P30D";
|
|
1844
1866
|
export declare const createBillingProfileBodyWorkflowOneInvoicingOneProgressiveBillingDefault = true;
|
|
1845
1867
|
export declare const createBillingProfileBodyWorkflowOneInvoicingOneDefaultTaxConfigOneStripeOneCodeRegExp: RegExp;
|
|
1868
|
+
export declare const createBillingProfileBodyWorkflowOneInvoicingOneDefaultTaxConfigOneTaxCodeIdRegExp: RegExp;
|
|
1846
1869
|
export declare const createBillingProfileBodyWorkflowOnePaymentOneCollectionMethodDefault = "charge_automatically";
|
|
1847
1870
|
export declare const createBillingProfileBodyWorkflowOneTaxOneEnabledDefault = true;
|
|
1848
1871
|
export declare const createBillingProfileBodyWorkflowOneTaxOneEnforcedDefault = false;
|
|
@@ -1911,6 +1934,7 @@ export declare const CreateBillingProfileBody: zod.ZodObject<{
|
|
|
1911
1934
|
stripe: zod.ZodOptional<zod.ZodObject<{
|
|
1912
1935
|
code: zod.z.ZodCoercedString<unknown>;
|
|
1913
1936
|
}, zod.z.core.$strip>>;
|
|
1937
|
+
taxCodeId: zod.ZodOptional<zod.z.ZodCoercedString<unknown>>;
|
|
1914
1938
|
}, zod.z.core.$strip>>;
|
|
1915
1939
|
draftPeriod: zod.ZodDefault<zod.z.ZodCoercedString<unknown>>;
|
|
1916
1940
|
dueAfter: zod.ZodDefault<zod.z.ZodCoercedString<unknown>>;
|
|
@@ -1987,6 +2011,7 @@ export declare const updateBillingProfileBodyWorkflowOneInvoicingOneDraftPeriodD
|
|
|
1987
2011
|
export declare const updateBillingProfileBodyWorkflowOneInvoicingOneDueAfterDefault = "P30D";
|
|
1988
2012
|
export declare const updateBillingProfileBodyWorkflowOneInvoicingOneProgressiveBillingDefault = true;
|
|
1989
2013
|
export declare const updateBillingProfileBodyWorkflowOneInvoicingOneDefaultTaxConfigOneStripeOneCodeRegExp: RegExp;
|
|
2014
|
+
export declare const updateBillingProfileBodyWorkflowOneInvoicingOneDefaultTaxConfigOneTaxCodeIdRegExp: RegExp;
|
|
1990
2015
|
export declare const updateBillingProfileBodyWorkflowOnePaymentOneCollectionMethodDefault = "charge_automatically";
|
|
1991
2016
|
export declare const updateBillingProfileBodyWorkflowOneTaxOneEnabledDefault = true;
|
|
1992
2017
|
export declare const updateBillingProfileBodyWorkflowOneTaxOneEnforcedDefault = false;
|
|
@@ -2047,6 +2072,7 @@ export declare const UpdateBillingProfileBody: zod.ZodObject<{
|
|
|
2047
2072
|
stripe: zod.ZodOptional<zod.ZodObject<{
|
|
2048
2073
|
code: zod.z.ZodCoercedString<unknown>;
|
|
2049
2074
|
}, zod.z.core.$strip>>;
|
|
2075
|
+
taxCodeId: zod.ZodOptional<zod.z.ZodCoercedString<unknown>>;
|
|
2050
2076
|
}, zod.z.core.$strip>>;
|
|
2051
2077
|
draftPeriod: zod.ZodDefault<zod.z.ZodCoercedString<unknown>>;
|
|
2052
2078
|
dueAfter: zod.ZodDefault<zod.z.ZodCoercedString<unknown>>;
|
|
@@ -3499,6 +3525,7 @@ export declare const createPlanBodyPhasesItemRateCardsItemOneEntitlementTemplate
|
|
|
3499
3525
|
export declare const createPlanBodyPhasesItemRateCardsItemOneEntitlementTemplateOneOneIssueAfterResetPriorityMax = 255;
|
|
3500
3526
|
export declare const createPlanBodyPhasesItemRateCardsItemOneEntitlementTemplateOneOnePreserveOverageAtResetDefault = false;
|
|
3501
3527
|
export declare const createPlanBodyPhasesItemRateCardsItemOneTaxConfigOneStripeOneCodeRegExp: RegExp;
|
|
3528
|
+
export declare const createPlanBodyPhasesItemRateCardsItemOneTaxConfigOneTaxCodeIdRegExp: RegExp;
|
|
3502
3529
|
export declare const createPlanBodyPhasesItemRateCardsItemOnePriceOneAmountOneRegExp: RegExp;
|
|
3503
3530
|
export declare const createPlanBodyPhasesItemRateCardsItemOnePriceOnePaymentTermDefault = "in_advance";
|
|
3504
3531
|
export declare const createPlanBodyPhasesItemRateCardsItemOneDiscountsOneUsageOneQuantityOneRegExp: RegExp;
|
|
@@ -3514,6 +3541,7 @@ export declare const createPlanBodyPhasesItemRateCardsItemTwoEntitlementTemplate
|
|
|
3514
3541
|
export declare const createPlanBodyPhasesItemRateCardsItemTwoEntitlementTemplateOneOneIssueAfterResetPriorityMax = 255;
|
|
3515
3542
|
export declare const createPlanBodyPhasesItemRateCardsItemTwoEntitlementTemplateOneOnePreserveOverageAtResetDefault = false;
|
|
3516
3543
|
export declare const createPlanBodyPhasesItemRateCardsItemTwoTaxConfigOneStripeOneCodeRegExp: RegExp;
|
|
3544
|
+
export declare const createPlanBodyPhasesItemRateCardsItemTwoTaxConfigOneTaxCodeIdRegExp: RegExp;
|
|
3517
3545
|
export declare const createPlanBodyPhasesItemRateCardsItemTwoPriceOneOneAmountOneRegExp: RegExp;
|
|
3518
3546
|
export declare const createPlanBodyPhasesItemRateCardsItemTwoPriceOneOnePaymentTermDefault = "in_advance";
|
|
3519
3547
|
export declare const createPlanBodyPhasesItemRateCardsItemTwoPriceOneTwoAmountOneRegExp: RegExp;
|
|
@@ -3607,6 +3635,7 @@ export declare const CreatePlanBody: zod.ZodObject<{
|
|
|
3607
3635
|
stripe: zod.ZodOptional<zod.ZodObject<{
|
|
3608
3636
|
code: zod.z.ZodCoercedString<unknown>;
|
|
3609
3637
|
}, zod.z.core.$strip>>;
|
|
3638
|
+
taxCodeId: zod.ZodOptional<zod.z.ZodCoercedString<unknown>>;
|
|
3610
3639
|
}, zod.z.core.$strip>>;
|
|
3611
3640
|
type: zod.ZodEnum<{
|
|
3612
3641
|
flat_fee: "flat_fee";
|
|
@@ -3716,6 +3745,7 @@ export declare const CreatePlanBody: zod.ZodObject<{
|
|
|
3716
3745
|
stripe: zod.ZodOptional<zod.ZodObject<{
|
|
3717
3746
|
code: zod.z.ZodCoercedString<unknown>;
|
|
3718
3747
|
}, zod.z.core.$strip>>;
|
|
3748
|
+
taxCodeId: zod.ZodOptional<zod.z.ZodCoercedString<unknown>>;
|
|
3719
3749
|
}, zod.z.core.$strip>>;
|
|
3720
3750
|
type: zod.ZodEnum<{
|
|
3721
3751
|
usage_based: "usage_based";
|
|
@@ -3777,6 +3807,7 @@ export declare const updatePlanBodyPhasesItemRateCardsItemOneEntitlementTemplate
|
|
|
3777
3807
|
export declare const updatePlanBodyPhasesItemRateCardsItemOneEntitlementTemplateOneOneIssueAfterResetPriorityMax = 255;
|
|
3778
3808
|
export declare const updatePlanBodyPhasesItemRateCardsItemOneEntitlementTemplateOneOnePreserveOverageAtResetDefault = false;
|
|
3779
3809
|
export declare const updatePlanBodyPhasesItemRateCardsItemOneTaxConfigOneStripeOneCodeRegExp: RegExp;
|
|
3810
|
+
export declare const updatePlanBodyPhasesItemRateCardsItemOneTaxConfigOneTaxCodeIdRegExp: RegExp;
|
|
3780
3811
|
export declare const updatePlanBodyPhasesItemRateCardsItemOnePriceOneAmountOneRegExp: RegExp;
|
|
3781
3812
|
export declare const updatePlanBodyPhasesItemRateCardsItemOnePriceOnePaymentTermDefault = "in_advance";
|
|
3782
3813
|
export declare const updatePlanBodyPhasesItemRateCardsItemOneDiscountsOneUsageOneQuantityOneRegExp: RegExp;
|
|
@@ -3792,6 +3823,7 @@ export declare const updatePlanBodyPhasesItemRateCardsItemTwoEntitlementTemplate
|
|
|
3792
3823
|
export declare const updatePlanBodyPhasesItemRateCardsItemTwoEntitlementTemplateOneOneIssueAfterResetPriorityMax = 255;
|
|
3793
3824
|
export declare const updatePlanBodyPhasesItemRateCardsItemTwoEntitlementTemplateOneOnePreserveOverageAtResetDefault = false;
|
|
3794
3825
|
export declare const updatePlanBodyPhasesItemRateCardsItemTwoTaxConfigOneStripeOneCodeRegExp: RegExp;
|
|
3826
|
+
export declare const updatePlanBodyPhasesItemRateCardsItemTwoTaxConfigOneTaxCodeIdRegExp: RegExp;
|
|
3795
3827
|
export declare const updatePlanBodyPhasesItemRateCardsItemTwoPriceOneOneAmountOneRegExp: RegExp;
|
|
3796
3828
|
export declare const updatePlanBodyPhasesItemRateCardsItemTwoPriceOneOnePaymentTermDefault = "in_advance";
|
|
3797
3829
|
export declare const updatePlanBodyPhasesItemRateCardsItemTwoPriceOneTwoAmountOneRegExp: RegExp;
|
|
@@ -3883,6 +3915,7 @@ export declare const UpdatePlanBody: zod.ZodObject<{
|
|
|
3883
3915
|
stripe: zod.ZodOptional<zod.ZodObject<{
|
|
3884
3916
|
code: zod.z.ZodCoercedString<unknown>;
|
|
3885
3917
|
}, zod.z.core.$strip>>;
|
|
3918
|
+
taxCodeId: zod.ZodOptional<zod.z.ZodCoercedString<unknown>>;
|
|
3886
3919
|
}, zod.z.core.$strip>>;
|
|
3887
3920
|
type: zod.ZodEnum<{
|
|
3888
3921
|
flat_fee: "flat_fee";
|
|
@@ -3992,6 +4025,7 @@ export declare const UpdatePlanBody: zod.ZodObject<{
|
|
|
3992
4025
|
stripe: zod.ZodOptional<zod.ZodObject<{
|
|
3993
4026
|
code: zod.z.ZodCoercedString<unknown>;
|
|
3994
4027
|
}, zod.z.core.$strip>>;
|
|
4028
|
+
taxCodeId: zod.ZodOptional<zod.z.ZodCoercedString<unknown>>;
|
|
3995
4029
|
}, zod.z.core.$strip>>;
|
|
3996
4030
|
type: zod.ZodEnum<{
|
|
3997
4031
|
usage_based: "usage_based";
|
|
@@ -4757,6 +4791,7 @@ export declare const createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCard
|
|
|
4757
4791
|
export declare const createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemOneEntitlementTemplateOneOneIssueAfterResetPriorityMax = 255;
|
|
4758
4792
|
export declare const createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemOneEntitlementTemplateOneOnePreserveOverageAtResetDefault = false;
|
|
4759
4793
|
export declare const createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemOneTaxConfigOneStripeOneCodeRegExp: RegExp;
|
|
4794
|
+
export declare const createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemOneTaxConfigOneTaxCodeIdRegExp: RegExp;
|
|
4760
4795
|
export declare const createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemOnePriceOneAmountOneRegExp: RegExp;
|
|
4761
4796
|
export declare const createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemOnePriceOnePaymentTermDefault = "in_advance";
|
|
4762
4797
|
export declare const createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemOneDiscountsOneUsageOneQuantityOneRegExp: RegExp;
|
|
@@ -4772,6 +4807,7 @@ export declare const createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCard
|
|
|
4772
4807
|
export declare const createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoEntitlementTemplateOneOneIssueAfterResetPriorityMax = 255;
|
|
4773
4808
|
export declare const createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoEntitlementTemplateOneOnePreserveOverageAtResetDefault = false;
|
|
4774
4809
|
export declare const createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoTaxConfigOneStripeOneCodeRegExp: RegExp;
|
|
4810
|
+
export declare const createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoTaxConfigOneTaxCodeIdRegExp: RegExp;
|
|
4775
4811
|
export declare const createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoPriceOneOneAmountOneRegExp: RegExp;
|
|
4776
4812
|
export declare const createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoPriceOneOnePaymentTermDefault = "in_advance";
|
|
4777
4813
|
export declare const createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoPriceOneTwoAmountOneRegExp: RegExp;
|
|
@@ -4894,6 +4930,7 @@ export declare const CreateSubscriptionBody: zod.ZodUnion<readonly [zod.ZodObjec
|
|
|
4894
4930
|
stripe: zod.ZodOptional<zod.ZodObject<{
|
|
4895
4931
|
code: zod.z.ZodCoercedString<unknown>;
|
|
4896
4932
|
}, zod.z.core.$strip>>;
|
|
4933
|
+
taxCodeId: zod.ZodOptional<zod.z.ZodCoercedString<unknown>>;
|
|
4897
4934
|
}, zod.z.core.$strip>>;
|
|
4898
4935
|
type: zod.ZodEnum<{
|
|
4899
4936
|
flat_fee: "flat_fee";
|
|
@@ -5003,6 +5040,7 @@ export declare const CreateSubscriptionBody: zod.ZodUnion<readonly [zod.ZodObjec
|
|
|
5003
5040
|
stripe: zod.ZodOptional<zod.ZodObject<{
|
|
5004
5041
|
code: zod.z.ZodCoercedString<unknown>;
|
|
5005
5042
|
}, zod.z.core.$strip>>;
|
|
5043
|
+
taxCodeId: zod.ZodOptional<zod.z.ZodCoercedString<unknown>>;
|
|
5006
5044
|
}, zod.z.core.$strip>>;
|
|
5007
5045
|
type: zod.ZodEnum<{
|
|
5008
5046
|
usage_based: "usage_based";
|
|
@@ -5056,6 +5094,7 @@ export declare const editSubscriptionBodyCustomizationsItemOneRateCardOneEntitle
|
|
|
5056
5094
|
export declare const editSubscriptionBodyCustomizationsItemOneRateCardOneEntitlementTemplateOneOneIssueAfterResetPriorityMax = 255;
|
|
5057
5095
|
export declare const editSubscriptionBodyCustomizationsItemOneRateCardOneEntitlementTemplateOneOnePreserveOverageAtResetDefault = false;
|
|
5058
5096
|
export declare const editSubscriptionBodyCustomizationsItemOneRateCardOneTaxConfigOneStripeOneCodeRegExp: RegExp;
|
|
5097
|
+
export declare const editSubscriptionBodyCustomizationsItemOneRateCardOneTaxConfigOneTaxCodeIdRegExp: RegExp;
|
|
5059
5098
|
export declare const editSubscriptionBodyCustomizationsItemOneRateCardOnePriceOneAmountOneRegExp: RegExp;
|
|
5060
5099
|
export declare const editSubscriptionBodyCustomizationsItemOneRateCardOnePriceOnePaymentTermDefault = "in_advance";
|
|
5061
5100
|
export declare const editSubscriptionBodyCustomizationsItemOneRateCardOneDiscountsOneUsageOneQuantityOneRegExp: RegExp;
|
|
@@ -5071,6 +5110,7 @@ export declare const editSubscriptionBodyCustomizationsItemOneRateCardTwoEntitle
|
|
|
5071
5110
|
export declare const editSubscriptionBodyCustomizationsItemOneRateCardTwoEntitlementTemplateOneOneIssueAfterResetPriorityMax = 255;
|
|
5072
5111
|
export declare const editSubscriptionBodyCustomizationsItemOneRateCardTwoEntitlementTemplateOneOnePreserveOverageAtResetDefault = false;
|
|
5073
5112
|
export declare const editSubscriptionBodyCustomizationsItemOneRateCardTwoTaxConfigOneStripeOneCodeRegExp: RegExp;
|
|
5113
|
+
export declare const editSubscriptionBodyCustomizationsItemOneRateCardTwoTaxConfigOneTaxCodeIdRegExp: RegExp;
|
|
5074
5114
|
export declare const editSubscriptionBodyCustomizationsItemOneRateCardTwoPriceOneOneAmountOneRegExp: RegExp;
|
|
5075
5115
|
export declare const editSubscriptionBodyCustomizationsItemOneRateCardTwoPriceOneOnePaymentTermDefault = "in_advance";
|
|
5076
5116
|
export declare const editSubscriptionBodyCustomizationsItemOneRateCardTwoPriceOneTwoAmountOneRegExp: RegExp;
|
|
@@ -5158,6 +5198,7 @@ export declare const EditSubscriptionBody: zod.ZodObject<{
|
|
|
5158
5198
|
stripe: zod.ZodOptional<zod.ZodObject<{
|
|
5159
5199
|
code: zod.z.ZodCoercedString<unknown>;
|
|
5160
5200
|
}, zod.z.core.$strip>>;
|
|
5201
|
+
taxCodeId: zod.ZodOptional<zod.z.ZodCoercedString<unknown>>;
|
|
5161
5202
|
}, zod.z.core.$strip>>;
|
|
5162
5203
|
type: zod.ZodEnum<{
|
|
5163
5204
|
flat_fee: "flat_fee";
|
|
@@ -5267,6 +5308,7 @@ export declare const EditSubscriptionBody: zod.ZodObject<{
|
|
|
5267
5308
|
stripe: zod.ZodOptional<zod.ZodObject<{
|
|
5268
5309
|
code: zod.z.ZodCoercedString<unknown>;
|
|
5269
5310
|
}, zod.z.core.$strip>>;
|
|
5311
|
+
taxCodeId: zod.ZodOptional<zod.z.ZodCoercedString<unknown>>;
|
|
5270
5312
|
}, zod.z.core.$strip>>;
|
|
5271
5313
|
type: zod.ZodEnum<{
|
|
5272
5314
|
usage_based: "usage_based";
|
|
@@ -5451,6 +5493,7 @@ export declare const changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCard
|
|
|
5451
5493
|
export declare const changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemOneEntitlementTemplateOneOneIssueAfterResetPriorityMax = 255;
|
|
5452
5494
|
export declare const changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemOneEntitlementTemplateOneOnePreserveOverageAtResetDefault = false;
|
|
5453
5495
|
export declare const changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemOneTaxConfigOneStripeOneCodeRegExp: RegExp;
|
|
5496
|
+
export declare const changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemOneTaxConfigOneTaxCodeIdRegExp: RegExp;
|
|
5454
5497
|
export declare const changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemOnePriceOneAmountOneRegExp: RegExp;
|
|
5455
5498
|
export declare const changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemOnePriceOnePaymentTermDefault = "in_advance";
|
|
5456
5499
|
export declare const changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemOneDiscountsOneUsageOneQuantityOneRegExp: RegExp;
|
|
@@ -5466,6 +5509,7 @@ export declare const changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCard
|
|
|
5466
5509
|
export declare const changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoEntitlementTemplateOneOneIssueAfterResetPriorityMax = 255;
|
|
5467
5510
|
export declare const changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoEntitlementTemplateOneOnePreserveOverageAtResetDefault = false;
|
|
5468
5511
|
export declare const changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoTaxConfigOneStripeOneCodeRegExp: RegExp;
|
|
5512
|
+
export declare const changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoTaxConfigOneTaxCodeIdRegExp: RegExp;
|
|
5469
5513
|
export declare const changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoPriceOneOneAmountOneRegExp: RegExp;
|
|
5470
5514
|
export declare const changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoPriceOneOnePaymentTermDefault = "in_advance";
|
|
5471
5515
|
export declare const changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoPriceOneTwoAmountOneRegExp: RegExp;
|
|
@@ -5577,6 +5621,7 @@ export declare const ChangeSubscriptionBody: zod.ZodUnion<readonly [zod.ZodObjec
|
|
|
5577
5621
|
stripe: zod.ZodOptional<zod.ZodObject<{
|
|
5578
5622
|
code: zod.z.ZodCoercedString<unknown>;
|
|
5579
5623
|
}, zod.z.core.$strip>>;
|
|
5624
|
+
taxCodeId: zod.ZodOptional<zod.z.ZodCoercedString<unknown>>;
|
|
5580
5625
|
}, zod.z.core.$strip>>;
|
|
5581
5626
|
type: zod.ZodEnum<{
|
|
5582
5627
|
flat_fee: "flat_fee";
|
|
@@ -5686,6 +5731,7 @@ export declare const ChangeSubscriptionBody: zod.ZodUnion<readonly [zod.ZodObjec
|
|
|
5686
5731
|
stripe: zod.ZodOptional<zod.ZodObject<{
|
|
5687
5732
|
code: zod.z.ZodCoercedString<unknown>;
|
|
5688
5733
|
}, zod.z.core.$strip>>;
|
|
5734
|
+
taxCodeId: zod.ZodOptional<zod.z.ZodCoercedString<unknown>>;
|
|
5689
5735
|
}, zod.z.core.$strip>>;
|
|
5690
5736
|
type: zod.ZodEnum<{
|
|
5691
5737
|
usage_based: "usage_based";
|