@rebilly/instruments 8.46.0 → 8.47.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 -5
- package/dist/index.min.js +3 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## [8.47.0](https://github.com/Rebilly/rebilly/compare/instruments/core-v8.46.1...instruments/core-v8.47.0) (2024-02-08)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* **rebilly-js-sdk:** Add expand to storefront order get endpoint ([#3391](https://github.com/Rebilly/rebilly/issues/3391)) ([75810f3](https://github.com/Rebilly/rebilly/commit/75810f33ed6f1260bfc6975488d5a90077a1db44))
|
|
7
|
+
|
|
8
|
+
## [8.46.1](https://github.com/Rebilly/rebilly/compare/instruments/core-v8.46.0...instruments/core-v8.46.1) (2024-02-08)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* **recomm:** Replace `lodash.pick` with `lodash` ([#3355](https://github.com/Rebilly/rebilly/issues/3355)) ([39b1648](https://github.com/Rebilly/rebilly/commit/39b1648b966c1e552a5b668ff656e8651b2c80de))
|
|
14
|
+
|
|
1
15
|
## [8.46.0](https://github.com/Rebilly/rebilly/compare/instruments/core-v8.45.0...instruments/core-v8.46.0) (2024-02-08)
|
|
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.19.
|
|
5999
|
+
const version = "55.19.1";
|
|
6000
6000
|
let urlAlphabet = "useandom-26T198340PX75pxJACKVERYMINDBUSHWOLF_GQZbfghjklqvwyzrict";
|
|
6001
6001
|
let nanoid = (size2 = 21) => {
|
|
6002
6002
|
let id2 = "";
|
|
@@ -9330,8 +9330,9 @@ function OrdersResource({ apiHandler }) {
|
|
|
9330
9330
|
const params = { filter: filter2, sort, limit, offset, q, expand };
|
|
9331
9331
|
return apiHandler.getAll(`orders`, params);
|
|
9332
9332
|
},
|
|
9333
|
-
get({ id: id2 }) {
|
|
9334
|
-
|
|
9333
|
+
get({ id: id2, expand = null }) {
|
|
9334
|
+
const params = { expand };
|
|
9335
|
+
return apiHandler.get(`orders/${id2}`, params);
|
|
9335
9336
|
},
|
|
9336
9337
|
update({ id: id2, data }) {
|
|
9337
9338
|
return apiHandler.patch(`orders/${id2}`, data);
|
|
@@ -23455,7 +23456,7 @@ function handleComputedProperty(options) {
|
|
|
23455
23456
|
var _a;
|
|
23456
23457
|
return Object.assign({}, options, {
|
|
23457
23458
|
_computed: {
|
|
23458
|
-
version: "8.
|
|
23459
|
+
version: "8.46.1",
|
|
23459
23460
|
paymentMethodsUrl: ((_a = options._dev) == null ? void 0 : _a.paymentMethodsUrl) ?? "https://forms.secure-payments.app"
|
|
23460
23461
|
}
|
|
23461
23462
|
});
|
|
@@ -26795,7 +26796,7 @@ class RebillyInstrumentsInstance {
|
|
|
26795
26796
|
await show({ componentName, payload });
|
|
26796
26797
|
}
|
|
26797
26798
|
get version() {
|
|
26798
|
-
return `RebillyInstruments Ver.${"8.
|
|
26799
|
+
return `RebillyInstruments Ver.${"8.46.1"}`;
|
|
26799
26800
|
}
|
|
26800
26801
|
on(eventName, callback) {
|
|
26801
26802
|
on({ eventName, callback });
|