@delopay/sdk 0.97.0 → 0.99.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/dist/{chunk-JBBUTXXY.js → chunk-MUP6NKMP.js} +28 -1
- package/dist/chunk-MUP6NKMP.js.map +1 -0
- package/dist/index.cjs +27 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +159 -8
- package/dist/index.d.ts +159 -8
- package/dist/index.js +1 -1
- package/dist/internal.cjs +47 -0
- package/dist/internal.cjs.map +1 -1
- package/dist/internal.d.cts +15 -3
- package/dist/internal.d.ts +15 -3
- package/dist/internal.js +21 -1
- package/dist/internal.js.map +1 -1
- package/package.json +17 -18
- package/dist/chunk-JBBUTXXY.js.map +0 -1
package/dist/internal.cjs
CHANGED
|
@@ -3412,6 +3412,33 @@ var Analytics = class {
|
|
|
3412
3412
|
query: params
|
|
3413
3413
|
});
|
|
3414
3414
|
}
|
|
3415
|
+
/**
|
|
3416
|
+
* The recent payments behind one clicked geo target: a map country (in the
|
|
3417
|
+
* active claim mode), optionally narrowed to an IP-resolved city, or one
|
|
3418
|
+
* buyer-local heatmap cell (`dow` + `hour`, paid sessions only). Same
|
|
3419
|
+
* window/scope/filter and gating contract as `geo`; capped at 50 rows,
|
|
3420
|
+
* newest first, with the full match count alongside.
|
|
3421
|
+
* `GET /analytics/geo/transactions`
|
|
3422
|
+
*/
|
|
3423
|
+
async geoTransactions(params) {
|
|
3424
|
+
return this.request("GET", "/analytics/geo/transactions", {
|
|
3425
|
+
query: params
|
|
3426
|
+
});
|
|
3427
|
+
}
|
|
3428
|
+
/**
|
|
3429
|
+
* The recent payments behind one clicked device target: exactly one of a
|
|
3430
|
+
* browser family, a platform family, an identified device-model label, or
|
|
3431
|
+
* a device class. Family/model targets are resolved server-side with the
|
|
3432
|
+
* same classifiers the cards use. Same window/scope/filter and gating
|
|
3433
|
+
* contract as `devices`; 50 rows per page (`offset` for the next page),
|
|
3434
|
+
* newest first, with the full match count alongside.
|
|
3435
|
+
* `GET /analytics/devices/transactions`
|
|
3436
|
+
*/
|
|
3437
|
+
async deviceTransactions(params) {
|
|
3438
|
+
return this.request("GET", "/analytics/devices/transactions", {
|
|
3439
|
+
query: params
|
|
3440
|
+
});
|
|
3441
|
+
}
|
|
3415
3442
|
/** Global search. `POST /analytics/search` */
|
|
3416
3443
|
async search(params) {
|
|
3417
3444
|
return this.request("POST", "/analytics/search", { body: params });
|
|
@@ -6280,6 +6307,26 @@ var AdminPortal = class {
|
|
|
6280
6307
|
query: params
|
|
6281
6308
|
});
|
|
6282
6309
|
}
|
|
6310
|
+
/**
|
|
6311
|
+
* The recent payments behind one clicked geo target (map country/city or
|
|
6312
|
+
* local-hours heatmap cell), rooted at all merchants. Capped at 50 rows,
|
|
6313
|
+
* newest first, with the full match count alongside.
|
|
6314
|
+
*/
|
|
6315
|
+
async analyticsGeoTransactions(params) {
|
|
6316
|
+
return this.request("GET", "/admin-portal/analytics/geo/transactions", {
|
|
6317
|
+
query: params
|
|
6318
|
+
});
|
|
6319
|
+
}
|
|
6320
|
+
/**
|
|
6321
|
+
* The recent payments behind one clicked device target (browser/platform
|
|
6322
|
+
* family, device-model label or device class), rooted at all merchants.
|
|
6323
|
+
* 50 rows per page (`offset` for the next page), newest first.
|
|
6324
|
+
*/
|
|
6325
|
+
async analyticsDeviceTransactions(params) {
|
|
6326
|
+
return this.request("GET", "/admin-portal/analytics/devices/transactions", {
|
|
6327
|
+
query: params
|
|
6328
|
+
});
|
|
6329
|
+
}
|
|
6283
6330
|
/**
|
|
6284
6331
|
* Platform billing dashboard: total balance across all ledger accounts (+
|
|
6285
6332
|
* the net change), top-ups, fees collected, and the day-by-day ledger flow.
|