speedruncom.js 2.0.0 → 2.0.1

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.
@@ -982,7 +982,7 @@ interface Run_Base {
982
982
  /**
983
983
  * Availibility and 'status' of the video of a run.
984
984
  */
985
- readonly VideoState: Enums.VideoState;
985
+ readonly videoState: Enums.VideoState;
986
986
  }
987
987
  /**
988
988
  * A game speedrun's public data.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "speedruncom.js",
3
- "version": "2.0.0",
3
+ "version": "2.0.1",
4
4
  "description": "WIP NodeJS module for Speedrun's version 2 API.",
5
5
  "type": "module",
6
6
  "author": {
@@ -10,8 +10,7 @@
10
10
  "node": ">=18"
11
11
  },
12
12
  "dependencies": {
13
- "axios": "^1.9.0",
14
- "ts-morph": "^26.0.0"
13
+ "axios": "^1.9.0"
15
14
  },
16
15
  "types": "lib/index.d.ts",
17
16
  "scripts": {
@@ -20,9 +19,8 @@
20
19
  "prepare": "npm run build"
21
20
  },
22
21
  "devDependencies": {
23
- "@types/node": "^22.15.24",
22
+ "@types/node": "^24.0.13",
24
23
  "rimraf": "^6.0.1",
25
- "tsx": "^4.20.3",
26
24
  "typescript": "^5.8.3"
27
25
  },
28
26
  "main": "lib/index.js"
package/src/interfaces.ts CHANGED
@@ -1156,7 +1156,7 @@ interface Run_Base {
1156
1156
  /**
1157
1157
  * Availibility and 'status' of the video of a run.
1158
1158
  */
1159
- readonly VideoState: Enums.VideoState;
1159
+ readonly videoState: Enums.VideoState;
1160
1160
  }
1161
1161
 
1162
1162
  /**