@spot-flow/checkout-inline-js 0.1.43 → 0.1.44
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/README.md +2 -2
- package/dist/checkout-inline.es.js +1284 -1266
- package/dist/checkout-inline.js +398 -398
- package/dist/modules/Card.d.ts +2 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -25,7 +25,7 @@ npm install @spot-flow/checkout-inline-js
|
|
|
25
25
|
import { CheckoutForm } from "@spot-flow/checkout-inline-js";
|
|
26
26
|
|
|
27
27
|
const { CheckoutForm } = SpotflowCheckout;
|
|
28
|
-
const checkout = new CheckoutForm(
|
|
28
|
+
const checkout = new CheckoutForm();
|
|
29
29
|
checkout.setup({
|
|
30
30
|
email: "oluXXXXXX@gmail.com",
|
|
31
31
|
encryptionKey: "g4ryXXXXXXXXXXXX=",
|
|
@@ -59,7 +59,7 @@ Alternatively, you can include it directly in your HTML via a CDN:
|
|
|
59
59
|
|
|
60
60
|
const openCheckout = () => {
|
|
61
61
|
const { CheckoutForm } = SpotflowCheckout;
|
|
62
|
-
const checkout = new CheckoutForm(
|
|
62
|
+
const checkout = new CheckoutForm();
|
|
63
63
|
checkout.setup({
|
|
64
64
|
email: "oluXXXXXX@gmail.com",
|
|
65
65
|
encryptionKey: "g4ryXXXXXXXXXXXX=",
|