@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.
- package/CHANGELOG.md +14 -0
- package/dist/index.js +15 -15
- package/dist/index.min.js +15 -15
- package/package.json +1 -1
- package/src/data/options-schema/index.js +5 -2
- package/src/data/options-schema/schemas/options-schema.js +3 -29
- package/src/functions/mount/fetch-data.js +3 -15
- package/src/functions/mount/index.js +70 -4
- package/src/functions/mount/mount.spec.js +1 -6
- package/src/functions/mount/setup-options.js +6 -19
- package/src/functions/mount/setup-options.spec.js +3 -3
- package/src/functions/purchase.js +4 -10
- package/src/functions/show.js +4 -3
- package/src/functions/show.spec.js +2 -0
- package/src/i18n/en.json +0 -3
- package/src/i18n/es.json +0 -3
- package/src/storefront/ready-to-pay.js +0 -5
- package/src/storefront/summary.js +1 -1
- package/src/style/base/__snapshots__/theme.spec.js.snap +1 -1
- package/src/style/base/default-theme.js +1 -1
- package/src/views/common/iframe/base-iframe.js +1 -7
- package/src/views/confirmation.js +15 -14
- package/src/views/method-selector/__snapshots__/method-selector.spec.js.snap +59 -10
- package/src/views/method-selector/generate-digital-wallet.js +2 -2
- package/src/views/method-selector/generate-digital-wallet.spec.js +13 -2
- package/src/views/method-selector/get-payment-methods.js +5 -5
- package/src/views/method-selector/get-payment-methods.spec.js +3 -4
- package/src/views/method-selector/index.js +86 -151
- package/src/views/method-selector/method-selector.spec.js +1 -1
- package/src/views/result.js +18 -8
- package/src/views/summary.js +3 -11
- package/src/storefront/deposit-requests.js +0 -12
- package/src/storefront/models/deposit-request-model.js +0 -15
- package/src/views/amount-selector.js +0 -47
- 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
|
|