@openmeter/sdk 1.0.0-beta.219 → 1.0.0-beta.220
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 +43 -0
- package/dist/cjs/src/client/schemas.d.cts +16 -0
- package/dist/cjs/src/zod/index.cjs +53 -19
- package/dist/cjs/src/zod/index.d.cts +26 -0
- package/dist/cjs/src/zod/index.js.map +1 -1
- package/dist/cjs/{tsconfig.3fe7ed83.tsbuildinfo → tsconfig.ed1bfe74.tsbuildinfo} +1 -1
- package/dist/cjs/{tsconfig.b864c4b4.tsbuildinfo → tsconfig.f862b9eb.tsbuildinfo} +1 -1
- package/dist/src/client/schemas.d.ts +16 -0
- package/dist/src/zod/index.d.ts +26 -0
- package/dist/src/zod/index.js +34 -0
- package/dist/src/zod/index.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
package/Makefile
ADDED
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
# A Self-Documenting Makefile: http://marmelab.com/blog/2016/02/29/auto-documented-makefile.html
|
|
2
|
+
|
|
3
|
+
.PHONY: generate
|
|
4
|
+
generate: ## Generate JavaScript SDK
|
|
5
|
+
$(call print-target)
|
|
6
|
+
pnpm --frozen-lockfile install
|
|
7
|
+
pnpm run generate
|
|
8
|
+
pnpm build
|
|
9
|
+
pnpm test
|
|
10
|
+
|
|
11
|
+
# Warning: keep in sync with .dagger/release.go for now
|
|
12
|
+
.PHONY: publish-javascript-sdk
|
|
13
|
+
publish-javascript-sdk: ## Publish JavaScript SDK
|
|
14
|
+
$(call print-target)
|
|
15
|
+
@if [ -z "$$JS_SDK_RELEASE_VERSION" ]; then \
|
|
16
|
+
echo "ERROR: JS_SDK_RELEASE_VERSION is required"; \
|
|
17
|
+
echo "Usage: JS_SDK_RELEASE_VERSION=1.2.3 make publish-javascript-sdk [JS_SDK_RELEASE_TAG=beta]"; \
|
|
18
|
+
exit 1; \
|
|
19
|
+
fi
|
|
20
|
+
|
|
21
|
+
@if [ -z "$$JS_SDK_RELEASE_TAG" ]; then \
|
|
22
|
+
echo "ERROR: JS_SDK_RELEASE_TAG is required"; \
|
|
23
|
+
echo "Usage: JS_SDK_RELEASE_VERSION=1.2.3 make publish-javascript-sdk [JS_SDK_RELEASE_TAG=beta]"; \
|
|
24
|
+
exit 1; \
|
|
25
|
+
fi
|
|
26
|
+
|
|
27
|
+
pnpm --frozen-lockfile install
|
|
28
|
+
pnpm version "$${JS_SDK_RELEASE_VERSION}" --no-git-tag-version
|
|
29
|
+
CACHE_BUSTER="$$(date --rfc-3339=seconds)" pnpm publish --no-git-checks --tag "$${JS_SDK_RELEASE_TAG}"
|
|
30
|
+
@echo "✅ Published $${JS_SDK_RELEASE_TAG} JavaScript SDK version $${JS_SDK_RELEASE_VERSION} with tag $${JS_SDK_RELEASE_TAG}"
|
|
31
|
+
|
|
32
|
+
.PHONY: help
|
|
33
|
+
.DEFAULT_GOAL := help
|
|
34
|
+
help:
|
|
35
|
+
@grep -h -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
|
|
36
|
+
|
|
37
|
+
# Variable outputting/exporting rules
|
|
38
|
+
var-%: ; @echo $($*)
|
|
39
|
+
varexport-%: ; @echo $*=$($*)
|
|
40
|
+
|
|
41
|
+
define print-target
|
|
42
|
+
@printf "Executing target: \033[36m$@\033[0m\n"
|
|
43
|
+
endef
|
|
@@ -2739,6 +2739,11 @@ export interface components {
|
|
|
2739
2739
|
BillingInvoiceCustomerExtendedDetails: {
|
|
2740
2740
|
/** @description Unique identifier for the party (if available) */
|
|
2741
2741
|
readonly id?: string;
|
|
2742
|
+
/**
|
|
2743
|
+
* Key
|
|
2744
|
+
* @description An optional unique key of the party (if available)
|
|
2745
|
+
*/
|
|
2746
|
+
key?: string;
|
|
2742
2747
|
/** @description Legal name or representation of the organization. */
|
|
2743
2748
|
name?: string;
|
|
2744
2749
|
/** @description The entity's legal ID code used for tax purposes. They may have
|
|
@@ -2756,6 +2761,11 @@ export interface components {
|
|
|
2756
2761
|
BillingParty: {
|
|
2757
2762
|
/** @description Unique identifier for the party (if available) */
|
|
2758
2763
|
readonly id?: string;
|
|
2764
|
+
/**
|
|
2765
|
+
* Key
|
|
2766
|
+
* @description An optional unique key of the party (if available)
|
|
2767
|
+
*/
|
|
2768
|
+
key?: string;
|
|
2759
2769
|
/** @description Legal name or representation of the organization. */
|
|
2760
2770
|
name?: string;
|
|
2761
2771
|
/** @description The entity's legal ID code used for tax purposes. They may have
|
|
@@ -2766,6 +2776,11 @@ export interface components {
|
|
|
2766
2776
|
};
|
|
2767
2777
|
/** @description Resource update operation model. */
|
|
2768
2778
|
BillingPartyReplaceUpdate: {
|
|
2779
|
+
/**
|
|
2780
|
+
* Key
|
|
2781
|
+
* @description An optional unique key of the party (if available)
|
|
2782
|
+
*/
|
|
2783
|
+
key?: string;
|
|
2769
2784
|
/** @description Legal name or representation of the organization. */
|
|
2770
2785
|
name?: string;
|
|
2771
2786
|
/** @description The entity's legal ID code used for tax purposes. They may have
|
|
@@ -5019,6 +5034,7 @@ export interface components {
|
|
|
5019
5034
|
/** @description The unit of time for the expiration period. */
|
|
5020
5035
|
duration: components['schemas']['ExpirationDuration'];
|
|
5021
5036
|
/**
|
|
5037
|
+
* Format: uint32
|
|
5022
5038
|
* @description The number of time units in the expiration period.
|
|
5023
5039
|
* @example 12
|
|
5024
5040
|
*/
|
|
@@ -6,25 +6,25 @@ exports.updateAppBodyNameMax = exports.updateAppParams = exports.updateAppPathId
|
|
|
6
6
|
exports.createPendingInvoiceLineBodyLinesItemPriceMultiplierDefault = exports.createPendingInvoiceLineBodyLinesItemPriceMultiplierRegExpOne = exports.createPendingInvoiceLineBodyLinesItemPriceMaximumAmountRegExpThree = exports.createPendingInvoiceLineBodyLinesItemPriceMinimumAmountRegExpThree = exports.createPendingInvoiceLineBodyLinesItemPriceTiersItemUnitPriceAmountRegExpOne = exports.createPendingInvoiceLineBodyLinesItemPriceTiersItemFlatPriceAmountRegExpOne = exports.createPendingInvoiceLineBodyLinesItemPriceTiersItemUpToAmountRegExpOne = exports.createPendingInvoiceLineBodyLinesItemPriceMaximumAmountRegExpOne = exports.createPendingInvoiceLineBodyLinesItemPriceMinimumAmountRegExpOne = exports.createPendingInvoiceLineBodyLinesItemPriceAmountRegExpThree = exports.createPendingInvoiceLineBodyLinesItemPricePaymentTermDefault = exports.createPendingInvoiceLineBodyLinesItemPriceAmountRegExpOne = exports.createPendingInvoiceLineBodyLinesItemTaxConfigStripeCodeRegExp = exports.createPendingInvoiceLineBodyLinesItemDescriptionMax = exports.createPendingInvoiceLineBodyLinesItemNameMax = exports.createPendingInvoiceLineBodyCurrencyRegExpOne = exports.createPendingInvoiceLineBodyCurrencyMaxOne = exports.createPendingInvoiceLineBodyCurrencyMinOne = exports.createPendingInvoiceLineParams = exports.createPendingInvoiceLinePathCustomerIdRegExp = exports.deleteBillingProfileCustomerOverrideParams = exports.deleteBillingProfileCustomerOverridePathCustomerIdRegExp = exports.getBillingProfileCustomerOverrideQueryParams = exports.getBillingProfileCustomerOverrideParams = exports.getBillingProfileCustomerOverridePathCustomerIdRegExp = exports.upsertBillingProfileCustomerOverrideBody = exports.upsertBillingProfileCustomerOverrideBodyBillingProfileIdRegExp = exports.upsertBillingProfileCustomerOverrideParams = exports.upsertBillingProfileCustomerOverridePathCustomerIdRegExp = exports.listBillingProfileCustomerOverridesQueryParams = exports.listBillingProfileCustomerOverridesQueryPageSizeMax = exports.listBillingProfileCustomerOverridesQueryPageSizeDefault = exports.listBillingProfileCustomerOverridesQueryPageDefault = exports.listBillingProfileCustomerOverridesQueryCustomerIdItemRegExp = exports.listBillingProfileCustomerOverridesQueryIncludeAllCustomersDefault = exports.listBillingProfileCustomerOverridesQueryBillingProfileItemRegExp = exports.appStripeWebhookBody = exports.appStripeWebhookParams = exports.appStripeWebhookPathIdRegExp = exports.updateStripeAPIKeyBody = exports.updateStripeAPIKeyParams = exports.updateStripeAPIKeyPathIdRegExp = exports.uninstallAppParams = exports.uninstallAppPathIdRegExp = exports.updateAppBody = exports.updateAppBodyDescriptionMaxTwo = exports.updateAppBodyNameMaxTwo = exports.updateAppBodyDescriptionMaxOne = exports.updateAppBodyNameMaxOne = exports.updateAppBodyDescriptionMax = void 0;
|
|
7
7
|
exports.simulateInvoiceBodyLinesItemPriceTiersItemUnitPriceAmountRegExpOne = exports.simulateInvoiceBodyLinesItemPriceTiersItemFlatPriceAmountRegExpOne = exports.simulateInvoiceBodyLinesItemPriceTiersItemUpToAmountRegExpOne = exports.simulateInvoiceBodyLinesItemPriceMaximumAmountRegExpOne = exports.simulateInvoiceBodyLinesItemPriceMinimumAmountRegExpOne = exports.simulateInvoiceBodyLinesItemPriceAmountRegExpThree = exports.simulateInvoiceBodyLinesItemPricePaymentTermDefault = exports.simulateInvoiceBodyLinesItemPriceAmountRegExpOne = exports.simulateInvoiceBodyLinesItemTaxConfigStripeCodeRegExp = exports.simulateInvoiceBodyLinesItemDescriptionMax = exports.simulateInvoiceBodyLinesItemNameMax = exports.simulateInvoiceBodyCurrencyRegExpOne = exports.simulateInvoiceBodyCurrencyMaxOne = exports.simulateInvoiceBodyCurrencyMinOne = exports.simulateInvoiceBodyNumberMaxOne = exports.simulateInvoiceParams = exports.simulateInvoicePathCustomerIdRegExp = exports.createPendingInvoiceLineBody = exports.createPendingInvoiceLineBodyLinesItemRateCardDiscountsUsageCorrelationIdRegExp = exports.createPendingInvoiceLineBodyLinesItemRateCardDiscountsUsageQuantityRegExpOne = exports.createPendingInvoiceLineBodyLinesItemRateCardDiscountsPercentageCorrelationIdRegExp = exports.createPendingInvoiceLineBodyLinesItemRateCardPriceMaximumAmountRegExpSeven = exports.createPendingInvoiceLineBodyLinesItemRateCardPriceMinimumAmountRegExpSeven = exports.createPendingInvoiceLineBodyLinesItemRateCardPriceQuantityPerPackageRegExpOne = exports.createPendingInvoiceLineBodyLinesItemRateCardPriceAmountRegExpFive = exports.createPendingInvoiceLineBodyLinesItemRateCardPriceMaximumAmountRegExpFive = exports.createPendingInvoiceLineBodyLinesItemRateCardPriceMinimumAmountRegExpFive = exports.createPendingInvoiceLineBodyLinesItemRateCardPriceMultiplierDefault = exports.createPendingInvoiceLineBodyLinesItemRateCardPriceMultiplierRegExpOne = exports.createPendingInvoiceLineBodyLinesItemRateCardPriceMaximumAmountRegExpThree = exports.createPendingInvoiceLineBodyLinesItemRateCardPriceMinimumAmountRegExpThree = exports.createPendingInvoiceLineBodyLinesItemRateCardPriceTiersItemUnitPriceAmountRegExpOne = exports.createPendingInvoiceLineBodyLinesItemRateCardPriceTiersItemFlatPriceAmountRegExpOne = exports.createPendingInvoiceLineBodyLinesItemRateCardPriceTiersItemUpToAmountRegExpOne = exports.createPendingInvoiceLineBodyLinesItemRateCardPriceMaximumAmountRegExpOne = exports.createPendingInvoiceLineBodyLinesItemRateCardPriceMinimumAmountRegExpOne = exports.createPendingInvoiceLineBodyLinesItemRateCardPriceAmountRegExpThree = exports.createPendingInvoiceLineBodyLinesItemRateCardPricePaymentTermDefault = exports.createPendingInvoiceLineBodyLinesItemRateCardPriceAmountRegExpOne = exports.createPendingInvoiceLineBodyLinesItemRateCardTaxConfigStripeCodeRegExp = exports.createPendingInvoiceLineBodyLinesItemRateCardFeatureKeyRegExp = exports.createPendingInvoiceLineBodyLinesItemRateCardFeatureKeyMax = exports.createPendingInvoiceLineBodyLinesItemFeatureKeyRegExp = exports.createPendingInvoiceLineBodyLinesItemFeatureKeyMax = exports.createPendingInvoiceLineBodyLinesItemPriceMaximumAmountRegExpSeven = exports.createPendingInvoiceLineBodyLinesItemPriceMinimumAmountRegExpSeven = exports.createPendingInvoiceLineBodyLinesItemPriceQuantityPerPackageRegExpOne = exports.createPendingInvoiceLineBodyLinesItemPriceAmountRegExpFive = exports.createPendingInvoiceLineBodyLinesItemPriceMaximumAmountRegExpFive = exports.createPendingInvoiceLineBodyLinesItemPriceMinimumAmountRegExpFive = void 0;
|
|
8
8
|
exports.getInvoiceParams = exports.getInvoicePathInvoiceIdRegExp = exports.invoicePendingLinesActionBody = exports.invoicePendingLinesActionBodyCustomerIdRegExp = exports.invoicePendingLinesActionBodyFiltersLineIdsItemRegExp = exports.listInvoicesQueryParams = exports.listInvoicesQueryPageSizeMax = exports.listInvoicesQueryPageSizeDefault = exports.listInvoicesQueryPageDefault = exports.listInvoicesQueryCustomersItemRegExp = exports.simulateInvoiceBody = exports.simulateInvoiceBodyLinesItemIdRegExp = exports.simulateInvoiceBodyLinesItemPreLinePeriodQuantityRegExpOne = exports.simulateInvoiceBodyLinesItemQuantityRegExpOne = exports.simulateInvoiceBodyLinesItemRateCardDiscountsUsageCorrelationIdRegExp = exports.simulateInvoiceBodyLinesItemRateCardDiscountsUsageQuantityRegExpOne = exports.simulateInvoiceBodyLinesItemRateCardDiscountsPercentageCorrelationIdRegExp = exports.simulateInvoiceBodyLinesItemRateCardPriceMaximumAmountRegExpSeven = exports.simulateInvoiceBodyLinesItemRateCardPriceMinimumAmountRegExpSeven = exports.simulateInvoiceBodyLinesItemRateCardPriceQuantityPerPackageRegExpOne = exports.simulateInvoiceBodyLinesItemRateCardPriceAmountRegExpFive = exports.simulateInvoiceBodyLinesItemRateCardPriceMaximumAmountRegExpFive = exports.simulateInvoiceBodyLinesItemRateCardPriceMinimumAmountRegExpFive = exports.simulateInvoiceBodyLinesItemRateCardPriceMultiplierDefault = exports.simulateInvoiceBodyLinesItemRateCardPriceMultiplierRegExpOne = exports.simulateInvoiceBodyLinesItemRateCardPriceMaximumAmountRegExpThree = exports.simulateInvoiceBodyLinesItemRateCardPriceMinimumAmountRegExpThree = exports.simulateInvoiceBodyLinesItemRateCardPriceTiersItemUnitPriceAmountRegExpOne = exports.simulateInvoiceBodyLinesItemRateCardPriceTiersItemFlatPriceAmountRegExpOne = exports.simulateInvoiceBodyLinesItemRateCardPriceTiersItemUpToAmountRegExpOne = exports.simulateInvoiceBodyLinesItemRateCardPriceMaximumAmountRegExpOne = exports.simulateInvoiceBodyLinesItemRateCardPriceMinimumAmountRegExpOne = exports.simulateInvoiceBodyLinesItemRateCardPriceAmountRegExpThree = exports.simulateInvoiceBodyLinesItemRateCardPricePaymentTermDefault = exports.simulateInvoiceBodyLinesItemRateCardPriceAmountRegExpOne = exports.simulateInvoiceBodyLinesItemRateCardTaxConfigStripeCodeRegExp = exports.simulateInvoiceBodyLinesItemRateCardFeatureKeyRegExp = exports.simulateInvoiceBodyLinesItemRateCardFeatureKeyMax = exports.simulateInvoiceBodyLinesItemFeatureKeyRegExp = exports.simulateInvoiceBodyLinesItemFeatureKeyMax = exports.simulateInvoiceBodyLinesItemPriceMaximumAmountRegExpSeven = exports.simulateInvoiceBodyLinesItemPriceMinimumAmountRegExpSeven = exports.simulateInvoiceBodyLinesItemPriceQuantityPerPackageRegExpOne = exports.simulateInvoiceBodyLinesItemPriceAmountRegExpFive = exports.simulateInvoiceBodyLinesItemPriceMaximumAmountRegExpFive = exports.simulateInvoiceBodyLinesItemPriceMinimumAmountRegExpFive = exports.simulateInvoiceBodyLinesItemPriceMultiplierDefault = exports.simulateInvoiceBodyLinesItemPriceMultiplierRegExpOne = exports.simulateInvoiceBodyLinesItemPriceMaximumAmountRegExpThree = exports.simulateInvoiceBodyLinesItemPriceMinimumAmountRegExpThree = void 0;
|
|
9
|
-
exports.
|
|
10
|
-
exports.
|
|
11
|
-
exports.
|
|
12
|
-
exports.
|
|
13
|
-
exports.
|
|
14
|
-
exports.
|
|
15
|
-
exports.
|
|
16
|
-
exports.
|
|
17
|
-
exports.
|
|
18
|
-
exports.
|
|
19
|
-
exports.
|
|
20
|
-
exports.
|
|
21
|
-
exports.
|
|
22
|
-
exports.
|
|
23
|
-
exports.
|
|
24
|
-
exports.
|
|
25
|
-
exports.
|
|
26
|
-
exports.
|
|
27
|
-
exports.listEventsV2QueryParams = exports.listEventsV2QueryClientIdMax = exports.listEventsV2QueryLimitMax = exports.listEventsV2QueryLimitDefault = exports.unscheduleCancelationParams = exports.unscheduleCancelationPathSubscriptionIdRegExp = exports.restoreSubscriptionParams = exports.restoreSubscriptionPathSubscriptionIdRegExp = exports.migrateSubscriptionBody = exports.migrateSubscriptionBodyTimingDefault = exports.migrateSubscriptionParams = exports.migrateSubscriptionPathSubscriptionIdRegExp = exports.changeSubscriptionBody = exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemDiscountsUsageQuantityRegExpThree = exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemPriceMaximumAmountRegExpSeven = exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemPriceMinimumAmountRegExpSeven = exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemPriceQuantityPerPackageRegExpOne = exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemPriceAmountRegExpSeven = exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemPriceMaximumAmountRegExpFive = exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemPriceMinimumAmountRegExpFive = exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemPriceMultiplierDefault = exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemPriceMultiplierRegExpOne = exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemPriceMaximumAmountRegExpThree = exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemPriceMinimumAmountRegExpThree = exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemPriceTiersItemUnitPriceAmountRegExpOne = exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemPriceTiersItemFlatPriceAmountRegExpOne = exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemPriceTiersItemUpToAmountRegExpOne = exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemPriceMaximumAmountRegExpOne = exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemPriceMinimumAmountRegExpOne = void 0;
|
|
9
|
+
exports.updateInvoiceBodyLinesItemRateCardPriceMinimumAmountRegExpOne = exports.updateInvoiceBodyLinesItemRateCardPriceAmountRegExpThree = exports.updateInvoiceBodyLinesItemRateCardPricePaymentTermDefault = exports.updateInvoiceBodyLinesItemRateCardPriceAmountRegExpOne = exports.updateInvoiceBodyLinesItemRateCardTaxConfigStripeCodeRegExp = exports.updateInvoiceBodyLinesItemRateCardFeatureKeyRegExp = exports.updateInvoiceBodyLinesItemRateCardFeatureKeyMax = exports.updateInvoiceBodyLinesItemFeatureKeyRegExp = exports.updateInvoiceBodyLinesItemFeatureKeyMax = exports.updateInvoiceBodyLinesItemPriceMaximumAmountRegExpSeven = exports.updateInvoiceBodyLinesItemPriceMinimumAmountRegExpSeven = exports.updateInvoiceBodyLinesItemPriceQuantityPerPackageRegExpOne = exports.updateInvoiceBodyLinesItemPriceAmountRegExpFive = exports.updateInvoiceBodyLinesItemPriceMaximumAmountRegExpFive = exports.updateInvoiceBodyLinesItemPriceMinimumAmountRegExpFive = exports.updateInvoiceBodyLinesItemPriceMultiplierDefault = exports.updateInvoiceBodyLinesItemPriceMultiplierRegExpOne = exports.updateInvoiceBodyLinesItemPriceMaximumAmountRegExpThree = exports.updateInvoiceBodyLinesItemPriceMinimumAmountRegExpThree = exports.updateInvoiceBodyLinesItemPriceTiersItemUnitPriceAmountRegExpOne = exports.updateInvoiceBodyLinesItemPriceTiersItemFlatPriceAmountRegExpOne = exports.updateInvoiceBodyLinesItemPriceTiersItemUpToAmountRegExpOne = exports.updateInvoiceBodyLinesItemPriceMaximumAmountRegExpOne = exports.updateInvoiceBodyLinesItemPriceMinimumAmountRegExpOne = exports.updateInvoiceBodyLinesItemPriceAmountRegExpThree = exports.updateInvoiceBodyLinesItemPricePaymentTermDefault = exports.updateInvoiceBodyLinesItemPriceAmountRegExpOne = exports.updateInvoiceBodyLinesItemTaxConfigStripeCodeRegExp = exports.updateInvoiceBodyLinesItemDescriptionMax = exports.updateInvoiceBodyLinesItemNameMax = exports.updateInvoiceBodyCustomerAddressesMax = exports.updateInvoiceBodyCustomerAddressesItemCountryRegExpOne = exports.updateInvoiceBodyCustomerAddressesItemCountryMaxOne = exports.updateInvoiceBodyCustomerAddressesItemCountryMinOne = exports.updateInvoiceBodyCustomerTaxIdCodeMaxOne = exports.updateInvoiceBodyCustomerKeyMax = exports.updateInvoiceBodySupplierAddressesMax = exports.updateInvoiceBodySupplierAddressesItemCountryRegExpOne = exports.updateInvoiceBodySupplierAddressesItemCountryMaxOne = exports.updateInvoiceBodySupplierAddressesItemCountryMinOne = exports.updateInvoiceBodySupplierTaxIdCodeMaxOne = exports.updateInvoiceBodySupplierKeyMax = exports.updateInvoiceBodyDescriptionMax = exports.updateInvoiceParams = exports.updateInvoicePathInvoiceIdRegExp = exports.deleteInvoiceParams = exports.deleteInvoicePathInvoiceIdRegExp = exports.getInvoiceQueryParams = exports.getInvoiceQueryIncludeDeletedLinesDefault = exports.getInvoiceQueryExpandDefault = void 0;
|
|
10
|
+
exports.createBillingProfileBodySupplierAddressesItemCountryRegExpOne = exports.createBillingProfileBodySupplierAddressesItemCountryMaxOne = exports.createBillingProfileBodySupplierAddressesItemCountryMinOne = exports.createBillingProfileBodySupplierTaxIdCodeMaxOne = exports.createBillingProfileBodySupplierKeyMax = exports.createBillingProfileBodyDescriptionMax = exports.createBillingProfileBodyNameMax = exports.listBillingProfilesQueryParams = exports.listBillingProfilesQueryPageSizeMax = exports.listBillingProfilesQueryPageSizeDefault = exports.listBillingProfilesQueryPageDefault = exports.listBillingProfilesQueryIncludeArchivedDefault = exports.voidInvoiceActionBody = exports.voidInvoiceActionBodyOverridesItemLineIdRegExp = exports.voidInvoiceActionParams = exports.voidInvoiceActionPathInvoiceIdRegExp = exports.recalculateInvoiceTaxActionParams = exports.recalculateInvoiceTaxActionPathInvoiceIdRegExp = exports.snapshotQuantitiesInvoiceActionParams = exports.snapshotQuantitiesInvoiceActionPathInvoiceIdRegExp = exports.retryInvoiceActionParams = exports.retryInvoiceActionPathInvoiceIdRegExp = exports.approveInvoiceActionParams = exports.approveInvoiceActionPathInvoiceIdRegExp = exports.advanceInvoiceActionParams = exports.advanceInvoiceActionPathInvoiceIdRegExp = exports.updateInvoiceBody = exports.updateInvoiceBodyWorkflowWorkflowPaymentCollectionMethodDefault = exports.updateInvoiceBodyWorkflowWorkflowInvoicingDefaultTaxConfigStripeCodeRegExp = exports.updateInvoiceBodyWorkflowWorkflowInvoicingDueAfterDefault = exports.updateInvoiceBodyWorkflowWorkflowInvoicingDraftPeriodDefault = exports.updateInvoiceBodyWorkflowWorkflowInvoicingAutoAdvanceDefault = exports.updateInvoiceBodyLinesItemIdRegExp = exports.updateInvoiceBodyLinesItemRateCardDiscountsUsageCorrelationIdRegExp = exports.updateInvoiceBodyLinesItemRateCardDiscountsUsageQuantityRegExpOne = exports.updateInvoiceBodyLinesItemRateCardDiscountsPercentageCorrelationIdRegExp = exports.updateInvoiceBodyLinesItemRateCardPriceMaximumAmountRegExpSeven = exports.updateInvoiceBodyLinesItemRateCardPriceMinimumAmountRegExpSeven = exports.updateInvoiceBodyLinesItemRateCardPriceQuantityPerPackageRegExpOne = exports.updateInvoiceBodyLinesItemRateCardPriceAmountRegExpFive = exports.updateInvoiceBodyLinesItemRateCardPriceMaximumAmountRegExpFive = exports.updateInvoiceBodyLinesItemRateCardPriceMinimumAmountRegExpFive = exports.updateInvoiceBodyLinesItemRateCardPriceMultiplierDefault = exports.updateInvoiceBodyLinesItemRateCardPriceMultiplierRegExpOne = exports.updateInvoiceBodyLinesItemRateCardPriceMaximumAmountRegExpThree = exports.updateInvoiceBodyLinesItemRateCardPriceMinimumAmountRegExpThree = exports.updateInvoiceBodyLinesItemRateCardPriceTiersItemUnitPriceAmountRegExpOne = exports.updateInvoiceBodyLinesItemRateCardPriceTiersItemFlatPriceAmountRegExpOne = exports.updateInvoiceBodyLinesItemRateCardPriceTiersItemUpToAmountRegExpOne = exports.updateInvoiceBodyLinesItemRateCardPriceMaximumAmountRegExpOne = void 0;
|
|
11
|
+
exports.createCustomerBodyBillingAddressCountryMaxOne = exports.createCustomerBodyBillingAddressCountryMinOne = exports.createCustomerBodyCurrencyRegExpOne = exports.createCustomerBodyCurrencyMaxOne = exports.createCustomerBodyCurrencyMinOne = exports.createCustomerBodyUsageAttributionSubjectKeysMax = exports.createCustomerBodyKeyMax = exports.createCustomerBodyDescriptionMax = exports.createCustomerBodyNameMax = exports.updateBillingProfileBody = exports.updateBillingProfileBodyWorkflowTaxEnforcedDefault = exports.updateBillingProfileBodyWorkflowTaxEnabledDefault = exports.updateBillingProfileBodyWorkflowPaymentCollectionMethodDefault = exports.updateBillingProfileBodyWorkflowInvoicingDefaultTaxConfigStripeCodeRegExp = exports.updateBillingProfileBodyWorkflowInvoicingProgressiveBillingDefault = exports.updateBillingProfileBodyWorkflowInvoicingDueAfterDefault = exports.updateBillingProfileBodyWorkflowInvoicingDraftPeriodDefault = exports.updateBillingProfileBodyWorkflowInvoicingAutoAdvanceDefault = exports.updateBillingProfileBodyWorkflowCollectionIntervalDefault = exports.updateBillingProfileBodyWorkflowCollectionAlignmentDefault = exports.updateBillingProfileBodySupplierAddressesMax = exports.updateBillingProfileBodySupplierAddressesItemCountryRegExpOne = exports.updateBillingProfileBodySupplierAddressesItemCountryMaxOne = exports.updateBillingProfileBodySupplierAddressesItemCountryMinOne = exports.updateBillingProfileBodySupplierTaxIdCodeMaxOne = exports.updateBillingProfileBodySupplierKeyMax = exports.updateBillingProfileBodyDescriptionMax = exports.updateBillingProfileBodyNameMax = exports.updateBillingProfileParams = exports.updateBillingProfilePathIdRegExp = exports.getBillingProfileQueryParams = exports.getBillingProfileParams = exports.getBillingProfilePathIdRegExp = exports.deleteBillingProfileParams = exports.deleteBillingProfilePathIdRegExp = exports.createBillingProfileBody = exports.createBillingProfileBodyAppsPaymentRegExp = exports.createBillingProfileBodyAppsInvoicingRegExp = exports.createBillingProfileBodyAppsTaxRegExp = exports.createBillingProfileBodyWorkflowTaxEnforcedDefault = exports.createBillingProfileBodyWorkflowTaxEnabledDefault = exports.createBillingProfileBodyWorkflowPaymentCollectionMethodDefault = exports.createBillingProfileBodyWorkflowInvoicingDefaultTaxConfigStripeCodeRegExp = exports.createBillingProfileBodyWorkflowInvoicingProgressiveBillingDefault = exports.createBillingProfileBodyWorkflowInvoicingDueAfterDefault = exports.createBillingProfileBodyWorkflowInvoicingDraftPeriodDefault = exports.createBillingProfileBodyWorkflowInvoicingAutoAdvanceDefault = exports.createBillingProfileBodyWorkflowCollectionIntervalDefault = exports.createBillingProfileBodyWorkflowCollectionAlignmentDefault = exports.createBillingProfileBodySupplierAddressesMax = void 0;
|
|
12
|
+
exports.createCustomerEntitlementBodyFeatureIdRegExp = exports.createCustomerEntitlementBodyFeatureKeyRegExp = exports.createCustomerEntitlementBodyFeatureKeyMax = exports.createCustomerEntitlementParams = exports.deleteCustomerAppDataParams = exports.deleteCustomerAppDataPathAppIdRegExp = exports.upsertCustomerAppDataBody = exports.upsertCustomerAppDataBodyItem = exports.upsertCustomerAppDataBodyIdRegExpTwo = exports.upsertCustomerAppDataBodyAppListingCapabilitiesItemKeyRegExpOne = exports.upsertCustomerAppDataBodyAppListingCapabilitiesItemKeyMaxOne = exports.upsertCustomerAppDataBodyAppDescriptionMaxOne = exports.upsertCustomerAppDataBodyAppNameMaxOne = exports.upsertCustomerAppDataBodyAppIdRegExpOne = exports.upsertCustomerAppDataBodyIdRegExpOne = exports.upsertCustomerAppDataBodyAppListingCapabilitiesItemKeyRegExp = exports.upsertCustomerAppDataBodyAppListingCapabilitiesItemKeyMax = exports.upsertCustomerAppDataBodyAppDescriptionMax = exports.upsertCustomerAppDataBodyAppNameMax = exports.upsertCustomerAppDataBodyAppIdRegExp = exports.upsertCustomerAppDataBodyIdRegExp = exports.upsertCustomerAppDataParams = exports.listCustomerAppDataQueryParams = exports.listCustomerAppDataQueryPageSizeMax = exports.listCustomerAppDataQueryPageSizeDefault = exports.listCustomerAppDataQueryPageDefault = exports.listCustomerAppDataParams = exports.getCustomerAccessParams = exports.deleteCustomerParams = exports.updateCustomerBody = exports.updateCustomerBodyBillingAddressCountryRegExpOne = exports.updateCustomerBodyBillingAddressCountryMaxOne = exports.updateCustomerBodyBillingAddressCountryMinOne = exports.updateCustomerBodyCurrencyRegExpOne = exports.updateCustomerBodyCurrencyMaxOne = exports.updateCustomerBodyCurrencyMinOne = exports.updateCustomerBodyUsageAttributionSubjectKeysMax = exports.updateCustomerBodyKeyMax = exports.updateCustomerBodyDescriptionMax = exports.updateCustomerBodyNameMax = exports.updateCustomerParams = exports.getCustomerQueryParams = exports.getCustomerParams = exports.listCustomersQueryParams = exports.listCustomersQueryIncludeDeletedDefault = exports.listCustomersQueryPageSizeMax = exports.listCustomersQueryPageSizeDefault = exports.listCustomersQueryPageDefault = exports.createCustomerBody = exports.createCustomerBodyBillingAddressCountryRegExpOne = void 0;
|
|
13
|
+
exports.overrideCustomerEntitlementBodyIssueAfterResetMin = exports.overrideCustomerEntitlementBodyIsUnlimitedDefault = exports.overrideCustomerEntitlementBodyIsSoftLimitDefault = exports.overrideCustomerEntitlementBodyFeatureIdRegExp = exports.overrideCustomerEntitlementBodyFeatureKeyRegExp = exports.overrideCustomerEntitlementBodyFeatureKeyMax = exports.overrideCustomerEntitlementParams = exports.overrideCustomerEntitlementPathFeatureKeyRegExp = exports.overrideCustomerEntitlementPathFeatureKeyMax = exports.getCustomerEntitlementHistoryQueryParams = exports.getCustomerEntitlementHistoryQueryWindowTimeZoneDefault = exports.getCustomerEntitlementHistoryParams = exports.getCustomerEntitlementHistoryPathFeatureKeyRegExp = exports.getCustomerEntitlementHistoryPathFeatureKeyMax = exports.createCustomerEntitlementGrantBody = exports.createCustomerEntitlementGrantBodyMinRolloverAmountDefault = exports.createCustomerEntitlementGrantBodyMaxRolloverAmountDefault = exports.createCustomerEntitlementGrantBodyExpirationCountMax = exports.createCustomerEntitlementGrantBodyPriorityMax = exports.createCustomerEntitlementGrantBodyAmountMin = exports.createCustomerEntitlementGrantParams = exports.createCustomerEntitlementGrantPathFeatureKeyRegExp = exports.createCustomerEntitlementGrantPathFeatureKeyMax = exports.listCustomerEntitlementGrantsQueryParams = exports.listCustomerEntitlementGrantsQueryIncludeDeletedDefault = exports.listCustomerEntitlementGrantsParams = exports.listCustomerEntitlementGrantsPathFeatureKeyRegExp = exports.listCustomerEntitlementGrantsPathFeatureKeyMax = exports.deleteCustomerEntitlementParams = exports.deleteCustomerEntitlementPathFeatureKeyRegExp = exports.deleteCustomerEntitlementPathFeatureKeyMax = exports.getCustomerEntitlementParams = exports.getCustomerEntitlementPathFeatureKeyRegExp = exports.getCustomerEntitlementPathFeatureKeyMax = exports.listCustomerEntitlementsQueryParams = exports.listCustomerEntitlementsQueryIncludeDeletedDefault = exports.listCustomerEntitlementsParams = exports.createCustomerEntitlementBody = exports.createCustomerEntitlementBodyFeatureIdRegExpTwo = exports.createCustomerEntitlementBodyFeatureKeyRegExpTwo = exports.createCustomerEntitlementBodyFeatureKeyMaxTwo = exports.createCustomerEntitlementBodyFeatureIdRegExpOne = exports.createCustomerEntitlementBodyFeatureKeyRegExpOne = exports.createCustomerEntitlementBodyFeatureKeyMaxOne = exports.createCustomerEntitlementBodyPreserveOverageAtResetDefault = exports.createCustomerEntitlementBodyIssueAfterResetPriorityMax = exports.createCustomerEntitlementBodyIssueAfterResetPriorityDefault = exports.createCustomerEntitlementBodyIssueAfterResetMin = exports.createCustomerEntitlementBodyIsUnlimitedDefault = exports.createCustomerEntitlementBodyIsSoftLimitDefault = void 0;
|
|
14
|
+
exports.listFeaturesQueryPageSizeMax = exports.listFeaturesQueryPageSizeDefault = exports.listFeaturesQueryPageDefault = exports.listFeaturesQueryIncludeArchivedDefault = exports.ingestEventsBody = exports.ingestEventsBodyItemSpecversionDefault = exports.ingestEventsBodySpecversionDefault = exports.listEventsQueryParams = exports.listEventsQueryLimitMax = exports.listEventsQueryLimitDefault = exports.listEventsQueryClientIdMax = exports.getEntitlementByIdParams = exports.getEntitlementByIdPathEntitlementIdRegExp = exports.listEntitlementsQueryParams = exports.listEntitlementsQueryLimitMax = exports.listEntitlementsQueryLimitDefault = exports.listEntitlementsQueryOffsetMin = exports.listEntitlementsQueryOffsetDefault = exports.listEntitlementsQueryPageSizeMax = exports.listEntitlementsQueryPageSizeDefault = exports.listEntitlementsQueryPageDefault = exports.listEntitlementsQueryExcludeInactiveDefault = exports.listCustomerSubscriptionsQueryParams = exports.listCustomerSubscriptionsQueryPageSizeMax = exports.listCustomerSubscriptionsQueryPageSizeDefault = exports.listCustomerSubscriptionsQueryPageDefault = exports.listCustomerSubscriptionsParams = exports.createCustomerStripePortalSessionBody = exports.createCustomerStripePortalSessionParams = exports.upsertCustomerStripeAppDataBody = exports.upsertCustomerStripeAppDataParams = exports.getCustomerStripeAppDataParams = exports.getCustomerEntitlementValueQueryParams = exports.getCustomerEntitlementValueParams = exports.getCustomerEntitlementValuePathFeatureKeyRegExp = exports.getCustomerEntitlementValuePathFeatureKeyMax = exports.resetCustomerEntitlementUsageBody = exports.resetCustomerEntitlementUsageParams = exports.resetCustomerEntitlementUsagePathFeatureKeyRegExp = exports.resetCustomerEntitlementUsagePathFeatureKeyMax = exports.overrideCustomerEntitlementBody = exports.overrideCustomerEntitlementBodyFeatureIdRegExpTwo = exports.overrideCustomerEntitlementBodyFeatureKeyRegExpTwo = exports.overrideCustomerEntitlementBodyFeatureKeyMaxTwo = exports.overrideCustomerEntitlementBodyFeatureIdRegExpOne = exports.overrideCustomerEntitlementBodyFeatureKeyRegExpOne = exports.overrideCustomerEntitlementBodyFeatureKeyMaxOne = exports.overrideCustomerEntitlementBodyPreserveOverageAtResetDefault = exports.overrideCustomerEntitlementBodyIssueAfterResetPriorityMax = exports.overrideCustomerEntitlementBodyIssueAfterResetPriorityDefault = void 0;
|
|
15
|
+
exports.getMeterParams = exports.getMeterPathMeterIdOrSlugRegExp = exports.getMeterPathMeterIdOrSlugMax = exports.createMeterBody = exports.createMeterBodySlugRegExp = exports.createMeterBodySlugMax = exports.createMeterBodyNameMax = exports.createMeterBodyDescriptionMax = exports.listMetersQueryParams = exports.listMetersQueryIncludeDeletedDefault = exports.listMetersQueryPageSizeMax = exports.listMetersQueryPageSizeDefault = exports.listMetersQueryPageDefault = exports.marketplaceOAuth2InstallAuthorizeQueryParams = exports.marketplaceOAuth2InstallAuthorizeParams = exports.marketplaceOAuth2InstallGetURLParams = exports.marketplaceAppAPIKeyInstallBody = exports.marketplaceAppAPIKeyInstallBodyCreateBillingProfileDefault = exports.marketplaceAppAPIKeyInstallParams = exports.marketplaceAppInstallBody = exports.marketplaceAppInstallBodyCreateBillingProfileDefault = exports.marketplaceAppInstallParams = exports.getMarketplaceListingParams = exports.listMarketplaceListingsQueryParams = exports.listMarketplaceListingsQueryPageSizeMax = exports.listMarketplaceListingsQueryPageSizeDefault = exports.listMarketplaceListingsQueryPageDefault = exports.getProgressParams = exports.voidGrantParams = exports.listGrantsQueryParams = exports.listGrantsQueryLimitMax = exports.listGrantsQueryLimitDefault = exports.listGrantsQueryOffsetMin = exports.listGrantsQueryOffsetDefault = exports.listGrantsQueryPageSizeMax = exports.listGrantsQueryPageSizeDefault = exports.listGrantsQueryPageDefault = exports.listGrantsQueryIncludeDeletedDefault = exports.deleteFeatureParams = exports.getFeatureParams = exports.createFeatureBody = exports.createFeatureBodyMeterSlugRegExp = exports.createFeatureBodyMeterSlugMax = exports.createFeatureBodyKeyRegExp = exports.createFeatureBodyKeyMax = exports.listFeaturesQueryParams = exports.listFeaturesQueryLimitMax = exports.listFeaturesQueryLimitDefault = exports.listFeaturesQueryOffsetMin = exports.listFeaturesQueryOffsetDefault = void 0;
|
|
16
|
+
exports.listNotificationEventsQueryPageSizeDefault = exports.listNotificationEventsQueryPageDefault = exports.listNotificationEventsQueryChannelItemRegExp = exports.listNotificationEventsQueryRuleItemRegExp = exports.deleteNotificationChannelParams = exports.deleteNotificationChannelPathChannelIdRegExp = exports.getNotificationChannelParams = exports.getNotificationChannelPathChannelIdRegExp = exports.updateNotificationChannelBody = exports.updateNotificationChannelBodySigningSecretRegExp = exports.updateNotificationChannelBodyDisabledDefault = exports.updateNotificationChannelParams = exports.updateNotificationChannelPathChannelIdRegExp = exports.createNotificationChannelBody = exports.createNotificationChannelBodySigningSecretRegExp = exports.createNotificationChannelBodyDisabledDefault = exports.listNotificationChannelsQueryParams = exports.listNotificationChannelsQueryPageSizeMax = exports.listNotificationChannelsQueryPageSizeDefault = exports.listNotificationChannelsQueryPageDefault = exports.listNotificationChannelsQueryIncludeDisabledDefault = exports.listNotificationChannelsQueryIncludeDeletedDefault = exports.listMeterSubjectsParams = exports.listMeterSubjectsPathMeterIdOrSlugRegExp = exports.listMeterSubjectsPathMeterIdOrSlugMax = exports.queryMeterPostBody = exports.queryMeterPostBodyGroupByMax = exports.queryMeterPostBodyFilterCustomerIdMax = exports.queryMeterPostBodySubjectMax = exports.queryMeterPostBodyWindowTimeZoneDefault = exports.queryMeterPostBodyClientIdMax = exports.queryMeterPostParams = exports.queryMeterPostPathMeterIdOrSlugRegExp = exports.queryMeterPostPathMeterIdOrSlugMax = exports.queryMeterQueryParams = exports.queryMeterQueryFilterCustomerIdMax = exports.queryMeterQueryWindowTimeZoneDefault = exports.queryMeterQueryClientIdMax = exports.queryMeterParams = exports.queryMeterPathMeterIdOrSlugRegExp = exports.queryMeterPathMeterIdOrSlugMax = exports.deleteMeterParams = exports.deleteMeterPathMeterIdOrSlugRegExp = exports.deleteMeterPathMeterIdOrSlugMax = exports.updateMeterBody = exports.updateMeterBodyNameMax = exports.updateMeterBodyDescriptionMax = exports.updateMeterParams = exports.updateMeterPathMeterIdOrSlugRegExp = exports.updateMeterPathMeterIdOrSlugMax = void 0;
|
|
17
|
+
exports.listPlansQueryKeyItemMax = exports.listPlansQueryIdItemRegExp = exports.listPlansQueryIncludeDeletedDefault = exports.testNotificationRuleParams = exports.testNotificationRulePathRuleIdRegExp = exports.deleteNotificationRuleParams = exports.deleteNotificationRulePathRuleIdRegExp = exports.getNotificationRuleParams = exports.getNotificationRulePathRuleIdRegExp = exports.updateNotificationRuleBody = exports.updateNotificationRuleBodyChannelsItemRegExpThree = exports.updateNotificationRuleBodyDisabledDefaultThree = exports.updateNotificationRuleBodyChannelsItemRegExpTwo = exports.updateNotificationRuleBodyDisabledDefaultTwo = exports.updateNotificationRuleBodyFeaturesItemRegExpOne = exports.updateNotificationRuleBodyFeaturesItemMaxOne = exports.updateNotificationRuleBodyChannelsItemRegExpOne = exports.updateNotificationRuleBodyDisabledDefaultOne = exports.updateNotificationRuleBodyFeaturesItemRegExp = exports.updateNotificationRuleBodyFeaturesItemMax = exports.updateNotificationRuleBodyChannelsItemRegExp = exports.updateNotificationRuleBodyThresholdsMax = exports.updateNotificationRuleBodyDisabledDefault = exports.updateNotificationRuleParams = exports.updateNotificationRulePathRuleIdRegExp = exports.createNotificationRuleBody = exports.createNotificationRuleBodyChannelsItemRegExpThree = exports.createNotificationRuleBodyDisabledDefaultThree = exports.createNotificationRuleBodyChannelsItemRegExpTwo = exports.createNotificationRuleBodyDisabledDefaultTwo = exports.createNotificationRuleBodyFeaturesItemRegExpOne = exports.createNotificationRuleBodyFeaturesItemMaxOne = exports.createNotificationRuleBodyChannelsItemRegExpOne = exports.createNotificationRuleBodyDisabledDefaultOne = exports.createNotificationRuleBodyFeaturesItemRegExp = exports.createNotificationRuleBodyFeaturesItemMax = exports.createNotificationRuleBodyChannelsItemRegExp = exports.createNotificationRuleBodyThresholdsMax = exports.createNotificationRuleBodyDisabledDefault = exports.listNotificationRulesQueryParams = exports.listNotificationRulesQueryPageSizeMax = exports.listNotificationRulesQueryPageSizeDefault = exports.listNotificationRulesQueryPageDefault = exports.listNotificationRulesQueryFeatureItemRegExp = exports.listNotificationRulesQueryFeatureItemMax = exports.listNotificationRulesQueryIncludeDisabledDefault = exports.listNotificationRulesQueryIncludeDeletedDefault = exports.getNotificationEventParams = exports.listNotificationEventsQueryParams = exports.listNotificationEventsQueryPageSizeMax = void 0;
|
|
18
|
+
exports.createPlanBodyPhasesItemRateCardsItemTaxConfigStripeCodeRegExpOne = exports.createPlanBodyPhasesItemRateCardsItemEntitlementTemplatePreserveOverageAtResetDefaultOne = exports.createPlanBodyPhasesItemRateCardsItemEntitlementTemplateIssueAfterResetPriorityMaxOne = exports.createPlanBodyPhasesItemRateCardsItemEntitlementTemplateIssueAfterResetPriorityDefaultOne = exports.createPlanBodyPhasesItemRateCardsItemEntitlementTemplateIssueAfterResetMinOne = exports.createPlanBodyPhasesItemRateCardsItemEntitlementTemplateIsSoftLimitDefaultOne = exports.createPlanBodyPhasesItemRateCardsItemFeatureKeyRegExpOne = exports.createPlanBodyPhasesItemRateCardsItemFeatureKeyMaxOne = exports.createPlanBodyPhasesItemRateCardsItemDescriptionMaxOne = exports.createPlanBodyPhasesItemRateCardsItemNameMaxOne = exports.createPlanBodyPhasesItemRateCardsItemKeyRegExpOne = exports.createPlanBodyPhasesItemRateCardsItemKeyMaxOne = exports.createPlanBodyPhasesItemRateCardsItemDiscountsUsageQuantityRegExpOne = exports.createPlanBodyPhasesItemRateCardsItemPricePaymentTermDefault = exports.createPlanBodyPhasesItemRateCardsItemPriceAmountRegExpOne = exports.createPlanBodyPhasesItemRateCardsItemTaxConfigStripeCodeRegExp = exports.createPlanBodyPhasesItemRateCardsItemEntitlementTemplatePreserveOverageAtResetDefault = exports.createPlanBodyPhasesItemRateCardsItemEntitlementTemplateIssueAfterResetPriorityMax = exports.createPlanBodyPhasesItemRateCardsItemEntitlementTemplateIssueAfterResetPriorityDefault = exports.createPlanBodyPhasesItemRateCardsItemEntitlementTemplateIssueAfterResetMin = exports.createPlanBodyPhasesItemRateCardsItemEntitlementTemplateIsSoftLimitDefault = exports.createPlanBodyPhasesItemRateCardsItemFeatureKeyRegExp = exports.createPlanBodyPhasesItemRateCardsItemFeatureKeyMax = exports.createPlanBodyPhasesItemRateCardsItemDescriptionMax = exports.createPlanBodyPhasesItemRateCardsItemNameMax = exports.createPlanBodyPhasesItemRateCardsItemKeyRegExp = exports.createPlanBodyPhasesItemRateCardsItemKeyMax = exports.createPlanBodyPhasesItemDescriptionMax = exports.createPlanBodyPhasesItemNameMax = exports.createPlanBodyPhasesItemKeyRegExp = exports.createPlanBodyPhasesItemKeyMax = exports.createPlanBodyProRatingConfigDefault = exports.createPlanBodyProRatingConfigModeDefault = exports.createPlanBodyProRatingConfigEnabledDefault = exports.createPlanBodyCurrencyDefault = exports.createPlanBodyCurrencyRegExpOne = exports.createPlanBodyCurrencyMaxOne = exports.createPlanBodyCurrencyMinOne = exports.createPlanBodyKeyRegExp = exports.createPlanBodyKeyMax = exports.createPlanBodyDescriptionMax = exports.createPlanBodyNameMax = exports.listPlansQueryParams = exports.listPlansQueryPageSizeMax = exports.listPlansQueryPageSizeDefault = exports.listPlansQueryPageDefault = exports.listPlansQueryCurrencyItemRegExp = exports.listPlansQueryCurrencyItemMax = exports.listPlansQueryCurrencyItemMin = exports.listPlansQueryKeyItemRegExp = void 0;
|
|
19
|
+
exports.updatePlanBodyPhasesItemRateCardsItemKeyMaxOne = exports.updatePlanBodyPhasesItemRateCardsItemDiscountsUsageQuantityRegExpOne = exports.updatePlanBodyPhasesItemRateCardsItemPricePaymentTermDefault = exports.updatePlanBodyPhasesItemRateCardsItemPriceAmountRegExpOne = exports.updatePlanBodyPhasesItemRateCardsItemTaxConfigStripeCodeRegExp = exports.updatePlanBodyPhasesItemRateCardsItemEntitlementTemplatePreserveOverageAtResetDefault = exports.updatePlanBodyPhasesItemRateCardsItemEntitlementTemplateIssueAfterResetPriorityMax = exports.updatePlanBodyPhasesItemRateCardsItemEntitlementTemplateIssueAfterResetPriorityDefault = exports.updatePlanBodyPhasesItemRateCardsItemEntitlementTemplateIssueAfterResetMin = exports.updatePlanBodyPhasesItemRateCardsItemEntitlementTemplateIsSoftLimitDefault = exports.updatePlanBodyPhasesItemRateCardsItemFeatureKeyRegExp = exports.updatePlanBodyPhasesItemRateCardsItemFeatureKeyMax = exports.updatePlanBodyPhasesItemRateCardsItemDescriptionMax = exports.updatePlanBodyPhasesItemRateCardsItemNameMax = exports.updatePlanBodyPhasesItemRateCardsItemKeyRegExp = exports.updatePlanBodyPhasesItemRateCardsItemKeyMax = exports.updatePlanBodyPhasesItemDescriptionMax = exports.updatePlanBodyPhasesItemNameMax = exports.updatePlanBodyPhasesItemKeyRegExp = exports.updatePlanBodyPhasesItemKeyMax = exports.updatePlanBodyProRatingConfigDefault = exports.updatePlanBodyProRatingConfigModeDefault = exports.updatePlanBodyProRatingConfigEnabledDefault = exports.updatePlanBodyDescriptionMax = exports.updatePlanBodyNameMax = exports.updatePlanParams = exports.updatePlanPathPlanIdRegExp = exports.nextPlanParams = exports.nextPlanPathPlanIdOrKeyRegExp = exports.nextPlanPathPlanIdOrKeyMax = exports.createPlanBody = exports.createPlanBodyPhasesItemRateCardsItemDiscountsUsageQuantityRegExpThree = exports.createPlanBodyPhasesItemRateCardsItemPriceMaximumAmountRegExpSeven = exports.createPlanBodyPhasesItemRateCardsItemPriceMinimumAmountRegExpSeven = exports.createPlanBodyPhasesItemRateCardsItemPriceQuantityPerPackageRegExpOne = exports.createPlanBodyPhasesItemRateCardsItemPriceAmountRegExpSeven = exports.createPlanBodyPhasesItemRateCardsItemPriceMaximumAmountRegExpFive = exports.createPlanBodyPhasesItemRateCardsItemPriceMinimumAmountRegExpFive = exports.createPlanBodyPhasesItemRateCardsItemPriceMultiplierDefault = exports.createPlanBodyPhasesItemRateCardsItemPriceMultiplierRegExpOne = exports.createPlanBodyPhasesItemRateCardsItemPriceMaximumAmountRegExpThree = exports.createPlanBodyPhasesItemRateCardsItemPriceMinimumAmountRegExpThree = exports.createPlanBodyPhasesItemRateCardsItemPriceTiersItemUnitPriceAmountRegExpOne = exports.createPlanBodyPhasesItemRateCardsItemPriceTiersItemFlatPriceAmountRegExpOne = exports.createPlanBodyPhasesItemRateCardsItemPriceTiersItemUpToAmountRegExpOne = exports.createPlanBodyPhasesItemRateCardsItemPriceMaximumAmountRegExpOne = exports.createPlanBodyPhasesItemRateCardsItemPriceMinimumAmountRegExpOne = exports.createPlanBodyPhasesItemRateCardsItemPriceAmountRegExpFive = exports.createPlanBodyPhasesItemRateCardsItemPricePaymentTermDefaultTwo = exports.createPlanBodyPhasesItemRateCardsItemPriceAmountRegExpThree = void 0;
|
|
20
|
+
exports.createPlanAddonPathPlanIdRegExp = exports.listPlanAddonsQueryParams = exports.listPlanAddonsQueryPageSizeMax = exports.listPlanAddonsQueryPageSizeDefault = exports.listPlanAddonsQueryPageDefault = exports.listPlanAddonsQueryKeyItemRegExp = exports.listPlanAddonsQueryKeyItemMax = exports.listPlanAddonsQueryIdItemRegExp = exports.listPlanAddonsQueryIncludeDeletedDefault = exports.listPlanAddonsParams = exports.listPlanAddonsPathPlanIdRegExp = exports.listPlanAddonsPathPlanIdMax = exports.deletePlanParams = exports.deletePlanPathPlanIdRegExp = exports.getPlanQueryParams = exports.getPlanQueryIncludeLatestDefault = exports.getPlanParams = exports.getPlanPathPlanIdRegExp = exports.getPlanPathPlanIdMax = exports.updatePlanBody = exports.updatePlanBodyPhasesItemRateCardsItemDiscountsUsageQuantityRegExpThree = exports.updatePlanBodyPhasesItemRateCardsItemPriceMaximumAmountRegExpSeven = exports.updatePlanBodyPhasesItemRateCardsItemPriceMinimumAmountRegExpSeven = exports.updatePlanBodyPhasesItemRateCardsItemPriceQuantityPerPackageRegExpOne = exports.updatePlanBodyPhasesItemRateCardsItemPriceAmountRegExpSeven = exports.updatePlanBodyPhasesItemRateCardsItemPriceMaximumAmountRegExpFive = exports.updatePlanBodyPhasesItemRateCardsItemPriceMinimumAmountRegExpFive = exports.updatePlanBodyPhasesItemRateCardsItemPriceMultiplierDefault = exports.updatePlanBodyPhasesItemRateCardsItemPriceMultiplierRegExpOne = exports.updatePlanBodyPhasesItemRateCardsItemPriceMaximumAmountRegExpThree = exports.updatePlanBodyPhasesItemRateCardsItemPriceMinimumAmountRegExpThree = exports.updatePlanBodyPhasesItemRateCardsItemPriceTiersItemUnitPriceAmountRegExpOne = exports.updatePlanBodyPhasesItemRateCardsItemPriceTiersItemFlatPriceAmountRegExpOne = exports.updatePlanBodyPhasesItemRateCardsItemPriceTiersItemUpToAmountRegExpOne = exports.updatePlanBodyPhasesItemRateCardsItemPriceMaximumAmountRegExpOne = exports.updatePlanBodyPhasesItemRateCardsItemPriceMinimumAmountRegExpOne = exports.updatePlanBodyPhasesItemRateCardsItemPriceAmountRegExpFive = exports.updatePlanBodyPhasesItemRateCardsItemPricePaymentTermDefaultTwo = exports.updatePlanBodyPhasesItemRateCardsItemPriceAmountRegExpThree = exports.updatePlanBodyPhasesItemRateCardsItemTaxConfigStripeCodeRegExpOne = exports.updatePlanBodyPhasesItemRateCardsItemEntitlementTemplatePreserveOverageAtResetDefaultOne = exports.updatePlanBodyPhasesItemRateCardsItemEntitlementTemplateIssueAfterResetPriorityMaxOne = exports.updatePlanBodyPhasesItemRateCardsItemEntitlementTemplateIssueAfterResetPriorityDefaultOne = exports.updatePlanBodyPhasesItemRateCardsItemEntitlementTemplateIssueAfterResetMinOne = exports.updatePlanBodyPhasesItemRateCardsItemEntitlementTemplateIsSoftLimitDefaultOne = exports.updatePlanBodyPhasesItemRateCardsItemFeatureKeyRegExpOne = exports.updatePlanBodyPhasesItemRateCardsItemFeatureKeyMaxOne = exports.updatePlanBodyPhasesItemRateCardsItemDescriptionMaxOne = exports.updatePlanBodyPhasesItemRateCardsItemNameMaxOne = exports.updatePlanBodyPhasesItemRateCardsItemKeyRegExpOne = void 0;
|
|
21
|
+
exports.createStripeCheckoutSessionBodyOptionsCustomTextTermsOfServiceAcceptanceMessageMax = exports.createStripeCheckoutSessionBodyOptionsCustomTextSubmitMessageMax = exports.createStripeCheckoutSessionBodyOptionsCustomTextShippingAddressMessageMax = exports.createStripeCheckoutSessionBodyOptionsCustomTextAfterSubmitMessageMax = exports.createStripeCheckoutSessionBodyOptionsCurrencyRegExpOne = exports.createStripeCheckoutSessionBodyOptionsCurrencyMaxOne = exports.createStripeCheckoutSessionBodyOptionsCurrencyMinOne = exports.createStripeCheckoutSessionBodyCustomerBillingAddressCountryRegExpOne = exports.createStripeCheckoutSessionBodyCustomerBillingAddressCountryMaxOne = exports.createStripeCheckoutSessionBodyCustomerBillingAddressCountryMinOne = exports.createStripeCheckoutSessionBodyCustomerCurrencyRegExpOne = exports.createStripeCheckoutSessionBodyCustomerCurrencyMaxOne = exports.createStripeCheckoutSessionBodyCustomerCurrencyMinOne = exports.createStripeCheckoutSessionBodyCustomerUsageAttributionSubjectKeysMax = exports.createStripeCheckoutSessionBodyCustomerKeyMaxOne = exports.createStripeCheckoutSessionBodyCustomerDescriptionMax = exports.createStripeCheckoutSessionBodyCustomerNameMax = exports.createStripeCheckoutSessionBodyCustomerIdRegExp = exports.createStripeCheckoutSessionBodyAppIdRegExp = exports.invalidatePortalTokensBody = exports.listPortalTokensQueryParams = exports.listPortalTokensQueryLimitMax = exports.listPortalTokensQueryLimitDefault = exports.createPortalTokenBody = exports.queryPortalMeterQueryParams = exports.queryPortalMeterQueryFilterCustomerIdMax = exports.queryPortalMeterQueryWindowTimeZoneDefault = exports.queryPortalMeterQueryClientIdMax = exports.queryPortalMeterParams = exports.queryPortalMeterPathMeterSlugRegExp = exports.queryPortalMeterPathMeterSlugMax = exports.publishPlanParams = exports.publishPlanPathPlanIdRegExp = exports.archivePlanParams = exports.archivePlanPathPlanIdRegExp = exports.deletePlanAddonParams = exports.deletePlanAddonPathPlanAddonIdRegExp = exports.deletePlanAddonPathPlanIdRegExp = exports.getPlanAddonParams = exports.getPlanAddonPathPlanAddonIdRegExp = exports.getPlanAddonPathPlanAddonIdMax = exports.getPlanAddonPathPlanIdRegExp = exports.getPlanAddonPathPlanIdMax = exports.updatePlanAddonBody = exports.updatePlanAddonParams = exports.updatePlanAddonPathPlanAddonIdRegExp = exports.updatePlanAddonPathPlanIdRegExp = exports.createPlanAddonBody = exports.createPlanAddonBodyAddonIdRegExp = exports.createPlanAddonParams = void 0;
|
|
22
|
+
exports.overrideEntitlementBodyFeatureKeyRegExpTwo = exports.overrideEntitlementBodyFeatureKeyMaxTwo = exports.overrideEntitlementBodyFeatureIdRegExpOne = exports.overrideEntitlementBodyFeatureKeyRegExpOne = exports.overrideEntitlementBodyFeatureKeyMaxOne = exports.overrideEntitlementBodyPreserveOverageAtResetDefault = exports.overrideEntitlementBodyIssueAfterResetPriorityMax = exports.overrideEntitlementBodyIssueAfterResetPriorityDefault = exports.overrideEntitlementBodyIssueAfterResetMin = exports.overrideEntitlementBodyIsUnlimitedDefault = exports.overrideEntitlementBodyIsSoftLimitDefault = exports.overrideEntitlementBodyFeatureIdRegExp = exports.overrideEntitlementBodyFeatureKeyRegExp = exports.overrideEntitlementBodyFeatureKeyMax = exports.overrideEntitlementParams = exports.createGrantBody = exports.createGrantBodyMinRolloverAmountDefault = exports.createGrantBodyMaxRolloverAmountDefault = exports.createGrantBodyExpirationCountMax = exports.createGrantBodyPriorityMax = exports.createGrantBodyAmountMin = exports.createGrantParams = exports.listEntitlementGrantsQueryParams = exports.listEntitlementGrantsQueryIncludeDeletedDefault = exports.listEntitlementGrantsParams = exports.listSubjectEntitlementsQueryParams = exports.listSubjectEntitlementsQueryIncludeDeletedDefault = exports.listSubjectEntitlementsParams = exports.createEntitlementBody = exports.createEntitlementBodyFeatureIdRegExpTwo = exports.createEntitlementBodyFeatureKeyRegExpTwo = exports.createEntitlementBodyFeatureKeyMaxTwo = exports.createEntitlementBodyFeatureIdRegExpOne = exports.createEntitlementBodyFeatureKeyRegExpOne = exports.createEntitlementBodyFeatureKeyMaxOne = exports.createEntitlementBodyPreserveOverageAtResetDefault = exports.createEntitlementBodyIssueAfterResetPriorityMax = exports.createEntitlementBodyIssueAfterResetPriorityDefault = exports.createEntitlementBodyIssueAfterResetMin = exports.createEntitlementBodyIsUnlimitedDefault = exports.createEntitlementBodyIsSoftLimitDefault = exports.createEntitlementBodyFeatureIdRegExp = exports.createEntitlementBodyFeatureKeyRegExp = exports.createEntitlementBodyFeatureKeyMax = exports.createEntitlementParams = exports.deleteSubjectParams = exports.getSubjectParams = exports.upsertSubjectBody = exports.upsertSubjectBodyItem = exports.createStripeCheckoutSessionBody = void 0;
|
|
23
|
+
exports.createSubscriptionBodyCustomPlanPhasesItemRateCardsItemFeatureKeyRegExpOne = exports.createSubscriptionBodyCustomPlanPhasesItemRateCardsItemFeatureKeyMaxOne = exports.createSubscriptionBodyCustomPlanPhasesItemRateCardsItemDescriptionMaxOne = exports.createSubscriptionBodyCustomPlanPhasesItemRateCardsItemNameMaxOne = exports.createSubscriptionBodyCustomPlanPhasesItemRateCardsItemKeyRegExpOne = exports.createSubscriptionBodyCustomPlanPhasesItemRateCardsItemKeyMaxOne = exports.createSubscriptionBodyCustomPlanPhasesItemRateCardsItemDiscountsUsageQuantityRegExpOne = exports.createSubscriptionBodyCustomPlanPhasesItemRateCardsItemPricePaymentTermDefault = exports.createSubscriptionBodyCustomPlanPhasesItemRateCardsItemPriceAmountRegExpOne = exports.createSubscriptionBodyCustomPlanPhasesItemRateCardsItemTaxConfigStripeCodeRegExp = exports.createSubscriptionBodyCustomPlanPhasesItemRateCardsItemEntitlementTemplatePreserveOverageAtResetDefault = exports.createSubscriptionBodyCustomPlanPhasesItemRateCardsItemEntitlementTemplateIssueAfterResetPriorityMax = exports.createSubscriptionBodyCustomPlanPhasesItemRateCardsItemEntitlementTemplateIssueAfterResetPriorityDefault = exports.createSubscriptionBodyCustomPlanPhasesItemRateCardsItemEntitlementTemplateIssueAfterResetMin = exports.createSubscriptionBodyCustomPlanPhasesItemRateCardsItemEntitlementTemplateIsSoftLimitDefault = exports.createSubscriptionBodyCustomPlanPhasesItemRateCardsItemFeatureKeyRegExp = exports.createSubscriptionBodyCustomPlanPhasesItemRateCardsItemFeatureKeyMax = exports.createSubscriptionBodyCustomPlanPhasesItemRateCardsItemDescriptionMax = exports.createSubscriptionBodyCustomPlanPhasesItemRateCardsItemNameMax = exports.createSubscriptionBodyCustomPlanPhasesItemRateCardsItemKeyRegExp = exports.createSubscriptionBodyCustomPlanPhasesItemRateCardsItemKeyMax = exports.createSubscriptionBodyCustomPlanPhasesItemDescriptionMax = exports.createSubscriptionBodyCustomPlanPhasesItemNameMax = exports.createSubscriptionBodyCustomPlanPhasesItemKeyRegExp = exports.createSubscriptionBodyCustomPlanPhasesItemKeyMax = exports.createSubscriptionBodyCustomPlanProRatingConfigDefault = exports.createSubscriptionBodyCustomPlanProRatingConfigModeDefault = exports.createSubscriptionBodyCustomPlanProRatingConfigEnabledDefault = exports.createSubscriptionBodyCustomPlanCurrencyDefault = exports.createSubscriptionBodyCustomPlanCurrencyRegExpOne = exports.createSubscriptionBodyCustomPlanCurrencyMaxOne = exports.createSubscriptionBodyCustomPlanCurrencyMinOne = exports.createSubscriptionBodyCustomPlanDescriptionMax = exports.createSubscriptionBodyCustomPlanNameMax = exports.createSubscriptionBodyCustomerKeyMax = exports.createSubscriptionBodyCustomerIdRegExp = exports.createSubscriptionBodyTimingDefault = exports.createSubscriptionBodyPlanKeyRegExp = exports.createSubscriptionBodyPlanKeyMax = exports.resetEntitlementUsageBody = exports.resetEntitlementUsageParams = exports.getEntitlementHistoryQueryParams = exports.getEntitlementHistoryQueryWindowTimeZoneDefault = exports.getEntitlementHistoryParams = exports.deleteEntitlementParams = exports.getEntitlementParams = exports.getEntitlementValueQueryParams = exports.getEntitlementValueParams = exports.overrideEntitlementBody = exports.overrideEntitlementBodyFeatureIdRegExpTwo = void 0;
|
|
24
|
+
exports.editSubscriptionBodyCustomizationsItemRateCardKeyMaxOne = exports.editSubscriptionBodyCustomizationsItemRateCardDiscountsUsageQuantityRegExpOne = exports.editSubscriptionBodyCustomizationsItemRateCardPricePaymentTermDefault = exports.editSubscriptionBodyCustomizationsItemRateCardPriceAmountRegExpOne = exports.editSubscriptionBodyCustomizationsItemRateCardTaxConfigStripeCodeRegExp = exports.editSubscriptionBodyCustomizationsItemRateCardEntitlementTemplatePreserveOverageAtResetDefault = exports.editSubscriptionBodyCustomizationsItemRateCardEntitlementTemplateIssueAfterResetPriorityMax = exports.editSubscriptionBodyCustomizationsItemRateCardEntitlementTemplateIssueAfterResetPriorityDefault = exports.editSubscriptionBodyCustomizationsItemRateCardEntitlementTemplateIssueAfterResetMin = exports.editSubscriptionBodyCustomizationsItemRateCardEntitlementTemplateIsSoftLimitDefault = exports.editSubscriptionBodyCustomizationsItemRateCardFeatureKeyRegExp = exports.editSubscriptionBodyCustomizationsItemRateCardFeatureKeyMax = exports.editSubscriptionBodyCustomizationsItemRateCardDescriptionMax = exports.editSubscriptionBodyCustomizationsItemRateCardNameMax = exports.editSubscriptionBodyCustomizationsItemRateCardKeyRegExp = exports.editSubscriptionBodyCustomizationsItemRateCardKeyMax = exports.editSubscriptionParams = exports.editSubscriptionPathSubscriptionIdRegExp = exports.getSubscriptionQueryParams = exports.getSubscriptionParams = exports.getSubscriptionPathSubscriptionIdRegExp = exports.createSubscriptionBody = exports.createSubscriptionBodyCustomerKeyMaxOne = exports.createSubscriptionBodyCustomerIdRegExpOne = exports.createSubscriptionBodyTimingDefaultFour = exports.createSubscriptionBodyCustomPlanPhasesItemRateCardsItemDiscountsUsageQuantityRegExpThree = exports.createSubscriptionBodyCustomPlanPhasesItemRateCardsItemPriceMaximumAmountRegExpSeven = exports.createSubscriptionBodyCustomPlanPhasesItemRateCardsItemPriceMinimumAmountRegExpSeven = exports.createSubscriptionBodyCustomPlanPhasesItemRateCardsItemPriceQuantityPerPackageRegExpOne = exports.createSubscriptionBodyCustomPlanPhasesItemRateCardsItemPriceAmountRegExpSeven = exports.createSubscriptionBodyCustomPlanPhasesItemRateCardsItemPriceMaximumAmountRegExpFive = exports.createSubscriptionBodyCustomPlanPhasesItemRateCardsItemPriceMinimumAmountRegExpFive = exports.createSubscriptionBodyCustomPlanPhasesItemRateCardsItemPriceMultiplierDefault = exports.createSubscriptionBodyCustomPlanPhasesItemRateCardsItemPriceMultiplierRegExpOne = exports.createSubscriptionBodyCustomPlanPhasesItemRateCardsItemPriceMaximumAmountRegExpThree = exports.createSubscriptionBodyCustomPlanPhasesItemRateCardsItemPriceMinimumAmountRegExpThree = exports.createSubscriptionBodyCustomPlanPhasesItemRateCardsItemPriceTiersItemUnitPriceAmountRegExpOne = exports.createSubscriptionBodyCustomPlanPhasesItemRateCardsItemPriceTiersItemFlatPriceAmountRegExpOne = exports.createSubscriptionBodyCustomPlanPhasesItemRateCardsItemPriceTiersItemUpToAmountRegExpOne = exports.createSubscriptionBodyCustomPlanPhasesItemRateCardsItemPriceMaximumAmountRegExpOne = exports.createSubscriptionBodyCustomPlanPhasesItemRateCardsItemPriceMinimumAmountRegExpOne = exports.createSubscriptionBodyCustomPlanPhasesItemRateCardsItemPriceAmountRegExpFive = exports.createSubscriptionBodyCustomPlanPhasesItemRateCardsItemPricePaymentTermDefaultTwo = exports.createSubscriptionBodyCustomPlanPhasesItemRateCardsItemPriceAmountRegExpThree = exports.createSubscriptionBodyCustomPlanPhasesItemRateCardsItemTaxConfigStripeCodeRegExpOne = exports.createSubscriptionBodyCustomPlanPhasesItemRateCardsItemEntitlementTemplatePreserveOverageAtResetDefaultOne = exports.createSubscriptionBodyCustomPlanPhasesItemRateCardsItemEntitlementTemplateIssueAfterResetPriorityMaxOne = exports.createSubscriptionBodyCustomPlanPhasesItemRateCardsItemEntitlementTemplateIssueAfterResetPriorityDefaultOne = exports.createSubscriptionBodyCustomPlanPhasesItemRateCardsItemEntitlementTemplateIssueAfterResetMinOne = exports.createSubscriptionBodyCustomPlanPhasesItemRateCardsItemEntitlementTemplateIsSoftLimitDefaultOne = void 0;
|
|
25
|
+
exports.updateSubscriptionAddonPathSubscriptionIdRegExp = exports.getSubscriptionAddonParams = exports.getSubscriptionAddonPathSubscriptionAddonIdRegExp = exports.getSubscriptionAddonPathSubscriptionIdRegExp = exports.listSubscriptionAddonsParams = exports.listSubscriptionAddonsPathSubscriptionIdRegExp = exports.createSubscriptionAddonBody = exports.createSubscriptionAddonBodyAddonIdRegExp = exports.createSubscriptionAddonBodyQuantityMin = exports.createSubscriptionAddonBodyDescriptionMax = exports.createSubscriptionAddonBodyNameMax = exports.createSubscriptionAddonParams = exports.createSubscriptionAddonPathSubscriptionIdRegExp = exports.deleteSubscriptionParams = exports.deleteSubscriptionPathSubscriptionIdRegExp = exports.editSubscriptionBody = exports.editSubscriptionBodyCustomizationsMax = exports.editSubscriptionBodyCustomizationsItemPhaseKeyRegExpTwo = exports.editSubscriptionBodyCustomizationsItemPhaseKeyMaxTwo = exports.editSubscriptionBodyCustomizationsItemPhaseDiscountsUsageQuantityRegExpOne = exports.editSubscriptionBodyCustomizationsItemRateCardDiscountsUsageQuantityRegExpThree = exports.editSubscriptionBodyCustomizationsItemRateCardPriceMaximumAmountRegExpSeven = exports.editSubscriptionBodyCustomizationsItemRateCardPriceMinimumAmountRegExpSeven = exports.editSubscriptionBodyCustomizationsItemRateCardPriceQuantityPerPackageRegExpOne = exports.editSubscriptionBodyCustomizationsItemRateCardPriceAmountRegExpSeven = exports.editSubscriptionBodyCustomizationsItemRateCardPriceMaximumAmountRegExpFive = exports.editSubscriptionBodyCustomizationsItemRateCardPriceMinimumAmountRegExpFive = exports.editSubscriptionBodyCustomizationsItemRateCardPriceMultiplierDefault = exports.editSubscriptionBodyCustomizationsItemRateCardPriceMultiplierRegExpOne = exports.editSubscriptionBodyCustomizationsItemRateCardPriceMaximumAmountRegExpThree = exports.editSubscriptionBodyCustomizationsItemRateCardPriceMinimumAmountRegExpThree = exports.editSubscriptionBodyCustomizationsItemRateCardPriceTiersItemUnitPriceAmountRegExpOne = exports.editSubscriptionBodyCustomizationsItemRateCardPriceTiersItemFlatPriceAmountRegExpOne = exports.editSubscriptionBodyCustomizationsItemRateCardPriceTiersItemUpToAmountRegExpOne = exports.editSubscriptionBodyCustomizationsItemRateCardPriceMaximumAmountRegExpOne = exports.editSubscriptionBodyCustomizationsItemRateCardPriceMinimumAmountRegExpOne = exports.editSubscriptionBodyCustomizationsItemRateCardPriceAmountRegExpFive = exports.editSubscriptionBodyCustomizationsItemRateCardPricePaymentTermDefaultTwo = exports.editSubscriptionBodyCustomizationsItemRateCardPriceAmountRegExpThree = exports.editSubscriptionBodyCustomizationsItemRateCardTaxConfigStripeCodeRegExpOne = exports.editSubscriptionBodyCustomizationsItemRateCardEntitlementTemplatePreserveOverageAtResetDefaultOne = exports.editSubscriptionBodyCustomizationsItemRateCardEntitlementTemplateIssueAfterResetPriorityMaxOne = exports.editSubscriptionBodyCustomizationsItemRateCardEntitlementTemplateIssueAfterResetPriorityDefaultOne = exports.editSubscriptionBodyCustomizationsItemRateCardEntitlementTemplateIssueAfterResetMinOne = exports.editSubscriptionBodyCustomizationsItemRateCardEntitlementTemplateIsSoftLimitDefaultOne = exports.editSubscriptionBodyCustomizationsItemRateCardFeatureKeyRegExpOne = exports.editSubscriptionBodyCustomizationsItemRateCardFeatureKeyMaxOne = exports.editSubscriptionBodyCustomizationsItemRateCardDescriptionMaxOne = exports.editSubscriptionBodyCustomizationsItemRateCardNameMaxOne = exports.editSubscriptionBodyCustomizationsItemRateCardKeyRegExpOne = void 0;
|
|
26
|
+
exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemEntitlementTemplateIssueAfterResetPriorityDefaultOne = exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemEntitlementTemplateIssueAfterResetMinOne = exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemEntitlementTemplateIsSoftLimitDefaultOne = exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemFeatureKeyRegExpOne = exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemFeatureKeyMaxOne = exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemDescriptionMaxOne = exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemNameMaxOne = exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemKeyRegExpOne = exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemKeyMaxOne = exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemDiscountsUsageQuantityRegExpOne = exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemPricePaymentTermDefault = exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemPriceAmountRegExpOne = exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemTaxConfigStripeCodeRegExp = exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemEntitlementTemplatePreserveOverageAtResetDefault = exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemEntitlementTemplateIssueAfterResetPriorityMax = exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemEntitlementTemplateIssueAfterResetPriorityDefault = exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemEntitlementTemplateIssueAfterResetMin = exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemEntitlementTemplateIsSoftLimitDefault = exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemFeatureKeyRegExp = exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemFeatureKeyMax = exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemDescriptionMax = exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemNameMax = exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemKeyRegExp = exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemKeyMax = exports.changeSubscriptionBodyCustomPlanPhasesItemDescriptionMax = exports.changeSubscriptionBodyCustomPlanPhasesItemNameMax = exports.changeSubscriptionBodyCustomPlanPhasesItemKeyRegExp = exports.changeSubscriptionBodyCustomPlanPhasesItemKeyMax = exports.changeSubscriptionBodyCustomPlanProRatingConfigDefault = exports.changeSubscriptionBodyCustomPlanProRatingConfigModeDefault = exports.changeSubscriptionBodyCustomPlanProRatingConfigEnabledDefault = exports.changeSubscriptionBodyCustomPlanCurrencyDefault = exports.changeSubscriptionBodyCustomPlanCurrencyRegExpOne = exports.changeSubscriptionBodyCustomPlanCurrencyMaxOne = exports.changeSubscriptionBodyCustomPlanCurrencyMinOne = exports.changeSubscriptionBodyCustomPlanDescriptionMax = exports.changeSubscriptionBodyCustomPlanNameMax = exports.changeSubscriptionBodyPlanKeyRegExp = exports.changeSubscriptionBodyPlanKeyMax = exports.changeSubscriptionParams = exports.changeSubscriptionPathSubscriptionIdRegExp = exports.cancelSubscriptionBody = exports.cancelSubscriptionParams = exports.cancelSubscriptionPathSubscriptionIdRegExp = exports.updateSubscriptionAddonBody = exports.updateSubscriptionAddonBodyQuantityMin = exports.updateSubscriptionAddonBodyDescriptionMax = exports.updateSubscriptionAddonBodyNameMax = exports.updateSubscriptionAddonParams = exports.updateSubscriptionAddonPathSubscriptionAddonIdRegExp = void 0;
|
|
27
|
+
exports.listEventsV2QueryParams = exports.listEventsV2QueryClientIdMax = exports.listEventsV2QueryLimitMax = exports.listEventsV2QueryLimitDefault = exports.unscheduleCancelationParams = exports.unscheduleCancelationPathSubscriptionIdRegExp = exports.restoreSubscriptionParams = exports.restoreSubscriptionPathSubscriptionIdRegExp = exports.migrateSubscriptionBody = exports.migrateSubscriptionBodyTimingDefault = exports.migrateSubscriptionParams = exports.migrateSubscriptionPathSubscriptionIdRegExp = exports.changeSubscriptionBody = exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemDiscountsUsageQuantityRegExpThree = exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemPriceMaximumAmountRegExpSeven = exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemPriceMinimumAmountRegExpSeven = exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemPriceQuantityPerPackageRegExpOne = exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemPriceAmountRegExpSeven = exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemPriceMaximumAmountRegExpFive = exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemPriceMinimumAmountRegExpFive = exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemPriceMultiplierDefault = exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemPriceMultiplierRegExpOne = exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemPriceMaximumAmountRegExpThree = exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemPriceMinimumAmountRegExpThree = exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemPriceTiersItemUnitPriceAmountRegExpOne = exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemPriceTiersItemFlatPriceAmountRegExpOne = exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemPriceTiersItemUpToAmountRegExpOne = exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemPriceMaximumAmountRegExpOne = exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemPriceMinimumAmountRegExpOne = exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemPriceAmountRegExpFive = exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemPricePaymentTermDefaultTwo = exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemPriceAmountRegExpThree = exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemTaxConfigStripeCodeRegExpOne = exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemEntitlementTemplatePreserveOverageAtResetDefaultOne = exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemEntitlementTemplateIssueAfterResetPriorityMaxOne = void 0;
|
|
28
28
|
/* eslint-disable no-useless-escape */
|
|
29
29
|
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
|
30
30
|
// @ts-nocheck
|
|
@@ -3001,11 +3001,13 @@ exports.updateInvoiceParams = zod_1.z.object({
|
|
|
3001
3001
|
invoiceId: zod_1.z.coerce.string().regex(exports.updateInvoicePathInvoiceIdRegExp),
|
|
3002
3002
|
});
|
|
3003
3003
|
exports.updateInvoiceBodyDescriptionMax = 1024;
|
|
3004
|
+
exports.updateInvoiceBodySupplierKeyMax = 256;
|
|
3004
3005
|
exports.updateInvoiceBodySupplierTaxIdCodeMaxOne = 32;
|
|
3005
3006
|
exports.updateInvoiceBodySupplierAddressesItemCountryMinOne = 2;
|
|
3006
3007
|
exports.updateInvoiceBodySupplierAddressesItemCountryMaxOne = 2;
|
|
3007
3008
|
exports.updateInvoiceBodySupplierAddressesItemCountryRegExpOne = new RegExp('^[A-Z]{2}$');
|
|
3008
3009
|
exports.updateInvoiceBodySupplierAddressesMax = 1;
|
|
3010
|
+
exports.updateInvoiceBodyCustomerKeyMax = 256;
|
|
3009
3011
|
exports.updateInvoiceBodyCustomerTaxIdCodeMaxOne = 32;
|
|
3010
3012
|
exports.updateInvoiceBodyCustomerAddressesItemCountryMinOne = 2;
|
|
3011
3013
|
exports.updateInvoiceBodyCustomerAddressesItemCountryMaxOne = 2;
|
|
@@ -3105,6 +3107,12 @@ exports.updateInvoiceBody = zod_1.z
|
|
|
3105
3107
|
.max(exports.updateInvoiceBodyCustomerAddressesMax)
|
|
3106
3108
|
.optional()
|
|
3107
3109
|
.describe('Regular post addresses for where information should be sent if needed.'),
|
|
3110
|
+
key: zod_1.z.coerce
|
|
3111
|
+
.string()
|
|
3112
|
+
.min(1)
|
|
3113
|
+
.max(exports.updateInvoiceBodyCustomerKeyMax)
|
|
3114
|
+
.optional()
|
|
3115
|
+
.describe('An optional unique key of the party (if available)'),
|
|
3108
3116
|
name: zod_1.z.coerce
|
|
3109
3117
|
.string()
|
|
3110
3118
|
.optional()
|
|
@@ -3637,6 +3645,12 @@ exports.updateInvoiceBody = zod_1.z
|
|
|
3637
3645
|
.max(exports.updateInvoiceBodySupplierAddressesMax)
|
|
3638
3646
|
.optional()
|
|
3639
3647
|
.describe('Regular post addresses for where information should be sent if needed.'),
|
|
3648
|
+
key: zod_1.z.coerce
|
|
3649
|
+
.string()
|
|
3650
|
+
.min(1)
|
|
3651
|
+
.max(exports.updateInvoiceBodySupplierKeyMax)
|
|
3652
|
+
.optional()
|
|
3653
|
+
.describe('An optional unique key of the party (if available)'),
|
|
3640
3654
|
name: zod_1.z.coerce
|
|
3641
3655
|
.string()
|
|
3642
3656
|
.optional()
|
|
@@ -3919,6 +3933,7 @@ can be applied to a billing profile to customize the billing behavior for a spec
|
|
|
3919
3933
|
*/
|
|
3920
3934
|
exports.createBillingProfileBodyNameMax = 256;
|
|
3921
3935
|
exports.createBillingProfileBodyDescriptionMax = 1024;
|
|
3936
|
+
exports.createBillingProfileBodySupplierKeyMax = 256;
|
|
3922
3937
|
exports.createBillingProfileBodySupplierTaxIdCodeMaxOne = 32;
|
|
3923
3938
|
exports.createBillingProfileBodySupplierAddressesItemCountryMinOne = 2;
|
|
3924
3939
|
exports.createBillingProfileBodySupplierAddressesItemCountryMaxOne = 2;
|
|
@@ -4017,6 +4032,12 @@ exports.createBillingProfileBody = zod_1.z
|
|
|
4017
4032
|
.string()
|
|
4018
4033
|
.optional()
|
|
4019
4034
|
.describe('Unique identifier for the party (if available)'),
|
|
4035
|
+
key: zod_1.z.coerce
|
|
4036
|
+
.string()
|
|
4037
|
+
.min(1)
|
|
4038
|
+
.max(exports.createBillingProfileBodySupplierKeyMax)
|
|
4039
|
+
.optional()
|
|
4040
|
+
.describe('An optional unique key of the party (if available)'),
|
|
4020
4041
|
name: zod_1.z.coerce
|
|
4021
4042
|
.string()
|
|
4022
4043
|
.optional()
|
|
@@ -4186,6 +4207,7 @@ exports.updateBillingProfileParams = zod_1.z.object({
|
|
|
4186
4207
|
});
|
|
4187
4208
|
exports.updateBillingProfileBodyNameMax = 256;
|
|
4188
4209
|
exports.updateBillingProfileBodyDescriptionMax = 1024;
|
|
4210
|
+
exports.updateBillingProfileBodySupplierKeyMax = 256;
|
|
4189
4211
|
exports.updateBillingProfileBodySupplierTaxIdCodeMaxOne = 32;
|
|
4190
4212
|
exports.updateBillingProfileBodySupplierAddressesItemCountryMinOne = 2;
|
|
4191
4213
|
exports.updateBillingProfileBodySupplierAddressesItemCountryMaxOne = 2;
|
|
@@ -4264,6 +4286,12 @@ exports.updateBillingProfileBody = zod_1.z
|
|
|
4264
4286
|
.string()
|
|
4265
4287
|
.optional()
|
|
4266
4288
|
.describe('Unique identifier for the party (if available)'),
|
|
4289
|
+
key: zod_1.z.coerce
|
|
4290
|
+
.string()
|
|
4291
|
+
.min(1)
|
|
4292
|
+
.max(exports.updateBillingProfileBodySupplierKeyMax)
|
|
4293
|
+
.optional()
|
|
4294
|
+
.describe('An optional unique key of the party (if available)'),
|
|
4267
4295
|
name: zod_1.z.coerce
|
|
4268
4296
|
.string()
|
|
4269
4297
|
.optional()
|
|
@@ -5348,6 +5376,7 @@ exports.createCustomerEntitlementGrantParams = zod_1.z.object({
|
|
|
5348
5376
|
});
|
|
5349
5377
|
exports.createCustomerEntitlementGrantBodyAmountMin = 0;
|
|
5350
5378
|
exports.createCustomerEntitlementGrantBodyPriorityMax = 255;
|
|
5379
|
+
exports.createCustomerEntitlementGrantBodyExpirationCountMax = 1000;
|
|
5351
5380
|
exports.createCustomerEntitlementGrantBodyMaxRolloverAmountDefault = 0;
|
|
5352
5381
|
exports.createCustomerEntitlementGrantBodyMinRolloverAmountDefault = 0;
|
|
5353
5382
|
exports.createCustomerEntitlementGrantBody = zod_1.z
|
|
@@ -5363,6 +5392,8 @@ exports.createCustomerEntitlementGrantBody = zod_1.z
|
|
|
5363
5392
|
.object({
|
|
5364
5393
|
count: zod_1.z.coerce
|
|
5365
5394
|
.number()
|
|
5395
|
+
.min(1)
|
|
5396
|
+
.max(exports.createCustomerEntitlementGrantBodyExpirationCountMax)
|
|
5366
5397
|
.describe('The number of time units in the expiration period.'),
|
|
5367
5398
|
duration: zod_1.z
|
|
5368
5399
|
.enum(['HOUR', 'DAY', 'WEEK', 'MONTH', 'YEAR'])
|
|
@@ -9385,6 +9416,7 @@ exports.createGrantParams = zod_1.z.object({
|
|
|
9385
9416
|
});
|
|
9386
9417
|
exports.createGrantBodyAmountMin = 0;
|
|
9387
9418
|
exports.createGrantBodyPriorityMax = 255;
|
|
9419
|
+
exports.createGrantBodyExpirationCountMax = 1000;
|
|
9388
9420
|
exports.createGrantBodyMaxRolloverAmountDefault = 0;
|
|
9389
9421
|
exports.createGrantBodyMinRolloverAmountDefault = 0;
|
|
9390
9422
|
exports.createGrantBody = zod_1.z
|
|
@@ -9400,6 +9432,8 @@ exports.createGrantBody = zod_1.z
|
|
|
9400
9432
|
.object({
|
|
9401
9433
|
count: zod_1.z.coerce
|
|
9402
9434
|
.number()
|
|
9435
|
+
.min(1)
|
|
9436
|
+
.max(exports.createGrantBodyExpirationCountMax)
|
|
9403
9437
|
.describe('The number of time units in the expiration period.'),
|
|
9404
9438
|
duration: zod_1.z
|
|
9405
9439
|
.enum(['HOUR', 'DAY', 'WEEK', 'MONTH', 'YEAR'])
|