@wix/auto_sdk_ecom_draft-orders 1.0.170 → 1.0.171

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.
@@ -165,17 +165,6 @@ interface DraftOrder {
165
165
  * @internal
166
166
  */
167
167
  specificItemsCouponBehavior?: SpecificItemsCouponBehaviorWithLiterals;
168
- /**
169
- * Locale used for number and currency formatting of this draft order's prices, in [IETF BCP 47](https://en.wikipedia.org/wiki/IETF_language_tag) language tag format. For example, `en-US` for U.S. English.
170
- *
171
- * Copied from the source order when editing an order placed through cart or checkout, so the recalculated prices keep that order's formatting.
172
- * Empty when editing a manually created order or creating a new draft order, both of which
173
- * format with the site's locale.
174
- * @internal
175
- * @format LANGUAGE_TAG
176
- * @readonly
177
- */
178
- priceFormattingLocale?: string | null;
179
168
  }
180
169
  interface ItemDetails extends ItemDetailsChangeTypeOneOf {
181
170
  /** Whether the line item was added as part of the draft. */
@@ -3705,17 +3694,6 @@ interface Order {
3705
3694
  currency?: string | null;
3706
3695
  /** Currency conversion details. For use with multi-currency sites. */
3707
3696
  currencyConversionDetails?: CurrencyConversionDetails;
3708
- /**
3709
- * Locale used for number and currency formatting of this order's prices, in [IETF BCP 47](https://en.wikipedia.org/wiki/IETF_language_tag) language tag format. For example, `en-US` for U.S. English.
3710
- *
3711
- * Set only on orders placed through cart or checkout, where the buyer's locale determined how the prices were
3712
- * formatted, so that editing the order reproduces that formatting.
3713
- * Empty on manually created orders, which format with the site's locale.
3714
- * @internal
3715
- * @format LANGUAGE_TAG
3716
- * @readonly
3717
- */
3718
- priceFormattingLocale?: string | null;
3719
3697
  /**
3720
3698
  * Whether tax is included in line item prices.
3721
3699
  * @immutable
@@ -3907,6 +3885,15 @@ interface Order {
3907
3885
  * @immutable
3908
3886
  */
3909
3887
  imported?: boolean;
3888
+ /**
3889
+ * Whether this order is a test order, not a real purchase.
3890
+ *
3891
+ * Default: `false`
3892
+ * @internal
3893
+ * @readonly
3894
+ * @immutable
3895
+ */
3896
+ demo?: boolean;
3910
3897
  }
3911
3898
  declare enum PaymentStatus {
3912
3899
  UNSPECIFIED = "UNSPECIFIED",