@wix/auto_sdk_benefit-programs_pools 1.0.77 → 1.0.78

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.
Files changed (37) hide show
  1. package/build/cjs/index.d.ts +1 -1
  2. package/build/cjs/index.js +11 -2
  3. package/build/cjs/index.js.map +1 -1
  4. package/build/cjs/index.typings.d.ts +12 -1
  5. package/build/cjs/index.typings.js +11 -2
  6. package/build/cjs/index.typings.js.map +1 -1
  7. package/build/cjs/meta.d.ts +12 -1
  8. package/build/cjs/meta.js +7 -0
  9. package/build/cjs/meta.js.map +1 -1
  10. package/build/es/index.d.mts +1 -1
  11. package/build/es/index.mjs +10 -2
  12. package/build/es/index.mjs.map +1 -1
  13. package/build/es/index.typings.d.mts +12 -1
  14. package/build/es/index.typings.mjs +10 -2
  15. package/build/es/index.typings.mjs.map +1 -1
  16. package/build/es/meta.d.mts +12 -1
  17. package/build/es/meta.mjs +6 -0
  18. package/build/es/meta.mjs.map +1 -1
  19. package/build/internal/cjs/index.d.ts +1 -1
  20. package/build/internal/cjs/index.js +11 -2
  21. package/build/internal/cjs/index.js.map +1 -1
  22. package/build/internal/cjs/index.typings.d.ts +26 -1
  23. package/build/internal/cjs/index.typings.js +11 -2
  24. package/build/internal/cjs/index.typings.js.map +1 -1
  25. package/build/internal/cjs/meta.d.ts +19 -1
  26. package/build/internal/cjs/meta.js +7 -0
  27. package/build/internal/cjs/meta.js.map +1 -1
  28. package/build/internal/es/index.d.mts +1 -1
  29. package/build/internal/es/index.mjs +10 -2
  30. package/build/internal/es/index.mjs.map +1 -1
  31. package/build/internal/es/index.typings.d.mts +26 -1
  32. package/build/internal/es/index.typings.mjs +10 -2
  33. package/build/internal/es/index.typings.mjs.map +1 -1
  34. package/build/internal/es/meta.d.mts +19 -1
  35. package/build/internal/es/meta.mjs +6 -0
  36. package/build/internal/es/meta.mjs.map +1 -1
  37. package/package.json +2 -2
@@ -22,6 +22,7 @@ var index_exports = {};
22
22
  __export(index_exports, {
23
23
  BenefitResultType: () => BenefitResultType,
24
24
  IdentityType: () => IdentityType,
25
+ Intent: () => Intent,
25
26
  PolicyExpressionType: () => PolicyExpressionType,
26
27
  PoolOrigin: () => PoolOrigin,
27
28
  PoolRenewalActionType: () => PoolRenewalActionType,
@@ -602,6 +603,11 @@ var SortOrder = /* @__PURE__ */ ((SortOrder2) => {
602
603
  SortOrder2["DESC"] = "DESC";
603
604
  return SortOrder2;
604
605
  })(SortOrder || {});
606
+ var Intent = /* @__PURE__ */ ((Intent2) => {
607
+ Intent2["REDEMPTION"] = "REDEMPTION";
608
+ Intent2["REALLOCATION"] = "REALLOCATION";
609
+ return Intent2;
610
+ })(Intent || {});
605
611
  var BenefitResultType = /* @__PURE__ */ ((BenefitResultType2) => {
606
612
  BenefitResultType2["ELIGIBLE_BENEFIT"] = "ELIGIBLE_BENEFIT";
607
613
  BenefitResultType2["NOT_ENOUGH_BALANCE"] = "NOT_ENOUGH_BALANCE";
@@ -805,7 +811,8 @@ async function checkBenefitEligibility2(poolId, options) {
805
811
  targetDate: options?.targetDate,
806
812
  additionalData: options?.additionalData,
807
813
  beneficiary: options?.beneficiary,
808
- namespace: options?.namespace
814
+ namespace: options?.namespace,
815
+ intent: options?.intent
809
816
  });
810
817
  const reqOpts = checkBenefitEligibility(payload);
811
818
  sideEffects?.onSiteCall?.();
@@ -826,7 +833,8 @@ async function checkBenefitEligibility2(poolId, options) {
826
833
  targetDate: "$[1].targetDate",
827
834
  additionalData: "$[1].additionalData",
828
835
  beneficiary: "$[1].beneficiary",
829
- namespace: "$[1].namespace"
836
+ namespace: "$[1].namespace",
837
+ intent: "$[1].intent"
830
838
  },
831
839
  singleArgumentUnchanged: false
832
840
  },
@@ -1079,6 +1087,7 @@ var queryPools4 = /* @__PURE__ */ (0, import_rest_modules3.createRESTModule)(cus
1079
1087
  0 && (module.exports = {
1080
1088
  BenefitResultType,
1081
1089
  IdentityType,
1090
+ Intent,
1082
1091
  PolicyExpressionType,
1083
1092
  PoolOrigin,
1084
1093
  PoolRenewalActionType,