@rebilly/instruments 3.37.0 → 3.37.2

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 (35) hide show
  1. package/CHANGELOG.md +14 -0
  2. package/dist/index.js +15 -15
  3. package/dist/index.min.js +15 -15
  4. package/package.json +1 -1
  5. package/src/data/options-schema/index.js +5 -2
  6. package/src/data/options-schema/schemas/options-schema.js +3 -29
  7. package/src/functions/mount/fetch-data.js +3 -15
  8. package/src/functions/mount/index.js +70 -4
  9. package/src/functions/mount/mount.spec.js +1 -6
  10. package/src/functions/mount/setup-options.js +6 -19
  11. package/src/functions/mount/setup-options.spec.js +3 -3
  12. package/src/functions/purchase.js +4 -10
  13. package/src/functions/show.js +4 -3
  14. package/src/functions/show.spec.js +2 -0
  15. package/src/i18n/en.json +0 -3
  16. package/src/i18n/es.json +0 -3
  17. package/src/storefront/ready-to-pay.js +0 -5
  18. package/src/storefront/summary.js +1 -1
  19. package/src/style/base/__snapshots__/theme.spec.js.snap +1 -1
  20. package/src/style/base/default-theme.js +1 -1
  21. package/src/views/common/iframe/base-iframe.js +1 -7
  22. package/src/views/confirmation.js +15 -14
  23. package/src/views/method-selector/__snapshots__/method-selector.spec.js.snap +59 -10
  24. package/src/views/method-selector/generate-digital-wallet.js +2 -2
  25. package/src/views/method-selector/generate-digital-wallet.spec.js +13 -2
  26. package/src/views/method-selector/get-payment-methods.js +5 -5
  27. package/src/views/method-selector/get-payment-methods.spec.js +3 -4
  28. package/src/views/method-selector/index.js +86 -151
  29. package/src/views/method-selector/method-selector.spec.js +1 -1
  30. package/src/views/result.js +18 -8
  31. package/src/views/summary.js +3 -11
  32. package/src/storefront/deposit-requests.js +0 -12
  33. package/src/storefront/models/deposit-request-model.js +0 -15
  34. package/src/views/amount-selector.js +0 -47
  35. package/src/views/form.js +0 -52
package/CHANGELOG.md CHANGED
@@ -1,3 +1,17 @@
1
+ ## [3.37.2](https://github.com/Rebilly/rebilly/compare/instruments/core-v3.37.1...instruments/core-v3.37.2) (2023-05-30)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **instruments:** Loosen schema for 3rd party configurations ([#392](https://github.com/Rebilly/rebilly/issues/392)) ([9c85275](https://github.com/Rebilly/rebilly/commit/9c8527507b505dc77f622bdcc854f4325d7eb37c))
7
+
8
+ ## [3.37.1](https://github.com/Rebilly/rebilly/compare/instruments/core-v3.37.0...instruments/core-v3.37.1) (2023-05-29)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * Revert "neut(instruments): Instruments deposit ([#379](https://github.com/Rebilly/rebilly/issues/379))" ([#380](https://github.com/Rebilly/rebilly/issues/380)) ([3864721](https://github.com/Rebilly/rebilly/commit/3864721523fc4c45d867577f2f5ef9755c05c2d4))
14
+
1
15
  ## [3.37.0](https://github.com/Rebilly/rebilly/compare/instruments/core-v3.36.1...instruments/core-v3.37.0) (2023-05-29)
2
16
 
3
17