@rebilly/instruments 16.169.0 → 16.170.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.169.0](https://github.com/Rebilly/rebilly/compare/instruments/core-v16.168.4...instruments/core-v16.169.0) (2026-08-07)
1
+ ## [16.170.0](https://github.com/Rebilly/rebilly/compare/instruments/core-v16.169.0...instruments/core-v16.170.0) (2026-08-07)
2
2
 
3
3
 
4
4
  ### Features
5
5
 
6
- * **api-metadata, rebilly-js-sdk:** Update resources based on latest api definitions ([#24233](https://github.com/Rebilly/rebilly/issues/24233)) ([b1f9e8b](https://github.com/Rebilly/rebilly/commit/b1f9e8b3010600c6ab454aa0d9ca5e4346507306))
6
+ * **framepay:** Add element.invalidate() public method ([#24275](https://github.com/Rebilly/rebilly/issues/24275)) ([7958ae0](https://github.com/Rebilly/rebilly/commit/7958ae05ec0bb795bbed15e3a268bb7cb27cc8c1))
package/dist/index.js CHANGED
@@ -5649,30 +5649,30 @@ function st$1() {
5649
5649
  }
5650
5650
  return h2.slice(8, -1).toLowerCase().replace(/\s/g, "");
5651
5651
  };
5652
- function t2(a) {
5653
- return typeof a.constructor == "function" ? a.constructor.name : null;
5652
+ function t2(g) {
5653
+ return typeof g.constructor == "function" ? g.constructor.name : null;
5654
5654
  }
5655
- function s(a) {
5656
- return Array.isArray ? Array.isArray(a) : a instanceof Array;
5655
+ function s(g) {
5656
+ return Array.isArray ? Array.isArray(g) : g instanceof Array;
5657
5657
  }
5658
- function r2(a) {
5659
- return a instanceof Error || typeof a.message == "string" && a.constructor && typeof a.constructor.stackTraceLimit == "number";
5658
+ function r2(g) {
5659
+ return g instanceof Error || typeof g.message == "string" && g.constructor && typeof g.constructor.stackTraceLimit == "number";
5660
5660
  }
5661
- function n2(a) {
5662
- return a instanceof Date ? true : typeof a.toDateString == "function" && typeof a.getDate == "function" && typeof a.setDate == "function";
5661
+ function n2(g) {
5662
+ return g instanceof Date ? true : typeof g.toDateString == "function" && typeof g.getDate == "function" && typeof g.setDate == "function";
5663
5663
  }
5664
- function u(a) {
5665
- return a instanceof RegExp ? true : typeof a.flags == "string" && typeof a.ignoreCase == "boolean" && typeof a.multiline == "boolean" && typeof a.global == "boolean";
5664
+ function u(g) {
5665
+ return g instanceof RegExp ? true : typeof g.flags == "string" && typeof g.ignoreCase == "boolean" && typeof g.multiline == "boolean" && typeof g.global == "boolean";
5666
5666
  }
5667
- function o2(a, p) {
5668
- return t2(a) === "GeneratorFunction";
5667
+ function o2(g, p) {
5668
+ return t2(g) === "GeneratorFunction";
5669
5669
  }
5670
- function l(a) {
5671
- return typeof a.throw == "function" && typeof a.return == "function" && typeof a.next == "function";
5670
+ function l(g) {
5671
+ return typeof g.throw == "function" && typeof g.return == "function" && typeof g.next == "function";
5672
5672
  }
5673
- function i(a) {
5673
+ function i(g) {
5674
5674
  try {
5675
- if (typeof a.length == "number" && typeof a.callee == "function")
5675
+ if (typeof g.length == "number" && typeof g.callee == "function")
5676
5676
  return true;
5677
5677
  } catch (p) {
5678
5678
  if (p.message.indexOf("callee") !== -1)
@@ -5680,8 +5680,8 @@ function st$1() {
5680
5680
  }
5681
5681
  return false;
5682
5682
  }
5683
- function f(a) {
5684
- return a.constructor && typeof a.constructor.isBuffer == "function" ? a.constructor.isBuffer(a) : false;
5683
+ function f(g) {
5684
+ return g.constructor && typeof g.constructor.isBuffer == "function" ? g.constructor.isBuffer(g) : false;
5685
5685
  }
5686
5686
  return x$1;
5687
5687
  }
@@ -5733,8 +5733,8 @@ function St$1() {
5733
5733
  }
5734
5734
  }
5735
5735
  function r2(i) {
5736
- const f = i.flags !== void 0 ? i.flags : /\w+$/.exec(i) || void 0, a = new i.constructor(i.source, f);
5737
- return a.lastIndex = i.lastIndex, a;
5736
+ const f = i.flags !== void 0 ? i.flags : /\w+$/.exec(i) || void 0, g = new i.constructor(i.source, f);
5737
+ return g.lastIndex = i.lastIndex, g;
5738
5738
  }
5739
5739
  function n2(i) {
5740
5740
  const f = new i.constructor(i.byteLength);
@@ -5744,8 +5744,8 @@ function St$1() {
5744
5744
  return new i.constructor(i.buffer, i.byteOffset, i.length);
5745
5745
  }
5746
5746
  function o2(i) {
5747
- const f = i.length, a = Buffer.allocUnsafe ? Buffer.allocUnsafe(f) : Buffer.from(f);
5748
- return i.copy(a), a;
5747
+ const f = i.length, g = Buffer.allocUnsafe ? Buffer.allocUnsafe(f) : Buffer.from(f);
5748
+ return i.copy(g), g;
5749
5749
  }
5750
5750
  function l(i) {
5751
5751
  return e2 ? Object(e2.call(i)) : {};
@@ -5934,10 +5934,10 @@ function O$1({ options: e2 }) {
5934
5934
  return e2.apiVersion && (c = `${c}/${e2.apiVersion}`), e2.organizationId && (c = `${c}/organizations/${e2.organizationId}`), `${c}`;
5935
5935
  }
5936
5936
  function o2() {
5937
- const g = {
5938
- "REB-API-CONSUMER": `${["Rebilly", e2.appName, "js-sdk"].filter((m2) => m2).join("/")}@b1f9e8b`
5937
+ const a = {
5938
+ "REB-API-CONSUMER": `${["Rebilly", e2.appName, "js-sdk"].filter((m2) => m2).join("/")}@7958ae0`
5939
5939
  };
5940
- return e2.apiKey && (g["REB-APIKEY"] = e2.apiKey), g;
5940
+ return e2.apiKey && (a["REB-APIKEY"] = e2.apiKey), a;
5941
5941
  }
5942
5942
  function l() {
5943
5943
  return Dt$1(t2.defaults.headers);
@@ -5946,38 +5946,38 @@ function O$1({ options: e2 }) {
5946
5946
  e2.requestTimeout = Number(c), t2.defaults.timeout = e2.requestTimeout;
5947
5947
  }
5948
5948
  function f(c = e2.jwt) {
5949
- const g = l();
5950
- e2.apiKey = null, e2.jwt = c, delete g.common["REB-APIKEY"], g.common.Authorization = `Bearer ${c}`, t2.defaults.headers = g;
5949
+ const a = l();
5950
+ e2.apiKey = null, e2.jwt = c, delete a.common["REB-APIKEY"], a.common.Authorization = `Bearer ${c}`, t2.defaults.headers = a;
5951
5951
  }
5952
- function a(c = e2.publishableKey) {
5953
- const g = l();
5954
- e2.publishableKey = c, g.common.Authorization = `${c}`, t2.defaults.headers = g;
5952
+ function g(c = e2.publishableKey) {
5953
+ const a = l();
5954
+ e2.publishableKey = c, a.common.Authorization = `${c}`, t2.defaults.headers = a;
5955
5955
  }
5956
- function p({ host: c, port: g, auth: m2 }) {
5956
+ function p({ host: c, port: a, auth: m2 }) {
5957
5957
  t2.defaults.proxy = {
5958
5958
  host: c,
5959
- port: g,
5959
+ port: a,
5960
5960
  auth: m2
5961
5961
  };
5962
5962
  }
5963
- function h2({ live: c = null, sandbox: g = null }) {
5964
- c && (e2.apiEndpoints.live = c), g && (e2.apiEndpoints.sandbox = g), t2.defaults.baseURL = u();
5963
+ function h2({ live: c = null, sandbox: a = null }) {
5964
+ c && (e2.apiEndpoints.live = c), a && (e2.apiEndpoints.sandbox = a), t2.defaults.baseURL = u();
5965
5965
  }
5966
- function K2(c, { thenDelegate: g, catchDelegate: m2 = () => {
5966
+ function K2(c, { thenDelegate: a, catchDelegate: m2 = () => {
5967
5967
  } }) {
5968
5968
  return tt$1(c) && t2.interceptors[w[c]].use(
5969
- g,
5969
+ a,
5970
5970
  m2
5971
5971
  );
5972
5972
  }
5973
- function N2(c, g) {
5974
- return tt$1(c) && t2.interceptors[w[c]].eject(g);
5973
+ function N2(c, a) {
5974
+ return tt$1(c) && t2.interceptors[w[c]].eject(a);
5975
5975
  }
5976
- function rt2({ thenDelegate: c, catchDelegate: g = () => {
5976
+ function rt2({ thenDelegate: c, catchDelegate: a = () => {
5977
5977
  } }) {
5978
5978
  return K2(w.request, {
5979
5979
  thenDelegate: c,
5980
- catchDelegate: g
5980
+ catchDelegate: a
5981
5981
  });
5982
5982
  }
5983
5983
  function nt2(c) {
@@ -5985,18 +5985,18 @@ function O$1({ options: e2 }) {
5985
5985
  }
5986
5986
  function ut2({
5987
5987
  thenDelegate: c,
5988
- catchDelegate: g = () => {
5988
+ catchDelegate: a = () => {
5989
5989
  }
5990
5990
  }) {
5991
5991
  return K2(w.response, {
5992
5992
  thenDelegate: c,
5993
- catchDelegate: g
5993
+ catchDelegate: a
5994
5994
  });
5995
5995
  }
5996
5996
  function ot2(c) {
5997
5997
  N2(w.response, c);
5998
5998
  }
5999
- function v({ request: c, isCollection: g, config: m2 }) {
5999
+ function v({ request: c, isCollection: a, config: m2 }) {
6000
6000
  const $2 = z2(m2), { id: b, cancelToken: $t2 } = q$1.save();
6001
6001
  $2.cancelToken = $t2;
6002
6002
  const G2 = (async function() {
@@ -6004,7 +6004,7 @@ function O$1({ options: e2 }) {
6004
6004
  const T = await c($2);
6005
6005
  return lt2({
6006
6006
  response: T,
6007
- isCollection: g,
6007
+ isCollection: a,
6008
6008
  config: $2
6009
6009
  });
6010
6010
  } catch (T) {
@@ -6015,8 +6015,8 @@ function O$1({ options: e2 }) {
6015
6015
  })();
6016
6016
  return G2.cancel = (T) => I$1.cancelById(b, T), G2;
6017
6017
  }
6018
- function lt2({ response: c, isCollection: g, config: m2 }) {
6019
- return g ? new yt$1(c, m2) : new et$1(c, m2);
6018
+ function lt2({ response: c, isCollection: a, config: m2 }) {
6019
+ return a ? new yt$1(c, m2) : new et$1(c, m2);
6020
6020
  }
6021
6021
  function L2({ error: c }) {
6022
6022
  if (axios.isCancel(c))
@@ -6040,61 +6040,61 @@ function O$1({ options: e2 }) {
6040
6040
  }
6041
6041
  function ct2(c) {
6042
6042
  return c.params !== void 0 && (c.params = Object.keys(c.params).filter(
6043
- (g) => {
6043
+ (a) => {
6044
6044
  var m2;
6045
- return c.params[g] !== null && c.params[g] !== "" && !(g === "sort" && ((m2 = c.params[g]) == null ? void 0 : m2.length) === 0);
6045
+ return c.params[a] !== null && c.params[a] !== "" && !(a === "sort" && ((m2 = c.params[a]) == null ? void 0 : m2.length) === 0);
6046
6046
  }
6047
- ).reduce((g, m2) => {
6047
+ ).reduce((a, m2) => {
6048
6048
  const $2 = c.params[m2];
6049
- return g[m2] = m2 === "sort" && Array.isArray($2) ? $2.join(",") : $2, g;
6049
+ return a[m2] = m2 === "sort" && Array.isArray($2) ? $2.join(",") : $2, a;
6050
6050
  }, {})), c;
6051
6051
  }
6052
6052
  function z2(c = {}) {
6053
6053
  return { ...ct2(c) };
6054
6054
  }
6055
- function U2(c, g = {}) {
6055
+ function U2(c, a = {}) {
6056
6056
  return v({
6057
6057
  request: (m2) => t2.get(c, m2),
6058
- config: { params: g }
6058
+ config: { params: a }
6059
6059
  });
6060
6060
  }
6061
- function it2(c, g) {
6061
+ function it2(c, a) {
6062
6062
  return v({
6063
6063
  request: (m2) => t2.get(c, m2),
6064
- config: { params: g },
6064
+ config: { params: a },
6065
6065
  isCollection: true
6066
6066
  });
6067
6067
  }
6068
- function V2(c, g, m2 = {}) {
6068
+ function V2(c, a, m2 = {}) {
6069
6069
  let $2 = {};
6070
6070
  return m2.authenticate === false && ($2 = { headers: l() }, delete $2.headers.common["REB-APIKEY"], delete $2.headers.common.Authorization), m2.params && ($2.params = { ...m2.params }), v({
6071
- request: (b) => t2.post(c, g, b),
6071
+ request: (b) => t2.post(c, a, b),
6072
6072
  config: $2
6073
6073
  });
6074
6074
  }
6075
- function J2(c, g, m2 = {}) {
6075
+ function J2(c, a, m2 = {}) {
6076
6076
  return v({
6077
- request: ($2) => t2.put(c, g, $2),
6077
+ request: ($2) => t2.put(c, a, $2),
6078
6078
  config: { params: m2 }
6079
6079
  });
6080
6080
  }
6081
- function gt2(c, g) {
6081
+ function at2(c, a) {
6082
6082
  return v({
6083
- request: (m2) => t2.patch(c, g, m2),
6083
+ request: (m2) => t2.patch(c, a, m2),
6084
6084
  config: {}
6085
6085
  });
6086
6086
  }
6087
- function W2(c, g = null) {
6087
+ function W2(c, a = null) {
6088
6088
  return v({
6089
6089
  request: (m2) => t2.delete(c, m2),
6090
- config: g != null ? { data: g } : {}
6090
+ config: a != null ? { data: a } : {}
6091
6091
  });
6092
6092
  }
6093
- function at2(c, g) {
6094
- return W2(c, g);
6093
+ function gt2(c, a) {
6094
+ return W2(c, a);
6095
6095
  }
6096
- async function mt2(c, g, m2, $2 = {}) {
6097
- if (g === "")
6096
+ async function mt2(c, a, m2, $2 = {}) {
6097
+ if (a === "")
6098
6098
  return V2(c, m2, { params: $2 });
6099
6099
  try {
6100
6100
  if ((await U2(c)).response.status === 200)
@@ -6107,8 +6107,8 @@ function O$1({ options: e2 }) {
6107
6107
  throw b;
6108
6108
  }
6109
6109
  }
6110
- async function ft2(c, g) {
6111
- const m2 = z2(g);
6110
+ async function ft2(c, a) {
6111
+ const m2 = z2(a);
6112
6112
  try {
6113
6113
  const $2 = await t2.get(c, m2);
6114
6114
  return new At$1($2, m2);
@@ -6125,15 +6125,15 @@ function O$1({ options: e2 }) {
6125
6125
  setTimeout: i,
6126
6126
  setProxyAgent: p,
6127
6127
  setSessionToken: f,
6128
- setPublishableKey: a,
6128
+ setPublishableKey: g,
6129
6129
  setEndpoints: h2,
6130
6130
  get: U2,
6131
6131
  getAll: it2,
6132
6132
  post: V2,
6133
6133
  put: J2,
6134
- patch: gt2,
6134
+ patch: at2,
6135
6135
  delete: W2,
6136
- deleteAll: at2,
6136
+ deleteAll: gt2,
6137
6137
  create: mt2,
6138
6138
  download: ft2
6139
6139
  };
@@ -7165,7 +7165,7 @@ function ie$1({ apiHandler: e2 }) {
7165
7165
  }
7166
7166
  };
7167
7167
  }
7168
- function ge({ apiHandler: e2 }) {
7168
+ function ae$1({ apiHandler: e2 }) {
7169
7169
  return {
7170
7170
  /**
7171
7171
  * @param { rebilly.GetEmailNotificationCollectionRequest } request
@@ -7177,7 +7177,7 @@ function ge({ apiHandler: e2 }) {
7177
7177
  }
7178
7178
  };
7179
7179
  }
7180
- function ae$1({ apiHandler: e2 }) {
7180
+ function ge({ apiHandler: e2 }) {
7181
7181
  return {
7182
7182
  /**
7183
7183
  * @param { rebilly.GetEventCollectionRequest } request
@@ -7482,7 +7482,7 @@ function pe$1({ apiHandler: e2 }) {
7482
7482
  const o2 = this.getAllAttachments(s);
7483
7483
  r2.push(o2);
7484
7484
  const i = (await o2).items.map(
7485
- (a) => this.detach({ id: a.fields.id })
7485
+ (g) => this.detach({ id: g.fields.id })
7486
7486
  );
7487
7487
  r2 = [...r2, i], await Promise.all(i);
7488
7488
  const f = e2.delete(`files/${t2}`);
@@ -9552,7 +9552,7 @@ function is({ apiHandler: e2 }) {
9552
9552
  }
9553
9553
  };
9554
9554
  }
9555
- function gs({ apiHandler: e2 }) {
9555
+ function as({ apiHandler: e2 }) {
9556
9556
  return {
9557
9557
  /**
9558
9558
  * @param { rebilly.GetUsageCollectionRequest } request
@@ -9582,7 +9582,7 @@ function gs({ apiHandler: e2 }) {
9582
9582
  }
9583
9583
  };
9584
9584
  }
9585
- function as({ apiHandler: e2 }) {
9585
+ function gs({ apiHandler: e2 }) {
9586
9586
  return {
9587
9587
  /**
9588
9588
  * @param { rebilly.GetUserCollectionRequest } request
@@ -9705,7 +9705,7 @@ class $s {
9705
9705
  apiHandler: t2
9706
9706
  }), this.account = Bt$1({ apiHandler: t2 }), this.allowlists = Kt$1({ apiHandler: t2 }), this.amlChecks = Nt$1({ apiHandler: t2 }), this.amlSettings = Lt$1({ apiHandler: t2 }), this.apiKeys = zt$1({ apiHandler: t2 }), this.applicationInstances = Ut$1({ apiHandler: t2 }), this.applications = Vt$1({ apiHandler: t2 }), this.balanceTransactions = Jt$1({ apiHandler: t2 }), this.billingPortals = Wt$1({ apiHandler: t2 }), this.blocklists = Gt$1({ apiHandler: t2 }), this.broadcastMessages = Yt$1({ apiHandler: t2 }), this.cashiers = Qt$1({ apiHandler: t2 }), this.checkoutForms = Xt$1({ apiHandler: t2 }), this.coupons = Zt$1({ apiHandler: t2 }), this.creditMemos = _t$1({ apiHandler: t2 }), this.customDomains = Ht$1({ apiHandler: t2 }), this.customFields = te$1({ apiHandler: t2 }), this.customerAuthentication = ee$1({ apiHandler: t2 }), this.customers = se$1({ apiHandler: t2 }), this.depositCustomPropertySets = re$1({
9707
9707
  apiHandler: t2
9708
- }), this.depositRequests = ne$1({ apiHandler: t2 }), this.depositStrategies = ue$1({ apiHandler: t2 }), this.digitalWallets = oe$1({ apiHandler: t2 }), this.disputes = le$1({ apiHandler: t2 }), this.emailDeliverySettings = ce$1({ apiHandler: t2 }), this.emailMessages = ie$1({ apiHandler: t2 }), this.emailNotifications = ge({ apiHandler: t2 }), this.events = ae$1({ apiHandler: t2 }), this.externalIdentifiers = me$1({ apiHandler: t2 }), this.externalServicesSettings = fe$1({
9708
+ }), this.depositRequests = ne$1({ apiHandler: t2 }), this.depositStrategies = ue$1({ apiHandler: t2 }), this.digitalWallets = oe$1({ apiHandler: t2 }), this.disputes = le$1({ apiHandler: t2 }), this.emailDeliverySettings = ce$1({ apiHandler: t2 }), this.emailMessages = ie$1({ apiHandler: t2 }), this.emailNotifications = ae$1({ apiHandler: t2 }), this.events = ge({ apiHandler: t2 }), this.externalIdentifiers = me$1({ apiHandler: t2 }), this.externalServicesSettings = fe$1({
9709
9709
  apiHandler: t2
9710
9710
  }), this.fees = $e$1({ apiHandler: t2 }), this.files = pe$1({ apiHandler: t2 }), this.gatewayAccounts = he$1({ apiHandler: t2 }), this.integrations = ye$1({ apiHandler: t2 }), this.invoices = Ae$1({ apiHandler: t2 }), this.journalAccounts = be({ apiHandler: t2 }), this.journalEntries = Re$1({ apiHandler: t2 }), this.journalRecords = we$1({ apiHandler: t2 }), this.kycDocuments = ke$1({ apiHandler: t2 }), this.kycRequests = ve$1({ apiHandler: t2 }), this.kycSettings = qe$1({ apiHandler: t2 }), this.lists = Te$1({ apiHandler: t2 }), this.memberships = de$1({ apiHandler: t2 }), this.orderCancellations = Ie$1({ apiHandler: t2 }), this.orderPauses = Se$1({ apiHandler: t2 }), this.orderReactivations = Ee$1({ apiHandler: t2 }), this.orders = xe$1({ apiHandler: t2 }), this.organizationExports = Pe$1({ apiHandler: t2 }), this.organizations = Ce$1({ apiHandler: t2 }), this.paymentCardsBankNames = De$1({ apiHandler: t2 }), this.paymentInstruments = je$1({ apiHandler: t2 }), this.paymentMethods = Me$1({ apiHandler: t2 }), this.paymentTokens = Oe$1({ apiHandler: t2 }), this.payoutRequestAllocations = Fe$1({
9711
9711
  apiHandler: t2
@@ -9713,7 +9713,7 @@ class $s {
9713
9713
  apiHandler: t2
9714
9714
  }), this.subscriptionPauses = rs({ apiHandler: t2 }), this.subscriptionReactivations = ns({
9715
9715
  apiHandler: t2
9716
- }), this.subscriptions = us({ apiHandler: t2 }), this.tags = os({ apiHandler: t2 }), this.tagsRules = ls({ apiHandler: t2 }), this.tracking = cs({ apiHandler: t2 }), this.transactions = is({ apiHandler: t2 }), this.usages = gs({ apiHandler: t2 }), this.users = as({ apiHandler: t2 }), this.webhooks = ms({ apiHandler: t2 }), this.websites = fs({ apiHandler: t2 }), this.addRequestInterceptor = t2.addRequestInterceptor, this.removeRequestInterceptor = t2.removeRequestInterceptor, this.addResponseInterceptor = t2.addResponseInterceptor, this.removeResponseInterceptor = t2.removeResponseInterceptor, this.setTimeout = t2.setTimeout, this.setProxyAgent = t2.setProxyAgent, this.setSessionToken = t2.setSessionToken, this.setPublishableKey = t2.setPublishableKey, this.setEndpoints = t2.setEndpoints, this.getCancellationToken = t2.getCancellationToken, this.generateSignature = t2.generateSignature;
9716
+ }), this.subscriptions = us({ apiHandler: t2 }), this.tags = os({ apiHandler: t2 }), this.tagsRules = ls({ apiHandler: t2 }), this.tracking = cs({ apiHandler: t2 }), this.transactions = is({ apiHandler: t2 }), this.usages = as({ apiHandler: t2 }), this.users = gs({ apiHandler: t2 }), this.webhooks = ms({ apiHandler: t2 }), this.websites = fs({ apiHandler: t2 }), this.addRequestInterceptor = t2.addRequestInterceptor, this.removeRequestInterceptor = t2.removeRequestInterceptor, this.addResponseInterceptor = t2.addResponseInterceptor, this.removeResponseInterceptor = t2.removeResponseInterceptor, this.setTimeout = t2.setTimeout, this.setProxyAgent = t2.setProxyAgent, this.setSessionToken = t2.setSessionToken, this.setPublishableKey = t2.setPublishableKey, this.setEndpoints = t2.setEndpoints, this.getCancellationToken = t2.getCancellationToken, this.generateSignature = t2.generateSignature;
9717
9717
  }
9718
9718
  }
9719
9719
  function ps({ apiHandler: e2 }) {
@@ -10120,7 +10120,7 @@ function As({ apiHandler: e2 }) {
10120
10120
  filter: i = null,
10121
10121
  criteria: f = null
10122
10122
  }) {
10123
- const a = {
10123
+ const g = {
10124
10124
  aggregationField: t2,
10125
10125
  aggregationPeriod: s,
10126
10126
  includeSwitchedSubscriptions: r2,
@@ -10131,7 +10131,7 @@ function As({ apiHandler: e2 }) {
10131
10131
  filter: i,
10132
10132
  criteria: f
10133
10133
  };
10134
- return e2.get("reports/retention-percentage", a);
10134
+ return e2.get("reports/retention-percentage", g);
10135
10135
  },
10136
10136
  /**
10137
10137
  * @returns { rebilly.GetRetentionValueReportResponsePromise } response
@@ -10146,7 +10146,7 @@ function As({ apiHandler: e2 }) {
10146
10146
  limit: l = null,
10147
10147
  offset: i = null,
10148
10148
  filter: f = null,
10149
- sort: a = null,
10149
+ sort: g = null,
10150
10150
  criteria: p = null
10151
10151
  }) {
10152
10152
  const h2 = {
@@ -10159,7 +10159,7 @@ function As({ apiHandler: e2 }) {
10159
10159
  limit: l,
10160
10160
  offset: i,
10161
10161
  filter: f,
10162
- sort: a,
10162
+ sort: g,
10163
10163
  criteria: p
10164
10164
  };
10165
10165
  return e2.get("reports/retention-value", h2);