@openmeter/sdk 1.0.0-beta-bdb50369d5d0 → 1.0.0-beta-e17c230acd1e

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.
@@ -32,6 +32,7 @@ export declare class Plans {
32
32
  readonly effectiveFrom?: Date;
33
33
  readonly effectiveTo?: Date;
34
34
  readonly status: import("./schemas.cjs").components["schemas"]["PlanStatus"];
35
+ settlementMode?: import("./schemas.cjs").components["schemas"]["BillingSettlementMode"];
35
36
  phases: import("./schemas.cjs").components["schemas"]["PlanPhase"][];
36
37
  readonly validationErrors: import("./schemas.cjs").components["schemas"]["ValidationError"][] | null;
37
38
  } | undefined>;
@@ -59,6 +60,7 @@ export declare class Plans {
59
60
  readonly effectiveFrom?: Date;
60
61
  readonly effectiveTo?: Date;
61
62
  readonly status: import("./schemas.cjs").components["schemas"]["PlanStatus"];
63
+ settlementMode?: import("./schemas.cjs").components["schemas"]["BillingSettlementMode"];
62
64
  phases: import("./schemas.cjs").components["schemas"]["PlanPhase"][];
63
65
  readonly validationErrors: import("./schemas.cjs").components["schemas"]["ValidationError"][] | null;
64
66
  } | undefined>;
@@ -98,6 +100,7 @@ export declare class Plans {
98
100
  readonly effectiveFrom?: Date;
99
101
  readonly effectiveTo?: Date;
100
102
  readonly status: import("./schemas.cjs").components["schemas"]["PlanStatus"];
103
+ settlementMode?: import("./schemas.cjs").components["schemas"]["BillingSettlementMode"];
101
104
  phases: import("./schemas.cjs").components["schemas"]["PlanPhase"][];
102
105
  readonly validationErrors: import("./schemas.cjs").components["schemas"]["ValidationError"][] | null;
103
106
  } | undefined>;
@@ -131,6 +134,7 @@ export declare class Plans {
131
134
  readonly effectiveFrom?: Date;
132
135
  readonly effectiveTo?: Date;
133
136
  readonly status: import("./schemas.cjs").components["schemas"]["PlanStatus"];
137
+ settlementMode?: import("./schemas.cjs").components["schemas"]["BillingSettlementMode"];
134
138
  phases: import("./schemas.cjs").components["schemas"]["PlanPhase"][];
135
139
  readonly validationErrors: import("./schemas.cjs").components["schemas"]["ValidationError"][] | null;
136
140
  } | undefined>;
@@ -157,6 +161,7 @@ export declare class Plans {
157
161
  readonly effectiveFrom?: Date;
158
162
  readonly effectiveTo?: Date;
159
163
  readonly status: import("./schemas.cjs").components["schemas"]["PlanStatus"];
164
+ settlementMode?: import("./schemas.cjs").components["schemas"]["BillingSettlementMode"];
160
165
  phases: import("./schemas.cjs").components["schemas"]["PlanPhase"][];
161
166
  readonly validationErrors: import("./schemas.cjs").components["schemas"]["ValidationError"][] | null;
162
167
  } | undefined>;
@@ -3257,6 +3257,14 @@ export interface components {
3257
3257
  /** @description The billing workflow settings for this profile. */
3258
3258
  workflow: components['schemas']['BillingWorkflow'];
3259
3259
  };
3260
+ /**
3261
+ * @description The settlement mode of a plan.
3262
+ * It determines how the billing system generates invoices and credits for the subscriptions using this plan.
3263
+ * - credit_then_invoice: credits from the previous billing period are applied first, then the remaining balance is invoiced. This is the default and most common settlement mode.
3264
+ * - credit_only: only credits from the previous billing period are generated and applied. No invoices are generated for the subscription.
3265
+ * @enum {string}
3266
+ */
3267
+ BillingSettlementMode: 'credit_then_invoice' | 'credit_only';
3260
3268
  /** @description TaxIdentificationCode is a normalized tax code shown on the original identity document. */
3261
3269
  BillingTaxIdentificationCode: string;
3262
3270
  /** @description BillingWorkflow represents the settings for a billing workflow. */
@@ -4032,6 +4040,16 @@ export interface components {
4032
4040
  * }
4033
4041
  */
4034
4042
  proRatingConfig?: components['schemas']['ProRatingConfig'];
4043
+ /**
4044
+ * Settlement mode
4045
+ * @description The settlement mode of the plan.
4046
+ * It determines how the billing system generates invoices and credits for the subscriptions using this plan.
4047
+ * - credit_then_invoice: credits from the previous billing period are applied first, then the remaining balance is invoiced.
4048
+ * - credit_only: only credits from the previous billing period are generated and applied. No invoices are generated for the subscription.
4049
+ * This is the default and most common settlement mode.
4050
+ * @default credit_then_invoice
4051
+ */
4052
+ settlementMode?: components['schemas']['BillingSettlementMode'];
4035
4053
  /**
4036
4054
  * Plan phases
4037
4055
  * @description The plan phase or pricing ramp allows changing a plan's rate cards over time as a subscription progresses.
@@ -9342,6 +9360,16 @@ export interface components {
9342
9360
  * - scheduled = now < effectiveFrom < effectiveTo
9343
9361
  */
9344
9362
  readonly status: components['schemas']['PlanStatus'];
9363
+ /**
9364
+ * Settlement mode
9365
+ * @description The settlement mode of the plan.
9366
+ * It determines how the billing system generates invoices and credits for the subscriptions using this plan.
9367
+ * - credit_then_invoice: credits from the previous billing period are applied first, then the remaining balance is invoiced.
9368
+ * - credit_only: only credits from the previous billing period are generated and applied. No invoices are generated for the subscription.
9369
+ * This is the default and most common settlement mode.
9370
+ * @default credit_then_invoice
9371
+ */
9372
+ settlementMode?: components['schemas']['BillingSettlementMode'];
9345
9373
  /**
9346
9374
  * Plan phases
9347
9375
  * @description The plan phase or pricing ramp allows changing a plan's rate cards over time as a subscription progresses.
@@ -9526,6 +9554,16 @@ export interface components {
9526
9554
  * }
9527
9555
  */
9528
9556
  proRatingConfig?: components['schemas']['ProRatingConfig'];
9557
+ /**
9558
+ * Settlement mode
9559
+ * @description The settlement mode of the plan.
9560
+ * It determines how the billing system generates invoices and credits for the subscriptions using this plan.
9561
+ * - credit_then_invoice: credits from the previous billing period are applied first, then the remaining balance is invoiced.
9562
+ * - credit_only: only credits from the previous billing period are generated and applied. No invoices are generated for the subscription.
9563
+ * This is the default and most common settlement mode.
9564
+ * @default credit_then_invoice
9565
+ */
9566
+ settlementMode?: components['schemas']['BillingSettlementMode'];
9529
9567
  /**
9530
9568
  * Plan phases
9531
9569
  * @description The plan phase or pricing ramp allows changing a plan's rate cards over time as a subscription progresses.
@@ -9649,6 +9687,16 @@ export interface components {
9649
9687
  * }
9650
9688
  */
9651
9689
  proRatingConfig?: components['schemas']['ProRatingConfig'];
9690
+ /**
9691
+ * Settlement mode
9692
+ * @description The settlement mode of the plan.
9693
+ * It determines how the billing system generates invoices and credits for the subscriptions using this plan.
9694
+ * - credit_then_invoice: credits from the previous billing period are applied first, then the remaining balance is invoiced.
9695
+ * - credit_only: only credits from the previous billing period are generated and applied. No invoices are generated for the subscription.
9696
+ * This is the default and most common settlement mode.
9697
+ * @default credit_then_invoice
9698
+ */
9699
+ settlementMode?: components['schemas']['BillingSettlementMode'];
9652
9700
  /**
9653
9701
  * Plan phases
9654
9702
  * @description The plan phase or pricing ramp allows changing a plan's rate cards over time as a subscription progresses.
@@ -9729,6 +9777,8 @@ export interface components {
9729
9777
  * @example 2023-01-01T01:01:01.001Z
9730
9778
  */
9731
9779
  billingAnchor?: Date;
9780
+ /** @description The settlement mode of the subscription. */
9781
+ settlementMode?: components['schemas']['BillingSettlementMode'];
9732
9782
  };
9733
9783
  /**
9734
9784
  * @description A consumer portal token.
@@ -10815,6 +10865,15 @@ export interface components {
10815
10865
  * @example 2023-01-01T01:01:01.001Z
10816
10866
  */
10817
10867
  readonly billingAnchor: Date;
10868
+ /**
10869
+ * Settlement mode
10870
+ * @description The settlement mode of the subscription.
10871
+ * - credit_then_invoice: credits from the previous billing period are applied first, then the remaining balance is invoiced.
10872
+ * - credit_only: only credits from the previous billing period are generated and applied. No invoices are generated for the subscription.
10873
+ * This is the default and most common settlement mode.
10874
+ * @default credit_then_invoice
10875
+ */
10876
+ readonly settlementMode: components['schemas']['BillingSettlementMode'];
10818
10877
  };
10819
10878
  /** @description A subscription add-on, represents concrete instances of an add-on for a given subscription. */
