glitch-javascript-sdk 3.1.0 → 3.1.1

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
@@ -24471,6 +24471,10 @@ var SocialPostsRoute = /** @class */ (function () {
24471
24471
  url: '/reports/fingerprinting/social-post-attribution',
24472
24472
  method: HTTP_METHODS.GET
24473
24473
  },
24474
+ influencerAttribution: {
24475
+ url: '/reports/fingerprinting/influencer-attribution',
24476
+ method: HTTP_METHODS.GET
24477
+ },
24474
24478
  /**
24475
24479
  * Get UTM performance correlated with installs and revenue.
24476
24480
  * GET /reports/fingerprinting/utm-attribution
@@ -24956,6 +24960,9 @@ var SocialPosts = /** @class */ (function () {
24956
24960
  SocialPosts.getUtmAttribution = function (params) {
24957
24961
  return Requests.processRoute(SocialPostsRoute.routes.utmAttribution, {}, undefined, params);
24958
24962
  };
24963
+ SocialPosts.getInfluencerAttribution = function (params) {
24964
+ return Requests.processRoute(SocialPostsRoute.routes.influencerAttribution, {}, undefined, params);
24965
+ };
24959
24966
  return SocialPosts;
24960
24967
  }());
24961
24968