@rebilly/instruments 7.2.4 → 7.3.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 +7 -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,10 @@
|
|
|
1
|
+
## [7.3.0](https://github.com/Rebilly/rebilly/compare/instruments/core-v7.2.4...instruments/core-v7.3.0) (2023-10-19)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* **rebilly-js-sdk:** Add patch method to quotes resource ([#1896](https://github.com/Rebilly/rebilly/issues/1896)) ([9670b45](https://github.com/Rebilly/rebilly/commit/9670b450e3700a272b45683c5e28c8e6c829e242))
|
|
7
|
+
|
|
1
8
|
## [7.2.4](https://github.com/Rebilly/rebilly/compare/instruments/core-v7.2.3...instruments/core-v7.2.4) (2023-10-17)
|
|
2
9
|
|
|
3
10
|
|
package/dist/index.js
CHANGED
|
@@ -7262,6 +7262,9 @@ function QuotesResource$1({ apiHandler }) {
|
|
|
7262
7262
|
update({ id: id2, data: data2 }) {
|
|
7263
7263
|
return apiHandler.put(`quotes/${id2}`, data2);
|
|
7264
7264
|
},
|
|
7265
|
+
patch({ id: id2, data: data2 }) {
|
|
7266
|
+
return apiHandler.patch(`quotes/${id2}`, data2);
|
|
7267
|
+
},
|
|
7265
7268
|
accept({ id: id2 }) {
|
|
7266
7269
|
return apiHandler.post(`quotes/${id2}/accept`);
|
|
7267
7270
|
},
|
|
@@ -22303,7 +22306,7 @@ ${displayNode}`
|
|
|
22303
22306
|
function handleComputedProperty(options) {
|
|
22304
22307
|
var _a;
|
|
22305
22308
|
options._computed = {
|
|
22306
|
-
version: "7.2.
|
|
22309
|
+
version: "7.2.4",
|
|
22307
22310
|
paymentMethodsUrl: ((_a = options._dev) == null ? void 0 : _a.paymentMethodsUrl) ?? "https://forms.secure-payments.app"
|
|
22308
22311
|
};
|
|
22309
22312
|
return options;
|
|
@@ -25434,7 +25437,7 @@ class RebillyInstrumentsInstance {
|
|
|
25434
25437
|
await show({ componentName, payload });
|
|
25435
25438
|
}
|
|
25436
25439
|
get version() {
|
|
25437
|
-
return `RebillyInstruments Ver.${"7.2.
|
|
25440
|
+
return `RebillyInstruments Ver.${"7.2.4"}`;
|
|
25438
25441
|
}
|
|
25439
25442
|
on(eventName, callback) {
|
|
25440
25443
|
on({ eventName, callback });
|