@wix/auto_sdk_ecom_current-cart 1.0.170 → 1.0.172

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.
@@ -1851,6 +1851,13 @@ interface GiftCard {
1851
1851
  externalId?: string | null;
1852
1852
  /** Requested amount to redeem from the gift card. */
1853
1853
  requestedAmount?: MultiCurrencyPrice;
1854
+ /**
1855
+ * Full gift card code. Echoed from the request input for correlation.
1856
+ * @internal
1857
+ * @minLength 8
1858
+ * @maxLength 20
1859
+ */
1860
+ code?: string;
1854
1861
  }
1855
1862
  interface TaxSummary {
1856
1863
  /**
@@ -2480,6 +2487,13 @@ interface GiftCardCalculationError {
2480
2487
  obfuscatedCode?: string;
2481
2488
  /** Error details. */
2482
2489
  error?: Details;
2490
+ /**
2491
+ * Full gift card code. Echoed from the request input for correlation.
2492
+ * @internal
2493
+ * @minLength 8
2494
+ * @maxLength 20
2495
+ */
2496
+ code?: string;
2483
2497
  }
2484
2498
  interface MembershipOptions {
2485
2499
  /**
@@ -2603,7 +2617,7 @@ interface Benefit extends BenefitQuotaOneOf {
2603
2617
  * Identifier for this benefit. Must be unique within the response so the response-level `coverages`
2604
2618
  * (`LineItemCoverage.benefit_id`) can reference it unambiguously across memberships/plans.
2605
2619
  * @minLength 1
2606
- * @maxLength 100
2620
+ * @maxLength 200
2607
2621
  */
2608
2622
  benefitId?: string;
2609
2623
  /**