@rebilly/instruments 9.12.0 → 9.14.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 -5
- package/dist/index.min.js +3 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## [9.14.0](https://github.com/Rebilly/rebilly/compare/instruments/core-v9.13.0...instruments/core-v9.14.0) (2024-03-20)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* **rebilly-js-sdk:** update resources ([#4167](https://github.com/Rebilly/rebilly/issues/4167)) ([e8a8580](https://github.com/Rebilly/rebilly/commit/e8a858092398042a284207141e5297d70da744f1))
|
|
7
|
+
|
|
8
|
+
## [9.13.0](https://github.com/Rebilly/rebilly/compare/instruments/core-v9.12.0...instruments/core-v9.13.0) (2024-03-20)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Features
|
|
12
|
+
|
|
13
|
+
* **api-metadata:** Update resources based on latest api definitions ([#4170](https://github.com/Rebilly/rebilly/issues/4170)) ([6bd729e](https://github.com/Rebilly/rebilly/commit/6bd729e654d320936d7dac6d4469192d955c2f80))
|
|
14
|
+
|
|
1
15
|
## [9.12.0](https://github.com/Rebilly/rebilly/compare/instruments/core-v9.11.0...instruments/core-v9.12.0) (2024-03-20)
|
|
2
16
|
|
|
3
17
|
|
package/dist/index.js
CHANGED
|
@@ -7302,9 +7302,9 @@ function vt$1({ apiHandler: t2 }) {
|
|
|
7302
7302
|
* @param { rebilly.GetEventCollectionRequest } request
|
|
7303
7303
|
* @returns { rebilly.GetEventCollectionResponsePromise } response
|
|
7304
7304
|
*/
|
|
7305
|
-
getAll({ limit: e2 = null, offset: s2 = null, filter: n2 = null } = {}) {
|
|
7306
|
-
const
|
|
7307
|
-
return t2.getAll("events",
|
|
7305
|
+
getAll({ limit: e2 = null, offset: s2 = null, filter: n2 = null, q: r2 = null } = {}) {
|
|
7306
|
+
const u2 = { limit: e2, offset: s2, filter: n2, q: r2 };
|
|
7307
|
+
return t2.getAll("events", u2);
|
|
7308
7308
|
},
|
|
7309
7309
|
/**
|
|
7310
7310
|
* @returns { rebilly.GetEventResponsePromise } response
|
|
@@ -24673,7 +24673,7 @@ function handleComputedProperty(options) {
|
|
|
24673
24673
|
var _a;
|
|
24674
24674
|
return Object.assign({}, options, {
|
|
24675
24675
|
_computed: {
|
|
24676
|
-
version: "9.
|
|
24676
|
+
version: "9.13.0",
|
|
24677
24677
|
paymentMethodsUrl: ((_a = options._dev) == null ? void 0 : _a.paymentMethodsUrl) ?? "https://forms.secure-payments.app"
|
|
24678
24678
|
}
|
|
24679
24679
|
});
|
|
@@ -28015,7 +28015,7 @@ class RebillyInstrumentsInstance {
|
|
|
28015
28015
|
await show({ componentName, payload });
|
|
28016
28016
|
}
|
|
28017
28017
|
get version() {
|
|
28018
|
-
return `RebillyInstruments Ver.${"9.
|
|
28018
|
+
return `RebillyInstruments Ver.${"9.13.0"}`;
|
|
28019
28019
|
}
|
|
28020
28020
|
on(eventName, callback) {
|
|
28021
28021
|
on({ eventName, callback });
|