@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.
@@ -1152,8 +1152,15 @@ interface V1ShippingPrice {
1152
1152
  * @readonly
1153
1153
  */
1154
1154
  totalPriceAfterTax?: Price;
1155
- /** Tax details. */
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
- /** Tax details. */
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
package/build/cjs/meta.js CHANGED
@@ -104,6 +104,18 @@ function resolveComWixEcomOrdersDraftV1DraftOrdersUrl(opts) {
104
104
  srcPath: "/ecom/v1/draft-orders",
105
105
  destPath: "/v1/draft-orders"
106
106
  }
107
+ ],
108
+ "*.dev.wix-code.com": [
109
+ {
110
+ srcPath: "/ecom/v1/draft-orders",
111
+ destPath: "/v1/draft-orders"
112
+ }
113
+ ],
114
+ _: [
115
+ {
116
+ srcPath: "/ecom/v1/draft-orders",
117
+ destPath: "/v1/draft-orders"
118
+ }
107
119
  ]
108
120
  };
109
121
  return (0, import_rest_modules2.resolveUrl)(Object.assign(opts, { domainToMappings }));