speedruncom.js 1.3.1 → 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.
package/src/index.ts CHANGED
@@ -1,6 +1,6 @@
1
- export * from './enums.js';
2
- export * from './interfaces.js';
1
+ export * from './enums';
2
+ export * from './interfaces';
3
3
 
4
- import Client from './Client.js';
4
+ import Client from './Client';
5
5
 
6
6
  export default Client;
package/src/interfaces.ts CHANGED
@@ -1,4 +1,4 @@
1
- import * as Enums from './enums.js';
1
+ import * as Enums from './enums';
2
2
 
3
3
  /**
4
4
  * A Category item.
@@ -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
  /**