@wix/auto_sdk_ecom_draft-orders 1.0.154 → 1.0.156
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.
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +4 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +4 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +4 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +4 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +4 -8
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +4 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +4 -8
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +4 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -241,14 +241,6 @@ interface DescriptionLine extends DescriptionLineValueOneOf, DescriptionLineDesc
|
|
|
241
241
|
colorInfo?: Color;
|
|
242
242
|
/** Description line name. */
|
|
243
243
|
name?: DescriptionLineName;
|
|
244
|
-
/**
|
|
245
|
-
* Whether the description line originates from a modifier.
|
|
246
|
-
* @internal
|
|
247
|
-
* @deprecated Whether the description line originates from a modifier.
|
|
248
|
-
* @replacedBy none
|
|
249
|
-
* @targetRemovalDate 2025-12-31
|
|
250
|
-
*/
|
|
251
|
-
modifierDescriptionLine?: boolean;
|
|
252
244
|
}
|
|
253
245
|
/** @oneof */
|
|
254
246
|
interface DescriptionLineValueOneOf {
|
|
@@ -5613,6 +5605,10 @@ type CreateOrderFromDraftApplicationErrors = {
|
|
|
5613
5605
|
code?: 'SUBSCRIPTION_BUYER_INFO_REQUIRED';
|
|
5614
5606
|
description?: string;
|
|
5615
5607
|
data?: Record<string, any>;
|
|
5608
|
+
} | {
|
|
5609
|
+
code?: 'BILLING_ADDRESS_REQUIRED_FOR_TAX_CALCULATION';
|
|
5610
|
+
description?: string;
|
|
5611
|
+
data?: Record<string, any>;
|
|
5616
5612
|
};
|
|
5617
5613
|
/** @docsIgnore */
|
|
5618
5614
|
type DeleteDraftOrderApplicationErrors = {
|