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.
- package/dist/cjs/index.js +7 -0
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/api/Titles.d.ts +1 -0
- package/dist/esm/index.js +7 -0
- package/dist/esm/index.js.map +1 -1
- package/dist/index.d.ts +1 -0
- package/package.json +1 -1
- package/src/api/Titles.ts +5 -1
- package/src/routes/TitlesRoute.ts +5 -0
package/dist/cjs/index.js
CHANGED
|
@@ -24998,6 +24998,10 @@ var TitlesRoute = /** @class */ (function () {
|
|
|
24998
24998
|
url: '/titles/{title_id}/matchmaker/session/release',
|
|
24999
24999
|
method: HTTP_METHODS.POST
|
|
25000
25000
|
},
|
|
25001
|
+
getTechnicalEventSummary: {
|
|
25002
|
+
url: '/titles/{title_id}/analytics/events-summary',
|
|
25003
|
+
method: HTTP_METHODS.GET
|
|
25004
|
+
},
|
|
25001
25005
|
// --- Title Progression Definitions (Developer API) ---
|
|
25002
25006
|
progressionStatsList: { url: '/titles/{title_id}/progression/stats', method: HTTP_METHODS.GET },
|
|
25003
25007
|
progressionStatsStore: { url: '/titles/{title_id}/progression/stats', method: HTTP_METHODS.POST },
|
|
@@ -25861,6 +25865,9 @@ var Titles = /** @class */ (function () {
|
|
|
25861
25865
|
Titles.getProgressionLeaderboard = function (title_id, api_key, params) {
|
|
25862
25866
|
return Requests.processRoute(TitlesRoute.routes.progressionLeaderboardView, undefined, { title_id: title_id, api_key: api_key }, params);
|
|
25863
25867
|
};
|
|
25868
|
+
Titles.getTechnicalEventSummary = function (title_id, params) {
|
|
25869
|
+
return Requests.processRoute(TitlesRoute.routes.getTechnicalEventSummary, {}, { title_id: title_id }, params);
|
|
25870
|
+
};
|
|
25864
25871
|
return Titles;
|
|
25865
25872
|
}());
|
|
25866
25873
|
|