glitch-javascript-sdk 2.2.8 → 2.3.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/cjs/index.js +45 -0
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/api/ShortLinks.d.ts +11 -0
- package/dist/esm/index.js +45 -0
- package/dist/esm/index.js.map +1 -1
- package/dist/index.d.ts +11 -0
- package/package.json +1 -1
- package/src/api/ShortLinks.ts +86 -42
- package/src/routes/ShortLinksRoute.ts +22 -8
package/dist/cjs/index.js
CHANGED
|
@@ -28465,6 +28465,18 @@ var ShortLinksRoute = /** @class */ (function () {
|
|
|
28465
28465
|
geoDeviceBreakdown: { url: '/shortlinks/reports/geo-device', method: HTTP_METHODS.GET },
|
|
28466
28466
|
timeSeries: { url: '/shortlinks/reports/time-series', method: HTTP_METHODS.GET },
|
|
28467
28467
|
referrerReport: { url: '/shortlinks/reports/referrer', method: HTTP_METHODS.GET },
|
|
28468
|
+
campaignPerformance: { url: '/shortlinks/reports/campaign-performance', method: HTTP_METHODS.GET },
|
|
28469
|
+
influencerPerformance: { url: '/shortlinks/reports/influencer-performance', method: HTTP_METHODS.GET },
|
|
28470
|
+
socialPostPerformance: { url: '/shortlinks/reports/social-post-performance', method: HTTP_METHODS.GET },
|
|
28471
|
+
conversionFunnel: { url: '/shortlinks/reports/conversion-funnel', method: HTTP_METHODS.GET },
|
|
28472
|
+
clickHeatmap: { url: '/shortlinks/reports/click-heatmap', method: HTTP_METHODS.GET },
|
|
28473
|
+
botAnalysis: { url: '/shortlinks/reports/bot-analysis', method: HTTP_METHODS.GET },
|
|
28474
|
+
attributionReport: { url: '/shortlinks/reports/attribution', method: HTTP_METHODS.GET },
|
|
28475
|
+
// Social Media Post Reports
|
|
28476
|
+
socialPostDeepDive: { url: '/shortlinks/reports/social-post-deep-dive', method: HTTP_METHODS.GET },
|
|
28477
|
+
socialPostContentAnalysis: { url: '/shortlinks/reports/social-post-content-analysis', method: HTTP_METHODS.GET },
|
|
28478
|
+
socialPostEngagementBreakdown: { url: '/shortlinks/reports/social-post-engagement-breakdown', method: HTTP_METHODS.GET },
|
|
28479
|
+
socialPostTrackingEffectiveness: { url: '/shortlinks/reports/social-post-tracking-effectiveness', method: HTTP_METHODS.GET },
|
|
28468
28480
|
};
|
|
28469
28481
|
return ShortLinksRoute;
|
|
28470
28482
|
}());
|
|
@@ -28528,6 +28540,39 @@ var ShortLinks = /** @class */ (function () {
|
|
|
28528
28540
|
ShortLinks.referrerReport = function (params) {
|
|
28529
28541
|
return Requests.processRoute(ShortLinksRoute.routes.referrerReport, undefined, undefined, params);
|
|
28530
28542
|
};
|
|
28543
|
+
ShortLinks.campaignPerformance = function (params) {
|
|
28544
|
+
return Requests.processRoute(ShortLinksRoute.routes.campaignPerformance, undefined, undefined, params);
|
|
28545
|
+
};
|
|
28546
|
+
ShortLinks.influencerPerformance = function (params) {
|
|
28547
|
+
return Requests.processRoute(ShortLinksRoute.routes.influencerPerformance, undefined, undefined, params);
|
|
28548
|
+
};
|
|
28549
|
+
ShortLinks.socialPostPerformance = function (params) {
|
|
28550
|
+
return Requests.processRoute(ShortLinksRoute.routes.socialPostPerformance, undefined, undefined, params);
|
|
28551
|
+
};
|
|
28552
|
+
ShortLinks.conversionFunnel = function (params) {
|
|
28553
|
+
return Requests.processRoute(ShortLinksRoute.routes.conversionFunnel, undefined, undefined, params);
|
|
28554
|
+
};
|
|
28555
|
+
ShortLinks.clickHeatmap = function (params) {
|
|
28556
|
+
return Requests.processRoute(ShortLinksRoute.routes.clickHeatmap, undefined, undefined, params);
|
|
28557
|
+
};
|
|
28558
|
+
ShortLinks.botAnalysis = function (params) {
|
|
28559
|
+
return Requests.processRoute(ShortLinksRoute.routes.botAnalysis, undefined, undefined, params);
|
|
28560
|
+
};
|
|
28561
|
+
ShortLinks.attributionReport = function (params) {
|
|
28562
|
+
return Requests.processRoute(ShortLinksRoute.routes.attributionReport, undefined, undefined, params);
|
|
28563
|
+
};
|
|
28564
|
+
ShortLinks.socialPostDeepDive = function (params) {
|
|
28565
|
+
return Requests.processRoute(ShortLinksRoute.routes.socialPostDeepDive, undefined, undefined, params);
|
|
28566
|
+
};
|
|
28567
|
+
ShortLinks.socialPostContentAnalysis = function (params) {
|
|
28568
|
+
return Requests.processRoute(ShortLinksRoute.routes.socialPostContentAnalysis, undefined, undefined, params);
|
|
28569
|
+
};
|
|
28570
|
+
ShortLinks.socialPostEngagementBreakdown = function (params) {
|
|
28571
|
+
return Requests.processRoute(ShortLinksRoute.routes.socialPostEngagementBreakdown, undefined, undefined, params);
|
|
28572
|
+
};
|
|
28573
|
+
ShortLinks.socialPostTrackingEffectiveness = function (params) {
|
|
28574
|
+
return Requests.processRoute(ShortLinksRoute.routes.socialPostTrackingEffectiveness, undefined, undefined, params);
|
|
28575
|
+
};
|
|
28531
28576
|
return ShortLinks;
|
|
28532
28577
|
}());
|
|
28533
28578
|
|