@rebilly/instruments 16.65.0 → 16.67.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 +3 -2
- package/dist/index.js +10 -3
- package/dist/index.min.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
## [16.
|
|
1
|
+
## [16.67.0](https://github.com/Rebilly/rebilly/compare/instruments/core-v16.66.0...instruments/core-v16.67.0) (2026-03-03)
|
|
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 ([#19255](https://github.com/Rebilly/rebilly/issues/19255)) ([b34f023](https://github.com/Rebilly/rebilly/commit/b34f023cd0fc9e941c2cab729798c67bb46ab40f))
|
|
7
|
+
* **framepay:** migrate from cypress to playwright part 1 ([#18556](https://github.com/Rebilly/rebilly/issues/18556)) ([796c0c6](https://github.com/Rebilly/rebilly/commit/796c0c60105db0adb12d323d0cc5aeed34c50385))
|
package/dist/index.js
CHANGED
|
@@ -5251,7 +5251,7 @@ function C$1({ options: e2 }) {
|
|
|
5251
5251
|
}
|
|
5252
5252
|
function o2() {
|
|
5253
5253
|
const i = {
|
|
5254
|
-
"REB-API-CONSUMER": `${["Rebilly", e2.appName, "js-sdk"].filter((g) => g).join("/")}@
|
|
5254
|
+
"REB-API-CONSUMER": `${["Rebilly", e2.appName, "js-sdk"].filter((g) => g).join("/")}@796c0c6`
|
|
5255
5255
|
};
|
|
5256
5256
|
return e2.apiKey && (i["REB-APIKEY"] = e2.apiKey), i;
|
|
5257
5257
|
}
|
|
@@ -7763,6 +7763,13 @@ function _e$1({ apiHandler: e2 }) {
|
|
|
7763
7763
|
},
|
|
7764
7764
|
block({ id: t2, data: s }) {
|
|
7765
7765
|
return e2.post(`payout-request-batches/${t2}/block`, s);
|
|
7766
|
+
},
|
|
7767
|
+
/**
|
|
7768
|
+
* @returns { rebilly.GetPayoutRequestBatchPreviewResponsePromise } response
|
|
7769
|
+
*/
|
|
7770
|
+
preview({ filter: t2 = null }) {
|
|
7771
|
+
const s = { filter: t2 };
|
|
7772
|
+
return e2.get("payout-request-batches/preview", s);
|
|
7766
7773
|
}
|
|
7767
7774
|
};
|
|
7768
7775
|
}
|
|
@@ -9299,14 +9306,14 @@ function js({ apiHandler: e2 }) {
|
|
|
9299
9306
|
/**
|
|
9300
9307
|
* @returns { rebilly.GetKycRejectionSummaryReportResponsePromise } response
|
|
9301
9308
|
*/
|
|
9302
|
-
getKycRejectionSummary({ periodStart: t2, periodEnd: s }) {
|
|
9309
|
+
getKycRejectionSummary({ periodStart: t2 = null, periodEnd: s = null }) {
|
|
9303
9310
|
const r2 = { periodStart: t2, periodEnd: s };
|
|
9304
9311
|
return e2.get("reports/kyc-rejection-summary", r2);
|
|
9305
9312
|
},
|
|
9306
9313
|
/**
|
|
9307
9314
|
* @returns { rebilly.GetKycRequestSummaryReportResponsePromise } response
|
|
9308
9315
|
*/
|
|
9309
|
-
getKycRequestSummary({ periodStart: t2, periodEnd: s }) {
|
|
9316
|
+
getKycRequestSummary({ periodStart: t2 = null, periodEnd: s = null }) {
|
|
9310
9317
|
const r2 = { periodStart: t2, periodEnd: s };
|
|
9311
9318
|
return e2.get("reports/kyc-request-summary", r2);
|
|
9312
9319
|
},
|