@rebilly/instruments 12.2.2 → 12.3.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 +10 -5
- package/dist/index.min.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1 +1,6 @@
|
|
|
1
|
-
## [12.
|
|
1
|
+
## [12.3.0](https://github.com/Rebilly/rebilly/compare/instruments/core-v12.2.4...instruments/core-v12.3.0) (2024-11-28)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* **api-metadata, rebilly-js-sdk:** Update resources based on latest api definitions ([#8873](https://github.com/Rebilly/rebilly/issues/8873)) ([42d10b7](https://github.com/Rebilly/rebilly/commit/42d10b757ddc1bed3e1f9889fc8b896c5deaf30a))
|
package/dist/index.js
CHANGED
|
@@ -6288,8 +6288,7 @@ function C$1({ options: e2 }) {
|
|
|
6288
6288
|
}
|
|
6289
6289
|
function o2() {
|
|
6290
6290
|
const i = {
|
|
6291
|
-
"REB-API-CONSUMER": `${["Rebilly", e2.appName, "js-sdk"].filter((g) => g).join("/")}@
|
|
6292
|
-
`
|
|
6291
|
+
"REB-API-CONSUMER": `${["Rebilly", e2.appName, "js-sdk"].filter((g) => g).join("/")}@42d10b7`
|
|
6293
6292
|
};
|
|
6294
6293
|
return e2.apiKey && (i["REB-APIKEY"] = e2.apiKey), i;
|
|
6295
6294
|
}
|
|
@@ -7317,9 +7316,15 @@ function ye$1({ apiHandler: e2 }) {
|
|
|
7317
7316
|
* @param { rebilly.GetDepositRequestCollectionRequest } request
|
|
7318
7317
|
* @returns { rebilly.GetDepositRequestCollectionResponsePromise } response
|
|
7319
7318
|
*/
|
|
7320
|
-
getAll({
|
|
7321
|
-
|
|
7322
|
-
|
|
7319
|
+
getAll({
|
|
7320
|
+
limit: t2 = null,
|
|
7321
|
+
offset: s = null,
|
|
7322
|
+
filter: r2 = null,
|
|
7323
|
+
sort: n2 = null,
|
|
7324
|
+
expand: u = null
|
|
7325
|
+
} = {}) {
|
|
7326
|
+
const o2 = { limit: t2, offset: s, filter: r2, sort: n2, expand: u };
|
|
7327
|
+
return e2.getAll("deposit-requests", o2);
|
|
7323
7328
|
},
|
|
7324
7329
|
create({ data: t2 }) {
|
|
7325
7330
|
return e2.post("deposit-requests", t2);
|