@bootpay/client-js 5.1.0 → 5.1.1-beta.1
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.es.js +777 -775
- package/dist/index.umd.js +30 -30
- package/dist/package.json.d.ts +1 -1
- package/dist/src/bootpay-store.d.ts +7 -0
- package/dist/src/index.d.ts +3 -3
- package/dist/src/lib/{bootpay-ex.d.ts → bootpay-store.d.ts} +2 -2
- package/dist/src/lib/event/hooks/ex/router.d.ts +1 -1
- package/dist/src/lib/event/hooks/ex/window.d.ts +1 -1
- package/dist/src/lib/event/store.d.ts +6 -0
- package/dist/src/lib/template/{ex.d.ts → store.d.ts} +4 -3
- package/dist/src/support/ex-store.d.ts +1 -1
- package/package.json +1 -1
- package/dist/src/bootpay-ex.d.ts +0 -7
- package/dist/src/lib/event/ex.d.ts +0 -6
package/dist/package.json.d.ts
CHANGED
package/dist/src/index.d.ts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import Bootpay, { BootpayInterface } from './bootpay';
|
|
2
2
|
import BootpaySDK from './bootpay-sdk';
|
|
3
3
|
import BootpayEnvironment from "./bootpay-environment";
|
|
4
|
-
import
|
|
4
|
+
import BootpayStore from './bootpay-store';
|
|
5
5
|
import BootpayWidget, { BootpayWidgetInterface } from './bootpay-widget';
|
|
6
6
|
import BootpayWallet from './bootpay-wallet';
|
|
7
|
-
export { Bootpay, BootpaySDK, BootpayEnvironment, BootpayWidget,
|
|
7
|
+
export { Bootpay, BootpaySDK, BootpayEnvironment, BootpayWidget, BootpayStore, BootpayWallet };
|
|
8
8
|
export default Bootpay;
|
|
9
9
|
import { UserTokenTemplateManager } from './lib/template/user-token';
|
|
10
10
|
import { BiometricDataModel, RequestPaymentWalletModel } from './models/bootpay-sdk-interface';
|
|
@@ -30,7 +30,7 @@ declare global {
|
|
|
30
30
|
Bootpay: BootpayInterface;
|
|
31
31
|
BootpayWidget: BootpayWidgetInterface;
|
|
32
32
|
BootpaySDK: BootpaySdkInterface;
|
|
33
|
-
|
|
33
|
+
BootpayStore: BootpayStoreInterface;
|
|
34
34
|
CustomEvent: any;
|
|
35
35
|
}
|
|
36
36
|
}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { BootpayManager } from '../support/bootpay-manager';
|
|
2
|
-
export declare class
|
|
2
|
+
export declare class BootpayStoreWindowManager extends BootpayManager {
|
|
3
3
|
constructor();
|
|
4
4
|
initialize(): void;
|
|
5
5
|
render(el: string, data: RequestExModel): void;
|
|
6
6
|
hideAlert(eventName?: string): void;
|
|
7
7
|
}
|
|
8
|
-
export declare const
|
|
8
|
+
export declare const BootpayStoreWindow: BootpayStoreWindowManager;
|
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
import { TemplateManager } from '../../support/template-manager';
|
|
2
|
-
|
|
2
|
+
import { ExStoreManager } from '../../support/ex-store';
|
|
3
|
+
declare class TemplateStoreManager extends TemplateManager {
|
|
3
4
|
$template: string;
|
|
4
5
|
$iFrameId: string;
|
|
5
6
|
$iFrameContainerId: string;
|
|
6
7
|
$exOverlayId: string;
|
|
7
8
|
$exOverlayContainerId: string;
|
|
8
|
-
$exStore:
|
|
9
|
+
$exStore: ExStoreManager;
|
|
9
10
|
constructor();
|
|
10
11
|
render(): void;
|
|
11
12
|
templateRender(): void;
|
|
@@ -29,5 +30,5 @@ declare class TemplateExManager extends TemplateManager {
|
|
|
29
30
|
}): string;
|
|
30
31
|
shopUrl(): string;
|
|
31
32
|
}
|
|
32
|
-
export declare const
|
|
33
|
+
export declare const TemplateStore: TemplateStoreManager;
|
|
33
34
|
export {};
|
|
@@ -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
|
+
currentBootpayStoretraParameters(): string;
|
|
11
11
|
}
|
|
12
12
|
export declare const ExStore: ExStoreManager;
|
package/package.json
CHANGED
package/dist/src/bootpay-ex.d.ts
DELETED