@wix/auto_sdk_ecom_current-cart 1.0.173 → 1.0.174

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.
@@ -2534,13 +2534,7 @@ interface Membership {
2534
2534
  * @maxLength 100
2535
2535
  */
2536
2536
  lineItemIds?: string[];
2537
- /**
2538
- * Deprecated. The new flow no longer exposes raw balances on a membership; what a membership can pay
2539
- * for is conveyed by `ExistingMembership.covered_line_items` (per-item redemption cost).
2540
- * @deprecated
2541
- * @replacedBy ExistingMembership.covered_line_items.redemption_cost
2542
- * @targetRemovalDate 2026-07-30
2543
- */
2537
+ /** Membership's payment credits (balance information). */
2544
2538
  credits?: MembershipPaymentCredits;
2545
2539
  /**
2546
2540
  * Deprecated. Use `offering_description`.
@@ -2595,8 +2589,12 @@ interface MembershipPaymentCredits {
2595
2589
  /** Membership's remaining value. */
2596
2590
  remaining?: number;
2597
2591
  /**
2598
- * The amount to redeem from the `remaining` balance (per item).
2592
+ * Deprecated. The new flow no longer exposes a per-item redemption cost on a membership's credits;
2593
+ * what a membership can pay for is conveyed by `ExistingMembership.covered_line_items` (per-item redemption cost).
2599
2594
  * @internal
2595
+ * @deprecated
2596
+ * @replacedBy ExistingMembership.covered_line_items.redemption_cost
2597
+ * @targetRemovalDate 2026-07-30
2600
2598
  */
2601
2599
  redemptionCost?: number;
2602
2600
  /**