@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.
@@ -1128,8 +1128,15 @@ interface V1ShippingPrice {
1128
1128
  * @readonly
1129
1129
  */
1130
1130
  totalPriceAfterTax?: Price;
1131
- /** Tax details. */
1131
+ /**
1132
+ * Tax details.
1133
+ * @deprecated Tax details.
1134
+ * @replacedBy tax_info
1135
+ * @targetRemovalDate 2026-03-30
1136
+ */
1132
1137
  taxDetails?: ItemTaxFullDetails;
1138
+ /** Represents all the relevant tax details for a shipping. */
1139
+ taxInfo?: LineItemTaxInfo;
1133
1140
  /**
1134
1141
  * Shipping discount before tax.
1135
1142
  * @readonly
@@ -1215,8 +1222,15 @@ interface AdditionalFee {
1215
1222
  name?: string;
1216
1223
  /** Additional fee's price. */
1217
1224
  price?: Price;
1218
- /** Tax details. */
1225
+ /**
1226
+ * Tax details.
1227
+ * @deprecated Tax details.
1228
+ * @replacedBy tax_info
1229
+ * @targetRemovalDate 2026-03-30
1230
+ */
1219
1231
  taxDetails?: ItemTaxFullDetails;
1232
+ /** Represents all the relevant tax details for additional fee. */
1233
+ taxInfo?: LineItemTaxInfo;
1220
1234
  /**
1221
1235
  * SPI implementer's `appId`.
1222
1236
  * @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 }));