@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. */
@@ -3658,17 +3647,6 @@ interface Order {
3658
3647
  currency?: string | null;
3659
3648
  /** Currency conversion details. For use with multi-currency sites. */
3660
3649
  currencyConversionDetails?: CurrencyConversionDetails;
3661
- /**
3662
- * 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.
3663
- *
3664
- * Set only on orders placed through cart or checkout, where the buyer's locale determined how the prices were
3665
- * formatted, so that editing the order reproduces that formatting.
3666
- * Empty on manually created orders, which format with the site's locale.
3667
- * @internal
3668
- * @format LANGUAGE_TAG
3669
- * @readonly
3670
- */
3671
- priceFormattingLocale?: string | null;
3672
3650
  /**
3673
3651
  * Whether tax is included in line item prices.
3674
3652
  * @immutable
@@ -3860,6 +3838,15 @@ interface Order {
3860
3838
  * @immutable
3861
3839
  */
3862
3840
  imported?: boolean;
3841
+ /**
3842
+ * Whether this order is a test order, not a real purchase.
3843
+ *
3844
+ * Default: `false`
3845
+ * @internal
3846
+ * @readonly
3847
+ * @immutable
3848
+ */
3849
+ demo?: boolean;
3863
3850
  }
3864
3851
  declare enum PaymentStatus {
3865
3852
  UNSPECIFIED = "UNSPECIFIED",