@openmeter/client 1.0.0-beta-19b4fd5a13eb → 1.0.0-beta-e0f66967ddb0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +1 -1
- package/dist/lib/version.d.ts +1 -1
- package/dist/lib/version.js +1 -1
- package/dist/models/schemas.d.ts +164 -100
- package/dist/models/schemas.js +90 -88
- package/dist/models/types.d.ts +46 -36
- package/package.json +1 -1
package/dist/models/schemas.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
2
|
export declare const labels: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
3
3
|
export declare const currencyCode: z.ZodString;
|
|
4
|
+
export declare const currencyCodeCustom: z.ZodString;
|
|
4
5
|
export declare const numeric: z.ZodString;
|
|
5
6
|
export declare const cursorPaginationQueryPage: z.ZodObject<{
|
|
6
7
|
size: z.ZodOptional<z.ZodNumber>;
|
|
@@ -382,7 +383,6 @@ export declare const currencyType: z.ZodEnum<{
|
|
|
382
383
|
export declare const currencyExpand: z.ZodEnum<{
|
|
383
384
|
cost_basis: "cost_basis";
|
|
384
385
|
}>;
|
|
385
|
-
export declare const currencyCodeCustom: z.ZodString;
|
|
386
386
|
export declare const featureLlmTokenType: z.ZodEnum<{
|
|
387
387
|
cache_read: "cache_read";
|
|
388
388
|
cache_write: "cache_write";
|
|
@@ -539,8 +539,6 @@ export declare const appCustomerDataStripe: z.ZodObject<{
|
|
|
539
539
|
export declare const appCustomerDataExternalInvoicing: z.ZodObject<{
|
|
540
540
|
labels: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
541
541
|
}, z.core.$strip>;
|
|
542
|
-
export declare const billingCurrencyCode: z.ZodUnion<readonly [z.ZodString]>;
|
|
543
|
-
export declare const createCurrencyCode: z.ZodUnion<readonly [z.ZodString]>;
|
|
544
542
|
export declare const currencyFiat: z.ZodObject<{
|
|
545
543
|
type: z.ZodLiteral<"fiat">;
|
|
546
544
|
name: z.ZodString;
|
|
@@ -553,6 +551,16 @@ export declare const currencyFiat: z.ZodObject<{
|
|
|
553
551
|
export declare const listCostBasesParamsFilter: z.ZodObject<{
|
|
554
552
|
fiatCode: z.ZodOptional<z.ZodString>;
|
|
555
553
|
}, z.core.$strip>;
|
|
554
|
+
export declare const billingCurrencyCode: z.ZodUnion<readonly [z.ZodString, z.ZodString]>;
|
|
555
|
+
export declare const createCurrencyCode: z.ZodUnion<readonly [z.ZodString, z.ZodString]>;
|
|
556
|
+
export declare const createCurrencyCustomRequest: z.ZodObject<{
|
|
557
|
+
name: z.ZodString;
|
|
558
|
+
symbol: z.ZodOptional<z.ZodString>;
|
|
559
|
+
precision: z.ZodNumber;
|
|
560
|
+
decimalMark: z.ZodString;
|
|
561
|
+
thousandSeparator: z.ZodString;
|
|
562
|
+
code: z.ZodString;
|
|
563
|
+
}, z.core.$strip>;
|
|
556
564
|
export declare const currencyAmount: z.ZodObject<{
|
|
557
565
|
amount: z.ZodString;
|
|
558
566
|
currency: z.ZodString;
|
|
@@ -1573,14 +1581,6 @@ export declare const listCurrenciesParamsFilter: z.ZodObject<{
|
|
|
1573
1581
|
exists: z.ZodOptional<z.ZodBoolean>;
|
|
1574
1582
|
}, z.core.$strip>]>>;
|
|
1575
1583
|
}, z.core.$strip>;
|
|
1576
|
-
export declare const createCurrencyCustomRequest: z.ZodObject<{
|
|
1577
|
-
name: z.ZodString;
|
|
1578
|
-
symbol: z.ZodOptional<z.ZodString>;
|
|
1579
|
-
precision: z.ZodNumber;
|
|
1580
|
-
decimalMark: z.ZodString;
|
|
1581
|
-
thousandSeparator: z.ZodString;
|
|
1582
|
-
code: z.ZodString;
|
|
1583
|
-
}, z.core.$strip>;
|
|
1584
1584
|
export declare const governanceQueryRequest: z.ZodObject<{
|
|
1585
1585
|
includeCredits: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1586
1586
|
customer: z.ZodObject<{
|
|
@@ -1636,7 +1636,7 @@ export declare const creditAdjustment: z.ZodObject<{
|
|
|
1636
1636
|
labels: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1637
1637
|
}, z.core.$strip>;
|
|
1638
1638
|
export declare const creditBalance: z.ZodObject<{
|
|
1639
|
-
currency: z.ZodUnion<readonly [z.ZodString]>;
|
|
1639
|
+
currency: z.ZodUnion<readonly [z.ZodString, z.ZodString]>;
|
|
1640
1640
|
live: z.ZodString;
|
|
1641
1641
|
settled: z.ZodString;
|
|
1642
1642
|
pending: z.ZodString;
|
|
@@ -1645,7 +1645,7 @@ export declare const createCreditAdjustmentRequest: z.ZodObject<{
|
|
|
1645
1645
|
name: z.ZodString;
|
|
1646
1646
|
description: z.ZodOptional<z.ZodString>;
|
|
1647
1647
|
labels: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1648
|
-
currency: z.ZodUnion<readonly [z.ZodString]>;
|
|
1648
|
+
currency: z.ZodUnion<readonly [z.ZodString, z.ZodString]>;
|
|
1649
1649
|
amount: z.ZodString;
|
|
1650
1650
|
}, z.core.$strip>;
|
|
1651
1651
|
export declare const listCreditTransactionsParamsFilter: z.ZodObject<{
|
|
@@ -1655,7 +1655,7 @@ export declare const listCreditTransactionsParamsFilter: z.ZodObject<{
|
|
|
1655
1655
|
funded: "funded";
|
|
1656
1656
|
voided: "voided";
|
|
1657
1657
|
}>>;
|
|
1658
|
-
currency: z.ZodOptional<z.ZodUnion<readonly [z.ZodString]>>;
|
|
1658
|
+
currency: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
1659
1659
|
featureKey: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
1660
1660
|
eq: z.ZodOptional<z.ZodString>;
|
|
1661
1661
|
neq: z.ZodOptional<z.ZodString>;
|
|
@@ -1682,7 +1682,7 @@ export declare const creditTransaction: z.ZodObject<{
|
|
|
1682
1682
|
funded: "funded";
|
|
1683
1683
|
voided: "voided";
|
|
1684
1684
|
}>;
|
|
1685
|
-
currency: z.ZodUnion<readonly [z.ZodString]>;
|
|
1685
|
+
currency: z.ZodUnion<readonly [z.ZodString, z.ZodString]>;
|
|
1686
1686
|
amount: z.ZodString;
|
|
1687
1687
|
availableBalance: z.ZodObject<{
|
|
1688
1688
|
before: z.ZodString;
|
|
@@ -3088,7 +3088,7 @@ export declare const upsertCustomerBillingDataRequest: z.ZodObject<{
|
|
|
3088
3088
|
export declare const creditBalances: z.ZodObject<{
|
|
3089
3089
|
retrievedAt: z.ZodDate;
|
|
3090
3090
|
balances: z.ZodArray<z.ZodObject<{
|
|
3091
|
-
currency: z.ZodUnion<readonly [z.ZodString]>;
|
|
3091
|
+
currency: z.ZodUnion<readonly [z.ZodString, z.ZodString]>;
|
|
3092
3092
|
live: z.ZodString;
|
|
3093
3093
|
settled: z.ZodString;
|
|
3094
3094
|
pending: z.ZodString;
|
|
@@ -3108,7 +3108,7 @@ export declare const creditTransactionPaginatedResponse: z.ZodObject<{
|
|
|
3108
3108
|
funded: "funded";
|
|
3109
3109
|
voided: "voided";
|
|
3110
3110
|
}>;
|
|
3111
|
-
currency: z.ZodUnion<readonly [z.ZodString]>;
|
|
3111
|
+
currency: z.ZodUnion<readonly [z.ZodString, z.ZodString]>;
|
|
3112
3112
|
amount: z.ZodString;
|
|
3113
3113
|
availableBalance: z.ZodObject<{
|
|
3114
3114
|
before: z.ZodString;
|
|
@@ -3253,7 +3253,7 @@ export declare const createCreditGrantRequest: z.ZodObject<{
|
|
|
3253
3253
|
invoice: "invoice";
|
|
3254
3254
|
none: "none";
|
|
3255
3255
|
}>;
|
|
3256
|
-
currency: z.ZodUnion<readonly [z.ZodString]>;
|
|
3256
|
+
currency: z.ZodUnion<readonly [z.ZodString, z.ZodString]>;
|
|
3257
3257
|
amount: z.ZodString;
|
|
3258
3258
|
purchase: z.ZodOptional<z.ZodObject<{
|
|
3259
3259
|
currency: z.ZodString;
|
|
@@ -3292,7 +3292,7 @@ export declare const creditGrant: z.ZodObject<{
|
|
|
3292
3292
|
invoice: "invoice";
|
|
3293
3293
|
none: "none";
|
|
3294
3294
|
}>;
|
|
3295
|
-
currency: z.ZodUnion<readonly [z.ZodString]>;
|
|
3295
|
+
currency: z.ZodUnion<readonly [z.ZodString, z.ZodString]>;
|
|
3296
3296
|
amount: z.ZodString;
|
|
3297
3297
|
purchase: z.ZodOptional<z.ZodObject<{
|
|
3298
3298
|
currency: z.ZodString;
|
|
@@ -4395,7 +4395,7 @@ export declare const creditGrantPagePaginatedResponse: z.ZodObject<{
|
|
|
4395
4395
|
invoice: "invoice";
|
|
4396
4396
|
none: "none";
|
|
4397
4397
|
}>;
|
|
4398
|
-
currency: z.ZodUnion<readonly [z.ZodString]>;
|
|
4398
|
+
currency: z.ZodUnion<readonly [z.ZodString, z.ZodString]>;
|
|
4399
4399
|
amount: z.ZodString;
|
|
4400
4400
|
purchase: z.ZodOptional<z.ZodObject<{
|
|
4401
4401
|
currency: z.ZodString;
|
|
@@ -5206,6 +5206,7 @@ export declare const rateCard: z.ZodObject<{
|
|
|
5206
5206
|
feature: z.ZodOptional<z.ZodObject<{
|
|
5207
5207
|
id: z.ZodString;
|
|
5208
5208
|
}, z.core.$strip>>;
|
|
5209
|
+
currency: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
5209
5210
|
billingCadence: z.ZodOptional<z.ZodString>;
|
|
5210
5211
|
price: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
5211
5212
|
type: z.ZodLiteral<"free">;
|
|
@@ -6499,6 +6500,7 @@ export declare const subscriptionAddonRateCard: z.ZodObject<{
|
|
|
6499
6500
|
feature: z.ZodOptional<z.ZodObject<{
|
|
6500
6501
|
id: z.ZodString;
|
|
6501
6502
|
}, z.core.$strip>>;
|
|
6503
|
+
currency: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
6502
6504
|
billingCadence: z.ZodOptional<z.ZodString>;
|
|
6503
6505
|
price: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
6504
6506
|
type: z.ZodLiteral<"free">;
|
|
@@ -6596,6 +6598,7 @@ export declare const planPhase: z.ZodObject<{
|
|
|
6596
6598
|
feature: z.ZodOptional<z.ZodObject<{
|
|
6597
6599
|
id: z.ZodString;
|
|
6598
6600
|
}, z.core.$strip>>;
|
|
6601
|
+
currency: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
6599
6602
|
billingCadence: z.ZodOptional<z.ZodString>;
|
|
6600
6603
|
price: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
6601
6604
|
type: z.ZodLiteral<"free">;
|
|
@@ -6692,7 +6695,7 @@ export declare const addon: z.ZodObject<{
|
|
|
6692
6695
|
multiple: "multiple";
|
|
6693
6696
|
single: "single";
|
|
6694
6697
|
}>;
|
|
6695
|
-
currency: z.ZodUnion<readonly [z.ZodString]>;
|
|
6698
|
+
currency: z.ZodUnion<readonly [z.ZodString, z.ZodString]>;
|
|
6696
6699
|
effectiveFrom: z.ZodOptional<z.ZodDate>;
|
|
6697
6700
|
effectiveTo: z.ZodOptional<z.ZodDate>;
|
|
6698
6701
|
status: z.ZodEnum<{
|
|
@@ -6708,6 +6711,7 @@ export declare const addon: z.ZodObject<{
|
|
|
6708
6711
|
feature: z.ZodOptional<z.ZodObject<{
|
|
6709
6712
|
id: z.ZodString;
|
|
6710
6713
|
}, z.core.$strip>>;
|
|
6714
|
+
currency: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
6711
6715
|
billingCadence: z.ZodOptional<z.ZodString>;
|
|
6712
6716
|
price: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
6713
6717
|
type: z.ZodLiteral<"free">;
|
|
@@ -6805,7 +6809,7 @@ export declare const createAddonRequest: z.ZodObject<{
|
|
|
6805
6809
|
multiple: "multiple";
|
|
6806
6810
|
single: "single";
|
|
6807
6811
|
}>;
|
|
6808
|
-
currency: z.ZodUnion<readonly [z.ZodString]>;
|
|
6812
|
+
currency: z.ZodUnion<readonly [z.ZodString, z.ZodString]>;
|
|
6809
6813
|
rateCards: z.ZodArray<z.ZodObject<{
|
|
6810
6814
|
name: z.ZodString;
|
|
6811
6815
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -6814,6 +6818,7 @@ export declare const createAddonRequest: z.ZodObject<{
|
|
|
6814
6818
|
feature: z.ZodOptional<z.ZodObject<{
|
|
6815
6819
|
id: z.ZodString;
|
|
6816
6820
|
}, z.core.$strip>>;
|
|
6821
|
+
currency: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
6817
6822
|
billingCadence: z.ZodOptional<z.ZodString>;
|
|
6818
6823
|
price: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
6819
6824
|
type: z.ZodLiteral<"free">;
|
|
@@ -6912,6 +6917,7 @@ export declare const upsertAddonRequest: z.ZodObject<{
|
|
|
6912
6917
|
feature: z.ZodOptional<z.ZodObject<{
|
|
6913
6918
|
id: z.ZodString;
|
|
6914
6919
|
}, z.core.$strip>>;
|
|
6920
|
+
currency: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
6915
6921
|
billingCadence: z.ZodOptional<z.ZodString>;
|
|
6916
6922
|
price: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
6917
6923
|
type: z.ZodLiteral<"free">;
|
|
@@ -7876,6 +7882,7 @@ export declare const subscriptionAddon: z.ZodObject<{
|
|
|
7876
7882
|
feature: z.ZodOptional<z.ZodObject<{
|
|
7877
7883
|
id: z.ZodString;
|
|
7878
7884
|
}, z.core.$strip>>;
|
|
7885
|
+
currency: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
7879
7886
|
billingCadence: z.ZodOptional<z.ZodString>;
|
|
7880
7887
|
price: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
7881
7888
|
type: z.ZodLiteral<"free">;
|
|
@@ -7970,7 +7977,7 @@ export declare const plan: z.ZodObject<{
|
|
|
7970
7977
|
deletedAt: z.ZodOptional<z.ZodDate>;
|
|
7971
7978
|
key: z.ZodString;
|
|
7972
7979
|
version: z.ZodDefault<z.ZodNumber>;
|
|
7973
|
-
currency: z.ZodString
|
|
7980
|
+
currency: z.ZodUnion<readonly [z.ZodString, z.ZodString]>;
|
|
7974
7981
|
billingCadence: z.ZodString;
|
|
7975
7982
|
proRatingEnabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
7976
7983
|
effectiveFrom: z.ZodOptional<z.ZodDate>;
|
|
@@ -7995,6 +8002,7 @@ export declare const plan: z.ZodObject<{
|
|
|
7995
8002
|
feature: z.ZodOptional<z.ZodObject<{
|
|
7996
8003
|
id: z.ZodString;
|
|
7997
8004
|
}, z.core.$strip>>;
|
|
8005
|
+
currency: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
7998
8006
|
billingCadence: z.ZodOptional<z.ZodString>;
|
|
7999
8007
|
price: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
8000
8008
|
type: z.ZodLiteral<"free">;
|
|
@@ -8093,7 +8101,7 @@ export declare const createPlanRequest: z.ZodObject<{
|
|
|
8093
8101
|
description: z.ZodOptional<z.ZodString>;
|
|
8094
8102
|
labels: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
8095
8103
|
key: z.ZodString;
|
|
8096
|
-
currency: z.ZodString
|
|
8104
|
+
currency: z.ZodUnion<readonly [z.ZodString, z.ZodString]>;
|
|
8097
8105
|
billingCadence: z.ZodString;
|
|
8098
8106
|
proRatingEnabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
8099
8107
|
phases: z.ZodArray<z.ZodObject<{
|
|
@@ -8110,6 +8118,7 @@ export declare const createPlanRequest: z.ZodObject<{
|
|
|
8110
8118
|
feature: z.ZodOptional<z.ZodObject<{
|
|
8111
8119
|
id: z.ZodString;
|
|
8112
8120
|
}, z.core.$strip>>;
|
|
8121
|
+
currency: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
8113
8122
|
billingCadence: z.ZodOptional<z.ZodString>;
|
|
8114
8123
|
price: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
8115
8124
|
type: z.ZodLiteral<"free">;
|
|
@@ -8212,6 +8221,7 @@ export declare const upsertPlanRequest: z.ZodObject<{
|
|
|
8212
8221
|
feature: z.ZodOptional<z.ZodObject<{
|
|
8213
8222
|
id: z.ZodString;
|
|
8214
8223
|
}, z.core.$strip>>;
|
|
8224
|
+
currency: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
8215
8225
|
billingCadence: z.ZodOptional<z.ZodString>;
|
|
8216
8226
|
price: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
8217
8227
|
type: z.ZodLiteral<"free">;
|
|
@@ -8310,7 +8320,7 @@ export declare const addonPagePaginatedResponse: z.ZodObject<{
|
|
|
8310
8320
|
multiple: "multiple";
|
|
8311
8321
|
single: "single";
|
|
8312
8322
|
}>;
|
|
8313
|
-
currency: z.ZodUnion<readonly [z.ZodString]>;
|
|
8323
|
+
currency: z.ZodUnion<readonly [z.ZodString, z.ZodString]>;
|
|
8314
8324
|
effectiveFrom: z.ZodOptional<z.ZodDate>;
|
|
8315
8325
|
effectiveTo: z.ZodOptional<z.ZodDate>;
|
|
8316
8326
|
status: z.ZodEnum<{
|
|
@@ -8326,6 +8336,7 @@ export declare const addonPagePaginatedResponse: z.ZodObject<{
|
|
|
8326
8336
|
feature: z.ZodOptional<z.ZodObject<{
|
|
8327
8337
|
id: z.ZodString;
|
|
8328
8338
|
}, z.core.$strip>>;
|
|
8339
|
+
currency: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
8329
8340
|
billingCadence: z.ZodOptional<z.ZodString>;
|
|
8330
8341
|
price: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
8331
8342
|
type: z.ZodLiteral<"free">;
|
|
@@ -9164,6 +9175,7 @@ export declare const subscriptionAddonPagePaginatedResponse: z.ZodObject<{
|
|
|
9164
9175
|
feature: z.ZodOptional<z.ZodObject<{
|
|
9165
9176
|
id: z.ZodString;
|
|
9166
9177
|
}, z.core.$strip>>;
|
|
9178
|
+
currency: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
9167
9179
|
billingCadence: z.ZodOptional<z.ZodString>;
|
|
9168
9180
|
price: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
9169
9181
|
type: z.ZodLiteral<"free">;
|
|
@@ -9267,7 +9279,7 @@ export declare const planPagePaginatedResponse: z.ZodObject<{
|
|
|
9267
9279
|
deletedAt: z.ZodOptional<z.ZodDate>;
|
|
9268
9280
|
key: z.ZodString;
|
|
9269
9281
|
version: z.ZodDefault<z.ZodNumber>;
|
|
9270
|
-
currency: z.ZodString
|
|
9282
|
+
currency: z.ZodUnion<readonly [z.ZodString, z.ZodString]>;
|
|
9271
9283
|
billingCadence: z.ZodString;
|
|
9272
9284
|
proRatingEnabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
9273
9285
|
effectiveFrom: z.ZodOptional<z.ZodDate>;
|
|
@@ -9292,6 +9304,7 @@ export declare const planPagePaginatedResponse: z.ZodObject<{
|
|
|
9292
9304
|
feature: z.ZodOptional<z.ZodObject<{
|
|
9293
9305
|
id: z.ZodString;
|
|
9294
9306
|
}, z.core.$strip>>;
|
|
9307
|
+
currency: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
9295
9308
|
billingCadence: z.ZodOptional<z.ZodString>;
|
|
9296
9309
|
price: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
9297
9310
|
type: z.ZodLiteral<"free">;
|
|
@@ -11490,7 +11503,7 @@ export declare const createCreditGrantBody: z.ZodObject<{
|
|
|
11490
11503
|
invoice: "invoice";
|
|
11491
11504
|
none: "none";
|
|
11492
11505
|
}>;
|
|
11493
|
-
currency: z.ZodUnion<readonly [z.ZodString]>;
|
|
11506
|
+
currency: z.ZodUnion<readonly [z.ZodString, z.ZodString]>;
|
|
11494
11507
|
amount: z.ZodString;
|
|
11495
11508
|
purchase: z.ZodOptional<z.ZodObject<{
|
|
11496
11509
|
currency: z.ZodString;
|
|
@@ -11529,7 +11542,7 @@ export declare const createCreditGrantResponse: z.ZodObject<{
|
|
|
11529
11542
|
invoice: "invoice";
|
|
11530
11543
|
none: "none";
|
|
11531
11544
|
}>;
|
|
11532
|
-
currency: z.ZodUnion<readonly [z.ZodString]>;
|
|
11545
|
+
currency: z.ZodUnion<readonly [z.ZodString, z.ZodString]>;
|
|
11533
11546
|
amount: z.ZodString;
|
|
11534
11547
|
purchase: z.ZodOptional<z.ZodObject<{
|
|
11535
11548
|
currency: z.ZodString;
|
|
@@ -11591,7 +11604,7 @@ export declare const getCreditGrantResponse: z.ZodObject<{
|
|
|
11591
11604
|
invoice: "invoice";
|
|
11592
11605
|
none: "none";
|
|
11593
11606
|
}>;
|
|
11594
|
-
currency: z.ZodUnion<readonly [z.ZodString]>;
|
|
11607
|
+
currency: z.ZodUnion<readonly [z.ZodString, z.ZodString]>;
|
|
11595
11608
|
amount: z.ZodString;
|
|
11596
11609
|
purchase: z.ZodOptional<z.ZodObject<{
|
|
11597
11610
|
currency: z.ZodString;
|
|
@@ -11680,7 +11693,7 @@ export declare const listCreditGrantsResponse: z.ZodObject<{
|
|
|
11680
11693
|
invoice: "invoice";
|
|
11681
11694
|
none: "none";
|
|
11682
11695
|
}>;
|
|
11683
|
-
currency: z.ZodUnion<readonly [z.ZodString]>;
|
|
11696
|
+
currency: z.ZodUnion<readonly [z.ZodString, z.ZodString]>;
|
|
11684
11697
|
amount: z.ZodString;
|
|
11685
11698
|
purchase: z.ZodOptional<z.ZodObject<{
|
|
11686
11699
|
currency: z.ZodString;
|
|
@@ -11761,7 +11774,7 @@ export declare const getCustomerCreditBalanceQueryParams: z.ZodObject<{
|
|
|
11761
11774
|
export declare const getCustomerCreditBalanceResponse: z.ZodObject<{
|
|
11762
11775
|
retrievedAt: z.ZodDate;
|
|
11763
11776
|
balances: z.ZodArray<z.ZodObject<{
|
|
11764
|
-
currency: z.ZodUnion<readonly [z.ZodString]>;
|
|
11777
|
+
currency: z.ZodUnion<readonly [z.ZodString, z.ZodString]>;
|
|
11765
11778
|
live: z.ZodString;
|
|
11766
11779
|
settled: z.ZodString;
|
|
11767
11780
|
pending: z.ZodString;
|
|
@@ -11774,7 +11787,7 @@ export declare const createCreditAdjustmentBody: z.ZodObject<{
|
|
|
11774
11787
|
name: z.ZodString;
|
|
11775
11788
|
description: z.ZodOptional<z.ZodString>;
|
|
11776
11789
|
labels: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
11777
|
-
currency: z.ZodUnion<readonly [z.ZodString]>;
|
|
11790
|
+
currency: z.ZodUnion<readonly [z.ZodString, z.ZodString]>;
|
|
11778
11791
|
amount: z.ZodString;
|
|
11779
11792
|
}, z.core.$strip>;
|
|
11780
11793
|
export declare const createCreditAdjustmentResponse: z.ZodObject<{
|
|
@@ -11804,7 +11817,7 @@ export declare const voidCreditGrantResponse: z.ZodObject<{
|
|
|
11804
11817
|
invoice: "invoice";
|
|
11805
11818
|
none: "none";
|
|
11806
11819
|
}>;
|
|
11807
|
-
currency: z.ZodUnion<readonly [z.ZodString]>;
|
|
11820
|
+
currency: z.ZodUnion<readonly [z.ZodString, z.ZodString]>;
|
|
11808
11821
|
amount: z.ZodString;
|
|
11809
11822
|
purchase: z.ZodOptional<z.ZodObject<{
|
|
11810
11823
|
currency: z.ZodString;
|
|
@@ -11873,7 +11886,7 @@ export declare const updateCreditGrantExternalSettlementResponse: z.ZodObject<{
|
|
|
11873
11886
|
invoice: "invoice";
|
|
11874
11887
|
none: "none";
|
|
11875
11888
|
}>;
|
|
11876
|
-
currency: z.ZodUnion<readonly [z.ZodString]>;
|
|
11889
|
+
currency: z.ZodUnion<readonly [z.ZodString, z.ZodString]>;
|
|
11877
11890
|
amount: z.ZodString;
|
|
11878
11891
|
purchase: z.ZodOptional<z.ZodObject<{
|
|
11879
11892
|
currency: z.ZodString;
|
|
@@ -11934,7 +11947,7 @@ export declare const listCreditTransactionsQueryParams: z.ZodObject<{
|
|
|
11934
11947
|
funded: "funded";
|
|
11935
11948
|
voided: "voided";
|
|
11936
11949
|
}>>;
|
|
11937
|
-
currency: z.ZodOptional<z.ZodUnion<readonly [z.ZodString]>>;
|
|
11950
|
+
currency: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
11938
11951
|
featureKey: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
11939
11952
|
eq: z.ZodOptional<z.ZodString>;
|
|
11940
11953
|
neq: z.ZodOptional<z.ZodString>;
|
|
@@ -11963,7 +11976,7 @@ export declare const listCreditTransactionsResponse: z.ZodObject<{
|
|
|
11963
11976
|
funded: "funded";
|
|
11964
11977
|
voided: "voided";
|
|
11965
11978
|
}>;
|
|
11966
|
-
currency: z.ZodUnion<readonly [z.ZodString]>;
|
|
11979
|
+
currency: z.ZodUnion<readonly [z.ZodString, z.ZodString]>;
|
|
11967
11980
|
amount: z.ZodString;
|
|
11968
11981
|
availableBalance: z.ZodObject<{
|
|
11969
11982
|
before: z.ZodString;
|
|
@@ -13114,6 +13127,7 @@ export declare const createSubscriptionAddonResponse: z.ZodObject<{
|
|
|
13114
13127
|
feature: z.ZodOptional<z.ZodObject<{
|
|
13115
13128
|
id: z.ZodString;
|
|
13116
13129
|
}, z.core.$strip>>;
|
|
13130
|
+
currency: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
13117
13131
|
billingCadence: z.ZodOptional<z.ZodString>;
|
|
13118
13132
|
price: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
13119
13133
|
type: z.ZodLiteral<"free">;
|
|
@@ -13241,6 +13255,7 @@ export declare const listSubscriptionAddonsResponse: z.ZodObject<{
|
|
|
13241
13255
|
feature: z.ZodOptional<z.ZodObject<{
|
|
13242
13256
|
id: z.ZodString;
|
|
13243
13257
|
}, z.core.$strip>>;
|
|
13258
|
+
currency: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
13244
13259
|
billingCadence: z.ZodOptional<z.ZodString>;
|
|
13245
13260
|
price: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
13246
13261
|
type: z.ZodLiteral<"free">;
|
|
@@ -13366,6 +13381,7 @@ export declare const getSubscriptionAddonResponse: z.ZodObject<{
|
|
|
13366
13381
|
feature: z.ZodOptional<z.ZodObject<{
|
|
13367
13382
|
id: z.ZodString;
|
|
13368
13383
|
}, z.core.$strip>>;
|
|
13384
|
+
currency: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
13369
13385
|
billingCadence: z.ZodOptional<z.ZodString>;
|
|
13370
13386
|
price: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
13371
13387
|
type: z.ZodLiteral<"free">;
|
|
@@ -18345,7 +18361,7 @@ export declare const listPlansResponse: z.ZodObject<{
|
|
|
18345
18361
|
deletedAt: z.ZodOptional<z.ZodDate>;
|
|
18346
18362
|
key: z.ZodString;
|
|
18347
18363
|
version: z.ZodDefault<z.ZodNumber>;
|
|
18348
|
-
currency: z.ZodString
|
|
18364
|
+
currency: z.ZodUnion<readonly [z.ZodString, z.ZodString]>;
|
|
18349
18365
|
billingCadence: z.ZodString;
|
|
18350
18366
|
proRatingEnabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
18351
18367
|
effectiveFrom: z.ZodOptional<z.ZodDate>;
|
|
@@ -18370,6 +18386,7 @@ export declare const listPlansResponse: z.ZodObject<{
|
|
|
18370
18386
|
feature: z.ZodOptional<z.ZodObject<{
|
|
18371
18387
|
id: z.ZodString;
|
|
18372
18388
|
}, z.core.$strip>>;
|
|
18389
|
+
currency: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
18373
18390
|
billingCadence: z.ZodOptional<z.ZodString>;
|
|
18374
18391
|
price: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
18375
18392
|
type: z.ZodLiteral<"free">;
|
|
@@ -18476,7 +18493,7 @@ export declare const createPlanBody: z.ZodObject<{
|
|
|
18476
18493
|
description: z.ZodOptional<z.ZodString>;
|
|
18477
18494
|
labels: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
18478
18495
|
key: z.ZodString;
|
|
18479
|
-
currency: z.ZodString
|
|
18496
|
+
currency: z.ZodUnion<readonly [z.ZodString, z.ZodString]>;
|
|
18480
18497
|
billingCadence: z.ZodString;
|
|
18481
18498
|
proRatingEnabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
18482
18499
|
phases: z.ZodArray<z.ZodObject<{
|
|
@@ -18493,6 +18510,7 @@ export declare const createPlanBody: z.ZodObject<{
|
|
|
18493
18510
|
feature: z.ZodOptional<z.ZodObject<{
|
|
18494
18511
|
id: z.ZodString;
|
|
18495
18512
|
}, z.core.$strip>>;
|
|
18513
|
+
currency: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
18496
18514
|
billingCadence: z.ZodOptional<z.ZodString>;
|
|
18497
18515
|
price: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
18498
18516
|
type: z.ZodLiteral<"free">;
|
|
@@ -18586,7 +18604,7 @@ export declare const createPlanResponse: z.ZodObject<{
|
|
|
18586
18604
|
deletedAt: z.ZodOptional<z.ZodDate>;
|
|
18587
18605
|
key: z.ZodString;
|
|
18588
18606
|
version: z.ZodDefault<z.ZodNumber>;
|
|
18589
|
-
currency: z.ZodString
|
|
18607
|
+
currency: z.ZodUnion<readonly [z.ZodString, z.ZodString]>;
|
|
18590
18608
|
billingCadence: z.ZodString;
|
|
18591
18609
|
proRatingEnabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
18592
18610
|
effectiveFrom: z.ZodOptional<z.ZodDate>;
|
|
@@ -18611,6 +18629,7 @@ export declare const createPlanResponse: z.ZodObject<{
|
|
|
18611
18629
|
feature: z.ZodOptional<z.ZodObject<{
|
|
18612
18630
|
id: z.ZodString;
|
|
18613
18631
|
}, z.core.$strip>>;
|
|
18632
|
+
currency: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
18614
18633
|
billingCadence: z.ZodOptional<z.ZodString>;
|
|
18615
18634
|
price: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
18616
18635
|
type: z.ZodLiteral<"free">;
|
|
@@ -18726,6 +18745,7 @@ export declare const updatePlanBody: z.ZodObject<{
|
|
|
18726
18745
|
feature: z.ZodOptional<z.ZodObject<{
|
|
18727
18746
|
id: z.ZodString;
|
|
18728
18747
|
}, z.core.$strip>>;
|
|
18748
|
+
currency: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
18729
18749
|
billingCadence: z.ZodOptional<z.ZodString>;
|
|
18730
18750
|
price: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
18731
18751
|
type: z.ZodLiteral<"free">;
|
|
@@ -18819,7 +18839,7 @@ export declare const updatePlanResponse: z.ZodObject<{
|
|
|
18819
18839
|
deletedAt: z.ZodOptional<z.ZodDate>;
|
|
18820
18840
|
key: z.ZodString;
|
|
18821
18841
|
version: z.ZodDefault<z.ZodNumber>;
|
|
18822
|
-
currency: z.ZodString
|
|
18842
|
+
currency: z.ZodUnion<readonly [z.ZodString, z.ZodString]>;
|
|
18823
18843
|
billingCadence: z.ZodString;
|
|
18824
18844
|
proRatingEnabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
18825
18845
|
effectiveFrom: z.ZodOptional<z.ZodDate>;
|
|
@@ -18844,6 +18864,7 @@ export declare const updatePlanResponse: z.ZodObject<{
|
|
|
18844
18864
|
feature: z.ZodOptional<z.ZodObject<{
|
|
18845
18865
|
id: z.ZodString;
|
|
18846
18866
|
}, z.core.$strip>>;
|
|
18867
|
+
currency: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
18847
18868
|
billingCadence: z.ZodOptional<z.ZodString>;
|
|
18848
18869
|
price: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
18849
18870
|
type: z.ZodLiteral<"free">;
|
|
@@ -18950,7 +18971,7 @@ export declare const getPlanResponse: z.ZodObject<{
|
|
|
18950
18971
|
deletedAt: z.ZodOptional<z.ZodDate>;
|
|
18951
18972
|
key: z.ZodString;
|
|
18952
18973
|
version: z.ZodDefault<z.ZodNumber>;
|
|
18953
|
-
currency: z.ZodString
|
|
18974
|
+
currency: z.ZodUnion<readonly [z.ZodString, z.ZodString]>;
|
|
18954
18975
|
billingCadence: z.ZodString;
|
|
18955
18976
|
proRatingEnabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
18956
18977
|
effectiveFrom: z.ZodOptional<z.ZodDate>;
|
|
@@ -18975,6 +18996,7 @@ export declare const getPlanResponse: z.ZodObject<{
|
|
|
18975
18996
|
feature: z.ZodOptional<z.ZodObject<{
|
|
18976
18997
|
id: z.ZodString;
|
|
18977
18998
|
}, z.core.$strip>>;
|
|
18999
|
+
currency: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
18978
19000
|
billingCadence: z.ZodOptional<z.ZodString>;
|
|
18979
19001
|
price: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
18980
19002
|
type: z.ZodLiteral<"free">;
|
|
@@ -19084,7 +19106,7 @@ export declare const archivePlanResponse: z.ZodObject<{
|
|
|
19084
19106
|
deletedAt: z.ZodOptional<z.ZodDate>;
|
|
19085
19107
|
key: z.ZodString;
|
|
19086
19108
|
version: z.ZodDefault<z.ZodNumber>;
|
|
19087
|
-
currency: z.ZodString
|
|
19109
|
+
currency: z.ZodUnion<readonly [z.ZodString, z.ZodString]>;
|
|
19088
19110
|
billingCadence: z.ZodString;
|
|
19089
19111
|
proRatingEnabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
19090
19112
|
effectiveFrom: z.ZodOptional<z.ZodDate>;
|
|
@@ -19109,6 +19131,7 @@ export declare const archivePlanResponse: z.ZodObject<{
|
|
|
19109
19131
|
feature: z.ZodOptional<z.ZodObject<{
|
|
19110
19132
|
id: z.ZodString;
|
|
19111
19133
|
}, z.core.$strip>>;
|
|
19134
|
+
currency: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
19112
19135
|
billingCadence: z.ZodOptional<z.ZodString>;
|
|
19113
19136
|
price: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
19114
19137
|
type: z.ZodLiteral<"free">;
|
|
@@ -19215,7 +19238,7 @@ export declare const publishPlanResponse: z.ZodObject<{
|
|
|
19215
19238
|
deletedAt: z.ZodOptional<z.ZodDate>;
|
|
19216
19239
|
key: z.ZodString;
|
|
19217
19240
|
version: z.ZodDefault<z.ZodNumber>;
|
|
19218
|
-
currency: z.ZodString
|
|
19241
|
+
currency: z.ZodUnion<readonly [z.ZodString, z.ZodString]>;
|
|
19219
19242
|
billingCadence: z.ZodString;
|
|
19220
19243
|
proRatingEnabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
19221
19244
|
effectiveFrom: z.ZodOptional<z.ZodDate>;
|
|
@@ -19240,6 +19263,7 @@ export declare const publishPlanResponse: z.ZodObject<{
|
|
|
19240
19263
|
feature: z.ZodOptional<z.ZodObject<{
|
|
19241
19264
|
id: z.ZodString;
|
|
19242
19265
|
}, z.core.$strip>>;
|
|
19266
|
+
currency: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
19243
19267
|
billingCadence: z.ZodOptional<z.ZodString>;
|
|
19244
19268
|
price: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
19245
19269
|
type: z.ZodLiteral<"free">;
|
|
@@ -19399,7 +19423,7 @@ export declare const listAddonsResponse: z.ZodObject<{
|
|
|
19399
19423
|
multiple: "multiple";
|
|
19400
19424
|
single: "single";
|
|
19401
19425
|
}>;
|
|
19402
|
-
currency: z.ZodUnion<readonly [z.ZodString]>;
|
|
19426
|
+
currency: z.ZodUnion<readonly [z.ZodString, z.ZodString]>;
|
|
19403
19427
|
effectiveFrom: z.ZodOptional<z.ZodDate>;
|
|
19404
19428
|
effectiveTo: z.ZodOptional<z.ZodDate>;
|
|
19405
19429
|
status: z.ZodEnum<{
|
|
@@ -19415,6 +19439,7 @@ export declare const listAddonsResponse: z.ZodObject<{
|
|
|
19415
19439
|
feature: z.ZodOptional<z.ZodObject<{
|
|
19416
19440
|
id: z.ZodString;
|
|
19417
19441
|
}, z.core.$strip>>;
|
|
19442
|
+
currency: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
19418
19443
|
billingCadence: z.ZodOptional<z.ZodString>;
|
|
19419
19444
|
price: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
19420
19445
|
type: z.ZodLiteral<"free">;
|
|
@@ -19520,7 +19545,7 @@ export declare const createAddonBody: z.ZodObject<{
|
|
|
19520
19545
|
multiple: "multiple";
|
|
19521
19546
|
single: "single";
|
|
19522
19547
|
}>;
|
|
19523
|
-
currency: z.ZodUnion<readonly [z.ZodString]>;
|
|
19548
|
+
currency: z.ZodUnion<readonly [z.ZodString, z.ZodString]>;
|
|
19524
19549
|
rateCards: z.ZodArray<z.ZodObject<{
|
|
19525
19550
|
name: z.ZodString;
|
|
19526
19551
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -19529,6 +19554,7 @@ export declare const createAddonBody: z.ZodObject<{
|
|
|
19529
19554
|
feature: z.ZodOptional<z.ZodObject<{
|
|
19530
19555
|
id: z.ZodString;
|
|
19531
19556
|
}, z.core.$strip>>;
|
|
19557
|
+
currency: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
19532
19558
|
billingCadence: z.ZodOptional<z.ZodString>;
|
|
19533
19559
|
price: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
19534
19560
|
type: z.ZodLiteral<"free">;
|
|
@@ -19625,7 +19651,7 @@ export declare const createAddonResponse: z.ZodObject<{
|
|
|
19625
19651
|
multiple: "multiple";
|
|
19626
19652
|
single: "single";
|
|
19627
19653
|
}>;
|
|
19628
|
-
currency: z.ZodUnion<readonly [z.ZodString]>;
|
|
19654
|
+
currency: z.ZodUnion<readonly [z.ZodString, z.ZodString]>;
|
|
19629
19655
|
effectiveFrom: z.ZodOptional<z.ZodDate>;
|
|
19630
19656
|
effectiveTo: z.ZodOptional<z.ZodDate>;
|
|
19631
19657
|
status: z.ZodEnum<{
|
|
@@ -19641,6 +19667,7 @@ export declare const createAddonResponse: z.ZodObject<{
|
|
|
19641
19667
|
feature: z.ZodOptional<z.ZodObject<{
|
|
19642
19668
|
id: z.ZodString;
|
|
19643
19669
|
}, z.core.$strip>>;
|
|
19670
|
+
currency: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
19644
19671
|
billingCadence: z.ZodOptional<z.ZodString>;
|
|
19645
19672
|
price: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
19646
19673
|
type: z.ZodLiteral<"free">;
|
|
@@ -19748,6 +19775,7 @@ export declare const updateAddonBody: z.ZodObject<{
|
|
|
19748
19775
|
feature: z.ZodOptional<z.ZodObject<{
|
|
19749
19776
|
id: z.ZodString;
|
|
19750
19777
|
}, z.core.$strip>>;
|
|
19778
|
+
currency: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
19751
19779
|
billingCadence: z.ZodOptional<z.ZodString>;
|
|
19752
19780
|
price: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
19753
19781
|
type: z.ZodLiteral<"free">;
|
|
@@ -19844,7 +19872,7 @@ export declare const updateAddonResponse: z.ZodObject<{
|
|
|
19844
19872
|
multiple: "multiple";
|
|
19845
19873
|
single: "single";
|
|
19846
19874
|
}>;
|
|
19847
|
-
currency: z.ZodUnion<readonly [z.ZodString]>;
|
|
19875
|
+
currency: z.ZodUnion<readonly [z.ZodString, z.ZodString]>;
|
|
19848
19876
|
effectiveFrom: z.ZodOptional<z.ZodDate>;
|
|
19849
19877
|
effectiveTo: z.ZodOptional<z.ZodDate>;
|
|
19850
19878
|
status: z.ZodEnum<{
|
|
@@ -19860,6 +19888,7 @@ export declare const updateAddonResponse: z.ZodObject<{
|
|
|
19860
19888
|
feature: z.ZodOptional<z.ZodObject<{
|
|
19861
19889
|
id: z.ZodString;
|
|
19862
19890
|
}, z.core.$strip>>;
|
|
19891
|
+
currency: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
19863
19892
|
billingCadence: z.ZodOptional<z.ZodString>;
|
|
19864
19893
|
price: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
19865
19894
|
type: z.ZodLiteral<"free">;
|
|
@@ -19965,7 +19994,7 @@ export declare const getAddonResponse: z.ZodObject<{
|
|
|
19965
19994
|
multiple: "multiple";
|
|
19966
19995
|
single: "single";
|
|
19967
19996
|
}>;
|
|
19968
|
-
currency: z.ZodUnion<readonly [z.ZodString]>;
|
|
19997
|
+
currency: z.ZodUnion<readonly [z.ZodString, z.ZodString]>;
|
|
19969
19998
|
effectiveFrom: z.ZodOptional<z.ZodDate>;
|
|
19970
19999
|
effectiveTo: z.ZodOptional<z.ZodDate>;
|
|
19971
20000
|
status: z.ZodEnum<{
|
|
@@ -19981,6 +20010,7 @@ export declare const getAddonResponse: z.ZodObject<{
|
|
|
19981
20010
|
feature: z.ZodOptional<z.ZodObject<{
|
|
19982
20011
|
id: z.ZodString;
|
|
19983
20012
|
}, z.core.$strip>>;
|
|
20013
|
+
currency: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
19984
20014
|
billingCadence: z.ZodOptional<z.ZodString>;
|
|
19985
20015
|
price: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
19986
20016
|
type: z.ZodLiteral<"free">;
|
|
@@ -20089,7 +20119,7 @@ export declare const archiveAddonResponse: z.ZodObject<{
|
|
|
20089
20119
|
multiple: "multiple";
|
|
20090
20120
|
single: "single";
|
|
20091
20121
|
}>;
|
|
20092
|
-
currency: z.ZodUnion<readonly [z.ZodString]>;
|
|
20122
|
+
currency: z.ZodUnion<readonly [z.ZodString, z.ZodString]>;
|
|
20093
20123
|
effectiveFrom: z.ZodOptional<z.ZodDate>;
|
|
20094
20124
|
effectiveTo: z.ZodOptional<z.ZodDate>;
|
|
20095
20125
|
status: z.ZodEnum<{
|
|
@@ -20105,6 +20135,7 @@ export declare const archiveAddonResponse: z.ZodObject<{
|
|
|
20105
20135
|
feature: z.ZodOptional<z.ZodObject<{
|
|
20106
20136
|
id: z.ZodString;
|
|
20107
20137
|
}, z.core.$strip>>;
|
|
20138
|
+
currency: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
20108
20139
|
billingCadence: z.ZodOptional<z.ZodString>;
|
|
20109
20140
|
price: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
20110
20141
|
type: z.ZodLiteral<"free">;
|
|
@@ -20210,7 +20241,7 @@ export declare const publishAddonResponse: z.ZodObject<{
|
|
|
20210
20241
|
multiple: "multiple";
|
|
20211
20242
|
single: "single";
|
|
20212
20243
|
}>;
|
|
20213
|
-
currency: z.ZodUnion<readonly [z.ZodString]>;
|
|
20244
|
+
currency: z.ZodUnion<readonly [z.ZodString, z.ZodString]>;
|
|
20214
20245
|
effectiveFrom: z.ZodOptional<z.ZodDate>;
|
|
20215
20246
|
effectiveTo: z.ZodOptional<z.ZodDate>;
|
|
20216
20247
|
status: z.ZodEnum<{
|
|
@@ -20226,6 +20257,7 @@ export declare const publishAddonResponse: z.ZodObject<{
|
|
|
20226
20257
|
feature: z.ZodOptional<z.ZodObject<{
|
|
20227
20258
|
id: z.ZodString;
|
|
20228
20259
|
}, z.core.$strip>>;
|
|
20260
|
+
currency: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
20229
20261
|
billingCadence: z.ZodOptional<z.ZodString>;
|
|
20230
20262
|
price: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
20231
20263
|
type: z.ZodLiteral<"free">;
|
|
@@ -20552,6 +20584,7 @@ export declare const queryGovernanceAccessResponse: z.ZodObject<{
|
|
|
20552
20584
|
}, z.core.$strip>;
|
|
20553
20585
|
export declare const labelsWire: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
20554
20586
|
export declare const currencyCodeWire: z.ZodString;
|
|
20587
|
+
export declare const currencyCodeCustomWire: z.ZodString;
|
|
20555
20588
|
export declare const numericWire: z.ZodString;
|
|
20556
20589
|
export declare const cursorPaginationQueryPageWire: z.ZodObject<{
|
|
20557
20590
|
size: z.ZodOptional<z.ZodNumber>;
|
|
@@ -20933,7 +20966,6 @@ export declare const currencyTypeWire: z.ZodEnum<{
|
|
|
20933
20966
|
export declare const currencyExpandWire: z.ZodEnum<{
|
|
20934
20967
|
cost_basis: "cost_basis";
|
|
20935
20968
|
}>;
|
|
20936
|
-
export declare const currencyCodeCustomWire: z.ZodString;
|
|
20937
20969
|
export declare const featureLlmTokenTypeWire: z.ZodEnum<{
|
|
20938
20970
|
cache_read: "cache_read";
|
|
20939
20971
|
cache_write: "cache_write";
|
|
@@ -21090,8 +21122,6 @@ export declare const appCustomerDataStripeWire: z.ZodObject<{
|
|
|
21090
21122
|
export declare const appCustomerDataExternalInvoicingWire: z.ZodObject<{
|
|
21091
21123
|
labels: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
21092
21124
|
}, z.core.$strict>;
|
|
21093
|
-
export declare const billingCurrencyCodeWire: z.ZodUnion<readonly [z.ZodString]>;
|
|
21094
|
-
export declare const createCurrencyCodeWire: z.ZodUnion<readonly [z.ZodString]>;
|
|
21095
21125
|
export declare const currencyFiatWire: z.ZodObject<{
|
|
21096
21126
|
type: z.ZodLiteral<"fiat">;
|
|
21097
21127
|
name: z.ZodString;
|
|
@@ -21104,6 +21134,16 @@ export declare const currencyFiatWire: z.ZodObject<{
|
|
|
21104
21134
|
export declare const listCostBasesParamsFilterWire: z.ZodObject<{
|
|
21105
21135
|
fiat_code: z.ZodOptional<z.ZodString>;
|
|
21106
21136
|
}, z.core.$strict>;
|
|
21137
|
+
export declare const billingCurrencyCodeWire: z.ZodUnion<readonly [z.ZodString, z.ZodString]>;
|
|
21138
|
+
export declare const createCurrencyCodeWire: z.ZodUnion<readonly [z.ZodString, z.ZodString]>;
|
|
21139
|
+
export declare const createCurrencyCustomRequestWire: z.ZodObject<{
|
|
21140
|
+
name: z.ZodString;
|
|
21141
|
+
symbol: z.ZodOptional<z.ZodString>;
|
|
21142
|
+
precision: z.ZodNumber;
|
|
21143
|
+
decimal_mark: z.ZodString;
|
|
21144
|
+
thousand_separator: z.ZodString;
|
|
21145
|
+
code: z.ZodString;
|
|
21146
|
+
}, z.core.$strict>;
|
|
21107
21147
|
export declare const currencyAmountWire: z.ZodObject<{
|
|
21108
21148
|
amount: z.ZodString;
|
|
21109
21149
|
currency: z.ZodString;
|
|
@@ -22124,14 +22164,6 @@ export declare const listCurrenciesParamsFilterWire: z.ZodObject<{
|
|
|
22124
22164
|
exists: z.ZodOptional<z.ZodBoolean>;
|
|
22125
22165
|
}, z.core.$strict>]>>;
|
|
22126
22166
|
}, z.core.$strict>;
|
|
22127
|
-
export declare const createCurrencyCustomRequestWire: z.ZodObject<{
|
|
22128
|
-
name: z.ZodString;
|
|
22129
|
-
symbol: z.ZodOptional<z.ZodString>;
|
|
22130
|
-
precision: z.ZodNumber;
|
|
22131
|
-
decimal_mark: z.ZodString;
|
|
22132
|
-
thousand_separator: z.ZodString;
|
|
22133
|
-
code: z.ZodString;
|
|
22134
|
-
}, z.core.$strict>;
|
|
22135
22167
|
export declare const governanceQueryRequestWire: z.ZodObject<{
|
|
22136
22168
|
include_credits: z.ZodOptional<z.ZodBoolean>;
|
|
22137
22169
|
customer: z.ZodObject<{
|
|
@@ -22187,7 +22219,7 @@ export declare const creditAdjustmentWire: z.ZodObject<{
|
|
|
22187
22219
|
labels: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
22188
22220
|
}, z.core.$strict>;
|
|
22189
22221
|
export declare const creditBalanceWire: z.ZodObject<{
|
|
22190
|
-
currency: z.ZodUnion<readonly [z.ZodString]>;
|
|
22222
|
+
currency: z.ZodUnion<readonly [z.ZodString, z.ZodString]>;
|
|
22191
22223
|
live: z.ZodString;
|
|
22192
22224
|
settled: z.ZodString;
|
|
22193
22225
|
pending: z.ZodString;
|
|
@@ -22196,7 +22228,7 @@ export declare const createCreditAdjustmentRequestWire: z.ZodObject<{
|
|
|
22196
22228
|
name: z.ZodString;
|
|
22197
22229
|
description: z.ZodOptional<z.ZodString>;
|
|
22198
22230
|
labels: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
22199
|
-
currency: z.ZodUnion<readonly [z.ZodString]>;
|
|
22231
|
+
currency: z.ZodUnion<readonly [z.ZodString, z.ZodString]>;
|
|
22200
22232
|
amount: z.ZodString;
|
|
22201
22233
|
}, z.core.$strict>;
|
|
22202
22234
|
export declare const listCreditTransactionsParamsFilterWire: z.ZodObject<{
|
|
@@ -22206,7 +22238,7 @@ export declare const listCreditTransactionsParamsFilterWire: z.ZodObject<{
|
|
|
22206
22238
|
funded: "funded";
|
|
22207
22239
|
voided: "voided";
|
|
22208
22240
|
}>>;
|
|
22209
|
-
currency: z.ZodOptional<z.ZodUnion<readonly [z.ZodString]>>;
|
|
22241
|
+
currency: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
22210
22242
|
feature_key: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
22211
22243
|
eq: z.ZodOptional<z.ZodString>;
|
|
22212
22244
|
neq: z.ZodOptional<z.ZodString>;
|
|
@@ -22233,7 +22265,7 @@ export declare const creditTransactionWire: z.ZodObject<{
|
|
|
22233
22265
|
funded: "funded";
|
|
22234
22266
|
voided: "voided";
|
|
22235
22267
|
}>;
|
|
22236
|
-
currency: z.ZodUnion<readonly [z.ZodString]>;
|
|
22268
|
+
currency: z.ZodUnion<readonly [z.ZodString, z.ZodString]>;
|
|
22237
22269
|
amount: z.ZodString;
|
|
22238
22270
|
available_balance: z.ZodObject<{
|
|
22239
22271
|
before: z.ZodString;
|
|
@@ -23639,7 +23671,7 @@ export declare const upsertCustomerBillingDataRequestWire: z.ZodObject<{
|
|
|
23639
23671
|
export declare const creditBalancesWire: z.ZodObject<{
|
|
23640
23672
|
retrieved_at: z.ZodString;
|
|
23641
23673
|
balances: z.ZodArray<z.ZodObject<{
|
|
23642
|
-
currency: z.ZodUnion<readonly [z.ZodString]>;
|
|
23674
|
+
currency: z.ZodUnion<readonly [z.ZodString, z.ZodString]>;
|
|
23643
23675
|
live: z.ZodString;
|
|
23644
23676
|
settled: z.ZodString;
|
|
23645
23677
|
pending: z.ZodString;
|
|
@@ -23659,7 +23691,7 @@ export declare const creditTransactionPaginatedResponseWire: z.ZodObject<{
|
|
|
23659
23691
|
funded: "funded";
|
|
23660
23692
|
voided: "voided";
|
|
23661
23693
|
}>;
|
|
23662
|
-
currency: z.ZodUnion<readonly [z.ZodString]>;
|
|
23694
|
+
currency: z.ZodUnion<readonly [z.ZodString, z.ZodString]>;
|
|
23663
23695
|
amount: z.ZodString;
|
|
23664
23696
|
available_balance: z.ZodObject<{
|
|
23665
23697
|
before: z.ZodString;
|
|
@@ -23804,7 +23836,7 @@ export declare const createCreditGrantRequestWire: z.ZodObject<{
|
|
|
23804
23836
|
invoice: "invoice";
|
|
23805
23837
|
none: "none";
|
|
23806
23838
|
}>;
|
|
23807
|
-
currency: z.ZodUnion<readonly [z.ZodString]>;
|
|
23839
|
+
currency: z.ZodUnion<readonly [z.ZodString, z.ZodString]>;
|
|
23808
23840
|
amount: z.ZodString;
|
|
23809
23841
|
purchase: z.ZodOptional<z.ZodObject<{
|
|
23810
23842
|
currency: z.ZodString;
|
|
@@ -23843,7 +23875,7 @@ export declare const creditGrantWire: z.ZodObject<{
|
|
|
23843
23875
|
invoice: "invoice";
|
|
23844
23876
|
none: "none";
|
|
23845
23877
|
}>;
|
|
23846
|
-
currency: z.ZodUnion<readonly [z.ZodString]>;
|
|
23878
|
+
currency: z.ZodUnion<readonly [z.ZodString, z.ZodString]>;
|
|
23847
23879
|
amount: z.ZodString;
|
|
23848
23880
|
purchase: z.ZodOptional<z.ZodObject<{
|
|
23849
23881
|
currency: z.ZodString;
|
|
@@ -24946,7 +24978,7 @@ export declare const creditGrantPagePaginatedResponseWire: z.ZodObject<{
|
|
|
24946
24978
|
invoice: "invoice";
|
|
24947
24979
|
none: "none";
|
|
24948
24980
|
}>;
|
|
24949
|
-
currency: z.ZodUnion<readonly [z.ZodString]>;
|
|
24981
|
+
currency: z.ZodUnion<readonly [z.ZodString, z.ZodString]>;
|
|
24950
24982
|
amount: z.ZodString;
|
|
24951
24983
|
purchase: z.ZodOptional<z.ZodObject<{
|
|
24952
24984
|
currency: z.ZodString;
|
|
@@ -25757,6 +25789,7 @@ export declare const rateCardWire: z.ZodObject<{
|
|
|
25757
25789
|
feature: z.ZodOptional<z.ZodObject<{
|
|
25758
25790
|
id: z.ZodString;
|
|
25759
25791
|
}, z.core.$strict>>;
|
|
25792
|
+
currency: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
25760
25793
|
billing_cadence: z.ZodOptional<z.ZodString>;
|
|
25761
25794
|
price: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
25762
25795
|
type: z.ZodLiteral<"free">;
|
|
@@ -27050,6 +27083,7 @@ export declare const subscriptionAddonRateCardWire: z.ZodObject<{
|
|
|
27050
27083
|
feature: z.ZodOptional<z.ZodObject<{
|
|
27051
27084
|
id: z.ZodString;
|
|
27052
27085
|
}, z.core.$strict>>;
|
|
27086
|
+
currency: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
27053
27087
|
billing_cadence: z.ZodOptional<z.ZodString>;
|
|
27054
27088
|
price: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
27055
27089
|
type: z.ZodLiteral<"free">;
|
|
@@ -27147,6 +27181,7 @@ export declare const planPhaseWire: z.ZodObject<{
|
|
|
27147
27181
|
feature: z.ZodOptional<z.ZodObject<{
|
|
27148
27182
|
id: z.ZodString;
|
|
27149
27183
|
}, z.core.$strict>>;
|
|
27184
|
+
currency: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
27150
27185
|
billing_cadence: z.ZodOptional<z.ZodString>;
|
|
27151
27186
|
price: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
27152
27187
|
type: z.ZodLiteral<"free">;
|
|
@@ -27243,7 +27278,7 @@ export declare const addonWire: z.ZodObject<{
|
|
|
27243
27278
|
multiple: "multiple";
|
|
27244
27279
|
single: "single";
|
|
27245
27280
|
}>;
|
|
27246
|
-
currency: z.ZodUnion<readonly [z.ZodString]>;
|
|
27281
|
+
currency: z.ZodUnion<readonly [z.ZodString, z.ZodString]>;
|
|
27247
27282
|
effective_from: z.ZodOptional<z.ZodString>;
|
|
27248
27283
|
effective_to: z.ZodOptional<z.ZodString>;
|
|
27249
27284
|
status: z.ZodEnum<{
|
|
@@ -27259,6 +27294,7 @@ export declare const addonWire: z.ZodObject<{
|
|
|
27259
27294
|
feature: z.ZodOptional<z.ZodObject<{
|
|
27260
27295
|
id: z.ZodString;
|
|
27261
27296
|
}, z.core.$strict>>;
|
|
27297
|
+
currency: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
27262
27298
|
billing_cadence: z.ZodOptional<z.ZodString>;
|
|
27263
27299
|
price: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
27264
27300
|
type: z.ZodLiteral<"free">;
|
|
@@ -27356,7 +27392,7 @@ export declare const createAddonRequestWire: z.ZodObject<{
|
|
|
27356
27392
|
multiple: "multiple";
|
|
27357
27393
|
single: "single";
|
|
27358
27394
|
}>;
|
|
27359
|
-
currency: z.ZodUnion<readonly [z.ZodString]>;
|
|
27395
|
+
currency: z.ZodUnion<readonly [z.ZodString, z.ZodString]>;
|
|
27360
27396
|
rate_cards: z.ZodArray<z.ZodObject<{
|
|
27361
27397
|
name: z.ZodString;
|
|
27362
27398
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -27365,6 +27401,7 @@ export declare const createAddonRequestWire: z.ZodObject<{
|
|
|
27365
27401
|
feature: z.ZodOptional<z.ZodObject<{
|
|
27366
27402
|
id: z.ZodString;
|
|
27367
27403
|
}, z.core.$strict>>;
|
|
27404
|
+
currency: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
27368
27405
|
billing_cadence: z.ZodOptional<z.ZodString>;
|
|
27369
27406
|
price: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
27370
27407
|
type: z.ZodLiteral<"free">;
|
|
@@ -27463,6 +27500,7 @@ export declare const upsertAddonRequestWire: z.ZodObject<{
|
|
|
27463
27500
|
feature: z.ZodOptional<z.ZodObject<{
|
|
27464
27501
|
id: z.ZodString;
|
|
27465
27502
|
}, z.core.$strict>>;
|
|
27503
|
+
currency: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
27466
27504
|
billing_cadence: z.ZodOptional<z.ZodString>;
|
|
27467
27505
|
price: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
27468
27506
|
type: z.ZodLiteral<"free">;
|
|
@@ -28427,6 +28465,7 @@ export declare const subscriptionAddonWire: z.ZodObject<{
|
|
|
28427
28465
|
feature: z.ZodOptional<z.ZodObject<{
|
|
28428
28466
|
id: z.ZodString;
|
|
28429
28467
|
}, z.core.$strict>>;
|
|
28468
|
+
currency: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
28430
28469
|
billing_cadence: z.ZodOptional<z.ZodString>;
|
|
28431
28470
|
price: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
28432
28471
|
type: z.ZodLiteral<"free">;
|
|
@@ -28521,7 +28560,7 @@ export declare const planWire: z.ZodObject<{
|
|
|
28521
28560
|
deleted_at: z.ZodOptional<z.ZodString>;
|
|
28522
28561
|
key: z.ZodString;
|
|
28523
28562
|
version: z.ZodNumber;
|
|
28524
|
-
currency: z.ZodString
|
|
28563
|
+
currency: z.ZodUnion<readonly [z.ZodString, z.ZodString]>;
|
|
28525
28564
|
billing_cadence: z.ZodString;
|
|
28526
28565
|
pro_rating_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
28527
28566
|
effective_from: z.ZodOptional<z.ZodString>;
|
|
@@ -28546,6 +28585,7 @@ export declare const planWire: z.ZodObject<{
|
|
|
28546
28585
|
feature: z.ZodOptional<z.ZodObject<{
|
|
28547
28586
|
id: z.ZodString;
|
|
28548
28587
|
}, z.core.$strict>>;
|
|
28588
|
+
currency: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
28549
28589
|
billing_cadence: z.ZodOptional<z.ZodString>;
|
|
28550
28590
|
price: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
28551
28591
|
type: z.ZodLiteral<"free">;
|
|
@@ -28644,7 +28684,7 @@ export declare const createPlanRequestWire: z.ZodObject<{
|
|
|
28644
28684
|
description: z.ZodOptional<z.ZodString>;
|
|
28645
28685
|
labels: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
28646
28686
|
key: z.ZodString;
|
|
28647
|
-
currency: z.ZodString
|
|
28687
|
+
currency: z.ZodUnion<readonly [z.ZodString, z.ZodString]>;
|
|
28648
28688
|
billing_cadence: z.ZodString;
|
|
28649
28689
|
pro_rating_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
28650
28690
|
phases: z.ZodArray<z.ZodObject<{
|
|
@@ -28661,6 +28701,7 @@ export declare const createPlanRequestWire: z.ZodObject<{
|
|
|
28661
28701
|
feature: z.ZodOptional<z.ZodObject<{
|
|
28662
28702
|
id: z.ZodString;
|
|
28663
28703
|
}, z.core.$strict>>;
|
|
28704
|
+
currency: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
28664
28705
|
billing_cadence: z.ZodOptional<z.ZodString>;
|
|
28665
28706
|
price: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
28666
28707
|
type: z.ZodLiteral<"free">;
|
|
@@ -28763,6 +28804,7 @@ export declare const upsertPlanRequestWire: z.ZodObject<{
|
|
|
28763
28804
|
feature: z.ZodOptional<z.ZodObject<{
|
|
28764
28805
|
id: z.ZodString;
|
|
28765
28806
|
}, z.core.$strict>>;
|
|
28807
|
+
currency: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
28766
28808
|
billing_cadence: z.ZodOptional<z.ZodString>;
|
|
28767
28809
|
price: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
28768
28810
|
type: z.ZodLiteral<"free">;
|
|
@@ -28861,7 +28903,7 @@ export declare const addonPagePaginatedResponseWire: z.ZodObject<{
|
|
|
28861
28903
|
multiple: "multiple";
|
|
28862
28904
|
single: "single";
|
|
28863
28905
|
}>;
|
|
28864
|
-
currency: z.ZodUnion<readonly [z.ZodString]>;
|
|
28906
|
+
currency: z.ZodUnion<readonly [z.ZodString, z.ZodString]>;
|
|
28865
28907
|
effective_from: z.ZodOptional<z.ZodString>;
|
|
28866
28908
|
effective_to: z.ZodOptional<z.ZodString>;
|
|
28867
28909
|
status: z.ZodEnum<{
|
|
@@ -28877,6 +28919,7 @@ export declare const addonPagePaginatedResponseWire: z.ZodObject<{
|
|
|
28877
28919
|
feature: z.ZodOptional<z.ZodObject<{
|
|
28878
28920
|
id: z.ZodString;
|
|
28879
28921
|
}, z.core.$strict>>;
|
|
28922
|
+
currency: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
28880
28923
|
billing_cadence: z.ZodOptional<z.ZodString>;
|
|
28881
28924
|
price: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
28882
28925
|
type: z.ZodLiteral<"free">;
|
|
@@ -29715,6 +29758,7 @@ export declare const subscriptionAddonPagePaginatedResponseWire: z.ZodObject<{
|
|
|
29715
29758
|
feature: z.ZodOptional<z.ZodObject<{
|
|
29716
29759
|
id: z.ZodString;
|
|
29717
29760
|
}, z.core.$strict>>;
|
|
29761
|
+
currency: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
29718
29762
|
billing_cadence: z.ZodOptional<z.ZodString>;
|
|
29719
29763
|
price: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
29720
29764
|
type: z.ZodLiteral<"free">;
|
|
@@ -29818,7 +29862,7 @@ export declare const planPagePaginatedResponseWire: z.ZodObject<{
|
|
|
29818
29862
|
deleted_at: z.ZodOptional<z.ZodString>;
|
|
29819
29863
|
key: z.ZodString;
|
|
29820
29864
|
version: z.ZodNumber;
|
|
29821
|
-
currency: z.ZodString
|
|
29865
|
+
currency: z.ZodUnion<readonly [z.ZodString, z.ZodString]>;
|
|
29822
29866
|
billing_cadence: z.ZodString;
|
|
29823
29867
|
pro_rating_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
29824
29868
|
effective_from: z.ZodOptional<z.ZodString>;
|
|
@@ -29843,6 +29887,7 @@ export declare const planPagePaginatedResponseWire: z.ZodObject<{
|
|
|
29843
29887
|
feature: z.ZodOptional<z.ZodObject<{
|
|
29844
29888
|
id: z.ZodString;
|
|
29845
29889
|
}, z.core.$strict>>;
|
|
29890
|
+
currency: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
29846
29891
|
billing_cadence: z.ZodOptional<z.ZodString>;
|
|
29847
29892
|
price: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
29848
29893
|
type: z.ZodLiteral<"free">;
|
|
@@ -32032,7 +32077,7 @@ export declare const createCreditGrantBodyWire: z.ZodObject<{
|
|
|
32032
32077
|
invoice: "invoice";
|
|
32033
32078
|
none: "none";
|
|
32034
32079
|
}>;
|
|
32035
|
-
currency: z.ZodUnion<readonly [z.ZodString]>;
|
|
32080
|
+
currency: z.ZodUnion<readonly [z.ZodString, z.ZodString]>;
|
|
32036
32081
|
amount: z.ZodString;
|
|
32037
32082
|
purchase: z.ZodOptional<z.ZodObject<{
|
|
32038
32083
|
currency: z.ZodString;
|
|
@@ -32071,7 +32116,7 @@ export declare const createCreditGrantResponseWire: z.ZodObject<{
|
|
|
32071
32116
|
invoice: "invoice";
|
|
32072
32117
|
none: "none";
|
|
32073
32118
|
}>;
|
|
32074
|
-
currency: z.ZodUnion<readonly [z.ZodString]>;
|
|
32119
|
+
currency: z.ZodUnion<readonly [z.ZodString, z.ZodString]>;
|
|
32075
32120
|
amount: z.ZodString;
|
|
32076
32121
|
purchase: z.ZodOptional<z.ZodObject<{
|
|
32077
32122
|
currency: z.ZodString;
|
|
@@ -32133,7 +32178,7 @@ export declare const getCreditGrantResponseWire: z.ZodObject<{
|
|
|
32133
32178
|
invoice: "invoice";
|
|
32134
32179
|
none: "none";
|
|
32135
32180
|
}>;
|
|
32136
|
-
currency: z.ZodUnion<readonly [z.ZodString]>;
|
|
32181
|
+
currency: z.ZodUnion<readonly [z.ZodString, z.ZodString]>;
|
|
32137
32182
|
amount: z.ZodString;
|
|
32138
32183
|
purchase: z.ZodOptional<z.ZodObject<{
|
|
32139
32184
|
currency: z.ZodString;
|
|
@@ -32222,7 +32267,7 @@ export declare const listCreditGrantsResponseWire: z.ZodObject<{
|
|
|
32222
32267
|
invoice: "invoice";
|
|
32223
32268
|
none: "none";
|
|
32224
32269
|
}>;
|
|
32225
|
-
currency: z.ZodUnion<readonly [z.ZodString]>;
|
|
32270
|
+
currency: z.ZodUnion<readonly [z.ZodString, z.ZodString]>;
|
|
32226
32271
|
amount: z.ZodString;
|
|
32227
32272
|
purchase: z.ZodOptional<z.ZodObject<{
|
|
32228
32273
|
currency: z.ZodString;
|
|
@@ -32303,7 +32348,7 @@ export declare const getCustomerCreditBalanceQueryParamsWire: z.ZodObject<{
|
|
|
32303
32348
|
export declare const getCustomerCreditBalanceResponseWire: z.ZodObject<{
|
|
32304
32349
|
retrieved_at: z.ZodString;
|
|
32305
32350
|
balances: z.ZodArray<z.ZodObject<{
|
|
32306
|
-
currency: z.ZodUnion<readonly [z.ZodString]>;
|
|
32351
|
+
currency: z.ZodUnion<readonly [z.ZodString, z.ZodString]>;
|
|
32307
32352
|
live: z.ZodString;
|
|
32308
32353
|
settled: z.ZodString;
|
|
32309
32354
|
pending: z.ZodString;
|
|
@@ -32316,7 +32361,7 @@ export declare const createCreditAdjustmentBodyWire: z.ZodObject<{
|
|
|
32316
32361
|
name: z.ZodString;
|
|
32317
32362
|
description: z.ZodOptional<z.ZodString>;
|
|
32318
32363
|
labels: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
32319
|
-
currency: z.ZodUnion<readonly [z.ZodString]>;
|
|
32364
|
+
currency: z.ZodUnion<readonly [z.ZodString, z.ZodString]>;
|
|
32320
32365
|
amount: z.ZodString;
|
|
32321
32366
|
}, z.core.$strict>;
|
|
32322
32367
|
export declare const createCreditAdjustmentResponseWire: z.ZodObject<{
|
|
@@ -32346,7 +32391,7 @@ export declare const voidCreditGrantResponseWire: z.ZodObject<{
|
|
|
32346
32391
|
invoice: "invoice";
|
|
32347
32392
|
none: "none";
|
|
32348
32393
|
}>;
|
|
32349
|
-
currency: z.ZodUnion<readonly [z.ZodString]>;
|
|
32394
|
+
currency: z.ZodUnion<readonly [z.ZodString, z.ZodString]>;
|
|
32350
32395
|
amount: z.ZodString;
|
|
32351
32396
|
purchase: z.ZodOptional<z.ZodObject<{
|
|
32352
32397
|
currency: z.ZodString;
|
|
@@ -32415,7 +32460,7 @@ export declare const updateCreditGrantExternalSettlementResponseWire: z.ZodObjec
|
|
|
32415
32460
|
invoice: "invoice";
|
|
32416
32461
|
none: "none";
|
|
32417
32462
|
}>;
|
|
32418
|
-
currency: z.ZodUnion<readonly [z.ZodString]>;
|
|
32463
|
+
currency: z.ZodUnion<readonly [z.ZodString, z.ZodString]>;
|
|
32419
32464
|
amount: z.ZodString;
|
|
32420
32465
|
purchase: z.ZodOptional<z.ZodObject<{
|
|
32421
32466
|
currency: z.ZodString;
|
|
@@ -32476,7 +32521,7 @@ export declare const listCreditTransactionsQueryParamsWire: z.ZodObject<{
|
|
|
32476
32521
|
funded: "funded";
|
|
32477
32522
|
voided: "voided";
|
|
32478
32523
|
}>>;
|
|
32479
|
-
currency: z.ZodOptional<z.ZodUnion<readonly [z.ZodString]>>;
|
|
32524
|
+
currency: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
32480
32525
|
feature_key: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
32481
32526
|
eq: z.ZodOptional<z.ZodString>;
|
|
32482
32527
|
neq: z.ZodOptional<z.ZodString>;
|
|
@@ -32505,7 +32550,7 @@ export declare const listCreditTransactionsResponseWire: z.ZodObject<{
|
|
|
32505
32550
|
funded: "funded";
|
|
32506
32551
|
voided: "voided";
|
|
32507
32552
|
}>;
|
|
32508
|
-
currency: z.ZodUnion<readonly [z.ZodString]>;
|
|
32553
|
+
currency: z.ZodUnion<readonly [z.ZodString, z.ZodString]>;
|
|
32509
32554
|
amount: z.ZodString;
|
|
32510
32555
|
available_balance: z.ZodObject<{
|
|
32511
32556
|
before: z.ZodString;
|
|
@@ -33650,6 +33695,7 @@ export declare const createSubscriptionAddonResponseWire: z.ZodObject<{
|
|
|
33650
33695
|
feature: z.ZodOptional<z.ZodObject<{
|
|
33651
33696
|
id: z.ZodString;
|
|
33652
33697
|
}, z.core.$strict>>;
|
|
33698
|
+
currency: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
33653
33699
|
billing_cadence: z.ZodOptional<z.ZodString>;
|
|
33654
33700
|
price: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
33655
33701
|
type: z.ZodLiteral<"free">;
|
|
@@ -33774,6 +33820,7 @@ export declare const listSubscriptionAddonsResponseWire: z.ZodObject<{
|
|
|
33774
33820
|
feature: z.ZodOptional<z.ZodObject<{
|
|
33775
33821
|
id: z.ZodString;
|
|
33776
33822
|
}, z.core.$strict>>;
|
|
33823
|
+
currency: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
33777
33824
|
billing_cadence: z.ZodOptional<z.ZodString>;
|
|
33778
33825
|
price: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
33779
33826
|
type: z.ZodLiteral<"free">;
|
|
@@ -33899,6 +33946,7 @@ export declare const getSubscriptionAddonResponseWire: z.ZodObject<{
|
|
|
33899
33946
|
feature: z.ZodOptional<z.ZodObject<{
|
|
33900
33947
|
id: z.ZodString;
|
|
33901
33948
|
}, z.core.$strict>>;
|
|
33949
|
+
currency: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
33902
33950
|
billing_cadence: z.ZodOptional<z.ZodString>;
|
|
33903
33951
|
price: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
33904
33952
|
type: z.ZodLiteral<"free">;
|
|
@@ -38863,7 +38911,7 @@ export declare const listPlansResponseWire: z.ZodObject<{
|
|
|
38863
38911
|
deleted_at: z.ZodOptional<z.ZodString>;
|
|
38864
38912
|
key: z.ZodString;
|
|
38865
38913
|
version: z.ZodNumber;
|
|
38866
|
-
currency: z.ZodString
|
|
38914
|
+
currency: z.ZodUnion<readonly [z.ZodString, z.ZodString]>;
|
|
38867
38915
|
billing_cadence: z.ZodString;
|
|
38868
38916
|
pro_rating_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
38869
38917
|
effective_from: z.ZodOptional<z.ZodString>;
|
|
@@ -38888,6 +38936,7 @@ export declare const listPlansResponseWire: z.ZodObject<{
|
|
|
38888
38936
|
feature: z.ZodOptional<z.ZodObject<{
|
|
38889
38937
|
id: z.ZodString;
|
|
38890
38938
|
}, z.core.$strict>>;
|
|
38939
|
+
currency: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
38891
38940
|
billing_cadence: z.ZodOptional<z.ZodString>;
|
|
38892
38941
|
price: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
38893
38942
|
type: z.ZodLiteral<"free">;
|
|
@@ -38994,7 +39043,7 @@ export declare const createPlanBodyWire: z.ZodObject<{
|
|
|
38994
39043
|
description: z.ZodOptional<z.ZodString>;
|
|
38995
39044
|
labels: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
38996
39045
|
key: z.ZodString;
|
|
38997
|
-
currency: z.ZodString
|
|
39046
|
+
currency: z.ZodUnion<readonly [z.ZodString, z.ZodString]>;
|
|
38998
39047
|
billing_cadence: z.ZodString;
|
|
38999
39048
|
pro_rating_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
39000
39049
|
phases: z.ZodArray<z.ZodObject<{
|
|
@@ -39011,6 +39060,7 @@ export declare const createPlanBodyWire: z.ZodObject<{
|
|
|
39011
39060
|
feature: z.ZodOptional<z.ZodObject<{
|
|
39012
39061
|
id: z.ZodString;
|
|
39013
39062
|
}, z.core.$strict>>;
|
|
39063
|
+
currency: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
39014
39064
|
billing_cadence: z.ZodOptional<z.ZodString>;
|
|
39015
39065
|
price: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
39016
39066
|
type: z.ZodLiteral<"free">;
|
|
@@ -39104,7 +39154,7 @@ export declare const createPlanResponseWire: z.ZodObject<{
|
|
|
39104
39154
|
deleted_at: z.ZodOptional<z.ZodString>;
|
|
39105
39155
|
key: z.ZodString;
|
|
39106
39156
|
version: z.ZodNumber;
|
|
39107
|
-
currency: z.ZodString
|
|
39157
|
+
currency: z.ZodUnion<readonly [z.ZodString, z.ZodString]>;
|
|
39108
39158
|
billing_cadence: z.ZodString;
|
|
39109
39159
|
pro_rating_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
39110
39160
|
effective_from: z.ZodOptional<z.ZodString>;
|
|
@@ -39129,6 +39179,7 @@ export declare const createPlanResponseWire: z.ZodObject<{
|
|
|
39129
39179
|
feature: z.ZodOptional<z.ZodObject<{
|
|
39130
39180
|
id: z.ZodString;
|
|
39131
39181
|
}, z.core.$strict>>;
|
|
39182
|
+
currency: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
39132
39183
|
billing_cadence: z.ZodOptional<z.ZodString>;
|
|
39133
39184
|
price: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
39134
39185
|
type: z.ZodLiteral<"free">;
|
|
@@ -39244,6 +39295,7 @@ export declare const updatePlanBodyWire: z.ZodObject<{
|
|
|
39244
39295
|
feature: z.ZodOptional<z.ZodObject<{
|
|
39245
39296
|
id: z.ZodString;
|
|
39246
39297
|
}, z.core.$strict>>;
|
|
39298
|
+
currency: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
39247
39299
|
billing_cadence: z.ZodOptional<z.ZodString>;
|
|
39248
39300
|
price: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
39249
39301
|
type: z.ZodLiteral<"free">;
|
|
@@ -39337,7 +39389,7 @@ export declare const updatePlanResponseWire: z.ZodObject<{
|
|
|
39337
39389
|
deleted_at: z.ZodOptional<z.ZodString>;
|
|
39338
39390
|
key: z.ZodString;
|
|
39339
39391
|
version: z.ZodNumber;
|
|
39340
|
-
currency: z.ZodString
|
|
39392
|
+
currency: z.ZodUnion<readonly [z.ZodString, z.ZodString]>;
|
|
39341
39393
|
billing_cadence: z.ZodString;
|
|
39342
39394
|
pro_rating_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
39343
39395
|
effective_from: z.ZodOptional<z.ZodString>;
|
|
@@ -39362,6 +39414,7 @@ export declare const updatePlanResponseWire: z.ZodObject<{
|
|
|
39362
39414
|
feature: z.ZodOptional<z.ZodObject<{
|
|
39363
39415
|
id: z.ZodString;
|
|
39364
39416
|
}, z.core.$strict>>;
|
|
39417
|
+
currency: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
39365
39418
|
billing_cadence: z.ZodOptional<z.ZodString>;
|
|
39366
39419
|
price: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
39367
39420
|
type: z.ZodLiteral<"free">;
|
|
@@ -39468,7 +39521,7 @@ export declare const getPlanResponseWire: z.ZodObject<{
|
|
|
39468
39521
|
deleted_at: z.ZodOptional<z.ZodString>;
|
|
39469
39522
|
key: z.ZodString;
|
|
39470
39523
|
version: z.ZodNumber;
|
|
39471
|
-
currency: z.ZodString
|
|
39524
|
+
currency: z.ZodUnion<readonly [z.ZodString, z.ZodString]>;
|
|
39472
39525
|
billing_cadence: z.ZodString;
|
|
39473
39526
|
pro_rating_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
39474
39527
|
effective_from: z.ZodOptional<z.ZodString>;
|
|
@@ -39493,6 +39546,7 @@ export declare const getPlanResponseWire: z.ZodObject<{
|
|
|
39493
39546
|
feature: z.ZodOptional<z.ZodObject<{
|
|
39494
39547
|
id: z.ZodString;
|
|
39495
39548
|
}, z.core.$strict>>;
|
|
39549
|
+
currency: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
39496
39550
|
billing_cadence: z.ZodOptional<z.ZodString>;
|
|
39497
39551
|
price: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
39498
39552
|
type: z.ZodLiteral<"free">;
|
|
@@ -39602,7 +39656,7 @@ export declare const archivePlanResponseWire: z.ZodObject<{
|
|
|
39602
39656
|
deleted_at: z.ZodOptional<z.ZodString>;
|
|
39603
39657
|
key: z.ZodString;
|
|
39604
39658
|
version: z.ZodNumber;
|
|
39605
|
-
currency: z.ZodString
|
|
39659
|
+
currency: z.ZodUnion<readonly [z.ZodString, z.ZodString]>;
|
|
39606
39660
|
billing_cadence: z.ZodString;
|
|
39607
39661
|
pro_rating_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
39608
39662
|
effective_from: z.ZodOptional<z.ZodString>;
|
|
@@ -39627,6 +39681,7 @@ export declare const archivePlanResponseWire: z.ZodObject<{
|
|
|
39627
39681
|
feature: z.ZodOptional<z.ZodObject<{
|
|
39628
39682
|
id: z.ZodString;
|
|
39629
39683
|
}, z.core.$strict>>;
|
|
39684
|
+
currency: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
39630
39685
|
billing_cadence: z.ZodOptional<z.ZodString>;
|
|
39631
39686
|
price: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
39632
39687
|
type: z.ZodLiteral<"free">;
|
|
@@ -39733,7 +39788,7 @@ export declare const publishPlanResponseWire: z.ZodObject<{
|
|
|
39733
39788
|
deleted_at: z.ZodOptional<z.ZodString>;
|
|
39734
39789
|
key: z.ZodString;
|
|
39735
39790
|
version: z.ZodNumber;
|
|
39736
|
-
currency: z.ZodString
|
|
39791
|
+
currency: z.ZodUnion<readonly [z.ZodString, z.ZodString]>;
|
|
39737
39792
|
billing_cadence: z.ZodString;
|
|
39738
39793
|
pro_rating_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
39739
39794
|
effective_from: z.ZodOptional<z.ZodString>;
|
|
@@ -39758,6 +39813,7 @@ export declare const publishPlanResponseWire: z.ZodObject<{
|
|
|
39758
39813
|
feature: z.ZodOptional<z.ZodObject<{
|
|
39759
39814
|
id: z.ZodString;
|
|
39760
39815
|
}, z.core.$strict>>;
|
|
39816
|
+
currency: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
39761
39817
|
billing_cadence: z.ZodOptional<z.ZodString>;
|
|
39762
39818
|
price: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
39763
39819
|
type: z.ZodLiteral<"free">;
|
|
@@ -39914,7 +39970,7 @@ export declare const listAddonsResponseWire: z.ZodObject<{
|
|
|
39914
39970
|
multiple: "multiple";
|
|
39915
39971
|
single: "single";
|
|
39916
39972
|
}>;
|
|
39917
|
-
currency: z.ZodUnion<readonly [z.ZodString]>;
|
|
39973
|
+
currency: z.ZodUnion<readonly [z.ZodString, z.ZodString]>;
|
|
39918
39974
|
effective_from: z.ZodOptional<z.ZodString>;
|
|
39919
39975
|
effective_to: z.ZodOptional<z.ZodString>;
|
|
39920
39976
|
status: z.ZodEnum<{
|
|
@@ -39930,6 +39986,7 @@ export declare const listAddonsResponseWire: z.ZodObject<{
|
|
|
39930
39986
|
feature: z.ZodOptional<z.ZodObject<{
|
|
39931
39987
|
id: z.ZodString;
|
|
39932
39988
|
}, z.core.$strict>>;
|
|
39989
|
+
currency: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
39933
39990
|
billing_cadence: z.ZodOptional<z.ZodString>;
|
|
39934
39991
|
price: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
39935
39992
|
type: z.ZodLiteral<"free">;
|
|
@@ -40035,7 +40092,7 @@ export declare const createAddonBodyWire: z.ZodObject<{
|
|
|
40035
40092
|
multiple: "multiple";
|
|
40036
40093
|
single: "single";
|
|
40037
40094
|
}>;
|
|
40038
|
-
currency: z.ZodUnion<readonly [z.ZodString]>;
|
|
40095
|
+
currency: z.ZodUnion<readonly [z.ZodString, z.ZodString]>;
|
|
40039
40096
|
rate_cards: z.ZodArray<z.ZodObject<{
|
|
40040
40097
|
name: z.ZodString;
|
|
40041
40098
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -40044,6 +40101,7 @@ export declare const createAddonBodyWire: z.ZodObject<{
|
|
|
40044
40101
|
feature: z.ZodOptional<z.ZodObject<{
|
|
40045
40102
|
id: z.ZodString;
|
|
40046
40103
|
}, z.core.$strict>>;
|
|
40104
|
+
currency: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
40047
40105
|
billing_cadence: z.ZodOptional<z.ZodString>;
|
|
40048
40106
|
price: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
40049
40107
|
type: z.ZodLiteral<"free">;
|
|
@@ -40140,7 +40198,7 @@ export declare const createAddonResponseWire: z.ZodObject<{
|
|
|
40140
40198
|
multiple: "multiple";
|
|
40141
40199
|
single: "single";
|
|
40142
40200
|
}>;
|
|
40143
|
-
currency: z.ZodUnion<readonly [z.ZodString]>;
|
|
40201
|
+
currency: z.ZodUnion<readonly [z.ZodString, z.ZodString]>;
|
|
40144
40202
|
effective_from: z.ZodOptional<z.ZodString>;
|
|
40145
40203
|
effective_to: z.ZodOptional<z.ZodString>;
|
|
40146
40204
|
status: z.ZodEnum<{
|
|
@@ -40156,6 +40214,7 @@ export declare const createAddonResponseWire: z.ZodObject<{
|
|
|
40156
40214
|
feature: z.ZodOptional<z.ZodObject<{
|
|
40157
40215
|
id: z.ZodString;
|
|
40158
40216
|
}, z.core.$strict>>;
|
|
40217
|
+
currency: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
40159
40218
|
billing_cadence: z.ZodOptional<z.ZodString>;
|
|
40160
40219
|
price: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
40161
40220
|
type: z.ZodLiteral<"free">;
|
|
@@ -40263,6 +40322,7 @@ export declare const updateAddonBodyWire: z.ZodObject<{
|
|
|
40263
40322
|
feature: z.ZodOptional<z.ZodObject<{
|
|
40264
40323
|
id: z.ZodString;
|
|
40265
40324
|
}, z.core.$strict>>;
|
|
40325
|
+
currency: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
40266
40326
|
billing_cadence: z.ZodOptional<z.ZodString>;
|
|
40267
40327
|
price: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
40268
40328
|
type: z.ZodLiteral<"free">;
|
|
@@ -40359,7 +40419,7 @@ export declare const updateAddonResponseWire: z.ZodObject<{
|
|
|
40359
40419
|
multiple: "multiple";
|
|
40360
40420
|
single: "single";
|
|
40361
40421
|
}>;
|
|
40362
|
-
currency: z.ZodUnion<readonly [z.ZodString]>;
|
|
40422
|
+
currency: z.ZodUnion<readonly [z.ZodString, z.ZodString]>;
|
|
40363
40423
|
effective_from: z.ZodOptional<z.ZodString>;
|
|
40364
40424
|
effective_to: z.ZodOptional<z.ZodString>;
|
|
40365
40425
|
status: z.ZodEnum<{
|
|
@@ -40375,6 +40435,7 @@ export declare const updateAddonResponseWire: z.ZodObject<{
|
|
|
40375
40435
|
feature: z.ZodOptional<z.ZodObject<{
|
|
40376
40436
|
id: z.ZodString;
|
|
40377
40437
|
}, z.core.$strict>>;
|
|
40438
|
+
currency: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
40378
40439
|
billing_cadence: z.ZodOptional<z.ZodString>;
|
|
40379
40440
|
price: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
40380
40441
|
type: z.ZodLiteral<"free">;
|
|
@@ -40480,7 +40541,7 @@ export declare const getAddonResponseWire: z.ZodObject<{
|
|
|
40480
40541
|
multiple: "multiple";
|
|
40481
40542
|
single: "single";
|
|
40482
40543
|
}>;
|
|
40483
|
-
currency: z.ZodUnion<readonly [z.ZodString]>;
|
|
40544
|
+
currency: z.ZodUnion<readonly [z.ZodString, z.ZodString]>;
|
|
40484
40545
|
effective_from: z.ZodOptional<z.ZodString>;
|
|
40485
40546
|
effective_to: z.ZodOptional<z.ZodString>;
|
|
40486
40547
|
status: z.ZodEnum<{
|
|
@@ -40496,6 +40557,7 @@ export declare const getAddonResponseWire: z.ZodObject<{
|
|
|
40496
40557
|
feature: z.ZodOptional<z.ZodObject<{
|
|
40497
40558
|
id: z.ZodString;
|
|
40498
40559
|
}, z.core.$strict>>;
|
|
40560
|
+
currency: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
40499
40561
|
billing_cadence: z.ZodOptional<z.ZodString>;
|
|
40500
40562
|
price: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
40501
40563
|
type: z.ZodLiteral<"free">;
|
|
@@ -40604,7 +40666,7 @@ export declare const archiveAddonResponseWire: z.ZodObject<{
|
|
|
40604
40666
|
multiple: "multiple";
|
|
40605
40667
|
single: "single";
|
|
40606
40668
|
}>;
|
|
40607
|
-
currency: z.ZodUnion<readonly [z.ZodString]>;
|
|
40669
|
+
currency: z.ZodUnion<readonly [z.ZodString, z.ZodString]>;
|
|
40608
40670
|
effective_from: z.ZodOptional<z.ZodString>;
|
|
40609
40671
|
effective_to: z.ZodOptional<z.ZodString>;
|
|
40610
40672
|
status: z.ZodEnum<{
|
|
@@ -40620,6 +40682,7 @@ export declare const archiveAddonResponseWire: z.ZodObject<{
|
|
|
40620
40682
|
feature: z.ZodOptional<z.ZodObject<{
|
|
40621
40683
|
id: z.ZodString;
|
|
40622
40684
|
}, z.core.$strict>>;
|
|
40685
|
+
currency: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
40623
40686
|
billing_cadence: z.ZodOptional<z.ZodString>;
|
|
40624
40687
|
price: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
40625
40688
|
type: z.ZodLiteral<"free">;
|
|
@@ -40725,7 +40788,7 @@ export declare const publishAddonResponseWire: z.ZodObject<{
|
|
|
40725
40788
|
multiple: "multiple";
|
|
40726
40789
|
single: "single";
|
|
40727
40790
|
}>;
|
|
40728
|
-
currency: z.ZodUnion<readonly [z.ZodString]>;
|
|
40791
|
+
currency: z.ZodUnion<readonly [z.ZodString, z.ZodString]>;
|
|
40729
40792
|
effective_from: z.ZodOptional<z.ZodString>;
|
|
40730
40793
|
effective_to: z.ZodOptional<z.ZodString>;
|
|
40731
40794
|
status: z.ZodEnum<{
|
|
@@ -40741,6 +40804,7 @@ export declare const publishAddonResponseWire: z.ZodObject<{
|
|
|
40741
40804
|
feature: z.ZodOptional<z.ZodObject<{
|
|
40742
40805
|
id: z.ZodString;
|
|
40743
40806
|
}, z.core.$strict>>;
|
|
40807
|
+
currency: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
40744
40808
|
billing_cadence: z.ZodOptional<z.ZodString>;
|
|
40745
40809
|
price: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
40746
40810
|
type: z.ZodLiteral<"free">;
|