@rebilly/instruments 16.80.0 → 16.81.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,6 +1,6 @@
1
- ## [16.80.0](https://github.com/Rebilly/rebilly/compare/instruments/core-v16.79.0...instruments/core-v16.80.0) (2026-03-24)
1
+ ## [16.81.0](https://github.com/Rebilly/rebilly/compare/instruments/core-v16.80.1...instruments/core-v16.81.0) (2026-03-25)
2
2
 
3
3
 
4
4
  ### Features
5
5
 
6
- * **api-metadata, rebilly-js-sdk:** Update resources based on latest api definitions ([#19929](https://github.com/Rebilly/rebilly/issues/19929)) ([621e759](https://github.com/Rebilly/rebilly/commit/621e75950c234966c9f1ad9beff5ebded19f19b1))
6
+ * **api-metadata, rebilly-js-sdk:** Update resources based on latest api definitions ([#19963](https://github.com/Rebilly/rebilly/issues/19963)) ([3f66c3f](https://github.com/Rebilly/rebilly/commit/3f66c3f409309b405bd894a9da010d3b1c4979bb))
package/dist/index.js CHANGED
@@ -5298,7 +5298,7 @@ function C$1({ options: e2 }) {
5298
5298
  }
5299
5299
  function o2() {
5300
5300
  const i = {
5301
- "REB-API-CONSUMER": `${["Rebilly", e2.appName, "js-sdk"].filter((g) => g).join("/")}@9cd86ef`
5301
+ "REB-API-CONSUMER": `${["Rebilly", e2.appName, "js-sdk"].filter((g) => g).join("/")}@3f66c3f`
5302
5302
  };
5303
5303
  return e2.apiKey && (i["REB-APIKEY"] = e2.apiKey), i;
5304
5304
  }
@@ -7802,6 +7802,9 @@ function _e$1({ apiHandler: e2 }) {
7802
7802
  get({ id: t2 }) {
7803
7803
  return e2.get(`payout-request-batches/${t2}`);
7804
7804
  },
7805
+ patch({ id: t2, data: s }) {
7806
+ return e2.patch(`payout-request-batches/${t2}`, s);
7807
+ },
7805
7808
  autoAllocate({ id: t2 }) {
7806
7809
  return e2.post(`payout-request-batches/${t2}/auto-allocate`);
7807
7810
  },
@@ -9211,7 +9214,7 @@ function js({ apiHandler: e2 }) {
9211
9214
  return e2.get("reports/dcc-markup", l);
9212
9215
  },
9213
9216
  /**
9214
- * @returns { rebilly.GetDeclinedTransactionsReportResponsePromise } response
9217
+ * @returns { rebilly.GetDeclinedTransactionReportResponsePromise } response
9215
9218
  */
9216
9219
  getDeclinedTransactions({
9217
9220
  aggregationField: t2 = null,
@@ -18703,7 +18706,7 @@ async function fetchPaymentInstrument() {
18703
18706
  return Endpoint(async () => {
18704
18707
  validateStorefront(state.storefront);
18705
18708
  const { items: instruments } = await state.storefront.paymentInstruments.getAll({
18706
- filter: `status:active,inactive,verification-needed`
18709
+ filter: "status:active,inactive,verification-needed"
18707
18710
  });
18708
18711
  return instruments.map(({ fields }) => fields);
18709
18712
  });