@rebilly/instruments 12.2.3 → 12.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 CHANGED
@@ -1 +1,6 @@
1
- ## [12.2.3](https://github.com/Rebilly/rebilly/compare/instruments/core-v12.2.2...instruments/core-v12.2.3) (2024-11-27)
1
+ ## [12.3.1](https://github.com/Rebilly/rebilly/compare/instruments/core-v12.3.0...instruments/core-v12.3.1) (2024-11-28)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **framepay-npm:** Update framepay-npm readme ([#8901](https://github.com/Rebilly/rebilly/issues/8901)) ([4adfa20](https://github.com/Rebilly/rebilly/commit/4adfa20ea36845768d52cb554cc0872392cf3c90))
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("/")}@f2be6c6
6292
- `
6291
+ "REB-API-CONSUMER": `${["Rebilly", e2.appName, "js-sdk"].filter((g) => g).join("/")}@4adfa20`
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({ limit: t2 = null, offset: s = null, filter: r2 = null, sort: n2 = null } = {}) {
7321
- const u = { limit: t2, offset: s, filter: r2, sort: n2 };
7322
- return e2.getAll("deposit-requests", u);
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);