paygate-checkout-sdk 0.0.1 → 0.0.3
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/dist/index.esm.jsx +7 -1
- package/dist/index.esm.jsx.map +1 -1
- package/dist/index.iife.jsx +1 -1
- package/dist/index.iife.jsx.map +1 -1
- package/dist/index.jsx +7 -1
- package/dist/index.jsx.map +1 -1
- package/package.json +4 -2
package/dist/index.esm.jsx
CHANGED
|
@@ -7285,9 +7285,15 @@ const setup = (config) => {
|
|
|
7285
7285
|
console.error(`Paygate SDK: Element with id "${targetId}" not found.`);
|
|
7286
7286
|
}
|
|
7287
7287
|
};
|
|
7288
|
-
const
|
|
7288
|
+
const sdk = {
|
|
7289
7289
|
setup,
|
|
7290
7290
|
};
|
|
7291
|
+
const PaygateSdk = sdk;
|
|
7292
|
+
if (typeof window !== 'undefined') {
|
|
7293
|
+
window.PaygateCheckoutSDK = {
|
|
7294
|
+
PaygateSdk: sdk,
|
|
7295
|
+
};
|
|
7296
|
+
}
|
|
7291
7297
|
|
|
7292
7298
|
export { PaygateSdk };
|
|
7293
7299
|
//# sourceMappingURL=index.esm.jsx.map
|