@wix/auto_sdk_ecom_cart 1.0.63 → 1.0.65

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.
@@ -4,6 +4,7 @@ interface Cart {
4
4
  /**
5
5
  * Cart ID.
6
6
  * @format GUID
7
+ * @readonly
7
8
  */
8
9
  _id?: string | null;
9
10
  /**
@@ -1490,6 +1491,12 @@ interface EstimateTotalsResponse {
1490
1491
  * @readonly
1491
1492
  */
1492
1493
  violations?: Violation[];
1494
+ /**
1495
+ * Payment for subscriptions after free trial period.
1496
+ * @internal
1497
+ * @readonly
1498
+ */
1499
+ payAfterFreeTrial?: PriceSummary;
1493
1500
  }
1494
1501
  interface CalculatedLineItem {
1495
1502
  /** Line item ID. */
@@ -3133,6 +3140,7 @@ interface UpdateCartOptions {
3133
3140
  /**
3134
3141
  * Cart ID.
3135
3142
  * @format GUID
3143
+ * @readonly
3136
3144
  */
3137
3145
  _id?: string | null;
3138
3146
  /**