@wix/auto_sdk_ecom_cart-v-2 1.0.133 → 1.0.134
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 +4 -2
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.js +4 -2
- package/build/cjs/index.typings.js.map +1 -1
- package/build/es/index.mjs +4 -2
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.mjs +4 -2
- package/build/es/index.typings.mjs.map +1 -1
- package/build/internal/cjs/index.js +4 -2
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +24 -0
- package/build/internal/cjs/index.typings.js +4 -2
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/es/index.mjs +4 -2
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +24 -0
- package/build/internal/es/index.typings.mjs +4 -2
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/package.json +2 -2
package/build/cjs/index.js
CHANGED
|
@@ -2039,7 +2039,8 @@ async function placeOrder2(cartId, options) {
|
|
|
2039
2039
|
paymentToken: options?.paymentToken,
|
|
2040
2040
|
redirectUrls: options?.redirectUrls,
|
|
2041
2041
|
savePaymentMethod: options?.savePaymentMethod,
|
|
2042
|
-
delayCapture: options?.delayCapture
|
|
2042
|
+
delayCapture: options?.delayCapture,
|
|
2043
|
+
inAppPurchase: options?.inAppPurchase
|
|
2043
2044
|
});
|
|
2044
2045
|
const reqOpts = placeOrder(payload);
|
|
2045
2046
|
sideEffects?.onSiteCall?.();
|
|
@@ -2058,7 +2059,8 @@ async function placeOrder2(cartId, options) {
|
|
|
2058
2059
|
paymentToken: "$[1].paymentToken",
|
|
2059
2060
|
redirectUrls: "$[1].redirectUrls",
|
|
2060
2061
|
savePaymentMethod: "$[1].savePaymentMethod",
|
|
2061
|
-
delayCapture: "$[1].delayCapture"
|
|
2062
|
+
delayCapture: "$[1].delayCapture",
|
|
2063
|
+
inAppPurchase: "$[1].inAppPurchase"
|
|
2062
2064
|
},
|
|
2063
2065
|
singleArgumentUnchanged: false
|
|
2064
2066
|
},
|