@bootpay/client-js 4.2.6 → 4.2.8
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 +12 -1
- package/bootpay-sdk.js +1 -1
- package/bootpay.js +1 -1
- package/models/bootpay-interface.d.ts +3 -1
- package/package.json +2 -2
|
@@ -193,8 +193,10 @@ export interface ExtraModel {
|
|
|
193
193
|
show_close_button?: boolean;
|
|
194
194
|
select_phone_carrier?: string;
|
|
195
195
|
phone_editable?: boolean;
|
|
196
|
-
naverpay_payment_method?: string;
|
|
197
196
|
age_limit?: number;
|
|
197
|
+
easy_payment_method?: 'card' | '카드' | 'point' | '포인트';
|
|
198
|
+
cash_receipt_type?: '소득공제' | '지출증빙';
|
|
199
|
+
identity_no?: string;
|
|
198
200
|
}
|
|
199
201
|
export interface ConfirmModel {
|
|
200
202
|
event: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bootpay/client-js",
|
|
3
|
-
"version": "4.2.
|
|
3
|
+
"version": "4.2.8",
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"types": "index.d.ts",
|
|
6
6
|
"scripts": {
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"deploy": "NODE_ENV=production ./node_modules/.bin/webpack --output-path=./dist --mode=production && gzip -kf dist/*.min.js && ./webview.sh $npm_package_version"
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
|
-
"typescript": "^4.9.
|
|
12
|
+
"typescript": "^4.9.4"
|
|
13
13
|
},
|
|
14
14
|
"devDependencies": {
|
|
15
15
|
"@webpack-cli/serve": "^1.6.1",
|