@rebilly/instruments 16.177.0 → 16.177.1
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 +3 -3
- package/dist/index.js +82 -82
- package/dist/index.min.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
## [16.177.
|
|
1
|
+
## [16.177.1](https://github.com/Rebilly/rebilly/compare/instruments/core-v16.177.0...instruments/core-v16.177.1) (2026-09-01)
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
###
|
|
4
|
+
### Bug Fixes
|
|
5
5
|
|
|
6
|
-
* **
|
|
6
|
+
* **instruments:** keep payment forms visible when adding or updating a card ([#25426](https://github.com/Rebilly/rebilly/issues/25426)) ([da04aca](https://github.com/Rebilly/rebilly/commit/da04aca29d5822c22db4f0ee66f9bea6262fac3a))
|
package/dist/index.js
CHANGED
|
@@ -5938,30 +5938,30 @@ function st$1() {
|
|
|
5938
5938
|
}
|
|
5939
5939
|
return h2.slice(8, -1).toLowerCase().replace(/\s/g, "");
|
|
5940
5940
|
};
|
|
5941
|
-
function t(
|
|
5942
|
-
return typeof
|
|
5941
|
+
function t(g) {
|
|
5942
|
+
return typeof g.constructor == "function" ? g.constructor.name : null;
|
|
5943
5943
|
}
|
|
5944
|
-
function s(
|
|
5945
|
-
return Array.isArray ? Array.isArray(
|
|
5944
|
+
function s(g) {
|
|
5945
|
+
return Array.isArray ? Array.isArray(g) : g instanceof Array;
|
|
5946
5946
|
}
|
|
5947
|
-
function r(
|
|
5948
|
-
return
|
|
5947
|
+
function r(g) {
|
|
5948
|
+
return g instanceof Error || typeof g.message == "string" && g.constructor && typeof g.constructor.stackTraceLimit == "number";
|
|
5949
5949
|
}
|
|
5950
|
-
function n(
|
|
5951
|
-
return
|
|
5950
|
+
function n(g) {
|
|
5951
|
+
return g instanceof Date ? true : typeof g.toDateString == "function" && typeof g.getDate == "function" && typeof g.setDate == "function";
|
|
5952
5952
|
}
|
|
5953
|
-
function u(
|
|
5954
|
-
return
|
|
5953
|
+
function u(g) {
|
|
5954
|
+
return g instanceof RegExp ? true : typeof g.flags == "string" && typeof g.ignoreCase == "boolean" && typeof g.multiline == "boolean" && typeof g.global == "boolean";
|
|
5955
5955
|
}
|
|
5956
|
-
function o(
|
|
5957
|
-
return t(
|
|
5956
|
+
function o(g, p) {
|
|
5957
|
+
return t(g) === "GeneratorFunction";
|
|
5958
5958
|
}
|
|
5959
|
-
function l(
|
|
5960
|
-
return typeof
|
|
5959
|
+
function l(g) {
|
|
5960
|
+
return typeof g.throw == "function" && typeof g.return == "function" && typeof g.next == "function";
|
|
5961
5961
|
}
|
|
5962
|
-
function i(
|
|
5962
|
+
function i(g) {
|
|
5963
5963
|
try {
|
|
5964
|
-
if (typeof
|
|
5964
|
+
if (typeof g.length == "number" && typeof g.callee == "function")
|
|
5965
5965
|
return true;
|
|
5966
5966
|
} catch (p) {
|
|
5967
5967
|
if (p.message.indexOf("callee") !== -1)
|
|
@@ -5969,8 +5969,8 @@ function st$1() {
|
|
|
5969
5969
|
}
|
|
5970
5970
|
return false;
|
|
5971
5971
|
}
|
|
5972
|
-
function f(
|
|
5973
|
-
return
|
|
5972
|
+
function f(g) {
|
|
5973
|
+
return g.constructor && typeof g.constructor.isBuffer == "function" ? g.constructor.isBuffer(g) : false;
|
|
5974
5974
|
}
|
|
5975
5975
|
return x$1;
|
|
5976
5976
|
}
|
|
@@ -6022,8 +6022,8 @@ function St$1() {
|
|
|
6022
6022
|
}
|
|
6023
6023
|
}
|
|
6024
6024
|
function r(i) {
|
|
6025
|
-
const f = i.flags !== void 0 ? i.flags : /\w+$/.exec(i) || void 0,
|
|
6026
|
-
return
|
|
6025
|
+
const f = i.flags !== void 0 ? i.flags : /\w+$/.exec(i) || void 0, g = new i.constructor(i.source, f);
|
|
6026
|
+
return g.lastIndex = i.lastIndex, g;
|
|
6027
6027
|
}
|
|
6028
6028
|
function n(i) {
|
|
6029
6029
|
const f = new i.constructor(i.byteLength);
|
|
@@ -6033,8 +6033,8 @@ function St$1() {
|
|
|
6033
6033
|
return new i.constructor(i.buffer, i.byteOffset, i.length);
|
|
6034
6034
|
}
|
|
6035
6035
|
function o(i) {
|
|
6036
|
-
const f = i.length,
|
|
6037
|
-
return i.copy(
|
|
6036
|
+
const f = i.length, g = Buffer.allocUnsafe ? Buffer.allocUnsafe(f) : Buffer.from(f);
|
|
6037
|
+
return i.copy(g), g;
|
|
6038
6038
|
}
|
|
6039
6039
|
function l(i) {
|
|
6040
6040
|
return e ? Object(e.call(i)) : {};
|
|
@@ -6223,10 +6223,10 @@ function O$1({ options: e }) {
|
|
|
6223
6223
|
return e.apiVersion && (c = `${c}/${e.apiVersion}`), e.organizationId && (c = `${c}/organizations/${e.organizationId}`), `${c}`;
|
|
6224
6224
|
}
|
|
6225
6225
|
function o() {
|
|
6226
|
-
const
|
|
6227
|
-
"REB-API-CONSUMER": `${["Rebilly", e.appName, "js-sdk"].filter((m2) => m2).join("/")}@
|
|
6226
|
+
const a = {
|
|
6227
|
+
"REB-API-CONSUMER": `${["Rebilly", e.appName, "js-sdk"].filter((m2) => m2).join("/")}@da04aca`
|
|
6228
6228
|
};
|
|
6229
|
-
return e.apiKey && (
|
|
6229
|
+
return e.apiKey && (a["REB-APIKEY"] = e.apiKey), a;
|
|
6230
6230
|
}
|
|
6231
6231
|
function l() {
|
|
6232
6232
|
return Dt$1(t.defaults.headers);
|
|
@@ -6235,38 +6235,38 @@ function O$1({ options: e }) {
|
|
|
6235
6235
|
e.requestTimeout = Number(c), t.defaults.timeout = e.requestTimeout;
|
|
6236
6236
|
}
|
|
6237
6237
|
function f(c = e.jwt) {
|
|
6238
|
-
const
|
|
6239
|
-
e.apiKey = null, e.jwt = c, delete
|
|
6238
|
+
const a = l();
|
|
6239
|
+
e.apiKey = null, e.jwt = c, delete a.common["REB-APIKEY"], a.common.Authorization = `Bearer ${c}`, t.defaults.headers = a;
|
|
6240
6240
|
}
|
|
6241
|
-
function
|
|
6242
|
-
const
|
|
6243
|
-
e.publishableKey = c,
|
|
6241
|
+
function g(c = e.publishableKey) {
|
|
6242
|
+
const a = l();
|
|
6243
|
+
e.publishableKey = c, a.common.Authorization = `${c}`, t.defaults.headers = a;
|
|
6244
6244
|
}
|
|
6245
|
-
function p({ host: c, port:
|
|
6245
|
+
function p({ host: c, port: a, auth: m2 }) {
|
|
6246
6246
|
t.defaults.proxy = {
|
|
6247
6247
|
host: c,
|
|
6248
|
-
port:
|
|
6248
|
+
port: a,
|
|
6249
6249
|
auth: m2
|
|
6250
6250
|
};
|
|
6251
6251
|
}
|
|
6252
|
-
function h2({ live: c = null, sandbox:
|
|
6253
|
-
c && (e.apiEndpoints.live = c),
|
|
6252
|
+
function h2({ live: c = null, sandbox: a = null }) {
|
|
6253
|
+
c && (e.apiEndpoints.live = c), a && (e.apiEndpoints.sandbox = a), t.defaults.baseURL = u();
|
|
6254
6254
|
}
|
|
6255
|
-
function K2(c, { thenDelegate:
|
|
6255
|
+
function K2(c, { thenDelegate: a, catchDelegate: m2 = () => {
|
|
6256
6256
|
} }) {
|
|
6257
6257
|
return tt$1(c) && t.interceptors[w[c]].use(
|
|
6258
|
-
|
|
6258
|
+
a,
|
|
6259
6259
|
m2
|
|
6260
6260
|
);
|
|
6261
6261
|
}
|
|
6262
|
-
function N2(c,
|
|
6263
|
-
return tt$1(c) && t.interceptors[w[c]].eject(
|
|
6262
|
+
function N2(c, a) {
|
|
6263
|
+
return tt$1(c) && t.interceptors[w[c]].eject(a);
|
|
6264
6264
|
}
|
|
6265
|
-
function rt2({ thenDelegate: c, catchDelegate:
|
|
6265
|
+
function rt2({ thenDelegate: c, catchDelegate: a = () => {
|
|
6266
6266
|
} }) {
|
|
6267
6267
|
return K2(w.request, {
|
|
6268
6268
|
thenDelegate: c,
|
|
6269
|
-
catchDelegate:
|
|
6269
|
+
catchDelegate: a
|
|
6270
6270
|
});
|
|
6271
6271
|
}
|
|
6272
6272
|
function nt2(c) {
|
|
@@ -6274,18 +6274,18 @@ function O$1({ options: e }) {
|
|
|
6274
6274
|
}
|
|
6275
6275
|
function ut2({
|
|
6276
6276
|
thenDelegate: c,
|
|
6277
|
-
catchDelegate:
|
|
6277
|
+
catchDelegate: a = () => {
|
|
6278
6278
|
}
|
|
6279
6279
|
}) {
|
|
6280
6280
|
return K2(w.response, {
|
|
6281
6281
|
thenDelegate: c,
|
|
6282
|
-
catchDelegate:
|
|
6282
|
+
catchDelegate: a
|
|
6283
6283
|
});
|
|
6284
6284
|
}
|
|
6285
6285
|
function ot2(c) {
|
|
6286
6286
|
N2(w.response, c);
|
|
6287
6287
|
}
|
|
6288
|
-
function v({ request: c, isCollection:
|
|
6288
|
+
function v({ request: c, isCollection: a, config: m2 }) {
|
|
6289
6289
|
const $2 = z2(m2), { id: b, cancelToken: $t2 } = q$1.save();
|
|
6290
6290
|
$2.cancelToken = $t2;
|
|
6291
6291
|
const G2 = (async function() {
|
|
@@ -6293,7 +6293,7 @@ function O$1({ options: e }) {
|
|
|
6293
6293
|
const T = await c($2);
|
|
6294
6294
|
return lt2({
|
|
6295
6295
|
response: T,
|
|
6296
|
-
isCollection:
|
|
6296
|
+
isCollection: a,
|
|
6297
6297
|
config: $2
|
|
6298
6298
|
});
|
|
6299
6299
|
} catch (T) {
|
|
@@ -6304,8 +6304,8 @@ function O$1({ options: e }) {
|
|
|
6304
6304
|
})();
|
|
6305
6305
|
return G2.cancel = (T) => I$1.cancelById(b, T), G2;
|
|
6306
6306
|
}
|
|
6307
|
-
function lt2({ response: c, isCollection:
|
|
6308
|
-
return
|
|
6307
|
+
function lt2({ response: c, isCollection: a, config: m2 }) {
|
|
6308
|
+
return a ? new yt$1(c, m2) : new et$1(c, m2);
|
|
6309
6309
|
}
|
|
6310
6310
|
function L2({ error: c }) {
|
|
6311
6311
|
if (axios.isCancel(c))
|
|
@@ -6329,61 +6329,61 @@ function O$1({ options: e }) {
|
|
|
6329
6329
|
}
|
|
6330
6330
|
function ct2(c) {
|
|
6331
6331
|
return c.params !== void 0 && (c.params = Object.keys(c.params).filter(
|
|
6332
|
-
(
|
|
6332
|
+
(a) => {
|
|
6333
6333
|
var m2;
|
|
6334
|
-
return c.params[
|
|
6334
|
+
return c.params[a] !== null && c.params[a] !== "" && !(a === "sort" && ((m2 = c.params[a]) == null ? void 0 : m2.length) === 0);
|
|
6335
6335
|
}
|
|
6336
|
-
).reduce((
|
|
6336
|
+
).reduce((a, m2) => {
|
|
6337
6337
|
const $2 = c.params[m2];
|
|
6338
|
-
return
|
|
6338
|
+
return a[m2] = m2 === "sort" && Array.isArray($2) ? $2.join(",") : $2, a;
|
|
6339
6339
|
}, {})), c;
|
|
6340
6340
|
}
|
|
6341
6341
|
function z2(c = {}) {
|
|
6342
6342
|
return { ...ct2(c) };
|
|
6343
6343
|
}
|
|
6344
|
-
function U2(c,
|
|
6344
|
+
function U2(c, a = {}) {
|
|
6345
6345
|
return v({
|
|
6346
6346
|
request: (m2) => t.get(c, m2),
|
|
6347
|
-
config: { params:
|
|
6347
|
+
config: { params: a }
|
|
6348
6348
|
});
|
|
6349
6349
|
}
|
|
6350
|
-
function it2(c,
|
|
6350
|
+
function it2(c, a) {
|
|
6351
6351
|
return v({
|
|
6352
6352
|
request: (m2) => t.get(c, m2),
|
|
6353
|
-
config: { params:
|
|
6353
|
+
config: { params: a },
|
|
6354
6354
|
isCollection: true
|
|
6355
6355
|
});
|
|
6356
6356
|
}
|
|
6357
|
-
function V2(c,
|
|
6357
|
+
function V2(c, a, m2 = {}) {
|
|
6358
6358
|
let $2 = {};
|
|
6359
6359
|
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({
|
|
6360
|
-
request: (b) => t.post(c,
|
|
6360
|
+
request: (b) => t.post(c, a, b),
|
|
6361
6361
|
config: $2
|
|
6362
6362
|
});
|
|
6363
6363
|
}
|
|
6364
|
-
function J2(c,
|
|
6364
|
+
function J2(c, a, m2 = {}) {
|
|
6365
6365
|
return v({
|
|
6366
|
-
request: ($2) => t.put(c,
|
|
6366
|
+
request: ($2) => t.put(c, a, $2),
|
|
6367
6367
|
config: { params: m2 }
|
|
6368
6368
|
});
|
|
6369
6369
|
}
|
|
6370
|
-
function
|
|
6370
|
+
function at2(c, a) {
|
|
6371
6371
|
return v({
|
|
6372
|
-
request: (m2) => t.patch(c,
|
|
6372
|
+
request: (m2) => t.patch(c, a, m2),
|
|
6373
6373
|
config: {}
|
|
6374
6374
|
});
|
|
6375
6375
|
}
|
|
6376
|
-
function W2(c,
|
|
6376
|
+
function W2(c, a = null) {
|
|
6377
6377
|
return v({
|
|
6378
6378
|
request: (m2) => t.delete(c, m2),
|
|
6379
|
-
config:
|
|
6379
|
+
config: a != null ? { data: a } : {}
|
|
6380
6380
|
});
|
|
6381
6381
|
}
|
|
6382
|
-
function
|
|
6383
|
-
return W2(c,
|
|
6382
|
+
function gt2(c, a) {
|
|
6383
|
+
return W2(c, a);
|
|
6384
6384
|
}
|
|
6385
|
-
async function mt2(c,
|
|
6386
|
-
if (
|
|
6385
|
+
async function mt2(c, a, m2, $2 = {}) {
|
|
6386
|
+
if (a === "")
|
|
6387
6387
|
return V2(c, m2, { params: $2 });
|
|
6388
6388
|
try {
|
|
6389
6389
|
if ((await U2(c)).response.status === 200)
|
|
@@ -6396,8 +6396,8 @@ function O$1({ options: e }) {
|
|
|
6396
6396
|
throw b;
|
|
6397
6397
|
}
|
|
6398
6398
|
}
|
|
6399
|
-
async function ft2(c,
|
|
6400
|
-
const m2 = z2(
|
|
6399
|
+
async function ft2(c, a) {
|
|
6400
|
+
const m2 = z2(a);
|
|
6401
6401
|
try {
|
|
6402
6402
|
const $2 = await t.get(c, m2);
|
|
6403
6403
|
return new At$1($2, m2);
|
|
@@ -6414,15 +6414,15 @@ function O$1({ options: e }) {
|
|
|
6414
6414
|
setTimeout: i,
|
|
6415
6415
|
setProxyAgent: p,
|
|
6416
6416
|
setSessionToken: f,
|
|
6417
|
-
setPublishableKey:
|
|
6417
|
+
setPublishableKey: g,
|
|
6418
6418
|
setEndpoints: h2,
|
|
6419
6419
|
get: U2,
|
|
6420
6420
|
getAll: it2,
|
|
6421
6421
|
post: V2,
|
|
6422
6422
|
put: J2,
|
|
6423
|
-
patch:
|
|
6423
|
+
patch: at2,
|
|
6424
6424
|
delete: W2,
|
|
6425
|
-
deleteAll:
|
|
6425
|
+
deleteAll: gt2,
|
|
6426
6426
|
create: mt2,
|
|
6427
6427
|
download: ft2
|
|
6428
6428
|
};
|
|
@@ -7454,7 +7454,7 @@ function ie$1({ apiHandler: e }) {
|
|
|
7454
7454
|
}
|
|
7455
7455
|
};
|
|
7456
7456
|
}
|
|
7457
|
-
function
|
|
7457
|
+
function ae$1({ apiHandler: e }) {
|
|
7458
7458
|
return {
|
|
7459
7459
|
/**
|
|
7460
7460
|
* @param { rebilly.GetEmailNotificationCollectionRequest } request
|
|
@@ -7466,7 +7466,7 @@ function ge({ apiHandler: e }) {
|
|
|
7466
7466
|
}
|
|
7467
7467
|
};
|
|
7468
7468
|
}
|
|
7469
|
-
function
|
|
7469
|
+
function ge({ apiHandler: e }) {
|
|
7470
7470
|
return {
|
|
7471
7471
|
/**
|
|
7472
7472
|
* @param { rebilly.GetEventCollectionRequest } request
|
|
@@ -7771,7 +7771,7 @@ function pe$1({ apiHandler: e }) {
|
|
|
7771
7771
|
const o = this.getAllAttachments(s);
|
|
7772
7772
|
r.push(o);
|
|
7773
7773
|
const i = (await o).items.map(
|
|
7774
|
-
(
|
|
7774
|
+
(g) => this.detach({ id: g.fields.id })
|
|
7775
7775
|
);
|
|
7776
7776
|
r = [...r, i], await Promise.all(i);
|
|
7777
7777
|
const f = e.delete(`files/${t}`);
|
|
@@ -9841,7 +9841,7 @@ function is({ apiHandler: e }) {
|
|
|
9841
9841
|
}
|
|
9842
9842
|
};
|
|
9843
9843
|
}
|
|
9844
|
-
function
|
|
9844
|
+
function as({ apiHandler: e }) {
|
|
9845
9845
|
return {
|
|
9846
9846
|
/**
|
|
9847
9847
|
* @param { rebilly.GetUsageCollectionRequest } request
|
|
@@ -9871,7 +9871,7 @@ function gs({ apiHandler: e }) {
|
|
|
9871
9871
|
}
|
|
9872
9872
|
};
|
|
9873
9873
|
}
|
|
9874
|
-
function
|
|
9874
|
+
function gs({ apiHandler: e }) {
|
|
9875
9875
|
return {
|
|
9876
9876
|
/**
|
|
9877
9877
|
* @param { rebilly.GetUserCollectionRequest } request
|
|
@@ -9994,7 +9994,7 @@ class $s {
|
|
|
9994
9994
|
apiHandler: t
|
|
9995
9995
|
}), this.account = Bt$1({ apiHandler: t }), this.allowlists = Kt$1({ apiHandler: t }), this.amlChecks = Nt$1({ apiHandler: t }), this.amlSettings = Lt$1({ apiHandler: t }), this.apiKeys = zt$1({ apiHandler: t }), this.applicationInstances = Ut$1({ apiHandler: t }), this.applications = Vt$1({ apiHandler: t }), this.balanceTransactions = Jt$1({ apiHandler: t }), this.billingPortals = Wt$1({ apiHandler: t }), this.blocklists = Gt$1({ apiHandler: t }), this.broadcastMessages = Yt$1({ apiHandler: t }), this.cashiers = Qt$1({ apiHandler: t }), this.checkoutForms = Xt$1({ apiHandler: t }), this.coupons = Zt$1({ apiHandler: t }), this.creditMemos = _t$1({ apiHandler: t }), this.customDomains = Ht$1({ apiHandler: t }), this.customFields = te$1({ apiHandler: t }), this.customerAuthentication = ee$1({ apiHandler: t }), this.customers = se$1({ apiHandler: t }), this.depositCustomPropertySets = re$1({
|
|
9996
9996
|
apiHandler: t
|
|
9997
|
-
}), this.depositRequests = ne$1({ apiHandler: t }), this.depositStrategies = ue$1({ apiHandler: t }), this.digitalWallets = oe$1({ apiHandler: t }), this.disputes = le$1({ apiHandler: t }), this.emailDeliverySettings = ce$1({ apiHandler: t }), this.emailMessages = ie$1({ apiHandler: t }), this.emailNotifications =
|
|
9997
|
+
}), this.depositRequests = ne$1({ apiHandler: t }), this.depositStrategies = ue$1({ apiHandler: t }), this.digitalWallets = oe$1({ apiHandler: t }), this.disputes = le$1({ apiHandler: t }), this.emailDeliverySettings = ce$1({ apiHandler: t }), this.emailMessages = ie$1({ apiHandler: t }), this.emailNotifications = ae$1({ apiHandler: t }), this.events = ge({ apiHandler: t }), this.externalIdentifiers = me$1({ apiHandler: t }), this.externalServicesSettings = fe$1({
|
|
9998
9998
|
apiHandler: t
|
|
9999
9999
|
}), this.fees = $e$1({ apiHandler: t }), this.files = pe$1({ apiHandler: t }), this.gatewayAccounts = he$1({ apiHandler: t }), this.integrations = ye$1({ apiHandler: t }), this.invoices = Ae$1({ apiHandler: t }), this.journalAccounts = be({ apiHandler: t }), this.journalEntries = Re$1({ apiHandler: t }), this.journalRecords = we$1({ apiHandler: t }), this.kycDocuments = ke$1({ apiHandler: t }), this.kycRequests = ve$1({ apiHandler: t }), this.kycSettings = qe$1({ apiHandler: t }), this.lists = Te$1({ apiHandler: t }), this.memberships = de$1({ apiHandler: t }), this.orderCancellations = Ie$1({ apiHandler: t }), this.orderPauses = Se$1({ apiHandler: t }), this.orderReactivations = Ee$1({ apiHandler: t }), this.orders = xe$1({ apiHandler: t }), this.organizationExports = Pe$1({ apiHandler: t }), this.organizations = Ce$1({ apiHandler: t }), this.paymentCardsBankNames = De$1({ apiHandler: t }), this.paymentInstruments = je$1({ apiHandler: t }), this.paymentMethods = Me$1({ apiHandler: t }), this.paymentTokens = Oe$1({ apiHandler: t }), this.payoutRequestAllocations = Fe$1({
|
|
10000
10000
|
apiHandler: t
|
|
@@ -10002,7 +10002,7 @@ class $s {
|
|
|
10002
10002
|
apiHandler: t
|
|
10003
10003
|
}), this.subscriptionPauses = rs({ apiHandler: t }), this.subscriptionReactivations = ns({
|
|
10004
10004
|
apiHandler: t
|
|
10005
|
-
}), this.subscriptions = us({ apiHandler: t }), this.tags = os({ apiHandler: t }), this.tagsRules = ls({ apiHandler: t }), this.tracking = cs({ apiHandler: t }), this.transactions = is({ apiHandler: t }), this.usages =
|
|
10005
|
+
}), this.subscriptions = us({ apiHandler: t }), this.tags = os({ apiHandler: t }), this.tagsRules = ls({ apiHandler: t }), this.tracking = cs({ apiHandler: t }), this.transactions = is({ apiHandler: t }), this.usages = as({ apiHandler: t }), this.users = gs({ apiHandler: t }), this.webhooks = ms({ apiHandler: t }), this.websites = fs({ apiHandler: t }), this.addRequestInterceptor = t.addRequestInterceptor, this.removeRequestInterceptor = t.removeRequestInterceptor, this.addResponseInterceptor = t.addResponseInterceptor, this.removeResponseInterceptor = t.removeResponseInterceptor, this.setTimeout = t.setTimeout, this.setProxyAgent = t.setProxyAgent, this.setSessionToken = t.setSessionToken, this.setPublishableKey = t.setPublishableKey, this.setEndpoints = t.setEndpoints, this.getCancellationToken = t.getCancellationToken, this.generateSignature = t.generateSignature;
|
|
10006
10006
|
}
|
|
10007
10007
|
}
|
|
10008
10008
|
function ps({ apiHandler: e }) {
|
|
@@ -10409,7 +10409,7 @@ function As({ apiHandler: e }) {
|
|
|
10409
10409
|
filter: i = null,
|
|
10410
10410
|
criteria: f = null
|
|
10411
10411
|
}) {
|
|
10412
|
-
const
|
|
10412
|
+
const g = {
|
|
10413
10413
|
aggregationField: t,
|
|
10414
10414
|
aggregationPeriod: s,
|
|
10415
10415
|
includeSwitchedSubscriptions: r,
|
|
@@ -10420,7 +10420,7 @@ function As({ apiHandler: e }) {
|
|
|
10420
10420
|
filter: i,
|
|
10421
10421
|
criteria: f
|
|
10422
10422
|
};
|
|
10423
|
-
return e.get("reports/retention-percentage",
|
|
10423
|
+
return e.get("reports/retention-percentage", g);
|
|
10424
10424
|
},
|
|
10425
10425
|
/**
|
|
10426
10426
|
* @returns { rebilly.GetRetentionValueReportResponsePromise } response
|
|
@@ -10435,7 +10435,7 @@ function As({ apiHandler: e }) {
|
|
|
10435
10435
|
limit: l = null,
|
|
10436
10436
|
offset: i = null,
|
|
10437
10437
|
filter: f = null,
|
|
10438
|
-
sort:
|
|
10438
|
+
sort: g = null,
|
|
10439
10439
|
criteria: p = null
|
|
10440
10440
|
}) {
|
|
10441
10441
|
const h2 = {
|
|
@@ -10448,7 +10448,7 @@ function As({ apiHandler: e }) {
|
|
|
10448
10448
|
limit: l,
|
|
10449
10449
|
offset: i,
|
|
10450
10450
|
filter: f,
|
|
10451
|
-
sort:
|
|
10451
|
+
sort: g,
|
|
10452
10452
|
criteria: p
|
|
10453
10453
|
};
|
|
10454
10454
|
return e.get("reports/retention-value", h2);
|