@rebilly/instruments 15.8.0 → 15.10.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 +10 -8
- package/dist/index.min.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
## [15.
|
|
1
|
+
## [15.10.0](https://github.com/Rebilly/rebilly/compare/instruments/core-v15.9.0...instruments/core-v15.10.0) (2025-09-16)
|
|
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 ([#14975](https://github.com/Rebilly/rebilly/issues/14975)) ([4a2b540](https://github.com/Rebilly/rebilly/commit/4a2b540ecd4797ad036ecd6b339a1912a667f955))
|
package/dist/index.js
CHANGED
|
@@ -5097,7 +5097,7 @@ function C$1({ options: e2 }) {
|
|
|
5097
5097
|
}
|
|
5098
5098
|
function o2() {
|
|
5099
5099
|
const i = {
|
|
5100
|
-
"REB-API-CONSUMER": `${["Rebilly", e2.appName, "js-sdk"].filter((g) => g).join("/")}@
|
|
5100
|
+
"REB-API-CONSUMER": `${["Rebilly", e2.appName, "js-sdk"].filter((g) => g).join("/")}@9fa6228`
|
|
5101
5101
|
};
|
|
5102
5102
|
return e2.apiKey && (i["REB-APIKEY"] = e2.apiKey), i;
|
|
5103
5103
|
}
|
|
@@ -5388,9 +5388,9 @@ function se$1({ apiHandler: e2 }) {
|
|
|
5388
5388
|
* @param { rebilly.GetApiKeyCollectionRequest } request
|
|
5389
5389
|
* @returns { rebilly.GetApiKeyCollectionResponsePromise } response
|
|
5390
5390
|
*/
|
|
5391
|
-
getAll({
|
|
5392
|
-
const
|
|
5393
|
-
return e2.getAll("api-keys",
|
|
5391
|
+
getAll({ filter: t2 = null, sort: s = null, limit: r2 = null, offset: n2 = null } = {}) {
|
|
5392
|
+
const u = { filter: t2, sort: s, limit: r2, offset: n2 };
|
|
5393
|
+
return e2.getAll("api-keys", u);
|
|
5394
5394
|
},
|
|
5395
5395
|
/**
|
|
5396
5396
|
* @param { rebilly.CreateApiKeyRequest } request
|
|
@@ -8792,16 +8792,18 @@ function Is({ apiHandler: e2 }) {
|
|
|
8792
8792
|
periodEnd: s = null,
|
|
8793
8793
|
currency: r2 = null,
|
|
8794
8794
|
aggregationField: n2 = null,
|
|
8795
|
-
|
|
8795
|
+
amountField: u = null,
|
|
8796
|
+
journalAccountIds: o2 = null
|
|
8796
8797
|
}) {
|
|
8797
|
-
const
|
|
8798
|
+
const l = {
|
|
8798
8799
|
periodStart: t2,
|
|
8799
8800
|
periodEnd: s,
|
|
8800
8801
|
currency: r2,
|
|
8801
8802
|
aggregationField: n2,
|
|
8802
|
-
|
|
8803
|
+
amountField: u,
|
|
8804
|
+
journalAccountIds: o2
|
|
8803
8805
|
};
|
|
8804
|
-
return e2.get("reports/journal-summary",
|
|
8806
|
+
return e2.get("reports/journal-summary", l);
|
|
8805
8807
|
},
|
|
8806
8808
|
/**
|
|
8807
8809
|
* @returns { rebilly.GetKycAcceptanceSummaryReportResponsePromise } response
|