glitch-javascript-sdk 2.3.3 → 2.3.4
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/package.json
CHANGED
package/src/api/ShortLinks.ts
CHANGED
|
@@ -132,6 +132,7 @@ class ShortLinks {
|
|
|
132
132
|
public static socialPostTrackingEffectiveness<T>(params?: Record<string, any>): AxiosPromise<Response<T>> {
|
|
133
133
|
return Requests.processRoute(ShortLinksRoute.routes.socialPostTrackingEffectiveness, undefined, undefined, params);
|
|
134
134
|
}
|
|
135
|
+
|
|
135
136
|
}
|
|
136
137
|
|
|
137
138
|
export default ShortLinks;
|
|
@@ -33,6 +33,7 @@ class SocialPostsRoute {
|
|
|
33
33
|
|
|
34
34
|
getPostAttribution: { url: '/socialposts/{post_id}/attribution', method: HTTP_METHODS.GET },
|
|
35
35
|
getSocialPostAttributionReport: { url: '/reports/fingerprinting/social-post-attribution', method: HTTP_METHODS.GET },
|
|
36
|
+
getLinkSummary: { url: '/socialposts/{post_id}/link-summary', method: HTTP_METHODS.GET },
|
|
36
37
|
|
|
37
38
|
};
|
|
38
39
|
|