@rebilly/instruments 15.0.0 → 15.2.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 CHANGED
@@ -1,10 +1,6 @@
1
- ## [15.0.0](https://github.com/Rebilly/rebilly/compare/instruments/core-v14.13.0...instruments/core-v15.0.0) (2025-08-29)
1
+ ## [15.2.0](https://github.com/Rebilly/rebilly/compare/instruments/core-v15.1.0...instruments/core-v15.2.0) (2025-09-02)
2
2
 
3
3
 
4
- ### ⚠ BREAKING CHANGES
4
+ ### Features
5
5
 
6
- * **fe:** Upgrade `sha.js` to fixed version (#14522)
7
-
8
- ### Chores
9
-
10
- * **fe:** Upgrade `sha.js` to fixed version ([#14522](https://github.com/Rebilly/rebilly/issues/14522)) ([5adbec1](https://github.com/Rebilly/rebilly/commit/5adbec15b09087f09dbc527513f2095d27f2b9ac))
6
+ * **cashier:** Add cashier deposit and withdraw views ([#13734](https://github.com/Rebilly/rebilly/issues/13734)) ([26e3042](https://github.com/Rebilly/rebilly/commit/26e3042a02368a5b49d12e148eb87d5ab6638c42))
package/dist/index.js CHANGED
@@ -5097,7 +5097,7 @@ function C$1({ options: t2 }) {
5097
5097
  }
5098
5098
  function o2() {
5099
5099
  const i = {
5100
- "REB-API-CONSUMER": `${["Rebilly", t2.appName, "js-sdk"].filter((g) => g).join("/")}@5adbec1`
5100
+ "REB-API-CONSUMER": `${["Rebilly", t2.appName, "js-sdk"].filter((g) => g).join("/")}@15a0c43`
5101
5101
  };
5102
5102
  return t2.apiKey && (i["REB-APIKEY"] = t2.apiKey), i;
5103
5103
  }
@@ -9203,6 +9203,9 @@ function Ds({ apiHandler: t2 }) {
9203
9203
  */
9204
9204
  get({ id: e2 }) {
9205
9205
  return t2.get(`cashiers/${e2}`);
9206
+ },
9207
+ cancelPayoutRequests({ id: e2, data: s }) {
9208
+ return t2.post(`cashiers/${e2}/cancel-payout-requests`, s);
9206
9209
  }
9207
9210
  };
9208
9211
  }
@@ -9444,6 +9447,9 @@ function Ws({ apiHandler: t2 }) {
9444
9447
  const o2 = { filter: e2, sort: s, limit: r2, offset: n2, q: u };
9445
9448
  return t2.getAll("payout-requests", o2);
9446
9449
  },
9450
+ create({ data: e2 }) {
9451
+ return t2.post("payout-requests", e2);
9452
+ },
9447
9453
  /**
9448
9454
  * @returns { rebilly.StorefrontGetPayoutRequestResponsePromise } response
9449
9455
  */