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
|
|
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
|
|
532
|
+
limit?: number;
|
|
533
533
|
};
|
|
534
534
|
/**
|
|
535
535
|
* Gets a comment post's Thread and Forum by `commentId`.
|
package/package.json
CHANGED
|
@@ -635,7 +635,7 @@ export default interface GETEndpoints {
|
|
|
635
635
|
/**
|
|
636
636
|
* The thread page, in relation to `limit`.
|
|
637
637
|
*/
|
|
638
|
-
page
|
|
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
|
|
646
|
+
limit?: number;
|
|
647
647
|
};
|
|
648
648
|
|
|
649
649
|
/**
|