@bootpay/client-js 5.2.0-rc.2 → 5.2.0-rc.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.mjs +1709 -1706
- package/dist/index.umd.js +14 -14
- package/dist/src/bootpay.d.ts +1 -1
- package/dist/src/lib/template/payment.d.ts +3 -1
- package/dist/src/types/bootpay-interface.d.ts +3 -0
- package/package.json +1 -1
package/dist/src/bootpay.d.ts
CHANGED
|
@@ -22,7 +22,7 @@ export interface BootpayInterface {
|
|
|
22
22
|
send(data: BootpayAnalyticsModel): Promise<any>;
|
|
23
23
|
login(data: BootpayAnalyticsUserModel): Promise<any>;
|
|
24
24
|
logout(): void;
|
|
25
|
-
readyToPopup(
|
|
25
|
+
readyToPopup(): void;
|
|
26
26
|
getCurrentUUID(): string | undefined;
|
|
27
27
|
setLocale(locale: string): void;
|
|
28
28
|
dismiss(closedEvent: boolean): void;
|
|
@@ -61,7 +61,9 @@ declare class TemplatePaymentManager extends TemplateManager {
|
|
|
61
61
|
* Comment by GOSOMI
|
|
62
62
|
* @date: 2023-04-13
|
|
63
63
|
*/
|
|
64
|
-
startPaymentUrl(url: string, mode?: string
|
|
64
|
+
startPaymentUrl(url: string, mode?: string, extra?: {
|
|
65
|
+
popup_immediately: boolean;
|
|
66
|
+
}): Promise<ConfirmModel>;
|
|
65
67
|
/**
|
|
66
68
|
* 팝업창을 띄우기 위한 준비
|
|
67
69
|
* Comment by GOSOMI
|
|
@@ -48,6 +48,9 @@ export interface RequestPaymentModel extends RequestPaymentBaseModel {
|
|
|
48
48
|
export interface RequestPaymentUrlModel {
|
|
49
49
|
application_id?: string
|
|
50
50
|
url?: string
|
|
51
|
+
extra?: {
|
|
52
|
+
popup_immediately?: boolean
|
|
53
|
+
}
|
|
51
54
|
}
|
|
52
55
|
|
|
53
56
|
export interface RequestSubscriptionModel extends RequestPaymentBaseModel {
|