@wix/auto_sdk_ecom_checkout 1.0.114 → 1.0.116
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 +7 -1
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +7 -1
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +7 -1
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +7 -1
- 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 +13 -1
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +7 -1
- 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 +13 -1
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +7 -1
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -974,6 +974,12 @@ interface CatalogOverrideFields {
|
|
|
974
974
|
* Default: `false`
|
|
975
975
|
*/
|
|
976
976
|
savePaymentMethod?: boolean | null;
|
|
977
|
+
/**
|
|
978
|
+
* ID of the app managing the inventory.
|
|
979
|
+
* @internal
|
|
980
|
+
* @format GUID
|
|
981
|
+
*/
|
|
982
|
+
inventoryAppId?: string | null;
|
|
977
983
|
}
|
|
978
984
|
interface PaymentOption {
|
|
979
985
|
/**
|
|
@@ -2418,9 +2424,15 @@ interface LineItemAdded {
|
|
|
2418
2424
|
* @minLength 1
|
|
2419
2425
|
* @maxLength 36
|
|
2420
2426
|
*/
|
|
2421
|
-
|
|
2427
|
+
catalogAppId?: string | null;
|
|
2422
2428
|
/** Whether the line item is a custom line item. */
|
|
2423
2429
|
customLineItem?: boolean;
|
|
2430
|
+
/**
|
|
2431
|
+
* ID of the app that added the line item to the cart (from the identity context).
|
|
2432
|
+
* @minLength 1
|
|
2433
|
+
* @maxLength 36
|
|
2434
|
+
*/
|
|
2435
|
+
appDefId?: string | null;
|
|
2424
2436
|
}
|
|
2425
2437
|
interface CouponAdded {
|
|
2426
2438
|
/**
|