@rebilly/instruments 16.157.3 → 16.158.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 +6 -1
- package/dist/index.js +6 -8
- package/dist/index.min.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1 +1,6 @@
|
|
|
1
|
-
## [16.
|
|
1
|
+
## [16.158.0](https://github.com/Rebilly/rebilly/compare/instruments/core-v16.157.4...instruments/core-v16.158.0) (2026-07-16)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* **api-metadata, rebilly-js-sdk:** Update resources based on latest api definitions ([#23725](https://github.com/Rebilly/rebilly/issues/23725)) ([21eab27](https://github.com/Rebilly/rebilly/commit/21eab277d79cbc412d7e04f5f6a66bd8507743ab))
|
package/dist/index.js
CHANGED
|
@@ -5779,7 +5779,7 @@ function O$1({ options: t2 }) {
|
|
|
5779
5779
|
}
|
|
5780
5780
|
function o2() {
|
|
5781
5781
|
const g = {
|
|
5782
|
-
"REB-API-CONSUMER": `${["Rebilly", t2.appName, "js-sdk"].filter((m2) => m2).join("/")}@
|
|
5782
|
+
"REB-API-CONSUMER": `${["Rebilly", t2.appName, "js-sdk"].filter((m2) => m2).join("/")}@21eab27`
|
|
5783
5783
|
};
|
|
5784
5784
|
return t2.apiKey && (g["REB-APIKEY"] = t2.apiKey), g;
|
|
5785
5785
|
}
|
|
@@ -6060,18 +6060,16 @@ function Ne$1({ apiHandler: t2 }) {
|
|
|
6060
6060
|
offset: s = null,
|
|
6061
6061
|
sort: r2 = null,
|
|
6062
6062
|
filter: n2 = null,
|
|
6063
|
-
q: u = null
|
|
6064
|
-
expand: o2 = null
|
|
6063
|
+
q: u = null
|
|
6065
6064
|
} = {}) {
|
|
6066
|
-
const
|
|
6067
|
-
return t2.getAll("aml-checks",
|
|
6065
|
+
const o2 = { limit: e2, offset: s, sort: r2, filter: n2, q: u };
|
|
6066
|
+
return t2.getAll("aml-checks", o2);
|
|
6068
6067
|
},
|
|
6069
6068
|
/**
|
|
6070
6069
|
* @returns { rebilly.GetAmlCheckResponsePromise } response
|
|
6071
6070
|
*/
|
|
6072
|
-
get({ id: e2
|
|
6073
|
-
|
|
6074
|
-
return t2.get(`aml-checks/${e2}`, r2);
|
|
6071
|
+
get({ id: e2 }) {
|
|
6072
|
+
return t2.get(`aml-checks/${e2}`);
|
|
6075
6073
|
},
|
|
6076
6074
|
startReview({ id: e2 }) {
|
|
6077
6075
|
return t2.post(`aml-checks/${e2}/start-review`);
|