@rebilly/instruments 14.13.0 → 15.1.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 +7 -1
- package/dist/index.min.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
## [
|
|
1
|
+
## [15.1.0](https://github.com/Rebilly/rebilly/compare/instruments/core-v15.0.0...instruments/core-v15.1.0) (2025-09-01)
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
### Features
|
|
5
5
|
|
|
6
|
-
* **api-metadata, rebilly-js-sdk:** Update resources based on latest api definitions ([#
|
|
6
|
+
* **api-metadata, rebilly-js-sdk:** Update resources based on latest api definitions ([#14515](https://github.com/Rebilly/rebilly/issues/14515)) ([c9cecac](https://github.com/Rebilly/rebilly/commit/c9cecac1015d5a11dda9a5a1a391736d5318cd1b))
|
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("/")}@
|
|
5100
|
+
"REB-API-CONSUMER": `${["Rebilly", t2.appName, "js-sdk"].filter((g) => g).join("/")}@c9cecac`
|
|
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
|
*/
|