@rebilly/instruments 8.32.1 → 8.34.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 +5 -2
- package/dist/index.min.js +3 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## [8.34.0](https://github.com/Rebilly/rebilly/compare/instruments/core-v8.33.0...instruments/core-v8.34.0) (2024-01-31)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* **rebilly-js-sdk:** Add updateItem to subscription entity ([#3144](https://github.com/Rebilly/rebilly/issues/3144)) ([5eb0683](https://github.com/Rebilly/rebilly/commit/5eb06833d2e8359cbb8ebbdfa4db10e13bcb563c))
|
|
7
|
+
|
|
8
|
+
## [8.33.0](https://github.com/Rebilly/rebilly/compare/instruments/core-v8.32.1...instruments/core-v8.33.0) (2024-01-31)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Features
|
|
12
|
+
|
|
13
|
+
* **api-metadata:** Update resources based on latest api definitions ([#3141](https://github.com/Rebilly/rebilly/issues/3141)) ([4c30092](https://github.com/Rebilly/rebilly/commit/4c30092ab39307fb1a464c95a764840bd27bf03a))
|
|
14
|
+
|
|
1
15
|
## [8.32.1](https://github.com/Rebilly/rebilly/compare/instruments/core-v8.32.0...instruments/core-v8.32.1) (2024-01-30)
|
|
2
16
|
|
|
3
17
|
|
package/dist/index.js
CHANGED
|
@@ -8261,6 +8261,9 @@ function SubscriptionsResource$1({ apiHandler }) {
|
|
|
8261
8261
|
changeItems({ id: id2, data }) {
|
|
8262
8262
|
return apiHandler.post(`subscriptions/${id2}/change-items`, data);
|
|
8263
8263
|
},
|
|
8264
|
+
updateItem({ id: id2, itemId, data }) {
|
|
8265
|
+
return apiHandler.patch(`subscriptions/${id2}/items/${itemId}`, data);
|
|
8266
|
+
},
|
|
8264
8267
|
createInterimInvoice({ id: id2, data }) {
|
|
8265
8268
|
return apiHandler.post(`subscriptions/${id2}/interim-invoice`, data);
|
|
8266
8269
|
},
|
|
@@ -23389,7 +23392,7 @@ function handleComputedProperty(options) {
|
|
|
23389
23392
|
var _a;
|
|
23390
23393
|
return Object.assign({}, options, {
|
|
23391
23394
|
_computed: {
|
|
23392
|
-
version: "8.
|
|
23395
|
+
version: "8.33.0",
|
|
23393
23396
|
paymentMethodsUrl: ((_a = options._dev) == null ? void 0 : _a.paymentMethodsUrl) ?? "https://forms.secure-payments.app"
|
|
23394
23397
|
}
|
|
23395
23398
|
});
|
|
@@ -26721,7 +26724,7 @@ class RebillyInstrumentsInstance {
|
|
|
26721
26724
|
await show({ componentName, payload });
|
|
26722
26725
|
}
|
|
26723
26726
|
get version() {
|
|
26724
|
-
return `RebillyInstruments Ver.${"8.
|
|
26727
|
+
return `RebillyInstruments Ver.${"8.33.0"}`;
|
|
26725
26728
|
}
|
|
26726
26729
|
on(eventName, callback) {
|
|
26727
26730
|
on({ eventName, callback });
|