@wix/auto_sdk_ecom_checkout 1.0.145 → 1.0.147
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 +30 -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 +30 -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
|
@@ -2279,7 +2279,8 @@ async function createOrderAndCharge2(_id, options) {
|
|
|
2279
2279
|
id: _id,
|
|
2280
2280
|
paymentToken: options?.paymentToken,
|
|
2281
2281
|
savePaymentMethod: options?.savePaymentMethod,
|
|
2282
|
-
delayCapture: options?.delayCapture
|
|
2282
|
+
delayCapture: options?.delayCapture,
|
|
2283
|
+
inAppPurchase: options?.inAppPurchase
|
|
2283
2284
|
});
|
|
2284
2285
|
const reqOpts = createOrderAndCharge(payload);
|
|
2285
2286
|
sideEffects?.onSiteCall?.();
|
|
@@ -2296,7 +2297,8 @@ async function createOrderAndCharge2(_id, options) {
|
|
|
2296
2297
|
id: "$[0]",
|
|
2297
2298
|
paymentToken: "$[1].paymentToken",
|
|
2298
2299
|
savePaymentMethod: "$[1].savePaymentMethod",
|
|
2299
|
-
delayCapture: "$[1].delayCapture"
|
|
2300
|
+
delayCapture: "$[1].delayCapture",
|
|
2301
|
+
inAppPurchase: "$[1].inAppPurchase"
|
|
2300
2302
|
},
|
|
2301
2303
|
singleArgumentUnchanged: false
|
|
2302
2304
|
},
|