@openmeter/sdk 1.0.0-beta-b904a10a1f3d → 1.0.0-beta-89ca80a99dcf
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 +134 -4
- package/dist/cjs/src/zod/index.cjs +79 -13
- package/dist/cjs/src/zod/index.d.cts +44 -0
- package/dist/cjs/src/zod/index.js.map +1 -1
- package/dist/cjs/{tsconfig.0224c6c3.tsbuildinfo → tsconfig.5bd66586.tsbuildinfo} +1 -1
- package/dist/cjs/{tsconfig.0ae69fa2.tsbuildinfo → tsconfig.a32ebdee.tsbuildinfo} +1 -1
- package/dist/src/client/schemas.d.ts +134 -4
- package/dist/src/zod/index.d.ts +44 -0
- package/dist/src/zod/index.js +68 -2
- package/dist/src/zod/index.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
|
@@ -6962,6 +6962,17 @@ export interface components {
|
|
|
6962
6962
|
* @enum {string}
|
|
6963
6963
|
*/
|
|
6964
6964
|
NotificationEventDeliveryStatusState: 'SUCCESS' | 'FAILED' | 'SENDING' | 'PENDING';
|
|
6965
|
+
/** @description Base data for any payload with entitlement entitlement value. */
|
|
6966
|
+
NotificationEventEntitlementValuePayloadBase: {
|
|
6967
|
+
/** Entitlement */
|
|
6968
|
+
readonly entitlement: components['schemas']['EntitlementMetered'];
|
|
6969
|
+
/** Feature */
|
|
6970
|
+
readonly feature: components['schemas']['Feature'];
|
|
6971
|
+
/** Subject */
|
|
6972
|
+
readonly subject: components['schemas']['Subject'];
|
|
6973
|
+
/** Entitlement Value */
|
|
6974
|
+
readonly value: components['schemas']['EntitlementValue'];
|
|
6975
|
+
};
|
|
6965
6976
|
/** @description Payload for notification event with `invoice.created` type. */
|
|
6966
6977
|
NotificationEventInvoiceCreatedPayload: {
|
|
6967
6978
|
/**
|
|
@@ -7040,14 +7051,40 @@ export interface components {
|
|
|
7040
7051
|
items: components['schemas']['NotificationEvent'][];
|
|
7041
7052
|
};
|
|
7042
7053
|
/** @description The delivery status of the notification event. */
|
|
7043
|
-
NotificationEventPayload: components['schemas']['NotificationEventBalanceThresholdPayload'] | components['schemas']['NotificationEventInvoiceCreatedPayload'] | components['schemas']['NotificationEventInvoiceUpdatedPayload'];
|
|
7054
|
+
NotificationEventPayload: components['schemas']['NotificationEventResetPayload'] | components['schemas']['NotificationEventBalanceThresholdPayload'] | components['schemas']['NotificationEventInvoiceCreatedPayload'] | components['schemas']['NotificationEventInvoiceUpdatedPayload'];
|
|
7055
|
+
/** @description Payload for notification event with `entitlements.reset` type. */
|
|
7056
|
+
NotificationEventResetPayload: {
|
|
7057
|
+
/**
|
|
7058
|
+
* Notification Event Identifier
|
|
7059
|
+
* @description A unique identifier for the notification event the payload belongs to.
|
|
7060
|
+
* @example 01J2KNP1YTXQRXHTDJ4KPR7PZ0
|
|
7061
|
+
*/
|
|
7062
|
+
readonly id: string;
|
|
7063
|
+
/**
|
|
7064
|
+
* @description Type of the notification event. (enum property replaced by openapi-typescript)
|
|
7065
|
+
* @enum {string}
|
|
7066
|
+
*/
|
|
7067
|
+
type: 'entitlements.reset';
|
|
7068
|
+
/**
|
|
7069
|
+
* Creation Time
|
|
7070
|
+
* Format: date-time
|
|
7071
|
+
* @description Timestamp when the notification event was created in RFC 3339 format.
|
|
7072
|
+
* @example 2023-01-01T01:01:01.001Z
|
|
7073
|
+
*/
|
|
7074
|
+
readonly timestamp: Date;
|
|
7075
|
+
/**
|
|
7076
|
+
* Payload Data
|
|
7077
|
+
* @description The data of the payload.
|
|
7078
|
+
*/
|
|
7079
|
+
readonly data: components['schemas']['NotificationEventEntitlementValuePayloadBase'];
|
|
7080
|
+
};
|
|
7044
7081
|
/**
|
|
7045
7082
|
* @description Type of the notification event.
|
|
7046
7083
|
* @enum {string}
|
|
7047
7084
|
*/
|
|
7048
|
-
NotificationEventType: 'entitlements.balance.threshold' | 'invoice.created' | 'invoice.updated';
|
|
7085
|
+
NotificationEventType: 'entitlements.balance.threshold' | 'entitlements.reset' | 'invoice.created' | 'invoice.updated';
|
|
7049
7086
|
/** @description Notification Rule. */
|
|
7050
|
-
NotificationRule: components['schemas']['NotificationRuleBalanceThreshold'] | components['schemas']['NotificationRuleInvoiceCreated'] | components['schemas']['NotificationRuleInvoiceUpdated'];
|
|
7087
|
+
NotificationRule: components['schemas']['NotificationRuleBalanceThreshold'] | components['schemas']['NotificationRuleEntitlementReset'] | components['schemas']['NotificationRuleInvoiceCreated'] | components['schemas']['NotificationRuleInvoiceUpdated'];
|
|
7051
7088
|
/** @description Notification rule with entitlements.balance.threshold type. */
|
|
7052
7089
|
NotificationRuleBalanceThreshold: {
|
|
7053
7090
|
/**
|
|
@@ -7169,7 +7206,96 @@ export interface components {
|
|
|
7169
7206
|
*/
|
|
7170
7207
|
NotificationRuleBalanceThresholdValueType: 'PERCENT' | 'NUMBER';
|
|
7171
7208
|
/** @description Union type for requests creating new notification rule with certain type. */
|
|
7172
|
-
NotificationRuleCreateRequest: components['schemas']['NotificationRuleBalanceThresholdCreateRequest'] | components['schemas']['NotificationRuleInvoiceCreatedCreateRequest'] | components['schemas']['NotificationRuleInvoiceUpdatedCreateRequest'];
|
|
7209
|
+
NotificationRuleCreateRequest: components['schemas']['NotificationRuleBalanceThresholdCreateRequest'] | components['schemas']['NotificationRuleEntitlementResetCreateRequest'] | components['schemas']['NotificationRuleInvoiceCreatedCreateRequest'] | components['schemas']['NotificationRuleInvoiceUpdatedCreateRequest'];
|
|
7210
|
+
/** @description Notification rule with entitlements.reset type. */
|
|
7211
|
+
NotificationRuleEntitlementReset: {
|
|
7212
|
+
/**
|
|
7213
|
+
* Creation Time
|
|
7214
|
+
* Format: date-time
|
|
7215
|
+
* @description Timestamp of when the resource was created.
|
|
7216
|
+
* @example 2024-01-01T01:01:01.001Z
|
|
7217
|
+
*/
|
|
7218
|
+
readonly createdAt: Date;
|
|
7219
|
+
/**
|
|
7220
|
+
* Last Update Time
|
|
7221
|
+
* Format: date-time
|
|
7222
|
+
* @description Timestamp of when the resource was last updated.
|
|
7223
|
+
* @example 2024-01-01T01:01:01.001Z
|
|
7224
|
+
*/
|
|
7225
|
+
readonly updatedAt: Date;
|
|
7226
|
+
/**
|
|
7227
|
+
* Deletion Time
|
|
7228
|
+
* Format: date-time
|
|
7229
|
+
* @description Timestamp of when the resource was permanently deleted.
|
|
7230
|
+
* @example 2024-01-01T01:01:01.001Z
|
|
7231
|
+
*/
|
|
7232
|
+
readonly deletedAt?: Date;
|
|
7233
|
+
/**
|
|
7234
|
+
* Rule Unique Identifier
|
|
7235
|
+
* @description Identifies the notification rule.
|
|
7236
|
+
* @example 01ARZ3NDEKTSV4RRFFQ69G5FAV
|
|
7237
|
+
*/
|
|
7238
|
+
readonly id: string;
|
|
7239
|
+
/**
|
|
7240
|
+
* @description Notification rule type. (enum property replaced by openapi-typescript)
|
|
7241
|
+
* @enum {string}
|
|
7242
|
+
*/
|
|
7243
|
+
type: 'entitlements.reset';
|
|
7244
|
+
/**
|
|
7245
|
+
* Rule Name
|
|
7246
|
+
* @description The user friendly name of the notification rule.
|
|
7247
|
+
* @example Balance threshold reached
|
|
7248
|
+
*/
|
|
7249
|
+
name: string;
|
|
7250
|
+
/**
|
|
7251
|
+
* Rule Disabled
|
|
7252
|
+
* @description Whether the rule is disabled or not.
|
|
7253
|
+
* @default false
|
|
7254
|
+
* @example true
|
|
7255
|
+
*/
|
|
7256
|
+
disabled?: boolean;
|
|
7257
|
+
/**
|
|
7258
|
+
* Channels assigned to Rule
|
|
7259
|
+
* @description List of notification channels the rule applies to.
|
|
7260
|
+
*/
|
|
7261
|
+
channels: components['schemas']['NotificationChannelMeta'][];
|
|
7262
|
+
/**
|
|
7263
|
+
* Features
|
|
7264
|
+
* @description Optional field containing list of features the rule applies to.
|
|
7265
|
+
*/
|
|
7266
|
+
features?: components['schemas']['FeatureMeta'][];
|
|
7267
|
+
};
|
|
7268
|
+
/** @description Request with input parameters for creating new notification rule with entitlements.reset type. */
|
|
7269
|
+
NotificationRuleEntitlementResetCreateRequest: {
|
|
7270
|
+
/**
|
|
7271
|
+
* @description Notification rule type. (enum property replaced by openapi-typescript)
|
|
7272
|
+
* @enum {string}
|
|
7273
|
+
*/
|
|
7274
|
+
type: 'entitlements.reset';
|
|
7275
|
+
/**
|
|
7276
|
+
* Rule Name
|
|
7277
|
+
* @description The user friendly name of the notification rule.
|
|
7278
|
+
* @example Balance threshold reached
|
|
7279
|
+
*/
|
|
7280
|
+
name: string;
|
|
7281
|
+
/**
|
|
7282
|
+
* Rule Disabled
|
|
7283
|
+
* @description Whether the rule is disabled or not.
|
|
7284
|
+
* @default false
|
|
7285
|
+
* @example true
|
|
7286
|
+
*/
|
|
7287
|
+
disabled?: boolean;
|
|
7288
|
+
/**
|
|
7289
|
+
* Channels
|
|
7290
|
+
* @description List of notification channels the rule is applied to.
|
|
7291
|
+
*/
|
|
7292
|
+
channels: string[];
|
|
7293
|
+
/**
|
|
7294
|
+
* Features
|
|
7295
|
+
* @description Optional field for defining the scope of notification by feature. It may contain features by id or key.
|
|
7296
|
+
*/
|
|
7297
|
+
features?: string[];
|
|
7298
|
+
};
|
|
7173
7299
|
/** @description Notification rule with invoice.created type. */
|
|
7174
7300
|
NotificationRuleInvoiceCreated: {
|
|
7175
7301
|
/**
|
|
@@ -10131,11 +10257,13 @@ export type NotificationEventBalanceThresholdPayload = components['schemas']['No
|
|
|
10131
10257
|
export type NotificationEventBalanceThresholdPayloadData = components['schemas']['NotificationEventBalanceThresholdPayloadData'];
|
|
10132
10258
|
export type NotificationEventDeliveryStatus = components['schemas']['NotificationEventDeliveryStatus'];
|
|
10133
10259
|
export type NotificationEventDeliveryStatusState = components['schemas']['NotificationEventDeliveryStatusState'];
|
|
10260
|
+
export type NotificationEventEntitlementValuePayloadBase = components['schemas']['NotificationEventEntitlementValuePayloadBase'];
|
|
10134
10261
|
export type NotificationEventInvoiceCreatedPayload = components['schemas']['NotificationEventInvoiceCreatedPayload'];
|
|
10135
10262
|
export type NotificationEventInvoiceUpdatedPayload = components['schemas']['NotificationEventInvoiceUpdatedPayload'];
|
|
10136
10263
|
export type NotificationEventOrderBy = components['schemas']['NotificationEventOrderBy'];
|
|
10137
10264
|
export type NotificationEventPaginatedResponse = components['schemas']['NotificationEventPaginatedResponse'];
|
|
10138
10265
|
export type NotificationEventPayload = components['schemas']['NotificationEventPayload'];
|
|
10266
|
+
export type NotificationEventResetPayload = components['schemas']['NotificationEventResetPayload'];
|
|
10139
10267
|
export type NotificationEventType = components['schemas']['NotificationEventType'];
|
|
10140
10268
|
export type NotificationRule = components['schemas']['NotificationRule'];
|
|
10141
10269
|
export type NotificationRuleBalanceThreshold = components['schemas']['NotificationRuleBalanceThreshold'];
|
|
@@ -10143,6 +10271,8 @@ export type NotificationRuleBalanceThresholdCreateRequest = components['schemas'
|
|
|
10143
10271
|
export type NotificationRuleBalanceThresholdValue = components['schemas']['NotificationRuleBalanceThresholdValue'];
|
|
10144
10272
|
export type NotificationRuleBalanceThresholdValueType = components['schemas']['NotificationRuleBalanceThresholdValueType'];
|
|
10145
10273
|
export type NotificationRuleCreateRequest = components['schemas']['NotificationRuleCreateRequest'];
|
|
10274
|
+
export type NotificationRuleEntitlementReset = components['schemas']['NotificationRuleEntitlementReset'];
|
|
10275
|
+
export type NotificationRuleEntitlementResetCreateRequest = components['schemas']['NotificationRuleEntitlementResetCreateRequest'];
|
|
10146
10276
|
export type NotificationRuleInvoiceCreated = components['schemas']['NotificationRuleInvoiceCreated'];
|
|
10147
10277
|
export type NotificationRuleInvoiceCreatedCreateRequest = components['schemas']['NotificationRuleInvoiceCreatedCreateRequest'];
|
|
10148
10278
|
export type NotificationRuleInvoiceUpdated = components['schemas']['NotificationRuleInvoiceUpdated'];
|
|
@@ -13,17 +13,17 @@ exports.updateCustomerPathCustomerIdOrKeyMax = exports.getCustomerQueryParams =
|
|
|
13
13
|
exports.getCustomerEntitlementValuePathCustomerIdOrKeyRegExp = exports.getCustomerEntitlementValuePathCustomerIdOrKeyMax = exports.deleteCustomerAppDataParams = exports.deleteCustomerAppDataPathAppIdRegExp = exports.deleteCustomerAppDataPathCustomerIdOrKeyRegExp = exports.deleteCustomerAppDataPathCustomerIdOrKeyMax = exports.upsertCustomerAppDataBody = exports.upsertCustomerAppDataBodyItem = exports.upsertCustomerAppDataBodyIdRegExpTwo = exports.upsertCustomerAppDataBodyAppListingCapabilitiesItemKeyRegExpOne = exports.upsertCustomerAppDataBodyAppListingCapabilitiesItemKeyMaxOne = exports.upsertCustomerAppDataBodyAppDescriptionMaxOne = exports.upsertCustomerAppDataBodyAppNameMaxOne = exports.upsertCustomerAppDataBodyAppIdRegExpOne = exports.upsertCustomerAppDataBodyIdRegExpOne = exports.upsertCustomerAppDataBodyAppListingCapabilitiesItemKeyRegExp = exports.upsertCustomerAppDataBodyAppListingCapabilitiesItemKeyMax = exports.upsertCustomerAppDataBodyAppDescriptionMax = exports.upsertCustomerAppDataBodyAppNameMax = exports.upsertCustomerAppDataBodyAppIdRegExp = exports.upsertCustomerAppDataBodyIdRegExp = exports.upsertCustomerAppDataParams = exports.upsertCustomerAppDataPathCustomerIdOrKeyRegExp = exports.upsertCustomerAppDataPathCustomerIdOrKeyMax = exports.listCustomerAppDataQueryParams = exports.listCustomerAppDataQueryPageSizeMax = exports.listCustomerAppDataQueryPageSizeDefault = exports.listCustomerAppDataQueryPageDefault = exports.listCustomerAppDataParams = exports.listCustomerAppDataPathCustomerIdOrKeyRegExp = exports.listCustomerAppDataPathCustomerIdOrKeyMax = exports.getCustomerAccessParams = exports.getCustomerAccessPathCustomerIdOrKeyRegExp = exports.getCustomerAccessPathCustomerIdOrKeyMax = exports.deleteCustomerParams = exports.deleteCustomerPathCustomerIdOrKeyRegExp = exports.deleteCustomerPathCustomerIdOrKeyMax = exports.updateCustomerBody = exports.updateCustomerBodyBillingAddressCountryRegExpOne = exports.updateCustomerBodyBillingAddressCountryMaxOne = exports.updateCustomerBodyBillingAddressCountryMinOne = exports.updateCustomerBodyCurrencyRegExpOne = exports.updateCustomerBodyCurrencyMaxOne = exports.updateCustomerBodyCurrencyMinOne = exports.updateCustomerBodyUsageAttributionSubjectKeysMax = exports.updateCustomerBodyKeyMax = exports.updateCustomerBodyDescriptionMax = exports.updateCustomerBodyNameMax = exports.updateCustomerParams = exports.updateCustomerPathCustomerIdOrKeyRegExp = void 0;
|
|
14
14
|
exports.listGrantsQueryOffsetDefault = exports.listGrantsQueryPageSizeMax = exports.listGrantsQueryPageSizeDefault = exports.listGrantsQueryPageDefault = exports.listGrantsQueryIncludeDeletedDefault = exports.deleteFeatureParams = exports.getFeatureParams = exports.createFeatureBody = exports.createFeatureBodyMeterSlugRegExp = exports.createFeatureBodyMeterSlugMax = exports.createFeatureBodyKeyRegExp = exports.createFeatureBodyKeyMax = exports.listFeaturesQueryParams = exports.listFeaturesQueryLimitMax = exports.listFeaturesQueryLimitDefault = exports.listFeaturesQueryOffsetMin = exports.listFeaturesQueryOffsetDefault = exports.listFeaturesQueryPageSizeMax = exports.listFeaturesQueryPageSizeDefault = exports.listFeaturesQueryPageDefault = exports.listFeaturesQueryIncludeArchivedDefault = exports.ingestEventsBody = exports.ingestEventsBodyItemSpecversionDefault = exports.ingestEventsBodySpecversionDefault = exports.listEventsQueryParams = exports.listEventsQueryLimitMax = exports.listEventsQueryLimitDefault = exports.listEventsQueryClientIdMax = exports.getEntitlementByIdParams = exports.getEntitlementByIdPathEntitlementIdRegExp = exports.listEntitlementsQueryParams = exports.listEntitlementsQueryLimitMax = exports.listEntitlementsQueryLimitDefault = exports.listEntitlementsQueryOffsetMin = exports.listEntitlementsQueryOffsetDefault = exports.listEntitlementsQueryPageSizeMax = exports.listEntitlementsQueryPageSizeDefault = exports.listEntitlementsQueryPageDefault = exports.listEntitlementsQueryExcludeInactiveDefault = exports.listCustomerSubscriptionsQueryParams = exports.listCustomerSubscriptionsQueryPageSizeMax = exports.listCustomerSubscriptionsQueryPageSizeDefault = exports.listCustomerSubscriptionsQueryPageDefault = exports.listCustomerSubscriptionsParams = exports.listCustomerSubscriptionsPathCustomerIdOrKeyRegExp = exports.listCustomerSubscriptionsPathCustomerIdOrKeyMax = exports.getCustomerEntitlementValueQueryParams = exports.getCustomerEntitlementValueParams = exports.getCustomerEntitlementValuePathFeatureKeyRegExp = exports.getCustomerEntitlementValuePathFeatureKeyMax = void 0;
|
|
15
15
|
exports.listNotificationChannelsQueryIncludeDeletedDefault = exports.listMeterSubjectsParams = exports.listMeterSubjectsPathMeterIdOrSlugRegExp = exports.listMeterSubjectsPathMeterIdOrSlugMax = exports.queryMeterQueryParams = exports.queryMeterQueryWindowTimeZoneDefault = exports.queryMeterQueryClientIdMax = exports.queryMeterParams = exports.queryMeterPathMeterIdOrSlugRegExp = exports.queryMeterPathMeterIdOrSlugMax = exports.deleteMeterParams = exports.deleteMeterPathMeterIdOrSlugRegExp = exports.deleteMeterPathMeterIdOrSlugMax = exports.updateMeterBody = exports.updateMeterBodyNameMax = exports.updateMeterBodyDescriptionMax = exports.updateMeterParams = exports.updateMeterPathMeterIdOrSlugRegExp = exports.updateMeterPathMeterIdOrSlugMax = exports.getMeterParams = exports.getMeterPathMeterIdOrSlugRegExp = exports.getMeterPathMeterIdOrSlugMax = exports.createMeterBody = exports.createMeterBodySlugRegExp = exports.createMeterBodySlugMax = exports.createMeterBodyNameMax = exports.createMeterBodyDescriptionMax = exports.listMetersQueryParams = exports.listMetersQueryIncludeDeletedDefault = exports.listMetersQueryPageSizeMax = exports.listMetersQueryPageSizeDefault = exports.listMetersQueryPageDefault = exports.marketplaceOAuth2InstallAuthorizeQueryParams = exports.marketplaceOAuth2InstallAuthorizeParams = exports.marketplaceOAuth2InstallGetURLParams = exports.marketplaceAppAPIKeyInstallBody = exports.marketplaceAppAPIKeyInstallParams = exports.marketplaceAppInstallBody = exports.marketplaceAppInstallParams = exports.getMarketplaceListingParams = exports.listMarketplaceListingsQueryParams = exports.listMarketplaceListingsQueryPageSizeMax = exports.listMarketplaceListingsQueryPageSizeDefault = exports.listMarketplaceListingsQueryPageDefault = exports.getProgressParams = exports.voidGrantParams = exports.listGrantsQueryParams = exports.listGrantsQueryLimitMax = exports.listGrantsQueryLimitDefault = exports.listGrantsQueryOffsetMin = void 0;
|
|
16
|
-
exports.
|
|
17
|
-
exports.
|
|
18
|
-
exports.
|
|
19
|
-
exports.
|
|
20
|
-
exports.
|
|
21
|
-
exports.
|
|
22
|
-
exports.
|
|
23
|
-
exports.
|
|
24
|
-
exports.
|
|
25
|
-
exports.
|
|
26
|
-
exports.listEventsV2QueryParams = exports.listEventsV2QueryClientIdMax = exports.listEventsV2QueryLimitMax = exports.listEventsV2QueryLimitDefault = exports.unscheduleCancelationParams = exports.unscheduleCancelationPathSubscriptionIdRegExp = exports.restoreSubscriptionParams = exports.restoreSubscriptionPathSubscriptionIdRegExp = exports.migrateSubscriptionBody = exports.migrateSubscriptionParams = exports.migrateSubscriptionPathSubscriptionIdRegExp = exports.changeSubscriptionBody = exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemDiscountsUsageQuantityRegExpThree = exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemPriceMaximumAmountRegExpSeven = exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemPriceMinimumAmountRegExpSeven = exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemPriceQuantityPerPackageRegExpOne = exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemPriceAmountRegExpSeven = exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemPriceMaximumAmountRegExpFive = exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemPriceMinimumAmountRegExpFive = exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemPriceMultiplierDefault = exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemPriceMultiplierRegExpOne = exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemPriceMaximumAmountRegExpThree = exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemPriceMinimumAmountRegExpThree = exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemPriceTiersItemUnitPriceAmountRegExpOne = exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemPriceTiersItemFlatPriceAmountRegExpOne = exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemPriceTiersItemUpToAmountRegExpOne = exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemPriceMaximumAmountRegExpOne = exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemPriceMinimumAmountRegExpOne = exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemPriceAmountRegExpFive = exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemPricePaymentTermDefaultTwo = exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemPriceAmountRegExpThree = exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemTaxConfigStripeCodeRegExpOne = exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemEntitlementTemplatePreserveOverageAtResetDefaultOne = exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemEntitlementTemplateIssueAfterResetPriorityMaxOne = void 0;
|
|
16
|
+
exports.updateNotificationRuleBodyThresholdsMax = exports.updateNotificationRuleBodyDisabledDefault = exports.updateNotificationRuleParams = exports.updateNotificationRulePathRuleIdRegExp = exports.createNotificationRuleBody = exports.createNotificationRuleBodyChannelsItemRegExpThree = exports.createNotificationRuleBodyDisabledDefaultThree = exports.createNotificationRuleBodyChannelsItemRegExpTwo = exports.createNotificationRuleBodyDisabledDefaultTwo = exports.createNotificationRuleBodyFeaturesItemRegExpOne = exports.createNotificationRuleBodyFeaturesItemMaxOne = exports.createNotificationRuleBodyChannelsItemRegExpOne = exports.createNotificationRuleBodyDisabledDefaultOne = exports.createNotificationRuleBodyFeaturesItemRegExp = exports.createNotificationRuleBodyFeaturesItemMax = exports.createNotificationRuleBodyChannelsItemRegExp = exports.createNotificationRuleBodyThresholdsMax = exports.createNotificationRuleBodyDisabledDefault = exports.listNotificationRulesQueryParams = exports.listNotificationRulesQueryPageSizeMax = exports.listNotificationRulesQueryPageSizeDefault = exports.listNotificationRulesQueryPageDefault = exports.listNotificationRulesQueryFeatureItemRegExp = exports.listNotificationRulesQueryFeatureItemMax = exports.listNotificationRulesQueryIncludeDisabledDefault = exports.listNotificationRulesQueryIncludeDeletedDefault = exports.getNotificationEventParams = exports.listNotificationEventsQueryParams = exports.listNotificationEventsQueryPageSizeMax = exports.listNotificationEventsQueryPageSizeDefault = exports.listNotificationEventsQueryPageDefault = exports.listNotificationEventsQueryChannelItemRegExp = exports.listNotificationEventsQueryRuleItemRegExp = exports.deleteNotificationChannelParams = exports.deleteNotificationChannelPathChannelIdRegExp = exports.getNotificationChannelParams = exports.getNotificationChannelPathChannelIdRegExp = exports.updateNotificationChannelBody = exports.updateNotificationChannelBodySigningSecretRegExp = exports.updateNotificationChannelBodyDisabledDefault = exports.updateNotificationChannelParams = exports.updateNotificationChannelPathChannelIdRegExp = exports.createNotificationChannelBody = exports.createNotificationChannelBodySigningSecretRegExp = exports.createNotificationChannelBodyDisabledDefault = exports.listNotificationChannelsQueryParams = exports.listNotificationChannelsQueryPageSizeMax = exports.listNotificationChannelsQueryPageSizeDefault = exports.listNotificationChannelsQueryPageDefault = exports.listNotificationChannelsQueryIncludeDisabledDefault = void 0;
|
|
17
|
+
exports.createPlanBodyPhasesItemRateCardsItemEntitlementTemplateIssueAfterResetMin = exports.createPlanBodyPhasesItemRateCardsItemEntitlementTemplateIsSoftLimitDefault = exports.createPlanBodyPhasesItemRateCardsItemFeatureKeyRegExp = exports.createPlanBodyPhasesItemRateCardsItemFeatureKeyMax = exports.createPlanBodyPhasesItemRateCardsItemDescriptionMax = exports.createPlanBodyPhasesItemRateCardsItemNameMax = exports.createPlanBodyPhasesItemRateCardsItemKeyRegExp = exports.createPlanBodyPhasesItemRateCardsItemKeyMax = exports.createPlanBodyPhasesItemDescriptionMax = exports.createPlanBodyPhasesItemNameMax = exports.createPlanBodyPhasesItemKeyRegExp = exports.createPlanBodyPhasesItemKeyMax = exports.createPlanBodyCurrencyDefault = exports.createPlanBodyCurrencyRegExpOne = exports.createPlanBodyCurrencyMaxOne = exports.createPlanBodyCurrencyMinOne = exports.createPlanBodyKeyRegExp = exports.createPlanBodyKeyMax = exports.createPlanBodyDescriptionMax = exports.createPlanBodyNameMax = exports.listPlansQueryParams = exports.listPlansQueryPageSizeMax = exports.listPlansQueryPageSizeDefault = exports.listPlansQueryPageDefault = exports.listPlansQueryCurrencyItemRegExp = exports.listPlansQueryCurrencyItemMax = exports.listPlansQueryCurrencyItemMin = exports.listPlansQueryKeyItemRegExp = exports.listPlansQueryKeyItemMax = exports.listPlansQueryIdItemRegExp = exports.listPlansQueryIncludeDeletedDefault = exports.receiveSvixOperationalEventBody = exports.testNotificationRuleParams = exports.testNotificationRulePathRuleIdRegExp = exports.deleteNotificationRuleParams = exports.deleteNotificationRulePathRuleIdRegExp = exports.getNotificationRuleParams = exports.getNotificationRulePathRuleIdRegExp = exports.updateNotificationRuleBody = exports.updateNotificationRuleBodyChannelsItemRegExpThree = exports.updateNotificationRuleBodyDisabledDefaultThree = exports.updateNotificationRuleBodyChannelsItemRegExpTwo = exports.updateNotificationRuleBodyDisabledDefaultTwo = exports.updateNotificationRuleBodyFeaturesItemRegExpOne = exports.updateNotificationRuleBodyFeaturesItemMaxOne = exports.updateNotificationRuleBodyChannelsItemRegExpOne = exports.updateNotificationRuleBodyDisabledDefaultOne = exports.updateNotificationRuleBodyFeaturesItemRegExp = exports.updateNotificationRuleBodyFeaturesItemMax = exports.updateNotificationRuleBodyChannelsItemRegExp = void 0;
|
|
18
|
+
exports.updatePlanBodyPhasesItemDescriptionMax = exports.updatePlanBodyPhasesItemNameMax = exports.updatePlanBodyPhasesItemKeyRegExp = exports.updatePlanBodyPhasesItemKeyMax = exports.updatePlanBodyDescriptionMax = exports.updatePlanBodyNameMax = exports.updatePlanParams = exports.updatePlanPathPlanIdRegExp = exports.nextPlanParams = exports.nextPlanPathPlanIdOrKeyRegExp = exports.nextPlanPathPlanIdOrKeyMax = exports.createPlanBody = exports.createPlanBodyPhasesItemRateCardsItemDiscountsUsageQuantityRegExpThree = exports.createPlanBodyPhasesItemRateCardsItemPriceMaximumAmountRegExpSeven = exports.createPlanBodyPhasesItemRateCardsItemPriceMinimumAmountRegExpSeven = exports.createPlanBodyPhasesItemRateCardsItemPriceQuantityPerPackageRegExpOne = exports.createPlanBodyPhasesItemRateCardsItemPriceAmountRegExpSeven = exports.createPlanBodyPhasesItemRateCardsItemPriceMaximumAmountRegExpFive = exports.createPlanBodyPhasesItemRateCardsItemPriceMinimumAmountRegExpFive = exports.createPlanBodyPhasesItemRateCardsItemPriceMultiplierDefault = exports.createPlanBodyPhasesItemRateCardsItemPriceMultiplierRegExpOne = exports.createPlanBodyPhasesItemRateCardsItemPriceMaximumAmountRegExpThree = exports.createPlanBodyPhasesItemRateCardsItemPriceMinimumAmountRegExpThree = exports.createPlanBodyPhasesItemRateCardsItemPriceTiersItemUnitPriceAmountRegExpOne = exports.createPlanBodyPhasesItemRateCardsItemPriceTiersItemFlatPriceAmountRegExpOne = exports.createPlanBodyPhasesItemRateCardsItemPriceTiersItemUpToAmountRegExpOne = exports.createPlanBodyPhasesItemRateCardsItemPriceMaximumAmountRegExpOne = exports.createPlanBodyPhasesItemRateCardsItemPriceMinimumAmountRegExpOne = exports.createPlanBodyPhasesItemRateCardsItemPriceAmountRegExpFive = exports.createPlanBodyPhasesItemRateCardsItemPricePaymentTermDefaultTwo = exports.createPlanBodyPhasesItemRateCardsItemPriceAmountRegExpThree = exports.createPlanBodyPhasesItemRateCardsItemTaxConfigStripeCodeRegExpOne = exports.createPlanBodyPhasesItemRateCardsItemEntitlementTemplatePreserveOverageAtResetDefaultOne = exports.createPlanBodyPhasesItemRateCardsItemEntitlementTemplateIssueAfterResetPriorityMaxOne = exports.createPlanBodyPhasesItemRateCardsItemEntitlementTemplateIssueAfterResetPriorityDefaultOne = exports.createPlanBodyPhasesItemRateCardsItemEntitlementTemplateIssueAfterResetMinOne = exports.createPlanBodyPhasesItemRateCardsItemEntitlementTemplateIsSoftLimitDefaultOne = exports.createPlanBodyPhasesItemRateCardsItemFeatureKeyRegExpOne = exports.createPlanBodyPhasesItemRateCardsItemFeatureKeyMaxOne = exports.createPlanBodyPhasesItemRateCardsItemDescriptionMaxOne = exports.createPlanBodyPhasesItemRateCardsItemNameMaxOne = exports.createPlanBodyPhasesItemRateCardsItemKeyRegExpOne = exports.createPlanBodyPhasesItemRateCardsItemKeyMaxOne = exports.createPlanBodyPhasesItemRateCardsItemDiscountsUsageQuantityRegExpOne = exports.createPlanBodyPhasesItemRateCardsItemPricePaymentTermDefault = exports.createPlanBodyPhasesItemRateCardsItemPriceAmountRegExpOne = exports.createPlanBodyPhasesItemRateCardsItemTaxConfigStripeCodeRegExp = exports.createPlanBodyPhasesItemRateCardsItemEntitlementTemplatePreserveOverageAtResetDefault = exports.createPlanBodyPhasesItemRateCardsItemEntitlementTemplateIssueAfterResetPriorityMax = exports.createPlanBodyPhasesItemRateCardsItemEntitlementTemplateIssueAfterResetPriorityDefault = void 0;
|
|
19
|
+
exports.getPlanParams = exports.getPlanPathPlanIdRegExp = exports.getPlanPathPlanIdMax = exports.updatePlanBody = exports.updatePlanBodyPhasesItemRateCardsItemDiscountsUsageQuantityRegExpThree = exports.updatePlanBodyPhasesItemRateCardsItemPriceMaximumAmountRegExpSeven = exports.updatePlanBodyPhasesItemRateCardsItemPriceMinimumAmountRegExpSeven = exports.updatePlanBodyPhasesItemRateCardsItemPriceQuantityPerPackageRegExpOne = exports.updatePlanBodyPhasesItemRateCardsItemPriceAmountRegExpSeven = exports.updatePlanBodyPhasesItemRateCardsItemPriceMaximumAmountRegExpFive = exports.updatePlanBodyPhasesItemRateCardsItemPriceMinimumAmountRegExpFive = exports.updatePlanBodyPhasesItemRateCardsItemPriceMultiplierDefault = exports.updatePlanBodyPhasesItemRateCardsItemPriceMultiplierRegExpOne = exports.updatePlanBodyPhasesItemRateCardsItemPriceMaximumAmountRegExpThree = exports.updatePlanBodyPhasesItemRateCardsItemPriceMinimumAmountRegExpThree = exports.updatePlanBodyPhasesItemRateCardsItemPriceTiersItemUnitPriceAmountRegExpOne = exports.updatePlanBodyPhasesItemRateCardsItemPriceTiersItemFlatPriceAmountRegExpOne = exports.updatePlanBodyPhasesItemRateCardsItemPriceTiersItemUpToAmountRegExpOne = exports.updatePlanBodyPhasesItemRateCardsItemPriceMaximumAmountRegExpOne = exports.updatePlanBodyPhasesItemRateCardsItemPriceMinimumAmountRegExpOne = exports.updatePlanBodyPhasesItemRateCardsItemPriceAmountRegExpFive = exports.updatePlanBodyPhasesItemRateCardsItemPricePaymentTermDefaultTwo = exports.updatePlanBodyPhasesItemRateCardsItemPriceAmountRegExpThree = exports.updatePlanBodyPhasesItemRateCardsItemTaxConfigStripeCodeRegExpOne = exports.updatePlanBodyPhasesItemRateCardsItemEntitlementTemplatePreserveOverageAtResetDefaultOne = exports.updatePlanBodyPhasesItemRateCardsItemEntitlementTemplateIssueAfterResetPriorityMaxOne = exports.updatePlanBodyPhasesItemRateCardsItemEntitlementTemplateIssueAfterResetPriorityDefaultOne = exports.updatePlanBodyPhasesItemRateCardsItemEntitlementTemplateIssueAfterResetMinOne = exports.updatePlanBodyPhasesItemRateCardsItemEntitlementTemplateIsSoftLimitDefaultOne = exports.updatePlanBodyPhasesItemRateCardsItemFeatureKeyRegExpOne = exports.updatePlanBodyPhasesItemRateCardsItemFeatureKeyMaxOne = exports.updatePlanBodyPhasesItemRateCardsItemDescriptionMaxOne = exports.updatePlanBodyPhasesItemRateCardsItemNameMaxOne = exports.updatePlanBodyPhasesItemRateCardsItemKeyRegExpOne = exports.updatePlanBodyPhasesItemRateCardsItemKeyMaxOne = exports.updatePlanBodyPhasesItemRateCardsItemDiscountsUsageQuantityRegExpOne = exports.updatePlanBodyPhasesItemRateCardsItemPricePaymentTermDefault = exports.updatePlanBodyPhasesItemRateCardsItemPriceAmountRegExpOne = exports.updatePlanBodyPhasesItemRateCardsItemTaxConfigStripeCodeRegExp = exports.updatePlanBodyPhasesItemRateCardsItemEntitlementTemplatePreserveOverageAtResetDefault = exports.updatePlanBodyPhasesItemRateCardsItemEntitlementTemplateIssueAfterResetPriorityMax = exports.updatePlanBodyPhasesItemRateCardsItemEntitlementTemplateIssueAfterResetPriorityDefault = exports.updatePlanBodyPhasesItemRateCardsItemEntitlementTemplateIssueAfterResetMin = exports.updatePlanBodyPhasesItemRateCardsItemEntitlementTemplateIsSoftLimitDefault = exports.updatePlanBodyPhasesItemRateCardsItemFeatureKeyRegExp = exports.updatePlanBodyPhasesItemRateCardsItemFeatureKeyMax = exports.updatePlanBodyPhasesItemRateCardsItemDescriptionMax = exports.updatePlanBodyPhasesItemRateCardsItemNameMax = exports.updatePlanBodyPhasesItemRateCardsItemKeyRegExp = exports.updatePlanBodyPhasesItemRateCardsItemKeyMax = void 0;
|
|
20
|
+
exports.createStripeCheckoutSessionBodyCustomerDescriptionMax = exports.createStripeCheckoutSessionBodyCustomerNameMax = exports.createStripeCheckoutSessionBodyCustomerIdRegExp = exports.createStripeCheckoutSessionBodyAppIdRegExp = exports.invalidatePortalTokensBody = exports.listPortalTokensQueryParams = exports.listPortalTokensQueryLimitMax = exports.listPortalTokensQueryLimitDefault = exports.createPortalTokenBody = exports.queryPortalMeterQueryParams = exports.queryPortalMeterQueryWindowTimeZoneDefault = exports.queryPortalMeterQueryClientIdMax = exports.queryPortalMeterParams = exports.queryPortalMeterPathMeterSlugRegExp = exports.queryPortalMeterPathMeterSlugMax = exports.publishPlanParams = exports.publishPlanPathPlanIdRegExp = exports.archivePlanParams = exports.archivePlanPathPlanIdRegExp = exports.deletePlanAddonParams = exports.deletePlanAddonPathPlanAddonIdRegExp = exports.deletePlanAddonPathPlanIdRegExp = exports.getPlanAddonParams = exports.getPlanAddonPathPlanAddonIdRegExp = exports.getPlanAddonPathPlanAddonIdMax = exports.getPlanAddonPathPlanIdRegExp = exports.getPlanAddonPathPlanIdMax = exports.updatePlanAddonBody = exports.updatePlanAddonParams = exports.updatePlanAddonPathPlanAddonIdRegExp = exports.updatePlanAddonPathPlanIdRegExp = exports.createPlanAddonBody = exports.createPlanAddonBodyAddonIdRegExp = exports.createPlanAddonParams = exports.createPlanAddonPathPlanIdRegExp = exports.listPlanAddonsQueryParams = exports.listPlanAddonsQueryPageSizeMax = exports.listPlanAddonsQueryPageSizeDefault = exports.listPlanAddonsQueryPageDefault = exports.listPlanAddonsQueryKeyItemRegExp = exports.listPlanAddonsQueryKeyItemMax = exports.listPlanAddonsQueryIdItemRegExp = exports.listPlanAddonsQueryIncludeDeletedDefault = exports.listPlanAddonsParams = exports.listPlanAddonsPathPlanIdRegExp = exports.listPlanAddonsPathPlanIdMax = exports.deletePlanParams = exports.deletePlanPathPlanIdRegExp = exports.getPlanQueryParams = exports.getPlanQueryIncludeLatestDefault = void 0;
|
|
21
|
+
exports.overrideEntitlementParams = exports.createGrantBody = exports.createGrantBodyMinRolloverAmountDefault = exports.createGrantBodyMaxRolloverAmountDefault = exports.createGrantBodyPriorityMax = exports.createGrantBodyAmountMin = exports.createGrantParams = exports.listEntitlementGrantsQueryParams = exports.listEntitlementGrantsQueryIncludeDeletedDefault = exports.listEntitlementGrantsParams = exports.listSubjectEntitlementsQueryParams = exports.listSubjectEntitlementsQueryIncludeDeletedDefault = exports.listSubjectEntitlementsParams = exports.createEntitlementBody = exports.createEntitlementBodyFeatureIdRegExpTwo = exports.createEntitlementBodyFeatureKeyRegExpTwo = exports.createEntitlementBodyFeatureKeyMaxTwo = exports.createEntitlementBodyFeatureIdRegExpOne = exports.createEntitlementBodyFeatureKeyRegExpOne = exports.createEntitlementBodyFeatureKeyMaxOne = exports.createEntitlementBodyPreserveOverageAtResetDefault = exports.createEntitlementBodyIssueAfterResetPriorityMax = exports.createEntitlementBodyIssueAfterResetPriorityDefault = exports.createEntitlementBodyIssueAfterResetMin = exports.createEntitlementBodyIsUnlimitedDefault = exports.createEntitlementBodyIsSoftLimitDefault = exports.createEntitlementBodyFeatureIdRegExp = exports.createEntitlementBodyFeatureKeyRegExp = exports.createEntitlementBodyFeatureKeyMax = exports.createEntitlementParams = exports.deleteSubjectParams = exports.getSubjectParams = exports.upsertSubjectBody = exports.upsertSubjectBodyItem = exports.createStripeCheckoutSessionBody = exports.createStripeCheckoutSessionBodyOptionsCustomTextTermsOfServiceAcceptanceMessageMax = exports.createStripeCheckoutSessionBodyOptionsCustomTextSubmitMessageMax = exports.createStripeCheckoutSessionBodyOptionsCustomTextShippingAddressMessageMax = exports.createStripeCheckoutSessionBodyOptionsCustomTextAfterSubmitMessageMax = exports.createStripeCheckoutSessionBodyOptionsCurrencyRegExpOne = exports.createStripeCheckoutSessionBodyOptionsCurrencyMaxOne = exports.createStripeCheckoutSessionBodyOptionsCurrencyMinOne = exports.createStripeCheckoutSessionBodyCustomerBillingAddressCountryRegExpOne = exports.createStripeCheckoutSessionBodyCustomerBillingAddressCountryMaxOne = exports.createStripeCheckoutSessionBodyCustomerBillingAddressCountryMinOne = exports.createStripeCheckoutSessionBodyCustomerCurrencyRegExpOne = exports.createStripeCheckoutSessionBodyCustomerCurrencyMaxOne = exports.createStripeCheckoutSessionBodyCustomerCurrencyMinOne = exports.createStripeCheckoutSessionBodyCustomerUsageAttributionSubjectKeysMax = exports.createStripeCheckoutSessionBodyCustomerKeyMaxOne = void 0;
|
|
22
|
+
exports.createSubscriptionBodyCustomPlanPhasesItemRateCardsItemEntitlementTemplateIssueAfterResetPriorityMax = exports.createSubscriptionBodyCustomPlanPhasesItemRateCardsItemEntitlementTemplateIssueAfterResetPriorityDefault = exports.createSubscriptionBodyCustomPlanPhasesItemRateCardsItemEntitlementTemplateIssueAfterResetMin = exports.createSubscriptionBodyCustomPlanPhasesItemRateCardsItemEntitlementTemplateIsSoftLimitDefault = exports.createSubscriptionBodyCustomPlanPhasesItemRateCardsItemFeatureKeyRegExp = exports.createSubscriptionBodyCustomPlanPhasesItemRateCardsItemFeatureKeyMax = exports.createSubscriptionBodyCustomPlanPhasesItemRateCardsItemDescriptionMax = exports.createSubscriptionBodyCustomPlanPhasesItemRateCardsItemNameMax = exports.createSubscriptionBodyCustomPlanPhasesItemRateCardsItemKeyRegExp = exports.createSubscriptionBodyCustomPlanPhasesItemRateCardsItemKeyMax = exports.createSubscriptionBodyCustomPlanPhasesItemDescriptionMax = exports.createSubscriptionBodyCustomPlanPhasesItemNameMax = exports.createSubscriptionBodyCustomPlanPhasesItemKeyRegExp = exports.createSubscriptionBodyCustomPlanPhasesItemKeyMax = exports.createSubscriptionBodyCustomPlanCurrencyDefault = exports.createSubscriptionBodyCustomPlanCurrencyRegExpOne = exports.createSubscriptionBodyCustomPlanCurrencyMaxOne = exports.createSubscriptionBodyCustomPlanCurrencyMinOne = exports.createSubscriptionBodyCustomPlanDescriptionMax = exports.createSubscriptionBodyCustomPlanNameMax = exports.createSubscriptionBodyCustomerKeyMax = exports.createSubscriptionBodyCustomerIdRegExp = exports.createSubscriptionBodyTimingDefault = exports.createSubscriptionBodyPlanKeyRegExp = exports.createSubscriptionBodyPlanKeyMax = exports.resetEntitlementUsageBody = exports.resetEntitlementUsageParams = exports.getEntitlementHistoryQueryParams = exports.getEntitlementHistoryQueryWindowTimeZoneDefault = exports.getEntitlementHistoryParams = exports.deleteEntitlementParams = exports.getEntitlementParams = exports.getEntitlementValueQueryParams = exports.getEntitlementValueParams = exports.overrideEntitlementBody = exports.overrideEntitlementBodyFeatureIdRegExpTwo = exports.overrideEntitlementBodyFeatureKeyRegExpTwo = exports.overrideEntitlementBodyFeatureKeyMaxTwo = exports.overrideEntitlementBodyFeatureIdRegExpOne = exports.overrideEntitlementBodyFeatureKeyRegExpOne = exports.overrideEntitlementBodyFeatureKeyMaxOne = exports.overrideEntitlementBodyPreserveOverageAtResetDefault = exports.overrideEntitlementBodyIssueAfterResetPriorityMax = exports.overrideEntitlementBodyIssueAfterResetPriorityDefault = exports.overrideEntitlementBodyIssueAfterResetMin = exports.overrideEntitlementBodyIsUnlimitedDefault = exports.overrideEntitlementBodyIsSoftLimitDefault = exports.overrideEntitlementBodyFeatureIdRegExp = exports.overrideEntitlementBodyFeatureKeyRegExp = exports.overrideEntitlementBodyFeatureKeyMax = void 0;
|
|
23
|
+
exports.editSubscriptionBodyCustomizationsItemRateCardFeatureKeyMax = exports.editSubscriptionBodyCustomizationsItemRateCardDescriptionMax = exports.editSubscriptionBodyCustomizationsItemRateCardNameMax = exports.editSubscriptionBodyCustomizationsItemRateCardKeyRegExp = exports.editSubscriptionBodyCustomizationsItemRateCardKeyMax = exports.editSubscriptionParams = exports.editSubscriptionPathSubscriptionIdRegExp = exports.getSubscriptionQueryParams = exports.getSubscriptionParams = exports.getSubscriptionPathSubscriptionIdRegExp = exports.createSubscriptionBody = exports.createSubscriptionBodyCustomerKeyMaxOne = exports.createSubscriptionBodyCustomerIdRegExpOne = exports.createSubscriptionBodyTimingDefaultFour = exports.createSubscriptionBodyCustomPlanPhasesItemRateCardsItemDiscountsUsageQuantityRegExpThree = exports.createSubscriptionBodyCustomPlanPhasesItemRateCardsItemPriceMaximumAmountRegExpSeven = exports.createSubscriptionBodyCustomPlanPhasesItemRateCardsItemPriceMinimumAmountRegExpSeven = exports.createSubscriptionBodyCustomPlanPhasesItemRateCardsItemPriceQuantityPerPackageRegExpOne = exports.createSubscriptionBodyCustomPlanPhasesItemRateCardsItemPriceAmountRegExpSeven = exports.createSubscriptionBodyCustomPlanPhasesItemRateCardsItemPriceMaximumAmountRegExpFive = exports.createSubscriptionBodyCustomPlanPhasesItemRateCardsItemPriceMinimumAmountRegExpFive = exports.createSubscriptionBodyCustomPlanPhasesItemRateCardsItemPriceMultiplierDefault = exports.createSubscriptionBodyCustomPlanPhasesItemRateCardsItemPriceMultiplierRegExpOne = exports.createSubscriptionBodyCustomPlanPhasesItemRateCardsItemPriceMaximumAmountRegExpThree = exports.createSubscriptionBodyCustomPlanPhasesItemRateCardsItemPriceMinimumAmountRegExpThree = exports.createSubscriptionBodyCustomPlanPhasesItemRateCardsItemPriceTiersItemUnitPriceAmountRegExpOne = exports.createSubscriptionBodyCustomPlanPhasesItemRateCardsItemPriceTiersItemFlatPriceAmountRegExpOne = exports.createSubscriptionBodyCustomPlanPhasesItemRateCardsItemPriceTiersItemUpToAmountRegExpOne = exports.createSubscriptionBodyCustomPlanPhasesItemRateCardsItemPriceMaximumAmountRegExpOne = exports.createSubscriptionBodyCustomPlanPhasesItemRateCardsItemPriceMinimumAmountRegExpOne = exports.createSubscriptionBodyCustomPlanPhasesItemRateCardsItemPriceAmountRegExpFive = exports.createSubscriptionBodyCustomPlanPhasesItemRateCardsItemPricePaymentTermDefaultTwo = exports.createSubscriptionBodyCustomPlanPhasesItemRateCardsItemPriceAmountRegExpThree = exports.createSubscriptionBodyCustomPlanPhasesItemRateCardsItemTaxConfigStripeCodeRegExpOne = exports.createSubscriptionBodyCustomPlanPhasesItemRateCardsItemEntitlementTemplatePreserveOverageAtResetDefaultOne = exports.createSubscriptionBodyCustomPlanPhasesItemRateCardsItemEntitlementTemplateIssueAfterResetPriorityMaxOne = exports.createSubscriptionBodyCustomPlanPhasesItemRateCardsItemEntitlementTemplateIssueAfterResetPriorityDefaultOne = exports.createSubscriptionBodyCustomPlanPhasesItemRateCardsItemEntitlementTemplateIssueAfterResetMinOne = exports.createSubscriptionBodyCustomPlanPhasesItemRateCardsItemEntitlementTemplateIsSoftLimitDefaultOne = exports.createSubscriptionBodyCustomPlanPhasesItemRateCardsItemFeatureKeyRegExpOne = exports.createSubscriptionBodyCustomPlanPhasesItemRateCardsItemFeatureKeyMaxOne = exports.createSubscriptionBodyCustomPlanPhasesItemRateCardsItemDescriptionMaxOne = exports.createSubscriptionBodyCustomPlanPhasesItemRateCardsItemNameMaxOne = exports.createSubscriptionBodyCustomPlanPhasesItemRateCardsItemKeyRegExpOne = exports.createSubscriptionBodyCustomPlanPhasesItemRateCardsItemKeyMaxOne = exports.createSubscriptionBodyCustomPlanPhasesItemRateCardsItemDiscountsUsageQuantityRegExpOne = exports.createSubscriptionBodyCustomPlanPhasesItemRateCardsItemPricePaymentTermDefault = exports.createSubscriptionBodyCustomPlanPhasesItemRateCardsItemPriceAmountRegExpOne = exports.createSubscriptionBodyCustomPlanPhasesItemRateCardsItemTaxConfigStripeCodeRegExp = exports.createSubscriptionBodyCustomPlanPhasesItemRateCardsItemEntitlementTemplatePreserveOverageAtResetDefault = void 0;
|
|
24
|
+
exports.createSubscriptionAddonParams = exports.createSubscriptionAddonPathSubscriptionIdRegExp = exports.deleteSubscriptionParams = exports.deleteSubscriptionPathSubscriptionIdRegExp = exports.editSubscriptionBody = exports.editSubscriptionBodyCustomizationsMax = exports.editSubscriptionBodyCustomizationsItemPhaseKeyRegExpTwo = exports.editSubscriptionBodyCustomizationsItemPhaseKeyMaxTwo = exports.editSubscriptionBodyCustomizationsItemPhaseDiscountsUsageQuantityRegExpOne = exports.editSubscriptionBodyCustomizationsItemRateCardDiscountsUsageQuantityRegExpThree = exports.editSubscriptionBodyCustomizationsItemRateCardPriceMaximumAmountRegExpSeven = exports.editSubscriptionBodyCustomizationsItemRateCardPriceMinimumAmountRegExpSeven = exports.editSubscriptionBodyCustomizationsItemRateCardPriceQuantityPerPackageRegExpOne = exports.editSubscriptionBodyCustomizationsItemRateCardPriceAmountRegExpSeven = exports.editSubscriptionBodyCustomizationsItemRateCardPriceMaximumAmountRegExpFive = exports.editSubscriptionBodyCustomizationsItemRateCardPriceMinimumAmountRegExpFive = exports.editSubscriptionBodyCustomizationsItemRateCardPriceMultiplierDefault = exports.editSubscriptionBodyCustomizationsItemRateCardPriceMultiplierRegExpOne = exports.editSubscriptionBodyCustomizationsItemRateCardPriceMaximumAmountRegExpThree = exports.editSubscriptionBodyCustomizationsItemRateCardPriceMinimumAmountRegExpThree = exports.editSubscriptionBodyCustomizationsItemRateCardPriceTiersItemUnitPriceAmountRegExpOne = exports.editSubscriptionBodyCustomizationsItemRateCardPriceTiersItemFlatPriceAmountRegExpOne = exports.editSubscriptionBodyCustomizationsItemRateCardPriceTiersItemUpToAmountRegExpOne = exports.editSubscriptionBodyCustomizationsItemRateCardPriceMaximumAmountRegExpOne = exports.editSubscriptionBodyCustomizationsItemRateCardPriceMinimumAmountRegExpOne = exports.editSubscriptionBodyCustomizationsItemRateCardPriceAmountRegExpFive = exports.editSubscriptionBodyCustomizationsItemRateCardPricePaymentTermDefaultTwo = exports.editSubscriptionBodyCustomizationsItemRateCardPriceAmountRegExpThree = exports.editSubscriptionBodyCustomizationsItemRateCardTaxConfigStripeCodeRegExpOne = exports.editSubscriptionBodyCustomizationsItemRateCardEntitlementTemplatePreserveOverageAtResetDefaultOne = exports.editSubscriptionBodyCustomizationsItemRateCardEntitlementTemplateIssueAfterResetPriorityMaxOne = exports.editSubscriptionBodyCustomizationsItemRateCardEntitlementTemplateIssueAfterResetPriorityDefaultOne = exports.editSubscriptionBodyCustomizationsItemRateCardEntitlementTemplateIssueAfterResetMinOne = exports.editSubscriptionBodyCustomizationsItemRateCardEntitlementTemplateIsSoftLimitDefaultOne = exports.editSubscriptionBodyCustomizationsItemRateCardFeatureKeyRegExpOne = exports.editSubscriptionBodyCustomizationsItemRateCardFeatureKeyMaxOne = exports.editSubscriptionBodyCustomizationsItemRateCardDescriptionMaxOne = exports.editSubscriptionBodyCustomizationsItemRateCardNameMaxOne = exports.editSubscriptionBodyCustomizationsItemRateCardKeyRegExpOne = exports.editSubscriptionBodyCustomizationsItemRateCardKeyMaxOne = exports.editSubscriptionBodyCustomizationsItemRateCardDiscountsUsageQuantityRegExpOne = exports.editSubscriptionBodyCustomizationsItemRateCardPricePaymentTermDefault = exports.editSubscriptionBodyCustomizationsItemRateCardPriceAmountRegExpOne = exports.editSubscriptionBodyCustomizationsItemRateCardTaxConfigStripeCodeRegExp = exports.editSubscriptionBodyCustomizationsItemRateCardEntitlementTemplatePreserveOverageAtResetDefault = exports.editSubscriptionBodyCustomizationsItemRateCardEntitlementTemplateIssueAfterResetPriorityMax = exports.editSubscriptionBodyCustomizationsItemRateCardEntitlementTemplateIssueAfterResetPriorityDefault = exports.editSubscriptionBodyCustomizationsItemRateCardEntitlementTemplateIssueAfterResetMin = exports.editSubscriptionBodyCustomizationsItemRateCardEntitlementTemplateIsSoftLimitDefault = exports.editSubscriptionBodyCustomizationsItemRateCardFeatureKeyRegExp = void 0;
|
|
25
|
+
exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemKeyMaxOne = exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemDiscountsUsageQuantityRegExpOne = exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemPricePaymentTermDefault = exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemPriceAmountRegExpOne = exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemTaxConfigStripeCodeRegExp = exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemEntitlementTemplatePreserveOverageAtResetDefault = exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemEntitlementTemplateIssueAfterResetPriorityMax = exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemEntitlementTemplateIssueAfterResetPriorityDefault = exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemEntitlementTemplateIssueAfterResetMin = exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemEntitlementTemplateIsSoftLimitDefault = exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemFeatureKeyRegExp = exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemFeatureKeyMax = exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemDescriptionMax = exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemNameMax = exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemKeyRegExp = exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemKeyMax = exports.changeSubscriptionBodyCustomPlanPhasesItemDescriptionMax = exports.changeSubscriptionBodyCustomPlanPhasesItemNameMax = exports.changeSubscriptionBodyCustomPlanPhasesItemKeyRegExp = exports.changeSubscriptionBodyCustomPlanPhasesItemKeyMax = exports.changeSubscriptionBodyCustomPlanCurrencyDefault = exports.changeSubscriptionBodyCustomPlanCurrencyRegExpOne = exports.changeSubscriptionBodyCustomPlanCurrencyMaxOne = exports.changeSubscriptionBodyCustomPlanCurrencyMinOne = exports.changeSubscriptionBodyCustomPlanDescriptionMax = exports.changeSubscriptionBodyCustomPlanNameMax = exports.changeSubscriptionBodyPlanKeyRegExp = exports.changeSubscriptionBodyPlanKeyMax = exports.changeSubscriptionParams = exports.changeSubscriptionPathSubscriptionIdRegExp = exports.cancelSubscriptionBody = exports.cancelSubscriptionParams = exports.cancelSubscriptionPathSubscriptionIdRegExp = exports.updateSubscriptionAddonBody = exports.updateSubscriptionAddonBodyQuantityMin = exports.updateSubscriptionAddonBodyDescriptionMax = exports.updateSubscriptionAddonBodyNameMax = exports.updateSubscriptionAddonParams = exports.updateSubscriptionAddonPathSubscriptionAddonIdRegExp = exports.updateSubscriptionAddonPathSubscriptionIdRegExp = exports.getSubscriptionAddonParams = exports.getSubscriptionAddonPathSubscriptionAddonIdRegExp = exports.getSubscriptionAddonPathSubscriptionIdRegExp = exports.listSubscriptionAddonsParams = exports.listSubscriptionAddonsPathSubscriptionIdRegExp = exports.createSubscriptionAddonBody = exports.createSubscriptionAddonBodyAddonIdRegExp = exports.createSubscriptionAddonBodyQuantityMin = exports.createSubscriptionAddonBodyDescriptionMax = exports.createSubscriptionAddonBodyNameMax = void 0;
|
|
26
|
+
exports.listEventsV2QueryParams = exports.listEventsV2QueryClientIdMax = exports.listEventsV2QueryLimitMax = exports.listEventsV2QueryLimitDefault = exports.unscheduleCancelationParams = exports.unscheduleCancelationPathSubscriptionIdRegExp = exports.restoreSubscriptionParams = exports.restoreSubscriptionPathSubscriptionIdRegExp = exports.migrateSubscriptionBody = exports.migrateSubscriptionParams = exports.migrateSubscriptionPathSubscriptionIdRegExp = exports.changeSubscriptionBody = exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemDiscountsUsageQuantityRegExpThree = exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemPriceMaximumAmountRegExpSeven = exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemPriceMinimumAmountRegExpSeven = exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemPriceQuantityPerPackageRegExpOne = exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemPriceAmountRegExpSeven = exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemPriceMaximumAmountRegExpFive = exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemPriceMinimumAmountRegExpFive = exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemPriceMultiplierDefault = exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemPriceMultiplierRegExpOne = exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemPriceMaximumAmountRegExpThree = exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemPriceMinimumAmountRegExpThree = exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemPriceTiersItemUnitPriceAmountRegExpOne = exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemPriceTiersItemFlatPriceAmountRegExpOne = exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemPriceTiersItemUpToAmountRegExpOne = exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemPriceMaximumAmountRegExpOne = exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemPriceMinimumAmountRegExpOne = exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemPriceAmountRegExpFive = exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemPricePaymentTermDefaultTwo = exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemPriceAmountRegExpThree = exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemTaxConfigStripeCodeRegExpOne = exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemEntitlementTemplatePreserveOverageAtResetDefaultOne = exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemEntitlementTemplateIssueAfterResetPriorityMaxOne = exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemEntitlementTemplateIssueAfterResetPriorityDefaultOne = exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemEntitlementTemplateIssueAfterResetMinOne = exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemEntitlementTemplateIsSoftLimitDefaultOne = exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemFeatureKeyRegExpOne = exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemFeatureKeyMaxOne = exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemDescriptionMaxOne = exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemNameMaxOne = exports.changeSubscriptionBodyCustomPlanPhasesItemRateCardsItemKeyRegExpOne = void 0;
|
|
27
27
|
/* eslint-disable no-useless-escape */
|
|
28
28
|
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
|
29
29
|
// @ts-nocheck
|
|
@@ -6392,8 +6392,12 @@ exports.createNotificationRuleBodyFeaturesItemMax = 64;
|
|
|
6392
6392
|
exports.createNotificationRuleBodyFeaturesItemRegExp = new RegExp('^[a-z0-9]+(?:_[a-z0-9]+)*$|^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$');
|
|
6393
6393
|
exports.createNotificationRuleBodyDisabledDefaultOne = false;
|
|
6394
6394
|
exports.createNotificationRuleBodyChannelsItemRegExpOne = new RegExp('^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$');
|
|
6395
|
+
exports.createNotificationRuleBodyFeaturesItemMaxOne = 64;
|
|
6396
|
+
exports.createNotificationRuleBodyFeaturesItemRegExpOne = new RegExp('^[a-z0-9]+(?:_[a-z0-9]+)*$|^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$');
|
|
6395
6397
|
exports.createNotificationRuleBodyDisabledDefaultTwo = false;
|
|
6396
6398
|
exports.createNotificationRuleBodyChannelsItemRegExpTwo = new RegExp('^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$');
|
|
6399
|
+
exports.createNotificationRuleBodyDisabledDefaultThree = false;
|
|
6400
|
+
exports.createNotificationRuleBodyChannelsItemRegExpThree = new RegExp('^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$');
|
|
6397
6401
|
exports.createNotificationRuleBody = zod_1.z
|
|
6398
6402
|
.discriminatedUnion('type', [
|
|
6399
6403
|
zod_1.z
|
|
@@ -6451,6 +6455,35 @@ exports.createNotificationRuleBody = zod_1.z
|
|
|
6451
6455
|
.boolean()
|
|
6452
6456
|
.optional()
|
|
6453
6457
|
.describe('Whether the rule is disabled or not.'),
|
|
6458
|
+
features: zod_1.z
|
|
6459
|
+
.array(zod_1.z
|
|
6460
|
+
.string()
|
|
6461
|
+
.min(1)
|
|
6462
|
+
.max(exports.createNotificationRuleBodyFeaturesItemMaxOne)
|
|
6463
|
+
.regex(exports.createNotificationRuleBodyFeaturesItemRegExpOne)
|
|
6464
|
+
.describe('ULID (Universally Unique Lexicographically Sortable Identifier).\nA key is a unique string that is used to identify a resource.\n\nTODO: this is a temporary solution to support both ULID and Key in the same spec for codegen.'))
|
|
6465
|
+
.min(1)
|
|
6466
|
+
.optional()
|
|
6467
|
+
.describe('Optional field for defining the scope of notification by feature. It may contain features by id or key.'),
|
|
6468
|
+
name: zod_1.z
|
|
6469
|
+
.string()
|
|
6470
|
+
.describe('The user friendly name of the notification rule.'),
|
|
6471
|
+
type: zod_1.z.enum(['entitlements.reset']),
|
|
6472
|
+
})
|
|
6473
|
+
.describe('Request with input parameters for creating new notification rule with entitlements.reset type.'),
|
|
6474
|
+
zod_1.z
|
|
6475
|
+
.object({
|
|
6476
|
+
channels: zod_1.z
|
|
6477
|
+
.array(zod_1.z
|
|
6478
|
+
.string()
|
|
6479
|
+
.regex(exports.createNotificationRuleBodyChannelsItemRegExpTwo)
|
|
6480
|
+
.describe('ULID (Universally Unique Lexicographically Sortable Identifier).'))
|
|
6481
|
+
.min(1)
|
|
6482
|
+
.describe('List of notification channels the rule is applied to.'),
|
|
6483
|
+
disabled: zod_1.z
|
|
6484
|
+
.boolean()
|
|
6485
|
+
.optional()
|
|
6486
|
+
.describe('Whether the rule is disabled or not.'),
|
|
6454
6487
|
name: zod_1.z
|
|
6455
6488
|
.string()
|
|
6456
6489
|
.describe('The user friendly name of the notification rule.'),
|
|
@@ -6462,7 +6495,7 @@ exports.createNotificationRuleBody = zod_1.z
|
|
|
6462
6495
|
channels: zod_1.z
|
|
6463
6496
|
.array(zod_1.z
|
|
6464
6497
|
.string()
|
|
6465
|
-
.regex(exports.
|
|
6498
|
+
.regex(exports.createNotificationRuleBodyChannelsItemRegExpThree)
|
|
6466
6499
|
.describe('ULID (Universally Unique Lexicographically Sortable Identifier).'))
|
|
6467
6500
|
.min(1)
|
|
6468
6501
|
.describe('List of notification channels the rule is applied to.'),
|
|
@@ -6493,8 +6526,12 @@ exports.updateNotificationRuleBodyFeaturesItemMax = 64;
|
|
|
6493
6526
|
exports.updateNotificationRuleBodyFeaturesItemRegExp = new RegExp('^[a-z0-9]+(?:_[a-z0-9]+)*$|^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$');
|
|
6494
6527
|
exports.updateNotificationRuleBodyDisabledDefaultOne = false;
|
|
6495
6528
|
exports.updateNotificationRuleBodyChannelsItemRegExpOne = new RegExp('^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$');
|
|
6529
|
+
exports.updateNotificationRuleBodyFeaturesItemMaxOne = 64;
|
|
6530
|
+
exports.updateNotificationRuleBodyFeaturesItemRegExpOne = new RegExp('^[a-z0-9]+(?:_[a-z0-9]+)*$|^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$');
|
|
6496
6531
|
exports.updateNotificationRuleBodyDisabledDefaultTwo = false;
|
|
6497
6532
|
exports.updateNotificationRuleBodyChannelsItemRegExpTwo = new RegExp('^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$');
|
|
6533
|
+
exports.updateNotificationRuleBodyDisabledDefaultThree = false;
|
|
6534
|
+
exports.updateNotificationRuleBodyChannelsItemRegExpThree = new RegExp('^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$');
|
|
6498
6535
|
exports.updateNotificationRuleBody = zod_1.z
|
|
6499
6536
|
.discriminatedUnion('type', [
|
|
6500
6537
|
zod_1.z
|
|
@@ -6552,6 +6589,35 @@ exports.updateNotificationRuleBody = zod_1.z
|
|
|
6552
6589
|
.boolean()
|
|
6553
6590
|
.optional()
|
|
6554
6591
|
.describe('Whether the rule is disabled or not.'),
|
|
6592
|
+
features: zod_1.z
|
|
6593
|
+
.array(zod_1.z
|
|
6594
|
+
.string()
|
|
6595
|
+
.min(1)
|
|
6596
|
+
.max(exports.updateNotificationRuleBodyFeaturesItemMaxOne)
|
|
6597
|
+
.regex(exports.updateNotificationRuleBodyFeaturesItemRegExpOne)
|
|
6598
|
+
.describe('ULID (Universally Unique Lexicographically Sortable Identifier).\nA key is a unique string that is used to identify a resource.\n\nTODO: this is a temporary solution to support both ULID and Key in the same spec for codegen.'))
|
|
6599
|
+
.min(1)
|
|
6600
|
+
.optional()
|
|
6601
|
+
.describe('Optional field for defining the scope of notification by feature. It may contain features by id or key.'),
|
|
6602
|
+
name: zod_1.z
|
|
6603
|
+
.string()
|
|
6604
|
+
.describe('The user friendly name of the notification rule.'),
|
|
6605
|
+
type: zod_1.z.enum(['entitlements.reset']),
|
|
6606
|
+
})
|
|
6607
|
+
.describe('Request with input parameters for creating new notification rule with entitlements.reset type.'),
|
|
6608
|
+
zod_1.z
|
|
6609
|
+
.object({
|
|
6610
|
+
channels: zod_1.z
|
|
6611
|
+
.array(zod_1.z
|
|
6612
|
+
.string()
|
|
6613
|
+
.regex(exports.updateNotificationRuleBodyChannelsItemRegExpTwo)
|
|
6614
|
+
.describe('ULID (Universally Unique Lexicographically Sortable Identifier).'))
|
|
6615
|
+
.min(1)
|
|
6616
|
+
.describe('List of notification channels the rule is applied to.'),
|
|
6617
|
+
disabled: zod_1.z
|
|
6618
|
+
.boolean()
|
|
6619
|
+
.optional()
|
|
6620
|
+
.describe('Whether the rule is disabled or not.'),
|
|
6555
6621
|
name: zod_1.z
|
|
6556
6622
|
.string()
|
|
6557
6623
|
.describe('The user friendly name of the notification rule.'),
|
|
@@ -6563,7 +6629,7 @@ exports.updateNotificationRuleBody = zod_1.z
|
|
|
6563
6629
|
channels: zod_1.z
|
|
6564
6630
|
.array(zod_1.z
|
|
6565
6631
|
.string()
|
|
6566
|
-
.regex(exports.
|
|
6632
|
+
.regex(exports.updateNotificationRuleBodyChannelsItemRegExpThree)
|
|
6567
6633
|
.describe('ULID (Universally Unique Lexicographically Sortable Identifier).'))
|
|
6568
6634
|
.min(1)
|
|
6569
6635
|
.describe('List of notification channels the rule is applied to.'),
|
|
@@ -11106,8 +11106,12 @@ export declare const createNotificationRuleBodyFeaturesItemMax = 64;
|
|
|
11106
11106
|
export declare const createNotificationRuleBodyFeaturesItemRegExp: RegExp;
|
|
11107
11107
|
export declare const createNotificationRuleBodyDisabledDefaultOne = false;
|
|
11108
11108
|
export declare const createNotificationRuleBodyChannelsItemRegExpOne: RegExp;
|
|
11109
|
+
export declare const createNotificationRuleBodyFeaturesItemMaxOne = 64;
|
|
11110
|
+
export declare const createNotificationRuleBodyFeaturesItemRegExpOne: RegExp;
|
|
11109
11111
|
export declare const createNotificationRuleBodyDisabledDefaultTwo = false;
|
|
11110
11112
|
export declare const createNotificationRuleBodyChannelsItemRegExpTwo: RegExp;
|
|
11113
|
+
export declare const createNotificationRuleBodyDisabledDefaultThree = false;
|
|
11114
|
+
export declare const createNotificationRuleBodyChannelsItemRegExpThree: RegExp;
|
|
11111
11115
|
export declare const createNotificationRuleBody: zod.ZodDiscriminatedUnion<"type", [zod.ZodObject<{
|
|
11112
11116
|
channels: zod.ZodArray<zod.ZodString, "many">;
|
|
11113
11117
|
disabled: zod.ZodOptional<zod.ZodBoolean>;
|
|
@@ -11144,6 +11148,24 @@ export declare const createNotificationRuleBody: zod.ZodDiscriminatedUnion<"type
|
|
|
11144
11148
|
}[];
|
|
11145
11149
|
disabled?: boolean | undefined;
|
|
11146
11150
|
features?: string[] | undefined;
|
|
11151
|
+
}>, zod.ZodObject<{
|
|
11152
|
+
channels: zod.ZodArray<zod.ZodString, "many">;
|
|
11153
|
+
disabled: zod.ZodOptional<zod.ZodBoolean>;
|
|
11154
|
+
features: zod.ZodOptional<zod.ZodArray<zod.ZodString, "many">>;
|
|
11155
|
+
name: zod.ZodString;
|
|
11156
|
+
type: zod.ZodEnum<["entitlements.reset"]>;
|
|
11157
|
+
}, "strip", zod.ZodTypeAny, {
|
|
11158
|
+
name: string;
|
|
11159
|
+
type: "entitlements.reset";
|
|
11160
|
+
channels: string[];
|
|
11161
|
+
disabled?: boolean | undefined;
|
|
11162
|
+
features?: string[] | undefined;
|
|
11163
|
+
}, {
|
|
11164
|
+
name: string;
|
|
11165
|
+
type: "entitlements.reset";
|
|
11166
|
+
channels: string[];
|
|
11167
|
+
disabled?: boolean | undefined;
|
|
11168
|
+
features?: string[] | undefined;
|
|
11147
11169
|
}>, zod.ZodObject<{
|
|
11148
11170
|
channels: zod.ZodArray<zod.ZodString, "many">;
|
|
11149
11171
|
disabled: zod.ZodOptional<zod.ZodBoolean>;
|
|
@@ -11194,8 +11216,12 @@ export declare const updateNotificationRuleBodyFeaturesItemMax = 64;
|
|
|
11194
11216
|
export declare const updateNotificationRuleBodyFeaturesItemRegExp: RegExp;
|
|
11195
11217
|
export declare const updateNotificationRuleBodyDisabledDefaultOne = false;
|
|
11196
11218
|
export declare const updateNotificationRuleBodyChannelsItemRegExpOne: RegExp;
|
|
11219
|
+
export declare const updateNotificationRuleBodyFeaturesItemMaxOne = 64;
|
|
11220
|
+
export declare const updateNotificationRuleBodyFeaturesItemRegExpOne: RegExp;
|
|
11197
11221
|
export declare const updateNotificationRuleBodyDisabledDefaultTwo = false;
|
|
11198
11222
|
export declare const updateNotificationRuleBodyChannelsItemRegExpTwo: RegExp;
|
|
11223
|
+
export declare const updateNotificationRuleBodyDisabledDefaultThree = false;
|
|
11224
|
+
export declare const updateNotificationRuleBodyChannelsItemRegExpThree: RegExp;
|
|
11199
11225
|
export declare const updateNotificationRuleBody: zod.ZodDiscriminatedUnion<"type", [zod.ZodObject<{
|
|
11200
11226
|
channels: zod.ZodArray<zod.ZodString, "many">;
|
|
11201
11227
|
disabled: zod.ZodOptional<zod.ZodBoolean>;
|
|
@@ -11232,6 +11258,24 @@ export declare const updateNotificationRuleBody: zod.ZodDiscriminatedUnion<"type
|
|
|
11232
11258
|
}[];
|
|
11233
11259
|
disabled?: boolean | undefined;
|
|
11234
11260
|
features?: string[] | undefined;
|
|
11261
|
+
}>, zod.ZodObject<{
|
|
11262
|
+
channels: zod.ZodArray<zod.ZodString, "many">;
|
|
11263
|
+
disabled: zod.ZodOptional<zod.ZodBoolean>;
|
|
11264
|
+
features: zod.ZodOptional<zod.ZodArray<zod.ZodString, "many">>;
|
|
11265
|
+
name: zod.ZodString;
|
|
11266
|
+
type: zod.ZodEnum<["entitlements.reset"]>;
|
|
11267
|
+
}, "strip", zod.ZodTypeAny, {
|
|
11268
|
+
name: string;
|
|
11269
|
+
type: "entitlements.reset";
|
|
11270
|
+
channels: string[];
|
|
11271
|
+
disabled?: boolean | undefined;
|
|
11272
|
+
features?: string[] | undefined;
|
|
11273
|
+
}, {
|
|
11274
|
+
name: string;
|
|
11275
|
+
type: "entitlements.reset";
|
|
11276
|
+
channels: string[];
|
|
11277
|
+
disabled?: boolean | undefined;
|
|
11278
|
+
features?: string[] | undefined;
|
|
11235
11279
|
}>, zod.ZodObject<{
|
|
11236
11280
|
channels: zod.ZodArray<zod.ZodString, "many">;
|
|
11237
11281
|
disabled: zod.ZodOptional<zod.ZodBoolean>;
|