@bootpay/client-js 4.4.0 → 5.0.0-beta.10
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 +14 -2
- package/dist/index.es.js +6882 -0
- package/dist/index.umd.js +2 -0
- package/dist/package.json.d.ts +55 -0
- package/dist/src/bootpay-es5.d.ts +2 -0
- package/{bootpay-widget.d.ts → dist/src/bootpay-widget.d.ts} +4 -2
- package/{bootpay.d.ts → dist/src/bootpay.d.ts} +1 -2
- package/dist/src/index.d.ts +77 -0
- package/{lib → dist/src/lib}/bootpay-widget.d.ts +15 -3
- package/{lib → dist/src/lib}/bootpay.d.ts +1 -1
- package/{lib → dist/src/lib}/event/payment.d.ts +1 -2
- package/{lib → dist/src/lib}/event/widget.d.ts +2 -0
- package/{lib → dist/src/lib}/locale/message.d.ts +4 -0
- package/{lib/template/card-easy.d.ts → dist/src/lib/template/oopay.d.ts} +8 -5
- package/{lib → dist/src/lib}/template/payment.d.ts +0 -1
- package/{lib → dist/src/lib}/template/widget.d.ts +1 -0
- package/{models → dist/src/models}/bootpay-interface.d.ts +12 -1
- package/dist/src/models/bootpay-widget-interface.d.ts +25 -0
- package/{support → dist/src/support}/alfred-progress/index.d.ts +0 -1
- package/{support → dist/src/support}/environment.d.ts +1 -0
- package/{support/logger.d.ts → dist/src/support/event-logger.d.ts} +2 -23
- package/dist/src/support/logger.d.ts +21 -0
- package/{support → dist/src/support}/storage.d.ts +1 -0
- package/{support → dist/src/support}/widget-store.d.ts +13 -1
- package/dist/vite.config.d.ts +2 -0
- package/package.json +12 -7
- package/tsconfig.json +37 -0
- package/tsconfig.json.esnext +42 -0
- package/vite.config.ts +27 -0
- package/bootpay-environment.js +0 -1
- package/bootpay-sdk.js +0 -2
- package/bootpay-sdk.js.LICENSE.txt +0 -1
- package/bootpay-widget.js +0 -2
- package/bootpay-widget.js.LICENSE.txt +0 -1
- package/bootpay.js +0 -2
- package/bootpay.js.LICENSE.txt +0 -1
- package/dist/bootpay.d.ts +0 -2
- package/index.d.ts +0 -6
- package/index.js +0 -8
- package/models/bootpay-widget-interface.d.ts +0 -8
- /package/{bootpay-environment.d.ts → dist/src/bootpay-environment.d.ts} +0 -0
- /package/{bootpay-sdk.d.ts → dist/src/bootpay-sdk.d.ts} +0 -0
- /package/{lib → dist/src/lib}/analytics.d.ts +0 -0
- /package/{lib → dist/src/lib}/event/polling.d.ts +0 -0
- /package/{lib → dist/src/lib}/event/user-token.d.ts +0 -0
- /package/{lib → dist/src/lib}/template/user-token.d.ts +0 -0
- /package/{models → dist/src/models}/bootpay-sdk-interface.d.ts +0 -0
- /package/{models → dist/src/models}/const.d.ts +0 -0
- /package/{support → dist/src/support}/bootpay-manager.d.ts +0 -0
- /package/{support → dist/src/support}/event.d.ts +0 -0
- /package/{support → dist/src/support}/resource.d.ts +0 -0
- /package/{support → dist/src/support}/template-manager.d.ts +0 -0
- /package/{support → dist/src/support}/util.d.ts +0 -0
- /package/{test → dist/src/test}/index.d.ts +0 -0
- /package/{test → dist/src/test}/moduleRequire.d.ts +0 -0
package/README.md
CHANGED
|
@@ -2,11 +2,23 @@
|
|
|
2
2
|
|
|
3
3
|
## Change Log
|
|
4
4
|
|
|
5
|
-
### 4.3.
|
|
5
|
+
### 4.3.4 ( Stable Latest )
|
|
6
|
+
|
|
7
|
+
* Utf8 내부 함수 동작시 stringify override 해서 사용하는 프레임워크 혹은 솔루션의 경우 JSON 파싱이 안되는 문제 해결
|
|
8
|
+
|
|
9
|
+
### 4.3.3
|
|
10
|
+
|
|
11
|
+
* 보안이슈로 eval -> reduce key access 방식으로 변경
|
|
12
|
+
|
|
13
|
+
### 4.3.2
|
|
14
|
+
|
|
15
|
+
* 결제창 CSS background alpha 값 0.8 -> 0.7 수정
|
|
16
|
+
|
|
17
|
+
### 4.3.1
|
|
6
18
|
|
|
7
19
|
* done / issue 이벤트 발생되면 message 이벤트 모두 초기화
|
|
8
20
|
|
|
9
|
-
### 4.3.0
|
|
21
|
+
### 4.3.0
|
|
10
22
|
|
|
11
23
|
* REST API로 결제 요청 후 사용하는 requestPaymentUrl 함수 추가
|
|
12
24
|
* 결제창 background-color CSS 오타 수정
|