speedruncom.js 1.2.1 → 1.2.2

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/responses.ts +1 -28
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "speedruncom.js",
3
- "version": "1.2.1",
3
+ "version": "1.2.2",
4
4
  "description": "WIP NodeJS module for Speedrun's version 2 API.",
5
5
  "type": "module",
6
6
  "author": {
package/src/responses.ts CHANGED
@@ -61,7 +61,7 @@ export interface GetGameRecordHistory {
61
61
  runList: Interfaces.GameRun[];
62
62
  }
63
63
 
64
- export interface GetSearch { //TODO add platform, TODO this is probably inacurate i think the users are much less detailed + more
64
+ export interface GetSearch {
65
65
  gameList: Interfaces.Game[];
66
66
  newsList: Interfaces.GameNews[];
67
67
  pageList: Interfaces.Article[];
@@ -302,33 +302,6 @@ export interface GetRun {
302
302
  variables: Interfaces.Variable[];
303
303
  }
304
304
 
305
- export interface GetSearch {
306
- gameList: Interfaces.Game[];
307
- newsList: Interfaces.GameNews[];
308
- pageList: Interfaces.Article[];
309
- seriesList: Interfaces.Series[];
310
- userList: Interfaces.User[];
311
- challengeList: Interfaces.Challenge[];
312
- }
313
-
314
- export interface GetSeriesList {
315
- seriesList: Interfaces.Series[];
316
- pagination: Interfaces.Pagination;
317
- }
318
-
319
- export interface GetSeriesSummary {
320
- series: Interfaces.Series;
321
- forum: Interfaces.Forum;
322
- gameList: Interfaces.Game[];
323
- moderatorList: Interfaces.SeriesModerator[];
324
- theme: Interfaces.Theme;
325
- threadList: Interfaces.Thread[];
326
- userList: Interfaces.User[];
327
- gameCount: number;
328
- streamCount: number;
329
- threadCount: number;
330
- }
331
-
332
305
  export interface GetStreamList {
333
306
  gameList: Interfaces.Game[];
334
307
  streamList: Interfaces.Stream[];