glitch-javascript-sdk 2.9.5 → 2.9.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.
@@ -634,5 +634,6 @@ declare class Titles {
634
634
  * @param params Optional filters like { around_me: true, install_id: 'uuid', season_id: 'uuid' }
635
635
  */
636
636
  static getProgressionLeaderboard<T>(title_id: string, api_key: string, params?: Record<string, any>): AxiosPromise<Response<T>>;
637
+ static getTechnicalEventSummary<T>(title_id: string, params?: Record<string, any>): AxiosPromise<Response<T>>;
637
638
  }
638
639
  export default Titles;
package/dist/esm/index.js CHANGED
@@ -11814,6 +11814,10 @@ var TitlesRoute = /** @class */ (function () {
11814
11814
  url: '/titles/{title_id}/matchmaker/session/release',
11815
11815
  method: HTTP_METHODS.POST
11816
11816
  },
11817
+ getTechnicalEventSummary: {
11818
+ url: '/titles/{title_id}/analytics/events-summary',
11819
+ method: HTTP_METHODS.GET
11820
+ },
11817
11821
  // --- Title Progression Definitions (Developer API) ---
11818
11822
  progressionStatsList: { url: '/titles/{title_id}/progression/stats', method: HTTP_METHODS.GET },
11819
11823
  progressionStatsStore: { url: '/titles/{title_id}/progression/stats', method: HTTP_METHODS.POST },
@@ -12677,6 +12681,9 @@ var Titles = /** @class */ (function () {
12677
12681
  Titles.getProgressionLeaderboard = function (title_id, api_key, params) {
12678
12682
  return Requests.processRoute(TitlesRoute.routes.progressionLeaderboardView, undefined, { title_id: title_id, api_key: api_key }, params);
12679
12683
  };
12684
+ Titles.getTechnicalEventSummary = function (title_id, params) {
12685
+ return Requests.processRoute(TitlesRoute.routes.getTechnicalEventSummary, {}, { title_id: title_id }, params);
12686
+ };
12680
12687
  return Titles;
12681
12688
  }());
12682
12689