@delopay/sdk 0.98.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/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 });