@rebilly/instruments 8.48.0 → 8.49.0
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 +6 -3
- package/dist/index.min.js +3 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## [8.49.0](https://github.com/Rebilly/rebilly/compare/instruments/core-v8.48.1...instruments/core-v8.49.0) (2024-02-15)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* **rebilly-js-sdk:** Add Storefront change-items endpoint ([#3517](https://github.com/Rebilly/rebilly/issues/3517)) ([5f09d07](https://github.com/Rebilly/rebilly/commit/5f09d074e3db3837d1d8107d42f222084f5db5ea))
|
|
7
|
+
|
|
8
|
+
## [8.48.1](https://github.com/Rebilly/rebilly/compare/instruments/core-v8.48.0...instruments/core-v8.48.1) (2024-02-13)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* **instruments:** fix address update issue on new payment card ([#3445](https://github.com/Rebilly/rebilly/issues/3445)) ([5d459d3](https://github.com/Rebilly/rebilly/commit/5d459d3f164c58ad6310bd4cfc0d48aec6f7a05a))
|
|
14
|
+
|
|
1
15
|
## [8.48.0](https://github.com/Rebilly/rebilly/compare/instruments/core-v8.47.0...instruments/core-v8.48.0) (2024-02-09)
|
|
2
16
|
|
|
3
17
|
|
package/dist/index.js
CHANGED
|
@@ -5996,7 +5996,7 @@ function cloneArrayDeep(val, instanceClone) {
|
|
|
5996
5996
|
return res;
|
|
5997
5997
|
}
|
|
5998
5998
|
var cloneDeep_1 = cloneDeep;
|
|
5999
|
-
const version = "55.
|
|
5999
|
+
const version = "55.21.0";
|
|
6000
6000
|
let urlAlphabet = "useandom-26T198340PX75pxJACKVERYMINDBUSHWOLF_GQZbfghjklqvwyzrict";
|
|
6001
6001
|
let nanoid = (size2 = 21) => {
|
|
6002
6002
|
let id2 = "";
|
|
@@ -9488,6 +9488,9 @@ function RichBillingPortalsResource({ apiHandler }) {
|
|
|
9488
9488
|
}
|
|
9489
9489
|
function SubscriptionsResource({ apiHandler }) {
|
|
9490
9490
|
return {
|
|
9491
|
+
changeItems({ id: id2, data }) {
|
|
9492
|
+
return apiHandler.post(`subscriptions/${id2}/change-items`, data);
|
|
9493
|
+
},
|
|
9491
9494
|
create({ data }) {
|
|
9492
9495
|
return apiHandler.post(`subscriptions`, data);
|
|
9493
9496
|
}
|
|
@@ -23456,7 +23459,7 @@ function handleComputedProperty(options) {
|
|
|
23456
23459
|
var _a;
|
|
23457
23460
|
return Object.assign({}, options, {
|
|
23458
23461
|
_computed: {
|
|
23459
|
-
version: "8.
|
|
23462
|
+
version: "8.48.1",
|
|
23460
23463
|
paymentMethodsUrl: ((_a = options._dev) == null ? void 0 : _a.paymentMethodsUrl) ?? "https://forms.secure-payments.app"
|
|
23461
23464
|
}
|
|
23462
23465
|
});
|
|
@@ -26796,7 +26799,7 @@ class RebillyInstrumentsInstance {
|
|
|
26796
26799
|
await show({ componentName, payload });
|
|
26797
26800
|
}
|
|
26798
26801
|
get version() {
|
|
26799
|
-
return `RebillyInstruments Ver.${"8.
|
|
26802
|
+
return `RebillyInstruments Ver.${"8.48.1"}`;
|
|
26800
26803
|
}
|
|
26801
26804
|
on(eventName, callback) {
|
|
26802
26805
|
on({ eventName, callback });
|