@wix/auto_sdk_ecom_cart-v-2 1.0.17 → 1.0.19
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.d.ts +5 -5
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +5 -5
- package/build/es/index.d.mts +5 -5
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +5 -5
- package/build/internal/cjs/index.d.ts +13 -13
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +18 -18
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +5 -5
- package/build/internal/es/index.d.mts +13 -13
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +18 -18
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +5 -5
- package/package.json +2 -2
package/build/cjs/index.d.ts
CHANGED
|
@@ -1236,17 +1236,17 @@ interface AddressLocation {
|
|
|
1236
1236
|
longitude?: number | null;
|
|
1237
1237
|
}
|
|
1238
1238
|
interface DeliveryMethod {
|
|
1239
|
-
/**
|
|
1240
|
-
* The carrier app id
|
|
1241
|
-
* @format GUID
|
|
1242
|
-
*/
|
|
1243
|
-
appId?: string;
|
|
1244
1239
|
/**
|
|
1245
1240
|
* Unique code that acts as an ID for a shipping rate.
|
|
1246
1241
|
* For example, `"usps_std_overnight"`.
|
|
1247
1242
|
* @maxLength 250
|
|
1248
1243
|
*/
|
|
1249
1244
|
code?: string;
|
|
1245
|
+
/**
|
|
1246
|
+
* The carrier app id
|
|
1247
|
+
* @format GUID
|
|
1248
|
+
*/
|
|
1249
|
+
appId?: string | null;
|
|
1250
1250
|
/**
|
|
1251
1251
|
* Delivery rate title.
|
|
1252
1252
|
* For example, `"USPS Standard Overnight Delivery"`, `"Standard"`, or `"First-Class Package International"`.
|