10820
10879
  SubscriptionAddon: {
@@ -11266,6 +11325,15 @@ export interface components {
11266
11325
  * @example 2023-01-01T01:01:01.001Z
11267
11326
  */
11268
11327
  readonly billingAnchor: Date;
11328
+ /**
11329
+ * Settlement mode
11330
+ * @description The settlement mode of the subscription.
11331
+ * - credit_then_invoice: credits from the previous billing period are applied first, then the remaining balance is invoiced.
11332
+ * - credit_only: only credits from the previous billing period are generated and applied. No invoices are generated for the subscription.
11333
+ * This is the default and most common settlement mode.
11334
+ * @default credit_then_invoice
11335
+ */
11336
+ readonly settlementMode: components['schemas']['BillingSettlementMode'];
11269
11337
  /** @description Alignment details enriched with the current billing period. */
11270
11338
  alignment?: components['schemas']['SubscriptionAlignment'];
11271
11339
  /** @description The phases of the subscription. */
@@ -12185,6 +12253,7 @@ export type BillingProfileExpand = components['schemas']['BillingProfileExpand']
12185
12253
  export type BillingProfileOrderBy = components['schemas']['BillingProfileOrderBy'];
12186
12254
  export type BillingProfilePaginatedResponse = components['schemas']['BillingProfilePaginatedResponse'];
12187
12255
  export type BillingProfileReplaceUpdateWithWorkflow = components['schemas']['BillingProfileReplaceUpdateWithWorkflow'];
12256
+ export type BillingSettlementMode = components['schemas']['BillingSettlementMode'];
12188
12257
  export type BillingTaxIdentificationCode = components['schemas']['BillingTaxIdentificationCode'];
12189
12258
  export type BillingWorkflow = components['schemas']['BillingWorkflow'];
12190
12259
  export type BillingWorkflowCollectionAlignment = components['schemas']['BillingWorkflowCollectionAlignment'];
@@ -32,6 +32,7 @@ export declare class Subscriptions {
32
32
  readonly billingCadence: string;
33
33
  readonly proRatingConfig?: import("./schemas.cjs").components["schemas"]["ProRatingConfig"];
34
34
  readonly billingAnchor: Date;
35
+ readonly settlementMode: import("./schemas.cjs").components["schemas"]["BillingSettlementMode"];
35
36
  } | undefined>;
36
37
  /**
37
38
  * Get a subscription
@@ -57,6 +58,7 @@ export declare class Subscriptions {
57
58
  readonly billingCadence: string;
58
59
  readonly proRatingConfig?: import("./schemas.cjs").components["schemas"]["ProRatingConfig"];
59
60
  readonly billingAnchor: Date;
61
+ readonly settlementMode: import("./schemas.cjs").components["schemas"]["BillingSettlementMode"];
60
62
  alignment?: import("./schemas.cjs").components["schemas"]["SubscriptionAlignment"];
61
63
  phases: import("./schemas.cjs").components["schemas"]["SubscriptionPhaseExpanded"][];
62
64
  } | undefined>;
@@ -86,6 +88,7 @@ export declare class Subscriptions {
86
88
  readonly billingCadence: string;
87
89
  readonly proRatingConfig?: import("./schemas.cjs").components["schemas"]["ProRatingConfig"];
88
90
  readonly billingAnchor: Date;
91
+ readonly settlementMode: import("./schemas.cjs").components["schemas"]["BillingSettlementMode"];
89
92
  } | undefined>;
90
93
  /**
91
94
  * Cancel a subscription
@@ -113,6 +116,7 @@ export declare class Subscriptions {
113
116
  readonly billingCadence: string;
114
117
  readonly proRatingConfig?: import("./schemas.cjs").components["schemas"]["ProRatingConfig"];
115
118
  readonly billingAnchor: Date;
119
+ readonly settlementMode: import("./schemas.cjs").components["schemas"]["BillingSettlementMode"];
116
120
  } | undefined>;
117
121
  /**
118
122
  * Change a subscription
@@ -163,6 +167,7 @@ export declare class Subscriptions {
163
167
  readonly billingCadence: string;
164
168
  readonly proRatingConfig?: import("./schemas.cjs").components["schemas"]["ProRatingConfig"];
165
169
  readonly billingAnchor: Date;
170
+ readonly settlementMode: import("./schemas.cjs").components["schemas"]["BillingSettlementMode"];
166
171
  } | undefined>;
167
172
  /**
168
173
  * Delete subscription
@@ -48,19 +48,19 @@ exports.listMarketplaceListingsQueryPageSizeMax = exports.listMarketplaceListing
48
48
  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.ListMeterGroupByValuesQueryParams = exports.ListMeterGroupByValuesParams = exports.listMeterGroupByValuesPathMeterIdOrSlugRegExp = exports.listMeterGroupByValuesPathMeterIdOrSlugMax = exports.DeleteMeterParams = exports.deleteMeterPathMeterIdOrSlugRegExp = exports.deleteMeterPathMeterIdOrSlugMax = exports.UpdateMeterBody = exports.updateMeterBodyNameMax = exports.updateMeterBodyDescriptionMax = exports.UpdateMeterParams = exports.updateMeterPathMeterIdOrSlugRegExp = exports.updateMeterPathMeterIdOrSlugMax = exports.GetMeterParams = exports.getMeterPathMeterIdOrSlugRegExp = exports.getMeterPathMeterIdOrSlugMax = exports.CreateMeterBody = exports.createMeterBodySlugRegExp = exports.createMeterBodySlugMax = exports.createMeterBodyNameMax = exports.createMeterBodyDescriptionMax = exports.ListMetersQueryParams = exports.listMetersQueryIncludeDeletedDefault = exports.listMetersQueryOrderDefault = 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 = void 0;
49
49
  exports.ListNotificationRulesQueryParams = exports.listNotificationRulesQueryOrderDefault = exports.listNotificationRulesQueryPageSizeMax = exports.listNotificationRulesQueryPageSizeDefault = exports.listNotificationRulesQueryPageDefault = exports.listNotificationRulesQueryFeatureItemRegExp = exports.listNotificationRulesQueryFeatureItemMax = exports.listNotificationRulesQueryIncludeDisabledDefault = exports.listNotificationRulesQueryIncludeDeletedDefault = exports.ResendNotificationEventBody = exports.resendNotificationEventBodyChannelsItemRegExp = exports.ResendNotificationEventParams = exports.resendNotificationEventPathEventIdRegExp = exports.GetNotificationEventParams = exports.ListNotificationEventsQueryParams = exports.listNotificationEventsQueryOrderDefault = exports.listNotificationEventsQueryPageSizeMax = exports.listNotificationEventsQueryPageSizeDefault = exports.listNotificationEventsQueryPageDefault = exports.listNotificationEventsQueryChannelItemRegExp = exports.listNotificationEventsQueryRuleItemRegExp = exports.DeleteNotificationChannelParams = exports.deleteNotificationChannelPathChannelIdRegExp = exports.GetNotificationChannelParams = exports.getNotificationChannelPathChannelIdRegExp = exports.UpdateNotificationChannelBody = exports.updateNotificationChannelBodyOneSigningSecretRegExp = exports.updateNotificationChannelBodyOneDisabledDefault = exports.updateNotificationChannelBodyOneNameMax = exports.UpdateNotificationChannelParams = exports.updateNotificationChannelPathChannelIdRegExp = exports.CreateNotificationChannelBody = exports.createNotificationChannelBodyOneSigningSecretRegExp = exports.createNotificationChannelBodyOneDisabledDefault = exports.createNotificationChannelBodyOneNameMax = exports.ListNotificationChannelsQueryParams = exports.listNotificationChannelsQueryOrderDefault = exports.listNotificationChannelsQueryPageSizeMax = exports.listNotificationChannelsQueryPageSizeDefault = exports.listNotificationChannelsQueryPageDefault = exports.listNotificationChannelsQueryIncludeDisabledDefault = exports.listNotificationChannelsQueryIncludeDeletedDefault = exports.ListMeterSubjectsQueryParams = exports.ListMeterSubjectsParams = exports.listMeterSubjectsPathMeterIdOrSlugRegExp = exports.listMeterSubjectsPathMeterIdOrSlugMax = exports.QueryMeterPostBody = exports.queryMeterPostBodyGroupByMax = exports.queryMeterPostBodyFilterCustomerIdMax = exports.queryMeterPostBodySubjectMax = void 0;
50
50
  exports.listPlansQueryCurrencyItemMax = exports.listPlansQueryCurrencyItemMin = exports.listPlansQueryKeyItemRegExp = exports.listPlansQueryKeyItemMax = exports.listPlansQueryIdItemRegExp = exports.listPlansQueryIncludeDeletedDefault = exports.TestNotificationRuleParams = exports.testNotificationRulePathRuleIdRegExp = exports.DeleteNotificationRuleParams = exports.deleteNotificationRulePathRuleIdRegExp = exports.GetNotificationRuleParams = exports.getNotificationRulePathRuleIdRegExp = exports.UpdateNotificationRuleBody = exports.updateNotificationRuleBodyFourChannelsItemRegExp = exports.updateNotificationRuleBodyFourDisabledDefault = exports.updateNotificationRuleBodyFourNameMax = exports.updateNotificationRuleBodyThreeChannelsItemRegExp = exports.updateNotificationRuleBodyThreeDisabledDefault = exports.updateNotificationRuleBodyThreeNameMax = exports.updateNotificationRuleBodyTwoFeaturesItemRegExp = exports.updateNotificationRuleBodyTwoFeaturesItemMax = exports.updateNotificationRuleBodyTwoChannelsItemRegExp = exports.updateNotificationRuleBodyTwoDisabledDefault = exports.updateNotificationRuleBodyTwoNameMax = exports.updateNotificationRuleBodyOneFeaturesItemRegExp = exports.updateNotificationRuleBodyOneFeaturesItemMax = exports.updateNotificationRuleBodyOneChannelsItemRegExp = exports.updateNotificationRuleBodyOneThresholdsMax = exports.updateNotificationRuleBodyOneDisabledDefault = exports.updateNotificationRuleBodyOneNameMax = exports.UpdateNotificationRuleParams = exports.updateNotificationRulePathRuleIdRegExp = exports.CreateNotificationRuleBody = exports.createNotificationRuleBodyFourChannelsItemRegExp = exports.createNotificationRuleBodyFourDisabledDefault = exports.createNotificationRuleBodyFourNameMax = exports.createNotificationRuleBodyThreeChannelsItemRegExp = exports.createNotificationRuleBodyThreeDisabledDefault = exports.createNotificationRuleBodyThreeNameMax = exports.createNotificationRuleBodyTwoFeaturesItemRegExp = exports.createNotificationRuleBodyTwoFeaturesItemMax = exports.createNotificationRuleBodyTwoChannelsItemRegExp = exports.createNotificationRuleBodyTwoDisabledDefault = exports.createNotificationRuleBodyTwoNameMax = exports.createNotificationRuleBodyOneFeaturesItemRegExp = exports.createNotificationRuleBodyOneFeaturesItemMax = exports.createNotificationRuleBodyOneChannelsItemRegExp = exports.createNotificationRuleBodyOneThresholdsMax = exports.createNotificationRuleBodyOneDisabledDefault = exports.createNotificationRuleBodyOneNameMax = void 0;
51
- exports.createPlanBodyPhasesItemRateCardsItemTwoPriceOneOnePaymentTermDefault = exports.createPlanBodyPhasesItemRateCardsItemTwoPriceOneOneAmountOneRegExp = exports.createPlanBodyPhasesItemRateCardsItemTwoTaxConfigOneStripeOneCodeRegExp = exports.createPlanBodyPhasesItemRateCardsItemTwoEntitlementTemplateOneOnePreserveOverageAtResetDefault = exports.createPlanBodyPhasesItemRateCardsItemTwoEntitlementTemplateOneOneIssueAfterResetPriorityMax = exports.createPlanBodyPhasesItemRateCardsItemTwoEntitlementTemplateOneOneIssueAfterResetPriorityDefault = exports.createPlanBodyPhasesItemRateCardsItemTwoEntitlementTemplateOneOneIssueAfterResetMin = exports.createPlanBodyPhasesItemRateCardsItemTwoEntitlementTemplateOneOneIsSoftLimitDefault = exports.createPlanBodyPhasesItemRateCardsItemTwoFeatureKeyRegExp = exports.createPlanBodyPhasesItemRateCardsItemTwoFeatureKeyMax = exports.createPlanBodyPhasesItemRateCardsItemTwoDescriptionMax = exports.createPlanBodyPhasesItemRateCardsItemTwoNameMax = exports.createPlanBodyPhasesItemRateCardsItemTwoKeyRegExp = exports.createPlanBodyPhasesItemRateCardsItemTwoKeyMax = exports.createPlanBodyPhasesItemRateCardsItemOneDiscountsOneUsageOneQuantityOneRegExp = exports.createPlanBodyPhasesItemRateCardsItemOnePriceOnePaymentTermDefault = exports.createPlanBodyPhasesItemRateCardsItemOnePriceOneAmountOneRegExp = exports.createPlanBodyPhasesItemRateCardsItemOneTaxConfigOneStripeOneCodeRegExp = exports.createPlanBodyPhasesItemRateCardsItemOneEntitlementTemplateOneOnePreserveOverageAtResetDefault = exports.createPlanBodyPhasesItemRateCardsItemOneEntitlementTemplateOneOneIssueAfterResetPriorityMax = exports.createPlanBodyPhasesItemRateCardsItemOneEntitlementTemplateOneOneIssueAfterResetPriorityDefault = exports.createPlanBodyPhasesItemRateCardsItemOneEntitlementTemplateOneOneIssueAfterResetMin = exports.createPlanBodyPhasesItemRateCardsItemOneEntitlementTemplateOneOneIsSoftLimitDefault = exports.createPlanBodyPhasesItemRateCardsItemOneFeatureKeyRegExp = exports.createPlanBodyPhasesItemRateCardsItemOneFeatureKeyMax = exports.createPlanBodyPhasesItemRateCardsItemOneDescriptionMax = exports.createPlanBodyPhasesItemRateCardsItemOneNameMax = exports.createPlanBodyPhasesItemRateCardsItemOneKeyRegExp = exports.createPlanBodyPhasesItemRateCardsItemOneKeyMax = exports.createPlanBodyPhasesItemDescriptionMax = exports.createPlanBodyPhasesItemNameMax = exports.createPlanBodyPhasesItemKeyRegExp = exports.createPlanBodyPhasesItemKeyMax = exports.createPlanBodyProRatingConfigDefault = exports.createPlanBodyProRatingConfigOneModeDefault = exports.createPlanBodyProRatingConfigOneEnabledDefault = exports.createPlanBodyCurrencyDefault = exports.createPlanBodyCurrencyOneRegExp = exports.createPlanBodyCurrencyOneMax = exports.createPlanBodyCurrencyOneMin = exports.createPlanBodyKeyRegExp = exports.createPlanBodyKeyMax = exports.createPlanBodyDescriptionMax = exports.createPlanBodyNameMax = exports.ListPlansQueryParams = exports.listPlansQueryOrderDefault = exports.listPlansQueryPageSizeMax = exports.listPlansQueryPageSizeDefault = exports.listPlansQueryPageDefault = exports.listPlansQueryCurrencyItemRegExp = void 0;
52
- exports.updatePlanBodyPhasesItemRateCardsItemTwoNameMax = exports.updatePlanBodyPhasesItemRateCardsItemTwoKeyRegExp = exports.updatePlanBodyPhasesItemRateCardsItemTwoKeyMax = exports.updatePlanBodyPhasesItemRateCardsItemOneDiscountsOneUsageOneQuantityOneRegExp = exports.updatePlanBodyPhasesItemRateCardsItemOnePriceOnePaymentTermDefault = exports.updatePlanBodyPhasesItemRateCardsItemOnePriceOneAmountOneRegExp = exports.updatePlanBodyPhasesItemRateCardsItemOneTaxConfigOneStripeOneCodeRegExp = exports.updatePlanBodyPhasesItemRateCardsItemOneEntitlementTemplateOneOnePreserveOverageAtResetDefault = exports.updatePlanBodyPhasesItemRateCardsItemOneEntitlementTemplateOneOneIssueAfterResetPriorityMax = exports.updatePlanBodyPhasesItemRateCardsItemOneEntitlementTemplateOneOneIssueAfterResetPriorityDefault = exports.updatePlanBodyPhasesItemRateCardsItemOneEntitlementTemplateOneOneIssueAfterResetMin = exports.updatePlanBodyPhasesItemRateCardsItemOneEntitlementTemplateOneOneIsSoftLimitDefault = exports.updatePlanBodyPhasesItemRateCardsItemOneFeatureKeyRegExp = exports.updatePlanBodyPhasesItemRateCardsItemOneFeatureKeyMax = exports.updatePlanBodyPhasesItemRateCardsItemOneDescriptionMax = exports.updatePlanBodyPhasesItemRateCardsItemOneNameMax = exports.updatePlanBodyPhasesItemRateCardsItemOneKeyRegExp = exports.updatePlanBodyPhasesItemRateCardsItemOneKeyMax = exports.updatePlanBodyPhasesItemDescriptionMax = exports.updatePlanBodyPhasesItemNameMax = exports.updatePlanBodyPhasesItemKeyRegExp = exports.updatePlanBodyPhasesItemKeyMax = exports.updatePlanBodyProRatingConfigDefault = exports.updatePlanBodyProRatingConfigOneModeDefault = exports.updatePlanBodyProRatingConfigOneEnabledDefault = exports.updatePlanBodyDescriptionMax = exports.updatePlanBodyNameMax = exports.UpdatePlanParams = exports.updatePlanPathPlanIdRegExp = exports.NextPlanParams = exports.nextPlanPathPlanIdOrKeyRegExp = exports.nextPlanPathPlanIdOrKeyMax = exports.CreatePlanBody = exports.createPlanBodyPhasesItemRateCardsItemTwoDiscountsOneUsageOneQuantityOneRegExp = exports.createPlanBodyPhasesItemRateCardsItemTwoPriceOneFiveMaximumAmountOneRegExp = exports.createPlanBodyPhasesItemRateCardsItemTwoPriceOneFiveMinimumAmountOneRegExp = exports.createPlanBodyPhasesItemRateCardsItemTwoPriceOneFiveQuantityPerPackageOneRegExp = exports.createPlanBodyPhasesItemRateCardsItemTwoPriceOneFiveAmountOneRegExp = exports.createPlanBodyPhasesItemRateCardsItemTwoPriceOneFourMaximumAmountOneRegExp = exports.createPlanBodyPhasesItemRateCardsItemTwoPriceOneFourMinimumAmountOneRegExp = exports.createPlanBodyPhasesItemRateCardsItemTwoPriceOneFourMultiplierDefault = exports.createPlanBodyPhasesItemRateCardsItemTwoPriceOneFourMultiplierOneRegExp = exports.createPlanBodyPhasesItemRateCardsItemTwoPriceOneThreeMaximumAmountOneRegExp = exports.createPlanBodyPhasesItemRateCardsItemTwoPriceOneThreeMinimumAmountOneRegExp = exports.createPlanBodyPhasesItemRateCardsItemTwoPriceOneThreeTiersItemUnitPriceOneAmountOneRegExp = exports.createPlanBodyPhasesItemRateCardsItemTwoPriceOneThreeTiersItemFlatPriceOneAmountOneRegExp = exports.createPlanBodyPhasesItemRateCardsItemTwoPriceOneThreeTiersItemUpToAmountOneRegExp = exports.createPlanBodyPhasesItemRateCardsItemTwoPriceOneTwoMaximumAmountOneRegExp = exports.createPlanBodyPhasesItemRateCardsItemTwoPriceOneTwoMinimumAmountOneRegExp = exports.createPlanBodyPhasesItemRateCardsItemTwoPriceOneTwoAmountOneRegExp = void 0;
53
- exports.CreatePlanAddonParams = exports.createPlanAddonPathPlanIdRegExp = exports.ListPlanAddonsQueryParams = exports.listPlanAddonsQueryOrderDefault = 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.updatePlanBodyPhasesItemRateCardsItemTwoDiscountsOneUsageOneQuantityOneRegExp = exports.updatePlanBodyPhasesItemRateCardsItemTwoPriceOneFiveMaximumAmountOneRegExp = exports.updatePlanBodyPhasesItemRateCardsItemTwoPriceOneFiveMinimumAmountOneRegExp = exports.updatePlanBodyPhasesItemRateCardsItemTwoPriceOneFiveQuantityPerPackageOneRegExp = exports.updatePlanBodyPhasesItemRateCardsItemTwoPriceOneFiveAmountOneRegExp = exports.updatePlanBodyPhasesItemRateCardsItemTwoPriceOneFourMaximumAmountOneRegExp = exports.updatePlanBodyPhasesItemRateCardsItemTwoPriceOneFourMinimumAmountOneRegExp = exports.updatePlanBodyPhasesItemRateCardsItemTwoPriceOneFourMultiplierDefault = exports.updatePlanBodyPhasesItemRateCardsItemTwoPriceOneFourMultiplierOneRegExp = exports.updatePlanBodyPhasesItemRateCardsItemTwoPriceOneThreeMaximumAmountOneRegExp = exports.updatePlanBodyPhasesItemRateCardsItemTwoPriceOneThreeMinimumAmountOneRegExp = exports.updatePlanBodyPhasesItemRateCardsItemTwoPriceOneThreeTiersItemUnitPriceOneAmountOneRegExp = exports.updatePlanBodyPhasesItemRateCardsItemTwoPriceOneThreeTiersItemFlatPriceOneAmountOneRegExp = exports.updatePlanBodyPhasesItemRateCardsItemTwoPriceOneThreeTiersItemUpToAmountOneRegExp = exports.updatePlanBodyPhasesItemRateCardsItemTwoPriceOneTwoMaximumAmountOneRegExp = exports.updatePlanBodyPhasesItemRateCardsItemTwoPriceOneTwoMinimumAmountOneRegExp = exports.updatePlanBodyPhasesItemRateCardsItemTwoPriceOneTwoAmountOneRegExp = exports.updatePlanBodyPhasesItemRateCardsItemTwoPriceOneOnePaymentTermDefault = exports.updatePlanBodyPhasesItemRateCardsItemTwoPriceOneOneAmountOneRegExp = exports.updatePlanBodyPhasesItemRateCardsItemTwoTaxConfigOneStripeOneCodeRegExp = exports.updatePlanBodyPhasesItemRateCardsItemTwoEntitlementTemplateOneOnePreserveOverageAtResetDefault = exports.updatePlanBodyPhasesItemRateCardsItemTwoEntitlementTemplateOneOneIssueAfterResetPriorityMax = exports.updatePlanBodyPhasesItemRateCardsItemTwoEntitlementTemplateOneOneIssueAfterResetPriorityDefault = exports.updatePlanBodyPhasesItemRateCardsItemTwoEntitlementTemplateOneOneIssueAfterResetMin = exports.updatePlanBodyPhasesItemRateCardsItemTwoEntitlementTemplateOneOneIsSoftLimitDefault = exports.updatePlanBodyPhasesItemRateCardsItemTwoFeatureKeyRegExp = exports.updatePlanBodyPhasesItemRateCardsItemTwoFeatureKeyMax = exports.updatePlanBodyPhasesItemRateCardsItemTwoDescriptionMax = void 0;
54
- exports.CreateStripeCheckoutSessionBody = exports.createStripeCheckoutSessionBodyOptionsOneCustomTextOneTermsOfServiceAcceptanceMessageMax = exports.createStripeCheckoutSessionBodyOptionsOneCustomTextOneSubmitMessageMax = exports.createStripeCheckoutSessionBodyOptionsOneCustomTextOneShippingAddressMessageMax = exports.createStripeCheckoutSessionBodyOptionsOneCustomTextOneAfterSubmitMessageMax = exports.createStripeCheckoutSessionBodyOptionsOneCurrencyOneRegExp = exports.createStripeCheckoutSessionBodyOptionsOneCurrencyOneMax = exports.createStripeCheckoutSessionBodyOptionsOneCurrencyOneMin = exports.createStripeCheckoutSessionBodyCustomerThreeBillingAddressOneCountryOneRegExp = exports.createStripeCheckoutSessionBodyCustomerThreeBillingAddressOneCountryOneMax = exports.createStripeCheckoutSessionBodyCustomerThreeBillingAddressOneCountryOneMin = exports.createStripeCheckoutSessionBodyCustomerThreeCurrencyOneRegExp = exports.createStripeCheckoutSessionBodyCustomerThreeCurrencyOneMax = exports.createStripeCheckoutSessionBodyCustomerThreeCurrencyOneMin = exports.createStripeCheckoutSessionBodyCustomerThreeUsageAttributionOneSubjectKeysMin = exports.createStripeCheckoutSessionBodyCustomerThreeKeyMax = exports.createStripeCheckoutSessionBodyCustomerThreeDescriptionMax = exports.createStripeCheckoutSessionBodyCustomerThreeNameMax = exports.createStripeCheckoutSessionBodyCustomerOneIdRegExp = 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 = void 0;
55
- exports.overrideEntitlementBodyOnePreserveOverageAtResetDefault = exports.overrideEntitlementBodyOneIssueAfterResetPriorityMax = exports.overrideEntitlementBodyOneIssueAfterResetPriorityDefault = exports.overrideEntitlementBodyOneIssueAfterResetMin = exports.overrideEntitlementBodyOneUsagePeriodOneIntervalOneOneRegExp = exports.overrideEntitlementBodyOneIsUnlimitedDefault = exports.overrideEntitlementBodyOneIsSoftLimitDefault = exports.overrideEntitlementBodyOneFeatureIdRegExp = exports.overrideEntitlementBodyOneFeatureKeyRegExp = exports.overrideEntitlementBodyOneFeatureKeyMax = exports.OverrideEntitlementParams = exports.CreateGrantBody = exports.createGrantBodyRecurrenceOneIntervalOneOneRegExp = exports.createGrantBodyMinRolloverAmountDefault = exports.createGrantBodyMaxRolloverAmountDefault = exports.createGrantBodyExpirationOneCountMax = exports.createGrantBodyPriorityMax = exports.createGrantBodyAmountMin = exports.CreateGrantParams = exports.ListEntitlementGrantsQueryParams = exports.listEntitlementGrantsQueryOrderByDefault = exports.listEntitlementGrantsQueryIncludeDeletedDefault = exports.ListEntitlementGrantsParams = exports.ListSubjectEntitlementsQueryParams = exports.listSubjectEntitlementsQueryIncludeDeletedDefault = exports.ListSubjectEntitlementsParams = exports.CreateEntitlementBody = exports.createEntitlementBodyThreeUsagePeriodOneIntervalOneOneRegExp = exports.createEntitlementBodyThreeFeatureIdRegExp = exports.createEntitlementBodyThreeFeatureKeyRegExp = exports.createEntitlementBodyThreeFeatureKeyMax = exports.createEntitlementBodyTwoUsagePeriodOneIntervalOneOneRegExp = exports.createEntitlementBodyTwoFeatureIdRegExp = exports.createEntitlementBodyTwoFeatureKeyRegExp = exports.createEntitlementBodyTwoFeatureKeyMax = exports.createEntitlementBodyOnePreserveOverageAtResetDefault = exports.createEntitlementBodyOneIssueAfterResetPriorityMax = exports.createEntitlementBodyOneIssueAfterResetPriorityDefault = exports.createEntitlementBodyOneIssueAfterResetMin = exports.createEntitlementBodyOneUsagePeriodOneIntervalOneOneRegExp = exports.createEntitlementBodyOneIsUnlimitedDefault = exports.createEntitlementBodyOneIsSoftLimitDefault = exports.createEntitlementBodyOneFeatureIdRegExp = exports.createEntitlementBodyOneFeatureKeyRegExp = exports.createEntitlementBodyOneFeatureKeyMax = exports.CreateEntitlementParams = exports.DeleteSubjectParams = exports.GetSubjectParams = exports.UpsertSubjectBody = exports.UpsertSubjectBodyItem = void 0;
56
- exports.createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemOnePriceOnePaymentTermDefault = exports.createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemOnePriceOneAmountOneRegExp = exports.createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemOneTaxConfigOneStripeOneCodeRegExp = exports.createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemOneEntitlementTemplateOneOnePreserveOverageAtResetDefault = exports.createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemOneEntitlementTemplateOneOneIssueAfterResetPriorityMax = exports.createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemOneEntitlementTemplateOneOneIssueAfterResetPriorityDefault = exports.createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemOneEntitlementTemplateOneOneIssueAfterResetMin = exports.createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemOneEntitlementTemplateOneOneIsSoftLimitDefault = exports.createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemOneFeatureKeyRegExp = exports.createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemOneFeatureKeyMax = exports.createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemOneDescriptionMax = exports.createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemOneNameMax = exports.createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemOneKeyRegExp = exports.createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemOneKeyMax = exports.createSubscriptionBodyTwoCustomPlanOneOnePhasesItemDescriptionMax = exports.createSubscriptionBodyTwoCustomPlanOneOnePhasesItemNameMax = exports.createSubscriptionBodyTwoCustomPlanOneOnePhasesItemKeyRegExp = exports.createSubscriptionBodyTwoCustomPlanOneOnePhasesItemKeyMax = exports.createSubscriptionBodyTwoCustomPlanOneOneProRatingConfigDefault = exports.createSubscriptionBodyTwoCustomPlanOneOneProRatingConfigOneModeDefault = exports.createSubscriptionBodyTwoCustomPlanOneOneProRatingConfigOneEnabledDefault = exports.createSubscriptionBodyTwoCustomPlanOneOneCurrencyDefault = exports.createSubscriptionBodyTwoCustomPlanOneOneCurrencyOneRegExp = exports.createSubscriptionBodyTwoCustomPlanOneOneCurrencyOneMax = exports.createSubscriptionBodyTwoCustomPlanOneOneCurrencyOneMin = exports.createSubscriptionBodyTwoCustomPlanOneOneDescriptionMax = exports.createSubscriptionBodyTwoCustomPlanOneOneNameMax = exports.createSubscriptionBodyOneCustomerKeyMax = exports.createSubscriptionBodyOneCustomerIdRegExp = exports.createSubscriptionBodyOneTimingDefault = exports.createSubscriptionBodyOnePlanOneKeyRegExp = exports.createSubscriptionBodyOnePlanOneKeyMax = exports.ResetEntitlementUsageBody = exports.ResetEntitlementUsageParams = exports.GetEntitlementHistoryQueryParams = exports.getEntitlementHistoryQueryWindowTimeZoneDefault = exports.GetEntitlementHistoryParams = exports.DeleteEntitlementParams = exports.GetEntitlementParams = exports.GetEntitlementValueQueryParams = exports.GetEntitlementValueParams = exports.OverrideEntitlementBody = exports.overrideEntitlementBodyThreeUsagePeriodOneIntervalOneOneRegExp = exports.overrideEntitlementBodyThreeFeatureIdRegExp = exports.overrideEntitlementBodyThreeFeatureKeyRegExp = exports.overrideEntitlementBodyThreeFeatureKeyMax = exports.overrideEntitlementBodyTwoUsagePeriodOneIntervalOneOneRegExp = exports.overrideEntitlementBodyTwoFeatureIdRegExp = exports.overrideEntitlementBodyTwoFeatureKeyRegExp = exports.overrideEntitlementBodyTwoFeatureKeyMax = void 0;
57
- exports.editSubscriptionBodyCustomizationsItemOneRateCardOneEntitlementTemplateOneOneIssueAfterResetPriorityDefault = exports.editSubscriptionBodyCustomizationsItemOneRateCardOneEntitlementTemplateOneOneIssueAfterResetMin = exports.editSubscriptionBodyCustomizationsItemOneRateCardOneEntitlementTemplateOneOneIsSoftLimitDefault = exports.editSubscriptionBodyCustomizationsItemOneRateCardOneFeatureKeyRegExp = exports.editSubscriptionBodyCustomizationsItemOneRateCardOneFeatureKeyMax = exports.editSubscriptionBodyCustomizationsItemOneRateCardOneDescriptionMax = exports.editSubscriptionBodyCustomizationsItemOneRateCardOneNameMax = exports.editSubscriptionBodyCustomizationsItemOneRateCardOneKeyRegExp = exports.editSubscriptionBodyCustomizationsItemOneRateCardOneKeyMax = exports.EditSubscriptionParams = exports.editSubscriptionPathSubscriptionIdRegExp = exports.GetSubscriptionQueryParams = exports.GetSubscriptionParams = exports.getSubscriptionPathSubscriptionIdRegExp = exports.CreateSubscriptionBody = exports.createSubscriptionBodyTwoCustomerKeyMax = exports.createSubscriptionBodyTwoCustomerIdRegExp = exports.createSubscriptionBodyTwoTimingDefault = exports.createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoDiscountsOneUsageOneQuantityOneRegExp = exports.createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoPriceOneFiveMaximumAmountOneRegExp = exports.createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoPriceOneFiveMinimumAmountOneRegExp = exports.createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoPriceOneFiveQuantityPerPackageOneRegExp = exports.createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoPriceOneFiveAmountOneRegExp = exports.createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoPriceOneFourMaximumAmountOneRegExp = exports.createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoPriceOneFourMinimumAmountOneRegExp = exports.createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoPriceOneFourMultiplierDefault = exports.createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoPriceOneFourMultiplierOneRegExp = exports.createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoPriceOneThreeMaximumAmountOneRegExp = exports.createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoPriceOneThreeMinimumAmountOneRegExp = exports.createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoPriceOneThreeTiersItemUnitPriceOneAmountOneRegExp = exports.createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoPriceOneThreeTiersItemFlatPriceOneAmountOneRegExp = exports.createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoPriceOneThreeTiersItemUpToAmountOneRegExp = exports.createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoPriceOneTwoMaximumAmountOneRegExp = exports.createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoPriceOneTwoMinimumAmountOneRegExp = exports.createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoPriceOneTwoAmountOneRegExp = exports.createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoPriceOneOnePaymentTermDefault = exports.createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoPriceOneOneAmountOneRegExp = exports.createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoTaxConfigOneStripeOneCodeRegExp = exports.createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoEntitlementTemplateOneOnePreserveOverageAtResetDefault = exports.createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoEntitlementTemplateOneOneIssueAfterResetPriorityMax = exports.createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoEntitlementTemplateOneOneIssueAfterResetPriorityDefault = exports.createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoEntitlementTemplateOneOneIssueAfterResetMin = exports.createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoEntitlementTemplateOneOneIsSoftLimitDefault = exports.createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoFeatureKeyRegExp = exports.createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoFeatureKeyMax = exports.createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoDescriptionMax = exports.createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoNameMax = exports.createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoKeyRegExp = exports.createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoKeyMax = exports.createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemOneDiscountsOneUsageOneQuantityOneRegExp = void 0;
58
- exports.createSubscriptionAddonBodyAddonIdRegExp = exports.createSubscriptionAddonBodyQuantityMin = exports.createSubscriptionAddonBodyDescriptionMax = exports.createSubscriptionAddonBodyNameMax = exports.CreateSubscriptionAddonParams = exports.createSubscriptionAddonPathSubscriptionIdRegExp = exports.DeleteSubscriptionParams = exports.deleteSubscriptionPathSubscriptionIdRegExp = exports.EditSubscriptionBody = exports.editSubscriptionBodyCustomizationsMax = exports.editSubscriptionBodyCustomizationsItemThreePhaseKeyRegExp = exports.editSubscriptionBodyCustomizationsItemThreePhaseKeyMax = exports.editSubscriptionBodyCustomizationsItemThreePhaseDiscountsOneUsageOneQuantityOneRegExp = exports.editSubscriptionBodyCustomizationsItemOneRateCardTwoDiscountsOneUsageOneQuantityOneRegExp = exports.editSubscriptionBodyCustomizationsItemOneRateCardTwoPriceOneFiveMaximumAmountOneRegExp = exports.editSubscriptionBodyCustomizationsItemOneRateCardTwoPriceOneFiveMinimumAmountOneRegExp = exports.editSubscriptionBodyCustomizationsItemOneRateCardTwoPriceOneFiveQuantityPerPackageOneRegExp = exports.editSubscriptionBodyCustomizationsItemOneRateCardTwoPriceOneFiveAmountOneRegExp = exports.editSubscriptionBodyCustomizationsItemOneRateCardTwoPriceOneFourMaximumAmountOneRegExp = exports.editSubscriptionBodyCustomizationsItemOneRateCardTwoPriceOneFourMinimumAmountOneRegExp = exports.editSubscriptionBodyCustomizationsItemOneRateCardTwoPriceOneFourMultiplierDefault = exports.editSubscriptionBodyCustomizationsItemOneRateCardTwoPriceOneFourMultiplierOneRegExp = exports.editSubscriptionBodyCustomizationsItemOneRateCardTwoPriceOneThreeMaximumAmountOneRegExp = exports.editSubscriptionBodyCustomizationsItemOneRateCardTwoPriceOneThreeMinimumAmountOneRegExp = exports.editSubscriptionBodyCustomizationsItemOneRateCardTwoPriceOneThreeTiersItemUnitPriceOneAmountOneRegExp = exports.editSubscriptionBodyCustomizationsItemOneRateCardTwoPriceOneThreeTiersItemFlatPriceOneAmountOneRegExp = exports.editSubscriptionBodyCustomizationsItemOneRateCardTwoPriceOneThreeTiersItemUpToAmountOneRegExp = exports.editSubscriptionBodyCustomizationsItemOneRateCardTwoPriceOneTwoMaximumAmountOneRegExp = exports.editSubscriptionBodyCustomizationsItemOneRateCardTwoPriceOneTwoMinimumAmountOneRegExp = exports.editSubscriptionBodyCustomizationsItemOneRateCardTwoPriceOneTwoAmountOneRegExp = exports.editSubscriptionBodyCustomizationsItemOneRateCardTwoPriceOneOnePaymentTermDefault = exports.editSubscriptionBodyCustomizationsItemOneRateCardTwoPriceOneOneAmountOneRegExp = exports.editSubscriptionBodyCustomizationsItemOneRateCardTwoTaxConfigOneStripeOneCodeRegExp = exports.editSubscriptionBodyCustomizationsItemOneRateCardTwoEntitlementTemplateOneOnePreserveOverageAtResetDefault = exports.editSubscriptionBodyCustomizationsItemOneRateCardTwoEntitlementTemplateOneOneIssueAfterResetPriorityMax = exports.editSubscriptionBodyCustomizationsItemOneRateCardTwoEntitlementTemplateOneOneIssueAfterResetPriorityDefault = exports.editSubscriptionBodyCustomizationsItemOneRateCardTwoEntitlementTemplateOneOneIssueAfterResetMin = exports.editSubscriptionBodyCustomizationsItemOneRateCardTwoEntitlementTemplateOneOneIsSoftLimitDefault = exports.editSubscriptionBodyCustomizationsItemOneRateCardTwoFeatureKeyRegExp = exports.editSubscriptionBodyCustomizationsItemOneRateCardTwoFeatureKeyMax = exports.editSubscriptionBodyCustomizationsItemOneRateCardTwoDescriptionMax = exports.editSubscriptionBodyCustomizationsItemOneRateCardTwoNameMax = exports.editSubscriptionBodyCustomizationsItemOneRateCardTwoKeyRegExp = exports.editSubscriptionBodyCustomizationsItemOneRateCardTwoKeyMax = exports.editSubscriptionBodyCustomizationsItemOneRateCardOneDiscountsOneUsageOneQuantityOneRegExp = exports.editSubscriptionBodyCustomizationsItemOneRateCardOnePriceOnePaymentTermDefault = exports.editSubscriptionBodyCustomizationsItemOneRateCardOnePriceOneAmountOneRegExp = exports.editSubscriptionBodyCustomizationsItemOneRateCardOneTaxConfigOneStripeOneCodeRegExp = exports.editSubscriptionBodyCustomizationsItemOneRateCardOneEntitlementTemplateOneOnePreserveOverageAtResetDefault = exports.editSubscriptionBodyCustomizationsItemOneRateCardOneEntitlementTemplateOneOneIssueAfterResetPriorityMax = void 0;
59
- exports.changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoKeyRegExp = exports.changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoKeyMax = exports.changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemOneDiscountsOneUsageOneQuantityOneRegExp = exports.changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemOnePriceOnePaymentTermDefault = exports.changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemOnePriceOneAmountOneRegExp = exports.changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemOneTaxConfigOneStripeOneCodeRegExp = exports.changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemOneEntitlementTemplateOneOnePreserveOverageAtResetDefault = exports.changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemOneEntitlementTemplateOneOneIssueAfterResetPriorityMax = exports.changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemOneEntitlementTemplateOneOneIssueAfterResetPriorityDefault = exports.changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemOneEntitlementTemplateOneOneIssueAfterResetMin = exports.changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemOneEntitlementTemplateOneOneIsSoftLimitDefault = exports.changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemOneFeatureKeyRegExp = exports.changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemOneFeatureKeyMax = exports.changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemOneDescriptionMax = exports.changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemOneNameMax = exports.changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemOneKeyRegExp = exports.changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemOneKeyMax = exports.changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemDescriptionMax = exports.changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemNameMax = exports.changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemKeyRegExp = exports.changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemKeyMax = exports.changeSubscriptionBodyTwoCustomPlanOneOneProRatingConfigDefault = exports.changeSubscriptionBodyTwoCustomPlanOneOneProRatingConfigOneModeDefault = exports.changeSubscriptionBodyTwoCustomPlanOneOneProRatingConfigOneEnabledDefault = exports.changeSubscriptionBodyTwoCustomPlanOneOneCurrencyDefault = exports.changeSubscriptionBodyTwoCustomPlanOneOneCurrencyOneRegExp = exports.changeSubscriptionBodyTwoCustomPlanOneOneCurrencyOneMax = exports.changeSubscriptionBodyTwoCustomPlanOneOneCurrencyOneMin = exports.changeSubscriptionBodyTwoCustomPlanOneOneDescriptionMax = exports.changeSubscriptionBodyTwoCustomPlanOneOneNameMax = exports.changeSubscriptionBodyOnePlanOneKeyRegExp = exports.changeSubscriptionBodyOnePlanOneKeyMax = exports.ChangeSubscriptionParams = exports.changeSubscriptionPathSubscriptionIdRegExp = exports.CancelSubscriptionBody = exports.CancelSubscriptionParams = exports.cancelSubscriptionPathSubscriptionIdRegExp = exports.UpdateSubscriptionAddonBody = exports.updateSubscriptionAddonBodyQuantityMin = exports.updateSubscriptionAddonBodyDescriptionMax = exports.updateSubscriptionAddonBodyNameMax = exports.UpdateSubscriptionAddonParams = exports.updateSubscriptionAddonPathSubscriptionAddonIdRegExp = exports.updateSubscriptionAddonPathSubscriptionIdRegExp = exports.GetSubscriptionAddonParams = exports.getSubscriptionAddonPathSubscriptionAddonIdRegExp = exports.getSubscriptionAddonPathSubscriptionIdRegExp = exports.ListSubscriptionAddonsParams = exports.listSubscriptionAddonsPathSubscriptionIdRegExp = exports.CreateSubscriptionAddonBody = void 0;
60
- exports.createCustomerEntitlementV2BodyOneIssueAfterResetPriorityMax = exports.createCustomerEntitlementV2BodyOneIssueAfterResetPriorityDefault = exports.createCustomerEntitlementV2BodyOneIssueAfterResetMin = exports.createCustomerEntitlementV2BodyOnePreserveOverageAtResetDefault = exports.createCustomerEntitlementV2BodyOneUsagePeriodOneIntervalOneOneRegExp = exports.createCustomerEntitlementV2BodyOneIsSoftLimitDefault = exports.createCustomerEntitlementV2BodyOneFeatureIdRegExp = exports.createCustomerEntitlementV2BodyOneFeatureKeyRegExp = exports.createCustomerEntitlementV2BodyOneFeatureKeyMax = exports.CreateCustomerEntitlementV2Params = exports.createCustomerEntitlementV2PathCustomerIdOrKeyTwoMax = exports.createCustomerEntitlementV2PathCustomerIdOrKeyOneRegExp = exports.UnscheduleCancelationParams = exports.unscheduleCancelationPathSubscriptionIdRegExp = exports.RestoreSubscriptionParams = exports.restoreSubscriptionPathSubscriptionIdRegExp = exports.MigrateSubscriptionBody = exports.migrateSubscriptionBodyTimingDefault = exports.MigrateSubscriptionParams = exports.migrateSubscriptionPathSubscriptionIdRegExp = exports.ChangeSubscriptionBody = exports.changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoDiscountsOneUsageOneQuantityOneRegExp = exports.changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoPriceOneFiveMaximumAmountOneRegExp = exports.changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoPriceOneFiveMinimumAmountOneRegExp = exports.changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoPriceOneFiveQuantityPerPackageOneRegExp = exports.changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoPriceOneFiveAmountOneRegExp = exports.changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoPriceOneFourMaximumAmountOneRegExp = exports.changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoPriceOneFourMinimumAmountOneRegExp = exports.changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoPriceOneFourMultiplierDefault = exports.changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoPriceOneFourMultiplierOneRegExp = exports.changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoPriceOneThreeMaximumAmountOneRegExp = exports.changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoPriceOneThreeMinimumAmountOneRegExp = exports.changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoPriceOneThreeTiersItemUnitPriceOneAmountOneRegExp = exports.changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoPriceOneThreeTiersItemFlatPriceOneAmountOneRegExp = exports.changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoPriceOneThreeTiersItemUpToAmountOneRegExp = exports.changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoPriceOneTwoMaximumAmountOneRegExp = exports.changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoPriceOneTwoMinimumAmountOneRegExp = exports.changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoPriceOneTwoAmountOneRegExp = exports.changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoPriceOneOnePaymentTermDefault = exports.changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoPriceOneOneAmountOneRegExp = exports.changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoTaxConfigOneStripeOneCodeRegExp = exports.changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoEntitlementTemplateOneOnePreserveOverageAtResetDefault = exports.changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoEntitlementTemplateOneOneIssueAfterResetPriorityMax = exports.changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoEntitlementTemplateOneOneIssueAfterResetPriorityDefault = exports.changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoEntitlementTemplateOneOneIssueAfterResetMin = exports.changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoEntitlementTemplateOneOneIsSoftLimitDefault = exports.changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoFeatureKeyRegExp = exports.changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoFeatureKeyMax = exports.changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoDescriptionMax = exports.changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoNameMax = void 0;
61
- exports.listCustomerEntitlementGrantsV2QueryOrderDefault = exports.listCustomerEntitlementGrantsV2QueryLimitMax = exports.listCustomerEntitlementGrantsV2QueryLimitDefault = exports.listCustomerEntitlementGrantsV2QueryOffsetMin = exports.listCustomerEntitlementGrantsV2QueryOffsetDefault = exports.listCustomerEntitlementGrantsV2QueryPageSizeMax = exports.listCustomerEntitlementGrantsV2QueryPageSizeDefault = exports.listCustomerEntitlementGrantsV2QueryPageDefault = exports.listCustomerEntitlementGrantsV2QueryIncludeDeletedDefault = exports.ListCustomerEntitlementGrantsV2Params = exports.listCustomerEntitlementGrantsV2PathEntitlementIdOrFeatureKeyRegExp = exports.listCustomerEntitlementGrantsV2PathEntitlementIdOrFeatureKeyMax = exports.listCustomerEntitlementGrantsV2PathCustomerIdOrKeyTwoMax = exports.listCustomerEntitlementGrantsV2PathCustomerIdOrKeyOneRegExp = exports.DeleteCustomerEntitlementV2Params = exports.deleteCustomerEntitlementV2PathEntitlementIdOrFeatureKeyRegExp = exports.deleteCustomerEntitlementV2PathEntitlementIdOrFeatureKeyMax = exports.deleteCustomerEntitlementV2PathCustomerIdOrKeyTwoMax = exports.deleteCustomerEntitlementV2PathCustomerIdOrKeyOneRegExp = exports.GetCustomerEntitlementV2Params = exports.getCustomerEntitlementV2PathEntitlementIdOrFeatureKeyRegExp = exports.getCustomerEntitlementV2PathEntitlementIdOrFeatureKeyMax = exports.getCustomerEntitlementV2PathCustomerIdOrKeyTwoMax = exports.getCustomerEntitlementV2PathCustomerIdOrKeyOneRegExp = exports.ListCustomerEntitlementsV2QueryParams = exports.listCustomerEntitlementsV2QueryOrderDefault = exports.listCustomerEntitlementsV2QueryPageSizeMax = exports.listCustomerEntitlementsV2QueryPageSizeDefault = exports.listCustomerEntitlementsV2QueryPageDefault = exports.listCustomerEntitlementsV2QueryIncludeDeletedDefault = exports.ListCustomerEntitlementsV2Params = exports.listCustomerEntitlementsV2PathCustomerIdOrKeyTwoMax = exports.listCustomerEntitlementsV2PathCustomerIdOrKeyOneRegExp = exports.CreateCustomerEntitlementV2Body = exports.createCustomerEntitlementV2BodyThreeUsagePeriodOneIntervalOneOneRegExp = exports.createCustomerEntitlementV2BodyThreeFeatureIdRegExp = exports.createCustomerEntitlementV2BodyThreeFeatureKeyRegExp = exports.createCustomerEntitlementV2BodyThreeFeatureKeyMax = exports.createCustomerEntitlementV2BodyTwoUsagePeriodOneIntervalOneOneRegExp = exports.createCustomerEntitlementV2BodyTwoFeatureIdRegExp = exports.createCustomerEntitlementV2BodyTwoFeatureKeyRegExp = exports.createCustomerEntitlementV2BodyTwoFeatureKeyMax = exports.createCustomerEntitlementV2BodyOneGrantsItemExpirationOneCountMax = exports.createCustomerEntitlementV2BodyOneGrantsItemRecurrenceOneIntervalOneOneRegExp = exports.createCustomerEntitlementV2BodyOneGrantsItemMinRolloverAmountDefault = exports.createCustomerEntitlementV2BodyOneGrantsItemPriorityMax = exports.createCustomerEntitlementV2BodyOneGrantsItemAmountMin = exports.createCustomerEntitlementV2BodyOneIssueOnePriorityMax = exports.createCustomerEntitlementV2BodyOneIssueOnePriorityDefault = exports.createCustomerEntitlementV2BodyOneIssueOneAmountMin = void 0;
62
- exports.OverrideCustomerEntitlementV2Body = exports.overrideCustomerEntitlementV2BodyThreeUsagePeriodOneIntervalOneOneRegExp = exports.overrideCustomerEntitlementV2BodyThreeFeatureIdRegExp = exports.overrideCustomerEntitlementV2BodyThreeFeatureKeyRegExp = exports.overrideCustomerEntitlementV2BodyThreeFeatureKeyMax = exports.overrideCustomerEntitlementV2BodyTwoUsagePeriodOneIntervalOneOneRegExp = exports.overrideCustomerEntitlementV2BodyTwoFeatureIdRegExp = exports.overrideCustomerEntitlementV2BodyTwoFeatureKeyRegExp = exports.overrideCustomerEntitlementV2BodyTwoFeatureKeyMax = exports.overrideCustomerEntitlementV2BodyOneGrantsItemExpirationOneCountMax = exports.overrideCustomerEntitlementV2BodyOneGrantsItemRecurrenceOneIntervalOneOneRegExp = exports.overrideCustomerEntitlementV2BodyOneGrantsItemMinRolloverAmountDefault = exports.overrideCustomerEntitlementV2BodyOneGrantsItemPriorityMax = exports.overrideCustomerEntitlementV2BodyOneGrantsItemAmountMin = exports.overrideCustomerEntitlementV2BodyOneIssueOnePriorityMax = exports.overrideCustomerEntitlementV2BodyOneIssueOnePriorityDefault = exports.overrideCustomerEntitlementV2BodyOneIssueOneAmountMin = exports.overrideCustomerEntitlementV2BodyOneIssueAfterResetPriorityMax = exports.overrideCustomerEntitlementV2BodyOneIssueAfterResetPriorityDefault = exports.overrideCustomerEntitlementV2BodyOneIssueAfterResetMin = exports.overrideCustomerEntitlementV2BodyOnePreserveOverageAtResetDefault = exports.overrideCustomerEntitlementV2BodyOneUsagePeriodOneIntervalOneOneRegExp = exports.overrideCustomerEntitlementV2BodyOneIsSoftLimitDefault = exports.overrideCustomerEntitlementV2BodyOneFeatureIdRegExp = exports.overrideCustomerEntitlementV2BodyOneFeatureKeyRegExp = exports.overrideCustomerEntitlementV2BodyOneFeatureKeyMax = exports.OverrideCustomerEntitlementV2Params = exports.overrideCustomerEntitlementV2PathEntitlementIdOrFeatureKeyTwoMax = exports.overrideCustomerEntitlementV2PathEntitlementIdOrFeatureKeyOneRegExp = exports.overrideCustomerEntitlementV2PathCustomerIdOrKeyTwoMax = exports.overrideCustomerEntitlementV2PathCustomerIdOrKeyOneRegExp = exports.GetCustomerEntitlementHistoryV2QueryParams = exports.getCustomerEntitlementHistoryV2QueryWindowTimeZoneDefault = exports.GetCustomerEntitlementHistoryV2Params = exports.getCustomerEntitlementHistoryV2PathEntitlementIdOrFeatureKeyRegExp = exports.getCustomerEntitlementHistoryV2PathEntitlementIdOrFeatureKeyMax = exports.getCustomerEntitlementHistoryV2PathCustomerIdOrKeyTwoMax = exports.getCustomerEntitlementHistoryV2PathCustomerIdOrKeyOneRegExp = exports.CreateCustomerEntitlementGrantV2Body = exports.createCustomerEntitlementGrantV2BodyExpirationOneCountMax = exports.createCustomerEntitlementGrantV2BodyRecurrenceOneIntervalOneOneRegExp = exports.createCustomerEntitlementGrantV2BodyMinRolloverAmountDefault = exports.createCustomerEntitlementGrantV2BodyPriorityMax = exports.createCustomerEntitlementGrantV2BodyAmountMin = exports.CreateCustomerEntitlementGrantV2Params = exports.createCustomerEntitlementGrantV2PathEntitlementIdOrFeatureKeyRegExp = exports.createCustomerEntitlementGrantV2PathEntitlementIdOrFeatureKeyMax = exports.createCustomerEntitlementGrantV2PathCustomerIdOrKeyTwoMax = exports.createCustomerEntitlementGrantV2PathCustomerIdOrKeyOneRegExp = exports.ListCustomerEntitlementGrantsV2QueryParams = void 0;
63
- exports.ListGrantsV2QueryParams = exports.listGrantsV2QueryOrderDefault = exports.listGrantsV2QueryLimitMax = exports.listGrantsV2QueryLimitDefault = exports.listGrantsV2QueryOffsetMin = exports.listGrantsV2QueryOffsetDefault = exports.listGrantsV2QueryPageSizeMax = exports.listGrantsV2QueryPageSizeDefault = exports.listGrantsV2QueryPageDefault = exports.listGrantsV2QueryIncludeDeletedDefault = exports.listGrantsV2QueryCustomerItemTwoMax = exports.listGrantsV2QueryCustomerItemOneRegExp = exports.ListEventsV2QueryParams = exports.listEventsV2QueryClientIdMax = exports.listEventsV2QueryLimitMax = exports.listEventsV2QueryLimitDefault = exports.GetEntitlementByIdV2Params = exports.getEntitlementByIdV2PathEntitlementIdRegExp = exports.ListEntitlementsV2QueryParams = exports.listEntitlementsV2QueryOrderDefault = exports.listEntitlementsV2QueryLimitMax = exports.listEntitlementsV2QueryLimitDefault = exports.listEntitlementsV2QueryOffsetMin = exports.listEntitlementsV2QueryOffsetDefault = exports.listEntitlementsV2QueryPageSizeMax = exports.listEntitlementsV2QueryPageSizeDefault = exports.listEntitlementsV2QueryPageDefault = exports.listEntitlementsV2QueryExcludeInactiveDefault = exports.GetCustomerEntitlementValueV2QueryParams = exports.GetCustomerEntitlementValueV2Params = exports.getCustomerEntitlementValueV2PathEntitlementIdOrFeatureKeyRegExp = exports.getCustomerEntitlementValueV2PathEntitlementIdOrFeatureKeyMax = exports.getCustomerEntitlementValueV2PathCustomerIdOrKeyTwoMax = exports.getCustomerEntitlementValueV2PathCustomerIdOrKeyOneRegExp = exports.ResetCustomerEntitlementUsageV2Body = exports.ResetCustomerEntitlementUsageV2Params = exports.resetCustomerEntitlementUsageV2PathEntitlementIdOrFeatureKeyRegExp = exports.resetCustomerEntitlementUsageV2PathEntitlementIdOrFeatureKeyMax = exports.resetCustomerEntitlementUsageV2PathCustomerIdOrKeyTwoMax = exports.resetCustomerEntitlementUsageV2PathCustomerIdOrKeyOneRegExp = void 0;
51
+ exports.createPlanBodyPhasesItemRateCardsItemTwoPriceOneOneAmountOneRegExp = exports.createPlanBodyPhasesItemRateCardsItemTwoTaxConfigOneStripeOneCodeRegExp = exports.createPlanBodyPhasesItemRateCardsItemTwoEntitlementTemplateOneOnePreserveOverageAtResetDefault = exports.createPlanBodyPhasesItemRateCardsItemTwoEntitlementTemplateOneOneIssueAfterResetPriorityMax = exports.createPlanBodyPhasesItemRateCardsItemTwoEntitlementTemplateOneOneIssueAfterResetPriorityDefault = exports.createPlanBodyPhasesItemRateCardsItemTwoEntitlementTemplateOneOneIssueAfterResetMin = exports.createPlanBodyPhasesItemRateCardsItemTwoEntitlementTemplateOneOneIsSoftLimitDefault = exports.createPlanBodyPhasesItemRateCardsItemTwoFeatureKeyRegExp = exports.createPlanBodyPhasesItemRateCardsItemTwoFeatureKeyMax = exports.createPlanBodyPhasesItemRateCardsItemTwoDescriptionMax = exports.createPlanBodyPhasesItemRateCardsItemTwoNameMax = exports.createPlanBodyPhasesItemRateCardsItemTwoKeyRegExp = exports.createPlanBodyPhasesItemRateCardsItemTwoKeyMax = exports.createPlanBodyPhasesItemRateCardsItemOneDiscountsOneUsageOneQuantityOneRegExp = exports.createPlanBodyPhasesItemRateCardsItemOnePriceOnePaymentTermDefault = exports.createPlanBodyPhasesItemRateCardsItemOnePriceOneAmountOneRegExp = exports.createPlanBodyPhasesItemRateCardsItemOneTaxConfigOneStripeOneCodeRegExp = exports.createPlanBodyPhasesItemRateCardsItemOneEntitlementTemplateOneOnePreserveOverageAtResetDefault = exports.createPlanBodyPhasesItemRateCardsItemOneEntitlementTemplateOneOneIssueAfterResetPriorityMax = exports.createPlanBodyPhasesItemRateCardsItemOneEntitlementTemplateOneOneIssueAfterResetPriorityDefault = exports.createPlanBodyPhasesItemRateCardsItemOneEntitlementTemplateOneOneIssueAfterResetMin = exports.createPlanBodyPhasesItemRateCardsItemOneEntitlementTemplateOneOneIsSoftLimitDefault = exports.createPlanBodyPhasesItemRateCardsItemOneFeatureKeyRegExp = exports.createPlanBodyPhasesItemRateCardsItemOneFeatureKeyMax = exports.createPlanBodyPhasesItemRateCardsItemOneDescriptionMax = exports.createPlanBodyPhasesItemRateCardsItemOneNameMax = exports.createPlanBodyPhasesItemRateCardsItemOneKeyRegExp = exports.createPlanBodyPhasesItemRateCardsItemOneKeyMax = exports.createPlanBodyPhasesItemDescriptionMax = exports.createPlanBodyPhasesItemNameMax = exports.createPlanBodyPhasesItemKeyRegExp = exports.createPlanBodyPhasesItemKeyMax = exports.createPlanBodySettlementModeDefault = exports.createPlanBodyProRatingConfigDefault = exports.createPlanBodyProRatingConfigOneModeDefault = exports.createPlanBodyProRatingConfigOneEnabledDefault = exports.createPlanBodyCurrencyDefault = exports.createPlanBodyCurrencyOneRegExp = exports.createPlanBodyCurrencyOneMax = exports.createPlanBodyCurrencyOneMin = exports.createPlanBodyKeyRegExp = exports.createPlanBodyKeyMax = exports.createPlanBodyDescriptionMax = exports.createPlanBodyNameMax = exports.ListPlansQueryParams = exports.listPlansQueryOrderDefault = exports.listPlansQueryPageSizeMax = exports.listPlansQueryPageSizeDefault = exports.listPlansQueryPageDefault = exports.listPlansQueryCurrencyItemRegExp = void 0;
52
+ exports.updatePlanBodyPhasesItemRateCardsItemTwoKeyMax = exports.updatePlanBodyPhasesItemRateCardsItemOneDiscountsOneUsageOneQuantityOneRegExp = exports.updatePlanBodyPhasesItemRateCardsItemOnePriceOnePaymentTermDefault = exports.updatePlanBodyPhasesItemRateCardsItemOnePriceOneAmountOneRegExp = exports.updatePlanBodyPhasesItemRateCardsItemOneTaxConfigOneStripeOneCodeRegExp = exports.updatePlanBodyPhasesItemRateCardsItemOneEntitlementTemplateOneOnePreserveOverageAtResetDefault = exports.updatePlanBodyPhasesItemRateCardsItemOneEntitlementTemplateOneOneIssueAfterResetPriorityMax = exports.updatePlanBodyPhasesItemRateCardsItemOneEntitlementTemplateOneOneIssueAfterResetPriorityDefault = exports.updatePlanBodyPhasesItemRateCardsItemOneEntitlementTemplateOneOneIssueAfterResetMin = exports.updatePlanBodyPhasesItemRateCardsItemOneEntitlementTemplateOneOneIsSoftLimitDefault = exports.updatePlanBodyPhasesItemRateCardsItemOneFeatureKeyRegExp = exports.updatePlanBodyPhasesItemRateCardsItemOneFeatureKeyMax = exports.updatePlanBodyPhasesItemRateCardsItemOneDescriptionMax = exports.updatePlanBodyPhasesItemRateCardsItemOneNameMax = exports.updatePlanBodyPhasesItemRateCardsItemOneKeyRegExp = exports.updatePlanBodyPhasesItemRateCardsItemOneKeyMax = exports.updatePlanBodyPhasesItemDescriptionMax = exports.updatePlanBodyPhasesItemNameMax = exports.updatePlanBodyPhasesItemKeyRegExp = exports.updatePlanBodyPhasesItemKeyMax = exports.updatePlanBodySettlementModeDefault = exports.updatePlanBodyProRatingConfigDefault = exports.updatePlanBodyProRatingConfigOneModeDefault = exports.updatePlanBodyProRatingConfigOneEnabledDefault = exports.updatePlanBodyDescriptionMax = exports.updatePlanBodyNameMax = exports.UpdatePlanParams = exports.updatePlanPathPlanIdRegExp = exports.NextPlanParams = exports.nextPlanPathPlanIdOrKeyRegExp = exports.nextPlanPathPlanIdOrKeyMax = exports.CreatePlanBody = exports.createPlanBodyPhasesItemRateCardsItemTwoDiscountsOneUsageOneQuantityOneRegExp = exports.createPlanBodyPhasesItemRateCardsItemTwoPriceOneFiveMaximumAmountOneRegExp = exports.createPlanBodyPhasesItemRateCardsItemTwoPriceOneFiveMinimumAmountOneRegExp = exports.createPlanBodyPhasesItemRateCardsItemTwoPriceOneFiveQuantityPerPackageOneRegExp = exports.createPlanBodyPhasesItemRateCardsItemTwoPriceOneFiveAmountOneRegExp = exports.createPlanBodyPhasesItemRateCardsItemTwoPriceOneFourMaximumAmountOneRegExp = exports.createPlanBodyPhasesItemRateCardsItemTwoPriceOneFourMinimumAmountOneRegExp = exports.createPlanBodyPhasesItemRateCardsItemTwoPriceOneFourMultiplierDefault = exports.createPlanBodyPhasesItemRateCardsItemTwoPriceOneFourMultiplierOneRegExp = exports.createPlanBodyPhasesItemRateCardsItemTwoPriceOneThreeMaximumAmountOneRegExp = exports.createPlanBodyPhasesItemRateCardsItemTwoPriceOneThreeMinimumAmountOneRegExp = exports.createPlanBodyPhasesItemRateCardsItemTwoPriceOneThreeTiersItemUnitPriceOneAmountOneRegExp = exports.createPlanBodyPhasesItemRateCardsItemTwoPriceOneThreeTiersItemFlatPriceOneAmountOneRegExp = exports.createPlanBodyPhasesItemRateCardsItemTwoPriceOneThreeTiersItemUpToAmountOneRegExp = exports.createPlanBodyPhasesItemRateCardsItemTwoPriceOneTwoMaximumAmountOneRegExp = exports.createPlanBodyPhasesItemRateCardsItemTwoPriceOneTwoMinimumAmountOneRegExp = exports.createPlanBodyPhasesItemRateCardsItemTwoPriceOneTwoAmountOneRegExp = exports.createPlanBodyPhasesItemRateCardsItemTwoPriceOneOnePaymentTermDefault = void 0;
53
+ exports.ListPlanAddonsQueryParams = exports.listPlanAddonsQueryOrderDefault = 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.updatePlanBodyPhasesItemRateCardsItemTwoDiscountsOneUsageOneQuantityOneRegExp = exports.updatePlanBodyPhasesItemRateCardsItemTwoPriceOneFiveMaximumAmountOneRegExp = exports.updatePlanBodyPhasesItemRateCardsItemTwoPriceOneFiveMinimumAmountOneRegExp = exports.updatePlanBodyPhasesItemRateCardsItemTwoPriceOneFiveQuantityPerPackageOneRegExp = exports.updatePlanBodyPhasesItemRateCardsItemTwoPriceOneFiveAmountOneRegExp = exports.updatePlanBodyPhasesItemRateCardsItemTwoPriceOneFourMaximumAmountOneRegExp = exports.updatePlanBodyPhasesItemRateCardsItemTwoPriceOneFourMinimumAmountOneRegExp = exports.updatePlanBodyPhasesItemRateCardsItemTwoPriceOneFourMultiplierDefault = exports.updatePlanBodyPhasesItemRateCardsItemTwoPriceOneFourMultiplierOneRegExp = exports.updatePlanBodyPhasesItemRateCardsItemTwoPriceOneThreeMaximumAmountOneRegExp = exports.updatePlanBodyPhasesItemRateCardsItemTwoPriceOneThreeMinimumAmountOneRegExp = exports.updatePlanBodyPhasesItemRateCardsItemTwoPriceOneThreeTiersItemUnitPriceOneAmountOneRegExp = exports.updatePlanBodyPhasesItemRateCardsItemTwoPriceOneThreeTiersItemFlatPriceOneAmountOneRegExp = exports.updatePlanBodyPhasesItemRateCardsItemTwoPriceOneThreeTiersItemUpToAmountOneRegExp = exports.updatePlanBodyPhasesItemRateCardsItemTwoPriceOneTwoMaximumAmountOneRegExp = exports.updatePlanBodyPhasesItemRateCardsItemTwoPriceOneTwoMinimumAmountOneRegExp = exports.updatePlanBodyPhasesItemRateCardsItemTwoPriceOneTwoAmountOneRegExp = exports.updatePlanBodyPhasesItemRateCardsItemTwoPriceOneOnePaymentTermDefault = exports.updatePlanBodyPhasesItemRateCardsItemTwoPriceOneOneAmountOneRegExp = exports.updatePlanBodyPhasesItemRateCardsItemTwoTaxConfigOneStripeOneCodeRegExp = exports.updatePlanBodyPhasesItemRateCardsItemTwoEntitlementTemplateOneOnePreserveOverageAtResetDefault = exports.updatePlanBodyPhasesItemRateCardsItemTwoEntitlementTemplateOneOneIssueAfterResetPriorityMax = exports.updatePlanBodyPhasesItemRateCardsItemTwoEntitlementTemplateOneOneIssueAfterResetPriorityDefault = exports.updatePlanBodyPhasesItemRateCardsItemTwoEntitlementTemplateOneOneIssueAfterResetMin = exports.updatePlanBodyPhasesItemRateCardsItemTwoEntitlementTemplateOneOneIsSoftLimitDefault = exports.updatePlanBodyPhasesItemRateCardsItemTwoFeatureKeyRegExp = exports.updatePlanBodyPhasesItemRateCardsItemTwoFeatureKeyMax = exports.updatePlanBodyPhasesItemRateCardsItemTwoDescriptionMax = exports.updatePlanBodyPhasesItemRateCardsItemTwoNameMax = exports.updatePlanBodyPhasesItemRateCardsItemTwoKeyRegExp = void 0;
54
+ exports.createStripeCheckoutSessionBodyOptionsOneCustomTextOneSubmitMessageMax = exports.createStripeCheckoutSessionBodyOptionsOneCustomTextOneShippingAddressMessageMax = exports.createStripeCheckoutSessionBodyOptionsOneCustomTextOneAfterSubmitMessageMax = exports.createStripeCheckoutSessionBodyOptionsOneCurrencyOneRegExp = exports.createStripeCheckoutSessionBodyOptionsOneCurrencyOneMax = exports.createStripeCheckoutSessionBodyOptionsOneCurrencyOneMin = exports.createStripeCheckoutSessionBodyCustomerThreeBillingAddressOneCountryOneRegExp = exports.createStripeCheckoutSessionBodyCustomerThreeBillingAddressOneCountryOneMax = exports.createStripeCheckoutSessionBodyCustomerThreeBillingAddressOneCountryOneMin = exports.createStripeCheckoutSessionBodyCustomerThreeCurrencyOneRegExp = exports.createStripeCheckoutSessionBodyCustomerThreeCurrencyOneMax = exports.createStripeCheckoutSessionBodyCustomerThreeCurrencyOneMin = exports.createStripeCheckoutSessionBodyCustomerThreeUsageAttributionOneSubjectKeysMin = exports.createStripeCheckoutSessionBodyCustomerThreeKeyMax = exports.createStripeCheckoutSessionBodyCustomerThreeDescriptionMax = exports.createStripeCheckoutSessionBodyCustomerThreeNameMax = exports.createStripeCheckoutSessionBodyCustomerOneIdRegExp = 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 = exports.createPlanAddonPathPlanIdRegExp = void 0;
55
+ exports.overrideEntitlementBodyOneIssueAfterResetPriorityDefault = exports.overrideEntitlementBodyOneIssueAfterResetMin = exports.overrideEntitlementBodyOneUsagePeriodOneIntervalOneOneRegExp = exports.overrideEntitlementBodyOneIsUnlimitedDefault = exports.overrideEntitlementBodyOneIsSoftLimitDefault = exports.overrideEntitlementBodyOneFeatureIdRegExp = exports.overrideEntitlementBodyOneFeatureKeyRegExp = exports.overrideEntitlementBodyOneFeatureKeyMax = exports.OverrideEntitlementParams = exports.CreateGrantBody = exports.createGrantBodyRecurrenceOneIntervalOneOneRegExp = exports.createGrantBodyMinRolloverAmountDefault = exports.createGrantBodyMaxRolloverAmountDefault = exports.createGrantBodyExpirationOneCountMax = exports.createGrantBodyPriorityMax = exports.createGrantBodyAmountMin = exports.CreateGrantParams = exports.ListEntitlementGrantsQueryParams = exports.listEntitlementGrantsQueryOrderByDefault = exports.listEntitlementGrantsQueryIncludeDeletedDefault = exports.ListEntitlementGrantsParams = exports.ListSubjectEntitlementsQueryParams = exports.listSubjectEntitlementsQueryIncludeDeletedDefault = exports.ListSubjectEntitlementsParams = exports.CreateEntitlementBody = exports.createEntitlementBodyThreeUsagePeriodOneIntervalOneOneRegExp = exports.createEntitlementBodyThreeFeatureIdRegExp = exports.createEntitlementBodyThreeFeatureKeyRegExp = exports.createEntitlementBodyThreeFeatureKeyMax = exports.createEntitlementBodyTwoUsagePeriodOneIntervalOneOneRegExp = exports.createEntitlementBodyTwoFeatureIdRegExp = exports.createEntitlementBodyTwoFeatureKeyRegExp = exports.createEntitlementBodyTwoFeatureKeyMax = exports.createEntitlementBodyOnePreserveOverageAtResetDefault = exports.createEntitlementBodyOneIssueAfterResetPriorityMax = exports.createEntitlementBodyOneIssueAfterResetPriorityDefault = exports.createEntitlementBodyOneIssueAfterResetMin = exports.createEntitlementBodyOneUsagePeriodOneIntervalOneOneRegExp = exports.createEntitlementBodyOneIsUnlimitedDefault = exports.createEntitlementBodyOneIsSoftLimitDefault = exports.createEntitlementBodyOneFeatureIdRegExp = exports.createEntitlementBodyOneFeatureKeyRegExp = exports.createEntitlementBodyOneFeatureKeyMax = exports.CreateEntitlementParams = exports.DeleteSubjectParams = exports.GetSubjectParams = exports.UpsertSubjectBody = exports.UpsertSubjectBodyItem = exports.CreateStripeCheckoutSessionBody = exports.createStripeCheckoutSessionBodyOptionsOneCustomTextOneTermsOfServiceAcceptanceMessageMax = void 0;
56
+ exports.createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemOneEntitlementTemplateOneOnePreserveOverageAtResetDefault = exports.createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemOneEntitlementTemplateOneOneIssueAfterResetPriorityMax = exports.createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemOneEntitlementTemplateOneOneIssueAfterResetPriorityDefault = exports.createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemOneEntitlementTemplateOneOneIssueAfterResetMin = exports.createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemOneEntitlementTemplateOneOneIsSoftLimitDefault = exports.createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemOneFeatureKeyRegExp = exports.createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemOneFeatureKeyMax = exports.createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemOneDescriptionMax = exports.createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemOneNameMax = exports.createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemOneKeyRegExp = exports.createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemOneKeyMax = exports.createSubscriptionBodyTwoCustomPlanOneOnePhasesItemDescriptionMax = exports.createSubscriptionBodyTwoCustomPlanOneOnePhasesItemNameMax = exports.createSubscriptionBodyTwoCustomPlanOneOnePhasesItemKeyRegExp = exports.createSubscriptionBodyTwoCustomPlanOneOnePhasesItemKeyMax = exports.createSubscriptionBodyTwoCustomPlanOneOneSettlementModeDefault = exports.createSubscriptionBodyTwoCustomPlanOneOneProRatingConfigDefault = exports.createSubscriptionBodyTwoCustomPlanOneOneProRatingConfigOneModeDefault = exports.createSubscriptionBodyTwoCustomPlanOneOneProRatingConfigOneEnabledDefault = exports.createSubscriptionBodyTwoCustomPlanOneOneCurrencyDefault = exports.createSubscriptionBodyTwoCustomPlanOneOneCurrencyOneRegExp = exports.createSubscriptionBodyTwoCustomPlanOneOneCurrencyOneMax = exports.createSubscriptionBodyTwoCustomPlanOneOneCurrencyOneMin = exports.createSubscriptionBodyTwoCustomPlanOneOneDescriptionMax = exports.createSubscriptionBodyTwoCustomPlanOneOneNameMax = exports.createSubscriptionBodyOneCustomerKeyMax = exports.createSubscriptionBodyOneCustomerIdRegExp = exports.createSubscriptionBodyOneTimingDefault = exports.createSubscriptionBodyOnePlanOneKeyRegExp = exports.createSubscriptionBodyOnePlanOneKeyMax = exports.ResetEntitlementUsageBody = exports.ResetEntitlementUsageParams = exports.GetEntitlementHistoryQueryParams = exports.getEntitlementHistoryQueryWindowTimeZoneDefault = exports.GetEntitlementHistoryParams = exports.DeleteEntitlementParams = exports.GetEntitlementParams = exports.GetEntitlementValueQueryParams = exports.GetEntitlementValueParams = exports.OverrideEntitlementBody = exports.overrideEntitlementBodyThreeUsagePeriodOneIntervalOneOneRegExp = exports.overrideEntitlementBodyThreeFeatureIdRegExp = exports.overrideEntitlementBodyThreeFeatureKeyRegExp = exports.overrideEntitlementBodyThreeFeatureKeyMax = exports.overrideEntitlementBodyTwoUsagePeriodOneIntervalOneOneRegExp = exports.overrideEntitlementBodyTwoFeatureIdRegExp = exports.overrideEntitlementBodyTwoFeatureKeyRegExp = exports.overrideEntitlementBodyTwoFeatureKeyMax = exports.overrideEntitlementBodyOnePreserveOverageAtResetDefault = exports.overrideEntitlementBodyOneIssueAfterResetPriorityMax = void 0;
57
+ exports.editSubscriptionBodyCustomizationsItemOneRateCardOneFeatureKeyRegExp = exports.editSubscriptionBodyCustomizationsItemOneRateCardOneFeatureKeyMax = exports.editSubscriptionBodyCustomizationsItemOneRateCardOneDescriptionMax = exports.editSubscriptionBodyCustomizationsItemOneRateCardOneNameMax = exports.editSubscriptionBodyCustomizationsItemOneRateCardOneKeyRegExp = exports.editSubscriptionBodyCustomizationsItemOneRateCardOneKeyMax = exports.EditSubscriptionParams = exports.editSubscriptionPathSubscriptionIdRegExp = exports.GetSubscriptionQueryParams = exports.GetSubscriptionParams = exports.getSubscriptionPathSubscriptionIdRegExp = exports.CreateSubscriptionBody = exports.createSubscriptionBodyTwoCustomerKeyMax = exports.createSubscriptionBodyTwoCustomerIdRegExp = exports.createSubscriptionBodyTwoTimingDefault = exports.createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoDiscountsOneUsageOneQuantityOneRegExp = exports.createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoPriceOneFiveMaximumAmountOneRegExp = exports.createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoPriceOneFiveMinimumAmountOneRegExp = exports.createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoPriceOneFiveQuantityPerPackageOneRegExp = exports.createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoPriceOneFiveAmountOneRegExp = exports.createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoPriceOneFourMaximumAmountOneRegExp = exports.createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoPriceOneFourMinimumAmountOneRegExp = exports.createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoPriceOneFourMultiplierDefault = exports.createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoPriceOneFourMultiplierOneRegExp = exports.createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoPriceOneThreeMaximumAmountOneRegExp = exports.createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoPriceOneThreeMinimumAmountOneRegExp = exports.createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoPriceOneThreeTiersItemUnitPriceOneAmountOneRegExp = exports.createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoPriceOneThreeTiersItemFlatPriceOneAmountOneRegExp = exports.createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoPriceOneThreeTiersItemUpToAmountOneRegExp = exports.createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoPriceOneTwoMaximumAmountOneRegExp = exports.createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoPriceOneTwoMinimumAmountOneRegExp = exports.createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoPriceOneTwoAmountOneRegExp = exports.createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoPriceOneOnePaymentTermDefault = exports.createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoPriceOneOneAmountOneRegExp = exports.createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoTaxConfigOneStripeOneCodeRegExp = exports.createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoEntitlementTemplateOneOnePreserveOverageAtResetDefault = exports.createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoEntitlementTemplateOneOneIssueAfterResetPriorityMax = exports.createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoEntitlementTemplateOneOneIssueAfterResetPriorityDefault = exports.createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoEntitlementTemplateOneOneIssueAfterResetMin = exports.createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoEntitlementTemplateOneOneIsSoftLimitDefault = exports.createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoFeatureKeyRegExp = exports.createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoFeatureKeyMax = exports.createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoDescriptionMax = exports.createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoNameMax = exports.createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoKeyRegExp = exports.createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoKeyMax = exports.createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemOneDiscountsOneUsageOneQuantityOneRegExp = exports.createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemOnePriceOnePaymentTermDefault = exports.createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemOnePriceOneAmountOneRegExp = exports.createSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemOneTaxConfigOneStripeOneCodeRegExp = void 0;
58
+ exports.createSubscriptionAddonBodyNameMax = exports.CreateSubscriptionAddonParams = exports.createSubscriptionAddonPathSubscriptionIdRegExp = exports.DeleteSubscriptionParams = exports.deleteSubscriptionPathSubscriptionIdRegExp = exports.EditSubscriptionBody = exports.editSubscriptionBodyCustomizationsMax = exports.editSubscriptionBodyCustomizationsItemThreePhaseKeyRegExp = exports.editSubscriptionBodyCustomizationsItemThreePhaseKeyMax = exports.editSubscriptionBodyCustomizationsItemThreePhaseDiscountsOneUsageOneQuantityOneRegExp = exports.editSubscriptionBodyCustomizationsItemOneRateCardTwoDiscountsOneUsageOneQuantityOneRegExp = exports.editSubscriptionBodyCustomizationsItemOneRateCardTwoPriceOneFiveMaximumAmountOneRegExp = exports.editSubscriptionBodyCustomizationsItemOneRateCardTwoPriceOneFiveMinimumAmountOneRegExp = exports.editSubscriptionBodyCustomizationsItemOneRateCardTwoPriceOneFiveQuantityPerPackageOneRegExp = exports.editSubscriptionBodyCustomizationsItemOneRateCardTwoPriceOneFiveAmountOneRegExp = exports.editSubscriptionBodyCustomizationsItemOneRateCardTwoPriceOneFourMaximumAmountOneRegExp = exports.editSubscriptionBodyCustomizationsItemOneRateCardTwoPriceOneFourMinimumAmountOneRegExp = exports.editSubscriptionBodyCustomizationsItemOneRateCardTwoPriceOneFourMultiplierDefault = exports.editSubscriptionBodyCustomizationsItemOneRateCardTwoPriceOneFourMultiplierOneRegExp = exports.editSubscriptionBodyCustomizationsItemOneRateCardTwoPriceOneThreeMaximumAmountOneRegExp = exports.editSubscriptionBodyCustomizationsItemOneRateCardTwoPriceOneThreeMinimumAmountOneRegExp = exports.editSubscriptionBodyCustomizationsItemOneRateCardTwoPriceOneThreeTiersItemUnitPriceOneAmountOneRegExp = exports.editSubscriptionBodyCustomizationsItemOneRateCardTwoPriceOneThreeTiersItemFlatPriceOneAmountOneRegExp = exports.editSubscriptionBodyCustomizationsItemOneRateCardTwoPriceOneThreeTiersItemUpToAmountOneRegExp = exports.editSubscriptionBodyCustomizationsItemOneRateCardTwoPriceOneTwoMaximumAmountOneRegExp = exports.editSubscriptionBodyCustomizationsItemOneRateCardTwoPriceOneTwoMinimumAmountOneRegExp = exports.editSubscriptionBodyCustomizationsItemOneRateCardTwoPriceOneTwoAmountOneRegExp = exports.editSubscriptionBodyCustomizationsItemOneRateCardTwoPriceOneOnePaymentTermDefault = exports.editSubscriptionBodyCustomizationsItemOneRateCardTwoPriceOneOneAmountOneRegExp = exports.editSubscriptionBodyCustomizationsItemOneRateCardTwoTaxConfigOneStripeOneCodeRegExp = exports.editSubscriptionBodyCustomizationsItemOneRateCardTwoEntitlementTemplateOneOnePreserveOverageAtResetDefault = exports.editSubscriptionBodyCustomizationsItemOneRateCardTwoEntitlementTemplateOneOneIssueAfterResetPriorityMax = exports.editSubscriptionBodyCustomizationsItemOneRateCardTwoEntitlementTemplateOneOneIssueAfterResetPriorityDefault = exports.editSubscriptionBodyCustomizationsItemOneRateCardTwoEntitlementTemplateOneOneIssueAfterResetMin = exports.editSubscriptionBodyCustomizationsItemOneRateCardTwoEntitlementTemplateOneOneIsSoftLimitDefault = exports.editSubscriptionBodyCustomizationsItemOneRateCardTwoFeatureKeyRegExp = exports.editSubscriptionBodyCustomizationsItemOneRateCardTwoFeatureKeyMax = exports.editSubscriptionBodyCustomizationsItemOneRateCardTwoDescriptionMax = exports.editSubscriptionBodyCustomizationsItemOneRateCardTwoNameMax = exports.editSubscriptionBodyCustomizationsItemOneRateCardTwoKeyRegExp = exports.editSubscriptionBodyCustomizationsItemOneRateCardTwoKeyMax = exports.editSubscriptionBodyCustomizationsItemOneRateCardOneDiscountsOneUsageOneQuantityOneRegExp = exports.editSubscriptionBodyCustomizationsItemOneRateCardOnePriceOnePaymentTermDefault = exports.editSubscriptionBodyCustomizationsItemOneRateCardOnePriceOneAmountOneRegExp = exports.editSubscriptionBodyCustomizationsItemOneRateCardOneTaxConfigOneStripeOneCodeRegExp = exports.editSubscriptionBodyCustomizationsItemOneRateCardOneEntitlementTemplateOneOnePreserveOverageAtResetDefault = exports.editSubscriptionBodyCustomizationsItemOneRateCardOneEntitlementTemplateOneOneIssueAfterResetPriorityMax = exports.editSubscriptionBodyCustomizationsItemOneRateCardOneEntitlementTemplateOneOneIssueAfterResetPriorityDefault = exports.editSubscriptionBodyCustomizationsItemOneRateCardOneEntitlementTemplateOneOneIssueAfterResetMin = exports.editSubscriptionBodyCustomizationsItemOneRateCardOneEntitlementTemplateOneOneIsSoftLimitDefault = void 0;
59
+ exports.changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemOnePriceOneAmountOneRegExp = exports.changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemOneTaxConfigOneStripeOneCodeRegExp = exports.changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemOneEntitlementTemplateOneOnePreserveOverageAtResetDefault = exports.changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemOneEntitlementTemplateOneOneIssueAfterResetPriorityMax = exports.changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemOneEntitlementTemplateOneOneIssueAfterResetPriorityDefault = exports.changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemOneEntitlementTemplateOneOneIssueAfterResetMin = exports.changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemOneEntitlementTemplateOneOneIsSoftLimitDefault = exports.changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemOneFeatureKeyRegExp = exports.changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemOneFeatureKeyMax = exports.changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemOneDescriptionMax = exports.changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemOneNameMax = exports.changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemOneKeyRegExp = exports.changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemOneKeyMax = exports.changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemDescriptionMax = exports.changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemNameMax = exports.changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemKeyRegExp = exports.changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemKeyMax = exports.changeSubscriptionBodyTwoCustomPlanOneOneSettlementModeDefault = exports.changeSubscriptionBodyTwoCustomPlanOneOneProRatingConfigDefault = exports.changeSubscriptionBodyTwoCustomPlanOneOneProRatingConfigOneModeDefault = exports.changeSubscriptionBodyTwoCustomPlanOneOneProRatingConfigOneEnabledDefault = exports.changeSubscriptionBodyTwoCustomPlanOneOneCurrencyDefault = exports.changeSubscriptionBodyTwoCustomPlanOneOneCurrencyOneRegExp = exports.changeSubscriptionBodyTwoCustomPlanOneOneCurrencyOneMax = exports.changeSubscriptionBodyTwoCustomPlanOneOneCurrencyOneMin = exports.changeSubscriptionBodyTwoCustomPlanOneOneDescriptionMax = exports.changeSubscriptionBodyTwoCustomPlanOneOneNameMax = exports.changeSubscriptionBodyOnePlanOneKeyRegExp = exports.changeSubscriptionBodyOnePlanOneKeyMax = exports.ChangeSubscriptionParams = exports.changeSubscriptionPathSubscriptionIdRegExp = exports.CancelSubscriptionBody = exports.CancelSubscriptionParams = exports.cancelSubscriptionPathSubscriptionIdRegExp = exports.UpdateSubscriptionAddonBody = exports.updateSubscriptionAddonBodyQuantityMin = exports.updateSubscriptionAddonBodyDescriptionMax = exports.updateSubscriptionAddonBodyNameMax = exports.UpdateSubscriptionAddonParams = exports.updateSubscriptionAddonPathSubscriptionAddonIdRegExp = exports.updateSubscriptionAddonPathSubscriptionIdRegExp = exports.GetSubscriptionAddonParams = exports.getSubscriptionAddonPathSubscriptionAddonIdRegExp = exports.getSubscriptionAddonPathSubscriptionIdRegExp = exports.ListSubscriptionAddonsParams = exports.listSubscriptionAddonsPathSubscriptionIdRegExp = exports.CreateSubscriptionAddonBody = exports.createSubscriptionAddonBodyAddonIdRegExp = exports.createSubscriptionAddonBodyQuantityMin = exports.createSubscriptionAddonBodyDescriptionMax = void 0;
60
+ exports.createCustomerEntitlementV2BodyOneUsagePeriodOneIntervalOneOneRegExp = exports.createCustomerEntitlementV2BodyOneIsSoftLimitDefault = exports.createCustomerEntitlementV2BodyOneFeatureIdRegExp = exports.createCustomerEntitlementV2BodyOneFeatureKeyRegExp = exports.createCustomerEntitlementV2BodyOneFeatureKeyMax = exports.CreateCustomerEntitlementV2Params = exports.createCustomerEntitlementV2PathCustomerIdOrKeyTwoMax = exports.createCustomerEntitlementV2PathCustomerIdOrKeyOneRegExp = exports.UnscheduleCancelationParams = exports.unscheduleCancelationPathSubscriptionIdRegExp = exports.RestoreSubscriptionParams = exports.restoreSubscriptionPathSubscriptionIdRegExp = exports.MigrateSubscriptionBody = exports.migrateSubscriptionBodyTimingDefault = exports.MigrateSubscriptionParams = exports.migrateSubscriptionPathSubscriptionIdRegExp = exports.ChangeSubscriptionBody = exports.changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoDiscountsOneUsageOneQuantityOneRegExp = exports.changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoPriceOneFiveMaximumAmountOneRegExp = exports.changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoPriceOneFiveMinimumAmountOneRegExp = exports.changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoPriceOneFiveQuantityPerPackageOneRegExp = exports.changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoPriceOneFiveAmountOneRegExp = exports.changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoPriceOneFourMaximumAmountOneRegExp = exports.changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoPriceOneFourMinimumAmountOneRegExp = exports.changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoPriceOneFourMultiplierDefault = exports.changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoPriceOneFourMultiplierOneRegExp = exports.changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoPriceOneThreeMaximumAmountOneRegExp = exports.changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoPriceOneThreeMinimumAmountOneRegExp = exports.changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoPriceOneThreeTiersItemUnitPriceOneAmountOneRegExp = exports.changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoPriceOneThreeTiersItemFlatPriceOneAmountOneRegExp = exports.changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoPriceOneThreeTiersItemUpToAmountOneRegExp = exports.changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoPriceOneTwoMaximumAmountOneRegExp = exports.changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoPriceOneTwoMinimumAmountOneRegExp = exports.changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoPriceOneTwoAmountOneRegExp = exports.changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoPriceOneOnePaymentTermDefault = exports.changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoPriceOneOneAmountOneRegExp = exports.changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoTaxConfigOneStripeOneCodeRegExp = exports.changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoEntitlementTemplateOneOnePreserveOverageAtResetDefault = exports.changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoEntitlementTemplateOneOneIssueAfterResetPriorityMax = exports.changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoEntitlementTemplateOneOneIssueAfterResetPriorityDefault = exports.changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoEntitlementTemplateOneOneIssueAfterResetMin = exports.changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoEntitlementTemplateOneOneIsSoftLimitDefault = exports.changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoFeatureKeyRegExp = exports.changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoFeatureKeyMax = exports.changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoDescriptionMax = exports.changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoNameMax = exports.changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoKeyRegExp = exports.changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemTwoKeyMax = exports.changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemOneDiscountsOneUsageOneQuantityOneRegExp = exports.changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemRateCardsItemOnePriceOnePaymentTermDefault = void 0;
61
+ exports.listCustomerEntitlementGrantsV2QueryOffsetDefault = exports.listCustomerEntitlementGrantsV2QueryPageSizeMax = exports.listCustomerEntitlementGrantsV2QueryPageSizeDefault = exports.listCustomerEntitlementGrantsV2QueryPageDefault = exports.listCustomerEntitlementGrantsV2QueryIncludeDeletedDefault = exports.ListCustomerEntitlementGrantsV2Params = exports.listCustomerEntitlementGrantsV2PathEntitlementIdOrFeatureKeyRegExp = exports.listCustomerEntitlementGrantsV2PathEntitlementIdOrFeatureKeyMax = exports.listCustomerEntitlementGrantsV2PathCustomerIdOrKeyTwoMax = exports.listCustomerEntitlementGrantsV2PathCustomerIdOrKeyOneRegExp = exports.DeleteCustomerEntitlementV2Params = exports.deleteCustomerEntitlementV2PathEntitlementIdOrFeatureKeyRegExp = exports.deleteCustomerEntitlementV2PathEntitlementIdOrFeatureKeyMax = exports.deleteCustomerEntitlementV2PathCustomerIdOrKeyTwoMax = exports.deleteCustomerEntitlementV2PathCustomerIdOrKeyOneRegExp = exports.GetCustomerEntitlementV2Params = exports.getCustomerEntitlementV2PathEntitlementIdOrFeatureKeyRegExp = exports.getCustomerEntitlementV2PathEntitlementIdOrFeatureKeyMax = exports.getCustomerEntitlementV2PathCustomerIdOrKeyTwoMax = exports.getCustomerEntitlementV2PathCustomerIdOrKeyOneRegExp = exports.ListCustomerEntitlementsV2QueryParams = exports.listCustomerEntitlementsV2QueryOrderDefault = exports.listCustomerEntitlementsV2QueryPageSizeMax = exports.listCustomerEntitlementsV2QueryPageSizeDefault = exports.listCustomerEntitlementsV2QueryPageDefault = exports.listCustomerEntitlementsV2QueryIncludeDeletedDefault = exports.ListCustomerEntitlementsV2Params = exports.listCustomerEntitlementsV2PathCustomerIdOrKeyTwoMax = exports.listCustomerEntitlementsV2PathCustomerIdOrKeyOneRegExp = exports.CreateCustomerEntitlementV2Body = exports.createCustomerEntitlementV2BodyThreeUsagePeriodOneIntervalOneOneRegExp = exports.createCustomerEntitlementV2BodyThreeFeatureIdRegExp = exports.createCustomerEntitlementV2BodyThreeFeatureKeyRegExp = exports.createCustomerEntitlementV2BodyThreeFeatureKeyMax = exports.createCustomerEntitlementV2BodyTwoUsagePeriodOneIntervalOneOneRegExp = exports.createCustomerEntitlementV2BodyTwoFeatureIdRegExp = exports.createCustomerEntitlementV2BodyTwoFeatureKeyRegExp = exports.createCustomerEntitlementV2BodyTwoFeatureKeyMax = exports.createCustomerEntitlementV2BodyOneGrantsItemExpirationOneCountMax = exports.createCustomerEntitlementV2BodyOneGrantsItemRecurrenceOneIntervalOneOneRegExp = exports.createCustomerEntitlementV2BodyOneGrantsItemMinRolloverAmountDefault = exports.createCustomerEntitlementV2BodyOneGrantsItemPriorityMax = exports.createCustomerEntitlementV2BodyOneGrantsItemAmountMin = exports.createCustomerEntitlementV2BodyOneIssueOnePriorityMax = exports.createCustomerEntitlementV2BodyOneIssueOnePriorityDefault = exports.createCustomerEntitlementV2BodyOneIssueOneAmountMin = exports.createCustomerEntitlementV2BodyOneIssueAfterResetPriorityMax = exports.createCustomerEntitlementV2BodyOneIssueAfterResetPriorityDefault = exports.createCustomerEntitlementV2BodyOneIssueAfterResetMin = exports.createCustomerEntitlementV2BodyOnePreserveOverageAtResetDefault = void 0;
62
+ exports.overrideCustomerEntitlementV2BodyThreeFeatureKeyMax = exports.overrideCustomerEntitlementV2BodyTwoUsagePeriodOneIntervalOneOneRegExp = exports.overrideCustomerEntitlementV2BodyTwoFeatureIdRegExp = exports.overrideCustomerEntitlementV2BodyTwoFeatureKeyRegExp = exports.overrideCustomerEntitlementV2BodyTwoFeatureKeyMax = exports.overrideCustomerEntitlementV2BodyOneGrantsItemExpirationOneCountMax = exports.overrideCustomerEntitlementV2BodyOneGrantsItemRecurrenceOneIntervalOneOneRegExp = exports.overrideCustomerEntitlementV2BodyOneGrantsItemMinRolloverAmountDefault = exports.overrideCustomerEntitlementV2BodyOneGrantsItemPriorityMax = exports.overrideCustomerEntitlementV2BodyOneGrantsItemAmountMin = exports.overrideCustomerEntitlementV2BodyOneIssueOnePriorityMax = exports.overrideCustomerEntitlementV2BodyOneIssueOnePriorityDefault = exports.overrideCustomerEntitlementV2BodyOneIssueOneAmountMin = exports.overrideCustomerEntitlementV2BodyOneIssueAfterResetPriorityMax = exports.overrideCustomerEntitlementV2BodyOneIssueAfterResetPriorityDefault = exports.overrideCustomerEntitlementV2BodyOneIssueAfterResetMin = exports.overrideCustomerEntitlementV2BodyOnePreserveOverageAtResetDefault = exports.overrideCustomerEntitlementV2BodyOneUsagePeriodOneIntervalOneOneRegExp = exports.overrideCustomerEntitlementV2BodyOneIsSoftLimitDefault = exports.overrideCustomerEntitlementV2BodyOneFeatureIdRegExp = exports.overrideCustomerEntitlementV2BodyOneFeatureKeyRegExp = exports.overrideCustomerEntitlementV2BodyOneFeatureKeyMax = exports.OverrideCustomerEntitlementV2Params = exports.overrideCustomerEntitlementV2PathEntitlementIdOrFeatureKeyTwoMax = exports.overrideCustomerEntitlementV2PathEntitlementIdOrFeatureKeyOneRegExp = exports.overrideCustomerEntitlementV2PathCustomerIdOrKeyTwoMax = exports.overrideCustomerEntitlementV2PathCustomerIdOrKeyOneRegExp = exports.GetCustomerEntitlementHistoryV2QueryParams = exports.getCustomerEntitlementHistoryV2QueryWindowTimeZoneDefault = exports.GetCustomerEntitlementHistoryV2Params = exports.getCustomerEntitlementHistoryV2PathEntitlementIdOrFeatureKeyRegExp = exports.getCustomerEntitlementHistoryV2PathEntitlementIdOrFeatureKeyMax = exports.getCustomerEntitlementHistoryV2PathCustomerIdOrKeyTwoMax = exports.getCustomerEntitlementHistoryV2PathCustomerIdOrKeyOneRegExp = exports.CreateCustomerEntitlementGrantV2Body = exports.createCustomerEntitlementGrantV2BodyExpirationOneCountMax = exports.createCustomerEntitlementGrantV2BodyRecurrenceOneIntervalOneOneRegExp = exports.createCustomerEntitlementGrantV2BodyMinRolloverAmountDefault = exports.createCustomerEntitlementGrantV2BodyPriorityMax = exports.createCustomerEntitlementGrantV2BodyAmountMin = exports.CreateCustomerEntitlementGrantV2Params = exports.createCustomerEntitlementGrantV2PathEntitlementIdOrFeatureKeyRegExp = exports.createCustomerEntitlementGrantV2PathEntitlementIdOrFeatureKeyMax = exports.createCustomerEntitlementGrantV2PathCustomerIdOrKeyTwoMax = exports.createCustomerEntitlementGrantV2PathCustomerIdOrKeyOneRegExp = exports.ListCustomerEntitlementGrantsV2QueryParams = exports.listCustomerEntitlementGrantsV2QueryOrderDefault = exports.listCustomerEntitlementGrantsV2QueryLimitMax = exports.listCustomerEntitlementGrantsV2QueryLimitDefault = exports.listCustomerEntitlementGrantsV2QueryOffsetMin = void 0;
63
+ exports.ListGrantsV2QueryParams = exports.listGrantsV2QueryOrderDefault = exports.listGrantsV2QueryLimitMax = exports.listGrantsV2QueryLimitDefault = exports.listGrantsV2QueryOffsetMin = exports.listGrantsV2QueryOffsetDefault = exports.listGrantsV2QueryPageSizeMax = exports.listGrantsV2QueryPageSizeDefault = exports.listGrantsV2QueryPageDefault = exports.listGrantsV2QueryIncludeDeletedDefault = exports.listGrantsV2QueryCustomerItemTwoMax = exports.listGrantsV2QueryCustomerItemOneRegExp = exports.ListEventsV2QueryParams = exports.listEventsV2QueryClientIdMax = exports.listEventsV2QueryLimitMax = exports.listEventsV2QueryLimitDefault = exports.GetEntitlementByIdV2Params = exports.getEntitlementByIdV2PathEntitlementIdRegExp = exports.ListEntitlementsV2QueryParams = exports.listEntitlementsV2QueryOrderDefault = exports.listEntitlementsV2QueryLimitMax = exports.listEntitlementsV2QueryLimitDefault = exports.listEntitlementsV2QueryOffsetMin = exports.listEntitlementsV2QueryOffsetDefault = exports.listEntitlementsV2QueryPageSizeMax = exports.listEntitlementsV2QueryPageSizeDefault = exports.listEntitlementsV2QueryPageDefault = exports.listEntitlementsV2QueryExcludeInactiveDefault = exports.GetCustomerEntitlementValueV2QueryParams = exports.GetCustomerEntitlementValueV2Params = exports.getCustomerEntitlementValueV2PathEntitlementIdOrFeatureKeyRegExp = exports.getCustomerEntitlementValueV2PathEntitlementIdOrFeatureKeyMax = exports.getCustomerEntitlementValueV2PathCustomerIdOrKeyTwoMax = exports.getCustomerEntitlementValueV2PathCustomerIdOrKeyOneRegExp = exports.ResetCustomerEntitlementUsageV2Body = exports.ResetCustomerEntitlementUsageV2Params = exports.resetCustomerEntitlementUsageV2PathEntitlementIdOrFeatureKeyRegExp = exports.resetCustomerEntitlementUsageV2PathEntitlementIdOrFeatureKeyMax = exports.resetCustomerEntitlementUsageV2PathCustomerIdOrKeyTwoMax = exports.resetCustomerEntitlementUsageV2PathCustomerIdOrKeyOneRegExp = exports.OverrideCustomerEntitlementV2Body = exports.overrideCustomerEntitlementV2BodyThreeUsagePeriodOneIntervalOneOneRegExp = exports.overrideCustomerEntitlementV2BodyThreeFeatureIdRegExp = exports.overrideCustomerEntitlementV2BodyThreeFeatureKeyRegExp = void 0;
64
64
  /**
65
65
  * Generated by orval v8.6.2 🍺
66
66
  * Do not edit manually.
@@ -7266,6 +7266,7 @@ exports.createPlanBodyProRatingConfigDefault = {
7266
7266
  enabled: true,
7267
7267
  mode: 'prorate_prices',
7268
7268
  };
7269
+ exports.createPlanBodySettlementModeDefault = 'credit_then_invoice';
7269
7270
  exports.createPlanBodyPhasesItemKeyMax = 64;
7270
7271
  exports.createPlanBodyPhasesItemKeyRegExp = /^[a-z0-9]+(?:_[a-z0-9]+)*$/;
7271
7272
  exports.createPlanBodyPhasesItemNameMax = 256;
@@ -7912,6 +7913,11 @@ exports.CreatePlanBody = zod
7912
7913
  .describe('Configuration for pro-rating behavior.')
7913
7914
  .default(exports.createPlanBodyProRatingConfigDefault)
7914
7915
  .describe('Default pro-rating configuration for subscriptions using this plan.'),
7916
+ settlementMode: zod
7917
+ .enum(['credit_then_invoice', 'credit_only'])
7918
+ .describe('The settlement mode of a plan.\nIt determines how the billing system generates invoices and credits for the subscriptions using this plan.\n- credit_then_invoice: credits from the previous billing period are applied first, then the remaining balance is invoiced. This is the default and most common settlement mode.\n- credit_only: only credits from the previous billing period are generated and applied. No invoices are generated for the subscription.')
7919
+ .default(exports.createPlanBodySettlementModeDefault)
7920
+ .describe('The settlement mode of the plan.\nIt determines how the billing system generates invoices and credits for the subscriptions using this plan.\n- credit_then_invoice: credits from the previous billing period are applied first, then the remaining balance is invoiced.\n- credit_only: only credits from the previous billing period are generated and applied. No invoices are generated for the subscription.\nThis is the default and most common settlement mode.'),
7915
7921
  })
7916
7922
  .describe('Resource create operation model.');
7917
7923
  /**
@@ -7945,6 +7951,7 @@ exports.updatePlanBodyProRatingConfigDefault = {
7945
7951
  enabled: true,
7946
7952
  mode: 'prorate_prices',
7947
7953
  };
7954
+ exports.updatePlanBodySettlementModeDefault = 'credit_then_invoice';
7948
7955
  exports.updatePlanBodyPhasesItemKeyMax = 64;
7949
7956
  exports.updatePlanBodyPhasesItemKeyRegExp = /^[a-z0-9]+(?:_[a-z0-9]+)*$/;
7950
7957
  exports.updatePlanBodyPhasesItemNameMax = 256;
@@ -8577,6 +8584,11 @@ exports.UpdatePlanBody = zod
8577
8584
  .describe('Configuration for pro-rating behavior.')
8578
8585
  .default(exports.updatePlanBodyProRatingConfigDefault)
8579
8586
  .describe('Default pro-rating configuration for subscriptions using this plan.'),
8587
+ settlementMode: zod
8588
+ .enum(['credit_then_invoice', 'credit_only'])
8589
+ .describe('The settlement mode of a plan.\nIt determines how the billing system generates invoices and credits for the subscriptions using this plan.\n- credit_then_invoice: credits from the previous billing period are applied first, then the remaining balance is invoiced. This is the default and most common settlement mode.\n- credit_only: only credits from the previous billing period are generated and applied. No invoices are generated for the subscription.')
8590
+ .default(exports.updatePlanBodySettlementModeDefault)
8591
+ .describe('The settlement mode of the plan.\nIt determines how the billing system generates invoices and credits for the subscriptions using this plan.\n- credit_then_invoice: credits from the previous billing period are applied first, then the remaining balance is invoiced.\n- credit_only: only credits from the previous billing period are generated and applied. No invoices are generated for the subscription.\nThis is the default and most common settlement mode.'),
8580
8592
  })
8581
8593
  .describe('Resource update operation model.');
8582
8594
  /**
@@ -9886,6 +9898,7 @@ exports.createSubscriptionBodyTwoCustomPlanOneOneProRatingConfigDefault = {
9886
9898
  enabled: true,
9887
9899
  mode: 'prorate_prices',
9888
9900
  };
9901
+ exports.createSubscriptionBodyTwoCustomPlanOneOneSettlementModeDefault = 'credit_then_invoice';
9889
9902
  exports.createSubscriptionBodyTwoCustomPlanOneOnePhasesItemKeyMax = 64;
9890
9903
  exports.createSubscriptionBodyTwoCustomPlanOneOnePhasesItemKeyRegExp = /^[a-z0-9]+(?:_[a-z0-9]+)*$/;
9891
9904
  exports.createSubscriptionBodyTwoCustomPlanOneOnePhasesItemNameMax = 256;
@@ -9996,6 +10009,11 @@ exports.CreateSubscriptionBody = zod
9996
10009
  })
9997
10010
  .describe('References an exact plan defaulting to the current active version.')
9998
10011
  .describe('The plan reference to change to.'),
10012
+ settlementMode: zod
10013
+ .enum(['credit_then_invoice', 'credit_only'])
10014
+ .describe('The settlement mode of a plan.\nIt determines how the billing system generates invoices and credits for the subscriptions using this plan.\n- credit_then_invoice: credits from the previous billing period are applied first, then the remaining balance is invoiced. This is the default and most common settlement mode.\n- credit_only: only credits from the previous billing period are generated and applied. No invoices are generated for the subscription.')
10015
+ .optional()
10016
+ .describe('The settlement mode of the subscription.'),
9999
10017
  startingPhase: zod.coerce
10000
10018
  .string()
10001
10019
  .min(1)
@@ -10622,6 +10640,11 @@ exports.CreateSubscriptionBody = zod
10622
10640
  .describe('Configuration for pro-rating behavior.')
10623
10641
  .default(exports.createSubscriptionBodyTwoCustomPlanOneOneProRatingConfigDefault)
10624
10642
  .describe('Default pro-rating configuration for subscriptions using this plan.'),
10643
+ settlementMode: zod
10644
+ .enum(['credit_then_invoice', 'credit_only'])
10645
+ .describe('The settlement mode of a plan.\nIt determines how the billing system generates invoices and credits for the subscriptions using this plan.\n- credit_then_invoice: credits from the previous billing period are applied first, then the remaining balance is invoiced. This is the default and most common settlement mode.\n- credit_only: only credits from the previous billing period are generated and applied. No invoices are generated for the subscription.')
10646
+ .default(exports.createSubscriptionBodyTwoCustomPlanOneOneSettlementModeDefault)
10647
+ .describe('The settlement mode of the plan.\nIt determines how the billing system generates invoices and credits for the subscriptions using this plan.\n- credit_then_invoice: credits from the previous billing period are applied first, then the remaining balance is invoiced.\n- credit_only: only credits from the previous billing period are generated and applied. No invoices are generated for the subscription.\nThis is the default and most common settlement mode.'),
10625
10648
  })
10626
10649
  .describe('The template for omitting properties.')
10627
10650
  .describe('Plan input for custom subscription creation (without key and version).')
@@ -11529,6 +11552,7 @@ exports.changeSubscriptionBodyTwoCustomPlanOneOneProRatingConfigDefault = {
11529
11552
  enabled: true,
11530
11553
  mode: 'prorate_prices',
11531
11554
  };
11555
+ exports.changeSubscriptionBodyTwoCustomPlanOneOneSettlementModeDefault = 'credit_then_invoice';
11532
11556
  exports.changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemKeyMax = 64;
11533
11557
  exports.changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemKeyRegExp = /^[a-z0-9]+(?:_[a-z0-9]+)*$/;
11534
11558
  exports.changeSubscriptionBodyTwoCustomPlanOneOnePhasesItemNameMax = 256;
@@ -12239,6 +12263,11 @@ exports.ChangeSubscriptionBody = zod
12239
12263
  .describe('Configuration for pro-rating behavior.')
12240
12264
  .default(exports.changeSubscriptionBodyTwoCustomPlanOneOneProRatingConfigDefault)
12241
12265
  .describe('Default pro-rating configuration for subscriptions using this plan.'),
12266
+ settlementMode: zod
12267
+ .enum(['credit_then_invoice', 'credit_only'])
12268
+ .describe('The settlement mode of a plan.\nIt determines how the billing system generates invoices and credits for the subscriptions using this plan.\n- credit_then_invoice: credits from the previous billing period are applied first, then the remaining balance is invoiced. This is the default and most common settlement mode.\n- credit_only: only credits from the previous billing period are generated and applied. No invoices are generated for the subscription.')
12269
+ .default(exports.changeSubscriptionBodyTwoCustomPlanOneOneSettlementModeDefault)
12270
+ .describe('The settlement mode of the plan.\nIt determines how the billing system generates invoices and credits for the subscriptions using this plan.\n- credit_then_invoice: credits from the previous billing period are applied first, then the remaining balance is invoiced.\n- credit_only: only credits from the previous billing period are generated and applied. No invoices are generated for the subscription.\nThis is the default and most common settlement mode.'),
12242
12271
  })
12243
12272
  .describe('The template for omitting properties.')
12244
12273
  .describe('Plan input for custom subscription creation (without key and version).')