@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/index.cjs
CHANGED
|
@@ -3400,6 +3400,33 @@ var Analytics = class {
|
|
|
3400
3400
|
query: params
|
|
3401
3401
|
});
|
|
3402
3402
|
}
|
|
3403
|
+
/**
|
|
3404
|
+
* The recent payments behind one clicked geo target: a map country (in the
|
|
3405
|
+
* active claim mode), optionally narrowed to an IP-resolved city, or one
|
|
3406
|
+
* buyer-local heatmap cell (`dow` + `hour`, paid sessions only). Same
|
|
3407
|
+
* window/scope/filter and gating contract as `geo`; capped at 50 rows,
|
|
3408
|
+
* newest first, with the full match count alongside.
|
|
3409
|
+
* `GET /analytics/geo/transactions`
|
|
3410
|
+
*/
|
|
3411
|
+
async geoTransactions(params) {
|
|
3412
|
+
return this.request("GET", "/analytics/geo/transactions", {
|
|
3413
|
+
query: params
|
|
3414
|
+
});
|
|
3415
|
+
}
|
|
3416
|
+
/**
|
|
3417
|
+
* The recent payments behind one clicked device target: exactly one of a
|
|
3418
|
+
* browser family, a platform family, an identified device-model label, or
|
|
3419
|
+
* a device class. Family/model targets are resolved server-side with the
|
|
3420
|
+
* same classifiers the cards use. Same window/scope/filter and gating
|
|
3421
|
+
* contract as `devices`; 50 rows per page (`offset` for the next page),
|
|
3422
|
+
* newest first, with the full match count alongside.
|
|
3423
|
+
* `GET /analytics/devices/transactions`
|
|
3424
|
+
*/
|
|
3425
|
+
async deviceTransactions(params) {
|
|
3426
|
+
return this.request("GET", "/analytics/devices/transactions", {
|
|
3427
|
+
query: params
|
|
3428
|
+
});
|
|
3429
|
+
}
|
|
3403
3430
|
/** Global search. `POST /analytics/search` */
|
|
3404
3431
|
async search(params) {
|
|
3405
3432
|
return this.request("POST", "/analytics/search", { body: params });
|