@bootpay/client-js 4.2.2 → 4.2.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 +8 -1
- package/bootpay-sdk.js +1 -1
- package/bootpay.js +1 -1
- package/lib/template/payment.d.ts +6 -0
- package/models/bootpay-interface.d.ts +1 -0
- package/package.json +8 -7
|
@@ -120,6 +120,12 @@ declare class TemplatePaymentManager extends TemplateManager {
|
|
|
120
120
|
* @date: 2021-05-18
|
|
121
121
|
*/
|
|
122
122
|
iFrameResize(resizeData: any): void;
|
|
123
|
+
/**
|
|
124
|
+
* iFrame Custom Style 추가
|
|
125
|
+
* Comment by GOSOMI
|
|
126
|
+
* @date: 2022-09-30
|
|
127
|
+
*/
|
|
128
|
+
iFrameSetStyle(styles: any): void;
|
|
123
129
|
/**
|
|
124
130
|
* 결제 iFrame창을 감춘다
|
|
125
131
|
* Comment by GOSOMI
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bootpay/client-js",
|
|
3
|
-
"version": "4.2.
|
|
3
|
+
"version": "4.2.4",
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"types": "index.d.ts",
|
|
6
6
|
"scripts": {
|
|
@@ -21,12 +21,13 @@
|
|
|
21
21
|
"@types/crypto-js": "^4.0.1",
|
|
22
22
|
"@types/axios": "^0.14.0",
|
|
23
23
|
"@babel/core": "^7.13.15",
|
|
24
|
-
"@babel/plugin-transform-regenerator": "^7.
|
|
25
|
-
"@babel/plugin-transform-runtime": "^7.
|
|
26
|
-
"@babel/
|
|
27
|
-
"@babel/preset-
|
|
28
|
-
"@babel/
|
|
29
|
-
"@babel/
|
|
24
|
+
"@babel/plugin-transform-regenerator": "^7.18.6",
|
|
25
|
+
"@babel/plugin-transform-runtime": "^7.18.10",
|
|
26
|
+
"@babel/plugin-transform-object-assign": "^7.18.6",
|
|
27
|
+
"@babel/preset-env": "^7.18.10",
|
|
28
|
+
"@babel/preset-typescript": "^7.18.6",
|
|
29
|
+
"@babel/runtime-corejs3": "^7.18.9",
|
|
30
|
+
"@babel/plugin-transform-classes": "^7.18.9",
|
|
30
31
|
"core-js": "^3.10.0",
|
|
31
32
|
"babel-loader": "^8.2.3",
|
|
32
33
|
"css-loader": "^6.6.0",
|