@rebilly/instruments 16.42.0 → 16.43.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 +2 -2
- package/dist/index.js +25 -1
- package/dist/index.min.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
## [16.
|
|
1
|
+
## [16.43.0](https://github.com/Rebilly/rebilly/compare/instruments/core-v16.42.0...instruments/core-v16.43.0) (2026-01-12)
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
### Features
|
|
5
5
|
|
|
6
|
-
*
|
|
6
|
+
* **api-metadata, rebilly-js-sdk:** Update resources based on latest api definitions ([#17865](https://github.com/Rebilly/rebilly/issues/17865)) ([17191c6](https://github.com/Rebilly/rebilly/commit/17191c66a6676ccecef26c44019de7af72ee35db))
|
package/dist/index.js
CHANGED
|
@@ -5186,7 +5186,7 @@ function C$1({ options: t2 }) {
|
|
|
5186
5186
|
}
|
|
5187
5187
|
function o2() {
|
|
5188
5188
|
const i = {
|
|
5189
|
-
"REB-API-CONSUMER": `${["Rebilly", t2.appName, "js-sdk"].filter((g) => g).join("/")}@
|
|
5189
|
+
"REB-API-CONSUMER": `${["Rebilly", t2.appName, "js-sdk"].filter((g) => g).join("/")}@17191c6`
|
|
5190
5190
|
};
|
|
5191
5191
|
return t2.apiKey && (i["REB-APIKEY"] = t2.apiKey), i;
|
|
5192
5192
|
}
|
|
@@ -7646,6 +7646,9 @@ function Zt$1({ apiHandler: t2 }) {
|
|
|
7646
7646
|
create({ data: e2 }) {
|
|
7647
7647
|
return t2.post("payout-request-allocations", e2);
|
|
7648
7648
|
},
|
|
7649
|
+
autoAllocate({ data: e2 }) {
|
|
7650
|
+
return t2.post("payout-request-allocations/auto", e2);
|
|
7651
|
+
},
|
|
7649
7652
|
update({ id: e2, data: s }) {
|
|
7650
7653
|
return t2.patch(`payout-request-allocations/${e2}`, s);
|
|
7651
7654
|
}
|
|
@@ -8908,6 +8911,27 @@ function xs({ apiHandler: t2 }) {
|
|
|
8908
8911
|
}
|
|
8909
8912
|
function Ps({ apiHandler: t2 }) {
|
|
8910
8913
|
return {
|
|
8914
|
+
/**
|
|
8915
|
+
* @returns { rebilly.GetHistogramAmlCheckReportResponsePromise } response
|
|
8916
|
+
*/
|
|
8917
|
+
getAmlCheckHistogramReport({
|
|
8918
|
+
periodStart: e2 = null,
|
|
8919
|
+
periodEnd: s = null,
|
|
8920
|
+
aggregationPeriod: n2 = null,
|
|
8921
|
+
metric: r2 = null,
|
|
8922
|
+
includePropagatedResults: u = null,
|
|
8923
|
+
filter: o2 = null
|
|
8924
|
+
}) {
|
|
8925
|
+
const l = {
|
|
8926
|
+
periodStart: e2,
|
|
8927
|
+
periodEnd: s,
|
|
8928
|
+
aggregationPeriod: n2,
|
|
8929
|
+
metric: r2,
|
|
8930
|
+
includePropagatedResults: u,
|
|
8931
|
+
filter: o2
|
|
8932
|
+
};
|
|
8933
|
+
return t2.get("histograms/aml-checks", l);
|
|
8934
|
+
},
|
|
8911
8935
|
/**
|
|
8912
8936
|
* @returns { rebilly.GetHistogramTransactionReportResponsePromise } response
|
|
8913
8937
|
*/
|