@openmeter/sdk 1.0.0-beta-bb4645e4fad7 → 1.0.0-beta-68a41dc5f0f6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/src/client/schemas.d.cts +0 -239
- package/dist/cjs/src/zod/index.cjs +17 -71
- package/dist/cjs/src/zod/index.cjs.map +1 -1
- package/dist/cjs/src/zod/index.d.cts +0 -29
- package/dist/src/client/schemas.d.ts +0 -239
- package/dist/src/zod/index.d.ts +0 -29
- package/dist/src/zod/index.js +0 -54
- package/dist/src/zod/index.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
|
@@ -1011,29 +1011,6 @@ export interface paths {
|
|
|
1011
1011
|
patch?: never;
|
|
1012
1012
|
trace?: never;
|
|
1013
1013
|
};
|
|
1014
|
-
'/api/v1/features/{featureId}/cost': {
|
|
1015
|
-
parameters: {
|
|
1016
|
-
query?: never;
|
|
1017
|
-
header?: never;
|
|
1018
|
-
path?: never;
|
|
1019
|
-
cookie?: never;
|
|
1020
|
-
};
|
|
1021
|
-
/**
|
|
1022
|
-
* Query feature cost
|
|
1023
|
-
* @description Query the cost of a feature based on its unit cost configuration and underlying meter usage.
|
|
1024
|
-
* For features with manual unit cost, the cost is usage × fixed amount.
|
|
1025
|
-
* For features with LLM unit cost, the cost is resolved per row from the LLM cost database.
|
|
1026
|
-
* The feature must have a meter and unit cost configured.
|
|
1027
|
-
*/
|
|
1028
|
-
get: operations['queryFeatureCost'];
|
|
1029
|
-
put?: never;
|
|
1030
|
-
post?: never;
|
|
1031
|
-
delete?: never;
|
|
1032
|
-
options?: never;
|
|
1033
|
-
head?: never;
|
|
1034
|
-
patch?: never;
|
|
1035
|
-
trace?: never;
|
|
1036
|
-
};
|
|
1037
1014
|
'/api/v1/grants': {
|
|
1038
1015
|
parameters: {
|
|
1039
1016
|
query?: never;
|
|
@@ -6024,58 +6001,6 @@ export interface components {
|
|
|
6024
6001
|
*/
|
|
6025
6002
|
readonly id: string;
|
|
6026
6003
|
};
|
|
6027
|
-
/** @description Result of a feature cost query. */
|
|
6028
|
-
FeatureCostQueryResult: {
|
|
6029
|
-
/**
|
|
6030
|
-
* Format: date-time
|
|
6031
|
-
* @description Start of the queried period.
|
|
6032
|
-
* @example 2023-01-01T01:01:01.001Z
|
|
6033
|
-
*/
|
|
6034
|
-
from?: Date;
|
|
6035
|
-
/**
|
|
6036
|
-
* Format: date-time
|
|
6037
|
-
* @description End of the queried period.
|
|
6038
|
-
* @example 2023-01-01T01:01:01.001Z
|
|
6039
|
-
*/
|
|
6040
|
-
to?: Date;
|
|
6041
|
-
/** @description The window size that the cost is aggregated. */
|
|
6042
|
-
windowSize?: components['schemas']['WindowSize'];
|
|
6043
|
-
/** @description The currency code of the cost amounts. */
|
|
6044
|
-
currency: components['schemas']['CurrencyCode'];
|
|
6045
|
-
/** @description The cost data rows. */
|
|
6046
|
-
data: components['schemas']['FeatureCostQueryRow'][];
|
|
6047
|
-
};
|
|
6048
|
-
/** @description A row in the result of a feature cost query. */
|
|
6049
|
-
FeatureCostQueryRow: {
|
|
6050
|
-
/** @description The metered usage value for the period. */
|
|
6051
|
-
usage: components['schemas']['Numeric'];
|
|
6052
|
-
/** @description The computed cost amount (usage × unit cost). Null when pricing is not available for the group-by combination. */
|
|
6053
|
-
cost: (string & components['schemas']['Numeric']) | null;
|
|
6054
|
-
/** @description The currency code of the cost amount. */
|
|
6055
|
-
currency: components['schemas']['CurrencyCode'];
|
|
6056
|
-
/** @description Detail message when cost amount is null, explaining why the cost could not be resolved. */
|
|
6057
|
-
detail?: string;
|
|
6058
|
-
/**
|
|
6059
|
-
* Format: date-time
|
|
6060
|
-
* @description The start of the window the value is aggregated over.
|
|
6061
|
-
* @example 2023-01-01T01:01:01.001Z
|
|
6062
|
-
*/
|
|
6063
|
-
windowStart: Date;
|
|
6064
|
-
/**
|
|
6065
|
-
* Format: date-time
|
|
6066
|
-
* @description The end of the window the value is aggregated over.
|
|
6067
|
-
* @example 2023-01-01T01:01:01.001Z
|
|
6068
|
-
*/
|
|
6069
|
-
windowEnd: Date;
|
|
6070
|
-
/** @description The subject the value is aggregated over. */
|
|
6071
|
-
subject?: string;
|
|
6072
|
-
/** @description The customer ID the value is aggregated over. */
|
|
6073
|
-
customerId?: string;
|
|
6074
|
-
/** @description The group by values the value is aggregated over. */
|
|
6075
|
-
groupBy?: {
|
|
6076
|
-
[key: string]: string | null;
|
|
6077
|
-
};
|
|
6078
|
-
};
|
|
6079
6004
|
/**
|
|
6080
6005
|
* @description Represents a feature that can be enabled or disabled for a plan.
|
|
6081
6006
|
* Used both for product catalog and entitlements.
|
|
@@ -12322,8 +12247,6 @@ export type EventDeliveryAttemptResponse = components['schemas']['EventDeliveryA
|
|
|
12322
12247
|
export type ExpirationDuration = components['schemas']['ExpirationDuration'];
|
|
12323
12248
|
export type ExpirationPeriod = components['schemas']['ExpirationPeriod'];
|
|
12324
12249
|
export type Feature = components['schemas']['Feature'];
|
|
12325
|
-
export type FeatureCostQueryResult = components['schemas']['FeatureCostQueryResult'];
|
|
12326
|
-
export type FeatureCostQueryRow = components['schemas']['FeatureCostQueryRow'];
|
|
12327
12250
|
export type FeatureCreateInputs = components['schemas']['FeatureCreateInputs'];
|
|
12328
12251
|
export type FeatureLlmUnitCost = components['schemas']['FeatureLLMUnitCost'];
|
|
12329
12252
|
export type FeatureLlmUnitCostPricing = components['schemas']['FeatureLLMUnitCostPricing'];
|
|
@@ -18617,168 +18540,6 @@ export interface operations {
|
|
|
18617
18540
|
};
|
|
18618
18541
|
};
|
|
18619
18542
|
};
|
|
18620
|
-
queryFeatureCost: {
|
|
18621
|
-
parameters: {
|
|
18622
|
-
query?: {
|
|
18623
|
-
/**
|
|
18624
|
-
* @description Client ID
|
|
18625
|
-
* Useful to track progress of a query.
|
|
18626
|
-
*/
|
|
18627
|
-
clientId?: components['parameters']['MeterQuery.clientId'];
|
|
18628
|
-
/**
|
|
18629
|
-
* @description Start date-time in RFC 3339 format.
|
|
18630
|
-
*
|
|
18631
|
-
* Inclusive.
|
|
18632
|
-
*
|
|
18633
|
-
* For example: ?from=2025-01-01T00%3A00%3A00.000Z
|
|
18634
|
-
*/
|
|
18635
|
-
from?: components['parameters']['MeterQuery.from'];
|
|
18636
|
-
/**
|
|
18637
|
-
* @description End date-time in RFC 3339 format.
|
|
18638
|
-
*
|
|
18639
|
-
* Inclusive.
|
|
18640
|
-
*
|
|
18641
|
-
* For example: ?to=2025-02-01T00%3A00%3A00.000Z
|
|
18642
|
-
*/
|
|
18643
|
-
to?: components['parameters']['MeterQuery.to'];
|
|
18644
|
-
/**
|
|
18645
|
-
* @description If not specified, a single usage aggregate will be returned for the entirety of the specified period for each subject and group.
|
|
18646
|
-
*
|
|
18647
|
-
* For example: ?windowSize=DAY
|
|
18648
|
-
*/
|
|
18649
|
-
windowSize?: components['parameters']['MeterQuery.windowSize'];
|
|
18650
|
-
/**
|
|
18651
|
-
* @description The value is the name of the time zone as defined in the IANA Time Zone Database (http://www.iana.org/time-zones).
|
|
18652
|
-
* If not specified, the UTC timezone will be used.
|
|
18653
|
-
*
|
|
18654
|
-
* For example: ?windowTimeZone=UTC
|
|
18655
|
-
*/
|
|
18656
|
-
windowTimeZone?: components['parameters']['MeterQuery.windowTimeZone'];
|
|
18657
|
-
/**
|
|
18658
|
-
* @description Filtering by multiple subjects.
|
|
18659
|
-
*
|
|
18660
|
-
* For example: ?subject=subject-1&subject=subject-2
|
|
18661
|
-
*/
|
|
18662
|
-
subject?: components['parameters']['MeterQuery.subject'];
|
|
18663
|
-
/**
|
|
18664
|
-
* @description Filtering by multiple customers.
|
|
18665
|
-
*
|
|
18666
|
-
* For example: ?filterCustomerId=customer-1&filterCustomerId=customer-2
|
|
18667
|
-
*/
|
|
18668
|
-
filterCustomerId?: components['parameters']['MeterQuery.filterCustomerId'];
|
|
18669
|
-
/**
|
|
18670
|
-
* @deprecated
|
|
18671
|
-
* @description Simple filter for group bys with exact match.
|
|
18672
|
-
*
|
|
18673
|
-
* For example: ?filterGroupBy[vendor]=openai&filterGroupBy[model]=gpt-4-turbo
|
|
18674
|
-
*
|
|
18675
|
-
* ⚠️ __Deprecated__: Use `advancedMeterGroupByFilters` instead
|
|
18676
|
-
*/
|
|
18677
|
-
filterGroupBy?: components['parameters']['MeterQuery.filterGroupBy'];
|
|
18678
|
-
/**
|
|
18679
|
-
* @description Optional advanced meter group by filters.
|
|
18680
|
-
* You can use this to filter for values of the meter groupBy fields.
|
|
18681
|
-
*/
|
|
18682
|
-
advancedMeterGroupByFilters?: components['parameters']['MeterQuery.advancedMeterGroupByFilters'];
|
|
18683
|
-
/**
|
|
18684
|
-
* @description If not specified a single aggregate will be returned for each subject and time window.
|
|
18685
|
-
* `subject` is a reserved group by value.
|
|
18686
|
-
*
|
|
18687
|
-
* For example: ?groupBy=subject&groupBy=model
|
|
18688
|
-
*/
|
|
18689
|
-
groupBy?: components['parameters']['MeterQuery.groupBy'];
|
|
18690
|
-
};
|
|
18691
|
-
header?: never;
|
|
18692
|
-
path: {
|
|
18693
|
-
featureId: string;
|
|
18694
|
-
};
|
|
18695
|
-
cookie?: never;
|
|
18696
|
-
};
|
|
18697
|
-
requestBody?: never;
|
|
18698
|
-
responses: {
|
|
18699
|
-
/** @description The request has succeeded. */
|
|
18700
|
-
200: {
|
|
18701
|
-
headers: {
|
|
18702
|
-
[name: string]: unknown;
|
|
18703
|
-
};
|
|
18704
|
-
content: {
|
|
18705
|
-
'application/json': components['schemas']['FeatureCostQueryResult'];
|
|
18706
|
-
};
|
|
18707
|
-
};
|
|
18708
|
-
/** @description The server cannot or will not process the request due to something that is perceived to be a client error (e.g., malformed request syntax, invalid request message framing, or deceptive request routing). */
|
|
18709
|
-
400: {
|
|
18710
|
-
headers: {
|
|
18711
|
-
[name: string]: unknown;
|
|
18712
|
-
};
|
|
18713
|
-
content: {
|
|
18714
|
-
'application/problem+json': components['schemas']['BadRequestProblemResponse'];
|
|
18715
|
-
};
|
|
18716
|
-
};
|
|
18717
|
-
/** @description The request has not been applied because it lacks valid authentication credentials for the target resource. */
|
|
18718
|
-
401: {
|
|
18719
|
-
headers: {
|
|
18720
|
-
[name: string]: unknown;
|
|
18721
|
-
};
|
|
18722
|
-
content: {
|
|
18723
|
-
'application/problem+json': components['schemas']['UnauthorizedProblemResponse'];
|
|
18724
|
-
};
|
|
18725
|
-
};
|
|
18726
|
-
/** @description The server understood the request but refuses to authorize it. */
|
|
18727
|
-
403: {
|
|
18728
|
-
headers: {
|
|
18729
|
-
[name: string]: unknown;
|
|
18730
|
-
};
|
|
18731
|
-
content: {
|
|
18732
|
-
'application/problem+json': components['schemas']['ForbiddenProblemResponse'];
|
|
18733
|
-
};
|
|
18734
|
-
};
|
|
18735
|
-
/** @description The origin server did not find a current representation for the target resource or is not willing to disclose that one exists. */
|
|
18736
|
-
404: {
|
|
18737
|
-
headers: {
|
|
18738
|
-
[name: string]: unknown;
|
|
18739
|
-
};
|
|
18740
|
-
content: {
|
|
18741
|
-
'application/problem+json': components['schemas']['NotFoundProblemResponse'];
|
|
18742
|
-
};
|
|
18743
|
-
};
|
|
18744
|
-
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
18745
|
-
412: {
|
|
18746
|
-
headers: {
|
|
18747
|
-
[name: string]: unknown;
|
|
18748
|
-
};
|
|
18749
|
-
content: {
|
|
18750
|
-
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
18751
|
-
};
|
|
18752
|
-
};
|
|
18753
|
-
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
18754
|
-
500: {
|
|
18755
|
-
headers: {
|
|
18756
|
-
[name: string]: unknown;
|
|
18757
|
-
};
|
|
18758
|
-
content: {
|
|
18759
|
-
'application/problem+json': components['schemas']['InternalServerErrorProblemResponse'];
|
|
18760
|
-
};
|
|
18761
|
-
};
|
|
18762
|
-
/** @description The server is currently unable to handle the request due to a temporary overload or scheduled maintenance, which will likely be alleviated after some delay. */
|
|
18763
|
-
503: {
|
|
18764
|
-
headers: {
|
|
18765
|
-
[name: string]: unknown;
|
|
18766
|
-
};
|
|
18767
|
-
content: {
|
|
18768
|
-
'application/problem+json': components['schemas']['ServiceUnavailableProblemResponse'];
|
|
18769
|
-
};
|
|
18770
|
-
};
|
|
18771
|
-
/** @description An unexpected error response. */
|
|
18772
|
-
default: {
|
|
18773
|
-
headers: {
|
|
18774
|
-
[name: string]: unknown;
|
|
18775
|
-
};
|
|
18776
|
-
content: {
|
|
18777
|
-
'application/problem+json': components['schemas']['UnexpectedProblemResponse'];
|
|
18778
|
-
};
|
|
18779
|
-
};
|
|
18780
|
-
};
|
|
18781
|
-
};
|
|
18782
18543
|
listGrants: {
|
|
18783
18544
|
parameters: {
|
|
18784
18545
|
query?: {
|
|
@@ -44,23 +44,23 @@ exports.createBillingProfileBodySupplierOneTaxIdOneCodeOneMax = exports.createBi
|
|
|
44
44
|
exports.createCustomerBodyUsageAttributionOneSubjectKeysMin = exports.createCustomerBodyKeyMax = exports.createCustomerBodyDescriptionMax = exports.createCustomerBodyNameMax = exports.UpdateBillingProfileBody = exports.updateBillingProfileBodyWorkflowOneTaxOneEnforcedDefault = exports.updateBillingProfileBodyWorkflowOneTaxOneEnabledDefault = exports.updateBillingProfileBodyWorkflowOnePaymentOneCollectionMethodDefault = exports.updateBillingProfileBodyWorkflowOneInvoicingOneDefaultTaxConfigOneStripeOneCodeRegExp = exports.updateBillingProfileBodyWorkflowOneInvoicingOneProgressiveBillingDefault = exports.updateBillingProfileBodyWorkflowOneInvoicingOneDueAfterDefault = exports.updateBillingProfileBodyWorkflowOneInvoicingOneDraftPeriodDefault = exports.updateBillingProfileBodyWorkflowOneInvoicingOneAutoAdvanceDefault = exports.updateBillingProfileBodyWorkflowOneCollectionOneIntervalDefault = exports.updateBillingProfileBodyWorkflowOneCollectionOneAlignmentDefault = exports.updateBillingProfileBodyWorkflowOneCollectionOneAlignmentOneTwoRecurringPeriodOneIntervalOneOneRegExp = exports.updateBillingProfileBodySupplierOneAddressesMax = exports.updateBillingProfileBodySupplierOneAddressesItemCountryOneRegExp = exports.updateBillingProfileBodySupplierOneAddressesItemCountryOneMax = exports.updateBillingProfileBodySupplierOneAddressesItemCountryOneMin = exports.updateBillingProfileBodySupplierOneTaxIdOneCodeOneMax = exports.updateBillingProfileBodySupplierOneKeyMax = exports.updateBillingProfileBodyDescriptionMax = exports.updateBillingProfileBodyNameMax = exports.UpdateBillingProfileParams = exports.updateBillingProfilePathIdRegExp = exports.GetBillingProfileQueryParams = exports.GetBillingProfileParams = exports.getBillingProfilePathIdRegExp = exports.DeleteBillingProfileParams = exports.deleteBillingProfilePathIdRegExp = exports.CreateBillingProfileBody = exports.createBillingProfileBodyAppsOnePaymentRegExp = exports.createBillingProfileBodyAppsOneInvoicingRegExp = exports.createBillingProfileBodyAppsOneTaxRegExp = exports.createBillingProfileBodyWorkflowOneTaxOneEnforcedDefault = exports.createBillingProfileBodyWorkflowOneTaxOneEnabledDefault = exports.createBillingProfileBodyWorkflowOnePaymentOneCollectionMethodDefault = exports.createBillingProfileBodyWorkflowOneInvoicingOneDefaultTaxConfigOneStripeOneCodeRegExp = exports.createBillingProfileBodyWorkflowOneInvoicingOneProgressiveBillingDefault = exports.createBillingProfileBodyWorkflowOneInvoicingOneDueAfterDefault = exports.createBillingProfileBodyWorkflowOneInvoicingOneDraftPeriodDefault = exports.createBillingProfileBodyWorkflowOneInvoicingOneAutoAdvanceDefault = exports.createBillingProfileBodyWorkflowOneCollectionOneIntervalDefault = exports.createBillingProfileBodyWorkflowOneCollectionOneAlignmentDefault = exports.createBillingProfileBodyWorkflowOneCollectionOneAlignmentOneTwoRecurringPeriodOneIntervalOneOneRegExp = exports.createBillingProfileBodySupplierOneAddressesMax = exports.createBillingProfileBodySupplierOneAddressesItemCountryOneRegExp = exports.createBillingProfileBodySupplierOneAddressesItemCountryOneMax = exports.createBillingProfileBodySupplierOneAddressesItemCountryOneMin = void 0;
|
|
45
45
|
exports.upsertCustomerAppDataBodyTwoAppOneNameMax = exports.upsertCustomerAppDataBodyTwoAppOneIdRegExp = exports.upsertCustomerAppDataBodyOneIdRegExp = exports.UpsertCustomerAppDataParams = exports.upsertCustomerAppDataPathCustomerIdOrKeyTwoMax = exports.upsertCustomerAppDataPathCustomerIdOrKeyOneRegExp = exports.ListCustomerAppDataQueryParams = exports.listCustomerAppDataQueryPageSizeMax = exports.listCustomerAppDataQueryPageSizeDefault = exports.listCustomerAppDataQueryPageDefault = exports.ListCustomerAppDataParams = exports.listCustomerAppDataPathCustomerIdOrKeyTwoMax = exports.listCustomerAppDataPathCustomerIdOrKeyOneRegExp = exports.GetCustomerAccessParams = exports.getCustomerAccessPathCustomerIdOrKeyTwoMax = exports.getCustomerAccessPathCustomerIdOrKeyOneRegExp = exports.DeleteCustomerParams = exports.deleteCustomerPathCustomerIdOrKeyTwoMax = exports.deleteCustomerPathCustomerIdOrKeyOneRegExp = exports.UpdateCustomerBody = exports.updateCustomerBodyBillingAddressOneCountryOneRegExp = exports.updateCustomerBodyBillingAddressOneCountryOneMax = exports.updateCustomerBodyBillingAddressOneCountryOneMin = exports.updateCustomerBodyCurrencyOneRegExp = exports.updateCustomerBodyCurrencyOneMax = exports.updateCustomerBodyCurrencyOneMin = exports.updateCustomerBodyUsageAttributionOneSubjectKeysMin = exports.updateCustomerBodyKeyMax = exports.updateCustomerBodyDescriptionMax = exports.updateCustomerBodyNameMax = exports.UpdateCustomerParams = exports.updateCustomerPathCustomerIdOrKeyTwoMax = exports.updateCustomerPathCustomerIdOrKeyOneRegExp = exports.GetCustomerQueryParams = exports.GetCustomerParams = exports.getCustomerPathCustomerIdOrKeyTwoMax = exports.getCustomerPathCustomerIdOrKeyOneRegExp = exports.ListCustomersQueryParams = exports.listCustomersQueryIncludeDeletedDefault = exports.listCustomersQueryOrderDefault = exports.listCustomersQueryPageSizeMax = exports.listCustomersQueryPageSizeDefault = exports.listCustomersQueryPageDefault = exports.CreateCustomerBody = exports.createCustomerBodyBillingAddressOneCountryOneRegExp = exports.createCustomerBodyBillingAddressOneCountryOneMax = exports.createCustomerBodyBillingAddressOneCountryOneMin = exports.createCustomerBodyCurrencyOneRegExp = exports.createCustomerBodyCurrencyOneMax = exports.createCustomerBodyCurrencyOneMin = void 0;
|
|
46
46
|
exports.listEntitlementsQueryOrderDefault = exports.listEntitlementsQueryLimitMax = exports.listEntitlementsQueryLimitDefault = exports.listEntitlementsQueryOffsetMin = exports.listEntitlementsQueryOffsetDefault = exports.listEntitlementsQueryPageSizeMax = exports.listEntitlementsQueryPageSizeDefault = exports.listEntitlementsQueryPageDefault = exports.listEntitlementsQueryExcludeInactiveDefault = exports.ListCustomerSubscriptionsQueryParams = exports.listCustomerSubscriptionsQueryPageSizeMax = exports.listCustomerSubscriptionsQueryPageSizeDefault = exports.listCustomerSubscriptionsQueryPageDefault = exports.listCustomerSubscriptionsQueryOrderDefault = exports.ListCustomerSubscriptionsParams = exports.listCustomerSubscriptionsPathCustomerIdOrKeyTwoMax = exports.listCustomerSubscriptionsPathCustomerIdOrKeyOneRegExp = exports.CreateCustomerStripePortalSessionBody = exports.CreateCustomerStripePortalSessionParams = exports.createCustomerStripePortalSessionPathCustomerIdOrKeyTwoMax = exports.createCustomerStripePortalSessionPathCustomerIdOrKeyOneRegExp = exports.UpsertCustomerStripeAppDataBody = exports.UpsertCustomerStripeAppDataParams = exports.upsertCustomerStripeAppDataPathCustomerIdOrKeyTwoMax = exports.upsertCustomerStripeAppDataPathCustomerIdOrKeyOneRegExp = exports.GetCustomerStripeAppDataParams = exports.getCustomerStripeAppDataPathCustomerIdOrKeyTwoMax = exports.getCustomerStripeAppDataPathCustomerIdOrKeyOneRegExp = exports.GetCustomerEntitlementValueQueryParams = exports.GetCustomerEntitlementValueParams = exports.getCustomerEntitlementValuePathFeatureKeyRegExp = exports.getCustomerEntitlementValuePathFeatureKeyMax = exports.getCustomerEntitlementValuePathCustomerIdOrKeyTwoMax = exports.getCustomerEntitlementValuePathCustomerIdOrKeyOneRegExp = exports.DeleteCustomerAppDataParams = exports.deleteCustomerAppDataPathAppIdRegExp = exports.deleteCustomerAppDataPathCustomerIdOrKeyTwoMax = exports.deleteCustomerAppDataPathCustomerIdOrKeyOneRegExp = exports.UpsertCustomerAppDataBody = exports.UpsertCustomerAppDataBodyItem = exports.upsertCustomerAppDataBodyThreeIdRegExp = exports.upsertCustomerAppDataBodyThreeAppOneListingOneCapabilitiesItemKeyRegExp = exports.upsertCustomerAppDataBodyThreeAppOneListingOneCapabilitiesItemKeyMax = exports.upsertCustomerAppDataBodyThreeAppOneDescriptionMax = exports.upsertCustomerAppDataBodyThreeAppOneNameMax = exports.upsertCustomerAppDataBodyThreeAppOneIdRegExp = exports.upsertCustomerAppDataBodyTwoIdRegExp = exports.upsertCustomerAppDataBodyTwoAppOneListingOneCapabilitiesItemKeyRegExp = exports.upsertCustomerAppDataBodyTwoAppOneListingOneCapabilitiesItemKeyMax = exports.upsertCustomerAppDataBodyTwoAppOneDescriptionMax = void 0;
|
|
47
|
-
exports.
|
|
48
|
-
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 =
|
|
49
|
-
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 =
|
|
50
|
-
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 =
|
|
51
|
-
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 =
|
|
52
|
-
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 =
|
|
53
|
-
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 =
|
|
54
|
-
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 =
|
|
55
|
-
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 =
|
|
56
|
-
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 =
|
|
57
|
-
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 =
|
|
58
|
-
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 =
|
|
59
|
-
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 =
|
|
60
|
-
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 =
|
|
61
|
-
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 =
|
|
62
|
-
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 =
|
|
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 =
|
|
47
|
+
exports.listMarketplaceListingsQueryPageSizeMax = exports.listMarketplaceListingsQueryPageSizeDefault = exports.listMarketplaceListingsQueryPageDefault = exports.GetProgressParams = exports.VoidGrantQueryParams = exports.VoidGrantParams = exports.ListGrantsQueryParams = exports.listGrantsQueryOrderDefault = exports.listGrantsQueryLimitMax = exports.listGrantsQueryLimitDefault = exports.listGrantsQueryOffsetMin = exports.listGrantsQueryOffsetDefault = exports.listGrantsQueryPageSizeMax = exports.listGrantsQueryPageSizeDefault = exports.listGrantsQueryPageDefault = exports.listGrantsQueryIncludeDeletedDefault = exports.DeleteFeatureParams = exports.GetFeatureParams = exports.CreateFeatureBody = exports.createFeatureBodyUnitCostOneTwoPricingOneCacheWritePerTokenOneRegExp = exports.createFeatureBodyUnitCostOneTwoPricingOneReasoningPerTokenOneRegExp = exports.createFeatureBodyUnitCostOneTwoPricingOneCacheReadPerTokenOneRegExp = exports.createFeatureBodyUnitCostOneTwoPricingOneOutputPerTokenOneRegExp = exports.createFeatureBodyUnitCostOneTwoPricingOneInputPerTokenOneRegExp = exports.createFeatureBodyUnitCostOneOneAmountOneRegExp = exports.createFeatureBodyMeterSlugRegExp = exports.createFeatureBodyMeterSlugMax = exports.createFeatureBodyKeyRegExp = exports.createFeatureBodyKeyMax = exports.ListFeaturesQueryParams = exports.listFeaturesQueryOrderDefault = exports.listFeaturesQueryLimitMax = exports.listFeaturesQueryLimitDefault = exports.listFeaturesQueryOffsetMin = exports.listFeaturesQueryOffsetDefault = exports.listFeaturesQueryPageSizeMax = exports.listFeaturesQueryPageSizeDefault = exports.listFeaturesQueryPageDefault = exports.listFeaturesQueryIncludeArchivedDefault = exports.IngestEventsBody = exports.ingestEventsBodyTwoItemSpecversionDefault = exports.ingestEventsBodyOneSpecversionDefault = exports.ListEventsQueryParams = exports.listEventsQueryLimitMax = exports.listEventsQueryLimitDefault = exports.listEventsQueryCustomerIdItemRegExp = exports.listEventsQueryClientIdMax = exports.GetEntitlementByIdParams = exports.getEntitlementByIdPathEntitlementIdRegExp = exports.ListEntitlementsQueryParams = void 0;
|
|
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
|
+
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
|
+
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;
|
|
64
64
|
/**
|
|
65
65
|
* Generated by orval v8.2.0 🍺
|
|
66
66
|
* Do not edit manually.
|
|
@@ -5822,60 +5822,6 @@ This means, if you want to create a new feature with the same key, and then crea
|
|
|
5822
5822
|
exports.DeleteFeatureParams = zod.object({
|
|
5823
5823
|
featureId: zod.coerce.string(),
|
|
5824
5824
|
});
|
|
5825
|
-
/**
|
|
5826
|
-
* Query the cost of a feature based on its unit cost configuration and underlying meter usage.
|
|
5827
|
-
For features with manual unit cost, the cost is usage × fixed amount.
|
|
5828
|
-
For features with LLM unit cost, the cost is resolved per row from the LLM cost database.
|
|
5829
|
-
The feature must have a meter and unit cost configured.
|
|
5830
|
-
* @summary Query feature cost
|
|
5831
|
-
*/
|
|
5832
|
-
exports.QueryFeatureCostParams = zod.object({
|
|
5833
|
-
featureId: zod.coerce.string(),
|
|
5834
|
-
});
|
|
5835
|
-
exports.queryFeatureCostQueryClientIdMax = 36;
|
|
5836
|
-
exports.queryFeatureCostQueryWindowTimeZoneDefault = 'UTC';
|
|
5837
|
-
exports.queryFeatureCostQueryFilterCustomerIdMax = 100;
|
|
5838
|
-
exports.QueryFeatureCostQueryParams = zod.object({
|
|
5839
|
-
clientId: zod.coerce
|
|
5840
|
-
.string()
|
|
5841
|
-
.min(1)
|
|
5842
|
-
.max(exports.queryFeatureCostQueryClientIdMax)
|
|
5843
|
-
.optional()
|
|
5844
|
-
.describe('Client ID\nUseful to track progress of a query.'),
|
|
5845
|
-
filterCustomerId: zod
|
|
5846
|
-
.array(zod.coerce.string())
|
|
5847
|
-
.max(exports.queryFeatureCostQueryFilterCustomerIdMax)
|
|
5848
|
-
.optional()
|
|
5849
|
-
.describe('Filtering by multiple customers.\n\nFor example: ?filterCustomerId=customer-1&filterCustomerId=customer-2'),
|
|
5850
|
-
filterGroupBy: zod
|
|
5851
|
-
.record(zod.string(), zod.coerce.string())
|
|
5852
|
-
.optional()
|
|
5853
|
-
.describe('Simple filter for group bys with exact match.\n\nFor example: ?filterGroupBy[vendor]=openai&filterGroupBy[model]=gpt-4-turbo\n\n⚠️ __Deprecated__: Use `advancedMeterGroupByFilters` instead'),
|
|
5854
|
-
from: zod.coerce
|
|
5855
|
-
.date()
|
|
5856
|
-
.optional()
|
|
5857
|
-
.describe('Start date-time in RFC 3339 format.\n\nInclusive.\n\nFor example: ?from=2025-01-01T00%3A00%3A00.000Z'),
|
|
5858
|
-
groupBy: zod
|
|
5859
|
-
.array(zod.coerce.string())
|
|
5860
|
-
.optional()
|
|
5861
|
-
.describe('If not specified a single aggregate will be returned for each subject and time window.\n`subject` is a reserved group by value.\n\nFor example: ?groupBy=subject&groupBy=model'),
|
|
5862
|
-
subject: zod
|
|
5863
|
-
.array(zod.coerce.string())
|
|
5864
|
-
.optional()
|
|
5865
|
-
.describe('Filtering by multiple subjects.\n\nFor example: ?subject=subject-1&subject=subject-2'),
|
|
5866
|
-
to: zod.coerce
|
|
5867
|
-
.date()
|
|
5868
|
-
.optional()
|
|
5869
|
-
.describe('End date-time in RFC 3339 format.\n\nInclusive.\n\nFor example: ?to=2025-02-01T00%3A00%3A00.000Z'),
|
|
5870
|
-
windowSize: zod
|
|
5871
|
-
.enum(['MINUTE', 'HOUR', 'DAY', 'MONTH'])
|
|
5872
|
-
.optional()
|
|
5873
|
-
.describe('If not specified, a single usage aggregate will be returned for the entirety of the specified period for each subject and group.\n\nFor example: ?windowSize=DAY'),
|
|
5874
|
-
windowTimeZone: zod.coerce
|
|
5875
|
-
.string()
|
|
5876
|
-
.default(exports.queryFeatureCostQueryWindowTimeZoneDefault)
|
|
5877
|
-
.describe('The value is the name of the time zone as defined in the IANA Time Zone Database (http://www.iana.org/time-zones).\nIf not specified, the UTC timezone will be used.\n\nFor example: ?windowTimeZone=UTC'),
|
|
5878
|
-
});
|
|
5879
5825
|
/**
|
|
5880
5826
|
* List all grants for all the subjects and entitlements. This endpoint is intended for administrative purposes only.
|
|
5881
5827
|
To fetch the grants of a specific entitlement please use the /api/v1/subjects/{subjectKeyOrID}/entitlements/{entitlementOrFeatureID}/grants endpoint.
|