speedruncom.js 2.0.5 → 2.0.6

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.
@@ -522,14 +522,14 @@ export default interface GETEndpoints {
522
522
  /**
523
523
  * The thread page, in relation to `limit`.
524
524
  */
525
- page: number;
525
+ page?: number;
526
526
  /**
527
527
  * The maximum amount of `Thread`s to fetch.
528
528
  *
529
529
  * @default 30
530
530
  * @max 100
531
531
  */
532
- limit: number;
532
+ limit?: number;
533
533
  };
534
534
  /**
535
535
  * Gets a comment post's Thread and Forum by `commentId`.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "speedruncom.js",
3
- "version": "2.0.5",
3
+ "version": "2.0.6",
4
4
  "description": "WIP NodeJS module for Speedrun's version 2 API.",
5
5
  "type": "module",
6
6
  "author": {
@@ -635,7 +635,7 @@ export default interface GETEndpoints {
635
635
  /**
636
636
  * The thread page, in relation to `limit`.
637
637
  */
638
- page: number;
638
+ page?: number;
639
639
 
640
640
  /**
641
641
  * The maximum amount of `Thread`s to fetch.
@@ -643,7 +643,7 @@ export default interface GETEndpoints {
643
643
  * @default 30
644
644
  * @max 100
645
645
  */
646
- limit: number;
646
+ limit?: number;
647
647
  };
648
648
 
649
649
  /**