glitch-javascript-sdk 2.1.1 → 2.1.2

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/cjs/index.js CHANGED
@@ -22921,6 +22921,10 @@ var FingerprintingRoute = /** @class */ (function () {
22921
22921
  url: '/reports/fingerprinting/install-journey',
22922
22922
  method: HTTP_METHODS.GET
22923
22923
  },
22924
+ adCampaignPerformanceReport: {
22925
+ url: '/reports/fingerprinting/ad-campaign-performance',
22926
+ method: HTTP_METHODS.GET
22927
+ },
22924
22928
  };
22925
22929
  return FingerprintingRoute;
22926
22930
  }());
@@ -23101,6 +23105,19 @@ var Fingerprinting = /** @class */ (function () {
23101
23105
  Fingerprinting.installJourneyReport = function (params) {
23102
23106
  return Requests.processRoute(FingerprintingRoute.routes.installJourneyReport, {}, undefined, params);
23103
23107
  };
23108
+ /**
23109
+ * Get how the ad campaigns are performing and turning into installs
23110
+ *
23111
+ * @param params Report options:
23112
+ * - title_id: string - Required title ID
23113
+ * - start_date?: string - Start date (YYYY-MM-DD)
23114
+ * - end_date?: string - End date (YYYY-MM-DD)
23115
+ * - group_by?: 'country'|'region'|'city' - Grouping level
23116
+ * @returns Promise with geolocation report data
23117
+ */
23118
+ Fingerprinting.adCampaignPerformanceReport = function (params) {
23119
+ return Requests.processRoute(FingerprintingRoute.routes.adCampaignPerformanceReport, {}, undefined, params);
23120
+ };
23104
23121
  return Fingerprinting;
23105
23122
  }());
23106
23123