@wix/auto_sdk_ecom_draft-orders 1.0.71 → 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.
@@ -1201,8 +1201,15 @@ interface V1ShippingPrice {
1201
1201
  * @readonly
1202
1202
  */
1203
1203
  totalPriceAfterTax?: Price;
1204
- /** Tax details. */
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
- /** Tax details. */
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
@@ -109,6 +109,18 @@ function resolveComWixEcomOrdersDraftV1DraftOrdersUrl(opts) {
109
109
  srcPath: "/ecom/v1/draft-orders",
110
110
  destPath: "/v1/draft-orders"
111
111
  }
112
+ ],
113
+ "*.dev.wix-code.com": [
114
+ {
115
+ srcPath: "/ecom/v1/draft-orders",
116
+ destPath: "/v1/draft-orders"
117
+ }
118
+ ],
119
+ _: [
120
+ {
121
+ srcPath: "/ecom/v1/draft-orders",
122
+ destPath: "/v1/draft-orders"
123
+ }
112
124
  ]
113
125
  };
114
126
  return (0, import_rest_modules2.resolveUrl)(Object.assign(opts, { domainToMappings }));