@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
|
@@ -3286,6 +3286,33 @@ var Analytics = class {
|
|
|
3286
3286
|
query: params
|
|
3287
3287
|
});
|
|
3288
3288
|
}
|
|
3289
|
+
/**
|
|
3290
|
+
* The recent payments behind one clicked geo target: a map country (in the
|
|
3291
|
+
* active claim mode), optionally narrowed to an IP-resolved city, or one
|
|
3292
|
+
* buyer-local heatmap cell (`dow` + `hour`, paid sessions only). Same
|
|
3293
|
+
* window/scope/filter and gating contract as `geo`; capped at 50 rows,
|
|
3294
|
+
* newest first, with the full match count alongside.
|
|
3295
|
+
* `GET /analytics/geo/transactions`
|
|
3296
|
+
*/
|
|
3297
|
+
async geoTransactions(params) {
|
|
3298
|
+
return this.request("GET", "/analytics/geo/transactions", {
|
|
3299
|
+
query: params
|
|
3300
|
+
});
|
|
3301
|
+
}
|
|
3302
|
+
/**
|
|
3303
|
+
* The recent payments behind one clicked device target: exactly one of a
|
|
3304
|
+
* browser family, a platform family, an identified device-model label, or
|
|
3305
|
+
* a device class. Family/model targets are resolved server-side with the
|
|
3306
|
+
* same classifiers the cards use. Same window/scope/filter and gating
|
|
3307
|
+
* contract as `devices`; 50 rows per page (`offset` for the next page),
|
|
3308
|
+
* newest first, with the full match count alongside.
|
|
3309
|
+
* `GET /analytics/devices/transactions`
|
|
3310
|
+
*/
|
|
3311
|
+
async deviceTransactions(params) {
|
|
3312
|
+
return this.request("GET", "/analytics/devices/transactions", {
|
|
3313
|
+
query: params
|
|
3314
|
+
});
|
|
3315
|
+
}
|
|
3289
3316
|
/** Global search. `POST /analytics/search` */
|
|
3290
3317
|
async search(params) {
|
|
3291
3318
|
return this.request("POST", "/analytics/search", { body: params });
|
|
@@ -6102,4 +6129,4 @@ export {
|
|
|
6102
6129
|
focusedCheckoutUrl,
|
|
6103
6130
|
CHECKOUT_EVENT_KINDS
|
|
6104
6131
|
};
|
|
6105
|
-
//# sourceMappingURL=chunk-
|
|
6132
|
+
//# sourceMappingURL=chunk-MUP6NKMP.js.map
|