glitch-javascript-sdk 1.6.9 → 1.7.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 CHANGED
@@ -22825,6 +22825,7 @@ var TitlesRoute = /** @class */ (function () {
22825
22825
  retentionSummary: { url: '/titles/{title_id}/retentions/summary', method: HTTP_METHODS.GET },
22826
22826
  activeRetentions: { url: '/titles/{title_id}/retentions/active', method: HTTP_METHODS.GET },
22827
22827
  retentionAnalysis: { url: '/titles/{title_id}/retentions/analysis', method: HTTP_METHODS.GET },
22828
+ distinctDimensions: { url: '/titles/{title_id}/installs/distinctDimensions', method: HTTP_METHODS.GET },
22828
22829
  };
22829
22830
  return TitlesRoute;
22830
22831
  }());
@@ -23111,6 +23112,9 @@ var Titles = /** @class */ (function () {
23111
23112
  Titles.retentionAnalysis = function (title_id, params) {
23112
23113
  return Requests.processRoute(TitlesRoute.routes.retentionAnalysis, {}, { title_id: title_id }, params);
23113
23114
  };
23115
+ Titles.distinctDimensions = function (title_id, params) {
23116
+ return Requests.processRoute(TitlesRoute.routes.distinctDimensions, {}, { title_id: title_id }, params);
23117
+ };
23114
23118
  return Titles;
23115
23119
  }());
23116
23120