@openmeter/sdk 1.0.0-beta.227 → 1.0.0-beta.228
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/Makefile +0 -1
- package/dist/cjs/src/client/customers.d.cts +3 -0
- package/dist/cjs/src/client/features.d.cts +3 -0
- package/dist/cjs/src/client/meters.cjs +10 -10
- package/dist/cjs/src/client/meters.d.cts +83 -14
- package/dist/cjs/src/client/plans.d.cts +5 -0
- package/dist/cjs/src/client/schemas.d.cts +283 -3
- package/dist/cjs/src/client/subscriptions.d.cts +5 -0
- package/dist/cjs/src/zod/index.cjs +714 -159
- package/dist/cjs/src/zod/index.cjs.map +1 -1
- package/dist/cjs/src/zod/index.d.cts +769 -648
- package/dist/src/client/customers.d.ts +3 -0
- package/dist/src/client/features.d.ts +3 -0
- package/dist/src/client/meters.d.ts +83 -14
- package/dist/src/client/meters.js +11 -11
- package/dist/src/client/meters.js.map +1 -1
- package/dist/src/client/plans.d.ts +5 -0
- package/dist/src/client/schemas.d.ts +283 -3
- package/dist/src/client/subscriptions.d.ts +5 -0
- package/dist/src/zod/index.d.ts +769 -648
- package/dist/src/zod/index.js +686 -132
- package/dist/src/zod/index.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/orval.config.ts +1 -1
- package/package.json +13 -14
- package/patches/openapi-typescript.patch +901 -828
- package/pnpm-workspace.yaml +3 -0
package/dist/src/zod/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Generated by orval v8.
|
|
2
|
+
* Generated by orval v8.7.0 🍺
|
|
3
3
|
* Do not edit manually.
|
|
4
4
|
* OpenMeter Cloud API
|
|
5
5
|
* OpenMeter is a cloud native usage metering service.
|
|
@@ -11,23 +11,24 @@ import * as zod from 'zod';
|
|
|
11
11
|
* List all add-ons.
|
|
12
12
|
* @summary List add-ons
|
|
13
13
|
*/
|
|
14
|
-
export declare const listAddonsQueryIncludeDeletedDefault
|
|
14
|
+
export declare const listAddonsQueryIncludeDeletedDefault = false;
|
|
15
15
|
export declare const listAddonsQueryIdItemRegExp: RegExp;
|
|
16
|
-
export declare const listAddonsQueryKeyItemMax
|
|
16
|
+
export declare const listAddonsQueryKeyItemMax = 64;
|
|
17
17
|
export declare const listAddonsQueryKeyItemRegExp: RegExp;
|
|
18
|
-
export declare const listAddonsQueryCurrencyItemMin
|
|
19
|
-
export declare const listAddonsQueryCurrencyItemMax
|
|
18
|
+
export declare const listAddonsQueryCurrencyItemMin = 3;
|
|
19
|
+
export declare const listAddonsQueryCurrencyItemMax = 3;
|
|
20
20
|
export declare const listAddonsQueryCurrencyItemRegExp: RegExp;
|
|
21
|
-
export declare const listAddonsQueryPageDefault
|
|
22
|
-
export declare const listAddonsQueryPageSizeDefault
|
|
23
|
-
export declare const listAddonsQueryPageSizeMax
|
|
21
|
+
export declare const listAddonsQueryPageDefault = 1;
|
|
22
|
+
export declare const listAddonsQueryPageSizeDefault = 100;
|
|
23
|
+
export declare const listAddonsQueryPageSizeMax = 1000;
|
|
24
|
+
export declare const listAddonsQueryOrderDefault = "ASC";
|
|
24
25
|
export declare const ListAddonsQueryParams: zod.ZodObject<{
|
|
25
26
|
currency: zod.ZodOptional<zod.ZodArray<zod.z.ZodCoercedString<unknown>>>;
|
|
26
27
|
id: zod.ZodOptional<zod.ZodArray<zod.z.ZodCoercedString<unknown>>>;
|
|
27
28
|
includeDeleted: zod.ZodDefault<zod.z.ZodCoercedBoolean<unknown>>;
|
|
28
29
|
key: zod.ZodOptional<zod.ZodArray<zod.z.ZodCoercedString<unknown>>>;
|
|
29
30
|
keyVersion: zod.ZodOptional<zod.ZodRecord<zod.ZodString, zod.ZodArray<zod.z.ZodCoercedNumber<unknown>>>>;
|
|
30
|
-
order: zod.
|
|
31
|
+
order: zod.ZodDefault<zod.ZodEnum<{
|
|
31
32
|
ASC: "ASC";
|
|
32
33
|
DESC: "DESC";
|
|
33
34
|
}>>;
|
|
@@ -50,43 +51,45 @@ export declare const ListAddonsQueryParams: zod.ZodObject<{
|
|
|
50
51
|
* Create a new add-on.
|
|
51
52
|
* @summary Create an add-on
|
|
52
53
|
*/
|
|
53
|
-
export declare const createAddonBodyNameMax
|
|
54
|
-
export declare const createAddonBodyDescriptionMax
|
|
55
|
-
export declare const createAddonBodyKeyMax
|
|
54
|
+
export declare const createAddonBodyNameMax = 256;
|
|
55
|
+
export declare const createAddonBodyDescriptionMax = 1024;
|
|
56
|
+
export declare const createAddonBodyKeyMax = 64;
|
|
56
57
|
export declare const createAddonBodyKeyRegExp: RegExp;
|
|
57
|
-
export declare const createAddonBodyCurrencyOneMin
|
|
58
|
-
export declare const createAddonBodyCurrencyOneMax
|
|
58
|
+
export declare const createAddonBodyCurrencyOneMin = 3;
|
|
59
|
+
export declare const createAddonBodyCurrencyOneMax = 3;
|
|
59
60
|
export declare const createAddonBodyCurrencyOneRegExp: RegExp;
|
|
60
|
-
export declare const createAddonBodyCurrencyDefault
|
|
61
|
-
export declare const createAddonBodyRateCardsItemOneKeyMax
|
|
61
|
+
export declare const createAddonBodyCurrencyDefault = "USD";
|
|
62
|
+
export declare const createAddonBodyRateCardsItemOneKeyMax = 64;
|
|
62
63
|
export declare const createAddonBodyRateCardsItemOneKeyRegExp: RegExp;
|
|
63
|
-
export declare const createAddonBodyRateCardsItemOneNameMax
|
|
64
|
-
export declare const createAddonBodyRateCardsItemOneDescriptionMax
|
|
65
|
-
export declare const createAddonBodyRateCardsItemOneFeatureKeyMax
|
|
64
|
+
export declare const createAddonBodyRateCardsItemOneNameMax = 256;
|
|
65
|
+
export declare const createAddonBodyRateCardsItemOneDescriptionMax = 1024;
|
|
66
|
+
export declare const createAddonBodyRateCardsItemOneFeatureKeyMax = 64;
|
|
66
67
|
export declare const createAddonBodyRateCardsItemOneFeatureKeyRegExp: RegExp;
|
|
67
|
-
export declare const createAddonBodyRateCardsItemOneEntitlementTemplateOneOneIsSoftLimitDefault
|
|
68
|
-
export declare const createAddonBodyRateCardsItemOneEntitlementTemplateOneOneIssueAfterResetMin
|
|
69
|
-
export declare const createAddonBodyRateCardsItemOneEntitlementTemplateOneOneIssueAfterResetPriorityDefault
|
|
70
|
-
export declare const createAddonBodyRateCardsItemOneEntitlementTemplateOneOneIssueAfterResetPriorityMax
|
|
71
|
-
export declare const createAddonBodyRateCardsItemOneEntitlementTemplateOneOnePreserveOverageAtResetDefault
|
|
68
|
+
export declare const createAddonBodyRateCardsItemOneEntitlementTemplateOneOneIsSoftLimitDefault = false;
|
|
69
|
+
export declare const createAddonBodyRateCardsItemOneEntitlementTemplateOneOneIssueAfterResetMin = 0;
|
|
70
|
+
export declare const createAddonBodyRateCardsItemOneEntitlementTemplateOneOneIssueAfterResetPriorityDefault = 1;
|
|
71
|
+
export declare const createAddonBodyRateCardsItemOneEntitlementTemplateOneOneIssueAfterResetPriorityMax = 255;
|
|
72
|
+
export declare const createAddonBodyRateCardsItemOneEntitlementTemplateOneOnePreserveOverageAtResetDefault = false;
|
|
72
73
|
export declare const createAddonBodyRateCardsItemOneTaxConfigOneStripeOneCodeRegExp: RegExp;
|
|
74
|
+
export declare const createAddonBodyRateCardsItemOneTaxConfigOneTaxCodeIdRegExp: RegExp;
|
|
73
75
|
export declare const createAddonBodyRateCardsItemOnePriceOneAmountOneRegExp: RegExp;
|
|
74
|
-
export declare const createAddonBodyRateCardsItemOnePriceOnePaymentTermDefault
|
|
76
|
+
export declare const createAddonBodyRateCardsItemOnePriceOnePaymentTermDefault = "in_advance";
|
|
75
77
|
export declare const createAddonBodyRateCardsItemOneDiscountsOneUsageOneQuantityOneRegExp: RegExp;
|
|
76
|
-
export declare const createAddonBodyRateCardsItemTwoKeyMax
|
|
78
|
+
export declare const createAddonBodyRateCardsItemTwoKeyMax = 64;
|
|
77
79
|
export declare const createAddonBodyRateCardsItemTwoKeyRegExp: RegExp;
|
|
78
|
-
export declare const createAddonBodyRateCardsItemTwoNameMax
|
|
79
|
-
export declare const createAddonBodyRateCardsItemTwoDescriptionMax
|
|
80
|
-
export declare const createAddonBodyRateCardsItemTwoFeatureKeyMax
|
|
80
|
+
export declare const createAddonBodyRateCardsItemTwoNameMax = 256;
|
|
81
|
+
export declare const createAddonBodyRateCardsItemTwoDescriptionMax = 1024;
|
|
82
|
+
export declare const createAddonBodyRateCardsItemTwoFeatureKeyMax = 64;
|
|
81
83
|
export declare const createAddonBodyRateCardsItemTwoFeatureKeyRegExp: RegExp;
|
|
82
|
-
export declare const createAddonBodyRateCardsItemTwoEntitlementTemplateOneOneIsSoftLimitDefault
|
|
83
|
-
export declare const createAddonBodyRateCardsItemTwoEntitlementTemplateOneOneIssueAfterResetMin
|
|
84
|
-
export declare const createAddonBodyRateCardsItemTwoEntitlementTemplateOneOneIssueAfterResetPriorityDefault
|
|
85
|
-
export declare const createAddonBodyRateCardsItemTwoEntitlementTemplateOneOneIssueAfterResetPriorityMax
|
|
86
|
-
export declare const createAddonBodyRateCardsItemTwoEntitlementTemplateOneOnePreserveOverageAtResetDefault
|
|
84
|
+
export declare const createAddonBodyRateCardsItemTwoEntitlementTemplateOneOneIsSoftLimitDefault = false;
|
|
85
|
+
export declare const createAddonBodyRateCardsItemTwoEntitlementTemplateOneOneIssueAfterResetMin = 0;
|
|
86
|
+
export declare const createAddonBodyRateCardsItemTwoEntitlementTemplateOneOneIssueAfterResetPriorityDefault = 1;
|
|
87
|
+
export declare const createAddonBodyRateCardsItemTwoEntitlementTemplateOneOneIssueAfterResetPriorityMax = 255;
|
|
88
|
+
export declare const createAddonBodyRateCardsItemTwoEntitlementTemplateOneOnePreserveOverageAtResetDefault = false;
|
|
87
89
|
export declare const createAddonBodyRateCardsItemTwoTaxConfigOneStripeOneCodeRegExp: RegExp;
|
|
90
|
+
export declare const createAddonBodyRateCardsItemTwoTaxConfigOneTaxCodeIdRegExp: RegExp;
|
|
88
91
|
export declare const createAddonBodyRateCardsItemTwoPriceOneOneAmountOneRegExp: RegExp;
|
|
89
|
-
export declare const createAddonBodyRateCardsItemTwoPriceOneOnePaymentTermDefault
|
|
92
|
+
export declare const createAddonBodyRateCardsItemTwoPriceOneOnePaymentTermDefault = "in_advance";
|
|
90
93
|
export declare const createAddonBodyRateCardsItemTwoPriceOneTwoAmountOneRegExp: RegExp;
|
|
91
94
|
export declare const createAddonBodyRateCardsItemTwoPriceOneTwoMinimumAmountOneRegExp: RegExp;
|
|
92
95
|
export declare const createAddonBodyRateCardsItemTwoPriceOneTwoMaximumAmountOneRegExp: RegExp;
|
|
@@ -96,7 +99,7 @@ export declare const createAddonBodyRateCardsItemTwoPriceOneThreeTiersItemUnitPr
|
|
|
96
99
|
export declare const createAddonBodyRateCardsItemTwoPriceOneThreeMinimumAmountOneRegExp: RegExp;
|
|
97
100
|
export declare const createAddonBodyRateCardsItemTwoPriceOneThreeMaximumAmountOneRegExp: RegExp;
|
|
98
101
|
export declare const createAddonBodyRateCardsItemTwoPriceOneFourMultiplierOneRegExp: RegExp;
|
|
99
|
-
export declare const createAddonBodyRateCardsItemTwoPriceOneFourMultiplierDefault
|
|
102
|
+
export declare const createAddonBodyRateCardsItemTwoPriceOneFourMultiplierDefault = "1";
|
|
100
103
|
export declare const createAddonBodyRateCardsItemTwoPriceOneFourMinimumAmountOneRegExp: RegExp;
|
|
101
104
|
export declare const createAddonBodyRateCardsItemTwoPriceOneFourMaximumAmountOneRegExp: RegExp;
|
|
102
105
|
export declare const createAddonBodyRateCardsItemTwoPriceOneFiveAmountOneRegExp: RegExp;
|
|
@@ -105,7 +108,7 @@ export declare const createAddonBodyRateCardsItemTwoPriceOneFiveMinimumAmountOne
|
|
|
105
108
|
export declare const createAddonBodyRateCardsItemTwoPriceOneFiveMaximumAmountOneRegExp: RegExp;
|
|
106
109
|
export declare const createAddonBodyRateCardsItemTwoDiscountsOneUsageOneQuantityOneRegExp: RegExp;
|
|
107
110
|
export declare const CreateAddonBody: zod.ZodObject<{
|
|
108
|
-
currency: zod.z.ZodCoercedString<unknown
|
|
111
|
+
currency: zod.ZodDefault<zod.z.ZodCoercedString<unknown>>;
|
|
109
112
|
description: zod.ZodOptional<zod.z.ZodCoercedString<unknown>>;
|
|
110
113
|
instanceType: zod.ZodEnum<{
|
|
111
114
|
single: "single";
|
|
@@ -172,6 +175,7 @@ export declare const CreateAddonBody: zod.ZodObject<{
|
|
|
172
175
|
stripe: zod.ZodOptional<zod.ZodObject<{
|
|
173
176
|
code: zod.z.ZodCoercedString<unknown>;
|
|
174
177
|
}, zod.z.core.$strip>>;
|
|
178
|
+
taxCodeId: zod.ZodOptional<zod.z.ZodCoercedString<unknown>>;
|
|
175
179
|
}, zod.z.core.$strip>>;
|
|
176
180
|
type: zod.ZodEnum<{
|
|
177
181
|
flat_fee: "flat_fee";
|
|
@@ -281,6 +285,7 @@ export declare const CreateAddonBody: zod.ZodObject<{
|
|
|
281
285
|
stripe: zod.ZodOptional<zod.ZodObject<{
|
|
282
286
|
code: zod.z.ZodCoercedString<unknown>;
|
|
283
287
|
}, zod.z.core.$strip>>;
|
|
288
|
+
taxCodeId: zod.ZodOptional<zod.z.ZodCoercedString<unknown>>;
|
|
284
289
|
}, zod.z.core.$strip>>;
|
|
285
290
|
type: zod.ZodEnum<{
|
|
286
291
|
usage_based: "usage_based";
|
|
@@ -295,37 +300,39 @@ export declare const updateAddonPathAddonIdRegExp: RegExp;
|
|
|
295
300
|
export declare const UpdateAddonParams: zod.ZodObject<{
|
|
296
301
|
addonId: zod.z.ZodCoercedString<unknown>;
|
|
297
302
|
}, zod.z.core.$strip>;
|
|
298
|
-
export declare const updateAddonBodyNameMax
|
|
299
|
-
export declare const updateAddonBodyDescriptionMax
|
|
300
|
-
export declare const updateAddonBodyRateCardsItemOneKeyMax
|
|
303
|
+
export declare const updateAddonBodyNameMax = 256;
|
|
304
|
+
export declare const updateAddonBodyDescriptionMax = 1024;
|
|
305
|
+
export declare const updateAddonBodyRateCardsItemOneKeyMax = 64;
|
|
301
306
|
export declare const updateAddonBodyRateCardsItemOneKeyRegExp: RegExp;
|
|
302
|
-
export declare const updateAddonBodyRateCardsItemOneNameMax
|
|
303
|
-
export declare const updateAddonBodyRateCardsItemOneDescriptionMax
|
|
304
|
-
export declare const updateAddonBodyRateCardsItemOneFeatureKeyMax
|
|
307
|
+
export declare const updateAddonBodyRateCardsItemOneNameMax = 256;
|
|
308
|
+
export declare const updateAddonBodyRateCardsItemOneDescriptionMax = 1024;
|
|
309
|
+
export declare const updateAddonBodyRateCardsItemOneFeatureKeyMax = 64;
|
|
305
310
|
export declare const updateAddonBodyRateCardsItemOneFeatureKeyRegExp: RegExp;
|
|
306
|
-
export declare const updateAddonBodyRateCardsItemOneEntitlementTemplateOneOneIsSoftLimitDefault
|
|
307
|
-
export declare const updateAddonBodyRateCardsItemOneEntitlementTemplateOneOneIssueAfterResetMin
|
|
308
|
-
export declare const updateAddonBodyRateCardsItemOneEntitlementTemplateOneOneIssueAfterResetPriorityDefault
|
|
309
|
-
export declare const updateAddonBodyRateCardsItemOneEntitlementTemplateOneOneIssueAfterResetPriorityMax
|
|
310
|
-
export declare const updateAddonBodyRateCardsItemOneEntitlementTemplateOneOnePreserveOverageAtResetDefault
|
|
311
|
+
export declare const updateAddonBodyRateCardsItemOneEntitlementTemplateOneOneIsSoftLimitDefault = false;
|
|
312
|
+
export declare const updateAddonBodyRateCardsItemOneEntitlementTemplateOneOneIssueAfterResetMin = 0;
|
|
313
|
+
export declare const updateAddonBodyRateCardsItemOneEntitlementTemplateOneOneIssueAfterResetPriorityDefault = 1;
|
|
314
|
+
export declare const updateAddonBodyRateCardsItemOneEntitlementTemplateOneOneIssueAfterResetPriorityMax = 255;
|
|
315
|
+
export declare const updateAddonBodyRateCardsItemOneEntitlementTemplateOneOnePreserveOverageAtResetDefault = false;
|
|
311
316
|
export declare const updateAddonBodyRateCardsItemOneTaxConfigOneStripeOneCodeRegExp: RegExp;
|
|
317
|
+
export declare const updateAddonBodyRateCardsItemOneTaxConfigOneTaxCodeIdRegExp: RegExp;
|
|
312
318
|
export declare const updateAddonBodyRateCardsItemOnePriceOneAmountOneRegExp: RegExp;
|
|
313
|
-
export declare const updateAddonBodyRateCardsItemOnePriceOnePaymentTermDefault
|
|
319
|
+
export declare const updateAddonBodyRateCardsItemOnePriceOnePaymentTermDefault = "in_advance";
|
|
314
320
|
export declare const updateAddonBodyRateCardsItemOneDiscountsOneUsageOneQuantityOneRegExp: RegExp;
|
|
315
|
-
export declare const updateAddonBodyRateCardsItemTwoKeyMax
|
|
321
|
+
export declare const updateAddonBodyRateCardsItemTwoKeyMax = 64;
|
|
316
322
|
export declare const updateAddonBodyRateCardsItemTwoKeyRegExp: RegExp;
|
|
317
|
-
export declare const updateAddonBodyRateCardsItemTwoNameMax
|
|
318
|
-
export declare const updateAddonBodyRateCardsItemTwoDescriptionMax
|
|
319
|
-
export declare const updateAddonBodyRateCardsItemTwoFeatureKeyMax
|
|
323
|
+
export declare const updateAddonBodyRateCardsItemTwoNameMax = 256;
|
|
324
|
+
export declare const updateAddonBodyRateCardsItemTwoDescriptionMax = 1024;
|
|
325
|
+
export declare const updateAddonBodyRateCardsItemTwoFeatureKeyMax = 64;
|
|
320
326
|
export declare const updateAddonBodyRateCardsItemTwoFeatureKeyRegExp: RegExp;
|
|
321
|
-
export declare const updateAddonBodyRateCardsItemTwoEntitlementTemplateOneOneIsSoftLimitDefault
|
|
322
|
-
export declare const updateAddonBodyRateCardsItemTwoEntitlementTemplateOneOneIssueAfterResetMin
|
|
323
|
-
export declare const updateAddonBodyRateCardsItemTwoEntitlementTemplateOneOneIssueAfterResetPriorityDefault
|
|
324
|
-
export declare const updateAddonBodyRateCardsItemTwoEntitlementTemplateOneOneIssueAfterResetPriorityMax
|
|
325
|
-
export declare const updateAddonBodyRateCardsItemTwoEntitlementTemplateOneOnePreserveOverageAtResetDefault
|
|
327
|
+
export declare const updateAddonBodyRateCardsItemTwoEntitlementTemplateOneOneIsSoftLimitDefault = false;
|
|
328
|
+
export declare const updateAddonBodyRateCardsItemTwoEntitlementTemplateOneOneIssueAfterResetMin = 0;
|
|
329
|
+
export declare const updateAddonBodyRateCardsItemTwoEntitlementTemplateOneOneIssueAfterResetPriorityDefault = 1;
|
|
330
|
+
export declare const updateAddonBodyRateCardsItemTwoEntitlementTemplateOneOneIssueAfterResetPriorityMax = 255;
|
|
331
|
+
export declare const updateAddonBodyRateCardsItemTwoEntitlementTemplateOneOnePreserveOverageAtResetDefault = false;
|
|
326
332
|
export declare const updateAddonBodyRateCardsItemTwoTaxConfigOneStripeOneCodeRegExp: RegExp;
|
|
333
|
+
export declare const updateAddonBodyRateCardsItemTwoTaxConfigOneTaxCodeIdRegExp: RegExp;
|
|
327
334
|
export declare const updateAddonBodyRateCardsItemTwoPriceOneOneAmountOneRegExp: RegExp;
|
|
328
|
-
export declare const updateAddonBodyRateCardsItemTwoPriceOneOnePaymentTermDefault
|
|
335
|
+
export declare const updateAddonBodyRateCardsItemTwoPriceOneOnePaymentTermDefault = "in_advance";
|
|
329
336
|
export declare const updateAddonBodyRateCardsItemTwoPriceOneTwoAmountOneRegExp: RegExp;
|
|
330
337
|
export declare const updateAddonBodyRateCardsItemTwoPriceOneTwoMinimumAmountOneRegExp: RegExp;
|
|
331
338
|
export declare const updateAddonBodyRateCardsItemTwoPriceOneTwoMaximumAmountOneRegExp: RegExp;
|
|
@@ -335,7 +342,7 @@ export declare const updateAddonBodyRateCardsItemTwoPriceOneThreeTiersItemUnitPr
|
|
|
335
342
|
export declare const updateAddonBodyRateCardsItemTwoPriceOneThreeMinimumAmountOneRegExp: RegExp;
|
|
336
343
|
export declare const updateAddonBodyRateCardsItemTwoPriceOneThreeMaximumAmountOneRegExp: RegExp;
|
|
337
344
|
export declare const updateAddonBodyRateCardsItemTwoPriceOneFourMultiplierOneRegExp: RegExp;
|
|
338
|
-
export declare const updateAddonBodyRateCardsItemTwoPriceOneFourMultiplierDefault
|
|
345
|
+
export declare const updateAddonBodyRateCardsItemTwoPriceOneFourMultiplierDefault = "1";
|
|
339
346
|
export declare const updateAddonBodyRateCardsItemTwoPriceOneFourMinimumAmountOneRegExp: RegExp;
|
|
340
347
|
export declare const updateAddonBodyRateCardsItemTwoPriceOneFourMaximumAmountOneRegExp: RegExp;
|
|
341
348
|
export declare const updateAddonBodyRateCardsItemTwoPriceOneFiveAmountOneRegExp: RegExp;
|
|
@@ -409,6 +416,7 @@ export declare const UpdateAddonBody: zod.ZodObject<{
|
|
|
409
416
|
stripe: zod.ZodOptional<zod.ZodObject<{
|
|
410
417
|
code: zod.z.ZodCoercedString<unknown>;
|
|
411
418
|
}, zod.z.core.$strip>>;
|
|
419
|
+
taxCodeId: zod.ZodOptional<zod.z.ZodCoercedString<unknown>>;
|
|
412
420
|
}, zod.z.core.$strip>>;
|
|
413
421
|
type: zod.ZodEnum<{
|
|
414
422
|
flat_fee: "flat_fee";
|
|
@@ -518,6 +526,7 @@ export declare const UpdateAddonBody: zod.ZodObject<{
|
|
|
518
526
|
stripe: zod.ZodOptional<zod.ZodObject<{
|
|
519
527
|
code: zod.z.ZodCoercedString<unknown>;
|
|
520
528
|
}, zod.z.core.$strip>>;
|
|
529
|
+
taxCodeId: zod.ZodOptional<zod.z.ZodCoercedString<unknown>>;
|
|
521
530
|
}, zod.z.core.$strip>>;
|
|
522
531
|
type: zod.ZodEnum<{
|
|
523
532
|
usage_based: "usage_based";
|
|
@@ -528,12 +537,12 @@ export declare const UpdateAddonBody: zod.ZodObject<{
|
|
|
528
537
|
* Get add-on by id or key. The latest published version is returned if latter is used.
|
|
529
538
|
* @summary Get add-on
|
|
530
539
|
*/
|
|
531
|
-
export declare const getAddonPathAddonIdMax
|
|
540
|
+
export declare const getAddonPathAddonIdMax = 64;
|
|
532
541
|
export declare const getAddonPathAddonIdRegExp: RegExp;
|
|
533
542
|
export declare const GetAddonParams: zod.ZodObject<{
|
|
534
543
|
addonId: zod.z.ZodCoercedString<unknown>;
|
|
535
544
|
}, zod.z.core.$strip>;
|
|
536
|
-
export declare const getAddonQueryIncludeLatestDefault
|
|
545
|
+
export declare const getAddonQueryIncludeLatestDefault = false;
|
|
537
546
|
export declare const GetAddonQueryParams: zod.ZodObject<{
|
|
538
547
|
includeLatest: zod.ZodDefault<zod.z.ZodCoercedBoolean<unknown>>;
|
|
539
548
|
}, zod.z.core.$strip>;
|
|
@@ -567,9 +576,9 @@ export declare const PublishAddonParams: zod.ZodObject<{
|
|
|
567
576
|
* List apps.
|
|
568
577
|
* @summary List apps
|
|
569
578
|
*/
|
|
570
|
-
export declare const listAppsQueryPageDefault
|
|
571
|
-
export declare const listAppsQueryPageSizeDefault
|
|
572
|
-
export declare const listAppsQueryPageSizeMax
|
|
579
|
+
export declare const listAppsQueryPageDefault = 1;
|
|
580
|
+
export declare const listAppsQueryPageSizeDefault = 100;
|
|
581
|
+
export declare const listAppsQueryPageSizeMax = 1000;
|
|
573
582
|
export declare const ListAppsQueryParams: zod.ZodObject<{
|
|
574
583
|
page: zod.ZodDefault<zod.z.ZodCoercedNumber<unknown>>;
|
|
575
584
|
pageSize: zod.ZodDefault<zod.z.ZodCoercedNumber<unknown>>;
|
|
@@ -581,7 +590,7 @@ export declare const appCustomInvoicingDraftSynchronizedPathInvoiceIdRegExp: Reg
|
|
|
581
590
|
export declare const AppCustomInvoicingDraftSynchronizedParams: zod.ZodObject<{
|
|
582
591
|
invoiceId: zod.z.ZodCoercedString<unknown>;
|
|
583
592
|
}, zod.z.core.$strip>;
|
|
584
|
-
export declare const appCustomInvoicingDraftSynchronizedBodyInvoicingOneInvoiceNumberOneMax
|
|
593
|
+
export declare const appCustomInvoicingDraftSynchronizedBodyInvoicingOneInvoiceNumberOneMax = 256;
|
|
585
594
|
export declare const appCustomInvoicingDraftSynchronizedBodyInvoicingOneLineExternalIdsItemLineIdRegExp: RegExp;
|
|
586
595
|
export declare const appCustomInvoicingDraftSynchronizedBodyInvoicingOneLineDiscountExternalIdsItemLineDiscountIdRegExp: RegExp;
|
|
587
596
|
export declare const AppCustomInvoicingDraftSynchronizedBody: zod.ZodObject<{
|
|
@@ -605,7 +614,7 @@ export declare const appCustomInvoicingIssuingSynchronizedPathInvoiceIdRegExp: R
|
|
|
605
614
|
export declare const AppCustomInvoicingIssuingSynchronizedParams: zod.ZodObject<{
|
|
606
615
|
invoiceId: zod.z.ZodCoercedString<unknown>;
|
|
607
616
|
}, zod.z.core.$strip>;
|
|
608
|
-
export declare const appCustomInvoicingIssuingSynchronizedBodyInvoicingOneInvoiceNumberOneMax
|
|
617
|
+
export declare const appCustomInvoicingIssuingSynchronizedBodyInvoicingOneInvoiceNumberOneMax = 256;
|
|
609
618
|
export declare const AppCustomInvoicingIssuingSynchronizedBody: zod.ZodObject<{
|
|
610
619
|
invoicing: zod.ZodOptional<zod.ZodObject<{
|
|
611
620
|
invoiceNumber: zod.ZodOptional<zod.z.ZodCoercedString<unknown>>;
|
|
@@ -648,12 +657,12 @@ export declare const updateAppPathIdRegExp: RegExp;
|
|
|
648
657
|
export declare const UpdateAppParams: zod.ZodObject<{
|
|
649
658
|
id: zod.z.ZodCoercedString<unknown>;
|
|
650
659
|
}, zod.z.core.$strip>;
|
|
651
|
-
export declare const updateAppBodyOneNameMax
|
|
652
|
-
export declare const updateAppBodyOneDescriptionMax
|
|
653
|
-
export declare const updateAppBodyTwoNameMax
|
|
654
|
-
export declare const updateAppBodyTwoDescriptionMax
|
|
655
|
-
export declare const updateAppBodyThreeNameMax
|
|
656
|
-
export declare const updateAppBodyThreeDescriptionMax
|
|
660
|
+
export declare const updateAppBodyOneNameMax = 256;
|
|
661
|
+
export declare const updateAppBodyOneDescriptionMax = 1024;
|
|
662
|
+
export declare const updateAppBodyTwoNameMax = 256;
|
|
663
|
+
export declare const updateAppBodyTwoDescriptionMax = 1024;
|
|
664
|
+
export declare const updateAppBodyThreeNameMax = 256;
|
|
665
|
+
export declare const updateAppBodyThreeDescriptionMax = 1024;
|
|
657
666
|
export declare const UpdateAppBody: zod.ZodUnion<readonly [zod.ZodObject<{
|
|
658
667
|
description: zod.ZodOptional<zod.z.ZodCoercedString<unknown>>;
|
|
659
668
|
metadata: zod.ZodOptional<zod.ZodNullable<zod.ZodRecord<zod.ZodString, zod.z.ZodCoercedString<unknown>>>>;
|
|
@@ -729,11 +738,12 @@ if they have customer orverrides or not.
|
|
|
729
738
|
* @summary List customer overrides
|
|
730
739
|
*/
|
|
731
740
|
export declare const listBillingProfileCustomerOverridesQueryBillingProfileItemRegExp: RegExp;
|
|
732
|
-
export declare const listBillingProfileCustomerOverridesQueryIncludeAllCustomersDefault
|
|
741
|
+
export declare const listBillingProfileCustomerOverridesQueryIncludeAllCustomersDefault = true;
|
|
733
742
|
export declare const listBillingProfileCustomerOverridesQueryCustomerIdItemRegExp: RegExp;
|
|
734
|
-
export declare const
|
|
735
|
-
export declare const
|
|
736
|
-
export declare const
|
|
743
|
+
export declare const listBillingProfileCustomerOverridesQueryOrderDefault = "ASC";
|
|
744
|
+
export declare const listBillingProfileCustomerOverridesQueryPageDefault = 1;
|
|
745
|
+
export declare const listBillingProfileCustomerOverridesQueryPageSizeDefault = 100;
|
|
746
|
+
export declare const listBillingProfileCustomerOverridesQueryPageSizeMax = 1000;
|
|
737
747
|
export declare const ListBillingProfileCustomerOverridesQueryParams: zod.ZodObject<{
|
|
738
748
|
billingProfile: zod.ZodOptional<zod.ZodArray<zod.z.ZodCoercedString<unknown>>>;
|
|
739
749
|
customerId: zod.ZodOptional<zod.ZodArray<zod.z.ZodCoercedString<unknown>>>;
|
|
@@ -746,7 +756,7 @@ export declare const ListBillingProfileCustomerOverridesQueryParams: zod.ZodObje
|
|
|
746
756
|
customer: "customer";
|
|
747
757
|
}>>>;
|
|
748
758
|
includeAllCustomers: zod.ZodDefault<zod.z.ZodCoercedBoolean<unknown>>;
|
|
749
|
-
order: zod.
|
|
759
|
+
order: zod.ZodDefault<zod.ZodEnum<{
|
|
750
760
|
ASC: "ASC";
|
|
751
761
|
DESC: "DESC";
|
|
752
762
|
}>>;
|
|
@@ -821,14 +831,15 @@ export declare const createPendingInvoiceLinePathCustomerIdRegExp: RegExp;
|
|
|
821
831
|
export declare const CreatePendingInvoiceLineParams: zod.ZodObject<{
|
|
822
832
|
customerId: zod.z.ZodCoercedString<unknown>;
|
|
823
833
|
}, zod.z.core.$strip>;
|
|
824
|
-
export declare const createPendingInvoiceLineBodyCurrencyOneMin
|
|
825
|
-
export declare const createPendingInvoiceLineBodyCurrencyOneMax
|
|
834
|
+
export declare const createPendingInvoiceLineBodyCurrencyOneMin = 3;
|
|
835
|
+
export declare const createPendingInvoiceLineBodyCurrencyOneMax = 3;
|
|
826
836
|
export declare const createPendingInvoiceLineBodyCurrencyOneRegExp: RegExp;
|
|
827
|
-
export declare const createPendingInvoiceLineBodyLinesItemNameMax
|
|
828
|
-
export declare const createPendingInvoiceLineBodyLinesItemDescriptionMax
|
|
837
|
+
export declare const createPendingInvoiceLineBodyLinesItemNameMax = 256;
|
|
838
|
+
export declare const createPendingInvoiceLineBodyLinesItemDescriptionMax = 1024;
|
|
829
839
|
export declare const createPendingInvoiceLineBodyLinesItemTaxConfigOneStripeOneCodeRegExp: RegExp;
|
|
840
|
+
export declare const createPendingInvoiceLineBodyLinesItemTaxConfigOneTaxCodeIdRegExp: RegExp;
|
|
830
841
|
export declare const createPendingInvoiceLineBodyLinesItemPriceOneOneAmountOneRegExp: RegExp;
|
|
831
|
-
export declare const createPendingInvoiceLineBodyLinesItemPriceOneOnePaymentTermDefault
|
|
842
|
+
export declare const createPendingInvoiceLineBodyLinesItemPriceOneOnePaymentTermDefault = "in_advance";
|
|
832
843
|
export declare const createPendingInvoiceLineBodyLinesItemPriceOneTwoAmountOneRegExp: RegExp;
|
|
833
844
|
export declare const createPendingInvoiceLineBodyLinesItemPriceOneTwoMinimumAmountOneRegExp: RegExp;
|
|
834
845
|
export declare const createPendingInvoiceLineBodyLinesItemPriceOneTwoMaximumAmountOneRegExp: RegExp;
|
|
@@ -838,20 +849,21 @@ export declare const createPendingInvoiceLineBodyLinesItemPriceOneThreeTiersItem
|
|
|
838
849
|
export declare const createPendingInvoiceLineBodyLinesItemPriceOneThreeMinimumAmountOneRegExp: RegExp;
|
|
839
850
|
export declare const createPendingInvoiceLineBodyLinesItemPriceOneThreeMaximumAmountOneRegExp: RegExp;
|
|
840
851
|
export declare const createPendingInvoiceLineBodyLinesItemPriceOneFourMultiplierOneRegExp: RegExp;
|
|
841
|
-
export declare const createPendingInvoiceLineBodyLinesItemPriceOneFourMultiplierDefault
|
|
852
|
+
export declare const createPendingInvoiceLineBodyLinesItemPriceOneFourMultiplierDefault = "1";
|
|
842
853
|
export declare const createPendingInvoiceLineBodyLinesItemPriceOneFourMinimumAmountOneRegExp: RegExp;
|
|
843
854
|
export declare const createPendingInvoiceLineBodyLinesItemPriceOneFourMaximumAmountOneRegExp: RegExp;
|
|
844
855
|
export declare const createPendingInvoiceLineBodyLinesItemPriceOneFiveAmountOneRegExp: RegExp;
|
|
845
856
|
export declare const createPendingInvoiceLineBodyLinesItemPriceOneFiveQuantityPerPackageOneRegExp: RegExp;
|
|
846
857
|
export declare const createPendingInvoiceLineBodyLinesItemPriceOneFiveMinimumAmountOneRegExp: RegExp;
|
|
847
858
|
export declare const createPendingInvoiceLineBodyLinesItemPriceOneFiveMaximumAmountOneRegExp: RegExp;
|
|
848
|
-
export declare const createPendingInvoiceLineBodyLinesItemFeatureKeyMax
|
|
859
|
+
export declare const createPendingInvoiceLineBodyLinesItemFeatureKeyMax = 64;
|
|
849
860
|
export declare const createPendingInvoiceLineBodyLinesItemFeatureKeyRegExp: RegExp;
|
|
850
|
-
export declare const createPendingInvoiceLineBodyLinesItemRateCardOneFeatureKeyMax
|
|
861
|
+
export declare const createPendingInvoiceLineBodyLinesItemRateCardOneFeatureKeyMax = 64;
|
|
851
862
|
export declare const createPendingInvoiceLineBodyLinesItemRateCardOneFeatureKeyRegExp: RegExp;
|
|
852
863
|
export declare const createPendingInvoiceLineBodyLinesItemRateCardOneTaxConfigOneStripeOneCodeRegExp: RegExp;
|
|
864
|
+
export declare const createPendingInvoiceLineBodyLinesItemRateCardOneTaxConfigOneTaxCodeIdRegExp: RegExp;
|
|
853
865
|
export declare const createPendingInvoiceLineBodyLinesItemRateCardOnePriceOneOneAmountOneRegExp: RegExp;
|
|
854
|
-
export declare const createPendingInvoiceLineBodyLinesItemRateCardOnePriceOneOnePaymentTermDefault
|
|
866
|
+
export declare const createPendingInvoiceLineBodyLinesItemRateCardOnePriceOneOnePaymentTermDefault = "in_advance";
|
|
855
867
|
export declare const createPendingInvoiceLineBodyLinesItemRateCardOnePriceOneTwoAmountOneRegExp: RegExp;
|
|
856
868
|
export declare const createPendingInvoiceLineBodyLinesItemRateCardOnePriceOneTwoMinimumAmountOneRegExp: RegExp;
|
|
857
869
|
export declare const createPendingInvoiceLineBodyLinesItemRateCardOnePriceOneTwoMaximumAmountOneRegExp: RegExp;
|
|
@@ -861,7 +873,7 @@ export declare const createPendingInvoiceLineBodyLinesItemRateCardOnePriceOneThr
|
|
|
861
873
|
export declare const createPendingInvoiceLineBodyLinesItemRateCardOnePriceOneThreeMinimumAmountOneRegExp: RegExp;
|
|
862
874
|
export declare const createPendingInvoiceLineBodyLinesItemRateCardOnePriceOneThreeMaximumAmountOneRegExp: RegExp;
|
|
863
875
|
export declare const createPendingInvoiceLineBodyLinesItemRateCardOnePriceOneFourMultiplierOneRegExp: RegExp;
|
|
864
|
-
export declare const createPendingInvoiceLineBodyLinesItemRateCardOnePriceOneFourMultiplierDefault
|
|
876
|
+
export declare const createPendingInvoiceLineBodyLinesItemRateCardOnePriceOneFourMultiplierDefault = "1";
|
|
865
877
|
export declare const createPendingInvoiceLineBodyLinesItemRateCardOnePriceOneFourMinimumAmountOneRegExp: RegExp;
|
|
866
878
|
export declare const createPendingInvoiceLineBodyLinesItemRateCardOnePriceOneFourMaximumAmountOneRegExp: RegExp;
|
|
867
879
|
export declare const createPendingInvoiceLineBodyLinesItemRateCardOnePriceOneFiveAmountOneRegExp: RegExp;
|
|
@@ -1020,6 +1032,7 @@ export declare const CreatePendingInvoiceLineBody: zod.ZodObject<{
|
|
|
1020
1032
|
stripe: zod.ZodOptional<zod.ZodObject<{
|
|
1021
1033
|
code: zod.z.ZodCoercedString<unknown>;
|
|
1022
1034
|
}, zod.z.core.$strip>>;
|
|
1035
|
+
taxCodeId: zod.ZodOptional<zod.z.ZodCoercedString<unknown>>;
|
|
1023
1036
|
}, zod.z.core.$strip>>;
|
|
1024
1037
|
}, zod.z.core.$strip>>;
|
|
1025
1038
|
taxConfig: zod.ZodOptional<zod.ZodObject<{
|
|
@@ -1033,6 +1046,7 @@ export declare const CreatePendingInvoiceLineBody: zod.ZodObject<{
|
|
|
1033
1046
|
stripe: zod.ZodOptional<zod.ZodObject<{
|
|
1034
1047
|
code: zod.z.ZodCoercedString<unknown>;
|
|
1035
1048
|
}, zod.z.core.$strip>>;
|
|
1049
|
+
taxCodeId: zod.ZodOptional<zod.z.ZodCoercedString<unknown>>;
|
|
1036
1050
|
}, zod.z.core.$strip>>;
|
|
1037
1051
|
}, zod.z.core.$strip>>;
|
|
1038
1052
|
}, zod.z.core.$strip>;
|
|
@@ -1048,15 +1062,16 @@ export declare const simulateInvoicePathCustomerIdRegExp: RegExp;
|
|
|
1048
1062
|
export declare const SimulateInvoiceParams: zod.ZodObject<{
|
|
1049
1063
|
customerId: zod.z.ZodCoercedString<unknown>;
|
|
1050
1064
|
}, zod.z.core.$strip>;
|
|
1051
|
-
export declare const simulateInvoiceBodyNumberOneMax
|
|
1052
|
-
export declare const simulateInvoiceBodyCurrencyOneMin
|
|
1053
|
-
export declare const simulateInvoiceBodyCurrencyOneMax
|
|
1065
|
+
export declare const simulateInvoiceBodyNumberOneMax = 256;
|
|
1066
|
+
export declare const simulateInvoiceBodyCurrencyOneMin = 3;
|
|
1067
|
+
export declare const simulateInvoiceBodyCurrencyOneMax = 3;
|
|
1054
1068
|
export declare const simulateInvoiceBodyCurrencyOneRegExp: RegExp;
|
|
1055
|
-
export declare const simulateInvoiceBodyLinesItemNameMax
|
|
1056
|
-
export declare const simulateInvoiceBodyLinesItemDescriptionMax
|
|
1069
|
+
export declare const simulateInvoiceBodyLinesItemNameMax = 256;
|
|
1070
|
+
export declare const simulateInvoiceBodyLinesItemDescriptionMax = 1024;
|
|
1057
1071
|
export declare const simulateInvoiceBodyLinesItemTaxConfigOneStripeOneCodeRegExp: RegExp;
|
|
1072
|
+
export declare const simulateInvoiceBodyLinesItemTaxConfigOneTaxCodeIdRegExp: RegExp;
|
|
1058
1073
|
export declare const simulateInvoiceBodyLinesItemPriceOneOneAmountOneRegExp: RegExp;
|
|
1059
|
-
export declare const simulateInvoiceBodyLinesItemPriceOneOnePaymentTermDefault
|
|
1074
|
+
export declare const simulateInvoiceBodyLinesItemPriceOneOnePaymentTermDefault = "in_advance";
|
|
1060
1075
|
export declare const simulateInvoiceBodyLinesItemPriceOneTwoAmountOneRegExp: RegExp;
|
|
1061
1076
|
export declare const simulateInvoiceBodyLinesItemPriceOneTwoMinimumAmountOneRegExp: RegExp;
|
|
1062
1077
|
export declare const simulateInvoiceBodyLinesItemPriceOneTwoMaximumAmountOneRegExp: RegExp;
|
|
@@ -1066,20 +1081,21 @@ export declare const simulateInvoiceBodyLinesItemPriceOneThreeTiersItemUnitPrice
|
|
|
1066
1081
|
export declare const simulateInvoiceBodyLinesItemPriceOneThreeMinimumAmountOneRegExp: RegExp;
|
|
1067
1082
|
export declare const simulateInvoiceBodyLinesItemPriceOneThreeMaximumAmountOneRegExp: RegExp;
|
|
1068
1083
|
export declare const simulateInvoiceBodyLinesItemPriceOneFourMultiplierOneRegExp: RegExp;
|
|
1069
|
-
export declare const simulateInvoiceBodyLinesItemPriceOneFourMultiplierDefault
|
|
1084
|
+
export declare const simulateInvoiceBodyLinesItemPriceOneFourMultiplierDefault = "1";
|
|
1070
1085
|
export declare const simulateInvoiceBodyLinesItemPriceOneFourMinimumAmountOneRegExp: RegExp;
|
|
1071
1086
|
export declare const simulateInvoiceBodyLinesItemPriceOneFourMaximumAmountOneRegExp: RegExp;
|
|
1072
1087
|
export declare const simulateInvoiceBodyLinesItemPriceOneFiveAmountOneRegExp: RegExp;
|
|
1073
1088
|
export declare const simulateInvoiceBodyLinesItemPriceOneFiveQuantityPerPackageOneRegExp: RegExp;
|
|
1074
1089
|
export declare const simulateInvoiceBodyLinesItemPriceOneFiveMinimumAmountOneRegExp: RegExp;
|
|
1075
1090
|
export declare const simulateInvoiceBodyLinesItemPriceOneFiveMaximumAmountOneRegExp: RegExp;
|
|
1076
|
-
export declare const simulateInvoiceBodyLinesItemFeatureKeyMax
|
|
1091
|
+
export declare const simulateInvoiceBodyLinesItemFeatureKeyMax = 64;
|
|
1077
1092
|
export declare const simulateInvoiceBodyLinesItemFeatureKeyRegExp: RegExp;
|
|
1078
|
-
export declare const simulateInvoiceBodyLinesItemRateCardOneFeatureKeyMax
|
|
1093
|
+
export declare const simulateInvoiceBodyLinesItemRateCardOneFeatureKeyMax = 64;
|
|
1079
1094
|
export declare const simulateInvoiceBodyLinesItemRateCardOneFeatureKeyRegExp: RegExp;
|
|
1080
1095
|
export declare const simulateInvoiceBodyLinesItemRateCardOneTaxConfigOneStripeOneCodeRegExp: RegExp;
|
|
1096
|
+
export declare const simulateInvoiceBodyLinesItemRateCardOneTaxConfigOneTaxCodeIdRegExp: RegExp;
|
|
1081
1097
|
export declare const simulateInvoiceBodyLinesItemRateCardOnePriceOneOneAmountOneRegExp: RegExp;
|
|
1082
|
-
export declare const simulateInvoiceBodyLinesItemRateCardOnePriceOneOnePaymentTermDefault
|
|
1098
|
+
export declare const simulateInvoiceBodyLinesItemRateCardOnePriceOneOnePaymentTermDefault = "in_advance";
|
|
1083
1099
|
export declare const simulateInvoiceBodyLinesItemRateCardOnePriceOneTwoAmountOneRegExp: RegExp;
|
|
1084
1100
|
export declare const simulateInvoiceBodyLinesItemRateCardOnePriceOneTwoMinimumAmountOneRegExp: RegExp;
|
|
1085
1101
|
export declare const simulateInvoiceBodyLinesItemRateCardOnePriceOneTwoMaximumAmountOneRegExp: RegExp;
|
|
@@ -1089,7 +1105,7 @@ export declare const simulateInvoiceBodyLinesItemRateCardOnePriceOneThreeTiersIt
|
|
|
1089
1105
|
export declare const simulateInvoiceBodyLinesItemRateCardOnePriceOneThreeMinimumAmountOneRegExp: RegExp;
|
|
1090
1106
|
export declare const simulateInvoiceBodyLinesItemRateCardOnePriceOneThreeMaximumAmountOneRegExp: RegExp;
|
|
1091
1107
|
export declare const simulateInvoiceBodyLinesItemRateCardOnePriceOneFourMultiplierOneRegExp: RegExp;
|
|
1092
|
-
export declare const simulateInvoiceBodyLinesItemRateCardOnePriceOneFourMultiplierDefault
|
|
1108
|
+
export declare const simulateInvoiceBodyLinesItemRateCardOnePriceOneFourMultiplierDefault = "1";
|
|
1093
1109
|
export declare const simulateInvoiceBodyLinesItemRateCardOnePriceOneFourMinimumAmountOneRegExp: RegExp;
|
|
1094
1110
|
export declare const simulateInvoiceBodyLinesItemRateCardOnePriceOneFourMaximumAmountOneRegExp: RegExp;
|
|
1095
1111
|
export declare const simulateInvoiceBodyLinesItemRateCardOnePriceOneFiveAmountOneRegExp: RegExp;
|
|
@@ -1254,6 +1270,7 @@ export declare const SimulateInvoiceBody: zod.ZodObject<{
|
|
|
1254
1270
|
stripe: zod.ZodOptional<zod.ZodObject<{
|
|
1255
1271
|
code: zod.z.ZodCoercedString<unknown>;
|
|
1256
1272
|
}, zod.z.core.$strip>>;
|
|
1273
|
+
taxCodeId: zod.ZodOptional<zod.z.ZodCoercedString<unknown>>;
|
|
1257
1274
|
}, zod.z.core.$strip>>;
|
|
1258
1275
|
}, zod.z.core.$strip>>;
|
|
1259
1276
|
taxConfig: zod.ZodOptional<zod.ZodObject<{
|
|
@@ -1267,6 +1284,7 @@ export declare const SimulateInvoiceBody: zod.ZodObject<{
|
|
|
1267
1284
|
stripe: zod.ZodOptional<zod.ZodObject<{
|
|
1268
1285
|
code: zod.z.ZodCoercedString<unknown>;
|
|
1269
1286
|
}, zod.z.core.$strip>>;
|
|
1287
|
+
taxCodeId: zod.ZodOptional<zod.z.ZodCoercedString<unknown>>;
|
|
1270
1288
|
}, zod.z.core.$strip>>;
|
|
1271
1289
|
}, zod.z.core.$strip>>;
|
|
1272
1290
|
number: zod.ZodOptional<zod.z.ZodCoercedString<unknown>>;
|
|
@@ -1281,9 +1299,10 @@ Gathering invoices will always show the current usage calculated on the fly.
|
|
|
1281
1299
|
* @summary List invoices
|
|
1282
1300
|
*/
|
|
1283
1301
|
export declare const listInvoicesQueryCustomersItemRegExp: RegExp;
|
|
1284
|
-
export declare const listInvoicesQueryPageDefault
|
|
1285
|
-
export declare const listInvoicesQueryPageSizeDefault
|
|
1286
|
-
export declare const listInvoicesQueryPageSizeMax
|
|
1302
|
+
export declare const listInvoicesQueryPageDefault = 1;
|
|
1303
|
+
export declare const listInvoicesQueryPageSizeDefault = 100;
|
|
1304
|
+
export declare const listInvoicesQueryPageSizeMax = 1000;
|
|
1305
|
+
export declare const listInvoicesQueryOrderDefault = "ASC";
|
|
1287
1306
|
export declare const ListInvoicesQueryParams: zod.ZodObject<{
|
|
1288
1307
|
createdAfter: zod.ZodOptional<zod.z.ZodCoercedDate<unknown>>;
|
|
1289
1308
|
createdBefore: zod.ZodOptional<zod.z.ZodCoercedDate<unknown>>;
|
|
@@ -1297,7 +1316,7 @@ export declare const ListInvoicesQueryParams: zod.ZodObject<{
|
|
|
1297
1316
|
includeDeleted: zod.ZodOptional<zod.z.ZodCoercedBoolean<unknown>>;
|
|
1298
1317
|
issuedAfter: zod.ZodOptional<zod.z.ZodCoercedDate<unknown>>;
|
|
1299
1318
|
issuedBefore: zod.ZodOptional<zod.z.ZodCoercedDate<unknown>>;
|
|
1300
|
-
order: zod.
|
|
1319
|
+
order: zod.ZodDefault<zod.ZodEnum<{
|
|
1301
1320
|
ASC: "ASC";
|
|
1302
1321
|
DESC: "DESC";
|
|
1303
1322
|
}>>;
|
|
@@ -1357,7 +1376,7 @@ export declare const getInvoicePathInvoiceIdRegExp: RegExp;
|
|
|
1357
1376
|
export declare const GetInvoiceParams: zod.ZodObject<{
|
|
1358
1377
|
invoiceId: zod.z.ZodCoercedString<unknown>;
|
|
1359
1378
|
}, zod.z.core.$strip>;
|
|
1360
|
-
export declare const getInvoiceQueryIncludeDeletedLinesDefault
|
|
1379
|
+
export declare const getInvoiceQueryIncludeDeletedLinesDefault = false;
|
|
1361
1380
|
export declare const GetInvoiceQueryParams: zod.ZodObject<{
|
|
1362
1381
|
expand: zod.ZodDefault<zod.ZodArray<zod.ZodEnum<{
|
|
1363
1382
|
lines: "lines";
|
|
@@ -1388,24 +1407,25 @@ export declare const updateInvoicePathInvoiceIdRegExp: RegExp;
|
|
|
1388
1407
|
export declare const UpdateInvoiceParams: zod.ZodObject<{
|
|
1389
1408
|
invoiceId: zod.z.ZodCoercedString<unknown>;
|
|
1390
1409
|
}, zod.z.core.$strip>;
|
|
1391
|
-
export declare const updateInvoiceBodyDescriptionMax
|
|
1392
|
-
export declare const updateInvoiceBodySupplierOneKeyMax
|
|
1393
|
-
export declare const updateInvoiceBodySupplierOneTaxIdOneCodeOneMax
|
|
1394
|
-
export declare const updateInvoiceBodySupplierOneAddressesItemCountryOneMin
|
|
1395
|
-
export declare const updateInvoiceBodySupplierOneAddressesItemCountryOneMax
|
|
1410
|
+
export declare const updateInvoiceBodyDescriptionMax = 1024;
|
|
1411
|
+
export declare const updateInvoiceBodySupplierOneKeyMax = 256;
|
|
1412
|
+
export declare const updateInvoiceBodySupplierOneTaxIdOneCodeOneMax = 32;
|
|
1413
|
+
export declare const updateInvoiceBodySupplierOneAddressesItemCountryOneMin = 2;
|
|
1414
|
+
export declare const updateInvoiceBodySupplierOneAddressesItemCountryOneMax = 2;
|
|
1396
1415
|
export declare const updateInvoiceBodySupplierOneAddressesItemCountryOneRegExp: RegExp;
|
|
1397
|
-
export declare const updateInvoiceBodySupplierOneAddressesMax
|
|
1398
|
-
export declare const updateInvoiceBodyCustomerOneKeyMax
|
|
1399
|
-
export declare const updateInvoiceBodyCustomerOneTaxIdOneCodeOneMax
|
|
1400
|
-
export declare const updateInvoiceBodyCustomerOneAddressesItemCountryOneMin
|
|
1401
|
-
export declare const updateInvoiceBodyCustomerOneAddressesItemCountryOneMax
|
|
1416
|
+
export declare const updateInvoiceBodySupplierOneAddressesMax = 1;
|
|
1417
|
+
export declare const updateInvoiceBodyCustomerOneKeyMax = 256;
|
|
1418
|
+
export declare const updateInvoiceBodyCustomerOneTaxIdOneCodeOneMax = 32;
|
|
1419
|
+
export declare const updateInvoiceBodyCustomerOneAddressesItemCountryOneMin = 2;
|
|
1420
|
+
export declare const updateInvoiceBodyCustomerOneAddressesItemCountryOneMax = 2;
|
|
1402
1421
|
export declare const updateInvoiceBodyCustomerOneAddressesItemCountryOneRegExp: RegExp;
|
|
1403
|
-
export declare const updateInvoiceBodyCustomerOneAddressesMax
|
|
1404
|
-
export declare const updateInvoiceBodyLinesItemNameMax
|
|
1405
|
-
export declare const updateInvoiceBodyLinesItemDescriptionMax
|
|
1422
|
+
export declare const updateInvoiceBodyCustomerOneAddressesMax = 1;
|
|
1423
|
+
export declare const updateInvoiceBodyLinesItemNameMax = 256;
|
|
1424
|
+
export declare const updateInvoiceBodyLinesItemDescriptionMax = 1024;
|
|
1406
1425
|
export declare const updateInvoiceBodyLinesItemTaxConfigOneStripeOneCodeRegExp: RegExp;
|
|
1426
|
+
export declare const updateInvoiceBodyLinesItemTaxConfigOneTaxCodeIdRegExp: RegExp;
|
|
1407
1427
|
export declare const updateInvoiceBodyLinesItemPriceOneOneAmountOneRegExp: RegExp;
|
|
1408
|
-
export declare const updateInvoiceBodyLinesItemPriceOneOnePaymentTermDefault
|
|
1428
|
+
export declare const updateInvoiceBodyLinesItemPriceOneOnePaymentTermDefault = "in_advance";
|
|
1409
1429
|
export declare const updateInvoiceBodyLinesItemPriceOneTwoAmountOneRegExp: RegExp;
|
|
1410
1430
|
export declare const updateInvoiceBodyLinesItemPriceOneTwoMinimumAmountOneRegExp: RegExp;
|
|
1411
1431
|
export declare const updateInvoiceBodyLinesItemPriceOneTwoMaximumAmountOneRegExp: RegExp;
|
|
@@ -1415,20 +1435,21 @@ export declare const updateInvoiceBodyLinesItemPriceOneThreeTiersItemUnitPriceOn
|
|
|
1415
1435
|
export declare const updateInvoiceBodyLinesItemPriceOneThreeMinimumAmountOneRegExp: RegExp;
|
|
1416
1436
|
export declare const updateInvoiceBodyLinesItemPriceOneThreeMaximumAmountOneRegExp: RegExp;
|
|
1417
1437
|
export declare const updateInvoiceBodyLinesItemPriceOneFourMultiplierOneRegExp: RegExp;
|
|
1418
|
-
export declare const updateInvoiceBodyLinesItemPriceOneFourMultiplierDefault
|
|
1438
|
+
export declare const updateInvoiceBodyLinesItemPriceOneFourMultiplierDefault = "1";
|
|
1419
1439
|
export declare const updateInvoiceBodyLinesItemPriceOneFourMinimumAmountOneRegExp: RegExp;
|
|
1420
1440
|
export declare const updateInvoiceBodyLinesItemPriceOneFourMaximumAmountOneRegExp: RegExp;
|
|
1421
1441
|
export declare const updateInvoiceBodyLinesItemPriceOneFiveAmountOneRegExp: RegExp;
|
|
1422
1442
|
export declare const updateInvoiceBodyLinesItemPriceOneFiveQuantityPerPackageOneRegExp: RegExp;
|
|
1423
1443
|
export declare const updateInvoiceBodyLinesItemPriceOneFiveMinimumAmountOneRegExp: RegExp;
|
|
1424
1444
|
export declare const updateInvoiceBodyLinesItemPriceOneFiveMaximumAmountOneRegExp: RegExp;
|
|
1425
|
-
export declare const updateInvoiceBodyLinesItemFeatureKeyMax
|
|
1445
|
+
export declare const updateInvoiceBodyLinesItemFeatureKeyMax = 64;
|
|
1426
1446
|
export declare const updateInvoiceBodyLinesItemFeatureKeyRegExp: RegExp;
|
|
1427
|
-
export declare const updateInvoiceBodyLinesItemRateCardOneFeatureKeyMax
|
|
1447
|
+
export declare const updateInvoiceBodyLinesItemRateCardOneFeatureKeyMax = 64;
|
|
1428
1448
|
export declare const updateInvoiceBodyLinesItemRateCardOneFeatureKeyRegExp: RegExp;
|
|
1429
1449
|
export declare const updateInvoiceBodyLinesItemRateCardOneTaxConfigOneStripeOneCodeRegExp: RegExp;
|
|
1450
|
+
export declare const updateInvoiceBodyLinesItemRateCardOneTaxConfigOneTaxCodeIdRegExp: RegExp;
|
|
1430
1451
|
export declare const updateInvoiceBodyLinesItemRateCardOnePriceOneOneAmountOneRegExp: RegExp;
|
|
1431
|
-
export declare const updateInvoiceBodyLinesItemRateCardOnePriceOneOnePaymentTermDefault
|
|
1452
|
+
export declare const updateInvoiceBodyLinesItemRateCardOnePriceOneOnePaymentTermDefault = "in_advance";
|
|
1432
1453
|
export declare const updateInvoiceBodyLinesItemRateCardOnePriceOneTwoAmountOneRegExp: RegExp;
|
|
1433
1454
|
export declare const updateInvoiceBodyLinesItemRateCardOnePriceOneTwoMinimumAmountOneRegExp: RegExp;
|
|
1434
1455
|
export declare const updateInvoiceBodyLinesItemRateCardOnePriceOneTwoMaximumAmountOneRegExp: RegExp;
|
|
@@ -1438,7 +1459,7 @@ export declare const updateInvoiceBodyLinesItemRateCardOnePriceOneThreeTiersItem
|
|
|
1438
1459
|
export declare const updateInvoiceBodyLinesItemRateCardOnePriceOneThreeMinimumAmountOneRegExp: RegExp;
|
|
1439
1460
|
export declare const updateInvoiceBodyLinesItemRateCardOnePriceOneThreeMaximumAmountOneRegExp: RegExp;
|
|
1440
1461
|
export declare const updateInvoiceBodyLinesItemRateCardOnePriceOneFourMultiplierOneRegExp: RegExp;
|
|
1441
|
-
export declare const updateInvoiceBodyLinesItemRateCardOnePriceOneFourMultiplierDefault
|
|
1462
|
+
export declare const updateInvoiceBodyLinesItemRateCardOnePriceOneFourMultiplierDefault = "1";
|
|
1442
1463
|
export declare const updateInvoiceBodyLinesItemRateCardOnePriceOneFourMinimumAmountOneRegExp: RegExp;
|
|
1443
1464
|
export declare const updateInvoiceBodyLinesItemRateCardOnePriceOneFourMaximumAmountOneRegExp: RegExp;
|
|
1444
1465
|
export declare const updateInvoiceBodyLinesItemRateCardOnePriceOneFiveAmountOneRegExp: RegExp;
|
|
@@ -1449,11 +1470,12 @@ export declare const updateInvoiceBodyLinesItemRateCardOneDiscountsOnePercentage
|
|
|
1449
1470
|
export declare const updateInvoiceBodyLinesItemRateCardOneDiscountsOneUsageOneQuantityOneRegExp: RegExp;
|
|
1450
1471
|
export declare const updateInvoiceBodyLinesItemRateCardOneDiscountsOneUsageOneCorrelationIdRegExp: RegExp;
|
|
1451
1472
|
export declare const updateInvoiceBodyLinesItemIdRegExp: RegExp;
|
|
1452
|
-
export declare const updateInvoiceBodyWorkflowOneWorkflowOneInvoicingOneAutoAdvanceDefault
|
|
1453
|
-
export declare const updateInvoiceBodyWorkflowOneWorkflowOneInvoicingOneDraftPeriodDefault
|
|
1454
|
-
export declare const updateInvoiceBodyWorkflowOneWorkflowOneInvoicingOneDueAfterDefault
|
|
1473
|
+
export declare const updateInvoiceBodyWorkflowOneWorkflowOneInvoicingOneAutoAdvanceDefault = true;
|
|
1474
|
+
export declare const updateInvoiceBodyWorkflowOneWorkflowOneInvoicingOneDraftPeriodDefault = "P0D";
|
|
1475
|
+
export declare const updateInvoiceBodyWorkflowOneWorkflowOneInvoicingOneDueAfterDefault = "P30D";
|
|
1455
1476
|
export declare const updateInvoiceBodyWorkflowOneWorkflowOneInvoicingOneDefaultTaxConfigOneStripeOneCodeRegExp: RegExp;
|
|
1456
|
-
export declare const
|
|
1477
|
+
export declare const updateInvoiceBodyWorkflowOneWorkflowOneInvoicingOneDefaultTaxConfigOneTaxCodeIdRegExp: RegExp;
|
|
1478
|
+
export declare const updateInvoiceBodyWorkflowOneWorkflowOnePaymentOneCollectionMethodDefault = "charge_automatically";
|
|
1457
1479
|
export declare const UpdateInvoiceBody: zod.ZodObject<{
|
|
1458
1480
|
customer: zod.ZodObject<{
|
|
1459
1481
|
addresses: zod.ZodOptional<zod.ZodArray<zod.ZodObject<{
|
|
@@ -1620,6 +1642,7 @@ export declare const UpdateInvoiceBody: zod.ZodObject<{
|
|
|
1620
1642
|
stripe: zod.ZodOptional<zod.ZodObject<{
|
|
1621
1643
|
code: zod.z.ZodCoercedString<unknown>;
|
|
1622
1644
|
}, zod.z.core.$strip>>;
|
|
1645
|
+
taxCodeId: zod.ZodOptional<zod.z.ZodCoercedString<unknown>>;
|
|
1623
1646
|
}, zod.z.core.$strip>>;
|
|
1624
1647
|
}, zod.z.core.$strip>>;
|
|
1625
1648
|
taxConfig: zod.ZodOptional<zod.ZodObject<{
|
|
@@ -1633,6 +1656,7 @@ export declare const UpdateInvoiceBody: zod.ZodObject<{
|
|
|
1633
1656
|
stripe: zod.ZodOptional<zod.ZodObject<{
|
|
1634
1657
|
code: zod.z.ZodCoercedString<unknown>;
|
|
1635
1658
|
}, zod.z.core.$strip>>;
|
|
1659
|
+
taxCodeId: zod.ZodOptional<zod.z.ZodCoercedString<unknown>>;
|
|
1636
1660
|
}, zod.z.core.$strip>>;
|
|
1637
1661
|
}, zod.z.core.$strip>>;
|
|
1638
1662
|
metadata: zod.ZodOptional<zod.ZodNullable<zod.ZodRecord<zod.ZodString, zod.z.ZodCoercedString<unknown>>>>;
|
|
@@ -1667,6 +1691,7 @@ export declare const UpdateInvoiceBody: zod.ZodObject<{
|
|
|
1667
1691
|
stripe: zod.ZodOptional<zod.ZodObject<{
|
|
1668
1692
|
code: zod.z.ZodCoercedString<unknown>;
|
|
1669
1693
|
}, zod.z.core.$strip>>;
|
|
1694
|
+
taxCodeId: zod.ZodOptional<zod.z.ZodCoercedString<unknown>>;
|
|
1670
1695
|
}, zod.z.core.$strip>>;
|
|
1671
1696
|
draftPeriod: zod.ZodDefault<zod.z.ZodCoercedString<unknown>>;
|
|
1672
1697
|
dueAfter: zod.ZodDefault<zod.z.ZodCoercedString<unknown>>;
|
|
@@ -1792,16 +1817,17 @@ in the response. For example by adding the expand=apps option the apps used by t
|
|
|
1792
1817
|
will be included in the response.
|
|
1793
1818
|
* @summary List billing profiles
|
|
1794
1819
|
*/
|
|
1795
|
-
export declare const listBillingProfilesQueryIncludeArchivedDefault
|
|
1796
|
-
export declare const listBillingProfilesQueryPageDefault
|
|
1797
|
-
export declare const listBillingProfilesQueryPageSizeDefault
|
|
1798
|
-
export declare const listBillingProfilesQueryPageSizeMax
|
|
1820
|
+
export declare const listBillingProfilesQueryIncludeArchivedDefault = false;
|
|
1821
|
+
export declare const listBillingProfilesQueryPageDefault = 1;
|
|
1822
|
+
export declare const listBillingProfilesQueryPageSizeDefault = 100;
|
|
1823
|
+
export declare const listBillingProfilesQueryPageSizeMax = 1000;
|
|
1824
|
+
export declare const listBillingProfilesQueryOrderDefault = "ASC";
|
|
1799
1825
|
export declare const ListBillingProfilesQueryParams: zod.ZodObject<{
|
|
1800
1826
|
expand: zod.ZodOptional<zod.ZodArray<zod.ZodEnum<{
|
|
1801
1827
|
apps: "apps";
|
|
1802
1828
|
}>>>;
|
|
1803
1829
|
includeArchived: zod.ZodDefault<zod.z.ZodCoercedBoolean<unknown>>;
|
|
1804
|
-
order: zod.
|
|
1830
|
+
order: zod.ZodDefault<zod.ZodEnum<{
|
|
1805
1831
|
ASC: "ASC";
|
|
1806
1832
|
DESC: "DESC";
|
|
1807
1833
|
}>>;
|
|
@@ -1821,27 +1847,28 @@ Billing profiles are representations of a customer's billing information. Custom
|
|
|
1821
1847
|
can be applied to a billing profile to customize the billing behavior for a specific customer.
|
|
1822
1848
|
* @summary Create a new billing profile
|
|
1823
1849
|
*/
|
|
1824
|
-
export declare const createBillingProfileBodyNameMax
|
|
1825
|
-
export declare const createBillingProfileBodyDescriptionMax
|
|
1826
|
-
export declare const createBillingProfileBodySupplierOneKeyMax
|
|
1827
|
-
export declare const createBillingProfileBodySupplierOneTaxIdOneCodeOneMax
|
|
1828
|
-
export declare const createBillingProfileBodySupplierOneAddressesItemCountryOneMin
|
|
1829
|
-
export declare const createBillingProfileBodySupplierOneAddressesItemCountryOneMax
|
|
1850
|
+
export declare const createBillingProfileBodyNameMax = 256;
|
|
1851
|
+
export declare const createBillingProfileBodyDescriptionMax = 1024;
|
|
1852
|
+
export declare const createBillingProfileBodySupplierOneKeyMax = 256;
|
|
1853
|
+
export declare const createBillingProfileBodySupplierOneTaxIdOneCodeOneMax = 32;
|
|
1854
|
+
export declare const createBillingProfileBodySupplierOneAddressesItemCountryOneMin = 2;
|
|
1855
|
+
export declare const createBillingProfileBodySupplierOneAddressesItemCountryOneMax = 2;
|
|
1830
1856
|
export declare const createBillingProfileBodySupplierOneAddressesItemCountryOneRegExp: RegExp;
|
|
1831
|
-
export declare const createBillingProfileBodySupplierOneAddressesMax
|
|
1857
|
+
export declare const createBillingProfileBodySupplierOneAddressesMax = 1;
|
|
1832
1858
|
export declare const createBillingProfileBodyWorkflowOneCollectionOneAlignmentOneTwoRecurringPeriodOneIntervalOneOneRegExp: RegExp;
|
|
1833
1859
|
export declare const createBillingProfileBodyWorkflowOneCollectionOneAlignmentDefault: {
|
|
1834
1860
|
readonly type: "subscription";
|
|
1835
1861
|
};
|
|
1836
|
-
export declare const createBillingProfileBodyWorkflowOneCollectionOneIntervalDefault
|
|
1837
|
-
export declare const createBillingProfileBodyWorkflowOneInvoicingOneAutoAdvanceDefault
|
|
1838
|
-
export declare const createBillingProfileBodyWorkflowOneInvoicingOneDraftPeriodDefault
|
|
1839
|
-
export declare const createBillingProfileBodyWorkflowOneInvoicingOneDueAfterDefault
|
|
1840
|
-
export declare const createBillingProfileBodyWorkflowOneInvoicingOneProgressiveBillingDefault
|
|
1862
|
+
export declare const createBillingProfileBodyWorkflowOneCollectionOneIntervalDefault = "PT1H";
|
|
1863
|
+
export declare const createBillingProfileBodyWorkflowOneInvoicingOneAutoAdvanceDefault = true;
|
|
1864
|
+
export declare const createBillingProfileBodyWorkflowOneInvoicingOneDraftPeriodDefault = "P0D";
|
|
1865
|
+
export declare const createBillingProfileBodyWorkflowOneInvoicingOneDueAfterDefault = "P30D";
|
|
1866
|
+
export declare const createBillingProfileBodyWorkflowOneInvoicingOneProgressiveBillingDefault = true;
|
|
1841
1867
|
export declare const createBillingProfileBodyWorkflowOneInvoicingOneDefaultTaxConfigOneStripeOneCodeRegExp: RegExp;
|
|
1842
|
-
export declare const
|
|
1843
|
-
export declare const
|
|
1844
|
-
export declare const
|
|
1868
|
+
export declare const createBillingProfileBodyWorkflowOneInvoicingOneDefaultTaxConfigOneTaxCodeIdRegExp: RegExp;
|
|
1869
|
+
export declare const createBillingProfileBodyWorkflowOnePaymentOneCollectionMethodDefault = "charge_automatically";
|
|
1870
|
+
export declare const createBillingProfileBodyWorkflowOneTaxOneEnabledDefault = true;
|
|
1871
|
+
export declare const createBillingProfileBodyWorkflowOneTaxOneEnforcedDefault = false;
|
|
1845
1872
|
export declare const createBillingProfileBodyAppsOneTaxRegExp: RegExp;
|
|
1846
1873
|
export declare const createBillingProfileBodyAppsOneInvoicingRegExp: RegExp;
|
|
1847
1874
|
export declare const createBillingProfileBodyAppsOnePaymentRegExp: RegExp;
|
|
@@ -1907,6 +1934,7 @@ export declare const CreateBillingProfileBody: zod.ZodObject<{
|
|
|
1907
1934
|
stripe: zod.ZodOptional<zod.ZodObject<{
|
|
1908
1935
|
code: zod.z.ZodCoercedString<unknown>;
|
|
1909
1936
|
}, zod.z.core.$strip>>;
|
|
1937
|
+
taxCodeId: zod.ZodOptional<zod.z.ZodCoercedString<unknown>>;
|
|
1910
1938
|
}, zod.z.core.$strip>>;
|
|
1911
1939
|
draftPeriod: zod.ZodDefault<zod.z.ZodCoercedString<unknown>>;
|
|
1912
1940
|
dueAfter: zod.ZodDefault<zod.z.ZodCoercedString<unknown>>;
|
|
@@ -1965,27 +1993,28 @@ export declare const updateBillingProfilePathIdRegExp: RegExp;
|
|
|
1965
1993
|
export declare const UpdateBillingProfileParams: zod.ZodObject<{
|
|
1966
1994
|
id: zod.z.ZodCoercedString<unknown>;
|
|
1967
1995
|
}, zod.z.core.$strip>;
|
|
1968
|
-
export declare const updateBillingProfileBodyNameMax
|
|
1969
|
-
export declare const updateBillingProfileBodyDescriptionMax
|
|
1970
|
-
export declare const updateBillingProfileBodySupplierOneKeyMax
|
|
1971
|
-
export declare const updateBillingProfileBodySupplierOneTaxIdOneCodeOneMax
|
|
1972
|
-
export declare const updateBillingProfileBodySupplierOneAddressesItemCountryOneMin
|
|
1973
|
-
export declare const updateBillingProfileBodySupplierOneAddressesItemCountryOneMax
|
|
1996
|
+
export declare const updateBillingProfileBodyNameMax = 256;
|
|
1997
|
+
export declare const updateBillingProfileBodyDescriptionMax = 1024;
|
|
1998
|
+
export declare const updateBillingProfileBodySupplierOneKeyMax = 256;
|
|
1999
|
+
export declare const updateBillingProfileBodySupplierOneTaxIdOneCodeOneMax = 32;
|
|
2000
|
+
export declare const updateBillingProfileBodySupplierOneAddressesItemCountryOneMin = 2;
|
|
2001
|
+
export declare const updateBillingProfileBodySupplierOneAddressesItemCountryOneMax = 2;
|
|
1974
2002
|
export declare const updateBillingProfileBodySupplierOneAddressesItemCountryOneRegExp: RegExp;
|
|
1975
|
-
export declare const updateBillingProfileBodySupplierOneAddressesMax
|
|
2003
|
+
export declare const updateBillingProfileBodySupplierOneAddressesMax = 1;
|
|
1976
2004
|
export declare const updateBillingProfileBodyWorkflowOneCollectionOneAlignmentOneTwoRecurringPeriodOneIntervalOneOneRegExp: RegExp;
|
|
1977
2005
|
export declare const updateBillingProfileBodyWorkflowOneCollectionOneAlignmentDefault: {
|
|
1978
2006
|
readonly type: "subscription";
|
|
1979
2007
|
};
|
|
1980
|
-
export declare const updateBillingProfileBodyWorkflowOneCollectionOneIntervalDefault
|
|
1981
|
-
export declare const updateBillingProfileBodyWorkflowOneInvoicingOneAutoAdvanceDefault
|
|
1982
|
-
export declare const updateBillingProfileBodyWorkflowOneInvoicingOneDraftPeriodDefault
|
|
1983
|
-
export declare const updateBillingProfileBodyWorkflowOneInvoicingOneDueAfterDefault
|
|
1984
|
-
export declare const updateBillingProfileBodyWorkflowOneInvoicingOneProgressiveBillingDefault
|
|
2008
|
+
export declare const updateBillingProfileBodyWorkflowOneCollectionOneIntervalDefault = "PT1H";
|
|
2009
|
+
export declare const updateBillingProfileBodyWorkflowOneInvoicingOneAutoAdvanceDefault = true;
|
|
2010
|
+
export declare const updateBillingProfileBodyWorkflowOneInvoicingOneDraftPeriodDefault = "P0D";
|
|
2011
|
+
export declare const updateBillingProfileBodyWorkflowOneInvoicingOneDueAfterDefault = "P30D";
|
|
2012
|
+
export declare const updateBillingProfileBodyWorkflowOneInvoicingOneProgressiveBillingDefault = true;
|
|
1985
2013
|
export declare const updateBillingProfileBodyWorkflowOneInvoicingOneDefaultTaxConfigOneStripeOneCodeRegExp: RegExp;
|
|
1986
|
-
export declare const
|
|
1987
|
-
export declare const
|
|
1988
|
-
export declare const
|
|
2014
|
+
export declare const updateBillingProfileBodyWorkflowOneInvoicingOneDefaultTaxConfigOneTaxCodeIdRegExp: RegExp;
|
|
2015
|
+
export declare const updateBillingProfileBodyWorkflowOnePaymentOneCollectionMethodDefault = "charge_automatically";
|
|
2016
|
+
export declare const updateBillingProfileBodyWorkflowOneTaxOneEnabledDefault = true;
|
|
2017
|
+
export declare const updateBillingProfileBodyWorkflowOneTaxOneEnforcedDefault = false;
|
|
1989
2018
|
export declare const UpdateBillingProfileBody: zod.ZodObject<{
|
|
1990
2019
|
default: zod.z.ZodCoercedBoolean<unknown>;
|
|
1991
2020
|
description: zod.ZodOptional<zod.z.ZodCoercedString<unknown>>;
|
|
@@ -2043,6 +2072,7 @@ export declare const UpdateBillingProfileBody: zod.ZodObject<{
|
|
|
2043
2072
|
stripe: zod.ZodOptional<zod.ZodObject<{
|
|
2044
2073
|
code: zod.z.ZodCoercedString<unknown>;
|
|
2045
2074
|
}, zod.z.core.$strip>>;
|
|
2075
|
+
taxCodeId: zod.ZodOptional<zod.z.ZodCoercedString<unknown>>;
|
|
2046
2076
|
}, zod.z.core.$strip>>;
|
|
2047
2077
|
draftPeriod: zod.ZodDefault<zod.z.ZodCoercedString<unknown>>;
|
|
2048
2078
|
dueAfter: zod.ZodDefault<zod.z.ZodCoercedString<unknown>>;
|
|
@@ -2064,15 +2094,15 @@ export declare const UpdateBillingProfileBody: zod.ZodObject<{
|
|
|
2064
2094
|
* Create a new customer.
|
|
2065
2095
|
* @summary Create customer
|
|
2066
2096
|
*/
|
|
2067
|
-
export declare const createCustomerBodyNameMax
|
|
2068
|
-
export declare const createCustomerBodyDescriptionMax
|
|
2069
|
-
export declare const createCustomerBodyKeyMax
|
|
2070
|
-
export declare const createCustomerBodyUsageAttributionOneSubjectKeysMin
|
|
2071
|
-
export declare const createCustomerBodyCurrencyOneMin
|
|
2072
|
-
export declare const createCustomerBodyCurrencyOneMax
|
|
2097
|
+
export declare const createCustomerBodyNameMax = 256;
|
|
2098
|
+
export declare const createCustomerBodyDescriptionMax = 1024;
|
|
2099
|
+
export declare const createCustomerBodyKeyMax = 256;
|
|
2100
|
+
export declare const createCustomerBodyUsageAttributionOneSubjectKeysMin = 0;
|
|
2101
|
+
export declare const createCustomerBodyCurrencyOneMin = 3;
|
|
2102
|
+
export declare const createCustomerBodyCurrencyOneMax = 3;
|
|
2073
2103
|
export declare const createCustomerBodyCurrencyOneRegExp: RegExp;
|
|
2074
|
-
export declare const createCustomerBodyBillingAddressOneCountryOneMin
|
|
2075
|
-
export declare const createCustomerBodyBillingAddressOneCountryOneMax
|
|
2104
|
+
export declare const createCustomerBodyBillingAddressOneCountryOneMin = 2;
|
|
2105
|
+
export declare const createCustomerBodyBillingAddressOneCountryOneMax = 2;
|
|
2076
2106
|
export declare const createCustomerBodyBillingAddressOneCountryOneRegExp: RegExp;
|
|
2077
2107
|
export declare const CreateCustomerBody: zod.ZodObject<{
|
|
2078
2108
|
billingAddress: zod.ZodOptional<zod.ZodObject<{
|
|
@@ -2098,10 +2128,11 @@ export declare const CreateCustomerBody: zod.ZodObject<{
|
|
|
2098
2128
|
* List customers.
|
|
2099
2129
|
* @summary List customers
|
|
2100
2130
|
*/
|
|
2101
|
-
export declare const listCustomersQueryPageDefault
|
|
2102
|
-
export declare const listCustomersQueryPageSizeDefault
|
|
2103
|
-
export declare const listCustomersQueryPageSizeMax
|
|
2104
|
-
export declare const
|
|
2131
|
+
export declare const listCustomersQueryPageDefault = 1;
|
|
2132
|
+
export declare const listCustomersQueryPageSizeDefault = 100;
|
|
2133
|
+
export declare const listCustomersQueryPageSizeMax = 1000;
|
|
2134
|
+
export declare const listCustomersQueryOrderDefault = "ASC";
|
|
2135
|
+
export declare const listCustomersQueryIncludeDeletedDefault = false;
|
|
2105
2136
|
export declare const ListCustomersQueryParams: zod.ZodObject<{
|
|
2106
2137
|
expand: zod.ZodOptional<zod.ZodArray<zod.ZodEnum<{
|
|
2107
2138
|
subscriptions: "subscriptions";
|
|
@@ -2109,7 +2140,7 @@ export declare const ListCustomersQueryParams: zod.ZodObject<{
|
|
|
2109
2140
|
includeDeleted: zod.ZodDefault<zod.z.ZodCoercedBoolean<unknown>>;
|
|
2110
2141
|
key: zod.ZodOptional<zod.z.ZodCoercedString<unknown>>;
|
|
2111
2142
|
name: zod.ZodOptional<zod.z.ZodCoercedString<unknown>>;
|
|
2112
|
-
order: zod.
|
|
2143
|
+
order: zod.ZodDefault<zod.ZodEnum<{
|
|
2113
2144
|
ASC: "ASC";
|
|
2114
2145
|
DESC: "DESC";
|
|
2115
2146
|
}>>;
|
|
@@ -2129,7 +2160,7 @@ export declare const ListCustomersQueryParams: zod.ZodObject<{
|
|
|
2129
2160
|
* @summary Get customer
|
|
2130
2161
|
*/
|
|
2131
2162
|
export declare const getCustomerPathCustomerIdOrKeyOneRegExp: RegExp;
|
|
2132
|
-
export declare const getCustomerPathCustomerIdOrKeyTwoMax
|
|
2163
|
+
export declare const getCustomerPathCustomerIdOrKeyTwoMax = 256;
|
|
2133
2164
|
export declare const GetCustomerParams: zod.ZodObject<{
|
|
2134
2165
|
customerIdOrKey: zod.ZodUnion<readonly [zod.z.ZodCoercedString<unknown>, zod.z.ZodCoercedString<unknown>]>;
|
|
2135
2166
|
}, zod.z.core.$strip>;
|
|
@@ -2143,19 +2174,19 @@ export declare const GetCustomerQueryParams: zod.ZodObject<{
|
|
|
2143
2174
|
* @summary Update customer
|
|
2144
2175
|
*/
|
|
2145
2176
|
export declare const updateCustomerPathCustomerIdOrKeyOneRegExp: RegExp;
|
|
2146
|
-
export declare const updateCustomerPathCustomerIdOrKeyTwoMax
|
|
2177
|
+
export declare const updateCustomerPathCustomerIdOrKeyTwoMax = 256;
|
|
2147
2178
|
export declare const UpdateCustomerParams: zod.ZodObject<{
|
|
2148
2179
|
customerIdOrKey: zod.ZodUnion<readonly [zod.z.ZodCoercedString<unknown>, zod.z.ZodCoercedString<unknown>]>;
|
|
2149
2180
|
}, zod.z.core.$strip>;
|
|
2150
|
-
export declare const updateCustomerBodyNameMax
|
|
2151
|
-
export declare const updateCustomerBodyDescriptionMax
|
|
2152
|
-
export declare const updateCustomerBodyKeyMax
|
|
2153
|
-
export declare const updateCustomerBodyUsageAttributionOneSubjectKeysMin
|
|
2154
|
-
export declare const updateCustomerBodyCurrencyOneMin
|
|
2155
|
-
export declare const updateCustomerBodyCurrencyOneMax
|
|
2181
|
+
export declare const updateCustomerBodyNameMax = 256;
|
|
2182
|
+
export declare const updateCustomerBodyDescriptionMax = 1024;
|
|
2183
|
+
export declare const updateCustomerBodyKeyMax = 256;
|
|
2184
|
+
export declare const updateCustomerBodyUsageAttributionOneSubjectKeysMin = 0;
|
|
2185
|
+
export declare const updateCustomerBodyCurrencyOneMin = 3;
|
|
2186
|
+
export declare const updateCustomerBodyCurrencyOneMax = 3;
|
|
2156
2187
|
export declare const updateCustomerBodyCurrencyOneRegExp: RegExp;
|
|
2157
|
-
export declare const updateCustomerBodyBillingAddressOneCountryOneMin
|
|
2158
|
-
export declare const updateCustomerBodyBillingAddressOneCountryOneMax
|
|
2188
|
+
export declare const updateCustomerBodyBillingAddressOneCountryOneMin = 2;
|
|
2189
|
+
export declare const updateCustomerBodyBillingAddressOneCountryOneMax = 2;
|
|
2159
2190
|
export declare const updateCustomerBodyBillingAddressOneCountryOneRegExp: RegExp;
|
|
2160
2191
|
export declare const UpdateCustomerBody: zod.ZodObject<{
|
|
2161
2192
|
billingAddress: zod.ZodOptional<zod.ZodObject<{
|
|
@@ -2182,7 +2213,7 @@ export declare const UpdateCustomerBody: zod.ZodObject<{
|
|
|
2182
2213
|
* @summary Delete customer
|
|
2183
2214
|
*/
|
|
2184
2215
|
export declare const deleteCustomerPathCustomerIdOrKeyOneRegExp: RegExp;
|
|
2185
|
-
export declare const deleteCustomerPathCustomerIdOrKeyTwoMax
|
|
2216
|
+
export declare const deleteCustomerPathCustomerIdOrKeyTwoMax = 256;
|
|
2186
2217
|
export declare const DeleteCustomerParams: zod.ZodObject<{
|
|
2187
2218
|
customerIdOrKey: zod.ZodUnion<readonly [zod.z.ZodCoercedString<unknown>, zod.z.ZodCoercedString<unknown>]>;
|
|
2188
2219
|
}, zod.z.core.$strip>;
|
|
@@ -2191,7 +2222,7 @@ export declare const DeleteCustomerParams: zod.ZodObject<{
|
|
|
2191
2222
|
* @summary Get customer access
|
|
2192
2223
|
*/
|
|
2193
2224
|
export declare const getCustomerAccessPathCustomerIdOrKeyOneRegExp: RegExp;
|
|
2194
|
-
export declare const getCustomerAccessPathCustomerIdOrKeyTwoMax
|
|
2225
|
+
export declare const getCustomerAccessPathCustomerIdOrKeyTwoMax = 256;
|
|
2195
2226
|
export declare const GetCustomerAccessParams: zod.ZodObject<{
|
|
2196
2227
|
customerIdOrKey: zod.ZodUnion<readonly [zod.z.ZodCoercedString<unknown>, zod.z.ZodCoercedString<unknown>]>;
|
|
2197
2228
|
}, zod.z.core.$strip>;
|
|
@@ -2200,13 +2231,13 @@ export declare const GetCustomerAccessParams: zod.ZodObject<{
|
|
|
2200
2231
|
* @summary List customer app data
|
|
2201
2232
|
*/
|
|
2202
2233
|
export declare const listCustomerAppDataPathCustomerIdOrKeyOneRegExp: RegExp;
|
|
2203
|
-
export declare const listCustomerAppDataPathCustomerIdOrKeyTwoMax
|
|
2234
|
+
export declare const listCustomerAppDataPathCustomerIdOrKeyTwoMax = 256;
|
|
2204
2235
|
export declare const ListCustomerAppDataParams: zod.ZodObject<{
|
|
2205
2236
|
customerIdOrKey: zod.ZodUnion<readonly [zod.z.ZodCoercedString<unknown>, zod.z.ZodCoercedString<unknown>]>;
|
|
2206
2237
|
}, zod.z.core.$strip>;
|
|
2207
|
-
export declare const listCustomerAppDataQueryPageDefault
|
|
2208
|
-
export declare const listCustomerAppDataQueryPageSizeDefault
|
|
2209
|
-
export declare const listCustomerAppDataQueryPageSizeMax
|
|
2238
|
+
export declare const listCustomerAppDataQueryPageDefault = 1;
|
|
2239
|
+
export declare const listCustomerAppDataQueryPageSizeDefault = 100;
|
|
2240
|
+
export declare const listCustomerAppDataQueryPageSizeMax = 1000;
|
|
2210
2241
|
export declare const ListCustomerAppDataQueryParams: zod.ZodObject<{
|
|
2211
2242
|
page: zod.ZodDefault<zod.z.ZodCoercedNumber<unknown>>;
|
|
2212
2243
|
pageSize: zod.ZodDefault<zod.z.ZodCoercedNumber<unknown>>;
|
|
@@ -2221,21 +2252,21 @@ export declare const ListCustomerAppDataQueryParams: zod.ZodObject<{
|
|
|
2221
2252
|
* @summary Upsert customer app data
|
|
2222
2253
|
*/
|
|
2223
2254
|
export declare const upsertCustomerAppDataPathCustomerIdOrKeyOneRegExp: RegExp;
|
|
2224
|
-
export declare const upsertCustomerAppDataPathCustomerIdOrKeyTwoMax
|
|
2255
|
+
export declare const upsertCustomerAppDataPathCustomerIdOrKeyTwoMax = 256;
|
|
2225
2256
|
export declare const UpsertCustomerAppDataParams: zod.ZodObject<{
|
|
2226
2257
|
customerIdOrKey: zod.ZodUnion<readonly [zod.z.ZodCoercedString<unknown>, zod.z.ZodCoercedString<unknown>]>;
|
|
2227
2258
|
}, zod.z.core.$strip>;
|
|
2228
2259
|
export declare const upsertCustomerAppDataBodyOneIdRegExp: RegExp;
|
|
2229
2260
|
export declare const upsertCustomerAppDataBodyTwoAppOneIdRegExp: RegExp;
|
|
2230
|
-
export declare const upsertCustomerAppDataBodyTwoAppOneNameMax
|
|
2231
|
-
export declare const upsertCustomerAppDataBodyTwoAppOneDescriptionMax
|
|
2232
|
-
export declare const upsertCustomerAppDataBodyTwoAppOneListingOneCapabilitiesItemKeyMax
|
|
2261
|
+
export declare const upsertCustomerAppDataBodyTwoAppOneNameMax = 256;
|
|
2262
|
+
export declare const upsertCustomerAppDataBodyTwoAppOneDescriptionMax = 1024;
|
|
2263
|
+
export declare const upsertCustomerAppDataBodyTwoAppOneListingOneCapabilitiesItemKeyMax = 64;
|
|
2233
2264
|
export declare const upsertCustomerAppDataBodyTwoAppOneListingOneCapabilitiesItemKeyRegExp: RegExp;
|
|
2234
2265
|
export declare const upsertCustomerAppDataBodyTwoIdRegExp: RegExp;
|
|
2235
2266
|
export declare const upsertCustomerAppDataBodyThreeAppOneIdRegExp: RegExp;
|
|
2236
|
-
export declare const upsertCustomerAppDataBodyThreeAppOneNameMax
|
|
2237
|
-
export declare const upsertCustomerAppDataBodyThreeAppOneDescriptionMax
|
|
2238
|
-
export declare const upsertCustomerAppDataBodyThreeAppOneListingOneCapabilitiesItemKeyMax
|
|
2267
|
+
export declare const upsertCustomerAppDataBodyThreeAppOneNameMax = 256;
|
|
2268
|
+
export declare const upsertCustomerAppDataBodyThreeAppOneDescriptionMax = 1024;
|
|
2269
|
+
export declare const upsertCustomerAppDataBodyThreeAppOneListingOneCapabilitiesItemKeyMax = 64;
|
|
2239
2270
|
export declare const upsertCustomerAppDataBodyThreeAppOneListingOneCapabilitiesItemKeyRegExp: RegExp;
|
|
2240
2271
|
export declare const upsertCustomerAppDataBodyThreeIdRegExp: RegExp;
|
|
2241
2272
|
export declare const UpsertCustomerAppDataBodyItem: zod.ZodUnion<readonly [zod.ZodObject<{
|
|
@@ -2453,7 +2484,7 @@ export declare const UpsertCustomerAppDataBody: zod.ZodArray<zod.ZodUnion<readon
|
|
|
2453
2484
|
* @summary Delete customer app data
|
|
2454
2485
|
*/
|
|
2455
2486
|
export declare const deleteCustomerAppDataPathCustomerIdOrKeyOneRegExp: RegExp;
|
|
2456
|
-
export declare const deleteCustomerAppDataPathCustomerIdOrKeyTwoMax
|
|
2487
|
+
export declare const deleteCustomerAppDataPathCustomerIdOrKeyTwoMax = 256;
|
|
2457
2488
|
export declare const deleteCustomerAppDataPathAppIdRegExp: RegExp;
|
|
2458
2489
|
export declare const DeleteCustomerAppDataParams: zod.ZodObject<{
|
|
2459
2490
|
appId: zod.z.ZodCoercedString<unknown>;
|
|
@@ -2464,8 +2495,8 @@ export declare const DeleteCustomerAppDataParams: zod.ZodObject<{
|
|
|
2464
2495
|
* @summary Get customer entitlement value
|
|
2465
2496
|
*/
|
|
2466
2497
|
export declare const getCustomerEntitlementValuePathCustomerIdOrKeyOneRegExp: RegExp;
|
|
2467
|
-
export declare const getCustomerEntitlementValuePathCustomerIdOrKeyTwoMax
|
|
2468
|
-
export declare const getCustomerEntitlementValuePathFeatureKeyMax
|
|
2498
|
+
export declare const getCustomerEntitlementValuePathCustomerIdOrKeyTwoMax = 256;
|
|
2499
|
+
export declare const getCustomerEntitlementValuePathFeatureKeyMax = 64;
|
|
2469
2500
|
export declare const getCustomerEntitlementValuePathFeatureKeyRegExp: RegExp;
|
|
2470
2501
|
export declare const GetCustomerEntitlementValueParams: zod.ZodObject<{
|
|
2471
2502
|
customerIdOrKey: zod.ZodUnion<readonly [zod.z.ZodCoercedString<unknown>, zod.z.ZodCoercedString<unknown>]>;
|
|
@@ -2480,7 +2511,7 @@ Only returns data if the customer billing profile is linked to a stripe app.
|
|
|
2480
2511
|
* @summary Get customer stripe app data
|
|
2481
2512
|
*/
|
|
2482
2513
|
export declare const getCustomerStripeAppDataPathCustomerIdOrKeyOneRegExp: RegExp;
|
|
2483
|
-
export declare const getCustomerStripeAppDataPathCustomerIdOrKeyTwoMax
|
|
2514
|
+
export declare const getCustomerStripeAppDataPathCustomerIdOrKeyTwoMax = 256;
|
|
2484
2515
|
export declare const GetCustomerStripeAppDataParams: zod.ZodObject<{
|
|
2485
2516
|
customerIdOrKey: zod.ZodUnion<readonly [zod.z.ZodCoercedString<unknown>, zod.z.ZodCoercedString<unknown>]>;
|
|
2486
2517
|
}, zod.z.core.$strip>;
|
|
@@ -2490,7 +2521,7 @@ Only updates data if the customer billing profile is linked to a stripe app.
|
|
|
2490
2521
|
* @summary Upsert customer stripe app data
|
|
2491
2522
|
*/
|
|
2492
2523
|
export declare const upsertCustomerStripeAppDataPathCustomerIdOrKeyOneRegExp: RegExp;
|
|
2493
|
-
export declare const upsertCustomerStripeAppDataPathCustomerIdOrKeyTwoMax
|
|
2524
|
+
export declare const upsertCustomerStripeAppDataPathCustomerIdOrKeyTwoMax = 256;
|
|
2494
2525
|
export declare const UpsertCustomerStripeAppDataParams: zod.ZodObject<{
|
|
2495
2526
|
customerIdOrKey: zod.ZodUnion<readonly [zod.z.ZodCoercedString<unknown>, zod.z.ZodCoercedString<unknown>]>;
|
|
2496
2527
|
}, zod.z.core.$strip>;
|
|
@@ -2507,7 +2538,7 @@ change their billing address and access their invoice history.
|
|
|
2507
2538
|
* @summary Create Stripe customer portal session
|
|
2508
2539
|
*/
|
|
2509
2540
|
export declare const createCustomerStripePortalSessionPathCustomerIdOrKeyOneRegExp: RegExp;
|
|
2510
|
-
export declare const createCustomerStripePortalSessionPathCustomerIdOrKeyTwoMax
|
|
2541
|
+
export declare const createCustomerStripePortalSessionPathCustomerIdOrKeyTwoMax = 256;
|
|
2511
2542
|
export declare const CreateCustomerStripePortalSessionParams: zod.ZodObject<{
|
|
2512
2543
|
customerIdOrKey: zod.ZodUnion<readonly [zod.z.ZodCoercedString<unknown>, zod.z.ZodCoercedString<unknown>]>;
|
|
2513
2544
|
}, zod.z.core.$strip>;
|
|
@@ -2521,15 +2552,16 @@ export declare const CreateCustomerStripePortalSessionBody: zod.ZodObject<{
|
|
|
2521
2552
|
* @summary List customer subscriptions
|
|
2522
2553
|
*/
|
|
2523
2554
|
export declare const listCustomerSubscriptionsPathCustomerIdOrKeyOneRegExp: RegExp;
|
|
2524
|
-
export declare const listCustomerSubscriptionsPathCustomerIdOrKeyTwoMax
|
|
2555
|
+
export declare const listCustomerSubscriptionsPathCustomerIdOrKeyTwoMax = 256;
|
|
2525
2556
|
export declare const ListCustomerSubscriptionsParams: zod.ZodObject<{
|
|
2526
2557
|
customerIdOrKey: zod.ZodUnion<readonly [zod.z.ZodCoercedString<unknown>, zod.z.ZodCoercedString<unknown>]>;
|
|
2527
2558
|
}, zod.z.core.$strip>;
|
|
2528
|
-
export declare const
|
|
2529
|
-
export declare const
|
|
2530
|
-
export declare const
|
|
2559
|
+
export declare const listCustomerSubscriptionsQueryOrderDefault = "ASC";
|
|
2560
|
+
export declare const listCustomerSubscriptionsQueryPageDefault = 1;
|
|
2561
|
+
export declare const listCustomerSubscriptionsQueryPageSizeDefault = 100;
|
|
2562
|
+
export declare const listCustomerSubscriptionsQueryPageSizeMax = 1000;
|
|
2531
2563
|
export declare const ListCustomerSubscriptionsQueryParams: zod.ZodObject<{
|
|
2532
|
-
order: zod.
|
|
2564
|
+
order: zod.ZodDefault<zod.ZodEnum<{
|
|
2533
2565
|
ASC: "ASC";
|
|
2534
2566
|
DESC: "DESC";
|
|
2535
2567
|
}>>;
|
|
@@ -2555,14 +2587,15 @@ If page is provided that takes precedence and the paginated response is returned
|
|
|
2555
2587
|
* @deprecated
|
|
2556
2588
|
* @summary List all entitlements
|
|
2557
2589
|
*/
|
|
2558
|
-
export declare const listEntitlementsQueryExcludeInactiveDefault
|
|
2559
|
-
export declare const listEntitlementsQueryPageDefault
|
|
2560
|
-
export declare const listEntitlementsQueryPageSizeDefault
|
|
2561
|
-
export declare const listEntitlementsQueryPageSizeMax
|
|
2562
|
-
export declare const listEntitlementsQueryOffsetDefault
|
|
2563
|
-
export declare const listEntitlementsQueryOffsetMin
|
|
2564
|
-
export declare const listEntitlementsQueryLimitDefault
|
|
2565
|
-
export declare const listEntitlementsQueryLimitMax
|
|
2590
|
+
export declare const listEntitlementsQueryExcludeInactiveDefault = false;
|
|
2591
|
+
export declare const listEntitlementsQueryPageDefault = 1;
|
|
2592
|
+
export declare const listEntitlementsQueryPageSizeDefault = 100;
|
|
2593
|
+
export declare const listEntitlementsQueryPageSizeMax = 1000;
|
|
2594
|
+
export declare const listEntitlementsQueryOffsetDefault = 0;
|
|
2595
|
+
export declare const listEntitlementsQueryOffsetMin = 0;
|
|
2596
|
+
export declare const listEntitlementsQueryLimitDefault = 100;
|
|
2597
|
+
export declare const listEntitlementsQueryLimitMax = 1000;
|
|
2598
|
+
export declare const listEntitlementsQueryOrderDefault = "ASC";
|
|
2566
2599
|
export declare const ListEntitlementsQueryParams: zod.ZodObject<{
|
|
2567
2600
|
entitlementType: zod.ZodOptional<zod.ZodArray<zod.ZodEnum<{
|
|
2568
2601
|
boolean: "boolean";
|
|
@@ -2573,7 +2606,7 @@ export declare const ListEntitlementsQueryParams: zod.ZodObject<{
|
|
|
2573
2606
|
feature: zod.ZodOptional<zod.ZodArray<zod.z.ZodCoercedString<unknown>>>;
|
|
2574
2607
|
limit: zod.ZodDefault<zod.z.ZodCoercedNumber<unknown>>;
|
|
2575
2608
|
offset: zod.ZodDefault<zod.z.ZodCoercedNumber<unknown>>;
|
|
2576
|
-
order: zod.
|
|
2609
|
+
order: zod.ZodDefault<zod.ZodEnum<{
|
|
2577
2610
|
ASC: "ASC";
|
|
2578
2611
|
DESC: "DESC";
|
|
2579
2612
|
}>>;
|
|
@@ -2602,10 +2635,10 @@ export declare const GetEntitlementByIdParams: zod.ZodObject<{
|
|
|
2602
2635
|
If the from query param is not provided it defaults to last 72 hours.
|
|
2603
2636
|
* @summary List ingested events
|
|
2604
2637
|
*/
|
|
2605
|
-
export declare const listEventsQueryClientIdMax
|
|
2638
|
+
export declare const listEventsQueryClientIdMax = 36;
|
|
2606
2639
|
export declare const listEventsQueryCustomerIdItemRegExp: RegExp;
|
|
2607
|
-
export declare const listEventsQueryLimitDefault
|
|
2608
|
-
export declare const listEventsQueryLimitMax
|
|
2640
|
+
export declare const listEventsQueryLimitDefault = 100;
|
|
2641
|
+
export declare const listEventsQueryLimitMax = 100;
|
|
2609
2642
|
export declare const ListEventsQueryParams: zod.ZodObject<{
|
|
2610
2643
|
clientId: zod.ZodOptional<zod.z.ZodCoercedString<unknown>>;
|
|
2611
2644
|
customerId: zod.ZodOptional<zod.ZodArray<zod.z.ZodCoercedString<unknown>>>;
|
|
@@ -2621,8 +2654,8 @@ export declare const ListEventsQueryParams: zod.ZodObject<{
|
|
|
2621
2654
|
* Ingests an event or batch of events following the CloudEvents specification.
|
|
2622
2655
|
* @summary Ingest events
|
|
2623
2656
|
*/
|
|
2624
|
-
export declare const ingestEventsBodyOneSpecversionDefault
|
|
2625
|
-
export declare const ingestEventsBodyTwoItemSpecversionDefault
|
|
2657
|
+
export declare const ingestEventsBodyOneSpecversionDefault = "1.0";
|
|
2658
|
+
export declare const ingestEventsBodyTwoItemSpecversionDefault = "1.0";
|
|
2626
2659
|
export declare const IngestEventsBody: zod.ZodUnion<readonly [zod.ZodObject<{
|
|
2627
2660
|
data: zod.ZodOptional<zod.ZodNullable<zod.ZodRecord<zod.ZodString, zod.ZodUnknown>>>;
|
|
2628
2661
|
datacontenttype: zod.ZodOptional<zod.ZodNullable<zod.ZodEnum<{
|
|
@@ -2631,7 +2664,7 @@ export declare const IngestEventsBody: zod.ZodUnion<readonly [zod.ZodObject<{
|
|
|
2631
2664
|
dataschema: zod.ZodOptional<zod.ZodNullable<zod.ZodURL>>;
|
|
2632
2665
|
id: zod.z.ZodCoercedString<unknown>;
|
|
2633
2666
|
source: zod.z.ZodCoercedString<unknown>;
|
|
2634
|
-
specversion: zod.z.ZodCoercedString<unknown
|
|
2667
|
+
specversion: zod.ZodDefault<zod.z.ZodCoercedString<unknown>>;
|
|
2635
2668
|
subject: zod.z.ZodCoercedString<unknown>;
|
|
2636
2669
|
time: zod.ZodOptional<zod.ZodNullable<zod.z.ZodCoercedDate<unknown>>>;
|
|
2637
2670
|
type: zod.z.ZodCoercedString<unknown>;
|
|
@@ -2643,7 +2676,7 @@ export declare const IngestEventsBody: zod.ZodUnion<readonly [zod.ZodObject<{
|
|
|
2643
2676
|
dataschema: zod.ZodOptional<zod.ZodNullable<zod.ZodURL>>;
|
|
2644
2677
|
id: zod.z.ZodCoercedString<unknown>;
|
|
2645
2678
|
source: zod.z.ZodCoercedString<unknown>;
|
|
2646
|
-
specversion: zod.z.ZodCoercedString<unknown
|
|
2679
|
+
specversion: zod.ZodDefault<zod.z.ZodCoercedString<unknown>>;
|
|
2647
2680
|
subject: zod.z.ZodCoercedString<unknown>;
|
|
2648
2681
|
time: zod.ZodOptional<zod.ZodNullable<zod.z.ZodCoercedDate<unknown>>>;
|
|
2649
2682
|
type: zod.z.ZodCoercedString<unknown>;
|
|
@@ -2652,20 +2685,21 @@ export declare const IngestEventsBody: zod.ZodUnion<readonly [zod.ZodObject<{
|
|
|
2652
2685
|
* List features.
|
|
2653
2686
|
* @summary List features
|
|
2654
2687
|
*/
|
|
2655
|
-
export declare const listFeaturesQueryIncludeArchivedDefault
|
|
2656
|
-
export declare const listFeaturesQueryPageDefault
|
|
2657
|
-
export declare const listFeaturesQueryPageSizeDefault
|
|
2658
|
-
export declare const listFeaturesQueryPageSizeMax
|
|
2659
|
-
export declare const listFeaturesQueryOffsetDefault
|
|
2660
|
-
export declare const listFeaturesQueryOffsetMin
|
|
2661
|
-
export declare const listFeaturesQueryLimitDefault
|
|
2662
|
-
export declare const listFeaturesQueryLimitMax
|
|
2688
|
+
export declare const listFeaturesQueryIncludeArchivedDefault = false;
|
|
2689
|
+
export declare const listFeaturesQueryPageDefault = 1;
|
|
2690
|
+
export declare const listFeaturesQueryPageSizeDefault = 100;
|
|
2691
|
+
export declare const listFeaturesQueryPageSizeMax = 1000;
|
|
2692
|
+
export declare const listFeaturesQueryOffsetDefault = 0;
|
|
2693
|
+
export declare const listFeaturesQueryOffsetMin = 0;
|
|
2694
|
+
export declare const listFeaturesQueryLimitDefault = 100;
|
|
2695
|
+
export declare const listFeaturesQueryLimitMax = 1000;
|
|
2696
|
+
export declare const listFeaturesQueryOrderDefault = "ASC";
|
|
2663
2697
|
export declare const ListFeaturesQueryParams: zod.ZodObject<{
|
|
2664
2698
|
includeArchived: zod.ZodDefault<zod.z.ZodCoercedBoolean<unknown>>;
|
|
2665
2699
|
limit: zod.ZodDefault<zod.z.ZodCoercedNumber<unknown>>;
|
|
2666
2700
|
meterSlug: zod.ZodOptional<zod.ZodArray<zod.z.ZodCoercedString<unknown>>>;
|
|
2667
2701
|
offset: zod.ZodDefault<zod.z.ZodCoercedNumber<unknown>>;
|
|
2668
|
-
order: zod.
|
|
2702
|
+
order: zod.ZodDefault<zod.ZodEnum<{
|
|
2669
2703
|
ASC: "ASC";
|
|
2670
2704
|
DESC: "DESC";
|
|
2671
2705
|
}>>;
|
|
@@ -2683,13 +2717,18 @@ export declare const ListFeaturesQueryParams: zod.ZodObject<{
|
|
|
2683
2717
|
* Features are either metered or static. A feature is metered if meterSlug is provided at creation.
|
|
2684
2718
|
For metered features you can pass additional filters that will be applied when calculating feature usage, based on the meter's groupBy fields.
|
|
2685
2719
|
Meters with SUM, COUNT, UNIQUE_COUNT and LATEST aggregations are supported for features.
|
|
2686
|
-
Features cannot be updated later, only archived.
|
|
2687
2720
|
* @summary Create feature
|
|
2688
2721
|
*/
|
|
2689
|
-
export declare const createFeatureBodyKeyMax
|
|
2722
|
+
export declare const createFeatureBodyKeyMax = 64;
|
|
2690
2723
|
export declare const createFeatureBodyKeyRegExp: RegExp;
|
|
2691
|
-
export declare const createFeatureBodyMeterSlugMax
|
|
2724
|
+
export declare const createFeatureBodyMeterSlugMax = 64;
|
|
2692
2725
|
export declare const createFeatureBodyMeterSlugRegExp: RegExp;
|
|
2726
|
+
export declare const createFeatureBodyUnitCostOneOneAmountOneRegExp: RegExp;
|
|
2727
|
+
export declare const createFeatureBodyUnitCostOneTwoPricingOneInputPerTokenOneRegExp: RegExp;
|
|
2728
|
+
export declare const createFeatureBodyUnitCostOneTwoPricingOneOutputPerTokenOneRegExp: RegExp;
|
|
2729
|
+
export declare const createFeatureBodyUnitCostOneTwoPricingOneCacheReadPerTokenOneRegExp: RegExp;
|
|
2730
|
+
export declare const createFeatureBodyUnitCostOneTwoPricingOneReasoningPerTokenOneRegExp: RegExp;
|
|
2731
|
+
export declare const createFeatureBodyUnitCostOneTwoPricingOneCacheWritePerTokenOneRegExp: RegExp;
|
|
2693
2732
|
export declare const CreateFeatureBody: zod.ZodObject<{
|
|
2694
2733
|
advancedMeterGroupByFilters: zod.ZodOptional<zod.ZodRecord<zod.ZodString, zod.ZodObject<{
|
|
2695
2734
|
$and: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodUnknown>>>;
|
|
@@ -2712,6 +2751,29 @@ export declare const CreateFeatureBody: zod.ZodObject<{
|
|
|
2712
2751
|
meterGroupByFilters: zod.ZodOptional<zod.ZodRecord<zod.ZodString, zod.z.ZodCoercedString<unknown>>>;
|
|
2713
2752
|
meterSlug: zod.ZodOptional<zod.z.ZodCoercedString<unknown>>;
|
|
2714
2753
|
name: zod.z.ZodCoercedString<unknown>;
|
|
2754
|
+
unitCost: zod.ZodOptional<zod.ZodUnion<readonly [zod.ZodObject<{
|
|
2755
|
+
amount: zod.z.ZodCoercedString<unknown>;
|
|
2756
|
+
type: zod.ZodEnum<{
|
|
2757
|
+
manual: "manual";
|
|
2758
|
+
}>;
|
|
2759
|
+
}, zod.z.core.$strip>, zod.ZodObject<{
|
|
2760
|
+
model: zod.ZodOptional<zod.z.ZodCoercedString<unknown>>;
|
|
2761
|
+
modelProperty: zod.ZodOptional<zod.z.ZodCoercedString<unknown>>;
|
|
2762
|
+
pricing: zod.ZodOptional<zod.ZodObject<{
|
|
2763
|
+
cacheReadPerToken: zod.ZodOptional<zod.z.ZodCoercedString<unknown>>;
|
|
2764
|
+
cacheWritePerToken: zod.ZodOptional<zod.z.ZodCoercedString<unknown>>;
|
|
2765
|
+
inputPerToken: zod.z.ZodCoercedString<unknown>;
|
|
2766
|
+
outputPerToken: zod.z.ZodCoercedString<unknown>;
|
|
2767
|
+
reasoningPerToken: zod.ZodOptional<zod.z.ZodCoercedString<unknown>>;
|
|
2768
|
+
}, zod.z.core.$strip>>;
|
|
2769
|
+
provider: zod.ZodOptional<zod.z.ZodCoercedString<unknown>>;
|
|
2770
|
+
providerProperty: zod.ZodOptional<zod.z.ZodCoercedString<unknown>>;
|
|
2771
|
+
tokenType: zod.ZodOptional<zod.z.ZodCoercedString<unknown>>;
|
|
2772
|
+
tokenTypeProperty: zod.ZodOptional<zod.z.ZodCoercedString<unknown>>;
|
|
2773
|
+
type: zod.ZodEnum<{
|
|
2774
|
+
llm: "llm";
|
|
2775
|
+
}>;
|
|
2776
|
+
}, zod.z.core.$strip>]>>;
|
|
2715
2777
|
}, zod.z.core.$strip>;
|
|
2716
2778
|
/**
|
|
2717
2779
|
* Get a feature by ID.
|
|
@@ -2739,20 +2801,21 @@ If page is provided that takes precedence and the paginated response is returned
|
|
|
2739
2801
|
* @deprecated
|
|
2740
2802
|
* @summary List grants
|
|
2741
2803
|
*/
|
|
2742
|
-
export declare const listGrantsQueryIncludeDeletedDefault
|
|
2743
|
-
export declare const listGrantsQueryPageDefault
|
|
2744
|
-
export declare const listGrantsQueryPageSizeDefault
|
|
2745
|
-
export declare const listGrantsQueryPageSizeMax
|
|
2746
|
-
export declare const listGrantsQueryOffsetDefault
|
|
2747
|
-
export declare const listGrantsQueryOffsetMin
|
|
2748
|
-
export declare const listGrantsQueryLimitDefault
|
|
2749
|
-
export declare const listGrantsQueryLimitMax
|
|
2804
|
+
export declare const listGrantsQueryIncludeDeletedDefault = false;
|
|
2805
|
+
export declare const listGrantsQueryPageDefault = 1;
|
|
2806
|
+
export declare const listGrantsQueryPageSizeDefault = 100;
|
|
2807
|
+
export declare const listGrantsQueryPageSizeMax = 1000;
|
|
2808
|
+
export declare const listGrantsQueryOffsetDefault = 0;
|
|
2809
|
+
export declare const listGrantsQueryOffsetMin = 0;
|
|
2810
|
+
export declare const listGrantsQueryLimitDefault = 100;
|
|
2811
|
+
export declare const listGrantsQueryLimitMax = 1000;
|
|
2812
|
+
export declare const listGrantsQueryOrderDefault = "ASC";
|
|
2750
2813
|
export declare const ListGrantsQueryParams: zod.ZodObject<{
|
|
2751
2814
|
feature: zod.ZodOptional<zod.ZodArray<zod.z.ZodCoercedString<unknown>>>;
|
|
2752
2815
|
includeDeleted: zod.ZodDefault<zod.z.ZodCoercedBoolean<unknown>>;
|
|
2753
2816
|
limit: zod.ZodDefault<zod.z.ZodCoercedNumber<unknown>>;
|
|
2754
2817
|
offset: zod.ZodDefault<zod.z.ZodCoercedNumber<unknown>>;
|
|
2755
|
-
order: zod.
|
|
2818
|
+
order: zod.ZodDefault<zod.ZodEnum<{
|
|
2756
2819
|
ASC: "ASC";
|
|
2757
2820
|
DESC: "DESC";
|
|
2758
2821
|
}>>;
|
|
@@ -2773,6 +2836,9 @@ For example, if you have a single grant for your metered entitlement with an ini
|
|
|
2773
2836
|
export declare const VoidGrantParams: zod.ZodObject<{
|
|
2774
2837
|
grantId: zod.z.ZodCoercedString<unknown>;
|
|
2775
2838
|
}, zod.z.core.$strip>;
|
|
2839
|
+
export declare const VoidGrantQueryParams: zod.ZodObject<{
|
|
2840
|
+
at: zod.ZodOptional<zod.z.ZodCoercedDate<unknown>>;
|
|
2841
|
+
}, zod.z.core.$strip>;
|
|
2776
2842
|
/**
|
|
2777
2843
|
* Get progress
|
|
2778
2844
|
* @summary Get progress
|
|
@@ -2784,9 +2850,9 @@ export declare const GetProgressParams: zod.ZodObject<{
|
|
|
2784
2850
|
* List available apps of the app marketplace.
|
|
2785
2851
|
* @summary List available apps
|
|
2786
2852
|
*/
|
|
2787
|
-
export declare const listMarketplaceListingsQueryPageDefault
|
|
2788
|
-
export declare const listMarketplaceListingsQueryPageSizeDefault
|
|
2789
|
-
export declare const listMarketplaceListingsQueryPageSizeMax
|
|
2853
|
+
export declare const listMarketplaceListingsQueryPageDefault = 1;
|
|
2854
|
+
export declare const listMarketplaceListingsQueryPageSizeDefault = 100;
|
|
2855
|
+
export declare const listMarketplaceListingsQueryPageSizeMax = 1000;
|
|
2790
2856
|
export declare const ListMarketplaceListingsQueryParams: zod.ZodObject<{
|
|
2791
2857
|
page: zod.ZodDefault<zod.z.ZodCoercedNumber<unknown>>;
|
|
2792
2858
|
pageSize: zod.ZodDefault<zod.z.ZodCoercedNumber<unknown>>;
|
|
@@ -2813,7 +2879,7 @@ export declare const MarketplaceAppInstallParams: zod.ZodObject<{
|
|
|
2813
2879
|
custom_invoicing: "custom_invoicing";
|
|
2814
2880
|
}>;
|
|
2815
2881
|
}, zod.z.core.$strip>;
|
|
2816
|
-
export declare const marketplaceAppInstallBodyCreateBillingProfileDefault
|
|
2882
|
+
export declare const marketplaceAppInstallBodyCreateBillingProfileDefault = true;
|
|
2817
2883
|
export declare const MarketplaceAppInstallBody: zod.ZodObject<{
|
|
2818
2884
|
createBillingProfile: zod.ZodDefault<zod.z.ZodCoercedBoolean<unknown>>;
|
|
2819
2885
|
name: zod.ZodOptional<zod.z.ZodCoercedString<unknown>>;
|
|
@@ -2829,7 +2895,7 @@ export declare const MarketplaceAppAPIKeyInstallParams: zod.ZodObject<{
|
|
|
2829
2895
|
custom_invoicing: "custom_invoicing";
|
|
2830
2896
|
}>;
|
|
2831
2897
|
}, zod.z.core.$strip>;
|
|
2832
|
-
export declare const marketplaceAppAPIKeyInstallBodyCreateBillingProfileDefault
|
|
2898
|
+
export declare const marketplaceAppAPIKeyInstallBodyCreateBillingProfileDefault = true;
|
|
2833
2899
|
export declare const MarketplaceAppAPIKeyInstallBody: zod.ZodObject<{
|
|
2834
2900
|
apiKey: zod.z.ZodCoercedString<unknown>;
|
|
2835
2901
|
createBillingProfile: zod.ZodDefault<zod.z.ZodCoercedBoolean<unknown>>;
|
|
@@ -2878,13 +2944,14 @@ export declare const MarketplaceOAuth2InstallAuthorizeQueryParams: zod.ZodObject
|
|
|
2878
2944
|
* List meters.
|
|
2879
2945
|
* @summary List meters
|
|
2880
2946
|
*/
|
|
2881
|
-
export declare const listMetersQueryPageDefault
|
|
2882
|
-
export declare const listMetersQueryPageSizeDefault
|
|
2883
|
-
export declare const listMetersQueryPageSizeMax
|
|
2884
|
-
export declare const
|
|
2947
|
+
export declare const listMetersQueryPageDefault = 1;
|
|
2948
|
+
export declare const listMetersQueryPageSizeDefault = 100;
|
|
2949
|
+
export declare const listMetersQueryPageSizeMax = 1000;
|
|
2950
|
+
export declare const listMetersQueryOrderDefault = "ASC";
|
|
2951
|
+
export declare const listMetersQueryIncludeDeletedDefault = false;
|
|
2885
2952
|
export declare const ListMetersQueryParams: zod.ZodObject<{
|
|
2886
2953
|
includeDeleted: zod.ZodDefault<zod.z.ZodCoercedBoolean<unknown>>;
|
|
2887
|
-
order: zod.
|
|
2954
|
+
order: zod.ZodDefault<zod.ZodEnum<{
|
|
2888
2955
|
ASC: "ASC";
|
|
2889
2956
|
DESC: "DESC";
|
|
2890
2957
|
}>>;
|
|
@@ -2902,9 +2969,9 @@ export declare const ListMetersQueryParams: zod.ZodObject<{
|
|
|
2902
2969
|
* Create a meter.
|
|
2903
2970
|
* @summary Create meter
|
|
2904
2971
|
*/
|
|
2905
|
-
export declare const createMeterBodyDescriptionMax
|
|
2906
|
-
export declare const createMeterBodyNameMax
|
|
2907
|
-
export declare const createMeterBodySlugMax
|
|
2972
|
+
export declare const createMeterBodyDescriptionMax = 1024;
|
|
2973
|
+
export declare const createMeterBodyNameMax = 256;
|
|
2974
|
+
export declare const createMeterBodySlugMax = 64;
|
|
2908
2975
|
export declare const createMeterBodySlugRegExp: RegExp;
|
|
2909
2976
|
export declare const CreateMeterBody: zod.ZodObject<{
|
|
2910
2977
|
aggregation: zod.ZodEnum<{
|
|
@@ -2929,7 +2996,7 @@ export declare const CreateMeterBody: zod.ZodObject<{
|
|
|
2929
2996
|
* Get a meter by ID or slug.
|
|
2930
2997
|
* @summary Get meter
|
|
2931
2998
|
*/
|
|
2932
|
-
export declare const getMeterPathMeterIdOrSlugMax
|
|
2999
|
+
export declare const getMeterPathMeterIdOrSlugMax = 64;
|
|
2933
3000
|
export declare const getMeterPathMeterIdOrSlugRegExp: RegExp;
|
|
2934
3001
|
export declare const GetMeterParams: zod.ZodObject<{
|
|
2935
3002
|
meterIdOrSlug: zod.z.ZodCoercedString<unknown>;
|
|
@@ -2938,13 +3005,13 @@ export declare const GetMeterParams: zod.ZodObject<{
|
|
|
2938
3005
|
* Update a meter.
|
|
2939
3006
|
* @summary Update meter
|
|
2940
3007
|
*/
|
|
2941
|
-
export declare const updateMeterPathMeterIdOrSlugMax
|
|
3008
|
+
export declare const updateMeterPathMeterIdOrSlugMax = 64;
|
|
2942
3009
|
export declare const updateMeterPathMeterIdOrSlugRegExp: RegExp;
|
|
2943
3010
|
export declare const UpdateMeterParams: zod.ZodObject<{
|
|
2944
3011
|
meterIdOrSlug: zod.z.ZodCoercedString<unknown>;
|
|
2945
3012
|
}, zod.z.core.$strip>;
|
|
2946
|
-
export declare const updateMeterBodyDescriptionMax
|
|
2947
|
-
export declare const updateMeterBodyNameMax
|
|
3013
|
+
export declare const updateMeterBodyDescriptionMax = 1024;
|
|
3014
|
+
export declare const updateMeterBodyNameMax = 256;
|
|
2948
3015
|
export declare const UpdateMeterBody: zod.ZodObject<{
|
|
2949
3016
|
description: zod.ZodOptional<zod.z.ZodCoercedString<unknown>>;
|
|
2950
3017
|
groupBy: zod.ZodOptional<zod.ZodRecord<zod.ZodString, zod.z.ZodCoercedString<unknown>>>;
|
|
@@ -2955,7 +3022,7 @@ export declare const UpdateMeterBody: zod.ZodObject<{
|
|
|
2955
3022
|
* Delete a meter.
|
|
2956
3023
|
* @summary Delete meter
|
|
2957
3024
|
*/
|
|
2958
|
-
export declare const deleteMeterPathMeterIdOrSlugMax
|
|
3025
|
+
export declare const deleteMeterPathMeterIdOrSlugMax = 64;
|
|
2959
3026
|
export declare const deleteMeterPathMeterIdOrSlugRegExp: RegExp;
|
|
2960
3027
|
export declare const DeleteMeterParams: zod.ZodObject<{
|
|
2961
3028
|
meterIdOrSlug: zod.z.ZodCoercedString<unknown>;
|
|
@@ -2964,7 +3031,7 @@ export declare const DeleteMeterParams: zod.ZodObject<{
|
|
|
2964
3031
|
* List meter group by values.
|
|
2965
3032
|
* @summary List meter group by values
|
|
2966
3033
|
*/
|
|
2967
|
-
export declare const listMeterGroupByValuesPathMeterIdOrSlugMax
|
|
3034
|
+
export declare const listMeterGroupByValuesPathMeterIdOrSlugMax = 64;
|
|
2968
3035
|
export declare const listMeterGroupByValuesPathMeterIdOrSlugRegExp: RegExp;
|
|
2969
3036
|
export declare const ListMeterGroupByValuesParams: zod.ZodObject<{
|
|
2970
3037
|
groupByKey: zod.z.ZodCoercedString<unknown>;
|
|
@@ -2978,14 +3045,14 @@ export declare const ListMeterGroupByValuesQueryParams: zod.ZodObject<{
|
|
|
2978
3045
|
* Query meter for usage.
|
|
2979
3046
|
* @summary Query meter
|
|
2980
3047
|
*/
|
|
2981
|
-
export declare const queryMeterPathMeterIdOrSlugMax
|
|
3048
|
+
export declare const queryMeterPathMeterIdOrSlugMax = 64;
|
|
2982
3049
|
export declare const queryMeterPathMeterIdOrSlugRegExp: RegExp;
|
|
2983
3050
|
export declare const QueryMeterParams: zod.ZodObject<{
|
|
2984
3051
|
meterIdOrSlug: zod.z.ZodCoercedString<unknown>;
|
|
2985
3052
|
}, zod.z.core.$strip>;
|
|
2986
|
-
export declare const queryMeterQueryClientIdMax
|
|
2987
|
-
export declare const queryMeterQueryWindowTimeZoneDefault
|
|
2988
|
-
export declare const queryMeterQueryFilterCustomerIdMax
|
|
3053
|
+
export declare const queryMeterQueryClientIdMax = 36;
|
|
3054
|
+
export declare const queryMeterQueryWindowTimeZoneDefault = "UTC";
|
|
3055
|
+
export declare const queryMeterQueryFilterCustomerIdMax = 100;
|
|
2989
3056
|
export declare const QueryMeterQueryParams: zod.ZodObject<{
|
|
2990
3057
|
clientId: zod.ZodOptional<zod.z.ZodCoercedString<unknown>>;
|
|
2991
3058
|
filterCustomerId: zod.ZodOptional<zod.ZodArray<zod.z.ZodCoercedString<unknown>>>;
|
|
@@ -3005,16 +3072,16 @@ export declare const QueryMeterQueryParams: zod.ZodObject<{
|
|
|
3005
3072
|
/**
|
|
3006
3073
|
* @summary Query meter
|
|
3007
3074
|
*/
|
|
3008
|
-
export declare const queryMeterPostPathMeterIdOrSlugMax
|
|
3075
|
+
export declare const queryMeterPostPathMeterIdOrSlugMax = 64;
|
|
3009
3076
|
export declare const queryMeterPostPathMeterIdOrSlugRegExp: RegExp;
|
|
3010
3077
|
export declare const QueryMeterPostParams: zod.ZodObject<{
|
|
3011
3078
|
meterIdOrSlug: zod.z.ZodCoercedString<unknown>;
|
|
3012
3079
|
}, zod.z.core.$strip>;
|
|
3013
|
-
export declare const queryMeterPostBodyClientIdMax
|
|
3014
|
-
export declare const queryMeterPostBodyWindowTimeZoneDefault
|
|
3015
|
-
export declare const queryMeterPostBodySubjectMax
|
|
3016
|
-
export declare const queryMeterPostBodyFilterCustomerIdMax
|
|
3017
|
-
export declare const queryMeterPostBodyGroupByMax
|
|
3080
|
+
export declare const queryMeterPostBodyClientIdMax = 36;
|
|
3081
|
+
export declare const queryMeterPostBodyWindowTimeZoneDefault = "UTC";
|
|
3082
|
+
export declare const queryMeterPostBodySubjectMax = 100;
|
|
3083
|
+
export declare const queryMeterPostBodyFilterCustomerIdMax = 100;
|
|
3084
|
+
export declare const queryMeterPostBodyGroupByMax = 100;
|
|
3018
3085
|
export declare const QueryMeterPostBody: zod.ZodObject<{
|
|
3019
3086
|
advancedMeterGroupByFilters: zod.ZodOptional<zod.ZodRecord<zod.ZodString, zod.ZodObject<{
|
|
3020
3087
|
$and: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodUnknown>>>;
|
|
@@ -3051,7 +3118,7 @@ export declare const QueryMeterPostBody: zod.ZodObject<{
|
|
|
3051
3118
|
* List subjects for a meter.
|
|
3052
3119
|
* @summary List meter subjects
|
|
3053
3120
|
*/
|
|
3054
|
-
export declare const listMeterSubjectsPathMeterIdOrSlugMax
|
|
3121
|
+
export declare const listMeterSubjectsPathMeterIdOrSlugMax = 64;
|
|
3055
3122
|
export declare const listMeterSubjectsPathMeterIdOrSlugRegExp: RegExp;
|
|
3056
3123
|
export declare const ListMeterSubjectsParams: zod.ZodObject<{
|
|
3057
3124
|
meterIdOrSlug: zod.z.ZodCoercedString<unknown>;
|
|
@@ -3064,15 +3131,16 @@ export declare const ListMeterSubjectsQueryParams: zod.ZodObject<{
|
|
|
3064
3131
|
* List all notification channels.
|
|
3065
3132
|
* @summary List notification channels
|
|
3066
3133
|
*/
|
|
3067
|
-
export declare const listNotificationChannelsQueryIncludeDeletedDefault
|
|
3068
|
-
export declare const listNotificationChannelsQueryIncludeDisabledDefault
|
|
3069
|
-
export declare const listNotificationChannelsQueryPageDefault
|
|
3070
|
-
export declare const listNotificationChannelsQueryPageSizeDefault
|
|
3071
|
-
export declare const listNotificationChannelsQueryPageSizeMax
|
|
3134
|
+
export declare const listNotificationChannelsQueryIncludeDeletedDefault = false;
|
|
3135
|
+
export declare const listNotificationChannelsQueryIncludeDisabledDefault = false;
|
|
3136
|
+
export declare const listNotificationChannelsQueryPageDefault = 1;
|
|
3137
|
+
export declare const listNotificationChannelsQueryPageSizeDefault = 100;
|
|
3138
|
+
export declare const listNotificationChannelsQueryPageSizeMax = 1000;
|
|
3139
|
+
export declare const listNotificationChannelsQueryOrderDefault = "ASC";
|
|
3072
3140
|
export declare const ListNotificationChannelsQueryParams: zod.ZodObject<{
|
|
3073
3141
|
includeDeleted: zod.ZodDefault<zod.z.ZodCoercedBoolean<unknown>>;
|
|
3074
3142
|
includeDisabled: zod.ZodDefault<zod.z.ZodCoercedBoolean<unknown>>;
|
|
3075
|
-
order: zod.
|
|
3143
|
+
order: zod.ZodDefault<zod.ZodEnum<{
|
|
3076
3144
|
ASC: "ASC";
|
|
3077
3145
|
DESC: "DESC";
|
|
3078
3146
|
}>>;
|
|
@@ -3089,8 +3157,8 @@ export declare const ListNotificationChannelsQueryParams: zod.ZodObject<{
|
|
|
3089
3157
|
* Create a new notification channel.
|
|
3090
3158
|
* @summary Create a notification channel
|
|
3091
3159
|
*/
|
|
3092
|
-
export declare const createNotificationChannelBodyOneNameMax
|
|
3093
|
-
export declare const createNotificationChannelBodyOneDisabledDefault
|
|
3160
|
+
export declare const createNotificationChannelBodyOneNameMax = 256;
|
|
3161
|
+
export declare const createNotificationChannelBodyOneDisabledDefault = false;
|
|
3094
3162
|
export declare const createNotificationChannelBodyOneSigningSecretRegExp: RegExp;
|
|
3095
3163
|
export declare const CreateNotificationChannelBody: zod.ZodObject<{
|
|
3096
3164
|
customHeaders: zod.ZodOptional<zod.ZodRecord<zod.ZodString, zod.z.ZodCoercedString<unknown>>>;
|
|
@@ -3111,8 +3179,8 @@ export declare const updateNotificationChannelPathChannelIdRegExp: RegExp;
|
|
|
3111
3179
|
export declare const UpdateNotificationChannelParams: zod.ZodObject<{
|
|
3112
3180
|
channelId: zod.z.ZodCoercedString<unknown>;
|
|
3113
3181
|
}, zod.z.core.$strip>;
|
|
3114
|
-
export declare const updateNotificationChannelBodyOneNameMax
|
|
3115
|
-
export declare const updateNotificationChannelBodyOneDisabledDefault
|
|
3182
|
+
export declare const updateNotificationChannelBodyOneNameMax = 256;
|
|
3183
|
+
export declare const updateNotificationChannelBodyOneDisabledDefault = false;
|
|
3116
3184
|
export declare const updateNotificationChannelBodyOneSigningSecretRegExp: RegExp;
|
|
3117
3185
|
export declare const UpdateNotificationChannelBody: zod.ZodObject<{
|
|
3118
3186
|
customHeaders: zod.ZodOptional<zod.ZodRecord<zod.ZodString, zod.z.ZodCoercedString<unknown>>>;
|
|
@@ -3149,14 +3217,15 @@ export declare const DeleteNotificationChannelParams: zod.ZodObject<{
|
|
|
3149
3217
|
*/
|
|
3150
3218
|
export declare const listNotificationEventsQueryRuleItemRegExp: RegExp;
|
|
3151
3219
|
export declare const listNotificationEventsQueryChannelItemRegExp: RegExp;
|
|
3152
|
-
export declare const listNotificationEventsQueryPageDefault
|
|
3153
|
-
export declare const listNotificationEventsQueryPageSizeDefault
|
|
3154
|
-
export declare const listNotificationEventsQueryPageSizeMax
|
|
3220
|
+
export declare const listNotificationEventsQueryPageDefault = 1;
|
|
3221
|
+
export declare const listNotificationEventsQueryPageSizeDefault = 100;
|
|
3222
|
+
export declare const listNotificationEventsQueryPageSizeMax = 1000;
|
|
3223
|
+
export declare const listNotificationEventsQueryOrderDefault = "ASC";
|
|
3155
3224
|
export declare const ListNotificationEventsQueryParams: zod.ZodObject<{
|
|
3156
3225
|
channel: zod.ZodOptional<zod.ZodArray<zod.z.ZodCoercedString<unknown>>>;
|
|
3157
3226
|
feature: zod.ZodOptional<zod.ZodArray<zod.z.ZodCoercedString<unknown>>>;
|
|
3158
3227
|
from: zod.ZodOptional<zod.z.ZodCoercedDate<unknown>>;
|
|
3159
|
-
order: zod.
|
|
3228
|
+
order: zod.ZodDefault<zod.ZodEnum<{
|
|
3160
3229
|
ASC: "ASC";
|
|
3161
3230
|
DESC: "DESC";
|
|
3162
3231
|
}>>;
|
|
@@ -3192,19 +3261,20 @@ export declare const ResendNotificationEventBody: zod.ZodObject<{
|
|
|
3192
3261
|
* List all notification rules.
|
|
3193
3262
|
* @summary List notification rules
|
|
3194
3263
|
*/
|
|
3195
|
-
export declare const listNotificationRulesQueryIncludeDeletedDefault
|
|
3196
|
-
export declare const listNotificationRulesQueryIncludeDisabledDefault
|
|
3197
|
-
export declare const listNotificationRulesQueryFeatureItemMax
|
|
3264
|
+
export declare const listNotificationRulesQueryIncludeDeletedDefault = false;
|
|
3265
|
+
export declare const listNotificationRulesQueryIncludeDisabledDefault = false;
|
|
3266
|
+
export declare const listNotificationRulesQueryFeatureItemMax = 64;
|
|
3198
3267
|
export declare const listNotificationRulesQueryFeatureItemRegExp: RegExp;
|
|
3199
|
-
export declare const listNotificationRulesQueryPageDefault
|
|
3200
|
-
export declare const listNotificationRulesQueryPageSizeDefault
|
|
3201
|
-
export declare const listNotificationRulesQueryPageSizeMax
|
|
3268
|
+
export declare const listNotificationRulesQueryPageDefault = 1;
|
|
3269
|
+
export declare const listNotificationRulesQueryPageSizeDefault = 100;
|
|
3270
|
+
export declare const listNotificationRulesQueryPageSizeMax = 1000;
|
|
3271
|
+
export declare const listNotificationRulesQueryOrderDefault = "ASC";
|
|
3202
3272
|
export declare const ListNotificationRulesQueryParams: zod.ZodObject<{
|
|
3203
3273
|
channel: zod.ZodOptional<zod.ZodArray<zod.z.ZodCoercedString<unknown>>>;
|
|
3204
3274
|
feature: zod.ZodOptional<zod.ZodArray<zod.z.ZodCoercedString<unknown>>>;
|
|
3205
3275
|
includeDeleted: zod.ZodDefault<zod.z.ZodCoercedBoolean<unknown>>;
|
|
3206
3276
|
includeDisabled: zod.ZodDefault<zod.z.ZodCoercedBoolean<unknown>>;
|
|
3207
|
-
order: zod.
|
|
3277
|
+
order: zod.ZodDefault<zod.ZodEnum<{
|
|
3208
3278
|
ASC: "ASC";
|
|
3209
3279
|
DESC: "DESC";
|
|
3210
3280
|
}>>;
|
|
@@ -3221,22 +3291,22 @@ export declare const ListNotificationRulesQueryParams: zod.ZodObject<{
|
|
|
3221
3291
|
* Create a new notification rule.
|
|
3222
3292
|
* @summary Create a notification rule
|
|
3223
3293
|
*/
|
|
3224
|
-
export declare const createNotificationRuleBodyOneNameMax
|
|
3225
|
-
export declare const createNotificationRuleBodyOneDisabledDefault
|
|
3226
|
-
export declare const createNotificationRuleBodyOneThresholdsMax
|
|
3294
|
+
export declare const createNotificationRuleBodyOneNameMax = 256;
|
|
3295
|
+
export declare const createNotificationRuleBodyOneDisabledDefault = false;
|
|
3296
|
+
export declare const createNotificationRuleBodyOneThresholdsMax = 10;
|
|
3227
3297
|
export declare const createNotificationRuleBodyOneChannelsItemRegExp: RegExp;
|
|
3228
|
-
export declare const createNotificationRuleBodyOneFeaturesItemMax
|
|
3298
|
+
export declare const createNotificationRuleBodyOneFeaturesItemMax = 64;
|
|
3229
3299
|
export declare const createNotificationRuleBodyOneFeaturesItemRegExp: RegExp;
|
|
3230
|
-
export declare const createNotificationRuleBodyTwoNameMax
|
|
3231
|
-
export declare const createNotificationRuleBodyTwoDisabledDefault
|
|
3300
|
+
export declare const createNotificationRuleBodyTwoNameMax = 256;
|
|
3301
|
+
export declare const createNotificationRuleBodyTwoDisabledDefault = false;
|
|
3232
3302
|
export declare const createNotificationRuleBodyTwoChannelsItemRegExp: RegExp;
|
|
3233
|
-
export declare const createNotificationRuleBodyTwoFeaturesItemMax
|
|
3303
|
+
export declare const createNotificationRuleBodyTwoFeaturesItemMax = 64;
|
|
3234
3304
|
export declare const createNotificationRuleBodyTwoFeaturesItemRegExp: RegExp;
|
|
3235
|
-
export declare const createNotificationRuleBodyThreeNameMax
|
|
3236
|
-
export declare const createNotificationRuleBodyThreeDisabledDefault
|
|
3305
|
+
export declare const createNotificationRuleBodyThreeNameMax = 256;
|
|
3306
|
+
export declare const createNotificationRuleBodyThreeDisabledDefault = false;
|
|
3237
3307
|
export declare const createNotificationRuleBodyThreeChannelsItemRegExp: RegExp;
|
|
3238
|
-
export declare const createNotificationRuleBodyFourNameMax
|
|
3239
|
-
export declare const createNotificationRuleBodyFourDisabledDefault
|
|
3308
|
+
export declare const createNotificationRuleBodyFourNameMax = 256;
|
|
3309
|
+
export declare const createNotificationRuleBodyFourDisabledDefault = false;
|
|
3240
3310
|
export declare const createNotificationRuleBodyFourChannelsItemRegExp: RegExp;
|
|
3241
3311
|
export declare const CreateNotificationRuleBody: zod.ZodUnion<readonly [zod.ZodObject<{
|
|
3242
3312
|
channels: zod.ZodArray<zod.z.ZodCoercedString<unknown>>;
|
|
@@ -3291,22 +3361,22 @@ export declare const updateNotificationRulePathRuleIdRegExp: RegExp;
|
|
|
3291
3361
|
export declare const UpdateNotificationRuleParams: zod.ZodObject<{
|
|
3292
3362
|
ruleId: zod.z.ZodCoercedString<unknown>;
|
|
3293
3363
|
}, zod.z.core.$strip>;
|
|
3294
|
-
export declare const updateNotificationRuleBodyOneNameMax
|
|
3295
|
-
export declare const updateNotificationRuleBodyOneDisabledDefault
|
|
3296
|
-
export declare const updateNotificationRuleBodyOneThresholdsMax
|
|
3364
|
+
export declare const updateNotificationRuleBodyOneNameMax = 256;
|
|
3365
|
+
export declare const updateNotificationRuleBodyOneDisabledDefault = false;
|
|
3366
|
+
export declare const updateNotificationRuleBodyOneThresholdsMax = 10;
|
|
3297
3367
|
export declare const updateNotificationRuleBodyOneChannelsItemRegExp: RegExp;
|
|
3298
|
-
export declare const updateNotificationRuleBodyOneFeaturesItemMax
|
|
3368
|
+
export declare const updateNotificationRuleBodyOneFeaturesItemMax = 64;
|
|
3299
3369
|
export declare const updateNotificationRuleBodyOneFeaturesItemRegExp: RegExp;
|
|
3300
|
-
export declare const updateNotificationRuleBodyTwoNameMax
|
|
3301
|
-
export declare const updateNotificationRuleBodyTwoDisabledDefault
|
|
3370
|
+
export declare const updateNotificationRuleBodyTwoNameMax = 256;
|
|
3371
|
+
export declare const updateNotificationRuleBodyTwoDisabledDefault = false;
|
|
3302
3372
|
export declare const updateNotificationRuleBodyTwoChannelsItemRegExp: RegExp;
|
|
3303
|
-
export declare const updateNotificationRuleBodyTwoFeaturesItemMax
|
|
3373
|
+
export declare const updateNotificationRuleBodyTwoFeaturesItemMax = 64;
|
|
3304
3374
|
export declare const updateNotificationRuleBodyTwoFeaturesItemRegExp: RegExp;
|
|
3305
|
-
export declare const updateNotificationRuleBodyThreeNameMax
|
|
3306
|
-
export declare const updateNotificationRuleBodyThreeDisabledDefault
|
|
3375
|
+
export declare const updateNotificationRuleBodyThreeNameMax = 256;
|
|
3376
|
+
export declare const updateNotificationRuleBodyThreeDisabledDefault = false;
|
|
3307
3377
|
export declare const updateNotificationRuleBodyThreeChannelsItemRegExp: RegExp;
|
|
3308
|
-
export declare const updateNotificationRuleBodyFourNameMax
|
|
3309
|
-
export declare const updateNotificationRuleBodyFourDisabledDefault
|
|
3378
|
+
export declare const updateNotificationRuleBodyFourNameMax = 256;
|
|
3379
|
+
export declare const updateNotificationRuleBodyFourDisabledDefault = false;
|
|
3310
3380
|
export declare const updateNotificationRuleBodyFourChannelsItemRegExp: RegExp;
|
|
3311
3381
|
export declare const UpdateNotificationRuleBody: zod.ZodUnion<readonly [zod.ZodObject<{
|
|
3312
3382
|
channels: zod.ZodArray<zod.z.ZodCoercedString<unknown>>;
|
|
@@ -3383,23 +3453,24 @@ export declare const TestNotificationRuleParams: zod.ZodObject<{
|
|
|
3383
3453
|
* List all plans.
|
|
3384
3454
|
* @summary List plans
|
|
3385
3455
|
*/
|
|
3386
|
-
export declare const listPlansQueryIncludeDeletedDefault
|
|
3456
|
+
export declare const listPlansQueryIncludeDeletedDefault = false;
|
|
3387
3457
|
export declare const listPlansQueryIdItemRegExp: RegExp;
|
|
3388
|
-
export declare const listPlansQueryKeyItemMax
|
|
3458
|
+
export declare const listPlansQueryKeyItemMax = 64;
|
|
3389
3459
|
export declare const listPlansQueryKeyItemRegExp: RegExp;
|
|
3390
|
-
export declare const listPlansQueryCurrencyItemMin
|
|
3391
|
-
export declare const listPlansQueryCurrencyItemMax
|
|
3460
|
+
export declare const listPlansQueryCurrencyItemMin = 3;
|
|
3461
|
+
export declare const listPlansQueryCurrencyItemMax = 3;
|
|
3392
3462
|
export declare const listPlansQueryCurrencyItemRegExp: RegExp;
|
|
3393
|
-
export declare const listPlansQueryPageDefault
|
|
3394
|
-
export declare const listPlansQueryPageSizeDefault
|
|
3395
|
-
export declare const listPlansQueryPageSizeMax
|
|
3463
|
+
export declare const listPlansQueryPageDefault = 1;
|
|
3464
|
+
export declare const listPlansQueryPageSizeDefault = 100;
|
|
3465
|
+
export declare const listPlansQueryPageSizeMax = 1000;
|
|
3466
|
+
export declare const listPlansQueryOrderDefault = "ASC";
|
|
3396
3467
|
export declare const ListPlansQueryParams: zod.ZodObject<{
|
|
3397
3468
|
currency: zod.ZodOptional<zod.ZodArray<zod.z.ZodCoercedString<unknown>>>;
|
|
3398
3469
|
id: zod.ZodOptional<zod.ZodArray<zod.z.ZodCoercedString<unknown>>>;
|
|
3399
3470
|
includeDeleted: zod.ZodDefault<zod.z.ZodCoercedBoolean<unknown>>;
|
|
3400
3471
|
key: zod.ZodOptional<zod.ZodArray<zod.z.ZodCoercedString<unknown>>>;
|
|
3401
3472
|
keyVersion: zod.ZodOptional<zod.ZodRecord<zod.ZodString, zod.ZodArray<zod.z.ZodCoercedNumber<unknown>>>>;
|
|
3402
|
-
order: zod.
|
|
3473
|
+
order: zod.ZodDefault<zod.ZodEnum<{
|
|
3403
3474
|
ASC: "ASC";
|
|
3404
3475
|
DESC: "DESC";
|
|
3405
3476
|
}>>;
|
|
@@ -3423,53 +3494,56 @@ export declare const ListPlansQueryParams: zod.ZodObject<{
|
|
|
3423
3494
|
* Create a new plan.
|
|
3424
3495
|
* @summary Create a plan
|
|
3425
3496
|
*/
|
|
3426
|
-
export declare const createPlanBodyNameMax
|
|
3427
|
-
export declare const createPlanBodyDescriptionMax
|
|
3428
|
-
export declare const createPlanBodyKeyMax
|
|
3497
|
+
export declare const createPlanBodyNameMax = 256;
|
|
3498
|
+
export declare const createPlanBodyDescriptionMax = 1024;
|
|
3499
|
+
export declare const createPlanBodyKeyMax = 64;
|
|
3429
3500
|
export declare const createPlanBodyKeyRegExp: RegExp;
|
|
3430
|
-
export declare const createPlanBodyCurrencyOneMin
|
|
3431
|
-
export declare const createPlanBodyCurrencyOneMax
|
|
3501
|
+
export declare const createPlanBodyCurrencyOneMin = 3;
|
|
3502
|
+
export declare const createPlanBodyCurrencyOneMax = 3;
|
|
3432
3503
|
export declare const createPlanBodyCurrencyOneRegExp: RegExp;
|
|
3433
|
-
export declare const createPlanBodyCurrencyDefault
|
|
3434
|
-
export declare const createPlanBodyProRatingConfigOneEnabledDefault
|
|
3435
|
-
export declare const createPlanBodyProRatingConfigOneModeDefault
|
|
3504
|
+
export declare const createPlanBodyCurrencyDefault = "USD";
|
|
3505
|
+
export declare const createPlanBodyProRatingConfigOneEnabledDefault = true;
|
|
3506
|
+
export declare const createPlanBodyProRatingConfigOneModeDefault = "prorate_prices";
|
|
3436
3507
|
export declare const createPlanBodyProRatingConfigDefault: {
|
|
3437
3508
|
readonly enabled: true;
|
|
3438
3509
|
readonly mode: "prorate_prices";
|
|
3439
3510
|
};
|
|
3440
|
-
export declare const
|
|
3511
|
+
export declare const createPlanBodySettlementModeDefault = "credit_then_invoice";
|
|
3512
|
+
export declare const createPlanBodyPhasesItemKeyMax = 64;
|
|
3441
3513
|
export declare const createPlanBodyPhasesItemKeyRegExp: RegExp;
|
|
3442
|
-
export declare const createPlanBodyPhasesItemNameMax
|
|
3443
|
-
export declare const createPlanBodyPhasesItemDescriptionMax
|
|
3444
|
-
export declare const createPlanBodyPhasesItemRateCardsItemOneKeyMax
|
|
3514
|
+
export declare const createPlanBodyPhasesItemNameMax = 256;
|
|
3515
|
+
export declare const createPlanBodyPhasesItemDescriptionMax = 1024;
|
|
3516
|
+
export declare const createPlanBodyPhasesItemRateCardsItemOneKeyMax = 64;
|
|
3445
3517
|
export declare const createPlanBodyPhasesItemRateCardsItemOneKeyRegExp: RegExp;
|
|
3446
|
-
export declare const createPlanBodyPhasesItemRateCardsItemOneNameMax
|
|
3447
|
-
export declare const createPlanBodyPhasesItemRateCardsItemOneDescriptionMax
|
|
3448
|
-
export declare const createPlanBodyPhasesItemRateCardsItemOneFeatureKeyMax
|
|
3518
|
+
export declare const createPlanBodyPhasesItemRateCardsItemOneNameMax = 256;
|
|
3519
|
+
export declare const createPlanBodyPhasesItemRateCardsItemOneDescriptionMax = 1024;
|
|
3520
|
+
export declare const createPlanBodyPhasesItemRateCardsItemOneFeatureKeyMax = 64;
|
|
3449
3521
|
export declare const createPlanBodyPhasesItemRateCardsItemOneFeatureKeyRegExp: RegExp;
|
|
3450
|
-
export declare const createPlanBodyPhasesItemRateCardsItemOneEntitlementTemplateOneOneIsSoftLimitDefault
|
|
3451
|
-
export declare const createPlanBodyPhasesItemRateCardsItemOneEntitlementTemplateOneOneIssueAfterResetMin
|
|
3452
|
-
export declare const createPlanBodyPhasesItemRateCardsItemOneEntitlementTemplateOneOneIssueAfterResetPriorityDefault
|
|
3453
|
-
export declare const createPlanBodyPhasesItemRateCardsItemOneEntitlementTemplateOneOneIssueAfterResetPriorityMax
|
|
3454
|
-
export declare const createPlanBodyPhasesItemRateCardsItemOneEntitlementTemplateOneOnePreserveOverageAtResetDefault
|
|
3522
|
+
export declare const createPlanBodyPhasesItemRateCardsItemOneEntitlementTemplateOneOneIsSoftLimitDefault = false;
|
|
3523
|
+
export declare const createPlanBodyPhasesItemRateCardsItemOneEntitlementTemplateOneOneIssueAfterResetMin = 0;
|
|
3524
|
+
export declare const createPlanBodyPhasesItemRateCardsItemOneEntitlementTemplateOneOneIssueAfterResetPriorityDefault = 1;
|
|
3525
|
+
export declare const createPlanBodyPhasesItemRateCardsItemOneEntitlementTemplateOneOneIssueAfterResetPriorityMax = 255;
|
|
3526
|
+
export declare const createPlanBodyPhasesItemRateCardsItemOneEntitlementTemplateOneOnePreserveOverageAtResetDefault = false;
|
|
3455
3527
|
export declare const createPlanBodyPhasesItemRateCardsItemOneTaxConfigOneStripeOneCodeRegExp: RegExp;
|
|
3528
|
+
export declare const createPlanBodyPhasesItemRateCardsItemOneTaxConfigOneTaxCodeIdRegExp: RegExp;
|
|
3456
3529
|
export declare const createPlanBodyPhasesItemRateCardsItemOnePriceOneAmountOneRegExp: RegExp;
|
|
3457
|
-
export declare const createPlanBodyPhasesItemRateCardsItemOnePriceOnePaymentTermDefault
|
|
3530
|
+
export declare const createPlanBodyPhasesItemRateCardsItemOnePriceOnePaymentTermDefault = "in_advance";
|
|
3458
3531
|
export declare const createPlanBodyPhasesItemRateCardsItemOneDiscountsOneUsageOneQuantityOneRegExp: RegExp;
|
|
3459
|
-
export declare const createPlanBodyPhasesItemRateCardsItemTwoKeyMax
|
|
3532
|
+
export declare const createPlanBodyPhasesItemRateCardsItemTwoKeyMax = 64;
|
|
3460
3533
|
export declare const createPlanBodyPhasesItemRateCardsItemTwoKeyRegExp: RegExp;
|
|
3461
|
-
export declare const createPlanBodyPhasesItemRateCardsItemTwoNameMax
|
|
3462
|
-
export declare const createPlanBodyPhasesItemRateCardsItemTwoDescriptionMax
|
|
3463
|
-
export declare const createPlanBodyPhasesItemRateCardsItemTwoFeatureKeyMax
|
|
3534
|
+
export declare const createPlanBodyPhasesItemRateCardsItemTwoNameMax = 256;
|
|
3535
|
+
export declare const createPlanBodyPhasesItemRateCardsItemTwoDescriptionMax = 1024;
|
|
3536
|
+
export declare const createPlanBodyPhasesItemRateCardsItemTwoFeatureKeyMax = 64;
|
|
3464
3537
|
export declare const createPlanBodyPhasesItemRateCardsItemTwoFeatureKeyRegExp: RegExp;
|
|
3465
|
-
export declare const createPlanBodyPhasesItemRateCardsItemTwoEntitlementTemplateOneOneIsSoftLimitDefault
|
|
3466
|
-
export declare const createPlanBodyPhasesItemRateCardsItemTwoEntitlementTemplateOneOneIssueAfterResetMin
|
|
3467
|
-
export declare const createPlanBodyPhasesItemRateCardsItemTwoEntitlementTemplateOneOneIssueAfterResetPriorityDefault
|
|
3468
|
-
export declare const createPlanBodyPhasesItemRateCardsItemTwoEntitlementTemplateOneOneIssueAfterResetPriorityMax
|
|
3469
|
-
export declare const createPlanBodyPhasesItemRateCardsItemTwoEntitlementTemplateOneOnePreserveOverageAtResetDefault
|
|
3538
|
+
export declare const createPlanBodyPhasesItemRateCardsItemTwoEntitlementTemplateOneOneIsSoftLimitDefault = false;
|
|
3539
|
+
export declare const createPlanBodyPhasesItemRateCardsItemTwoEntitlementTemplateOneOneIssueAfterResetMin = 0;
|
|
3540
|
+
export declare const createPlanBodyPhasesItemRateCardsItemTwoEntitlementTemplateOneOneIssueAfterResetPriorityDefault = 1;
|
|
3541
|
+
export declare const createPlanBodyPhasesItemRateCardsItemTwoEntitlementTemplateOneOneIssueAfterResetPriorityMax = 255;
|
|
3542
|
+
export declare const createPlanBodyPhasesItemRateCardsItemTwoEntitlementTemplateOneOnePreserveOverageAtResetDefault = false;
|
|
3470
3543
|
export declare const createPlanBodyPhasesItemRateCardsItemTwoTaxConfigOneStripeOneCodeRegExp: RegExp;
|
|
3544
|
+
export declare const createPlanBodyPhasesItemRateCardsItemTwoTaxConfigOneTaxCodeIdRegExp: RegExp;
|
|
3471
3545
|
export declare const createPlanBodyPhasesItemRateCardsItemTwoPriceOneOneAmountOneRegExp: RegExp;
|
|
3472
|
-
export declare const createPlanBodyPhasesItemRateCardsItemTwoPriceOneOnePaymentTermDefault
|
|
3546
|
+
export declare const createPlanBodyPhasesItemRateCardsItemTwoPriceOneOnePaymentTermDefault = "in_advance";
|
|
3473
3547
|
export declare const createPlanBodyPhasesItemRateCardsItemTwoPriceOneTwoAmountOneRegExp: RegExp;
|
|
3474
3548
|
export declare const createPlanBodyPhasesItemRateCardsItemTwoPriceOneTwoMinimumAmountOneRegExp: RegExp;
|
|
3475
3549
|
export declare const createPlanBodyPhasesItemRateCardsItemTwoPriceOneTwoMaximumAmountOneRegExp: RegExp;
|
|
@@ -3479,7 +3553,7 @@ export declare const createPlanBodyPhasesItemRateCardsItemTwoPriceOneThreeTiersI
|
|
|
3479
3553
|
export declare const createPlanBodyPhasesItemRateCardsItemTwoPriceOneThreeMinimumAmountOneRegExp: RegExp;
|
|
3480
3554
|
export declare const createPlanBodyPhasesItemRateCardsItemTwoPriceOneThreeMaximumAmountOneRegExp: RegExp;
|
|
3481
3555
|
export declare const createPlanBodyPhasesItemRateCardsItemTwoPriceOneFourMultiplierOneRegExp: RegExp;
|
|
3482
|
-
export declare const createPlanBodyPhasesItemRateCardsItemTwoPriceOneFourMultiplierDefault
|
|
3556
|
+
export declare const createPlanBodyPhasesItemRateCardsItemTwoPriceOneFourMultiplierDefault = "1";
|
|
3483
3557
|
export declare const createPlanBodyPhasesItemRateCardsItemTwoPriceOneFourMinimumAmountOneRegExp: RegExp;
|
|
3484
3558
|
export declare const createPlanBodyPhasesItemRateCardsItemTwoPriceOneFourMaximumAmountOneRegExp: RegExp;
|
|
3485
3559
|
export declare const createPlanBodyPhasesItemRateCardsItemTwoPriceOneFiveAmountOneRegExp: RegExp;
|
|
@@ -3492,7 +3566,7 @@ export declare const CreatePlanBody: zod.ZodObject<{
|
|
|
3492
3566
|
billablesMustAlign: zod.ZodOptional<zod.z.ZodCoercedBoolean<unknown>>;
|
|
3493
3567
|
}, zod.z.core.$strip>>;
|
|
3494
3568
|
billingCadence: zod.z.ZodCoercedString<unknown>;
|
|
3495
|
-
currency: zod.z.ZodCoercedString<unknown
|
|
3569
|
+
currency: zod.ZodDefault<zod.z.ZodCoercedString<unknown>>;
|
|
3496
3570
|
description: zod.ZodOptional<zod.z.ZodCoercedString<unknown>>;
|
|
3497
3571
|
key: zod.z.ZodCoercedString<unknown>;
|
|
3498
3572
|
metadata: zod.ZodOptional<zod.ZodNullable<zod.ZodRecord<zod.ZodString, zod.z.ZodCoercedString<unknown>>>>;
|
|
@@ -3561,6 +3635,7 @@ export declare const CreatePlanBody: zod.ZodObject<{
|
|
|
3561
3635
|
stripe: zod.ZodOptional<zod.ZodObject<{
|
|
3562
3636
|
code: zod.z.ZodCoercedString<unknown>;
|
|
3563
3637
|
}, zod.z.core.$strip>>;
|
|
3638
|
+
taxCodeId: zod.ZodOptional<zod.z.ZodCoercedString<unknown>>;
|
|
3564
3639
|
}, zod.z.core.$strip>>;
|
|
3565
3640
|
type: zod.ZodEnum<{
|
|
3566
3641
|
flat_fee: "flat_fee";
|
|
@@ -3670,6 +3745,7 @@ export declare const CreatePlanBody: zod.ZodObject<{
|
|
|
3670
3745
|
stripe: zod.ZodOptional<zod.ZodObject<{
|
|
3671
3746
|
code: zod.z.ZodCoercedString<unknown>;
|
|
3672
3747
|
}, zod.z.core.$strip>>;
|
|
3748
|
+
taxCodeId: zod.ZodOptional<zod.z.ZodCoercedString<unknown>>;
|
|
3673
3749
|
}, zod.z.core.$strip>>;
|
|
3674
3750
|
type: zod.ZodEnum<{
|
|
3675
3751
|
usage_based: "usage_based";
|
|
@@ -3677,11 +3753,15 @@ export declare const CreatePlanBody: zod.ZodObject<{
|
|
|
3677
3753
|
}, zod.z.core.$strip>]>>;
|
|
3678
3754
|
}, zod.z.core.$strip>>;
|
|
3679
3755
|
proRatingConfig: zod.ZodDefault<zod.ZodObject<{
|
|
3680
|
-
enabled: zod.z.ZodCoercedBoolean<unknown
|
|
3681
|
-
mode: zod.ZodEnum<{
|
|
3756
|
+
enabled: zod.ZodDefault<zod.z.ZodCoercedBoolean<unknown>>;
|
|
3757
|
+
mode: zod.ZodDefault<zod.ZodEnum<{
|
|
3682
3758
|
prorate_prices: "prorate_prices";
|
|
3683
|
-
}
|
|
3759
|
+
}>>;
|
|
3684
3760
|
}, zod.z.core.$strip>>;
|
|
3761
|
+
settlementMode: zod.ZodDefault<zod.ZodEnum<{
|
|
3762
|
+
credit_then_invoice: "credit_then_invoice";
|
|
3763
|
+
credit_only: "credit_only";
|
|
3764
|
+
}>>;
|
|
3685
3765
|
}, zod.z.core.$strip>;
|
|
3686
3766
|
/**
|
|
3687
3767
|
* Create a new draft version from plan.
|
|
@@ -3689,7 +3769,7 @@ It returns error if there is already a plan in draft or planId does not referenc
|
|
|
3689
3769
|
* @deprecated
|
|
3690
3770
|
* @summary New draft plan
|
|
3691
3771
|
*/
|
|
3692
|
-
export declare const nextPlanPathPlanIdOrKeyMax
|
|
3772
|
+
export declare const nextPlanPathPlanIdOrKeyMax = 64;
|
|
3693
3773
|
export declare const nextPlanPathPlanIdOrKeyRegExp: RegExp;
|
|
3694
3774
|
export declare const NextPlanParams: zod.ZodObject<{
|
|
3695
3775
|
planIdOrKey: zod.z.ZodCoercedString<unknown>;
|
|
@@ -3702,47 +3782,50 @@ export declare const updatePlanPathPlanIdRegExp: RegExp;
|
|
|
3702
3782
|
export declare const UpdatePlanParams: zod.ZodObject<{
|
|
3703
3783
|
planId: zod.z.ZodCoercedString<unknown>;
|
|
3704
3784
|
}, zod.z.core.$strip>;
|
|
3705
|
-
export declare const updatePlanBodyNameMax
|
|
3706
|
-
export declare const updatePlanBodyDescriptionMax
|
|
3707
|
-
export declare const updatePlanBodyProRatingConfigOneEnabledDefault
|
|
3708
|
-
export declare const updatePlanBodyProRatingConfigOneModeDefault
|
|
3785
|
+
export declare const updatePlanBodyNameMax = 256;
|
|
3786
|
+
export declare const updatePlanBodyDescriptionMax = 1024;
|
|
3787
|
+
export declare const updatePlanBodyProRatingConfigOneEnabledDefault = true;
|
|
3788
|
+
export declare const updatePlanBodyProRatingConfigOneModeDefault = "prorate_prices";
|
|
3709
3789
|
export declare const updatePlanBodyProRatingConfigDefault: {
|
|
3710
3790
|
readonly enabled: true;
|
|
3711
3791
|
readonly mode: "prorate_prices";
|
|
3712
3792
|
};
|
|
3713
|
-
export declare const
|
|
3793
|
+
export declare const updatePlanBodySettlementModeDefault = "credit_then_invoice";
|
|
3794
|
+
export declare const updatePlanBodyPhasesItemKeyMax = 64;
|
|
3714
3795
|
export declare const updatePlanBodyPhasesItemKeyRegExp: RegExp;
|
|
3715
|
-
export declare const updatePlanBodyPhasesItemNameMax
|
|
3716
|
-
export declare const updatePlanBodyPhasesItemDescriptionMax
|
|
3717
|
-
export declare const updatePlanBodyPhasesItemRateCardsItemOneKeyMax
|
|
3796
|
+
export declare const updatePlanBodyPhasesItemNameMax = 256;
|
|
3797
|
+
export declare const updatePlanBodyPhasesItemDescriptionMax = 1024;
|
|
3798
|
+
export declare const updatePlanBodyPhasesItemRateCardsItemOneKeyMax = 64;
|
|
3718
3799
|
export declare const updatePlanBodyPhasesItemRateCardsItemOneKeyRegExp: RegExp;
|
|
3719
|
-
export declare const updatePlanBodyPhasesItemRateCardsItemOneNameMax
|
|
3720
|
-
export declare const updatePlanBodyPhasesItemRateCardsItemOneDescriptionMax
|
|
3721
|
-
export declare const updatePlanBodyPhasesItemRateCardsItemOneFeatureKeyMax
|
|
3800
|
+
export declare const updatePlanBodyPhasesItemRateCardsItemOneNameMax = 256;
|
|
3801
|
+
export declare const updatePlanBodyPhasesItemRateCardsItemOneDescriptionMax = 1024;
|
|
3802
|
+
export declare const updatePlanBodyPhasesItemRateCardsItemOneFeatureKeyMax = 64;
|
|
3722
3803
|
export declare const updatePlanBodyPhasesItemRateCardsItemOneFeatureKeyRegExp: RegExp;
|
|
3723
|
-
export declare const updatePlanBodyPhasesItemRateCardsItemOneEntitlementTemplateOneOneIsSoftLimitDefault
|
|
3724
|
-
export declare const updatePlanBodyPhasesItemRateCardsItemOneEntitlementTemplateOneOneIssueAfterResetMin
|
|
3725
|
-
export declare const updatePlanBodyPhasesItemRateCardsItemOneEntitlementTemplateOneOneIssueAfterResetPriorityDefault
|
|
3726
|
-
export declare const updatePlanBodyPhasesItemRateCardsItemOneEntitlementTemplateOneOneIssueAfterResetPriorityMax
|
|
3727
|
-
export declare const updatePlanBodyPhasesItemRateCardsItemOneEntitlementTemplateOneOnePreserveOverageAtResetDefault
|
|
3804
|
+
export declare const updatePlanBodyPhasesItemRateCardsItemOneEntitlementTemplateOneOneIsSoftLimitDefault = false;
|
|
3805
|
+
export declare const updatePlanBodyPhasesItemRateCardsItemOneEntitlementTemplateOneOneIssueAfterResetMin = 0;
|
|
3806
|
+
export declare const updatePlanBodyPhasesItemRateCardsItemOneEntitlementTemplateOneOneIssueAfterResetPriorityDefault = 1;
|
|
3807
|
+
export declare const updatePlanBodyPhasesItemRateCardsItemOneEntitlementTemplateOneOneIssueAfterResetPriorityMax = 255;
|
|
3808
|
+
export declare const updatePlanBodyPhasesItemRateCardsItemOneEntitlementTemplateOneOnePreserveOverageAtResetDefault = false;
|
|
3728
3809
|
export declare const updatePlanBodyPhasesItemRateCardsItemOneTaxConfigOneStripeOneCodeRegExp: RegExp;
|
|
3810
|
+
export declare const updatePlanBodyPhasesItemRateCardsItemOneTaxConfigOneTaxCodeIdRegExp: RegExp;
|
|
3729
3811
|
export declare const updatePlanBodyPhasesItemRateCardsItemOnePriceOneAmountOneRegExp: RegExp;
|
|
3730
|
-
export declare const updatePlanBodyPhasesItemRateCardsItemOnePriceOnePaymentTermDefault
|
|
3812
|
+
export declare const updatePlanBodyPhasesItemRateCardsItemOnePriceOnePaymentTermDefault = "in_advance";
|
|
3731
3813
|
export declare const updatePlanBodyPhasesItemRateCardsItemOneDiscountsOneUsageOneQuantityOneRegExp: RegExp;
|
|
3732
|
-
export declare const updatePlanBodyPhasesItemRateCardsItemTwoKeyMax
|
|
3814
|
+
export declare const updatePlanBodyPhasesItemRateCardsItemTwoKeyMax = 64;
|
|
3733
3815
|
export declare const updatePlanBodyPhasesItemRateCardsItemTwoKeyRegExp: RegExp;
|
|
3734
|
-
export declare const updatePlanBodyPhasesItemRateCardsItemTwoNameMax
|
|
3735
|
-
export declare const updatePlanBodyPhasesItemRateCardsItemTwoDescriptionMax
|
|
3736
|
-
export declare const updatePlanBodyPhasesItemRateCardsItemTwoFeatureKeyMax
|
|
3816
|
+
export declare const updatePlanBodyPhasesItemRateCardsItemTwoNameMax = 256;
|
|
3817
|
+
export declare const updatePlanBodyPhasesItemRateCardsItemTwoDescriptionMax = 1024;
|
|
3818
|
+
export declare const updatePlanBodyPhasesItemRateCardsItemTwoFeatureKeyMax = 64;
|
|
3737
3819
|
export declare const updatePlanBodyPhasesItemRateCardsItemTwoFeatureKeyRegExp: RegExp;
|
|
3738
|
-
export declare const updatePlanBodyPhasesItemRateCardsItemTwoEntitlementTemplateOneOneIsSoftLimitDefault
|
|
3739
|
-
export declare const updatePlanBodyPhasesItemRateCardsItemTwoEntitlementTemplateOneOneIssueAfterResetMin
|
|
3740
|
-
export declare const updatePlanBodyPhasesItemRateCardsItemTwoEntitlementTemplateOneOneIssueAfterResetPriorityDefault
|
|
3741
|
-
export declare const updatePlanBodyPhasesItemRateCardsItemTwoEntitlementTemplateOneOneIssueAfterResetPriorityMax
|
|
3742
|
-
export declare const updatePlanBodyPhasesItemRateCardsItemTwoEntitlementTemplateOneOnePreserveOverageAtResetDefault
|
|
3820
|
+
export declare const updatePlanBodyPhasesItemRateCardsItemTwoEntitlementTemplateOneOneIsSoftLimitDefault = false;
|
|
3821
|
+
export declare const updatePlanBodyPhasesItemRateCardsItemTwoEntitlementTemplateOneOneIssueAfterResetMin = 0;
|
|
3822
|
+
export declare const updatePlanBodyPhasesItemRateCardsItemTwoEntitlementTemplateOneOneIssueAfterResetPriorityDefault = 1;
|
|
3823
|
+
export declare const updatePlanBodyPhasesItemRateCardsItemTwoEntitlementTemplateOneOneIssueAfterResetPriorityMax = 255;
|
|
3824
|
+
export declare const updatePlanBodyPhasesItemRateCardsItemTwoEntitlementTemplateOneOnePreserveOverageAtResetDefault = false;
|
|
3743
3825
|
export declare const updatePlanBodyPhasesItemRateCardsItemTwoTaxConfigOneStripeOneCodeRegExp: RegExp;
|
|
3826
|
+
export declare const updatePlanBodyPhasesItemRateCardsItemTwoTaxConfigOneTaxCodeIdRegExp: RegExp;
|
|
3744
3827
|
export declare const updatePlanBodyPhasesItemRateCardsItemTwoPriceOneOneAmountOneRegExp: RegExp;
|
|
3745
|
-
export declare const updatePlanBodyPhasesItemRateCardsItemTwoPriceOneOnePaymentTermDefault
|
|
3828
|
+
export declare const updatePlanBodyPhasesItemRateCardsItemTwoPriceOneOnePaymentTermDefault = "in_advance";
|
|
3746
3829
|
export declare const updatePlanBodyPhasesItemRateCardsItemTwoPriceOneTwoAmountOneRegExp: RegExp;
|
|
3747
3830
|
export declare const updatePlanBodyPhasesItemRateCardsItemTwoPriceOneTwoMinimumAmountOneRegExp: RegExp;
|
|
3748
3831
|
export declare const updatePlanBodyPhasesItemRateCardsItemTwoPriceOneTwoMaximumAmountOneRegExp: RegExp;
|
|
@@ -3752,7 +3835,7 @@ export declare const updatePlanBodyPhasesItemRateCardsItemTwoPriceOneThreeTiersI
|
|
|
3752
3835
|
export declare const updatePlanBodyPhasesItemRateCardsItemTwoPriceOneThreeMinimumAmountOneRegExp: RegExp;
|
|
3753
3836
|
export declare const updatePlanBodyPhasesItemRateCardsItemTwoPriceOneThreeMaximumAmountOneRegExp: RegExp;
|
|
3754
3837
|
export declare const updatePlanBodyPhasesItemRateCardsItemTwoPriceOneFourMultiplierOneRegExp: RegExp;
|
|
3755
|
-
export declare const updatePlanBodyPhasesItemRateCardsItemTwoPriceOneFourMultiplierDefault
|
|
3838
|
+
export declare const updatePlanBodyPhasesItemRateCardsItemTwoPriceOneFourMultiplierDefault = "1";
|
|
3756
3839
|
export declare const updatePlanBodyPhasesItemRateCardsItemTwoPriceOneFourMinimumAmountOneRegExp: RegExp;
|
|
3757
3840
|
export declare const updatePlanBodyPhasesItemRateCardsItemTwoPriceOneFourMaximumAmountOneRegExp: RegExp;
|
|
3758
3841
|
export declare const updatePlanBodyPhasesItemRateCardsItemTwoPriceOneFiveAmountOneRegExp: RegExp;
|
|
@@ -3832,6 +3915,7 @@ export declare const UpdatePlanBody: zod.ZodObject<{
|
|
|
3832
3915
|
stripe: zod.ZodOptional<zod.ZodObject<{
|
|
3833
3916
|
code: zod.z.ZodCoercedString<unknown>;
|
|
3834
3917
|
}, zod.z.core.$strip>>;
|
|
3918
|
+
taxCodeId: zod.ZodOptional<zod.z.ZodCoercedString<unknown>>;
|
|
3835
3919
|
}, zod.z.core.$strip>>;
|
|
3836
3920
|
type: zod.ZodEnum<{
|
|
3837
3921
|
flat_fee: "flat_fee";
|
|
@@ -3941,6 +4025,7 @@ export declare const UpdatePlanBody: zod.ZodObject<{
|
|
|
3941
4025
|
stripe: zod.ZodOptional<zod.ZodObject<{
|
|
3942
4026
|
code: zod.z.ZodCoercedString<unknown>;
|
|
3943
4027
|
}, zod.z.core.$strip>>;
|
|
4028
|
+
taxCodeId: zod.ZodOptional<zod.z.ZodCoercedString<unknown>>;
|
|
3944
4029
|
}, zod.z.core.$strip>>;
|
|
3945
4030
|
type: zod.ZodEnum<{
|
|
3946
4031
|
usage_based: "usage_based";
|
|
@@ -3948,22 +4033,26 @@ export declare const UpdatePlanBody: zod.ZodObject<{
|
|
|
3948
4033
|
}, zod.z.core.$strip>]>>;
|
|
3949
4034
|
}, zod.z.core.$strip>>;
|
|
3950
4035
|
proRatingConfig: zod.ZodDefault<zod.ZodObject<{
|
|
3951
|
-
enabled: zod.z.ZodCoercedBoolean<unknown
|
|
3952
|
-
mode: zod.ZodEnum<{
|
|
4036
|
+
enabled: zod.ZodDefault<zod.z.ZodCoercedBoolean<unknown>>;
|
|
4037
|
+
mode: zod.ZodDefault<zod.ZodEnum<{
|
|
3953
4038
|
prorate_prices: "prorate_prices";
|
|
3954
|
-
}
|
|
4039
|
+
}>>;
|
|
3955
4040
|
}, zod.z.core.$strip>>;
|
|
4041
|
+
settlementMode: zod.ZodDefault<zod.ZodEnum<{
|
|
4042
|
+
credit_then_invoice: "credit_then_invoice";
|
|
4043
|
+
credit_only: "credit_only";
|
|
4044
|
+
}>>;
|
|
3956
4045
|
}, zod.z.core.$strip>;
|
|
3957
4046
|
/**
|
|
3958
4047
|
* Get a plan by id or key. The latest published version is returned if latter is used.
|
|
3959
4048
|
* @summary Get plan
|
|
3960
4049
|
*/
|
|
3961
|
-
export declare const getPlanPathPlanIdMax
|
|
4050
|
+
export declare const getPlanPathPlanIdMax = 64;
|
|
3962
4051
|
export declare const getPlanPathPlanIdRegExp: RegExp;
|
|
3963
4052
|
export declare const GetPlanParams: zod.ZodObject<{
|
|
3964
4053
|
planId: zod.z.ZodCoercedString<unknown>;
|
|
3965
4054
|
}, zod.z.core.$strip>;
|
|
3966
|
-
export declare const getPlanQueryIncludeLatestDefault
|
|
4055
|
+
export declare const getPlanQueryIncludeLatestDefault = false;
|
|
3967
4056
|
export declare const GetPlanQueryParams: zod.ZodObject<{
|
|
3968
4057
|
includeLatest: zod.ZodDefault<zod.z.ZodCoercedBoolean<unknown>>;
|
|
3969
4058
|
}, zod.z.core.$strip>;
|
|
@@ -3981,24 +4070,25 @@ export declare const DeletePlanParams: zod.ZodObject<{
|
|
|
3981
4070
|
* List all available add-ons for plan.
|
|
3982
4071
|
* @summary List all available add-ons for plan
|
|
3983
4072
|
*/
|
|
3984
|
-
export declare const listPlanAddonsPathPlanIdMax
|
|
4073
|
+
export declare const listPlanAddonsPathPlanIdMax = 64;
|
|
3985
4074
|
export declare const listPlanAddonsPathPlanIdRegExp: RegExp;
|
|
3986
4075
|
export declare const ListPlanAddonsParams: zod.ZodObject<{
|
|
3987
4076
|
planId: zod.z.ZodCoercedString<unknown>;
|
|
3988
4077
|
}, zod.z.core.$strip>;
|
|
3989
|
-
export declare const listPlanAddonsQueryIncludeDeletedDefault
|
|
4078
|
+
export declare const listPlanAddonsQueryIncludeDeletedDefault = false;
|
|
3990
4079
|
export declare const listPlanAddonsQueryIdItemRegExp: RegExp;
|
|
3991
|
-
export declare const listPlanAddonsQueryKeyItemMax
|
|
4080
|
+
export declare const listPlanAddonsQueryKeyItemMax = 64;
|
|
3992
4081
|
export declare const listPlanAddonsQueryKeyItemRegExp: RegExp;
|
|
3993
|
-
export declare const listPlanAddonsQueryPageDefault
|
|
3994
|
-
export declare const listPlanAddonsQueryPageSizeDefault
|
|
3995
|
-
export declare const listPlanAddonsQueryPageSizeMax
|
|
4082
|
+
export declare const listPlanAddonsQueryPageDefault = 1;
|
|
4083
|
+
export declare const listPlanAddonsQueryPageSizeDefault = 100;
|
|
4084
|
+
export declare const listPlanAddonsQueryPageSizeMax = 1000;
|
|
4085
|
+
export declare const listPlanAddonsQueryOrderDefault = "ASC";
|
|
3996
4086
|
export declare const ListPlanAddonsQueryParams: zod.ZodObject<{
|
|
3997
4087
|
id: zod.ZodOptional<zod.ZodArray<zod.z.ZodCoercedString<unknown>>>;
|
|
3998
4088
|
includeDeleted: zod.ZodDefault<zod.z.ZodCoercedBoolean<unknown>>;
|
|
3999
4089
|
key: zod.ZodOptional<zod.ZodArray<zod.z.ZodCoercedString<unknown>>>;
|
|
4000
4090
|
keyVersion: zod.ZodOptional<zod.ZodRecord<zod.ZodString, zod.ZodArray<zod.z.ZodCoercedNumber<unknown>>>>;
|
|
4001
|
-
order: zod.
|
|
4091
|
+
order: zod.ZodDefault<zod.ZodEnum<{
|
|
4002
4092
|
ASC: "ASC";
|
|
4003
4093
|
DESC: "DESC";
|
|
4004
4094
|
}>>;
|
|
@@ -4046,9 +4136,9 @@ export declare const UpdatePlanAddonBody: zod.ZodObject<{
|
|
|
4046
4136
|
* Get add-on assignment for plan by id.
|
|
4047
4137
|
* @summary Get add-on assignment for plan
|
|
4048
4138
|
*/
|
|
4049
|
-
export declare const getPlanAddonPathPlanIdMax
|
|
4139
|
+
export declare const getPlanAddonPathPlanIdMax = 64;
|
|
4050
4140
|
export declare const getPlanAddonPathPlanIdRegExp: RegExp;
|
|
4051
|
-
export declare const getPlanAddonPathPlanAddonIdMax
|
|
4141
|
+
export declare const getPlanAddonPathPlanAddonIdMax = 64;
|
|
4052
4142
|
export declare const getPlanAddonPathPlanAddonIdRegExp: RegExp;
|
|
4053
4143
|
export declare const GetPlanAddonParams: zod.ZodObject<{
|
|
4054
4144
|
planAddonId: zod.z.ZodCoercedString<unknown>;
|
|
@@ -4086,14 +4176,14 @@ export declare const PublishPlanParams: zod.ZodObject<{
|
|
|
4086
4176
|
* Query meter for consumer portal. This endpoint is publicly exposable to consumers. Query meter for consumer portal. This endpoint is publicly exposable to consumers.
|
|
4087
4177
|
* @summary Query meter Query meter
|
|
4088
4178
|
*/
|
|
4089
|
-
export declare const queryPortalMeterPathMeterSlugMax
|
|
4179
|
+
export declare const queryPortalMeterPathMeterSlugMax = 64;
|
|
4090
4180
|
export declare const queryPortalMeterPathMeterSlugRegExp: RegExp;
|
|
4091
4181
|
export declare const QueryPortalMeterParams: zod.ZodObject<{
|
|
4092
4182
|
meterSlug: zod.z.ZodCoercedString<unknown>;
|
|
4093
4183
|
}, zod.z.core.$strip>;
|
|
4094
|
-
export declare const queryPortalMeterQueryClientIdMax
|
|
4095
|
-
export declare const queryPortalMeterQueryWindowTimeZoneDefault
|
|
4096
|
-
export declare const queryPortalMeterQueryFilterCustomerIdMax
|
|
4184
|
+
export declare const queryPortalMeterQueryClientIdMax = 36;
|
|
4185
|
+
export declare const queryPortalMeterQueryWindowTimeZoneDefault = "UTC";
|
|
4186
|
+
export declare const queryPortalMeterQueryFilterCustomerIdMax = 100;
|
|
4097
4187
|
export declare const QueryPortalMeterQueryParams: zod.ZodObject<{
|
|
4098
4188
|
clientId: zod.ZodOptional<zod.z.ZodCoercedString<unknown>>;
|
|
4099
4189
|
filterCustomerId: zod.ZodOptional<zod.ZodArray<zod.z.ZodCoercedString<unknown>>>;
|
|
@@ -4121,8 +4211,8 @@ export declare const CreatePortalTokenBody: zod.ZodObject<{
|
|
|
4121
4211
|
* List tokens.
|
|
4122
4212
|
* @summary List consumer portal tokens
|
|
4123
4213
|
*/
|
|
4124
|
-
export declare const listPortalTokensQueryLimitDefault
|
|
4125
|
-
export declare const listPortalTokensQueryLimitMax
|
|
4214
|
+
export declare const listPortalTokensQueryLimitDefault = 25;
|
|
4215
|
+
export declare const listPortalTokensQueryLimitMax = 100;
|
|
4126
4216
|
export declare const ListPortalTokensQueryParams: zod.ZodObject<{
|
|
4127
4217
|
limit: zod.ZodDefault<zod.z.ZodCoercedNumber<unknown>>;
|
|
4128
4218
|
}, zod.z.core.$strip>;
|
|
@@ -4140,23 +4230,23 @@ export declare const InvalidatePortalTokensBody: zod.ZodObject<{
|
|
|
4140
4230
|
*/
|
|
4141
4231
|
export declare const createStripeCheckoutSessionBodyAppIdRegExp: RegExp;
|
|
4142
4232
|
export declare const createStripeCheckoutSessionBodyCustomerOneIdRegExp: RegExp;
|
|
4143
|
-
export declare const createStripeCheckoutSessionBodyCustomerThreeNameMax
|
|
4144
|
-
export declare const createStripeCheckoutSessionBodyCustomerThreeDescriptionMax
|
|
4145
|
-
export declare const createStripeCheckoutSessionBodyCustomerThreeKeyMax
|
|
4146
|
-
export declare const createStripeCheckoutSessionBodyCustomerThreeUsageAttributionOneSubjectKeysMin
|
|
4147
|
-
export declare const createStripeCheckoutSessionBodyCustomerThreeCurrencyOneMin
|
|
4148
|
-
export declare const createStripeCheckoutSessionBodyCustomerThreeCurrencyOneMax
|
|
4233
|
+
export declare const createStripeCheckoutSessionBodyCustomerThreeNameMax = 256;
|
|
4234
|
+
export declare const createStripeCheckoutSessionBodyCustomerThreeDescriptionMax = 1024;
|
|
4235
|
+
export declare const createStripeCheckoutSessionBodyCustomerThreeKeyMax = 256;
|
|
4236
|
+
export declare const createStripeCheckoutSessionBodyCustomerThreeUsageAttributionOneSubjectKeysMin = 0;
|
|
4237
|
+
export declare const createStripeCheckoutSessionBodyCustomerThreeCurrencyOneMin = 3;
|
|
4238
|
+
export declare const createStripeCheckoutSessionBodyCustomerThreeCurrencyOneMax = 3;
|
|
4149
4239
|
export declare const createStripeCheckoutSessionBodyCustomerThreeCurrencyOneRegExp: RegExp;
|
|
4150
|
-
export declare const createStripeCheckoutSessionBodyCustomerThreeBillingAddressOneCountryOneMin
|
|
4151
|
-
export declare const createStripeCheckoutSessionBodyCustomerThreeBillingAddressOneCountryOneMax
|
|
4240
|
+
export declare const createStripeCheckoutSessionBodyCustomerThreeBillingAddressOneCountryOneMin = 2;
|
|
4241
|
+
export declare const createStripeCheckoutSessionBodyCustomerThreeBillingAddressOneCountryOneMax = 2;
|
|
4152
4242
|
export declare const createStripeCheckoutSessionBodyCustomerThreeBillingAddressOneCountryOneRegExp: RegExp;
|
|
4153
|
-
export declare const createStripeCheckoutSessionBodyOptionsOneCurrencyOneMin
|
|
4154
|
-
export declare const createStripeCheckoutSessionBodyOptionsOneCurrencyOneMax
|
|
4243
|
+
export declare const createStripeCheckoutSessionBodyOptionsOneCurrencyOneMin = 3;
|
|
4244
|
+
export declare const createStripeCheckoutSessionBodyOptionsOneCurrencyOneMax = 3;
|
|
4155
4245
|
export declare const createStripeCheckoutSessionBodyOptionsOneCurrencyOneRegExp: RegExp;
|
|
4156
|
-
export declare const createStripeCheckoutSessionBodyOptionsOneCustomTextOneAfterSubmitMessageMax
|
|
4157
|
-
export declare const createStripeCheckoutSessionBodyOptionsOneCustomTextOneShippingAddressMessageMax
|
|
4158
|
-
export declare const createStripeCheckoutSessionBodyOptionsOneCustomTextOneSubmitMessageMax
|
|
4159
|
-
export declare const createStripeCheckoutSessionBodyOptionsOneCustomTextOneTermsOfServiceAcceptanceMessageMax
|
|
4246
|
+
export declare const createStripeCheckoutSessionBodyOptionsOneCustomTextOneAfterSubmitMessageMax = 1200;
|
|
4247
|
+
export declare const createStripeCheckoutSessionBodyOptionsOneCustomTextOneShippingAddressMessageMax = 1200;
|
|
4248
|
+
export declare const createStripeCheckoutSessionBodyOptionsOneCustomTextOneSubmitMessageMax = 1200;
|
|
4249
|
+
export declare const createStripeCheckoutSessionBodyOptionsOneCustomTextOneTermsOfServiceAcceptanceMessageMax = 1200;
|
|
4160
4250
|
export declare const CreateStripeCheckoutSessionBody: zod.ZodObject<{
|
|
4161
4251
|
appId: zod.ZodOptional<zod.z.ZodCoercedString<unknown>>;
|
|
4162
4252
|
customer: zod.ZodUnion<readonly [zod.ZodObject<{
|
|
@@ -4324,21 +4414,21 @@ Once an entitlement is created you cannot modify it, only delete it.
|
|
|
4324
4414
|
export declare const CreateEntitlementParams: zod.ZodObject<{
|
|
4325
4415
|
subjectIdOrKey: zod.z.ZodCoercedString<unknown>;
|
|
4326
4416
|
}, zod.z.core.$strip>;
|
|
4327
|
-
export declare const createEntitlementBodyOneFeatureKeyMax
|
|
4417
|
+
export declare const createEntitlementBodyOneFeatureKeyMax = 64;
|
|
4328
4418
|
export declare const createEntitlementBodyOneFeatureKeyRegExp: RegExp;
|
|
4329
4419
|
export declare const createEntitlementBodyOneFeatureIdRegExp: RegExp;
|
|
4330
|
-
export declare const createEntitlementBodyOneIsSoftLimitDefault
|
|
4331
|
-
export declare const createEntitlementBodyOneIsUnlimitedDefault
|
|
4420
|
+
export declare const createEntitlementBodyOneIsSoftLimitDefault = false;
|
|
4421
|
+
export declare const createEntitlementBodyOneIsUnlimitedDefault = false;
|
|
4332
4422
|
export declare const createEntitlementBodyOneUsagePeriodOneIntervalOneOneRegExp: RegExp;
|
|
4333
|
-
export declare const createEntitlementBodyOneIssueAfterResetMin
|
|
4334
|
-
export declare const createEntitlementBodyOneIssueAfterResetPriorityDefault
|
|
4335
|
-
export declare const createEntitlementBodyOneIssueAfterResetPriorityMax
|
|
4336
|
-
export declare const createEntitlementBodyOnePreserveOverageAtResetDefault
|
|
4337
|
-
export declare const createEntitlementBodyTwoFeatureKeyMax
|
|
4423
|
+
export declare const createEntitlementBodyOneIssueAfterResetMin = 0;
|
|
4424
|
+
export declare const createEntitlementBodyOneIssueAfterResetPriorityDefault = 1;
|
|
4425
|
+
export declare const createEntitlementBodyOneIssueAfterResetPriorityMax = 255;
|
|
4426
|
+
export declare const createEntitlementBodyOnePreserveOverageAtResetDefault = false;
|
|
4427
|
+
export declare const createEntitlementBodyTwoFeatureKeyMax = 64;
|
|
4338
4428
|
export declare const createEntitlementBodyTwoFeatureKeyRegExp: RegExp;
|
|
4339
4429
|
export declare const createEntitlementBodyTwoFeatureIdRegExp: RegExp;
|
|
4340
4430
|
export declare const createEntitlementBodyTwoUsagePeriodOneIntervalOneOneRegExp: RegExp;
|
|
4341
|
-
export declare const createEntitlementBodyThreeFeatureKeyMax
|
|
4431
|
+
export declare const createEntitlementBodyThreeFeatureKeyMax = 64;
|
|
4342
4432
|
export declare const createEntitlementBodyThreeFeatureKeyRegExp: RegExp;
|
|
4343
4433
|
export declare const createEntitlementBodyThreeFeatureIdRegExp: RegExp;
|
|
4344
4434
|
export declare const createEntitlementBodyThreeUsagePeriodOneIntervalOneOneRegExp: RegExp;
|
|
@@ -4411,7 +4501,7 @@ export declare const CreateEntitlementBody: zod.ZodUnion<readonly [zod.ZodObject
|
|
|
4411
4501
|
export declare const ListSubjectEntitlementsParams: zod.ZodObject<{
|
|
4412
4502
|
subjectIdOrKey: zod.z.ZodCoercedString<unknown>;
|
|
4413
4503
|
}, zod.z.core.$strip>;
|
|
4414
|
-
export declare const listSubjectEntitlementsQueryIncludeDeletedDefault
|
|
4504
|
+
export declare const listSubjectEntitlementsQueryIncludeDeletedDefault = false;
|
|
4415
4505
|
export declare const ListSubjectEntitlementsQueryParams: zod.ZodObject<{
|
|
4416
4506
|
includeDeleted: zod.ZodDefault<zod.z.ZodCoercedBoolean<unknown>>;
|
|
4417
4507
|
}, zod.z.core.$strip>;
|
|
@@ -4426,10 +4516,11 @@ export declare const ListEntitlementGrantsParams: zod.ZodObject<{
|
|
|
4426
4516
|
entitlementIdOrFeatureKey: zod.z.ZodCoercedString<unknown>;
|
|
4427
4517
|
subjectIdOrKey: zod.z.ZodCoercedString<unknown>;
|
|
4428
4518
|
}, zod.z.core.$strip>;
|
|
4429
|
-
export declare const listEntitlementGrantsQueryIncludeDeletedDefault
|
|
4519
|
+
export declare const listEntitlementGrantsQueryIncludeDeletedDefault = false;
|
|
4520
|
+
export declare const listEntitlementGrantsQueryOrderByDefault = "updatedAt";
|
|
4430
4521
|
export declare const ListEntitlementGrantsQueryParams: zod.ZodObject<{
|
|
4431
4522
|
includeDeleted: zod.ZodDefault<zod.z.ZodCoercedBoolean<unknown>>;
|
|
4432
|
-
orderBy: zod.
|
|
4523
|
+
orderBy: zod.ZodDefault<zod.ZodEnum<{
|
|
4433
4524
|
id: "id";
|
|
4434
4525
|
createdAt: "createdAt";
|
|
4435
4526
|
updatedAt: "updatedAt";
|
|
@@ -4456,11 +4547,11 @@ export declare const CreateGrantParams: zod.ZodObject<{
|
|
|
4456
4547
|
entitlementIdOrFeatureKey: zod.z.ZodCoercedString<unknown>;
|
|
4457
4548
|
subjectIdOrKey: zod.z.ZodCoercedString<unknown>;
|
|
4458
4549
|
}, zod.z.core.$strip>;
|
|
4459
|
-
export declare const createGrantBodyAmountMin
|
|
4460
|
-
export declare const createGrantBodyPriorityMax
|
|
4461
|
-
export declare const createGrantBodyExpirationOneCountMax
|
|
4462
|
-
export declare const createGrantBodyMaxRolloverAmountDefault
|
|
4463
|
-
export declare const createGrantBodyMinRolloverAmountDefault
|
|
4550
|
+
export declare const createGrantBodyAmountMin = 0;
|
|
4551
|
+
export declare const createGrantBodyPriorityMax = 255;
|
|
4552
|
+
export declare const createGrantBodyExpirationOneCountMax = 1000;
|
|
4553
|
+
export declare const createGrantBodyMaxRolloverAmountDefault = 0;
|
|
4554
|
+
export declare const createGrantBodyMinRolloverAmountDefault = 0;
|
|
4464
4555
|
export declare const createGrantBodyRecurrenceOneIntervalOneOneRegExp: RegExp;
|
|
4465
4556
|
export declare const CreateGrantBody: zod.ZodObject<{
|
|
4466
4557
|
amount: zod.z.ZodCoercedNumber<unknown>;
|
|
@@ -4502,21 +4593,21 @@ export declare const OverrideEntitlementParams: zod.ZodObject<{
|
|
|
4502
4593
|
entitlementIdOrFeatureKey: zod.z.ZodCoercedString<unknown>;
|
|
4503
4594
|
subjectIdOrKey: zod.z.ZodCoercedString<unknown>;
|
|
4504
4595
|
}, zod.z.core.$strip>;
|
|
4505
|
-
export declare const overrideEntitlementBodyOneFeatureKeyMax
|
|
4596
|
+
export declare const overrideEntitlementBodyOneFeatureKeyMax = 64;
|
|
4506
4597
|
export declare const overrideEntitlementBodyOneFeatureKeyRegExp: RegExp;
|
|
4507
4598
|
export declare const overrideEntitlementBodyOneFeatureIdRegExp: RegExp;
|
|
4508
|
-
export declare const overrideEntitlementBodyOneIsSoftLimitDefault
|
|
4509
|
-
export declare const overrideEntitlementBodyOneIsUnlimitedDefault
|
|
4599
|
+
export declare const overrideEntitlementBodyOneIsSoftLimitDefault = false;
|
|
4600
|
+
export declare const overrideEntitlementBodyOneIsUnlimitedDefault = false;
|
|
4510
4601
|
export declare const overrideEntitlementBodyOneUsagePeriodOneIntervalOneOneRegExp: RegExp;
|
|
4511
|
-
export declare const overrideEntitlementBodyOneIssueAfterResetMin
|
|
4512
|
-
export declare const overrideEntitlementBodyOneIssueAfterResetPriorityDefault
|
|
4513
|
-
export declare const overrideEntitlementBodyOneIssueAfterResetPriorityMax
|
|
4514
|
-
export declare const overrideEntitlementBodyOnePreserveOverageAtResetDefault
|
|
4515
|
-
export declare const overrideEntitlementBodyTwoFeatureKeyMax
|
|
4602
|
+
export declare const overrideEntitlementBodyOneIssueAfterResetMin = 0;
|
|
4603
|
+
export declare const overrideEntitlementBodyOneIssueAfterResetPriorityDefault = 1;
|
|
4604
|
+
export declare const overrideEntitlementBodyOneIssueAfterResetPriorityMax = 255;
|
|
4605
|
+
export declare const overrideEntitlementBodyOnePreserveOverageAtResetDefault = false;
|
|
4606
|
+
export declare const overrideEntitlementBodyTwoFeatureKeyMax = 64;
|
|
4516
4607
|
export declare const overrideEntitlementBodyTwoFeatureKeyRegExp: RegExp;
|
|
4517
4608
|
export declare const overrideEntitlementBodyTwoFeatureIdRegExp: RegExp;
|
|
4518
4609
|
export declare const overrideEntitlementBodyTwoUsagePeriodOneIntervalOneOneRegExp: RegExp;
|
|
4519
|
-
export declare const overrideEntitlementBodyThreeFeatureKeyMax
|
|
4610
|
+
export declare const overrideEntitlementBodyThreeFeatureKeyMax = 64;
|
|
4520
4611
|
export declare const overrideEntitlementBodyThreeFeatureKeyRegExp: RegExp;
|
|
4521
4612
|
export declare const overrideEntitlementBodyThreeFeatureIdRegExp: RegExp;
|
|
4522
4613
|
export declare const overrideEntitlementBodyThreeUsagePeriodOneIntervalOneOneRegExp: RegExp;
|
|
@@ -4633,7 +4724,7 @@ export declare const GetEntitlementHistoryParams: zod.ZodObject<{
|
|
|
4633
4724
|
entitlementId: zod.z.ZodCoercedString<unknown>;
|
|
4634
4725
|
subjectIdOrKey: zod.z.ZodCoercedString<unknown>;
|
|
4635
4726
|
}, zod.z.core.$strip>;
|
|
4636
|
-
export declare const getEntitlementHistoryQueryWindowTimeZoneDefault
|
|
4727
|
+
export declare const getEntitlementHistoryQueryWindowTimeZoneDefault = "UTC";
|
|
4637
4728
|
export declare const GetEntitlementHistoryQueryParams: zod.ZodObject<{
|
|
4638
4729
|
from: zod.ZodOptional<zod.z.ZodCoercedDate<unknown>>;
|
|
4639
4730
|
to: zod.ZodOptional<zod.z.ZodCoercedDate<unknown>>;
|
|
@@ -4666,56 +4757,59 @@ export declare const ResetEntitlementUsageBody: zod.ZodObject<{
|
|
|
4666
4757
|
/**
|
|
4667
4758
|
* @summary Create subscription
|
|
4668
4759
|
*/
|
|
4669
|
-
export declare const createSubscriptionBodyOnePlanOneKeyMax
|
|
4760
|
+
export declare const createSubscriptionBodyOnePlanOneKeyMax = 64;
|
|
4670
4761
|
export declare const createSubscriptionBodyOnePlanOneKeyRegExp: RegExp;
|
|
4671
|
-
export declare const createSubscriptionBodyOneTimingDefault
|
|
4762
|
+
export declare const createSubscriptionBodyOneTimingDefault = "immediate";
|
|
4672
4763
|
export declare const createSubscriptionBodyOneCustomerIdRegExp: RegExp;
|
|
4673
|
-
export declare const createSubscriptionBodyOneCustomerKeyMax
|
|
4674
|
-
export declare const createSubscriptionBodyTwoCustomPlanOneOneNameMax
|
|
4675
|
-
export declare const createSubscriptionBodyTwoCustomPlanOneOneDescriptionMax
|
|
4676
|
-
export declare const createSubscriptionBodyTwoCustomPlanOneOneCurrencyOneMin
|
|
4677
|
-
export declare const createSubscriptionBodyTwoCustomPlanOneOneCurrencyOneMax
|
|
4764
|
+
export declare const createSubscriptionBodyOneCustomerKeyMax = 256;
|
|
4765
|
+
export declare const createSubscriptionBodyTwoCustomPlanOneOneNameMax = 256;
|
|
4766
|
+
export declare const createSubscriptionBodyTwoCustomPlanOneOneDescriptionMax = 1024;
|
|
4767
|
+
export declare const createSubscriptionBodyTwoCustomPlanOneOneCurrencyOneMin = 3;
|
|
4768
|
+
export declare const createSubscriptionBodyTwoCustomPlanOneOneCurrencyOneMax = 3;
|
|
4678
4769
|
export declare const createSubscriptionBodyTwoCustomPlanOneOneCurrencyOneRegExp: RegExp;
|
|
4679
|
-
export declare const createSubscriptionBodyTwoCustomPlanOneOneCurrencyDefault
|
|
4680
|
-
export declare const createSubscriptionBodyTwoCustomPlanOneOneProRatingConfigOneEnabledDefault
|
|
4681
|
-
export declare const createSubscriptionBodyTwoCustomPlanOneOneProRatingConfigOneModeDefault
|
|
4770
|
+
export declare const createSubscriptionBodyTwoCustomPlanOneOneCurrencyDefault = "USD";
|
|
4771
|
+
export declare const createSubscriptionBodyTwoCustomPlanOneOneProRatingConfigOneEnabledDefault = true;
|
|
4772
|
+
export declare const createSubscriptionBodyTwoCustomPlanOneOneProRatingConfigOneModeDefault = "prorate_prices";
|
|
4682
4773
|
export declare const createSubscriptionBodyTwoCustomPlanOneOneProRatingConfigDefault: {
|
|
4683
4774
|
readonly enabled: true;
|
|
4684
4775
|
readonly mode: "prorate_prices";
|
|
4685
4776
|
};
|
|
4686
|
-
export declare const
|
|
4777
|
+
export declare const createSubscriptionBodyTwoCustomPlanOneOneSettlementModeDefault = "credit_then_invoice";
|
|
4778
|
+
export declare const createSubscriptionBodyTwoCustomPlanOneOnePhasesItemKeyMax = 64;
|
|
4687
4779
|
export declare const createSubscriptionBodyTwoCustomPlanOneOnePhasesItemKeyRegExp: RegExp;
|
|
4688
|
-
export declare const createSubscriptionBodyTwoCustomPlanOneOnePhasesItemNameMax
|
|
4689
|
-
export declare const createSubscriptionBodyTwoCustomPlanOneOnePhasesItemDescriptionMax
|
|
4690
|
-
export declare const createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemOneKeyMax
|
|
4780
|
+
export declare const createSubscriptionBodyTwoCustomPlanOneOnePhasesItemNameMax = 256;
|
|
4781
|
+
export declare const createSubscriptionBodyTwoCustomPlanOneOnePhasesItemDescriptionMax = 1024;
|
|
4782
|
+
export declare const createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemOneKeyMax = 64;
|
|
4691
4783
|
export declare const createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemOneKeyRegExp: RegExp;
|
|
4692
|
-
export declare const createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemOneNameMax
|
|
4693
|
-
export declare const createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemOneDescriptionMax
|
|
4694
|
-
export declare const createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemOneFeatureKeyMax
|
|
4784
|
+
export declare const createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemOneNameMax = 256;
|
|
4785
|
+
export declare const createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemOneDescriptionMax = 1024;
|
|
4786
|
+
export declare const createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemOneFeatureKeyMax = 64;
|
|
4695
4787
|
export declare const createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemOneFeatureKeyRegExp: RegExp;
|
|
4696
|
-
export declare const createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemOneEntitlementTemplateOneOneIsSoftLimitDefault
|
|
4697
|
-
export declare const createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemOneEntitlementTemplateOneOneIssueAfterResetMin
|
|
4698
|
-
export declare const createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemOneEntitlementTemplateOneOneIssueAfterResetPriorityDefault
|
|
4699
|
-
export declare const createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemOneEntitlementTemplateOneOneIssueAfterResetPriorityMax
|
|
4700
|
-
export declare const createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemOneEntitlementTemplateOneOnePreserveOverageAtResetDefault
|
|
4788
|
+
export declare const createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemOneEntitlementTemplateOneOneIsSoftLimitDefault = false;
|
|
4789
|
+
export declare const createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemOneEntitlementTemplateOneOneIssueAfterResetMin = 0;
|
|
4790
|
+
export declare const createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemOneEntitlementTemplateOneOneIssueAfterResetPriorityDefault = 1;
|
|
4791
|
+
export declare const createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemOneEntitlementTemplateOneOneIssueAfterResetPriorityMax = 255;
|
|
4792
|
+
export declare const createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemOneEntitlementTemplateOneOnePreserveOverageAtResetDefault = false;
|
|
4701
4793
|
export declare const createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemOneTaxConfigOneStripeOneCodeRegExp: RegExp;
|
|
4794
|
+
export declare const createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemOneTaxConfigOneTaxCodeIdRegExp: RegExp;
|
|
4702
4795
|
export declare const createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemOnePriceOneAmountOneRegExp: RegExp;
|
|
4703
|
-
export declare const createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemOnePriceOnePaymentTermDefault
|
|
4796
|
+
export declare const createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemOnePriceOnePaymentTermDefault = "in_advance";
|
|
4704
4797
|
export declare const createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemOneDiscountsOneUsageOneQuantityOneRegExp: RegExp;
|
|
4705
|
-
export declare const createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoKeyMax
|
|
4798
|
+
export declare const createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoKeyMax = 64;
|
|
4706
4799
|
export declare const createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoKeyRegExp: RegExp;
|
|
4707
|
-
export declare const createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoNameMax
|
|
4708
|
-
export declare const createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoDescriptionMax
|
|
4709
|
-
export declare const createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoFeatureKeyMax
|
|
4800
|
+
export declare const createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoNameMax = 256;
|
|
4801
|
+
export declare const createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoDescriptionMax = 1024;
|
|
4802
|
+
export declare const createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoFeatureKeyMax = 64;
|
|
4710
4803
|
export declare const createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoFeatureKeyRegExp: RegExp;
|
|
4711
|
-
export declare const createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoEntitlementTemplateOneOneIsSoftLimitDefault
|
|
4712
|
-
export declare const createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoEntitlementTemplateOneOneIssueAfterResetMin
|
|
4713
|
-
export declare const createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoEntitlementTemplateOneOneIssueAfterResetPriorityDefault
|
|
4714
|
-
export declare const createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoEntitlementTemplateOneOneIssueAfterResetPriorityMax
|
|
4715
|
-
export declare const createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoEntitlementTemplateOneOnePreserveOverageAtResetDefault
|
|
4804
|
+
export declare const createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoEntitlementTemplateOneOneIsSoftLimitDefault = false;
|
|
4805
|
+
export declare const createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoEntitlementTemplateOneOneIssueAfterResetMin = 0;
|
|
4806
|
+
export declare const createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoEntitlementTemplateOneOneIssueAfterResetPriorityDefault = 1;
|
|
4807
|
+
export declare const createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoEntitlementTemplateOneOneIssueAfterResetPriorityMax = 255;
|
|
4808
|
+
export declare const createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoEntitlementTemplateOneOnePreserveOverageAtResetDefault = false;
|
|
4716
4809
|
export declare const createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoTaxConfigOneStripeOneCodeRegExp: RegExp;
|
|
4810
|
+
export declare const createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoTaxConfigOneTaxCodeIdRegExp: RegExp;
|
|
4717
4811
|
export declare const createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoPriceOneOneAmountOneRegExp: RegExp;
|
|
4718
|
-
export declare const createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoPriceOneOnePaymentTermDefault
|
|
4812
|
+
export declare const createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoPriceOneOnePaymentTermDefault = "in_advance";
|
|
4719
4813
|
export declare const createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoPriceOneTwoAmountOneRegExp: RegExp;
|
|
4720
4814
|
export declare const createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoPriceOneTwoMinimumAmountOneRegExp: RegExp;
|
|
4721
4815
|
export declare const createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoPriceOneTwoMaximumAmountOneRegExp: RegExp;
|
|
@@ -4725,7 +4819,7 @@ export declare const createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCard
|
|
|
4725
4819
|
export declare const createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoPriceOneThreeMinimumAmountOneRegExp: RegExp;
|
|
4726
4820
|
export declare const createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoPriceOneThreeMaximumAmountOneRegExp: RegExp;
|
|
4727
4821
|
export declare const createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoPriceOneFourMultiplierOneRegExp: RegExp;
|
|
4728
|
-
export declare const createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoPriceOneFourMultiplierDefault
|
|
4822
|
+
export declare const createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoPriceOneFourMultiplierDefault = "1";
|
|
4729
4823
|
export declare const createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoPriceOneFourMinimumAmountOneRegExp: RegExp;
|
|
4730
4824
|
export declare const createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoPriceOneFourMaximumAmountOneRegExp: RegExp;
|
|
4731
4825
|
export declare const createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoPriceOneFiveAmountOneRegExp: RegExp;
|
|
@@ -4733,9 +4827,9 @@ export declare const createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCard
|
|
|
4733
4827
|
export declare const createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoPriceOneFiveMinimumAmountOneRegExp: RegExp;
|
|
4734
4828
|
export declare const createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoPriceOneFiveMaximumAmountOneRegExp: RegExp;
|
|
4735
4829
|
export declare const createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoDiscountsOneUsageOneQuantityOneRegExp: RegExp;
|
|
4736
|
-
export declare const createSubscriptionBodyTwoTimingDefault
|
|
4830
|
+
export declare const createSubscriptionBodyTwoTimingDefault = "immediate";
|
|
4737
4831
|
export declare const createSubscriptionBodyTwoCustomerIdRegExp: RegExp;
|
|
4738
|
-
export declare const createSubscriptionBodyTwoCustomerKeyMax
|
|
4832
|
+
export declare const createSubscriptionBodyTwoCustomerKeyMax = 256;
|
|
4739
4833
|
export declare const CreateSubscriptionBody: zod.ZodUnion<readonly [zod.ZodObject<{
|
|
4740
4834
|
alignment: zod.ZodOptional<zod.ZodObject<{
|
|
4741
4835
|
billablesMustAlign: zod.ZodOptional<zod.z.ZodCoercedBoolean<unknown>>;
|
|
@@ -4750,6 +4844,10 @@ export declare const CreateSubscriptionBody: zod.ZodUnion<readonly [zod.ZodObjec
|
|
|
4750
4844
|
key: zod.z.ZodCoercedString<unknown>;
|
|
4751
4845
|
version: zod.ZodOptional<zod.z.ZodCoercedNumber<unknown>>;
|
|
4752
4846
|
}, zod.z.core.$strip>;
|
|
4847
|
+
settlementMode: zod.ZodOptional<zod.ZodEnum<{
|
|
4848
|
+
credit_then_invoice: "credit_then_invoice";
|
|
4849
|
+
credit_only: "credit_only";
|
|
4850
|
+
}>>;
|
|
4753
4851
|
startingPhase: zod.ZodOptional<zod.z.ZodCoercedString<unknown>>;
|
|
4754
4852
|
timing: zod.ZodDefault<zod.ZodUnion<readonly [zod.ZodEnum<{
|
|
4755
4853
|
immediate: "immediate";
|
|
@@ -4764,7 +4862,7 @@ export declare const CreateSubscriptionBody: zod.ZodUnion<readonly [zod.ZodObjec
|
|
|
4764
4862
|
billablesMustAlign: zod.ZodOptional<zod.z.ZodCoercedBoolean<unknown>>;
|
|
4765
4863
|
}, zod.z.core.$strip>>;
|
|
4766
4864
|
billingCadence: zod.z.ZodCoercedString<unknown>;
|
|
4767
|
-
currency: zod.z.ZodCoercedString<unknown
|
|
4865
|
+
currency: zod.ZodDefault<zod.z.ZodCoercedString<unknown>>;
|
|
4768
4866
|
description: zod.ZodOptional<zod.z.ZodCoercedString<unknown>>;
|
|
4769
4867
|
metadata: zod.ZodOptional<zod.ZodNullable<zod.ZodRecord<zod.ZodString, zod.z.ZodCoercedString<unknown>>>>;
|
|
4770
4868
|
name: zod.z.ZodCoercedString<unknown>;
|
|
@@ -4832,6 +4930,7 @@ export declare const CreateSubscriptionBody: zod.ZodUnion<readonly [zod.ZodObjec
|
|
|
4832
4930
|
stripe: zod.ZodOptional<zod.ZodObject<{
|
|
4833
4931
|
code: zod.z.ZodCoercedString<unknown>;
|
|
4834
4932
|
}, zod.z.core.$strip>>;
|
|
4933
|
+
taxCodeId: zod.ZodOptional<zod.z.ZodCoercedString<unknown>>;
|
|
4835
4934
|
}, zod.z.core.$strip>>;
|
|
4836
4935
|
type: zod.ZodEnum<{
|
|
4837
4936
|
flat_fee: "flat_fee";
|
|
@@ -4941,6 +5040,7 @@ export declare const CreateSubscriptionBody: zod.ZodUnion<readonly [zod.ZodObjec
|
|
|
4941
5040
|
stripe: zod.ZodOptional<zod.ZodObject<{
|
|
4942
5041
|
code: zod.z.ZodCoercedString<unknown>;
|
|
4943
5042
|
}, zod.z.core.$strip>>;
|
|
5043
|
+
taxCodeId: zod.ZodOptional<zod.z.ZodCoercedString<unknown>>;
|
|
4944
5044
|
}, zod.z.core.$strip>>;
|
|
4945
5045
|
type: zod.ZodEnum<{
|
|
4946
5046
|
usage_based: "usage_based";
|
|
@@ -4948,11 +5048,15 @@ export declare const CreateSubscriptionBody: zod.ZodUnion<readonly [zod.ZodObjec
|
|
|
4948
5048
|
}, zod.z.core.$strip>]>>;
|
|
4949
5049
|
}, zod.z.core.$strip>>;
|
|
4950
5050
|
proRatingConfig: zod.ZodDefault<zod.ZodObject<{
|
|
4951
|
-
enabled: zod.z.ZodCoercedBoolean<unknown
|
|
4952
|
-
mode: zod.ZodEnum<{
|
|
5051
|
+
enabled: zod.ZodDefault<zod.z.ZodCoercedBoolean<unknown>>;
|
|
5052
|
+
mode: zod.ZodDefault<zod.ZodEnum<{
|
|
4953
5053
|
prorate_prices: "prorate_prices";
|
|
4954
|
-
}
|
|
5054
|
+
}>>;
|
|
4955
5055
|
}, zod.z.core.$strip>>;
|
|
5056
|
+
settlementMode: zod.ZodDefault<zod.ZodEnum<{
|
|
5057
|
+
credit_then_invoice: "credit_then_invoice";
|
|
5058
|
+
credit_only: "credit_only";
|
|
5059
|
+
}>>;
|
|
4956
5060
|
}, zod.z.core.$strip>;
|
|
4957
5061
|
timing: zod.ZodDefault<zod.ZodUnion<readonly [zod.ZodEnum<{
|
|
4958
5062
|
immediate: "immediate";
|
|
@@ -4978,35 +5082,37 @@ export declare const editSubscriptionPathSubscriptionIdRegExp: RegExp;
|
|
|
4978
5082
|
export declare const EditSubscriptionParams: zod.ZodObject<{
|
|
4979
5083
|
subscriptionId: zod.z.ZodCoercedString<unknown>;
|
|
4980
5084
|
}, zod.z.core.$strip>;
|
|
4981
|
-
export declare const editSubscriptionBodyCustomizationsItemOneRateCardOneKeyMax
|
|
5085
|
+
export declare const editSubscriptionBodyCustomizationsItemOneRateCardOneKeyMax = 64;
|
|
4982
5086
|
export declare const editSubscriptionBodyCustomizationsItemOneRateCardOneKeyRegExp: RegExp;
|
|
4983
|
-
export declare const editSubscriptionBodyCustomizationsItemOneRateCardOneNameMax
|
|
4984
|
-
export declare const editSubscriptionBodyCustomizationsItemOneRateCardOneDescriptionMax
|
|
4985
|
-
export declare const editSubscriptionBodyCustomizationsItemOneRateCardOneFeatureKeyMax
|
|
5087
|
+
export declare const editSubscriptionBodyCustomizationsItemOneRateCardOneNameMax = 256;
|
|
5088
|
+
export declare const editSubscriptionBodyCustomizationsItemOneRateCardOneDescriptionMax = 1024;
|
|
5089
|
+
export declare const editSubscriptionBodyCustomizationsItemOneRateCardOneFeatureKeyMax = 64;
|
|
4986
5090
|
export declare const editSubscriptionBodyCustomizationsItemOneRateCardOneFeatureKeyRegExp: RegExp;
|
|
4987
|
-
export declare const editSubscriptionBodyCustomizationsItemOneRateCardOneEntitlementTemplateOneOneIsSoftLimitDefault
|
|
4988
|
-
export declare const editSubscriptionBodyCustomizationsItemOneRateCardOneEntitlementTemplateOneOneIssueAfterResetMin
|
|
4989
|
-
export declare const editSubscriptionBodyCustomizationsItemOneRateCardOneEntitlementTemplateOneOneIssueAfterResetPriorityDefault
|
|
4990
|
-
export declare const editSubscriptionBodyCustomizationsItemOneRateCardOneEntitlementTemplateOneOneIssueAfterResetPriorityMax
|
|
4991
|
-
export declare const editSubscriptionBodyCustomizationsItemOneRateCardOneEntitlementTemplateOneOnePreserveOverageAtResetDefault
|
|
5091
|
+
export declare const editSubscriptionBodyCustomizationsItemOneRateCardOneEntitlementTemplateOneOneIsSoftLimitDefault = false;
|
|
5092
|
+
export declare const editSubscriptionBodyCustomizationsItemOneRateCardOneEntitlementTemplateOneOneIssueAfterResetMin = 0;
|
|
5093
|
+
export declare const editSubscriptionBodyCustomizationsItemOneRateCardOneEntitlementTemplateOneOneIssueAfterResetPriorityDefault = 1;
|
|
5094
|
+
export declare const editSubscriptionBodyCustomizationsItemOneRateCardOneEntitlementTemplateOneOneIssueAfterResetPriorityMax = 255;
|
|
5095
|
+
export declare const editSubscriptionBodyCustomizationsItemOneRateCardOneEntitlementTemplateOneOnePreserveOverageAtResetDefault = false;
|
|
4992
5096
|
export declare const editSubscriptionBodyCustomizationsItemOneRateCardOneTaxConfigOneStripeOneCodeRegExp: RegExp;
|
|
5097
|
+
export declare const editSubscriptionBodyCustomizationsItemOneRateCardOneTaxConfigOneTaxCodeIdRegExp: RegExp;
|
|
4993
5098
|
export declare const editSubscriptionBodyCustomizationsItemOneRateCardOnePriceOneAmountOneRegExp: RegExp;
|
|
4994
|
-
export declare const editSubscriptionBodyCustomizationsItemOneRateCardOnePriceOnePaymentTermDefault
|
|
5099
|
+
export declare const editSubscriptionBodyCustomizationsItemOneRateCardOnePriceOnePaymentTermDefault = "in_advance";
|
|
4995
5100
|
export declare const editSubscriptionBodyCustomizationsItemOneRateCardOneDiscountsOneUsageOneQuantityOneRegExp: RegExp;
|
|
4996
|
-
export declare const editSubscriptionBodyCustomizationsItemOneRateCardTwoKeyMax
|
|
5101
|
+
export declare const editSubscriptionBodyCustomizationsItemOneRateCardTwoKeyMax = 64;
|
|
4997
5102
|
export declare const editSubscriptionBodyCustomizationsItemOneRateCardTwoKeyRegExp: RegExp;
|
|
4998
|
-
export declare const editSubscriptionBodyCustomizationsItemOneRateCardTwoNameMax
|
|
4999
|
-
export declare const editSubscriptionBodyCustomizationsItemOneRateCardTwoDescriptionMax
|
|
5000
|
-
export declare const editSubscriptionBodyCustomizationsItemOneRateCardTwoFeatureKeyMax
|
|
5103
|
+
export declare const editSubscriptionBodyCustomizationsItemOneRateCardTwoNameMax = 256;
|
|
5104
|
+
export declare const editSubscriptionBodyCustomizationsItemOneRateCardTwoDescriptionMax = 1024;
|
|
5105
|
+
export declare const editSubscriptionBodyCustomizationsItemOneRateCardTwoFeatureKeyMax = 64;
|
|
5001
5106
|
export declare const editSubscriptionBodyCustomizationsItemOneRateCardTwoFeatureKeyRegExp: RegExp;
|
|
5002
|
-
export declare const editSubscriptionBodyCustomizationsItemOneRateCardTwoEntitlementTemplateOneOneIsSoftLimitDefault
|
|
5003
|
-
export declare const editSubscriptionBodyCustomizationsItemOneRateCardTwoEntitlementTemplateOneOneIssueAfterResetMin
|
|
5004
|
-
export declare const editSubscriptionBodyCustomizationsItemOneRateCardTwoEntitlementTemplateOneOneIssueAfterResetPriorityDefault
|
|
5005
|
-
export declare const editSubscriptionBodyCustomizationsItemOneRateCardTwoEntitlementTemplateOneOneIssueAfterResetPriorityMax
|
|
5006
|
-
export declare const editSubscriptionBodyCustomizationsItemOneRateCardTwoEntitlementTemplateOneOnePreserveOverageAtResetDefault
|
|
5107
|
+
export declare const editSubscriptionBodyCustomizationsItemOneRateCardTwoEntitlementTemplateOneOneIsSoftLimitDefault = false;
|
|
5108
|
+
export declare const editSubscriptionBodyCustomizationsItemOneRateCardTwoEntitlementTemplateOneOneIssueAfterResetMin = 0;
|
|
5109
|
+
export declare const editSubscriptionBodyCustomizationsItemOneRateCardTwoEntitlementTemplateOneOneIssueAfterResetPriorityDefault = 1;
|
|
5110
|
+
export declare const editSubscriptionBodyCustomizationsItemOneRateCardTwoEntitlementTemplateOneOneIssueAfterResetPriorityMax = 255;
|
|
5111
|
+
export declare const editSubscriptionBodyCustomizationsItemOneRateCardTwoEntitlementTemplateOneOnePreserveOverageAtResetDefault = false;
|
|
5007
5112
|
export declare const editSubscriptionBodyCustomizationsItemOneRateCardTwoTaxConfigOneStripeOneCodeRegExp: RegExp;
|
|
5113
|
+
export declare const editSubscriptionBodyCustomizationsItemOneRateCardTwoTaxConfigOneTaxCodeIdRegExp: RegExp;
|
|
5008
5114
|
export declare const editSubscriptionBodyCustomizationsItemOneRateCardTwoPriceOneOneAmountOneRegExp: RegExp;
|
|
5009
|
-
export declare const editSubscriptionBodyCustomizationsItemOneRateCardTwoPriceOneOnePaymentTermDefault
|
|
5115
|
+
export declare const editSubscriptionBodyCustomizationsItemOneRateCardTwoPriceOneOnePaymentTermDefault = "in_advance";
|
|
5010
5116
|
export declare const editSubscriptionBodyCustomizationsItemOneRateCardTwoPriceOneTwoAmountOneRegExp: RegExp;
|
|
5011
5117
|
export declare const editSubscriptionBodyCustomizationsItemOneRateCardTwoPriceOneTwoMinimumAmountOneRegExp: RegExp;
|
|
5012
5118
|
export declare const editSubscriptionBodyCustomizationsItemOneRateCardTwoPriceOneTwoMaximumAmountOneRegExp: RegExp;
|
|
@@ -5016,7 +5122,7 @@ export declare const editSubscriptionBodyCustomizationsItemOneRateCardTwoPriceOn
|
|
|
5016
5122
|
export declare const editSubscriptionBodyCustomizationsItemOneRateCardTwoPriceOneThreeMinimumAmountOneRegExp: RegExp;
|
|
5017
5123
|
export declare const editSubscriptionBodyCustomizationsItemOneRateCardTwoPriceOneThreeMaximumAmountOneRegExp: RegExp;
|
|
5018
5124
|
export declare const editSubscriptionBodyCustomizationsItemOneRateCardTwoPriceOneFourMultiplierOneRegExp: RegExp;
|
|
5019
|
-
export declare const editSubscriptionBodyCustomizationsItemOneRateCardTwoPriceOneFourMultiplierDefault
|
|
5125
|
+
export declare const editSubscriptionBodyCustomizationsItemOneRateCardTwoPriceOneFourMultiplierDefault = "1";
|
|
5020
5126
|
export declare const editSubscriptionBodyCustomizationsItemOneRateCardTwoPriceOneFourMinimumAmountOneRegExp: RegExp;
|
|
5021
5127
|
export declare const editSubscriptionBodyCustomizationsItemOneRateCardTwoPriceOneFourMaximumAmountOneRegExp: RegExp;
|
|
5022
5128
|
export declare const editSubscriptionBodyCustomizationsItemOneRateCardTwoPriceOneFiveAmountOneRegExp: RegExp;
|
|
@@ -5025,9 +5131,9 @@ export declare const editSubscriptionBodyCustomizationsItemOneRateCardTwoPriceOn
|
|
|
5025
5131
|
export declare const editSubscriptionBodyCustomizationsItemOneRateCardTwoPriceOneFiveMaximumAmountOneRegExp: RegExp;
|
|
5026
5132
|
export declare const editSubscriptionBodyCustomizationsItemOneRateCardTwoDiscountsOneUsageOneQuantityOneRegExp: RegExp;
|
|
5027
5133
|
export declare const editSubscriptionBodyCustomizationsItemThreePhaseDiscountsOneUsageOneQuantityOneRegExp: RegExp;
|
|
5028
|
-
export declare const editSubscriptionBodyCustomizationsItemThreePhaseKeyMax
|
|
5134
|
+
export declare const editSubscriptionBodyCustomizationsItemThreePhaseKeyMax = 64;
|
|
5029
5135
|
export declare const editSubscriptionBodyCustomizationsItemThreePhaseKeyRegExp: RegExp;
|
|
5030
|
-
export declare const editSubscriptionBodyCustomizationsMax
|
|
5136
|
+
export declare const editSubscriptionBodyCustomizationsMax = 100;
|
|
5031
5137
|
export declare const EditSubscriptionBody: zod.ZodObject<{
|
|
5032
5138
|
customizations: zod.ZodArray<zod.ZodUnion<readonly [zod.ZodObject<{
|
|
5033
5139
|
op: zod.ZodEnum<{
|
|
@@ -5092,6 +5198,7 @@ export declare const EditSubscriptionBody: zod.ZodObject<{
|
|
|
5092
5198
|
stripe: zod.ZodOptional<zod.ZodObject<{
|
|
5093
5199
|
code: zod.z.ZodCoercedString<unknown>;
|
|
5094
5200
|
}, zod.z.core.$strip>>;
|
|
5201
|
+
taxCodeId: zod.ZodOptional<zod.z.ZodCoercedString<unknown>>;
|
|
5095
5202
|
}, zod.z.core.$strip>>;
|
|
5096
5203
|
type: zod.ZodEnum<{
|
|
5097
5204
|
flat_fee: "flat_fee";
|
|
@@ -5201,6 +5308,7 @@ export declare const EditSubscriptionBody: zod.ZodObject<{
|
|
|
5201
5308
|
stripe: zod.ZodOptional<zod.ZodObject<{
|
|
5202
5309
|
code: zod.z.ZodCoercedString<unknown>;
|
|
5203
5310
|
}, zod.z.core.$strip>>;
|
|
5311
|
+
taxCodeId: zod.ZodOptional<zod.z.ZodCoercedString<unknown>>;
|
|
5204
5312
|
}, zod.z.core.$strip>>;
|
|
5205
5313
|
type: zod.ZodEnum<{
|
|
5206
5314
|
usage_based: "usage_based";
|
|
@@ -5272,9 +5380,9 @@ export declare const createSubscriptionAddonPathSubscriptionIdRegExp: RegExp;
|
|
|
5272
5380
|
export declare const CreateSubscriptionAddonParams: zod.ZodObject<{
|
|
5273
5381
|
subscriptionId: zod.z.ZodCoercedString<unknown>;
|
|
5274
5382
|
}, zod.z.core.$strip>;
|
|
5275
|
-
export declare const createSubscriptionAddonBodyNameMax
|
|
5276
|
-
export declare const createSubscriptionAddonBodyDescriptionMax
|
|
5277
|
-
export declare const createSubscriptionAddonBodyQuantityMin
|
|
5383
|
+
export declare const createSubscriptionAddonBodyNameMax = 256;
|
|
5384
|
+
export declare const createSubscriptionAddonBodyDescriptionMax = 1024;
|
|
5385
|
+
export declare const createSubscriptionAddonBodyQuantityMin = 0;
|
|
5278
5386
|
export declare const createSubscriptionAddonBodyAddonIdRegExp: RegExp;
|
|
5279
5387
|
export declare const CreateSubscriptionAddonBody: zod.ZodObject<{
|
|
5280
5388
|
addon: zod.ZodObject<{
|
|
@@ -5317,9 +5425,9 @@ export declare const UpdateSubscriptionAddonParams: zod.ZodObject<{
|
|
|
5317
5425
|
subscriptionAddonId: zod.z.ZodCoercedString<unknown>;
|
|
5318
5426
|
subscriptionId: zod.z.ZodCoercedString<unknown>;
|
|
5319
5427
|
}, zod.z.core.$strip>;
|
|
5320
|
-
export declare const updateSubscriptionAddonBodyNameMax
|
|
5321
|
-
export declare const updateSubscriptionAddonBodyDescriptionMax
|
|
5322
|
-
export declare const updateSubscriptionAddonBodyQuantityMin
|
|
5428
|
+
export declare const updateSubscriptionAddonBodyNameMax = 256;
|
|
5429
|
+
export declare const updateSubscriptionAddonBodyDescriptionMax = 1024;
|
|
5430
|
+
export declare const updateSubscriptionAddonBodyQuantityMin = 0;
|
|
5323
5431
|
export declare const UpdateSubscriptionAddonBody: zod.ZodObject<{
|
|
5324
5432
|
description: zod.ZodOptional<zod.z.ZodCoercedString<unknown>>;
|
|
5325
5433
|
metadata: zod.ZodOptional<zod.ZodNullable<zod.ZodRecord<zod.ZodString, zod.z.ZodCoercedString<unknown>>>>;
|
|
@@ -5354,53 +5462,56 @@ export declare const changeSubscriptionPathSubscriptionIdRegExp: RegExp;
|
|
|
5354
5462
|
export declare const ChangeSubscriptionParams: zod.ZodObject<{
|
|
5355
5463
|
subscriptionId: zod.z.ZodCoercedString<unknown>;
|
|
5356
5464
|
}, zod.z.core.$strip>;
|
|
5357
|
-
export declare const changeSubscriptionBodyOnePlanOneKeyMax
|
|
5465
|
+
export declare const changeSubscriptionBodyOnePlanOneKeyMax = 64;
|
|
5358
5466
|
export declare const changeSubscriptionBodyOnePlanOneKeyRegExp: RegExp;
|
|
5359
|
-
export declare const changeSubscriptionBodyTwoCustomPlanOneOneNameMax
|
|
5360
|
-
export declare const changeSubscriptionBodyTwoCustomPlanOneOneDescriptionMax
|
|
5361
|
-
export declare const changeSubscriptionBodyTwoCustomPlanOneOneCurrencyOneMin
|
|
5362
|
-
export declare const changeSubscriptionBodyTwoCustomPlanOneOneCurrencyOneMax
|
|
5467
|
+
export declare const changeSubscriptionBodyTwoCustomPlanOneOneNameMax = 256;
|
|
5468
|
+
export declare const changeSubscriptionBodyTwoCustomPlanOneOneDescriptionMax = 1024;
|
|
5469
|
+
export declare const changeSubscriptionBodyTwoCustomPlanOneOneCurrencyOneMin = 3;
|
|
5470
|
+
export declare const changeSubscriptionBodyTwoCustomPlanOneOneCurrencyOneMax = 3;
|
|
5363
5471
|
export declare const changeSubscriptionBodyTwoCustomPlanOneOneCurrencyOneRegExp: RegExp;
|
|
5364
|
-
export declare const changeSubscriptionBodyTwoCustomPlanOneOneCurrencyDefault
|
|
5365
|
-
export declare const changeSubscriptionBodyTwoCustomPlanOneOneProRatingConfigOneEnabledDefault
|
|
5366
|
-
export declare const changeSubscriptionBodyTwoCustomPlanOneOneProRatingConfigOneModeDefault
|
|
5472
|
+
export declare const changeSubscriptionBodyTwoCustomPlanOneOneCurrencyDefault = "USD";
|
|
5473
|
+
export declare const changeSubscriptionBodyTwoCustomPlanOneOneProRatingConfigOneEnabledDefault = true;
|
|
5474
|
+
export declare const changeSubscriptionBodyTwoCustomPlanOneOneProRatingConfigOneModeDefault = "prorate_prices";
|
|
5367
5475
|
export declare const changeSubscriptionBodyTwoCustomPlanOneOneProRatingConfigDefault: {
|
|
5368
5476
|
readonly enabled: true;
|
|
5369
5477
|
readonly mode: "prorate_prices";
|
|
5370
5478
|
};
|
|
5371
|
-
export declare const
|
|
5479
|
+
export declare const changeSubscriptionBodyTwoCustomPlanOneOneSettlementModeDefault = "credit_then_invoice";
|
|
5480
|
+
export declare const changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemKeyMax = 64;
|
|
5372
5481
|
export declare const changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemKeyRegExp: RegExp;
|
|
5373
|
-
export declare const changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemNameMax
|
|
5374
|
-
export declare const changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemDescriptionMax
|
|
5375
|
-
export declare const changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemOneKeyMax
|
|
5482
|
+
export declare const changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemNameMax = 256;
|
|
5483
|
+
export declare const changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemDescriptionMax = 1024;
|
|
5484
|
+
export declare const changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemOneKeyMax = 64;
|
|
5376
5485
|
export declare const changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemOneKeyRegExp: RegExp;
|
|
5377
|
-
export declare const changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemOneNameMax
|
|
5378
|
-
export declare const changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemOneDescriptionMax
|
|
5379
|
-
export declare const changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemOneFeatureKeyMax
|
|
5486
|
+
export declare const changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemOneNameMax = 256;
|
|
5487
|
+
export declare const changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemOneDescriptionMax = 1024;
|
|
5488
|
+
export declare const changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemOneFeatureKeyMax = 64;
|
|
5380
5489
|
export declare const changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemOneFeatureKeyRegExp: RegExp;
|
|
5381
|
-
export declare const changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemOneEntitlementTemplateOneOneIsSoftLimitDefault
|
|
5382
|
-
export declare const changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemOneEntitlementTemplateOneOneIssueAfterResetMin
|
|
5383
|
-
export declare const changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemOneEntitlementTemplateOneOneIssueAfterResetPriorityDefault
|
|
5384
|
-
export declare const changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemOneEntitlementTemplateOneOneIssueAfterResetPriorityMax
|
|
5385
|
-
export declare const changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemOneEntitlementTemplateOneOnePreserveOverageAtResetDefault
|
|
5490
|
+
export declare const changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemOneEntitlementTemplateOneOneIsSoftLimitDefault = false;
|
|
5491
|
+
export declare const changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemOneEntitlementTemplateOneOneIssueAfterResetMin = 0;
|
|
5492
|
+
export declare const changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemOneEntitlementTemplateOneOneIssueAfterResetPriorityDefault = 1;
|
|
5493
|
+
export declare const changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemOneEntitlementTemplateOneOneIssueAfterResetPriorityMax = 255;
|
|
5494
|
+
export declare const changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemOneEntitlementTemplateOneOnePreserveOverageAtResetDefault = false;
|
|
5386
5495
|
export declare const changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemOneTaxConfigOneStripeOneCodeRegExp: RegExp;
|
|
5496
|
+
export declare const changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemOneTaxConfigOneTaxCodeIdRegExp: RegExp;
|
|
5387
5497
|
export declare const changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemOnePriceOneAmountOneRegExp: RegExp;
|
|
5388
|
-
export declare const changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemOnePriceOnePaymentTermDefault
|
|
5498
|
+
export declare const changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemOnePriceOnePaymentTermDefault = "in_advance";
|
|
5389
5499
|
export declare const changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemOneDiscountsOneUsageOneQuantityOneRegExp: RegExp;
|
|
5390
|
-
export declare const changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoKeyMax
|
|
5500
|
+
export declare const changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoKeyMax = 64;
|
|
5391
5501
|
export declare const changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoKeyRegExp: RegExp;
|
|
5392
|
-
export declare const changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoNameMax
|
|
5393
|
-
export declare const changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoDescriptionMax
|
|
5394
|
-
export declare const changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoFeatureKeyMax
|
|
5502
|
+
export declare const changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoNameMax = 256;
|
|
5503
|
+
export declare const changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoDescriptionMax = 1024;
|
|
5504
|
+
export declare const changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoFeatureKeyMax = 64;
|
|
5395
5505
|
export declare const changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoFeatureKeyRegExp: RegExp;
|
|
5396
|
-
export declare const changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoEntitlementTemplateOneOneIsSoftLimitDefault
|
|
5397
|
-
export declare const changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoEntitlementTemplateOneOneIssueAfterResetMin
|
|
5398
|
-
export declare const changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoEntitlementTemplateOneOneIssueAfterResetPriorityDefault
|
|
5399
|
-
export declare const changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoEntitlementTemplateOneOneIssueAfterResetPriorityMax
|
|
5400
|
-
export declare const changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoEntitlementTemplateOneOnePreserveOverageAtResetDefault
|
|
5506
|
+
export declare const changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoEntitlementTemplateOneOneIsSoftLimitDefault = false;
|
|
5507
|
+
export declare const changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoEntitlementTemplateOneOneIssueAfterResetMin = 0;
|
|
5508
|
+
export declare const changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoEntitlementTemplateOneOneIssueAfterResetPriorityDefault = 1;
|
|
5509
|
+
export declare const changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoEntitlementTemplateOneOneIssueAfterResetPriorityMax = 255;
|
|
5510
|
+
export declare const changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoEntitlementTemplateOneOnePreserveOverageAtResetDefault = false;
|
|
5401
5511
|
export declare const changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoTaxConfigOneStripeOneCodeRegExp: RegExp;
|
|
5512
|
+
export declare const changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoTaxConfigOneTaxCodeIdRegExp: RegExp;
|
|
5402
5513
|
export declare const changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoPriceOneOneAmountOneRegExp: RegExp;
|
|
5403
|
-
export declare const changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoPriceOneOnePaymentTermDefault
|
|
5514
|
+
export declare const changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoPriceOneOnePaymentTermDefault = "in_advance";
|
|
5404
5515
|
export declare const changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoPriceOneTwoAmountOneRegExp: RegExp;
|
|
5405
5516
|
export declare const changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoPriceOneTwoMinimumAmountOneRegExp: RegExp;
|
|
5406
5517
|
export declare const changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoPriceOneTwoMaximumAmountOneRegExp: RegExp;
|
|
@@ -5410,7 +5521,7 @@ export declare const changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCard
|
|
|
5410
5521
|
export declare const changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoPriceOneThreeMinimumAmountOneRegExp: RegExp;
|
|
5411
5522
|
export declare const changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoPriceOneThreeMaximumAmountOneRegExp: RegExp;
|
|
5412
5523
|
export declare const changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoPriceOneFourMultiplierOneRegExp: RegExp;
|
|
5413
|
-
export declare const changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoPriceOneFourMultiplierDefault
|
|
5524
|
+
export declare const changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoPriceOneFourMultiplierDefault = "1";
|
|
5414
5525
|
export declare const changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoPriceOneFourMinimumAmountOneRegExp: RegExp;
|
|
5415
5526
|
export declare const changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoPriceOneFourMaximumAmountOneRegExp: RegExp;
|
|
5416
5527
|
export declare const changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoPriceOneFiveAmountOneRegExp: RegExp;
|
|
@@ -5442,7 +5553,7 @@ export declare const ChangeSubscriptionBody: zod.ZodUnion<readonly [zod.ZodObjec
|
|
|
5442
5553
|
billablesMustAlign: zod.ZodOptional<zod.z.ZodCoercedBoolean<unknown>>;
|
|
5443
5554
|
}, zod.z.core.$strip>>;
|
|
5444
5555
|
billingCadence: zod.z.ZodCoercedString<unknown>;
|
|
5445
|
-
currency: zod.z.ZodCoercedString<unknown
|
|
5556
|
+
currency: zod.ZodDefault<zod.z.ZodCoercedString<unknown>>;
|
|
5446
5557
|
description: zod.ZodOptional<zod.z.ZodCoercedString<unknown>>;
|
|
5447
5558
|
metadata: zod.ZodOptional<zod.ZodNullable<zod.ZodRecord<zod.ZodString, zod.z.ZodCoercedString<unknown>>>>;
|
|
5448
5559
|
name: zod.z.ZodCoercedString<unknown>;
|
|
@@ -5510,6 +5621,7 @@ export declare const ChangeSubscriptionBody: zod.ZodUnion<readonly [zod.ZodObjec
|
|
|
5510
5621
|
stripe: zod.ZodOptional<zod.ZodObject<{
|
|
5511
5622
|
code: zod.z.ZodCoercedString<unknown>;
|
|
5512
5623
|
}, zod.z.core.$strip>>;
|
|
5624
|
+
taxCodeId: zod.ZodOptional<zod.z.ZodCoercedString<unknown>>;
|
|
5513
5625
|
}, zod.z.core.$strip>>;
|
|
5514
5626
|
type: zod.ZodEnum<{
|
|
5515
5627
|
flat_fee: "flat_fee";
|
|
@@ -5619,6 +5731,7 @@ export declare const ChangeSubscriptionBody: zod.ZodUnion<readonly [zod.ZodObjec
|
|
|
5619
5731
|
stripe: zod.ZodOptional<zod.ZodObject<{
|
|
5620
5732
|
code: zod.z.ZodCoercedString<unknown>;
|
|
5621
5733
|
}, zod.z.core.$strip>>;
|
|
5734
|
+
taxCodeId: zod.ZodOptional<zod.z.ZodCoercedString<unknown>>;
|
|
5622
5735
|
}, zod.z.core.$strip>>;
|
|
5623
5736
|
type: zod.ZodEnum<{
|
|
5624
5737
|
usage_based: "usage_based";
|
|
@@ -5626,11 +5739,15 @@ export declare const ChangeSubscriptionBody: zod.ZodUnion<readonly [zod.ZodObjec
|
|
|
5626
5739
|
}, zod.z.core.$strip>]>>;
|
|
5627
5740
|
}, zod.z.core.$strip>>;
|
|
5628
5741
|
proRatingConfig: zod.ZodDefault<zod.ZodObject<{
|
|
5629
|
-
enabled: zod.z.ZodCoercedBoolean<unknown
|
|
5630
|
-
mode: zod.ZodEnum<{
|
|
5742
|
+
enabled: zod.ZodDefault<zod.z.ZodCoercedBoolean<unknown>>;
|
|
5743
|
+
mode: zod.ZodDefault<zod.ZodEnum<{
|
|
5631
5744
|
prorate_prices: "prorate_prices";
|
|
5632
|
-
}
|
|
5745
|
+
}>>;
|
|
5633
5746
|
}, zod.z.core.$strip>>;
|
|
5747
|
+
settlementMode: zod.ZodDefault<zod.ZodEnum<{
|
|
5748
|
+
credit_then_invoice: "credit_then_invoice";
|
|
5749
|
+
credit_only: "credit_only";
|
|
5750
|
+
}>>;
|
|
5634
5751
|
}, zod.z.core.$strip>;
|
|
5635
5752
|
timing: zod.ZodUnion<readonly [zod.ZodEnum<{
|
|
5636
5753
|
immediate: "immediate";
|
|
@@ -5647,7 +5764,7 @@ export declare const migrateSubscriptionPathSubscriptionIdRegExp: RegExp;
|
|
|
5647
5764
|
export declare const MigrateSubscriptionParams: zod.ZodObject<{
|
|
5648
5765
|
subscriptionId: zod.z.ZodCoercedString<unknown>;
|
|
5649
5766
|
}, zod.z.core.$strip>;
|
|
5650
|
-
export declare const migrateSubscriptionBodyTimingDefault
|
|
5767
|
+
export declare const migrateSubscriptionBodyTimingDefault = "immediate";
|
|
5651
5768
|
export declare const MigrateSubscriptionBody: zod.ZodObject<{
|
|
5652
5769
|
billingAnchor: zod.ZodOptional<zod.z.ZodCoercedDate<unknown>>;
|
|
5653
5770
|
startingPhase: zod.ZodOptional<zod.z.ZodCoercedString<unknown>>;
|
|
@@ -5688,32 +5805,32 @@ Once an entitlement is created you cannot modify it, only delete it.
|
|
|
5688
5805
|
* @summary Create a customer entitlement
|
|
5689
5806
|
*/
|
|
5690
5807
|
export declare const createCustomerEntitlementV2PathCustomerIdOrKeyOneRegExp: RegExp;
|
|
5691
|
-
export declare const createCustomerEntitlementV2PathCustomerIdOrKeyTwoMax
|
|
5808
|
+
export declare const createCustomerEntitlementV2PathCustomerIdOrKeyTwoMax = 256;
|
|
5692
5809
|
export declare const CreateCustomerEntitlementV2Params: zod.ZodObject<{
|
|
5693
5810
|
customerIdOrKey: zod.ZodUnion<readonly [zod.z.ZodCoercedString<unknown>, zod.z.ZodCoercedString<unknown>]>;
|
|
5694
5811
|
}, zod.z.core.$strip>;
|
|
5695
|
-
export declare const createCustomerEntitlementV2BodyOneFeatureKeyMax
|
|
5812
|
+
export declare const createCustomerEntitlementV2BodyOneFeatureKeyMax = 64;
|
|
5696
5813
|
export declare const createCustomerEntitlementV2BodyOneFeatureKeyRegExp: RegExp;
|
|
5697
5814
|
export declare const createCustomerEntitlementV2BodyOneFeatureIdRegExp: RegExp;
|
|
5698
|
-
export declare const createCustomerEntitlementV2BodyOneIsSoftLimitDefault
|
|
5815
|
+
export declare const createCustomerEntitlementV2BodyOneIsSoftLimitDefault = false;
|
|
5699
5816
|
export declare const createCustomerEntitlementV2BodyOneUsagePeriodOneIntervalOneOneRegExp: RegExp;
|
|
5700
|
-
export declare const createCustomerEntitlementV2BodyOnePreserveOverageAtResetDefault
|
|
5701
|
-
export declare const createCustomerEntitlementV2BodyOneIssueAfterResetMin
|
|
5702
|
-
export declare const createCustomerEntitlementV2BodyOneIssueAfterResetPriorityDefault
|
|
5703
|
-
export declare const createCustomerEntitlementV2BodyOneIssueAfterResetPriorityMax
|
|
5704
|
-
export declare const createCustomerEntitlementV2BodyOneIssueOneAmountMin
|
|
5705
|
-
export declare const createCustomerEntitlementV2BodyOneIssueOnePriorityDefault
|
|
5706
|
-
export declare const createCustomerEntitlementV2BodyOneIssueOnePriorityMax
|
|
5707
|
-
export declare const createCustomerEntitlementV2BodyOneGrantsItemAmountMin
|
|
5708
|
-
export declare const createCustomerEntitlementV2BodyOneGrantsItemPriorityMax
|
|
5709
|
-
export declare const createCustomerEntitlementV2BodyOneGrantsItemMinRolloverAmountDefault
|
|
5817
|
+
export declare const createCustomerEntitlementV2BodyOnePreserveOverageAtResetDefault = false;
|
|
5818
|
+
export declare const createCustomerEntitlementV2BodyOneIssueAfterResetMin = 0;
|
|
5819
|
+
export declare const createCustomerEntitlementV2BodyOneIssueAfterResetPriorityDefault = 1;
|
|
5820
|
+
export declare const createCustomerEntitlementV2BodyOneIssueAfterResetPriorityMax = 255;
|
|
5821
|
+
export declare const createCustomerEntitlementV2BodyOneIssueOneAmountMin = 0;
|
|
5822
|
+
export declare const createCustomerEntitlementV2BodyOneIssueOnePriorityDefault = 1;
|
|
5823
|
+
export declare const createCustomerEntitlementV2BodyOneIssueOnePriorityMax = 255;
|
|
5824
|
+
export declare const createCustomerEntitlementV2BodyOneGrantsItemAmountMin = 0;
|
|
5825
|
+
export declare const createCustomerEntitlementV2BodyOneGrantsItemPriorityMax = 255;
|
|
5826
|
+
export declare const createCustomerEntitlementV2BodyOneGrantsItemMinRolloverAmountDefault = 0;
|
|
5710
5827
|
export declare const createCustomerEntitlementV2BodyOneGrantsItemRecurrenceOneIntervalOneOneRegExp: RegExp;
|
|
5711
|
-
export declare const createCustomerEntitlementV2BodyOneGrantsItemExpirationOneCountMax
|
|
5712
|
-
export declare const createCustomerEntitlementV2BodyTwoFeatureKeyMax
|
|
5828
|
+
export declare const createCustomerEntitlementV2BodyOneGrantsItemExpirationOneCountMax = 1000;
|
|
5829
|
+
export declare const createCustomerEntitlementV2BodyTwoFeatureKeyMax = 64;
|
|
5713
5830
|
export declare const createCustomerEntitlementV2BodyTwoFeatureKeyRegExp: RegExp;
|
|
5714
5831
|
export declare const createCustomerEntitlementV2BodyTwoFeatureIdRegExp: RegExp;
|
|
5715
5832
|
export declare const createCustomerEntitlementV2BodyTwoUsagePeriodOneIntervalOneOneRegExp: RegExp;
|
|
5716
|
-
export declare const createCustomerEntitlementV2BodyThreeFeatureKeyMax
|
|
5833
|
+
export declare const createCustomerEntitlementV2BodyThreeFeatureKeyMax = 64;
|
|
5717
5834
|
export declare const createCustomerEntitlementV2BodyThreeFeatureKeyRegExp: RegExp;
|
|
5718
5835
|
export declare const createCustomerEntitlementV2BodyThreeFeatureIdRegExp: RegExp;
|
|
5719
5836
|
export declare const createCustomerEntitlementV2BodyThreeUsagePeriodOneIntervalOneOneRegExp: RegExp;
|
|
@@ -5812,17 +5929,18 @@ export declare const CreateCustomerEntitlementV2Body: zod.ZodUnion<readonly [zod
|
|
|
5812
5929
|
* @summary List customer entitlements
|
|
5813
5930
|
*/
|
|
5814
5931
|
export declare const listCustomerEntitlementsV2PathCustomerIdOrKeyOneRegExp: RegExp;
|
|
5815
|
-
export declare const listCustomerEntitlementsV2PathCustomerIdOrKeyTwoMax
|
|
5932
|
+
export declare const listCustomerEntitlementsV2PathCustomerIdOrKeyTwoMax = 256;
|
|
5816
5933
|
export declare const ListCustomerEntitlementsV2Params: zod.ZodObject<{
|
|
5817
5934
|
customerIdOrKey: zod.ZodUnion<readonly [zod.z.ZodCoercedString<unknown>, zod.z.ZodCoercedString<unknown>]>;
|
|
5818
5935
|
}, zod.z.core.$strip>;
|
|
5819
|
-
export declare const listCustomerEntitlementsV2QueryIncludeDeletedDefault
|
|
5820
|
-
export declare const listCustomerEntitlementsV2QueryPageDefault
|
|
5821
|
-
export declare const listCustomerEntitlementsV2QueryPageSizeDefault
|
|
5822
|
-
export declare const listCustomerEntitlementsV2QueryPageSizeMax
|
|
5936
|
+
export declare const listCustomerEntitlementsV2QueryIncludeDeletedDefault = false;
|
|
5937
|
+
export declare const listCustomerEntitlementsV2QueryPageDefault = 1;
|
|
5938
|
+
export declare const listCustomerEntitlementsV2QueryPageSizeDefault = 100;
|
|
5939
|
+
export declare const listCustomerEntitlementsV2QueryPageSizeMax = 1000;
|
|
5940
|
+
export declare const listCustomerEntitlementsV2QueryOrderDefault = "ASC";
|
|
5823
5941
|
export declare const ListCustomerEntitlementsV2QueryParams: zod.ZodObject<{
|
|
5824
5942
|
includeDeleted: zod.ZodDefault<zod.z.ZodCoercedBoolean<unknown>>;
|
|
5825
|
-
order: zod.
|
|
5943
|
+
order: zod.ZodDefault<zod.ZodEnum<{
|
|
5826
5944
|
ASC: "ASC";
|
|
5827
5945
|
DESC: "DESC";
|
|
5828
5946
|
}>>;
|
|
@@ -5839,8 +5957,8 @@ If featureKey is used, the entitlement is resolved for the current timestamp.
|
|
|
5839
5957
|
* @summary Get customer entitlement
|
|
5840
5958
|
*/
|
|
5841
5959
|
export declare const getCustomerEntitlementV2PathCustomerIdOrKeyOneRegExp: RegExp;
|
|
5842
|
-
export declare const getCustomerEntitlementV2PathCustomerIdOrKeyTwoMax
|
|
5843
|
-
export declare const getCustomerEntitlementV2PathEntitlementIdOrFeatureKeyMax
|
|
5960
|
+
export declare const getCustomerEntitlementV2PathCustomerIdOrKeyTwoMax = 256;
|
|
5961
|
+
export declare const getCustomerEntitlementV2PathEntitlementIdOrFeatureKeyMax = 64;
|
|
5844
5962
|
export declare const getCustomerEntitlementV2PathEntitlementIdOrFeatureKeyRegExp: RegExp;
|
|
5845
5963
|
export declare const GetCustomerEntitlementV2Params: zod.ZodObject<{
|
|
5846
5964
|
customerIdOrKey: zod.ZodUnion<readonly [zod.z.ZodCoercedString<unknown>, zod.z.ZodCoercedString<unknown>]>;
|
|
@@ -5852,8 +5970,8 @@ As access and status checks can be historical queries, deleting an entitlement p
|
|
|
5852
5970
|
* @summary Delete customer entitlement
|
|
5853
5971
|
*/
|
|
5854
5972
|
export declare const deleteCustomerEntitlementV2PathCustomerIdOrKeyOneRegExp: RegExp;
|
|
5855
|
-
export declare const deleteCustomerEntitlementV2PathCustomerIdOrKeyTwoMax
|
|
5856
|
-
export declare const deleteCustomerEntitlementV2PathEntitlementIdOrFeatureKeyMax
|
|
5973
|
+
export declare const deleteCustomerEntitlementV2PathCustomerIdOrKeyTwoMax = 256;
|
|
5974
|
+
export declare const deleteCustomerEntitlementV2PathEntitlementIdOrFeatureKeyMax = 64;
|
|
5857
5975
|
export declare const deleteCustomerEntitlementV2PathEntitlementIdOrFeatureKeyRegExp: RegExp;
|
|
5858
5976
|
export declare const DeleteCustomerEntitlementV2Params: zod.ZodObject<{
|
|
5859
5977
|
customerIdOrKey: zod.ZodUnion<readonly [zod.z.ZodCoercedString<unknown>, zod.z.ZodCoercedString<unknown>]>;
|
|
@@ -5864,26 +5982,27 @@ export declare const DeleteCustomerEntitlementV2Params: zod.ZodObject<{
|
|
|
5864
5982
|
* @summary List customer entitlement grants
|
|
5865
5983
|
*/
|
|
5866
5984
|
export declare const listCustomerEntitlementGrantsV2PathCustomerIdOrKeyOneRegExp: RegExp;
|
|
5867
|
-
export declare const listCustomerEntitlementGrantsV2PathCustomerIdOrKeyTwoMax
|
|
5868
|
-
export declare const listCustomerEntitlementGrantsV2PathEntitlementIdOrFeatureKeyMax
|
|
5985
|
+
export declare const listCustomerEntitlementGrantsV2PathCustomerIdOrKeyTwoMax = 256;
|
|
5986
|
+
export declare const listCustomerEntitlementGrantsV2PathEntitlementIdOrFeatureKeyMax = 64;
|
|
5869
5987
|
export declare const listCustomerEntitlementGrantsV2PathEntitlementIdOrFeatureKeyRegExp: RegExp;
|
|
5870
5988
|
export declare const ListCustomerEntitlementGrantsV2Params: zod.ZodObject<{
|
|
5871
5989
|
customerIdOrKey: zod.ZodUnion<readonly [zod.z.ZodCoercedString<unknown>, zod.z.ZodCoercedString<unknown>]>;
|
|
5872
5990
|
entitlementIdOrFeatureKey: zod.z.ZodCoercedString<unknown>;
|
|
5873
5991
|
}, zod.z.core.$strip>;
|
|
5874
|
-
export declare const listCustomerEntitlementGrantsV2QueryIncludeDeletedDefault
|
|
5875
|
-
export declare const listCustomerEntitlementGrantsV2QueryPageDefault
|
|
5876
|
-
export declare const listCustomerEntitlementGrantsV2QueryPageSizeDefault
|
|
5877
|
-
export declare const listCustomerEntitlementGrantsV2QueryPageSizeMax
|
|
5878
|
-
export declare const listCustomerEntitlementGrantsV2QueryOffsetDefault
|
|
5879
|
-
export declare const listCustomerEntitlementGrantsV2QueryOffsetMin
|
|
5880
|
-
export declare const listCustomerEntitlementGrantsV2QueryLimitDefault
|
|
5881
|
-
export declare const listCustomerEntitlementGrantsV2QueryLimitMax
|
|
5992
|
+
export declare const listCustomerEntitlementGrantsV2QueryIncludeDeletedDefault = false;
|
|
5993
|
+
export declare const listCustomerEntitlementGrantsV2QueryPageDefault = 1;
|
|
5994
|
+
export declare const listCustomerEntitlementGrantsV2QueryPageSizeDefault = 100;
|
|
5995
|
+
export declare const listCustomerEntitlementGrantsV2QueryPageSizeMax = 1000;
|
|
5996
|
+
export declare const listCustomerEntitlementGrantsV2QueryOffsetDefault = 0;
|
|
5997
|
+
export declare const listCustomerEntitlementGrantsV2QueryOffsetMin = 0;
|
|
5998
|
+
export declare const listCustomerEntitlementGrantsV2QueryLimitDefault = 100;
|
|
5999
|
+
export declare const listCustomerEntitlementGrantsV2QueryLimitMax = 1000;
|
|
6000
|
+
export declare const listCustomerEntitlementGrantsV2QueryOrderDefault = "ASC";
|
|
5882
6001
|
export declare const ListCustomerEntitlementGrantsV2QueryParams: zod.ZodObject<{
|
|
5883
6002
|
includeDeleted: zod.ZodDefault<zod.z.ZodCoercedBoolean<unknown>>;
|
|
5884
6003
|
limit: zod.ZodDefault<zod.z.ZodCoercedNumber<unknown>>;
|
|
5885
6004
|
offset: zod.ZodDefault<zod.z.ZodCoercedNumber<unknown>>;
|
|
5886
|
-
order: zod.
|
|
6005
|
+
order: zod.ZodDefault<zod.ZodEnum<{
|
|
5887
6006
|
ASC: "ASC";
|
|
5888
6007
|
DESC: "DESC";
|
|
5889
6008
|
}>>;
|
|
@@ -5910,18 +6029,18 @@ Grants cannot be changed once created, only deleted. This is to ensure that bala
|
|
|
5910
6029
|
* @summary Create customer entitlement grant
|
|
5911
6030
|
*/
|
|
5912
6031
|
export declare const createCustomerEntitlementGrantV2PathCustomerIdOrKeyOneRegExp: RegExp;
|
|
5913
|
-
export declare const createCustomerEntitlementGrantV2PathCustomerIdOrKeyTwoMax
|
|
5914
|
-
export declare const createCustomerEntitlementGrantV2PathEntitlementIdOrFeatureKeyMax
|
|
6032
|
+
export declare const createCustomerEntitlementGrantV2PathCustomerIdOrKeyTwoMax = 256;
|
|
6033
|
+
export declare const createCustomerEntitlementGrantV2PathEntitlementIdOrFeatureKeyMax = 64;
|
|
5915
6034
|
export declare const createCustomerEntitlementGrantV2PathEntitlementIdOrFeatureKeyRegExp: RegExp;
|
|
5916
6035
|
export declare const CreateCustomerEntitlementGrantV2Params: zod.ZodObject<{
|
|
5917
6036
|
customerIdOrKey: zod.ZodUnion<readonly [zod.z.ZodCoercedString<unknown>, zod.z.ZodCoercedString<unknown>]>;
|
|
5918
6037
|
entitlementIdOrFeatureKey: zod.z.ZodCoercedString<unknown>;
|
|
5919
6038
|
}, zod.z.core.$strip>;
|
|
5920
|
-
export declare const createCustomerEntitlementGrantV2BodyAmountMin
|
|
5921
|
-
export declare const createCustomerEntitlementGrantV2BodyPriorityMax
|
|
5922
|
-
export declare const createCustomerEntitlementGrantV2BodyMinRolloverAmountDefault
|
|
6039
|
+
export declare const createCustomerEntitlementGrantV2BodyAmountMin = 0;
|
|
6040
|
+
export declare const createCustomerEntitlementGrantV2BodyPriorityMax = 255;
|
|
6041
|
+
export declare const createCustomerEntitlementGrantV2BodyMinRolloverAmountDefault = 0;
|
|
5923
6042
|
export declare const createCustomerEntitlementGrantV2BodyRecurrenceOneIntervalOneOneRegExp: RegExp;
|
|
5924
|
-
export declare const createCustomerEntitlementGrantV2BodyExpirationOneCountMax
|
|
6043
|
+
export declare const createCustomerEntitlementGrantV2BodyExpirationOneCountMax = 1000;
|
|
5925
6044
|
export declare const CreateCustomerEntitlementGrantV2Body: zod.ZodObject<{
|
|
5926
6045
|
amount: zod.z.ZodCoercedNumber<unknown>;
|
|
5927
6046
|
annotations: zod.ZodOptional<zod.ZodRecord<zod.ZodString, zod.ZodUnknown>>;
|
|
@@ -5959,14 +6078,14 @@ WindowedHistory returns windowed usage data for the period enriched with balance
|
|
|
5959
6078
|
* @summary Get customer entitlement history
|
|
5960
6079
|
*/
|
|
5961
6080
|
export declare const getCustomerEntitlementHistoryV2PathCustomerIdOrKeyOneRegExp: RegExp;
|
|
5962
|
-
export declare const getCustomerEntitlementHistoryV2PathCustomerIdOrKeyTwoMax
|
|
5963
|
-
export declare const getCustomerEntitlementHistoryV2PathEntitlementIdOrFeatureKeyMax
|
|
6081
|
+
export declare const getCustomerEntitlementHistoryV2PathCustomerIdOrKeyTwoMax = 256;
|
|
6082
|
+
export declare const getCustomerEntitlementHistoryV2PathEntitlementIdOrFeatureKeyMax = 64;
|
|
5964
6083
|
export declare const getCustomerEntitlementHistoryV2PathEntitlementIdOrFeatureKeyRegExp: RegExp;
|
|
5965
6084
|
export declare const GetCustomerEntitlementHistoryV2Params: zod.ZodObject<{
|
|
5966
6085
|
customerIdOrKey: zod.ZodUnion<readonly [zod.z.ZodCoercedString<unknown>, zod.z.ZodCoercedString<unknown>]>;
|
|
5967
6086
|
entitlementIdOrFeatureKey: zod.z.ZodCoercedString<unknown>;
|
|
5968
6087
|
}, zod.z.core.$strip>;
|
|
5969
|
-
export declare const getCustomerEntitlementHistoryV2QueryWindowTimeZoneDefault
|
|
6088
|
+
export declare const getCustomerEntitlementHistoryV2QueryWindowTimeZoneDefault = "UTC";
|
|
5970
6089
|
export declare const GetCustomerEntitlementHistoryV2QueryParams: zod.ZodObject<{
|
|
5971
6090
|
from: zod.ZodOptional<zod.z.ZodCoercedDate<unknown>>;
|
|
5972
6091
|
to: zod.ZodOptional<zod.z.ZodCoercedDate<unknown>>;
|
|
@@ -5985,35 +6104,35 @@ This endpoint is useful for upgrades, downgrades, or other changes to entitlemen
|
|
|
5985
6104
|
* @summary Override customer entitlement
|
|
5986
6105
|
*/
|
|
5987
6106
|
export declare const overrideCustomerEntitlementV2PathCustomerIdOrKeyOneRegExp: RegExp;
|
|
5988
|
-
export declare const overrideCustomerEntitlementV2PathCustomerIdOrKeyTwoMax
|
|
6107
|
+
export declare const overrideCustomerEntitlementV2PathCustomerIdOrKeyTwoMax = 256;
|
|
5989
6108
|
export declare const overrideCustomerEntitlementV2PathEntitlementIdOrFeatureKeyOneRegExp: RegExp;
|
|
5990
|
-
export declare const overrideCustomerEntitlementV2PathEntitlementIdOrFeatureKeyTwoMax
|
|
6109
|
+
export declare const overrideCustomerEntitlementV2PathEntitlementIdOrFeatureKeyTwoMax = 256;
|
|
5991
6110
|
export declare const OverrideCustomerEntitlementV2Params: zod.ZodObject<{
|
|
5992
6111
|
customerIdOrKey: zod.ZodUnion<readonly [zod.z.ZodCoercedString<unknown>, zod.z.ZodCoercedString<unknown>]>;
|
|
5993
6112
|
entitlementIdOrFeatureKey: zod.ZodUnion<readonly [zod.z.ZodCoercedString<unknown>, zod.z.ZodCoercedString<unknown>]>;
|
|
5994
6113
|
}, zod.z.core.$strip>;
|
|
5995
|
-
export declare const overrideCustomerEntitlementV2BodyOneFeatureKeyMax
|
|
6114
|
+
export declare const overrideCustomerEntitlementV2BodyOneFeatureKeyMax = 64;
|
|
5996
6115
|
export declare const overrideCustomerEntitlementV2BodyOneFeatureKeyRegExp: RegExp;
|
|
5997
6116
|
export declare const overrideCustomerEntitlementV2BodyOneFeatureIdRegExp: RegExp;
|
|
5998
|
-
export declare const overrideCustomerEntitlementV2BodyOneIsSoftLimitDefault
|
|
6117
|
+
export declare const overrideCustomerEntitlementV2BodyOneIsSoftLimitDefault = false;
|
|
5999
6118
|
export declare const overrideCustomerEntitlementV2BodyOneUsagePeriodOneIntervalOneOneRegExp: RegExp;
|
|
6000
|
-
export declare const overrideCustomerEntitlementV2BodyOnePreserveOverageAtResetDefault
|
|
6001
|
-
export declare const overrideCustomerEntitlementV2BodyOneIssueAfterResetMin
|
|
6002
|
-
export declare const overrideCustomerEntitlementV2BodyOneIssueAfterResetPriorityDefault
|
|
6003
|
-
export declare const overrideCustomerEntitlementV2BodyOneIssueAfterResetPriorityMax
|
|
6004
|
-
export declare const overrideCustomerEntitlementV2BodyOneIssueOneAmountMin
|
|
6005
|
-
export declare const overrideCustomerEntitlementV2BodyOneIssueOnePriorityDefault
|
|
6006
|
-
export declare const overrideCustomerEntitlementV2BodyOneIssueOnePriorityMax
|
|
6007
|
-
export declare const overrideCustomerEntitlementV2BodyOneGrantsItemAmountMin
|
|
6008
|
-
export declare const overrideCustomerEntitlementV2BodyOneGrantsItemPriorityMax
|
|
6009
|
-
export declare const overrideCustomerEntitlementV2BodyOneGrantsItemMinRolloverAmountDefault
|
|
6119
|
+
export declare const overrideCustomerEntitlementV2BodyOnePreserveOverageAtResetDefault = false;
|
|
6120
|
+
export declare const overrideCustomerEntitlementV2BodyOneIssueAfterResetMin = 0;
|
|
6121
|
+
export declare const overrideCustomerEntitlementV2BodyOneIssueAfterResetPriorityDefault = 1;
|
|
6122
|
+
export declare const overrideCustomerEntitlementV2BodyOneIssueAfterResetPriorityMax = 255;
|
|
6123
|
+
export declare const overrideCustomerEntitlementV2BodyOneIssueOneAmountMin = 0;
|
|
6124
|
+
export declare const overrideCustomerEntitlementV2BodyOneIssueOnePriorityDefault = 1;
|
|
6125
|
+
export declare const overrideCustomerEntitlementV2BodyOneIssueOnePriorityMax = 255;
|
|
6126
|
+
export declare const overrideCustomerEntitlementV2BodyOneGrantsItemAmountMin = 0;
|
|
6127
|
+
export declare const overrideCustomerEntitlementV2BodyOneGrantsItemPriorityMax = 255;
|
|
6128
|
+
export declare const overrideCustomerEntitlementV2BodyOneGrantsItemMinRolloverAmountDefault = 0;
|
|
6010
6129
|
export declare const overrideCustomerEntitlementV2BodyOneGrantsItemRecurrenceOneIntervalOneOneRegExp: RegExp;
|
|
6011
|
-
export declare const overrideCustomerEntitlementV2BodyOneGrantsItemExpirationOneCountMax
|
|
6012
|
-
export declare const overrideCustomerEntitlementV2BodyTwoFeatureKeyMax
|
|
6130
|
+
export declare const overrideCustomerEntitlementV2BodyOneGrantsItemExpirationOneCountMax = 1000;
|
|
6131
|
+
export declare const overrideCustomerEntitlementV2BodyTwoFeatureKeyMax = 64;
|
|
6013
6132
|
export declare const overrideCustomerEntitlementV2BodyTwoFeatureKeyRegExp: RegExp;
|
|
6014
6133
|
export declare const overrideCustomerEntitlementV2BodyTwoFeatureIdRegExp: RegExp;
|
|
6015
6134
|
export declare const overrideCustomerEntitlementV2BodyTwoUsagePeriodOneIntervalOneOneRegExp: RegExp;
|
|
6016
|
-
export declare const overrideCustomerEntitlementV2BodyThreeFeatureKeyMax
|
|
6135
|
+
export declare const overrideCustomerEntitlementV2BodyThreeFeatureKeyMax = 64;
|
|
6017
6136
|
export declare const overrideCustomerEntitlementV2BodyThreeFeatureKeyRegExp: RegExp;
|
|
6018
6137
|
export declare const overrideCustomerEntitlementV2BodyThreeFeatureIdRegExp: RegExp;
|
|
6019
6138
|
export declare const overrideCustomerEntitlementV2BodyThreeUsagePeriodOneIntervalOneOneRegExp: RegExp;
|
|
@@ -6114,8 +6233,8 @@ Usage is automatically reset for metered entitlements based on their usage perio
|
|
|
6114
6233
|
* @summary Reset customer entitlement
|
|
6115
6234
|
*/
|
|
6116
6235
|
export declare const resetCustomerEntitlementUsageV2PathCustomerIdOrKeyOneRegExp: RegExp;
|
|
6117
|
-
export declare const resetCustomerEntitlementUsageV2PathCustomerIdOrKeyTwoMax
|
|
6118
|
-
export declare const resetCustomerEntitlementUsageV2PathEntitlementIdOrFeatureKeyMax
|
|
6236
|
+
export declare const resetCustomerEntitlementUsageV2PathCustomerIdOrKeyTwoMax = 256;
|
|
6237
|
+
export declare const resetCustomerEntitlementUsageV2PathEntitlementIdOrFeatureKeyMax = 64;
|
|
6119
6238
|
export declare const resetCustomerEntitlementUsageV2PathEntitlementIdOrFeatureKeyRegExp: RegExp;
|
|
6120
6239
|
export declare const ResetCustomerEntitlementUsageV2Params: zod.ZodObject<{
|
|
6121
6240
|
customerIdOrKey: zod.ZodUnion<readonly [zod.z.ZodCoercedString<unknown>, zod.z.ZodCoercedString<unknown>]>;
|
|
@@ -6131,8 +6250,8 @@ export declare const ResetCustomerEntitlementUsageV2Body: zod.ZodObject<{
|
|
|
6131
6250
|
* @summary Get customer entitlement value
|
|
6132
6251
|
*/
|
|
6133
6252
|
export declare const getCustomerEntitlementValueV2PathCustomerIdOrKeyOneRegExp: RegExp;
|
|
6134
|
-
export declare const getCustomerEntitlementValueV2PathCustomerIdOrKeyTwoMax
|
|
6135
|
-
export declare const getCustomerEntitlementValueV2PathEntitlementIdOrFeatureKeyMax
|
|
6253
|
+
export declare const getCustomerEntitlementValueV2PathCustomerIdOrKeyTwoMax = 256;
|
|
6254
|
+
export declare const getCustomerEntitlementValueV2PathEntitlementIdOrFeatureKeyMax = 64;
|
|
6136
6255
|
export declare const getCustomerEntitlementValueV2PathEntitlementIdOrFeatureKeyRegExp: RegExp;
|
|
6137
6256
|
export declare const GetCustomerEntitlementValueV2Params: zod.ZodObject<{
|
|
6138
6257
|
customerIdOrKey: zod.ZodUnion<readonly [zod.z.ZodCoercedString<unknown>, zod.z.ZodCoercedString<unknown>]>;
|
|
@@ -6146,14 +6265,15 @@ export declare const GetCustomerEntitlementValueV2QueryParams: zod.ZodObject<{
|
|
|
6146
6265
|
To fetch the entitlements of a specific subject please use the /api/v2/customers/{customerIdOrKey}/entitlements endpoint.
|
|
6147
6266
|
* @summary List all entitlements
|
|
6148
6267
|
*/
|
|
6149
|
-
export declare const listEntitlementsV2QueryExcludeInactiveDefault
|
|
6150
|
-
export declare const listEntitlementsV2QueryPageDefault
|
|
6151
|
-
export declare const listEntitlementsV2QueryPageSizeDefault
|
|
6152
|
-
export declare const listEntitlementsV2QueryPageSizeMax
|
|
6153
|
-
export declare const listEntitlementsV2QueryOffsetDefault
|
|
6154
|
-
export declare const listEntitlementsV2QueryOffsetMin
|
|
6155
|
-
export declare const listEntitlementsV2QueryLimitDefault
|
|
6156
|
-
export declare const listEntitlementsV2QueryLimitMax
|
|
6268
|
+
export declare const listEntitlementsV2QueryExcludeInactiveDefault = false;
|
|
6269
|
+
export declare const listEntitlementsV2QueryPageDefault = 1;
|
|
6270
|
+
export declare const listEntitlementsV2QueryPageSizeDefault = 100;
|
|
6271
|
+
export declare const listEntitlementsV2QueryPageSizeMax = 1000;
|
|
6272
|
+
export declare const listEntitlementsV2QueryOffsetDefault = 0;
|
|
6273
|
+
export declare const listEntitlementsV2QueryOffsetMin = 0;
|
|
6274
|
+
export declare const listEntitlementsV2QueryLimitDefault = 100;
|
|
6275
|
+
export declare const listEntitlementsV2QueryLimitMax = 1000;
|
|
6276
|
+
export declare const listEntitlementsV2QueryOrderDefault = "ASC";
|
|
6157
6277
|
export declare const ListEntitlementsV2QueryParams: zod.ZodObject<{
|
|
6158
6278
|
customerIds: zod.ZodOptional<zod.ZodArray<zod.z.ZodCoercedString<unknown>>>;
|
|
6159
6279
|
customerKeys: zod.ZodOptional<zod.ZodArray<zod.z.ZodCoercedString<unknown>>>;
|
|
@@ -6166,7 +6286,7 @@ export declare const ListEntitlementsV2QueryParams: zod.ZodObject<{
|
|
|
6166
6286
|
feature: zod.ZodOptional<zod.ZodArray<zod.z.ZodCoercedString<unknown>>>;
|
|
6167
6287
|
limit: zod.ZodDefault<zod.z.ZodCoercedNumber<unknown>>;
|
|
6168
6288
|
offset: zod.ZodDefault<zod.z.ZodCoercedNumber<unknown>>;
|
|
6169
|
-
order: zod.
|
|
6289
|
+
order: zod.ZodDefault<zod.ZodEnum<{
|
|
6170
6290
|
ASC: "ASC";
|
|
6171
6291
|
DESC: "DESC";
|
|
6172
6292
|
}>>;
|
|
@@ -6189,9 +6309,9 @@ export declare const GetEntitlementByIdV2Params: zod.ZodObject<{
|
|
|
6189
6309
|
* List ingested events with advanced filtering and cursor pagination.
|
|
6190
6310
|
* @summary List ingested events
|
|
6191
6311
|
*/
|
|
6192
|
-
export declare const listEventsV2QueryLimitDefault
|
|
6193
|
-
export declare const listEventsV2QueryLimitMax
|
|
6194
|
-
export declare const listEventsV2QueryClientIdMax
|
|
6312
|
+
export declare const listEventsV2QueryLimitDefault = 100;
|
|
6313
|
+
export declare const listEventsV2QueryLimitMax = 100;
|
|
6314
|
+
export declare const listEventsV2QueryClientIdMax = 36;
|
|
6195
6315
|
export declare const ListEventsV2QueryParams: zod.ZodObject<{
|
|
6196
6316
|
clientId: zod.ZodOptional<zod.z.ZodCoercedString<unknown>>;
|
|
6197
6317
|
cursor: zod.ZodOptional<zod.z.ZodCoercedString<unknown>>;
|
|
@@ -6204,22 +6324,23 @@ If page is provided that takes precedence and the paginated response is returned
|
|
|
6204
6324
|
* @summary List grants
|
|
6205
6325
|
*/
|
|
6206
6326
|
export declare const listGrantsV2QueryCustomerItemOneRegExp: RegExp;
|
|
6207
|
-
export declare const listGrantsV2QueryCustomerItemTwoMax
|
|
6208
|
-
export declare const listGrantsV2QueryIncludeDeletedDefault
|
|
6209
|
-
export declare const listGrantsV2QueryPageDefault
|
|
6210
|
-
export declare const listGrantsV2QueryPageSizeDefault
|
|
6211
|
-
export declare const listGrantsV2QueryPageSizeMax
|
|
6212
|
-
export declare const listGrantsV2QueryOffsetDefault
|
|
6213
|
-
export declare const listGrantsV2QueryOffsetMin
|
|
6214
|
-
export declare const listGrantsV2QueryLimitDefault
|
|
6215
|
-
export declare const listGrantsV2QueryLimitMax
|
|
6327
|
+
export declare const listGrantsV2QueryCustomerItemTwoMax = 256;
|
|
6328
|
+
export declare const listGrantsV2QueryIncludeDeletedDefault = false;
|
|
6329
|
+
export declare const listGrantsV2QueryPageDefault = 1;
|
|
6330
|
+
export declare const listGrantsV2QueryPageSizeDefault = 100;
|
|
6331
|
+
export declare const listGrantsV2QueryPageSizeMax = 1000;
|
|
6332
|
+
export declare const listGrantsV2QueryOffsetDefault = 0;
|
|
6333
|
+
export declare const listGrantsV2QueryOffsetMin = 0;
|
|
6334
|
+
export declare const listGrantsV2QueryLimitDefault = 100;
|
|
6335
|
+
export declare const listGrantsV2QueryLimitMax = 1000;
|
|
6336
|
+
export declare const listGrantsV2QueryOrderDefault = "ASC";
|
|
6216
6337
|
export declare const ListGrantsV2QueryParams: zod.ZodObject<{
|
|
6217
6338
|
customer: zod.ZodOptional<zod.ZodArray<zod.ZodUnion<readonly [zod.z.ZodCoercedString<unknown>, zod.z.ZodCoercedString<unknown>]>>>;
|
|
6218
6339
|
feature: zod.ZodOptional<zod.ZodArray<zod.z.ZodCoercedString<unknown>>>;
|
|
6219
6340
|
includeDeleted: zod.ZodDefault<zod.z.ZodCoercedBoolean<unknown>>;
|
|
6220
6341
|
limit: zod.ZodDefault<zod.z.ZodCoercedNumber<unknown>>;
|
|
6221
6342
|
offset: zod.ZodDefault<zod.z.ZodCoercedNumber<unknown>>;
|
|
6222
|
-
order: zod.
|
|
6343
|
+
order: zod.ZodDefault<zod.ZodEnum<{
|
|
6223
6344
|
ASC: "ASC";
|
|
6224
6345
|
DESC: "DESC";
|
|
6225
6346
|
}>>;
|