@rebilly/instruments 16.42.0 → 16.44.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.42.0](https://github.com/Rebilly/rebilly/compare/instruments/core-v16.41.0...instruments/core-v16.42.0) (2026-01-08)
1
+ ## [16.44.0](https://github.com/Rebilly/rebilly/compare/instruments/core-v16.43.0...instruments/core-v16.44.0) (2026-01-12)
2
2
 
3
3
 
4
4
  ### Features
5
5
 
6
- * Upgrade ESLint and Prettier ([#17793](https://github.com/Rebilly/rebilly/issues/17793)) ([8883216](https://github.com/Rebilly/rebilly/commit/88832162761efa08569e6dcc03366f727eebd96a))
6
+ * **api-metadata, rebilly-js-sdk:** Update resources based on latest api definitions ([#17921](https://github.com/Rebilly/rebilly/issues/17921)) ([f21ce24](https://github.com/Rebilly/rebilly/commit/f21ce24d1f6f8032ebb8f5dabbf9de747802733b))
package/dist/index.js CHANGED
@@ -4803,12 +4803,12 @@ class p extends Error {
4803
4803
  r2 && r2.data && r2.data.error && (l = r2.data.error), super(l), this.name = s || "RebillyError", this.response = r2, this.request = u, this.config = n2, this.status = r2 && r2.status ? r2.status : null, this.statusText = r2 && r2.statusText ? r2.statusText : null, this.details = r2 && r2.data && r2.data.details ? r2.data.details : null, this.invalidFields = r2 && r2.data && r2.data.invalidFields ? r2.data.invalidFields : null;
4804
4804
  }
4805
4805
  }
4806
- let $e$1 = class $e extends p {
4806
+ let fe$1 = class fe extends p {
4807
4807
  constructor(e2) {
4808
4808
  super({ error: e2, name: "RebillyRequestError" });
4809
4809
  }
4810
4810
  };
4811
- let fe$1 = class fe extends p {
4811
+ let $e$1 = class $e extends p {
4812
4812
  constructor(e2) {
4813
4813
  super({ error: e2, name: "RebillyValidationError" });
4814
4814
  }
@@ -4843,10 +4843,10 @@ class be extends p {
4843
4843
  super({ error: e2, name: "RebillyCanceledError" });
4844
4844
  }
4845
4845
  }
4846
- const f = {
4846
+ const $$1 = {
4847
4847
  RebillyError: p,
4848
- RebillyRequestError: $e$1,
4849
- RebillyValidationError: fe$1,
4848
+ RebillyRequestError: fe$1,
4849
+ RebillyValidationError: $e$1,
4850
4850
  RebillyNotFoundError: pe$1,
4851
4851
  RebillyConflictError: he$1,
4852
4852
  RebillyForbiddenError: ye$1,
@@ -5186,7 +5186,7 @@ function C$1({ options: t2 }) {
5186
5186
  }
5187
5187
  function o2() {
5188
5188
  const i = {
5189
- "REB-API-CONSUMER": `${["Rebilly", t2.appName, "js-sdk"].filter((g) => g).join("/")}@8883216`
5189
+ "REB-API-CONSUMER": `${["Rebilly", t2.appName, "js-sdk"].filter((g) => g).join("/")}@f21ce24`
5190
5190
  };
5191
5191
  return t2.apiKey && (i["REB-APIKEY"] = t2.apiKey), i;
5192
5192
  }
@@ -5196,7 +5196,7 @@ function C$1({ options: t2 }) {
5196
5196
  function a(c) {
5197
5197
  t2.requestTimeout = Number(c), e2.defaults.timeout = t2.requestTimeout;
5198
5198
  }
5199
- function $2(c = t2.jwt) {
5199
+ function f(c = t2.jwt) {
5200
5200
  const i = l();
5201
5201
  t2.apiKey = null, t2.jwt = c, delete i.common["REB-APIKEY"], i.common.Authorization = `Bearer ${c}`, e2.defaults.headers = i;
5202
5202
  }
@@ -5271,23 +5271,23 @@ function C$1({ options: t2 }) {
5271
5271
  }
5272
5272
  function F2({ error: c }) {
5273
5273
  if (axios.isCancel(c))
5274
- throw new f.RebillyCanceledError(c);
5274
+ throw new $$1.RebillyCanceledError(c);
5275
5275
  if (c.response)
5276
5276
  switch (Number(c.response.status)) {
5277
5277
  case 401:
5278
- throw new f.RebillyForbiddenError(c);
5278
+ throw new $$1.RebillyForbiddenError(c);
5279
5279
  case 404:
5280
- throw new f.RebillyNotFoundError(c);
5280
+ throw new $$1.RebillyNotFoundError(c);
5281
5281
  case 405:
5282
- throw new f.RebillyMethodNotAllowedError(c);
5282
+ throw new $$1.RebillyMethodNotAllowedError(c);
5283
5283
  case 409:
5284
- throw new f.RebillyConflictError(c);
5284
+ throw new $$1.RebillyConflictError(c);
5285
5285
  case 422:
5286
- throw new f.RebillyValidationError(c);
5286
+ throw new $$1.RebillyValidationError(c);
5287
5287
  default:
5288
- throw new f.RebillyRequestError(c);
5288
+ throw new $$1.RebillyRequestError(c);
5289
5289
  }
5290
- throw c.code === "ECONNABORTED" ? new f.RebillyTimeoutError(c) : new f.RebillyRequestError(c);
5290
+ throw c.code === "ECONNABORTED" ? new $$1.RebillyTimeoutError(c) : new $$1.RebillyRequestError(c);
5291
5291
  }
5292
5292
  function te2(c) {
5293
5293
  return c.params !== void 0 && (c.params = Object.keys(c.params).filter(
@@ -5346,7 +5346,7 @@ function C$1({ options: t2 }) {
5346
5346
  return B2(c, g, { params: m2 });
5347
5347
  try {
5348
5348
  if ((await N2(c)).response.status === 200)
5349
- throw new f.RebillyConflictError({
5349
+ throw new $$1.RebillyConflictError({
5350
5350
  message: "A resource already exists with this ID. Please use a different ID."
5351
5351
  });
5352
5352
  } catch (h2) {
@@ -5372,7 +5372,7 @@ function C$1({ options: t2 }) {
5372
5372
  removeResponseInterceptor: H2,
5373
5373
  setTimeout: a,
5374
5374
  setProxyAgent: I2,
5375
- setSessionToken: $2,
5375
+ setSessionToken: f,
5376
5376
  setPublishableKey: y,
5377
5377
  setEndpoints: S2,
5378
5378
  get: N2,
@@ -5893,7 +5893,7 @@ function mt$1({ apiHandler: t2 }) {
5893
5893
  }
5894
5894
  };
5895
5895
  }
5896
- function $t$1({ apiHandler: t2 }) {
5896
+ function ft$1({ apiHandler: t2 }) {
5897
5897
  return {
5898
5898
  /**
5899
5899
  * @param { rebilly.GetCustomDomainCollectionRequest } request
@@ -5923,7 +5923,7 @@ function $t$1({ apiHandler: t2 }) {
5923
5923
  }
5924
5924
  };
5925
5925
  }
5926
- function ft$1({ apiHandler: t2 }) {
5926
+ function $t$1({ apiHandler: t2 }) {
5927
5927
  return {
5928
5928
  /**
5929
5929
  * @returns { rebilly.GetCustomFieldCollectionResponsePromise } response
@@ -6722,8 +6722,8 @@ function Et$1({ apiHandler: t2 }) {
6722
6722
  (y) => this.detach({ id: y.fields.id })
6723
6723
  );
6724
6724
  n2 = [...n2, a], await Promise.all(a);
6725
- const $2 = t2.delete(`files/${e2}`);
6726
- return n2.push($2), $2;
6725
+ const f = t2.delete(`files/${e2}`);
6726
+ return n2.push(f), f;
6727
6727
  })();
6728
6728
  return u.cancel = () => {
6729
6729
  n2.forEach((o2) => o2.cancel());
@@ -7646,6 +7646,9 @@ function Zt$1({ apiHandler: t2 }) {
7646
7646
  create({ data: e2 }) {
7647
7647
  return t2.post("payout-request-allocations", e2);
7648
7648
  },
7649
+ autoAllocate({ data: e2 }) {
7650
+ return t2.post("payout-request-allocations/auto", e2);
7651
+ },
7649
7652
  update({ id: e2, data: s }) {
7650
7653
  return t2.patch(`payout-request-allocations/${e2}`, s);
7651
7654
  }
@@ -8130,7 +8133,7 @@ function ms({ apiHandler: t2 }) {
8130
8133
  }
8131
8134
  };
8132
8135
  }
8133
- function $s({ apiHandler: t2 }) {
8136
+ function fs({ apiHandler: t2 }) {
8134
8137
  return {
8135
8138
  /**
8136
8139
  * @param { rebilly.GetServiceCredentialCollectionRequest } request
@@ -8173,15 +8176,15 @@ function $s({ apiHandler: t2 }) {
8173
8176
  fields: l = null,
8174
8177
  sort: a = null
8175
8178
  }) {
8176
- const $2 = { limit: n2, offset: r2, filter: u, q: o2, fields: l, sort: a };
8179
+ const f = { limit: n2, offset: r2, filter: u, q: o2, fields: l, sort: a };
8177
8180
  return t2.getAll(
8178
8181
  `service-credentials/${e2}/${s}/items`,
8179
- $2
8182
+ f
8180
8183
  );
8181
8184
  }
8182
8185
  };
8183
8186
  }
8184
- function fs({ apiHandler: t2 }) {
8187
+ function $s({ apiHandler: t2 }) {
8185
8188
  return {
8186
8189
  /**
8187
8190
  * @param { rebilly.GetShippingRateCollectionRequest } request
@@ -8838,13 +8841,13 @@ function Is({ apiHandler: t2 }) {
8838
8841
  }
8839
8842
  class Ss {
8840
8843
  constructor({ apiHandler: e2 }) {
8841
- this.account = _e$1({ apiHandler: e2 }), this.allowlists = He$1({ apiHandler: e2 }), this.amlChecks = et$1({ apiHandler: e2 }), this.amlSettings = tt$1({ apiHandler: e2 }), this.apiKeys = st$1({ apiHandler: e2 }), this.applicationInstances = nt$1({ apiHandler: e2 }), this.applications = rt$1({ apiHandler: e2 }), this.balanceTransactions = ut$1({ apiHandler: e2 }), this.billingPortals = ot$1({ apiHandler: e2 }), this.blocklists = lt$1({ apiHandler: e2 }), this.broadcastMessages = ct$1({ apiHandler: e2 }), this.cashiers = it$1({ apiHandler: e2 }), this.checkoutForms = gt$1({ apiHandler: e2 }), this.coupons = at$1({ apiHandler: e2 }), this.creditMemos = mt$1({ apiHandler: e2 }), this.customDomains = $t$1({ apiHandler: e2 }), this.customFields = ft$1({ apiHandler: e2 }), this.customerAuthentication = pt$1({ apiHandler: e2 }), this.customers = ht$1({ apiHandler: e2 }), this.depositCustomPropertySets = yt$1({
8844
+ this.account = _e$1({ apiHandler: e2 }), this.allowlists = He$1({ apiHandler: e2 }), this.amlChecks = et$1({ apiHandler: e2 }), this.amlSettings = tt$1({ apiHandler: e2 }), this.apiKeys = st$1({ apiHandler: e2 }), this.applicationInstances = nt$1({ apiHandler: e2 }), this.applications = rt$1({ apiHandler: e2 }), this.balanceTransactions = ut$1({ apiHandler: e2 }), this.billingPortals = ot$1({ apiHandler: e2 }), this.blocklists = lt$1({ apiHandler: e2 }), this.broadcastMessages = ct$1({ apiHandler: e2 }), this.cashiers = it$1({ apiHandler: e2 }), this.checkoutForms = gt$1({ apiHandler: e2 }), this.coupons = at$1({ apiHandler: e2 }), this.creditMemos = mt$1({ apiHandler: e2 }), this.customDomains = ft$1({ apiHandler: e2 }), this.customFields = $t$1({ apiHandler: e2 }), this.customerAuthentication = pt$1({ apiHandler: e2 }), this.customers = ht$1({ apiHandler: e2 }), this.depositCustomPropertySets = yt$1({
8842
8845
  apiHandler: e2
8843
8846
  }), this.depositRequests = At$1({ apiHandler: e2 }), this.depositStrategies = Rt$1({ apiHandler: e2 }), this.digitalWallets = bt$1({ apiHandler: e2 }), this.disputes = wt$1({ apiHandler: e2 }), this.emailDeliverySettings = kt$1({ apiHandler: e2 }), this.emailMessages = vt$1({ apiHandler: e2 }), this.emailNotifications = Tt$1({ apiHandler: e2 }), this.events = dt$1({ apiHandler: e2 }), this.externalIdentifiers = qt$1({ apiHandler: e2 }), this.externalServicesSettings = It$1({
8844
8847
  apiHandler: e2
8845
8848
  }), this.fees = St$1({ apiHandler: e2 }), this.files = Et$1({ apiHandler: e2 }), this.gatewayAccounts = xt$1({ apiHandler: e2 }), this.integrations = Pt$1({ apiHandler: e2 }), this.invoices = Ct$1({ apiHandler: e2 }), this.journalAccounts = jt$1({ apiHandler: e2 }), this.journalEntries = Dt$1({ apiHandler: e2 }), this.journalRecords = Mt$1({ apiHandler: e2 }), this.kycDocuments = Ot$1({ apiHandler: e2 }), this.kycRequests = Ft$1({ apiHandler: e2 }), this.kycSettings = Kt$1({ apiHandler: e2 }), this.lists = Nt$1({ apiHandler: e2 }), this.memberships = Bt$1({ apiHandler: e2 }), this.orderCancellations = Lt$1({ apiHandler: e2 }), this.orderPauses = zt$1({ apiHandler: e2 }), this.orderReactivations = Ut$1({ apiHandler: e2 }), this.orders = Vt$1({ apiHandler: e2 }), this.organizationExports = Jt$1({ apiHandler: e2 }), this.organizations = Wt$1({ apiHandler: e2 }), this.paymentCardsBankNames = Gt$1({ apiHandler: e2 }), this.paymentInstruments = Yt$1({ apiHandler: e2 }), this.paymentMethods = Qt$1({ apiHandler: e2 }), this.paymentTokens = Xt$1({ apiHandler: e2 }), this.payoutRequestAllocations = Zt$1({
8846
8849
  apiHandler: e2
8847
- }), this.payoutRequests = _t$1({ apiHandler: e2 }), this.payoutRequestsV2 = Ht$1({ apiHandler: e2 }), this.payouts = es({ apiHandler: e2 }), this.plans = ts({ apiHandler: e2 }), this.previews = ss({ apiHandler: e2 }), this.products = ns({ apiHandler: e2 }), this.profile = rs({ apiHandler: e2 }), this.purchase = us({ apiHandler: e2 }), this.quotes = os({ apiHandler: e2 }), this.resource = ls({ apiHandler: e2 }), this.riskScoreRules = cs({ apiHandler: e2 }), this.roles = is({ apiHandler: e2 }), this.search = gs({ apiHandler: e2 }), this.segments = as({ apiHandler: e2 }), this.sendThroughAttribution = ms({ apiHandler: e2 }), this.serviceCredentials = $s({ apiHandler: e2 }), this.shippingRates = fs({ apiHandler: e2 }), this.status = ps({ apiHandler: e2 }), this.subscriptionCancellations = hs({
8850
+ }), this.payoutRequests = _t$1({ apiHandler: e2 }), this.payoutRequestsV2 = Ht$1({ apiHandler: e2 }), this.payouts = es({ apiHandler: e2 }), this.plans = ts({ apiHandler: e2 }), this.previews = ss({ apiHandler: e2 }), this.products = ns({ apiHandler: e2 }), this.profile = rs({ apiHandler: e2 }), this.purchase = us({ apiHandler: e2 }), this.quotes = os({ apiHandler: e2 }), this.resource = ls({ apiHandler: e2 }), this.riskScoreRules = cs({ apiHandler: e2 }), this.roles = is({ apiHandler: e2 }), this.search = gs({ apiHandler: e2 }), this.segments = as({ apiHandler: e2 }), this.sendThroughAttribution = ms({ apiHandler: e2 }), this.serviceCredentials = fs({ apiHandler: e2 }), this.shippingRates = $s({ apiHandler: e2 }), this.status = ps({ apiHandler: e2 }), this.subscriptionCancellations = hs({
8848
8851
  apiHandler: e2
8849
8852
  }), this.subscriptionPauses = ys({ apiHandler: e2 }), this.subscriptionReactivations = As({
8850
8853
  apiHandler: e2
@@ -8908,6 +8911,27 @@ function xs({ apiHandler: t2 }) {
8908
8911
  }
8909
8912
  function Ps({ apiHandler: t2 }) {
8910
8913
  return {
8914
+ /**
8915
+ * @returns { rebilly.GetHistogramAmlCheckReportResponsePromise } response
8916
+ */
8917
+ getAmlCheckHistogramReport({
8918
+ periodStart: e2 = null,
8919
+ periodEnd: s = null,
8920
+ aggregationPeriod: n2 = null,
8921
+ metric: r2 = null,
8922
+ includePropagatedResults: u = null,
8923
+ filter: o2 = null
8924
+ }) {
8925
+ const l = {
8926
+ periodStart: e2,
8927
+ periodEnd: s,
8928
+ aggregationPeriod: n2,
8929
+ metric: r2,
8930
+ includePropagatedResults: u,
8931
+ filter: o2
8932
+ };
8933
+ return t2.get("histograms/aml-checks", l);
8934
+ },
8911
8935
  /**
8912
8936
  * @returns { rebilly.GetHistogramTransactionReportResponsePromise } response
8913
8937
  */
@@ -9098,7 +9122,7 @@ function Cs({ apiHandler: t2 }) {
9098
9122
  offset: l = null,
9099
9123
  filter: a = null
9100
9124
  }) {
9101
- const $2 = {
9125
+ const f = {
9102
9126
  currency: e2,
9103
9127
  bookedFrom: s,
9104
9128
  bookedTo: n2,
@@ -9108,7 +9132,7 @@ function Cs({ apiHandler: t2 }) {
9108
9132
  offset: l,
9109
9133
  filter: a
9110
9134
  };
9111
- return t2.get("reports/journal", $2);
9135
+ return t2.get("reports/journal", f);
9112
9136
  },
9113
9137
  /**
9114
9138
  * @returns { rebilly.GetJournalSummaryReportResponsePromise } response
@@ -9202,7 +9226,7 @@ function Cs({ apiHandler: t2 }) {
9202
9226
  limit: o2 = null,
9203
9227
  offset: l = null,
9204
9228
  filter: a = null,
9205
- criteria: $2 = null
9229
+ criteria: f = null
9206
9230
  }) {
9207
9231
  const y = {
9208
9232
  aggregationField: e2,
@@ -9213,7 +9237,7 @@ function Cs({ apiHandler: t2 }) {
9213
9237
  limit: o2,
9214
9238
  offset: l,
9215
9239
  filter: a,
9216
- criteria: $2
9240
+ criteria: f
9217
9241
  };
9218
9242
  return t2.get("reports/retention-percentage", y);
9219
9243
  },
@@ -9229,7 +9253,7 @@ function Cs({ apiHandler: t2 }) {
9229
9253
  periodEnd: o2 = null,
9230
9254
  limit: l = null,
9231
9255
  offset: a = null,
9232
- filter: $2 = null,
9256
+ filter: f = null,
9233
9257
  sort: y = null,
9234
9258
  criteria: I2 = null
9235
9259
  }) {
@@ -9242,7 +9266,7 @@ function Cs({ apiHandler: t2 }) {
9242
9266
  periodEnd: o2,
9243
9267
  limit: l,
9244
9268
  offset: a,
9245
- filter: $2,
9269
+ filter: f,
9246
9270
  sort: y,
9247
9271
  criteria: I2
9248
9272
  };
@@ -10299,15 +10323,15 @@ function F(e2, t2, n2, a) {
10299
10323
  function c(u) {
10300
10324
  try {
10301
10325
  s(a.next(u));
10302
- } catch (f2) {
10303
- o2(f2);
10326
+ } catch (f) {
10327
+ o2(f);
10304
10328
  }
10305
10329
  }
10306
10330
  function l(u) {
10307
10331
  try {
10308
10332
  s(a.throw(u));
10309
- } catch (f2) {
10310
- o2(f2);
10333
+ } catch (f) {
10334
+ o2(f);
10311
10335
  }
10312
10336
  }
10313
10337
  function s(u) {
@@ -10551,9 +10575,9 @@ function xe(e2) {
10551
10575
  l("id", u.slice(1));
10552
10576
  break;
10553
10577
  case "[": {
10554
- var f2 = /^\[([\w-]+)([~|^$*]?=("(.*?)"|([\w-]+)))?(\s+[is])?\]$/.exec(u);
10555
- if (f2)
10556
- l(f2[1], (n2 = (t2 = f2[4]) !== null && t2 !== void 0 ? t2 : f2[5]) !== null && n2 !== void 0 ? n2 : "");
10578
+ var f = /^\[([\w-]+)([~|^$*]?=("(.*?)"|([\w-]+)))?(\s+[is])?\]$/.exec(u);
10579
+ if (f)
10580
+ l(f[1], (n2 = (t2 = f[4]) !== null && t2 !== void 0 ? t2 : f[5]) !== null && n2 !== void 0 ? n2 : "");
10557
10581
  else
10558
10582
  throw new Error(a);
10559
10583
  break;
@@ -10590,12 +10614,12 @@ function Ve(e2, t2) {
10590
10614
  return new Promise(function(s) {
10591
10615
  var u = Date.now();
10592
10616
  K(l, function() {
10593
- for (var f2 = [], d2 = 0; d2 < arguments.length; d2++)
10594
- f2[d2] = arguments[d2];
10617
+ for (var f = [], d2 = 0; d2 < arguments.length; d2++)
10618
+ f[d2] = arguments[d2];
10595
10619
  var p2 = c + Date.now() - u;
10596
- if (!f2[0])
10597
- return s({ error: $(f2[1]), duration: p2 });
10598
- s({ value: f2[1], duration: p2 });
10620
+ if (!f[0])
10621
+ return s({ error: $(f[1]), duration: p2 });
10622
+ s({ value: f[1], duration: p2 });
10599
10623
  });
10600
10624
  });
10601
10625
  });
@@ -10616,23 +10640,23 @@ function Fe(e2, t2, n2) {
10616
10640
  return Y(i), function() {
10617
10641
  return F(this, void 0, void 0, function() {
10618
10642
  var o2, c, l, s, u;
10619
- return W(this, function(f2) {
10620
- switch (f2.label) {
10643
+ return W(this, function(f) {
10644
+ switch (f.label) {
10621
10645
  case 0:
10622
10646
  return [4, i];
10623
10647
  case 1:
10624
- return o2 = f2.sent(), [4, _(o2, function(d2) {
10648
+ return o2 = f.sent(), [4, _(o2, function(d2) {
10625
10649
  var p2 = d2();
10626
10650
  return Y(p2), p2;
10627
10651
  })];
10628
10652
  case 2:
10629
- return c = f2.sent(), [
10653
+ return c = f.sent(), [
10630
10654
  4,
10631
10655
  Promise.all(c)
10632
10656
  // Keeping the component keys order the same as the source keys order
10633
10657
  ];
10634
10658
  case 3:
10635
- for (l = f2.sent(), s = {}, u = 0; u < a.length; ++u)
10659
+ for (l = f.sent(), s = {}, u = 0; u < a.length; ++u)
10636
10660
  s[a[u]] = l[u];
10637
10661
  return [2, s];
10638
10662
  }
@@ -10756,12 +10780,12 @@ function Ye() {
10756
10780
  r2.type = "triangle", r2.frequency.value = 1e4;
10757
10781
  var o2 = i.createDynamicsCompressor();
10758
10782
  o2.threshold.value = -50, o2.knee.value = 40, o2.ratio.value = 12, o2.attack.value = 0, o2.release.value = 0.25, r2.connect(o2), o2.connect(i.destination), r2.start(0);
10759
- var c = Pe(i), l = c[0], s = c[1], u = l.then(function(f2) {
10760
- return Xe(f2.getChannelData(0).subarray(n2));
10761
- }, function(f2) {
10762
- if (f2.name === "timeout" || f2.name === "suspended")
10783
+ var c = Pe(i), l = c[0], s = c[1], u = l.then(function(f) {
10784
+ return Xe(f.getChannelData(0).subarray(n2));
10785
+ }, function(f) {
10786
+ if (f.name === "timeout" || f.name === "suspended")
10763
10787
  return -3;
10764
- throw f2;
10788
+ throw f;
10765
10789
  });
10766
10790
  return Y(u), function() {
10767
10791
  return s(), u;
@@ -10773,7 +10797,7 @@ function je() {
10773
10797
  function Pe(e2) {
10774
10798
  var t2 = 3, n2 = 500, a = 500, i = 5e3, r2 = function() {
10775
10799
  }, o2 = new Promise(function(c, l) {
10776
- var s = false, u = 0, f2 = 0;
10800
+ var s = false, u = 0, f = 0;
10777
10801
  e2.oncomplete = function(g) {
10778
10802
  return c(g.renderedBuffer);
10779
10803
  };
@@ -10783,13 +10807,13 @@ function Pe(e2) {
10783
10807
  "timeout"
10784
10808
  /* InnerErrorName.Timeout */
10785
10809
  ));
10786
- }, Math.min(a, f2 + i - Date.now()));
10810
+ }, Math.min(a, f + i - Date.now()));
10787
10811
  }, p2 = function() {
10788
10812
  try {
10789
10813
  var g = e2.startRendering();
10790
10814
  switch (le(g) && Y(g), e2.state) {
10791
10815
  case "running":
10792
- f2 = Date.now(), s && d2();
10816
+ f = Date.now(), s && d2();
10793
10817
  break;
10794
10818
  case "suspended":
10795
10819
  document.hidden || u++, s && u >= t2 ? l(ee(
@@ -10803,7 +10827,7 @@ function Pe(e2) {
10803
10827
  }
10804
10828
  };
10805
10829
  p2(), r2 = function() {
10806
- s || (s = true, f2 > 0 && d2());
10830
+ s || (s = true, f > 0 && d2());
10807
10831
  };
10808
10832
  });
10809
10833
  return [o2, r2];
@@ -10833,17 +10857,17 @@ function ve(e2, t2, n2) {
10833
10857
  c = o2.createElement("iframe"), l.label = 4;
10834
10858
  case 4:
10835
10859
  return l.trys.push([4, , 10, 11]), [4, new Promise(function(s, u) {
10836
- var f2 = false, d2 = function() {
10837
- f2 = true, s();
10860
+ var f = false, d2 = function() {
10861
+ f = true, s();
10838
10862
  }, p2 = function(b2) {
10839
- f2 = true, u(b2);
10863
+ f = true, u(b2);
10840
10864
  };
10841
10865
  c.onload = d2, c.onerror = p2;
10842
10866
  var g = c.style;
10843
10867
  g.setProperty("display", "block", "important"), g.position = "absolute", g.top = "0", g.left = "0", g.visibility = "hidden", t2 && "srcdoc" in c ? c.srcdoc = t2 : c.src = "about:blank", o2.body.appendChild(c);
10844
10868
  var y = function() {
10845
10869
  var b2, w2;
10846
- f2 || (((w2 = (b2 = c.contentWindow) === null || b2 === void 0 ? void 0 : b2.document) === null || w2 === void 0 ? void 0 : w2.readyState) === "complete" ? d2() : setTimeout(y, 10));
10870
+ f || (((w2 = (b2 = c.contentWindow) === null || b2 === void 0 ? void 0 : b2.document) === null || w2 === void 0 ? void 0 : w2.readyState) === "complete" ? d2() : setTimeout(y, 10));
10847
10871
  };
10848
10872
  y();
10849
10873
  })];
@@ -10963,7 +10987,7 @@ function Je() {
10963
10987
  b2(D2);
10964
10988
  }
10965
10989
  return y;
10966
- }, f2 = function(y) {
10990
+ }, f = function(y) {
10967
10991
  return M.some(function(b2, w2) {
10968
10992
  return y[w2].offsetWidth !== r2[b2] || y[w2].offsetHeight !== o2[b2];
10969
10993
  });
@@ -10972,7 +10996,7 @@ function Je() {
10972
10996
  for (var g = 0; g < M.length; g++)
10973
10997
  r2[M[g]] = d2[g].offsetWidth, o2[M[g]] = d2[g].offsetHeight;
10974
10998
  return te.filter(function(y) {
10975
- return f2(p2[y]);
10999
+ return f(p2[y]);
10976
11000
  });
10977
11001
  });
10978
11002
  }
@@ -11521,10 +11545,10 @@ function St(e2) {
11521
11545
  })), [4, Ct(r2)]) : [2, void 0];
11522
11546
  case 1:
11523
11547
  return o2 = s.sent(), n2 && xt(a, o2), c = i.filter(function(u) {
11524
- var f2 = a[u], d2 = k(f2.map(function(p2) {
11548
+ var f = a[u], d2 = k(f.map(function(p2) {
11525
11549
  return o2[p2];
11526
11550
  }));
11527
- return d2 > f2.length * 0.6;
11551
+ return d2 > f.length * 0.6;
11528
11552
  }), c.sort(), [2, c];
11529
11553
  }
11530
11554
  });
@@ -11645,7 +11669,7 @@ var m = Math, S = function() {
11645
11669
  return 0;
11646
11670
  };
11647
11671
  function It() {
11648
- var e2 = m.acos || S, t2 = m.acosh || S, n2 = m.asin || S, a = m.asinh || S, i = m.atanh || S, r2 = m.atan || S, o2 = m.sin || S, c = m.sinh || S, l = m.cos || S, s = m.cosh || S, u = m.tan || S, f2 = m.tanh || S, d2 = m.exp || S, p2 = m.expm1 || S, g = m.log1p || S, y = function(v2) {
11672
+ var e2 = m.acos || S, t2 = m.acosh || S, n2 = m.asin || S, a = m.asinh || S, i = m.atanh || S, r2 = m.atan || S, o2 = m.sin || S, c = m.sinh || S, l = m.cos || S, s = m.cosh || S, u = m.tan || S, f = m.tanh || S, d2 = m.exp || S, p2 = m.expm1 || S, g = m.log1p || S, y = function(v2) {
11649
11673
  return m.pow(m.PI, v2);
11650
11674
  }, b2 = function(v2) {
11651
11675
  return m.log(v2 + m.sqrt(v2 * v2 - 1));
@@ -11681,7 +11705,7 @@ function It() {
11681
11705
  cosh: s(1),
11682
11706
  coshPf: P2(1),
11683
11707
  tan: u(-1e300),
11684
- tanh: f2(1),
11708
+ tanh: f(1),
11685
11709
  tanhPf: ge2(1),
11686
11710
  exp: d2(1),
11687
11711
  expm1: p2(1),
@@ -11716,8 +11740,8 @@ var Gt = "mmMwWLliI0fiflO&1", J = {
11716
11740
  function Yt() {
11717
11741
  return jt(function(e2, t2) {
11718
11742
  for (var n2 = {}, a = {}, i = 0, r2 = Object.keys(J); i < r2.length; i++) {
11719
- var o2 = r2[i], c = J[o2], l = c[0], s = l === void 0 ? {} : l, u = c[1], f2 = u === void 0 ? Gt : u, d2 = e2.createElement("span");
11720
- d2.textContent = f2, d2.style.whiteSpace = "nowrap";
11743
+ var o2 = r2[i], c = J[o2], l = c[0], s = l === void 0 ? {} : l, u = c[1], f = u === void 0 ? Gt : u, d2 = e2.createElement("span");
11744
+ d2.textContent = f, d2.style.whiteSpace = "nowrap";
11721
11745
  for (var p2 = 0, g = Object.keys(s); p2 < g.length; p2++) {
11722
11746
  var y = g[p2], b2 = s[y];
11723
11747
  b2 !== void 0 && (d2.style[y] = b2);