glitch-javascript-sdk 2.2.9 → 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 +17 -0
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/api/ShortLinks.d.ts +4 -0
- package/dist/esm/index.js +17 -0
- package/dist/esm/index.js.map +1 -1
- package/dist/index.d.ts +4 -0
- package/package.json +1 -1
- package/src/api/ShortLinks.ts +16 -0
- package/src/routes/ShortLinksRoute.ts +14 -8
package/dist/cjs/index.js
CHANGED
|
@@ -28472,6 +28472,11 @@ var ShortLinksRoute = /** @class */ (function () {
|
|
|
28472
28472
|
clickHeatmap: { url: '/shortlinks/reports/click-heatmap', method: HTTP_METHODS.GET },
|
|
28473
28473
|
botAnalysis: { url: '/shortlinks/reports/bot-analysis', method: HTTP_METHODS.GET },
|
|
28474
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 },
|
|
28475
28480
|
};
|
|
28476
28481
|
return ShortLinksRoute;
|
|
28477
28482
|
}());
|
|
@@ -28556,6 +28561,18 @@ var ShortLinks = /** @class */ (function () {
|
|
|
28556
28561
|
ShortLinks.attributionReport = function (params) {
|
|
28557
28562
|
return Requests.processRoute(ShortLinksRoute.routes.attributionReport, undefined, undefined, params);
|
|
28558
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
|
+
};
|
|
28559
28576
|
return ShortLinks;
|
|
28560
28577
|
}());
|
|
28561
28578
|
|