@bootpay/client-js 5.2.0-beta.8 → 5.2.0-rc.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.
Files changed (63) hide show
  1. package/.gitmodules +3 -0
  2. package/dist/index.d.ts +3 -0
  3. package/dist/{index.es.js → index.mjs} +3984 -2861
  4. package/dist/index.umd.js +47 -64
  5. package/dist/src/bootpay-environment.d.ts +1 -0
  6. package/dist/src/bootpay-es5.d.ts +2 -1
  7. package/dist/src/bootpay-sdk.d.ts +3 -2
  8. package/dist/src/bootpay-widget.d.ts +4 -2
  9. package/dist/src/bootpay.d.ts +4 -3
  10. package/dist/src/index.d.ts +11 -12
  11. package/dist/src/lib/analytics.d.ts +4 -3
  12. package/dist/src/lib/bootpay-widget.d.ts +4 -3
  13. package/dist/src/lib/bootpay.d.ts +4 -3
  14. package/dist/src/lib/event/hooks/widget/message.d.ts +11 -3
  15. package/dist/src/lib/event/payment.d.ts +39 -2
  16. package/dist/src/lib/event/polling.d.ts +3 -2
  17. package/dist/src/lib/event/user-token.d.ts +8 -1
  18. package/dist/src/lib/event/widget.d.ts +2 -1
  19. package/dist/src/lib/template/brandpay.d.ts +15 -5
  20. package/dist/src/lib/template/payment.d.ts +28 -3
  21. package/dist/src/lib/template/user-token.d.ts +20 -4
  22. package/dist/src/lib/template/widget.d.ts +6 -6
  23. package/dist/src/support/event-logger.d.ts +3 -2
  24. package/dist/src/support/hooks/widget-hooks.d.ts +9 -0
  25. package/dist/src/support/stores/widget-store.d.ts +23 -4
  26. package/dist/src/types/bootpay-interface.d.ts +299 -0
  27. package/dist/src/types/bootpay-sdk-interface.d.ts +17 -0
  28. package/dist/src/types/bootpay-widget-interface.d.ts +121 -0
  29. package/dist/src/{support → vendor/components}/alfred-progress/index.d.ts +2 -1
  30. package/dist/src/{lib/template → vendor/components}/confirm-modal.d.ts +3 -2
  31. package/dist/src/{lib/template → vendor/components}/modal.d.ts +3 -2
  32. package/dist/src/vendor/components/slider/hooks/slider/event.d.ts +4 -0
  33. package/dist/src/vendor/components/slider/index.d.ts +7 -0
  34. package/dist/src/vendor/components/slider/template/slider.d.ts +20 -0
  35. package/dist/src/vendor/mixins/bootpay-commerce.d.ts +11 -0
  36. package/dist/src/{support → vendor/mixins}/event.d.ts +4 -1
  37. package/dist/src/vendor/mixins/ex-commerce.d.ts +13 -0
  38. package/dist/src/vendor/mixins/hook.d.ts +12 -0
  39. package/dist/src/{support → vendor/mixins}/resource.d.ts +1 -0
  40. package/dist/src/vendor/mixins/session.d.ts +16 -0
  41. package/dist/src/{support → vendor/mixins}/storage.d.ts +2 -1
  42. package/dist/src/{support → vendor/mixins}/template-manager.d.ts +10 -2
  43. package/dist/src/vendor/types/slider-interface.d.ts +12 -0
  44. package/package.json +14 -4
  45. package/tsconfig.json +15 -3
  46. package/vite.config.ts +14 -9
  47. package/dist/package.json.d.ts +0 -56
  48. package/dist/src/bootpay-store.d.ts +0 -7
  49. package/dist/src/lib/bootpay-store.d.ts +0 -9
  50. package/dist/src/lib/event/hooks/ex/router.d.ts +0 -7
  51. package/dist/src/lib/event/hooks/ex/window.d.ts +0 -22
  52. package/dist/src/lib/event/store.d.ts +0 -6
  53. package/dist/src/lib/hooks/store.d.ts +0 -5
  54. package/dist/src/lib/template/store.d.ts +0 -34
  55. package/dist/src/support/ex-store.d.ts +0 -12
  56. package/dist/src/support/stores/bootpay-store.d.ts +0 -7
  57. package/dist/src/support/stores/ex-store.d.ts +0 -1
  58. package/dist/src/support/widget-store.d.ts +0 -20
  59. package/dist/vite.config.d.ts +0 -2
  60. /package/dist/src/{support → vendor/mixins}/bootpay-manager.d.ts +0 -0
  61. /package/dist/src/{support → vendor/mixins}/logger.d.ts +0 -0
  62. /package/dist/src/{support → vendor/mixins}/util.d.ts +0 -0
  63. /package/dist/src/{models → vendor/models}/const.d.ts +0 -0
package/.gitmodules ADDED
@@ -0,0 +1,3 @@
1
+ [submodule "src/vendor"]
2
+ path = src/vendor
3
+ url = https://git.bootpay.co.kr/bootpay/foundation-sdk-js
@@ -0,0 +1,3 @@
1
+ export * from './src/index'
2
+ import Bootpay from './src/index'
3
+ export default Bootpay