@bootpay/client-js 5.0.1-rc.2 → 5.0.2-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/README.md +11 -6
- package/dist/index.es.js +488 -522
- package/dist/index.umd.js +4 -4
- package/dist/package.json.d.ts +2 -2
- package/dist/src/bootpay-widget.d.ts +5 -2
- package/dist/src/bootpay.d.ts +1 -1
- package/dist/src/index.d.ts +2 -43
- package/dist/src/lib/bootpay-widget.d.ts +5 -5
- package/dist/src/lib/locale/message.d.ts +8 -0
- package/dist/src/lib/template/payment.d.ts +0 -3
- package/dist/src/models/bootpay-interface.d.ts +3 -20
- package/dist/src/models/bootpay-widget-interface.d.ts +4 -10
- package/dist/src/support/util.d.ts +1 -0
- package/dist/src/support/widget-store.d.ts +9 -20
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -2,14 +2,19 @@
|
|
|
2
2
|
|
|
3
3
|
## Change Log
|
|
4
4
|
|
|
5
|
-
### 5.0.
|
|
5
|
+
### 5.0.2 ( Stable Latest )
|
|
6
|
+
|
|
7
|
+
* 위젯 render parameters interface partial 참조로 변경
|
|
8
|
+
|
|
9
|
+
### 5.0.1
|
|
6
10
|
|
|
7
11
|
* 위젯 현재 선택된 Parameters 값의 정보를 반환하는 함수 추가
|
|
8
12
|
* 위젯 Parameters Validate 를 별도 함수로 분리
|
|
13
|
+
* 정기결제 위젯 추가
|
|
9
14
|
|
|
10
|
-
### 5.0.0
|
|
15
|
+
### 5.0.0
|
|
11
16
|
|
|
12
|
-
* Compiler Target ES5 -> ES6 로 변경되었습니다
|
|
17
|
+
* Compiler Target ES5 -> ES6 로 변경되었습니다
|
|
13
18
|
* Typescript 4.x -> 5.x 로 업데이트 되었습니다
|
|
14
19
|
* 내부 Builder가 Babel -> Vite 로 변경 되었습니다
|
|
15
20
|
* ie11 지원이 중단되었습니다. 이제 레거시 ie11은 지원하지 않습니다. ie11을 지원하시려면 4.3.x 이전 버전을 사용해주세요
|
|
@@ -18,11 +23,11 @@
|
|
|
18
23
|
* 결제창 open_type iframe -> redirect가 기본으로 변경되었습니다. iframe을 사용하시려면 extra: { open_type: 'iframe' } 를 사용해주세요.
|
|
19
24
|
* redirect 모드 일 경우 승인 전 { event: 'confirm_ready' } 값이 { event: 'confirm' } 으로 변경 되었습니다.
|
|
20
25
|
|
|
21
|
-
### 4.3.4
|
|
26
|
+
### 4.3.4
|
|
22
27
|
|
|
23
|
-
* Utf8 내부 함수 동작시 stringify override 해서 사용하는 프레임워크 혹은 솔루션의 경우 JSON 파싱이 안되는 문제 해결
|
|
28
|
+
* Utf8 내부 함수 동작시 stringify override 해서 사용하는 프레임워크 혹은 솔루션의 경우 JSON 파싱이 안되는 문제 해결
|
|
24
29
|
|
|
25
|
-
### 4.3.3
|
|
30
|
+
### 4.3.3
|
|
26
31
|
|
|
27
32
|
* 보안이슈로 eval -> reduce key access 방식으로 변경
|
|
28
33
|
|