@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
|
@@ -1152,8 +1152,15 @@ interface V1ShippingPrice {
|
|
|
1152
1152
|
* @readonly
|
|
1153
1153
|
*/
|
|
1154
1154
|
totalPriceAfterTax?: Price;
|
|
1155
|
-
/**
|
|
1155
|
+
/**
|
|
1156
|
+
* Tax details.
|
|
1157
|
+
* @deprecated Tax details.
|
|
1158
|
+
* @replacedBy tax_info
|
|
1159
|
+
* @targetRemovalDate 2026-03-30
|
|
1160
|
+
*/
|
|
1156
1161
|
taxDetails?: ItemTaxFullDetails;
|
|
1162
|
+
/** Represents all the relevant tax details for a shipping. */
|
|
1163
|
+
taxInfo?: LineItemTaxInfo;
|
|
1157
1164
|
/**
|
|
1158
1165
|
* Shipping discount before tax.
|
|
1159
1166
|
* @readonly
|
|
@@ -1239,8 +1246,15 @@ interface AdditionalFee {
|
|
|
1239
1246
|
name?: string;
|
|
1240
1247
|
/** Additional fee's price. */
|
|
1241
1248
|
price?: Price;
|
|
1242
|
-
/**
|
|
1249
|
+
/**
|
|
1250
|
+
* Tax details.
|
|
1251
|
+
* @deprecated Tax details.
|
|
1252
|
+
* @replacedBy tax_info
|
|
1253
|
+
* @targetRemovalDate 2026-03-30
|
|
1254
|
+
*/
|
|
1243
1255
|
taxDetails?: ItemTaxFullDetails;
|
|
1256
|
+
/** Represents all the relevant tax details for additional fee. */
|
|
1257
|
+
taxInfo?: LineItemTaxInfo;
|
|
1244
1258
|
/**
|
|
1245
1259
|
* SPI implementer's `appId`.
|
|
1246
1260
|
* @format GUID
|