speedruncom.js 1.1.1 → 1.2.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.
@@ -641,15 +641,32 @@ export interface GetUserModeration {
641
641
  }
642
642
 
643
643
  /**
644
- * Get a list of comments on an item.
644
+ * Get a list of comments on an item, and data of the parent.
645
645
  */
646
646
  export interface GetCommentList {
647
+
648
+ /**
649
+ * ID of the parent item to fetch.
650
+ */
647
651
  itemId: string;
648
652
 
649
653
  /**
650
654
  * `ItemType` of the item referenced in `itemId`.
651
655
  */
652
656
  itemType: Enums.ItemType;
657
+
658
+ /**
659
+ * The maximum amount of `Comment`s per page.
660
+ *
661
+ * @max 100
662
+ * @default 100
663
+ */
664
+ limit?: number;
665
+
666
+ /**
667
+ * The comment page, in relation to `limit`.
668
+ */
669
+ page?: number;
653
670
  }
654
671
 
655
672
  /**