@wix/auto_sdk_ecom_draft-orders 1.0.72 → 1.0.73
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 +16 -2
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +16 -2
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +16 -2
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +16 -2
- 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 +16 -2
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +16 -2
- 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 +16 -2
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +16 -2
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -1201,8 +1201,15 @@ interface V1ShippingPrice {
|
|
|
1201
1201
|
* @readonly
|
|
1202
1202
|
*/
|
|
1203
1203
|
totalPriceAfterTax?: Price;
|
|
1204
|
-
/**
|
|
1204
|
+
/**
|
|
1205
|
+
* Tax details.
|
|
1206
|
+
* @deprecated Tax details.
|
|
1207
|
+
* @replacedBy tax_info
|
|
1208
|
+
* @targetRemovalDate 2026-03-30
|
|
1209
|
+
*/
|
|
1205
1210
|
taxDetails?: ItemTaxFullDetails;
|
|
1211
|
+
/** Represents all the relevant tax details for a shipping. */
|
|
1212
|
+
taxInfo?: LineItemTaxInfo;
|
|
1206
1213
|
/**
|
|
1207
1214
|
* Shipping discount before tax.
|
|
1208
1215
|
* @readonly
|
|
@@ -1288,8 +1295,15 @@ interface AdditionalFee {
|
|
|
1288
1295
|
name?: string;
|
|
1289
1296
|
/** Additional fee's price. */
|
|
1290
1297
|
price?: Price;
|
|
1291
|
-
/**
|
|
1298
|
+
/**
|
|
1299
|
+
* Tax details.
|
|
1300
|
+
* @deprecated Tax details.
|
|
1301
|
+
* @replacedBy tax_info
|
|
1302
|
+
* @targetRemovalDate 2026-03-30
|
|
1303
|
+
*/
|
|
1292
1304
|
taxDetails?: ItemTaxFullDetails;
|
|
1305
|
+
/** Represents all the relevant tax details for additional fee. */
|
|
1306
|
+
taxInfo?: LineItemTaxInfo;
|
|
1293
1307
|
/**
|
|
1294
1308
|
* SPI implementer's `appId`.
|
|
1295
1309
|
* @format GUID
|