@bootpay/client-js 5.1.1 → 5.1.4
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 +13 -1
- package/dist/index.es.js +1476 -1459
- package/dist/index.umd.js +18 -18
- package/dist/package.json.d.ts +1 -1
- package/dist/src/lib/bootpay-store.d.ts +1 -0
- package/dist/src/lib/event/hooks/ex/window.d.ts +1 -0
- package/dist/src/lib/hooks/store.d.ts +5 -0
- package/dist/src/support/ex-store.d.ts +1 -1
- package/package.json +1 -1
package/dist/package.json.d.ts
CHANGED
|
@@ -4,5 +4,6 @@ export declare class BootpayStoreWindowManager extends BootpayManager {
|
|
|
4
4
|
initialize(): void;
|
|
5
5
|
render(el: string, data: RequestExModel): void;
|
|
6
6
|
hideAlert(eventName?: string): void;
|
|
7
|
+
sendEvent(eventName: string, data: any): void;
|
|
7
8
|
}
|
|
8
9
|
export declare const BootpayStoreWindow: BootpayStoreWindowManager;
|
|
@@ -7,6 +7,6 @@ export declare class ExStoreManager extends BootpayStoreManager {
|
|
|
7
7
|
setExData(el: string, data: RequestExModel): void;
|
|
8
8
|
encryptParameters(): string;
|
|
9
9
|
encryptKey(): string;
|
|
10
|
-
|
|
10
|
+
currentBootpayStoreParameters(): string;
|
|
11
11
|
}
|
|
12
12
|
export declare const ExStore: ExStoreManager;
|