glitch-javascript-sdk 1.7.5 → 1.7.6

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
@@ -22849,6 +22849,10 @@ var TitlesRoute = /** @class */ (function () {
22849
22849
  url: '/titles/{title_id}/installs/sessions/average',
22850
22850
  method: HTTP_METHODS.GET
22851
22851
  },
22852
+ sessionsHistogram: {
22853
+ url: '/titles/{title_id}/sessions/histogram',
22854
+ method: HTTP_METHODS.GET
22855
+ },
22852
22856
  };
22853
22857
  return TitlesRoute;
22854
22858
  }());
@@ -23152,6 +23156,9 @@ var Titles = /** @class */ (function () {
23152
23156
  Titles.sessionsAverage = function (title_id, params) {
23153
23157
  return Requests.processRoute(TitlesRoute.routes.sessionsAverage, {}, { title_id: title_id }, params);
23154
23158
  };
23159
+ Titles.sessionsHistogram = function (title_id, params) {
23160
+ return Requests.processRoute(TitlesRoute.routes.sessionsHistogram, {}, { title_id: title_id }, params);
23161
+ };
23155
23162
  return Titles;
23156
23163
  }());
23157
23164