@wix/auto_sdk_benefit-programs_pools 1.0.29 → 1.0.30
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/build/cjs/index.d.ts +1 -1
- package/build/cjs/index.js +9 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +47 -3
- package/build/cjs/index.typings.js +9 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +47 -3
- package/build/cjs/meta.js +9 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.d.mts +1 -1
- package/build/es/index.mjs +8 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +47 -3
- package/build/es/index.typings.mjs +8 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +47 -3
- package/build/es/meta.mjs +8 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +1 -1
- package/build/internal/cjs/index.js +9 -0
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +47 -3
- package/build/internal/cjs/index.typings.js +9 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +47 -3
- package/build/internal/cjs/meta.js +9 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.d.mts +1 -1
- package/build/internal/es/index.mjs +8 -0
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +47 -3
- package/build/internal/es/index.typings.mjs +8 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +47 -3
- package/build/internal/es/meta.mjs +8 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -114,10 +114,12 @@ declare enum PoolStatus {
|
|
|
114
114
|
/** Pool provisioning is in progress. This status exists for a short time during processing. */
|
|
115
115
|
PROVISIONING = "PROVISIONING",
|
|
116
116
|
/** Pool renewing is in progress. This status exists for a short time during processing. */
|
|
117
|
-
RENEWING = "RENEWING"
|
|
117
|
+
RENEWING = "RENEWING",
|
|
118
|
+
/** Pool is pending */
|
|
119
|
+
PENDING = "PENDING"
|
|
118
120
|
}
|
|
119
121
|
/** @enumType */
|
|
120
|
-
type PoolStatusWithLiterals = PoolStatus | 'UNDEFINED' | 'ACTIVE' | 'PAUSED' | 'ENDED' | 'PROVISIONING' | 'RENEWING';
|
|
122
|
+
type PoolStatusWithLiterals = PoolStatus | 'UNDEFINED' | 'ACTIVE' | 'PAUSED' | 'ENDED' | 'PROVISIONING' | 'RENEWING' | 'PENDING';
|
|
121
123
|
interface CommonIdentificationData extends CommonIdentificationDataIdOneOf {
|
|
122
124
|
/**
|
|
123
125
|
* ID of a site visitor that hasn't logged in to the site.
|
|
@@ -470,6 +472,48 @@ declare enum PoolOrigin {
|
|
|
470
472
|
}
|
|
471
473
|
/** @enumType */
|
|
472
474
|
type PoolOriginWithLiterals = PoolOrigin | 'UNKNOWN' | 'PROVISION' | 'CASCADE';
|
|
475
|
+
interface PoolRenewalAction extends PoolRenewalActionActionOneOf {
|
|
476
|
+
/**
|
|
477
|
+
* The pool's details (benefits and settings) will be updated to match the details of the specified pool definition revision.
|
|
478
|
+
* @readonly
|
|
479
|
+
*/
|
|
480
|
+
updateOptions?: Update;
|
|
481
|
+
/**
|
|
482
|
+
* Version of the pool definition that will be used when the pool is renewed.
|
|
483
|
+
* @readonly
|
|
484
|
+
*/
|
|
485
|
+
poolDefinitionRevision?: string | null;
|
|
486
|
+
/**
|
|
487
|
+
* The action that will be taken when the pool is renewed
|
|
488
|
+
* @readonly
|
|
489
|
+
*/
|
|
490
|
+
type?: PoolRenewalActionTypeWithLiterals;
|
|
491
|
+
}
|
|
492
|
+
/** @oneof */
|
|
493
|
+
interface PoolRenewalActionActionOneOf {
|
|
494
|
+
/**
|
|
495
|
+
* The pool's details (benefits and settings) will be updated to match the details of the specified pool definition revision.
|
|
496
|
+
* @readonly
|
|
497
|
+
*/
|
|
498
|
+
updateOptions?: Update;
|
|
499
|
+
}
|
|
500
|
+
declare enum PoolRenewalActionType {
|
|
501
|
+
/** Undefined action type. */
|
|
502
|
+
UNDEFINED = "UNDEFINED",
|
|
503
|
+
/** Pool will end on program renewal */
|
|
504
|
+
END = "END",
|
|
505
|
+
/** Pool will be updated on program renewal */
|
|
506
|
+
UPDATE = "UPDATE"
|
|
507
|
+
}
|
|
508
|
+
/** @enumType */
|
|
509
|
+
type PoolRenewalActionTypeWithLiterals = PoolRenewalActionType | 'UNDEFINED' | 'END' | 'UPDATE';
|
|
510
|
+
interface Update {
|
|
511
|
+
/**
|
|
512
|
+
* The pool's details will be updated to match the details of the specified pool definition revision.
|
|
513
|
+
* @readonly
|
|
514
|
+
*/
|
|
515
|
+
details?: Details;
|
|
516
|
+
}
|
|
473
517
|
interface PoolProvisioned {
|
|
474
518
|
/** Pool which has been provisioned */
|
|
475
519
|
pool?: Pool;
|
|
@@ -2067,4 +2111,4 @@ interface BulkUpdatePoolsOptions {
|
|
|
2067
2111
|
returnEntity?: boolean;
|
|
2068
2112
|
}
|
|
2069
2113
|
|
|
2070
|
-
export { type ActionEvent, type ApplicationError, type AsyncResult, type Benefit, type BenefitAlreadyRedeemed, type BenefitNotFound, type BenefitRedeemed, type BenefitReservationCanceled, type BenefitReservationReleased, type BenefitReserved, type BenefitSelector, type BulkActionMetadata, type BulkCheckBenefitEligibilityOptions, type BulkCheckBenefitEligibilityRequest, type BulkCheckBenefitEligibilityResponse, type BulkEligibilityCheckResult, type BulkPoolResult, type BulkUpdatePoolsOptions, type BulkUpdatePoolsRequest, type BulkUpdatePoolsResponse, type ByItemReference, type ByItemReferenceFilter, type ByPoolDefinitionIdAndProgramDefinitionIdOptions, type ByProgramIdOptions, type CancelBenefitReservationRequest, type CancelBenefitReservationResponse, type CheckBenefitEligibilityOptions, type CheckBenefitEligibilityRequest, type CheckBenefitEligibilityResponse, type CommonIdentificationData, type CommonIdentificationDataIdOneOf, type CountNumberOfPoolsInProvisioningStatusRequest, type CountNumberOfPoolsInProvisioningStatusResponse, type CreatePoolRequest, type CreatePoolResponse, type CreditConfiguration, type CursorPaging, type CursorPagingMetadata, type CursorQuery, type CursorQueryPagingMethodOneOf, type Cursors, type CustomPolicy, type DeletePoolRequest, type DeletePoolResponse, type Details, type DomainEvent, type DomainEventBodyOneOf, type EligibilityCheckResult, type EligibilityCheckResultResultOneOf, EligibilityCheckResultType, type EligibilityCheckResultTypeWithLiterals, type Eligible, type EligibleBenefit, type EntityCreatedEvent, type EntityDeletedEvent, type EntityUpdatedEvent, type ExtendedFields, type FailureDetails, type Filter, type FilterFilterOneOf, type FixedIntervalPolicy, type GetEligibleBenefitsApplicationErrors, type GetEligibleBenefitsOptions, type GetEligibleBenefitsRequest, type GetEligibleBenefitsResponse, type GetPoolRequest, type GetPoolResponse, type IdentificationData, type IdentificationDataIdOneOf, IdentityType, type IdentityTypeWithLiterals, type InvalidPoolDefinitionReference, type ItemMetadata, type ItemReference, type ListPoolsRequest, ListPoolsRequestType, type ListPoolsRequestTypeWithLiterals, type ListPoolsResponse, type MaskedPool, type MessageEnvelope, type NotEnoughBalance, type Policy, type PolicyExpression, type PolicyExpressionAnd, type PolicyExpressionEvaluatedToFalse, type PolicyExpressionExpressionOneOf, type PolicyExpressionNot, type PolicyExpressionOr, PolicyExpressionType, type PolicyExpressionTypeWithLiterals, type PolicyPolicyOneOf, type Pool, type PoolDefinitionAndProgramDefinition, type PoolDefinitionLookupId, type PoolDefinitionLookupIdIdOneOf, type PoolEnded, type PoolNotActive, type PoolNotFound, PoolOrigin, type PoolOriginWithLiterals, type PoolPaused, type PoolProgramInfo, type PoolProvisionJobFinished, type PoolProvisioned, type PoolRenewed, type PoolResumed, PoolSelectorType, type PoolSelectorTypeWithLiterals, PoolStatus, type PoolStatusUpdateJobFinished, type PoolStatusUpdateJobFinishedContextOneOf, type PoolStatusWithLiterals, type PoolWithItems, type PoolsQueryBuilder, type PoolsQueryResult, type ProgramDefinitionInfo, type ProgramInfo, type ProvisionPoolsForProgramRequest, type ProvisionPoolsForProgramResponse, type ProvisionPoolsForProgramResponseResultOneOf, ProvisionPoolsForProgramResponseType, type ProvisionPoolsForProgramResponseTypeWithLiterals, type QueryPoolsRequest, type QueryPoolsResponse, type RateLimitedPolicy, type RateLimitedPolicyPeriodOneOf, RateLimitedPolicyType, type RateLimitedPolicyTypeWithLiterals, type RedeemBenefitApplicationErrors, type RedeemBenefitOptions, type RedeemBenefitRequest, type RedeemBenefitResponse, type RedemptionDetails, type ReleaseBenefitReservationRequest, type ReleaseBenefitReservationResponse, type RenewPoolsForProgramRequest, type RenewPoolsForProgramResponse, type ReserveBenefitRequest, type ReserveBenefitResponse, type RestoreInfo, type RolloverConfiguration, SortOrder, type SortOrderWithLiterals, type Sorting, type SyncResult, Type, type TypeWithLiterals, type UpdatePool, type UpdatePoolRequest, type UpdatePoolResponse, type UpdatePoolStatusRequest, type UpdatePoolStatusRequestPoolSelectorOneOf, type UpdatePoolStatusResponse, WebhookIdentityType, type WebhookIdentityTypeWithLiterals, WeekDay, type WeekDayWithLiterals, bulkCheckBenefitEligibility, bulkUpdatePools, checkBenefitEligibility, getEligibleBenefits, getPool, queryPools, redeemBenefit, updatePool };
|
|
2114
|
+
export { type ActionEvent, type ApplicationError, type AsyncResult, type Benefit, type BenefitAlreadyRedeemed, type BenefitNotFound, type BenefitRedeemed, type BenefitReservationCanceled, type BenefitReservationReleased, type BenefitReserved, type BenefitSelector, type BulkActionMetadata, type BulkCheckBenefitEligibilityOptions, type BulkCheckBenefitEligibilityRequest, type BulkCheckBenefitEligibilityResponse, type BulkEligibilityCheckResult, type BulkPoolResult, type BulkUpdatePoolsOptions, type BulkUpdatePoolsRequest, type BulkUpdatePoolsResponse, type ByItemReference, type ByItemReferenceFilter, type ByPoolDefinitionIdAndProgramDefinitionIdOptions, type ByProgramIdOptions, type CancelBenefitReservationRequest, type CancelBenefitReservationResponse, type CheckBenefitEligibilityOptions, type CheckBenefitEligibilityRequest, type CheckBenefitEligibilityResponse, type CommonIdentificationData, type CommonIdentificationDataIdOneOf, type CountNumberOfPoolsInProvisioningStatusRequest, type CountNumberOfPoolsInProvisioningStatusResponse, type CreatePoolRequest, type CreatePoolResponse, type CreditConfiguration, type CursorPaging, type CursorPagingMetadata, type CursorQuery, type CursorQueryPagingMethodOneOf, type Cursors, type CustomPolicy, type DeletePoolRequest, type DeletePoolResponse, type Details, type DomainEvent, type DomainEventBodyOneOf, type EligibilityCheckResult, type EligibilityCheckResultResultOneOf, EligibilityCheckResultType, type EligibilityCheckResultTypeWithLiterals, type Eligible, type EligibleBenefit, type EntityCreatedEvent, type EntityDeletedEvent, type EntityUpdatedEvent, type ExtendedFields, type FailureDetails, type Filter, type FilterFilterOneOf, type FixedIntervalPolicy, type GetEligibleBenefitsApplicationErrors, type GetEligibleBenefitsOptions, type GetEligibleBenefitsRequest, type GetEligibleBenefitsResponse, type GetPoolRequest, type GetPoolResponse, type IdentificationData, type IdentificationDataIdOneOf, IdentityType, type IdentityTypeWithLiterals, type InvalidPoolDefinitionReference, type ItemMetadata, type ItemReference, type ListPoolsRequest, ListPoolsRequestType, type ListPoolsRequestTypeWithLiterals, type ListPoolsResponse, type MaskedPool, type MessageEnvelope, type NotEnoughBalance, type Policy, type PolicyExpression, type PolicyExpressionAnd, type PolicyExpressionEvaluatedToFalse, type PolicyExpressionExpressionOneOf, type PolicyExpressionNot, type PolicyExpressionOr, PolicyExpressionType, type PolicyExpressionTypeWithLiterals, type PolicyPolicyOneOf, type Pool, type PoolDefinitionAndProgramDefinition, type PoolDefinitionLookupId, type PoolDefinitionLookupIdIdOneOf, type PoolEnded, type PoolNotActive, type PoolNotFound, PoolOrigin, type PoolOriginWithLiterals, type PoolPaused, type PoolProgramInfo, type PoolProvisionJobFinished, type PoolProvisioned, type PoolRenewalAction, type PoolRenewalActionActionOneOf, PoolRenewalActionType, type PoolRenewalActionTypeWithLiterals, type PoolRenewed, type PoolResumed, PoolSelectorType, type PoolSelectorTypeWithLiterals, PoolStatus, type PoolStatusUpdateJobFinished, type PoolStatusUpdateJobFinishedContextOneOf, type PoolStatusWithLiterals, type PoolWithItems, type PoolsQueryBuilder, type PoolsQueryResult, type ProgramDefinitionInfo, type ProgramInfo, type ProvisionPoolsForProgramRequest, type ProvisionPoolsForProgramResponse, type ProvisionPoolsForProgramResponseResultOneOf, ProvisionPoolsForProgramResponseType, type ProvisionPoolsForProgramResponseTypeWithLiterals, type QueryPoolsRequest, type QueryPoolsResponse, type RateLimitedPolicy, type RateLimitedPolicyPeriodOneOf, RateLimitedPolicyType, type RateLimitedPolicyTypeWithLiterals, type RedeemBenefitApplicationErrors, type RedeemBenefitOptions, type RedeemBenefitRequest, type RedeemBenefitResponse, type RedemptionDetails, type ReleaseBenefitReservationRequest, type ReleaseBenefitReservationResponse, type RenewPoolsForProgramRequest, type RenewPoolsForProgramResponse, type ReserveBenefitRequest, type ReserveBenefitResponse, type RestoreInfo, type RolloverConfiguration, SortOrder, type SortOrderWithLiterals, type Sorting, type SyncResult, Type, type TypeWithLiterals, type Update, type UpdatePool, type UpdatePoolRequest, type UpdatePoolResponse, type UpdatePoolStatusRequest, type UpdatePoolStatusRequestPoolSelectorOneOf, type UpdatePoolStatusResponse, WebhookIdentityType, type WebhookIdentityTypeWithLiterals, WeekDay, type WeekDayWithLiterals, bulkCheckBenefitEligibility, bulkUpdatePools, checkBenefitEligibility, getEligibleBenefits, getPool, queryPools, redeemBenefit, updatePool };
|
|
@@ -476,6 +476,7 @@ var PoolStatus = /* @__PURE__ */ ((PoolStatus2) => {
|
|
|
476
476
|
PoolStatus2["ENDED"] = "ENDED";
|
|
477
477
|
PoolStatus2["PROVISIONING"] = "PROVISIONING";
|
|
478
478
|
PoolStatus2["RENEWING"] = "RENEWING";
|
|
479
|
+
PoolStatus2["PENDING"] = "PENDING";
|
|
479
480
|
return PoolStatus2;
|
|
480
481
|
})(PoolStatus || {});
|
|
481
482
|
var IdentityType = /* @__PURE__ */ ((IdentityType2) => {
|
|
@@ -523,6 +524,12 @@ var PoolOrigin = /* @__PURE__ */ ((PoolOrigin2) => {
|
|
|
523
524
|
PoolOrigin2["CASCADE"] = "CASCADE";
|
|
524
525
|
return PoolOrigin2;
|
|
525
526
|
})(PoolOrigin || {});
|
|
527
|
+
var PoolRenewalActionType = /* @__PURE__ */ ((PoolRenewalActionType2) => {
|
|
528
|
+
PoolRenewalActionType2["UNDEFINED"] = "UNDEFINED";
|
|
529
|
+
PoolRenewalActionType2["END"] = "END";
|
|
530
|
+
PoolRenewalActionType2["UPDATE"] = "UPDATE";
|
|
531
|
+
return PoolRenewalActionType2;
|
|
532
|
+
})(PoolRenewalActionType || {});
|
|
526
533
|
var SortOrder = /* @__PURE__ */ ((SortOrder2) => {
|
|
527
534
|
SortOrder2["ASC"] = "ASC";
|
|
528
535
|
SortOrder2["DESC"] = "DESC";
|
|
@@ -840,6 +847,7 @@ export {
|
|
|
840
847
|
ListPoolsRequestType,
|
|
841
848
|
PolicyExpressionType,
|
|
842
849
|
PoolOrigin,
|
|
850
|
+
PoolRenewalActionType,
|
|
843
851
|
PoolSelectorType,
|
|
844
852
|
PoolStatus,
|
|
845
853
|
ProvisionPoolsForProgramResponseType,
|