speedruncom.js 1.2.4 → 1.2.5

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.
@@ -1044,12 +1044,12 @@ export interface RunSettings {
1044
1044
  time?: RunTime;
1045
1045
  timeWithLoads?: RunTime;
1046
1046
  igt?: RunTime;
1047
- platformId: string;
1047
+ platformId?: string;
1048
1048
  emulator: boolean;
1049
- video: string;
1050
- comment: string;
1049
+ video?: string;
1050
+ comment?: string;
1051
1051
  date: number;
1052
- values: VariableValue[];
1052
+ values?: VariableValue[];
1053
1053
  }
1054
1054
  export interface Series {
1055
1055
  readonly id: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "speedruncom.js",
3
- "version": "1.2.4",
3
+ "version": "1.2.5",
4
4
  "description": "WIP NodeJS module for Speedrun's version 2 API.",
5
5
  "type": "module",
6
6
  "author": {
package/src/interfaces.ts CHANGED
@@ -1231,12 +1231,12 @@ export interface RunSettings {
1231
1231
  time?: RunTime;
1232
1232
  timeWithLoads?: RunTime;
1233
1233
  igt?: RunTime;
1234
- platformId: string;
1234
+ platformId?: string;
1235
1235
  emulator: boolean;
1236
- video: string;
1237
- comment: string;
1236
+ video?: string;
1237
+ comment?: string;
1238
1238
  date: number;
1239
- values: VariableValue[];
1239
+ values?: VariableValue[];
1240
1240
  }
1241
1241
 
1242
1242
  export interface Series {