@bootpay/client-js 5.0.0-beta.1 → 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.
Files changed (54) hide show
  1. package/README.md +5 -1
  2. package/dist/index.es.js +6882 -0
  3. package/dist/index.umd.js +2 -0
  4. package/dist/package.json.d.ts +55 -0
  5. package/dist/src/bootpay-es5.d.ts +2 -0
  6. package/{bootpay-widget.d.ts → dist/src/bootpay-widget.d.ts} +2 -1
  7. package/{bootpay.d.ts → dist/src/bootpay.d.ts} +0 -2
  8. package/dist/src/index.d.ts +77 -0
  9. package/{lib → dist/src/lib}/bootpay-widget.d.ts +9 -2
  10. package/{lib → dist/src/lib}/bootpay.d.ts +1 -1
  11. package/{lib → dist/src/lib}/event/payment.d.ts +1 -2
  12. package/{lib/template/card-easy.d.ts → dist/src/lib/template/oopay.d.ts} +8 -4
  13. package/{lib → dist/src/lib}/template/payment.d.ts +0 -1
  14. package/{lib → dist/src/lib}/template/widget.d.ts +1 -0
  15. package/{models → dist/src/models}/bootpay-interface.d.ts +8 -1
  16. package/{models → dist/src/models}/bootpay-widget-interface.d.ts +11 -4
  17. package/{support → dist/src/support}/alfred-progress/index.d.ts +0 -1
  18. package/{support → dist/src/support}/environment.d.ts +1 -0
  19. package/{support/logger.d.ts → dist/src/support/event-logger.d.ts} +2 -23
  20. package/dist/src/support/logger.d.ts +21 -0
  21. package/{support → dist/src/support}/storage.d.ts +1 -0
  22. package/{support → dist/src/support}/widget-store.d.ts +8 -9
  23. package/dist/vite.config.d.ts +2 -0
  24. package/package.json +10 -5
  25. package/tsconfig.json +37 -0
  26. package/tsconfig.json.esnext +42 -0
  27. package/vite.config.ts +27 -0
  28. package/bootpay-environment.js +0 -1
  29. package/bootpay-sdk.js +0 -2
  30. package/bootpay-sdk.js.LICENSE.txt +0 -1
  31. package/bootpay-widget.js +0 -2
  32. package/bootpay-widget.js.LICENSE.txt +0 -1
  33. package/bootpay.js +0 -2
  34. package/bootpay.js.LICENSE.txt +0 -1
  35. package/dist/bootpay.d.ts +0 -2
  36. package/index.d.ts +0 -6
  37. package/index.js +0 -8
  38. /package/{bootpay-environment.d.ts → dist/src/bootpay-environment.d.ts} +0 -0
  39. /package/{bootpay-sdk.d.ts → dist/src/bootpay-sdk.d.ts} +0 -0
  40. /package/{lib → dist/src/lib}/analytics.d.ts +0 -0
  41. /package/{lib → dist/src/lib}/event/polling.d.ts +0 -0
  42. /package/{lib → dist/src/lib}/event/user-token.d.ts +0 -0
  43. /package/{lib → dist/src/lib}/event/widget.d.ts +0 -0
  44. /package/{lib → dist/src/lib}/locale/message.d.ts +0 -0
  45. /package/{lib → dist/src/lib}/template/user-token.d.ts +0 -0
  46. /package/{models → dist/src/models}/bootpay-sdk-interface.d.ts +0 -0
  47. /package/{models → dist/src/models}/const.d.ts +0 -0
  48. /package/{support → dist/src/support}/bootpay-manager.d.ts +0 -0
  49. /package/{support → dist/src/support}/event.d.ts +0 -0
  50. /package/{support → dist/src/support}/resource.d.ts +0 -0
  51. /package/{support → dist/src/support}/template-manager.d.ts +0 -0
  52. /package/{support → dist/src/support}/util.d.ts +0 -0
  53. /package/{test → dist/src/test}/index.d.ts +0 -0
  54. /package/{test → dist/src/test}/moduleRequire.d.ts +0 -0
package/README.md CHANGED
@@ -2,7 +2,11 @@
2
2
 
3
3
  ## Change Log
4
4
 
5
- ### 4.3.3 ( Stable Latest )
5
+ ### 4.3.4 ( Stable Latest )
6
+
7
+ * Utf8 내부 함수 동작시 stringify override 해서 사용하는 프레임워크 혹은 솔루션의 경우 JSON 파싱이 안되는 문제 해결
8
+
9
+ ### 4.3.3
6
10
 
7
11
  * 보안이슈로 eval -> reduce key access 방식으로 변경
8
12