@rebilly/instruments 8.2.0 → 8.3.1
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 +21 -3
- package/dist/index.min.js +3 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## [8.3.1](https://github.com/Rebilly/rebilly/compare/instruments/core-v8.3.0...instruments/core-v8.3.1) (2023-11-29)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **api-metadata:** Manualy force api-fetch ([#2447](https://github.com/Rebilly/rebilly/issues/2447)) ([1dd53a9](https://github.com/Rebilly/rebilly/commit/1dd53a9e0555301b5c286fb1c2b7e9cdd75fe24e))
|
|
7
|
+
|
|
8
|
+
## [8.3.0](https://github.com/Rebilly/rebilly/compare/instruments/core-v8.2.0...instruments/core-v8.3.0) (2023-11-27)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Features
|
|
12
|
+
|
|
13
|
+
* **rebilly-js-sdk:** Add getDeclinedTransactions endpoint ([#2383](https://github.com/Rebilly/rebilly/issues/2383)) ([e0b30fd](https://github.com/Rebilly/rebilly/commit/e0b30fd798eb1f3e5c158ad2365247afba014c8f))
|
|
14
|
+
|
|
1
15
|
## [8.2.0](https://github.com/Rebilly/rebilly/compare/instruments/core-v8.1.0...instruments/core-v8.2.0) (2023-11-23)
|
|
2
16
|
|
|
3
17
|
|
package/dist/index.js
CHANGED
|
@@ -5982,7 +5982,7 @@ function cloneArrayDeep(val, instanceClone) {
|
|
|
5982
5982
|
return res;
|
|
5983
5983
|
}
|
|
5984
5984
|
var cloneDeep_1 = cloneDeep;
|
|
5985
|
-
const version = "55.
|
|
5985
|
+
const version = "55.3.0";
|
|
5986
5986
|
let urlAlphabet = "useandom-26T198340PX75pxJACKVERYMINDBUSHWOLF_GQZbfghjklqvwyzrict";
|
|
5987
5987
|
let nanoid = (size2 = 21) => {
|
|
5988
5988
|
let id2 = "";
|
|
@@ -8797,6 +8797,24 @@ function ReportsResource({ apiHandler }) {
|
|
|
8797
8797
|
};
|
|
8798
8798
|
return apiHandler.get(`reports/dcc-markup`, params);
|
|
8799
8799
|
},
|
|
8800
|
+
getDeclinedTransactions({
|
|
8801
|
+
aggregationField,
|
|
8802
|
+
periodStart,
|
|
8803
|
+
periodEnd,
|
|
8804
|
+
limit = null,
|
|
8805
|
+
offset = null,
|
|
8806
|
+
filter: filter2 = null
|
|
8807
|
+
}) {
|
|
8808
|
+
const params = {
|
|
8809
|
+
aggregationField,
|
|
8810
|
+
periodStart,
|
|
8811
|
+
periodEnd,
|
|
8812
|
+
limit,
|
|
8813
|
+
offset,
|
|
8814
|
+
filter: filter2
|
|
8815
|
+
};
|
|
8816
|
+
return apiHandler.get(`reports/declined-transactions`, params);
|
|
8817
|
+
},
|
|
8800
8818
|
getDisputes({
|
|
8801
8819
|
aggregationField,
|
|
8802
8820
|
periodMonth,
|
|
@@ -23134,7 +23152,7 @@ function handleComputedProperty(options) {
|
|
|
23134
23152
|
var _a;
|
|
23135
23153
|
return Object.assign({}, options, {
|
|
23136
23154
|
_computed: {
|
|
23137
|
-
version: "8.
|
|
23155
|
+
version: "8.3.0",
|
|
23138
23156
|
paymentMethodsUrl: ((_a = options._dev) == null ? void 0 : _a.paymentMethodsUrl) ?? "https://forms.secure-payments.app"
|
|
23139
23157
|
}
|
|
23140
23158
|
});
|
|
@@ -26283,7 +26301,7 @@ class RebillyInstrumentsInstance {
|
|
|
26283
26301
|
await show({ componentName, payload });
|
|
26284
26302
|
}
|
|
26285
26303
|
get version() {
|
|
26286
|
-
return `RebillyInstruments Ver.${"8.
|
|
26304
|
+
return `RebillyInstruments Ver.${"8.3.0"}`;
|
|
26287
26305
|
}
|
|
26288
26306
|
on(eventName, callback) {
|
|
26289
26307
|
on({ eventName, callback });
|