@rebilly/instruments 12.63.2 → 12.65.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
- ## [12.63.2](https://github.com/Rebilly/rebilly/compare/instruments/core-v12.63.1...instruments/core-v12.63.2) (2025-05-27)
1
+ ## [12.65.0](https://github.com/Rebilly/rebilly/compare/instruments/core-v12.64.0...instruments/core-v12.65.0) (2025-05-29)
2
2
 
3
3
 
4
- ### Bug Fixes
4
+ ### Features
5
5
 
6
- * **framepay:** Gracefully handle empty lead source without injecting `path` ([#12351](https://github.com/Rebilly/rebilly/issues/12351)) ([cfa87ba](https://github.com/Rebilly/rebilly/commit/cfa87bada26aa54338b998f05b5233d0a1341ff4))
6
+ * **api-metadata, rebilly-js-sdk:** Update resources based on latest api definitions ([#12411](https://github.com/Rebilly/rebilly/issues/12411)) ([17e3adc](https://github.com/Rebilly/rebilly/commit/17e3adc9e5e5d9ec876f326087dd8dbe460d7deb))
package/dist/index.d.ts CHANGED
@@ -21,6 +21,7 @@ export interface DevProperties {
21
21
  framePayStyleLink?: string;
22
22
  }
23
23
  export interface Features {
24
+ enableLeadSourceTracking?: boolean;
24
25
  enableTelemetry?: boolean;
25
26
  hideConfirmation?: boolean;
26
27
  hideResult?: boolean;
package/dist/index.js CHANGED
@@ -6300,7 +6300,7 @@ function C$1({ options: e2 }) {
6300
6300
  }
6301
6301
  function o2() {
6302
6302
  const i = {
6303
- "REB-API-CONSUMER": `${["Rebilly", e2.appName, "js-sdk"].filter((g) => g).join("/")}@cfa87ba`
6303
+ "REB-API-CONSUMER": `${["Rebilly", e2.appName, "js-sdk"].filter((g) => g).join("/")}@17e3adc`
6304
6304
  };
6305
6305
  return e2.apiKey && (i["REB-APIKEY"] = e2.apiKey), i;
6306
6306
  }
@@ -9721,6 +9721,9 @@ function bs({ apiHandler: e2 }) {
9721
9721
  */
9722
9722
  update({ id: t2, data: s }) {
9723
9723
  return e2.put(`webhooks/${t2}`, s);
9724
+ },
9725
+ delete({ id: t2 }) {
9726
+ return e2.delete(`webhooks/${t2}`);
9724
9727
  }
9725
9728
  };
9726
9729
  }
@@ -16322,6 +16325,25 @@ const paymentMethods = [
16322
16325
  }
16323
16326
  ]
16324
16327
  },
16328
+ {
16329
+ apiName: "iCashOne Voucher",
16330
+ name: "iCashOne Voucher",
16331
+ landscapeLogo: null,
16332
+ portraitLogo: null,
16333
+ summary: "Prepaid vouchers that can be used for online payments without linking to a bank account.\n",
16334
+ description: "Prepaid vouchers that can be used for online payments without linking to a bank account.\n",
16335
+ countries: {
16336
+ mode: "unknown",
16337
+ values: []
16338
+ },
16339
+ storefrontEnabled: true,
16340
+ _links: [
16341
+ {
16342
+ rel: "self",
16343
+ href: "https://api.rebilly.com/payment-methods/iCashOne%20Voucher"
16344
+ }
16345
+ ]
16346
+ },
16325
16347
  {
16326
16348
  apiName: "loonie",
16327
16349
  name: "loonie",
@@ -17908,6 +17930,7 @@ function validateOptions(data) {
17908
17930
  ...sanitizedData.theme || {}
17909
17931
  },
17910
17932
  features: {
17933
+ enableLeadSourceTracking: true,
17911
17934
  enableTelemetry: true,
17912
17935
  hideConfirmation: false,
17913
17936
  hideResult: false,