@xsolla/payment-client-core 0.2.11 → 0.2.12

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 (71) hide show
  1. package/esm2020/lib/core/extended-window.interface.mjs +1 -1
  2. package/esm2020/lib/core/payment/field-names.enum.mjs +4 -1
  3. package/esm2020/lib/core/payment/form/control-status.interface.mjs +2 -0
  4. package/esm2020/lib/core/payment/initialize/initialize.service.mjs +17 -7
  5. package/esm2020/lib/core/payment/payment.interface.mjs +1 -1
  6. package/esm2020/lib/core/payment/payment.service.mjs +12 -1
  7. package/esm2020/lib/core/payment/status/listen-status/listen-status.service.mjs +16 -4
  8. package/esm2020/lib/core/payment/submit/submit.service.mjs +21 -4
  9. package/esm2020/lib/core/payment/sync/sync.service.mjs +14 -4
  10. package/esm2020/lib/core/payment/xps-api/xps-api.service.mjs +7 -5
  11. package/esm2020/lib/core/performance/performance.service.mjs +111 -0
  12. package/esm2020/lib/core/performance/xhr-action.interface.mjs +2 -0
  13. package/esm2020/lib/core/performance/xhr-action.service.mjs +114 -0
  14. package/esm2020/lib/core/sdk-payment-systems/google-pay/google-pay.service.mjs +10 -10
  15. package/esm2020/lib/core/sdk-payment-systems/payment-systems/payment-system-processing.service.mjs +3 -3
  16. package/esm2020/lib/core/sdk-payment-systems/sdk-payment-systems.interface.mjs +1 -1
  17. package/esm2020/lib/core/settings/configuration.interface.mjs +1 -1
  18. package/esm2020/lib/core/settings/settings.service.mjs +4 -6
  19. package/esm2020/lib/core/user-behaviour-analytics/event-builder/event-builder.service.mjs +144 -0
  20. package/esm2020/lib/core/user-behaviour-analytics/event-builder/event-parameter-types.mjs +9 -0
  21. package/esm2020/lib/core/user-behaviour-analytics/event-builder/invoice.interface.mjs +2 -0
  22. package/esm2020/lib/core/user-behaviour-analytics/event-builder/purchase.type.mjs +2 -0
  23. package/esm2020/lib/core/user-behaviour-analytics/event-builder/user-behaviour-event.interface.mjs +2 -0
  24. package/esm2020/lib/core/user-behaviour-analytics/one-time-analytics-events.const.mjs +5 -0
  25. package/esm2020/lib/core/user-behaviour-analytics/user-behaviour-analytics.interface.mjs +2 -0
  26. package/esm2020/lib/core/user-behaviour-analytics/user-behaviour-analytics.service.mjs +158 -0
  27. package/esm2020/lib/core/user-behaviour-analytics/user-behaviour-event/user-behaviour-event-categories.mjs +5 -0
  28. package/esm2020/lib/core/user-behaviour-analytics/user-behaviour-event/user-behaviour-event-types.mjs +8 -0
  29. package/esm2020/lib/core/user-behaviour-analytics/user-behaviour-event-name.enum.mjs +8 -0
  30. package/esm2020/lib/core/user-behaviour-analytics/user-session-options.mjs +2 -0
  31. package/esm2020/lib/core-library.service.mjs +14 -21
  32. package/esm2020/public-api.mjs +6 -1
  33. package/fesm2015/xsolla-payment-client-core.mjs +6789 -6204
  34. package/fesm2015/xsolla-payment-client-core.mjs.map +1 -1
  35. package/fesm2020/xsolla-payment-client-core.mjs +6222 -5649
  36. package/fesm2020/xsolla-payment-client-core.mjs.map +1 -1
  37. package/lib/core/extended-window.interface.d.ts +1 -0
  38. package/lib/core/payment/field-names.enum.d.ts +3 -0
  39. package/lib/core/payment/form/control-status.interface.d.ts +7 -0
  40. package/lib/core/payment/initialize/initialize.service.d.ts +3 -1
  41. package/lib/core/payment/payment.interface.d.ts +3 -0
  42. package/lib/core/payment/payment.service.d.ts +3 -0
  43. package/lib/core/payment/status/listen-status/listen-status.service.d.ts +3 -1
  44. package/lib/core/payment/submit/submit.service.d.ts +4 -1
  45. package/lib/core/payment/sync/sync.service.d.ts +3 -1
  46. package/lib/core/payment/xps-api/xps-api.service.d.ts +3 -1
  47. package/lib/core/performance/performance.service.d.ts +24 -0
  48. package/lib/core/performance/xhr-action.interface.d.ts +8 -0
  49. package/lib/core/performance/xhr-action.service.d.ts +25 -0
  50. package/lib/core/sdk-payment-systems/google-pay/google-pay.service.d.ts +2 -2
  51. package/lib/core/sdk-payment-systems/payment-systems/payment-system-processing.service.d.ts +1 -1
  52. package/lib/core/sdk-payment-systems/sdk-payment-systems.interface.d.ts +0 -16
  53. package/lib/core/settings/configuration.interface.d.ts +0 -1
  54. package/lib/core/settings/settings.service.d.ts +1 -2
  55. package/lib/core/user-behaviour-analytics/event-builder/event-builder.service.d.ts +22 -0
  56. package/lib/core/user-behaviour-analytics/event-builder/event-parameter-types.d.ts +7 -0
  57. package/lib/core/user-behaviour-analytics/event-builder/invoice.interface.d.ts +14 -0
  58. package/lib/core/user-behaviour-analytics/event-builder/purchase.type.d.ts +1 -0
  59. package/lib/core/user-behaviour-analytics/event-builder/user-behaviour-event.interface.d.ts +52 -0
  60. package/lib/core/user-behaviour-analytics/one-time-analytics-events.const.d.ts +1 -0
  61. package/lib/core/user-behaviour-analytics/user-behaviour-analytics.interface.d.ts +36 -0
  62. package/lib/core/user-behaviour-analytics/user-behaviour-analytics.service.d.ts +43 -0
  63. package/lib/core/user-behaviour-analytics/user-behaviour-event/user-behaviour-event-categories.d.ts +4 -0
  64. package/lib/core/user-behaviour-analytics/user-behaviour-event/user-behaviour-event-types.d.ts +7 -0
  65. package/lib/core/user-behaviour-analytics/user-behaviour-event-name.enum.d.ts +6 -0
  66. package/lib/core/user-behaviour-analytics/user-session-options.d.ts +15 -0
  67. package/lib/core-library.service.d.ts +8 -5
  68. package/package.json +1 -1
  69. package/public-api.d.ts +5 -0
  70. package/xsolla-payment-client-core-0.2.12.tgz +0 -0
  71. package/xsolla-payment-client-core-0.2.11.tgz +0 -0

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.