@wix/auto_sdk_ecom_checkout 1.0.155 → 1.0.157

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.
@@ -1746,6 +1746,13 @@ interface GiftCardCalculationError {
1746
1746
  obfuscatedCode?: string;
1747
1747
  /** Error details. */
1748
1748
  error?: Details;
1749
+ /**
1750
+ * Full gift card code. Echoed from the request input for correlation.
1751
+ * @internal
1752
+ * @minLength 8
1753
+ * @maxLength 20
1754
+ */
1755
+ code?: string;
1749
1756
  }
1750
1757
  interface GiftCard {
1751
1758
  /**
@@ -1771,6 +1778,13 @@ interface GiftCard {
1771
1778
  externalId?: string | null;
1772
1779
  /** Requested amount to redeem from the gift card. */
1773
1780
  requestedAmount?: MultiCurrencyPrice;
1781
+ /**
1782
+ * Full gift card code. Echoed from the request input for correlation.
1783
+ * @internal
1784
+ * @minLength 8
1785
+ * @maxLength 20
1786
+ */
1787
+ code?: string;
1774
1788
  }
1775
1789
  interface AppliedDiscount extends AppliedDiscountDiscountSourceOneOf {
1776
1790
  /** Coupon details. */
@@ -2267,7 +2281,7 @@ interface Benefit extends BenefitQuotaOneOf {
2267
2281
  * Identifier for this benefit. Must be unique within the response so the response-level `coverages`
2268
2282
  * (`LineItemCoverage.benefit_id`) can reference it unambiguously across memberships/plans.
2269
2283
  * @minLength 1
2270
- * @maxLength 100
2284
+ * @maxLength 200
2271
2285
  */
2272
2286
  benefitId?: string;
2273
2287
  /**