@bootpay/client-js 4.2.4 → 4.2.6

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.
@@ -194,6 +194,7 @@ export interface ExtraModel {
194
194
  select_phone_carrier?: string;
195
195
  phone_editable?: boolean;
196
196
  naverpay_payment_method?: string;
197
+ age_limit?: number;
197
198
  }
198
199
  export interface ConfirmModel {
199
200
  event: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bootpay/client-js",
3
- "version": "4.2.4",
3
+ "version": "4.2.6",
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.7.4"
12
+ "typescript": "^4.9.3"
13
13
  },
14
14
  "devDependencies": {
15
15
  "@webpack-cli/serve": "^1.6.1",
@@ -3,7 +3,7 @@ interface EnvironmentMode {
3
3
  stage: string;
4
4
  production: string;
5
5
  }
6
- export declare type SdkKeyType = 'android' | 'android_react_native' | 'android_flutter' | 'android_unity' | 'ios' | 'ios_react_native' | 'ios_flutter' | 'ios_unity' | 'ios_objc' | 'ios_swift_ui' | 'mac_swift' | 'mac_flutter';
6
+ export type SdkKeyType = 'android' | 'android_react_native' | 'android_flutter' | 'android_unity' | 'ios' | 'ios_react_native' | 'ios_flutter' | 'ios_unity' | 'ios_objc' | 'ios_swift_ui' | 'mac_swift' | 'mac_flutter';
7
7
  interface SdkNameInterface {
8
8
  android: 100;
9
9
  android_react_native: 101;