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.
- package/dist/interfaces.d.ts +4 -4
- package/package.json +1 -1
- package/src/interfaces.ts +4 -4
package/dist/interfaces.d.ts
CHANGED
|
@@ -1044,12 +1044,12 @@ export interface RunSettings {
|
|
|
1044
1044
|
time?: RunTime;
|
|
1045
1045
|
timeWithLoads?: RunTime;
|
|
1046
1046
|
igt?: RunTime;
|
|
1047
|
-
platformId
|
|
1047
|
+
platformId?: string;
|
|
1048
1048
|
emulator: boolean;
|
|
1049
|
-
video
|
|
1050
|
-
comment
|
|
1049
|
+
video?: string;
|
|
1050
|
+
comment?: string;
|
|
1051
1051
|
date: number;
|
|
1052
|
-
values
|
|
1052
|
+
values?: VariableValue[];
|
|
1053
1053
|
}
|
|
1054
1054
|
export interface Series {
|
|
1055
1055
|
readonly id: string;
|
package/package.json
CHANGED
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
|
|
1234
|
+
platformId?: string;
|
|
1235
1235
|
emulator: boolean;
|
|
1236
|
-
video
|
|
1237
|
-
comment
|
|
1236
|
+
video?: string;
|
|
1237
|
+
comment?: string;
|
|
1238
1238
|
date: number;
|
|
1239
|
-
values
|
|
1239
|
+
values?: VariableValue[];
|
|
1240
1240
|
}
|
|
1241
1241
|
|
|
1242
1242
|
export interface Series {
|