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 +17 -0
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/api/Fingerprinting.d.ts +11 -0
- package/dist/esm/index.js +17 -0
- package/dist/esm/index.js.map +1 -1
- package/dist/index.d.ts +11 -0
- package/package.json +1 -1
- package/src/api/Fingerprinting.ts +19 -0
- package/src/routes/FingerprintingRoute.ts +4 -0
|
@@ -150,5 +150,16 @@ declare class Fingerprinting {
|
|
|
150
150
|
* @returns Promise with geolocation report data
|
|
151
151
|
*/
|
|
152
152
|
static installJourneyReport<T>(params: Record<string, any>): AxiosPromise<Response<T>>;
|
|
153
|
+
/**
|
|
154
|
+
* Get how the ad campaigns are performing and turning into installs
|
|
155
|
+
*
|
|
156
|
+
* @param params Report options:
|
|
157
|
+
* - title_id: string - Required title ID
|
|
158
|
+
* - start_date?: string - Start date (YYYY-MM-DD)
|
|
159
|
+
* - end_date?: string - End date (YYYY-MM-DD)
|
|
160
|
+
* - group_by?: 'country'|'region'|'city' - Grouping level
|
|
161
|
+
* @returns Promise with geolocation report data
|
|
162
|
+
*/
|
|
163
|
+
static adCampaignPerformanceReport<T>(params: Record<string, any>): AxiosPromise<Response<T>>;
|
|
153
164
|
}
|
|
154
165
|
export default Fingerprinting;
|
package/dist/esm/index.js
CHANGED
|
@@ -9737,6 +9737,10 @@ var FingerprintingRoute = /** @class */ (function () {
|
|
|
9737
9737
|
url: '/reports/fingerprinting/install-journey',
|
|
9738
9738
|
method: HTTP_METHODS.GET
|
|
9739
9739
|
},
|
|
9740
|
+
adCampaignPerformanceReport: {
|
|
9741
|
+
url: '/reports/fingerprinting/ad-campaign-performance',
|
|
9742
|
+
method: HTTP_METHODS.GET
|
|
9743
|
+
},
|
|
9740
9744
|
};
|
|
9741
9745
|
return FingerprintingRoute;
|
|
9742
9746
|
}());
|
|
@@ -9917,6 +9921,19 @@ var Fingerprinting = /** @class */ (function () {
|
|
|
9917
9921
|
Fingerprinting.installJourneyReport = function (params) {
|
|
9918
9922
|
return Requests.processRoute(FingerprintingRoute.routes.installJourneyReport, {}, undefined, params);
|
|
9919
9923
|
};
|
|
9924
|
+
/**
|
|
9925
|
+
* Get how the ad campaigns are performing and turning into installs
|
|
9926
|
+
*
|
|
9927
|
+
* @param params Report options:
|
|
9928
|
+
* - title_id: string - Required title ID
|
|
9929
|
+
* - start_date?: string - Start date (YYYY-MM-DD)
|
|
9930
|
+
* - end_date?: string - End date (YYYY-MM-DD)
|
|
9931
|
+
* - group_by?: 'country'|'region'|'city' - Grouping level
|
|
9932
|
+
* @returns Promise with geolocation report data
|
|
9933
|
+
*/
|
|
9934
|
+
Fingerprinting.adCampaignPerformanceReport = function (params) {
|
|
9935
|
+
return Requests.processRoute(FingerprintingRoute.routes.adCampaignPerformanceReport, {}, undefined, params);
|
|
9936
|
+
};
|
|
9920
9937
|
return Fingerprinting;
|
|
9921
9938
|
}());
|
|
9922
9939
|
|