anilink-api-wrapper 1.17.4 → 1.17.5

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.
Files changed (411) hide show
  1. package/README.md +321 -0
  2. package/dist/AniLink.js +10 -0
  3. package/dist/apis/anilist/interfaces/Activity.js +8 -0
  4. package/dist/apis/anilist/interfaces/ActivityNotification.js +4 -0
  5. package/dist/apis/anilist/interfaces/ActivityReply.js +4 -0
  6. package/dist/apis/anilist/interfaces/BasicComment.js +4 -0
  7. package/dist/apis/anilist/interfaces/BasicThread.js +4 -0
  8. package/dist/apis/anilist/interfaces/BasicUser.js +4 -0
  9. package/dist/apis/anilist/interfaces/CoverImage.js +4 -0
  10. package/dist/apis/anilist/interfaces/ExternalLink.js +4 -0
  11. package/dist/apis/anilist/interfaces/FuzzyDate.js +4 -0
  12. package/dist/apis/anilist/interfaces/Image.js +4 -0
  13. package/dist/apis/anilist/interfaces/MediaListEntry.js +4 -0
  14. package/dist/apis/anilist/interfaces/Name.js +4 -0
  15. package/dist/apis/anilist/interfaces/NextAiringEpisode.js +4 -0
  16. package/dist/apis/anilist/interfaces/Ranking.js +4 -0
  17. package/dist/apis/anilist/interfaces/ScoreDistribution.js +4 -0
  18. package/dist/apis/anilist/interfaces/SiteTrend.js +4 -0
  19. package/dist/apis/anilist/interfaces/SiteTrendConnection.js +4 -0
  20. package/dist/apis/anilist/interfaces/StatusDistribution.js +4 -0
  21. package/dist/apis/anilist/interfaces/StreamingEpisode.js +4 -0
  22. package/dist/apis/anilist/interfaces/Tag.js +4 -0
  23. package/dist/apis/anilist/interfaces/ThreadNotification.js +4 -0
  24. package/dist/apis/anilist/interfaces/Title.js +4 -0
  25. package/dist/apis/anilist/interfaces/Trailer.js +4 -0
  26. package/dist/apis/anilist/interfaces/UserStats.js +8 -0
  27. package/dist/apis/anilist/interfaces/responses/query/AiringSchedule.js +4 -0
  28. package/dist/apis/anilist/interfaces/responses/query/Character.js +4 -0
  29. package/dist/apis/anilist/interfaces/responses/query/Media.js +8 -0
  30. package/dist/apis/anilist/interfaces/responses/query/MediaList.js +4 -0
  31. package/dist/apis/anilist/interfaces/responses/query/MediaListCollectionResponse.js +4 -0
  32. package/dist/apis/anilist/interfaces/responses/query/MediaTrend.js +4 -0
  33. package/dist/apis/anilist/interfaces/responses/query/Notification.js +4 -0
  34. package/dist/apis/anilist/interfaces/responses/query/Recommendation.js +4 -0
  35. package/dist/apis/anilist/interfaces/responses/query/Review.js +4 -0
  36. package/dist/apis/anilist/interfaces/responses/query/SiteStatistics.js +4 -0
  37. package/dist/apis/anilist/interfaces/responses/query/Staff.js +4 -0
  38. package/dist/apis/anilist/interfaces/responses/query/Studio.js +4 -0
  39. package/dist/apis/anilist/interfaces/responses/query/Thread.js +4 -0
  40. package/dist/apis/anilist/interfaces/responses/query/ThreadComment.js +4 -0
  41. package/dist/apis/anilist/interfaces/responses/query/User.js +4 -0
  42. package/dist/apis/anilist/mutation/SaveMediaListEntry.js +15 -0
  43. package/dist/apis/anilist/mutation/UpdateMediaListEntries.js +15 -0
  44. package/dist/apis/anilist/mutation/UpdateUser.js +15 -0
  45. package/dist/apis/anilist/query/Activity.js +15 -0
  46. package/dist/apis/anilist/query/ActivityReply.js +15 -0
  47. package/dist/apis/anilist/query/AiringSchedule.js +15 -0
  48. package/dist/apis/anilist/query/AniChartUser.js +14 -0
  49. package/dist/apis/anilist/query/Character.js +15 -0
  50. package/dist/apis/anilist/query/ExternalLinkSourceCollection.js +17 -2
  51. package/dist/apis/anilist/query/Follower.js +15 -0
  52. package/dist/apis/anilist/query/Following.js +15 -0
  53. package/dist/apis/anilist/query/GenreCollection.js +14 -0
  54. package/dist/apis/anilist/query/Markdown.js +15 -0
  55. package/dist/apis/anilist/query/Media.js +15 -0
  56. package/dist/apis/anilist/query/MediaList.js +15 -0
  57. package/dist/apis/anilist/query/MediaListCollection.js +15 -0
  58. package/dist/apis/anilist/query/MediaTagCollection.js +17 -2
  59. package/dist/apis/anilist/query/MediaTrend.js +15 -0
  60. package/dist/apis/anilist/query/Notification.js +15 -0
  61. package/dist/apis/anilist/query/Recommendation.js +15 -0
  62. package/dist/apis/anilist/query/Review.js +15 -0
  63. package/dist/apis/anilist/query/SiteStatistics.js +17 -2
  64. package/dist/apis/anilist/query/Staff.js +15 -0
  65. package/dist/apis/anilist/query/Studio.js +15 -0
  66. package/dist/apis/anilist/query/Thread.js +15 -0
  67. package/dist/apis/anilist/query/ThreadComment.js +15 -0
  68. package/dist/apis/anilist/query/User.js +15 -0
  69. package/dist/apis/anilist/query/Viewer.js +15 -0
  70. package/dist/apis/anilist/query/page/Activities.js +15 -0
  71. package/dist/apis/anilist/query/page/ActivityReplies.js +15 -0
  72. package/dist/apis/anilist/query/page/AiringSchedules.js +15 -0
  73. package/dist/apis/anilist/query/page/Characters.js +15 -0
  74. package/dist/apis/anilist/query/page/Followers.js +15 -0
  75. package/dist/apis/anilist/query/page/Followings.js +15 -0
  76. package/dist/apis/anilist/query/page/Likes.js +15 -0
  77. package/dist/apis/anilist/query/page/MediaLists.js +15 -0
  78. package/dist/apis/anilist/query/page/MediaTrends.js +15 -0
  79. package/dist/apis/anilist/query/page/Medias.js +13 -0
  80. package/dist/apis/anilist/query/page/Notifications.js +15 -0
  81. package/dist/apis/anilist/query/page/Recommendations.js +15 -0
  82. package/dist/apis/anilist/query/page/Reviews.js +15 -0
  83. package/dist/apis/anilist/query/page/Staffs.js +15 -0
  84. package/dist/apis/anilist/query/page/Studios.js +15 -0
  85. package/dist/apis/anilist/query/page/ThreadCommments.js +15 -0
  86. package/dist/apis/anilist/query/page/Threads.js +15 -0
  87. package/dist/apis/anilist/query/page/Users.js +15 -0
  88. package/dist/base/APIWrapper.js +8 -0
  89. package/dist/base/RequestHandler.js +9 -0
  90. package/docs/.nojekyll +1 -0
  91. package/docs/assets/26e93147f10415a0ed4a.svg +6 -0
  92. package/docs/assets/75c9471662e97ee24f29.svg +7 -0
  93. package/docs/assets/db90e4df2373980c497d.svg +9 -0
  94. package/docs/assets/hierarchy.css +1 -0
  95. package/docs/assets/hierarchy.js +1 -0
  96. package/docs/assets/highlight.css +85 -0
  97. package/docs/assets/icons.js +15 -0
  98. package/docs/assets/icons.svg +1 -0
  99. package/docs/assets/main.js +59 -0
  100. package/docs/assets/navigation.js +1 -0
  101. package/docs/assets/search.js +1 -0
  102. package/docs/assets/style.css +1412 -0
  103. package/docs/classes/AniLink.AniLink.html +105 -0
  104. package/docs/classes/apis_anilist_mutation_SaveMediaListEntry.SaveMediaListEntryMutation.html +10 -0
  105. package/docs/classes/apis_anilist_mutation_UpdateMediaListEntries.UpdateMediaListEntriesMutation.html +10 -0
  106. package/docs/classes/apis_anilist_mutation_UpdateUser.UpdateUserMutation.html +10 -0
  107. package/docs/classes/apis_anilist_query_Activity.ActivityQuery.html +10 -0
  108. package/docs/classes/apis_anilist_query_ActivityReply.ActivityReplyQuery.html +10 -0
  109. package/docs/classes/apis_anilist_query_AiringSchedule.AiringScheduleQuery.html +10 -0
  110. package/docs/classes/apis_anilist_query_AniChartUser.AniChartUserQuery.html +9 -0
  111. package/docs/classes/apis_anilist_query_Character.CharacterQuery.html +10 -0
  112. package/docs/classes/apis_anilist_query_ExternalLinkSourceCollection.ExternalLinkSourceCollectionQuery.html +10 -0
  113. package/docs/classes/apis_anilist_query_Follower.FollowerQuery.html +10 -0
  114. package/docs/classes/apis_anilist_query_Following.FollowingQuery.html +10 -0
  115. package/docs/classes/apis_anilist_query_GenreCollection.GenreCollectionQuery.html +9 -0
  116. package/docs/classes/apis_anilist_query_Markdown.MarkdownQuery.html +10 -0
  117. package/docs/classes/apis_anilist_query_Media.MediaQuery.html +10 -0
  118. package/docs/classes/apis_anilist_query_MediaList.MediaListQuery.html +10 -0
  119. package/docs/classes/apis_anilist_query_MediaListCollection.MediaListCollectionQuery.html +10 -0
  120. package/docs/classes/apis_anilist_query_MediaTagCollection.MediaTagCollectionQuery.html +10 -0
  121. package/docs/classes/apis_anilist_query_MediaTrend.MediaTrendQuery.html +10 -0
  122. package/docs/classes/apis_anilist_query_Notification.NotificationQuery.html +10 -0
  123. package/docs/classes/apis_anilist_query_Recommendation.RecommendationQuery.html +10 -0
  124. package/docs/classes/apis_anilist_query_Review.ReviewQuery.html +10 -0
  125. package/docs/classes/apis_anilist_query_SiteStatistics.SiteStatisticsQuery.html +10 -0
  126. package/docs/classes/apis_anilist_query_Staff.StaffQuery.html +10 -0
  127. package/docs/classes/apis_anilist_query_Studio.StudioQuery.html +10 -0
  128. package/docs/classes/apis_anilist_query_Thread.ThreadQuery.html +10 -0
  129. package/docs/classes/apis_anilist_query_ThreadComment.ThreadCommentQuery.html +10 -0
  130. package/docs/classes/apis_anilist_query_User.UserQuery.html +10 -0
  131. package/docs/classes/apis_anilist_query_Viewer.ViewerQuery.html +10 -0
  132. package/docs/classes/apis_anilist_query_page_Activities.ActivitiesQuery.html +10 -0
  133. package/docs/classes/apis_anilist_query_page_ActivityReplies.ActivityRepliesQuery.html +10 -0
  134. package/docs/classes/apis_anilist_query_page_AiringSchedules.AiringSchedulesQuery.html +10 -0
  135. package/docs/classes/apis_anilist_query_page_Characters.CharactersQuery.html +10 -0
  136. package/docs/classes/apis_anilist_query_page_Followers.FollowersQuery.html +10 -0
  137. package/docs/classes/apis_anilist_query_page_Followings.FollowingsQuery.html +10 -0
  138. package/docs/classes/apis_anilist_query_page_Likes.LikesQuery.html +10 -0
  139. package/docs/classes/apis_anilist_query_page_MediaLists.MediaListsQuery.html +10 -0
  140. package/docs/classes/apis_anilist_query_page_MediaTrends.MediaTrendsQuery.html +10 -0
  141. package/docs/classes/apis_anilist_query_page_Medias.MediasQuery.html +10 -0
  142. package/docs/classes/apis_anilist_query_page_Notifications.NotificationsQuery.html +10 -0
  143. package/docs/classes/apis_anilist_query_page_Recommendations.RecommendationsQuery.html +10 -0
  144. package/docs/classes/apis_anilist_query_page_Reviews.ReviewsQuery.html +10 -0
  145. package/docs/classes/apis_anilist_query_page_Staffs.StaffsQuery.html +10 -0
  146. package/docs/classes/apis_anilist_query_page_Studios.StudiosQuery.html +10 -0
  147. package/docs/classes/apis_anilist_query_page_ThreadCommments.ThreadCommentsQuery.html +10 -0
  148. package/docs/classes/apis_anilist_query_page_Threads.ThreadsQuery.html +10 -0
  149. package/docs/classes/apis_anilist_query_page_Users.UsersQuery.html +10 -0
  150. package/docs/classes/base_APIWrapper.APIWrapper.html +6 -0
  151. package/docs/functions/base_RequestHandler.sendRequest.html +8 -0
  152. package/docs/hierarchy.html +1 -0
  153. package/docs/index.html +78 -0
  154. package/docs/interfaces/apis_anilist_interfaces_Activity.Activity.html +67 -0
  155. package/docs/interfaces/apis_anilist_interfaces_ActivityHistory.ActivityHistory.html +12 -0
  156. package/docs/interfaces/apis_anilist_interfaces_ActivityNotification.ActivityNotification.html +19 -0
  157. package/docs/interfaces/apis_anilist_interfaces_ActivityReply.ActivityReply.html +21 -0
  158. package/docs/interfaces/apis_anilist_interfaces_BasicComment.BasicComment.html +9 -0
  159. package/docs/interfaces/apis_anilist_interfaces_BasicThread.BasicThread.html +11 -0
  160. package/docs/interfaces/apis_anilist_interfaces_BasicUser.BasicUser.html +11 -0
  161. package/docs/interfaces/apis_anilist_interfaces_CoverImage.CoverImage.html +11 -0
  162. package/docs/interfaces/apis_anilist_interfaces_Distribution.Distribution.html +7 -0
  163. package/docs/interfaces/apis_anilist_interfaces_ExternalLink.ExternalLink.html +9 -0
  164. package/docs/interfaces/apis_anilist_interfaces_Favoured.Favoured.html +21 -0
  165. package/docs/interfaces/apis_anilist_interfaces_FuzzyDate.FuzzyDate.html +9 -0
  166. package/docs/interfaces/apis_anilist_interfaces_FuzzyDate.FuzzyDateInput.html +9 -0
  167. package/docs/interfaces/apis_anilist_interfaces_Image.Image.html +7 -0
  168. package/docs/interfaces/apis_anilist_interfaces_ListScores.ListScores.html +7 -0
  169. package/docs/interfaces/apis_anilist_interfaces_Media.Media.html +93 -0
  170. package/docs/interfaces/apis_anilist_interfaces_MediaListEntry.MediaListEntry.html +7 -0
  171. package/docs/interfaces/apis_anilist_interfaces_MediaListEntry.MediaListOptionsInput.html +11 -0
  172. package/docs/interfaces/apis_anilist_interfaces_MediaStatistics.MediaStatistics.html +41 -0
  173. package/docs/interfaces/apis_anilist_interfaces_MediaStats.MediaStats.html +7 -0
  174. package/docs/interfaces/apis_anilist_interfaces_Name.Name.html +15 -0
  175. package/docs/interfaces/apis_anilist_interfaces_NextAiringEpisode.NextAiringEpisode.html +9 -0
  176. package/docs/interfaces/apis_anilist_interfaces_Notification.NotificationOptionInput.html +7 -0
  177. package/docs/interfaces/apis_anilist_interfaces_Ranking.Ranking.html +19 -0
  178. package/docs/interfaces/apis_anilist_interfaces_ScoreDistribution.ScoreDistribution.html +7 -0
  179. package/docs/interfaces/apis_anilist_interfaces_SiteTrend.SiteTrend.html +9 -0
  180. package/docs/interfaces/apis_anilist_interfaces_SiteTrendConnection.SiteTrendConnection.html +12 -0
  181. package/docs/interfaces/apis_anilist_interfaces_Staff.Staff.html +7 -0
  182. package/docs/interfaces/apis_anilist_interfaces_Stat.Stat.html +39 -0
  183. package/docs/interfaces/apis_anilist_interfaces_Statistics.Statistics.html +7 -0
  184. package/docs/interfaces/apis_anilist_interfaces_StatusDistribution.StatusDistribution.html +7 -0
  185. package/docs/interfaces/apis_anilist_interfaces_StreamingEpisode.StreamingEpisode.html +11 -0
  186. package/docs/interfaces/apis_anilist_interfaces_Studio.Studio.html +7 -0
  187. package/docs/interfaces/apis_anilist_interfaces_Tag.Tag.html +21 -0
  188. package/docs/interfaces/apis_anilist_interfaces_ThreadNotification.ThreadNotification.html +21 -0
  189. package/docs/interfaces/apis_anilist_interfaces_Title.Title.html +11 -0
  190. package/docs/interfaces/apis_anilist_interfaces_Trailer.Trailer.html +9 -0
  191. package/docs/interfaces/apis_anilist_interfaces_UserStats.UserStats.html +37 -0
  192. package/docs/interfaces/apis_anilist_interfaces_responses_query_AiringSchedule.AiringScheduleResponse.html +15 -0
  193. package/docs/interfaces/apis_anilist_interfaces_responses_query_AniChartUser.AniChartUserResponse.html +9 -0
  194. package/docs/interfaces/apis_anilist_interfaces_responses_query_Character.CharacterResponse.html +32 -0
  195. package/docs/interfaces/apis_anilist_interfaces_responses_query_ExternalLinkSourceCollection.ExternalLinkSourceCollectionResponse.html +23 -0
  196. package/docs/interfaces/apis_anilist_interfaces_responses_query_Media.MediaResponse.html +101 -0
  197. package/docs/interfaces/apis_anilist_interfaces_responses_query_MediaList.MediaListResponse.html +43 -0
  198. package/docs/interfaces/apis_anilist_interfaces_responses_query_MediaListCollectionResponse.MediaListCollectionResponse.html +8 -0
  199. package/docs/interfaces/apis_anilist_interfaces_responses_query_MediaTagCollection.MediaTagCollectionResponse.html +5 -0
  200. package/docs/interfaces/apis_anilist_interfaces_responses_query_MediaTrend.MediaTrendResponse.html +21 -0
  201. package/docs/interfaces/apis_anilist_interfaces_responses_query_Notification.NotificationResponse.html +132 -0
  202. package/docs/interfaces/apis_anilist_interfaces_responses_query_Recommendation.RecommendationResponse.html +15 -0
  203. package/docs/interfaces/apis_anilist_interfaces_responses_query_Review.ReviewResponse.html +33 -0
  204. package/docs/interfaces/apis_anilist_interfaces_responses_query_SiteStatistics.SiteStatisticsResponse.html +17 -0
  205. package/docs/interfaces/apis_anilist_interfaces_responses_query_Staff.StaffResponse.html +62 -0
  206. package/docs/interfaces/apis_anilist_interfaces_responses_query_Studio.StudioResponse.html +18 -0
  207. package/docs/interfaces/apis_anilist_interfaces_responses_query_Thread.ThreadResponse.html +50 -0
  208. package/docs/interfaces/apis_anilist_interfaces_responses_query_ThreadComment.ThreadCommentResponse.html +31 -0
  209. package/docs/interfaces/apis_anilist_interfaces_responses_query_User.UserResponse.html +79 -0
  210. package/docs/interfaces/apis_anilist_mutation_SaveMediaListEntry.SaveMediaListEntryVariables.html +35 -0
  211. package/docs/interfaces/apis_anilist_mutation_UpdateMediaListEntries.UpdateMediaListEntriesVariables.html +31 -0
  212. package/docs/interfaces/apis_anilist_mutation_UpdateUser.UpdateUserResponse.html +62 -0
  213. package/docs/interfaces/apis_anilist_mutation_UpdateUser.UpdateUserVariables.html +35 -0
  214. package/docs/interfaces/apis_anilist_query_Activity.ActivityVariables.html +57 -0
  215. package/docs/interfaces/apis_anilist_query_ActivityReply.ActivityReplyVariables.html +9 -0
  216. package/docs/interfaces/apis_anilist_query_AiringSchedule.AiringScheduleVariables.html +43 -0
  217. package/docs/interfaces/apis_anilist_query_Character.CharacterVariables.html +27 -0
  218. package/docs/interfaces/apis_anilist_query_ExternalLinkSourceCollection.ExternalLinkSourceCollectionVariables.html +9 -0
  219. package/docs/interfaces/apis_anilist_query_Follower.FollowerVariables.html +15 -0
  220. package/docs/interfaces/apis_anilist_query_Following.FollowingVariables.html +15 -0
  221. package/docs/interfaces/apis_anilist_query_Markdown.MarkdownVariables.html +5 -0
  222. package/docs/interfaces/apis_anilist_query_Media.MediaVariables.html +143 -0
  223. package/docs/interfaces/apis_anilist_query_MediaList.MediaListVariables.html +59 -0
  224. package/docs/interfaces/apis_anilist_query_MediaListCollection.MediaListCollectionVariables.html +51 -0
  225. package/docs/interfaces/apis_anilist_query_MediaTagCollection.MediaTagCollectionVariables.html +5 -0
  226. package/docs/interfaces/apis_anilist_query_MediaTrend.MediaTrendVariables.html +55 -0
  227. package/docs/interfaces/apis_anilist_query_Notification.NotificationVariables.html +11 -0
  228. package/docs/interfaces/apis_anilist_query_Recommendation.RecommendationVariables.html +23 -0
  229. package/docs/interfaces/apis_anilist_query_Review.ReviewVariables.html +15 -0
  230. package/docs/interfaces/apis_anilist_query_SiteStatistics.SiteStatisticsVariables.html +45 -0
  231. package/docs/interfaces/apis_anilist_query_Staff.StaffVariables.html +43 -0
  232. package/docs/interfaces/apis_anilist_query_Studio.StudioVariables.html +51 -0
  233. package/docs/interfaces/apis_anilist_query_Thread.ThreadVariables.html +23 -0
  234. package/docs/interfaces/apis_anilist_query_ThreadComment.ThreadCommentVariables.html +13 -0
  235. package/docs/interfaces/apis_anilist_query_User.UserVariables.html +23 -0
  236. package/docs/interfaces/apis_anilist_query_Viewer.ViewerVariables.html +13 -0
  237. package/docs/interfaces/apis_anilist_query_page_Activities.ActivitiesVariables.html +61 -0
  238. package/docs/interfaces/apis_anilist_query_page_ActivityReplies.ActivityRepliesVariables.html +13 -0
  239. package/docs/interfaces/apis_anilist_query_page_AiringSchedules.AiringSchedulesVariables.html +47 -0
  240. package/docs/interfaces/apis_anilist_query_page_Characters.CharactersVariables.html +31 -0
  241. package/docs/interfaces/apis_anilist_query_page_Followers.FollowersVariables.html +19 -0
  242. package/docs/interfaces/apis_anilist_query_page_Followings.FollowingsVariables.html +19 -0
  243. package/docs/interfaces/apis_anilist_query_page_Likes.LikesVariables.html +11 -0
  244. package/docs/interfaces/apis_anilist_query_page_MediaLists.MediaListsVariables.html +63 -0
  245. package/docs/interfaces/apis_anilist_query_page_MediaTrends.MediaTrendsVariables.html +59 -0
  246. package/docs/interfaces/apis_anilist_query_page_Medias.MediasVariables.html +147 -0
  247. package/docs/interfaces/apis_anilist_query_page_Notifications.NotificationsVariables.html +15 -0
  248. package/docs/interfaces/apis_anilist_query_page_Recommendations.RecommendationsVariables.html +27 -0
  249. package/docs/interfaces/apis_anilist_query_page_Reviews.ReviewsVariables.html +15 -0
  250. package/docs/interfaces/apis_anilist_query_page_Staffs.StaffsVariables.html +47 -0
  251. package/docs/interfaces/apis_anilist_query_page_Studios.StudiosVariables.html +55 -0
  252. package/docs/interfaces/apis_anilist_query_page_ThreadCommments.ThreadCommentsVariables.html +17 -0
  253. package/docs/interfaces/apis_anilist_query_page_Threads.ThreadsVariables.html +27 -0
  254. package/docs/interfaces/apis_anilist_query_page_Users.UsersVariables.html +27 -0
  255. package/docs/modules/AniLink.html +2 -0
  256. package/docs/modules/apis_anilist_interfaces_Activity.html +5 -0
  257. package/docs/modules/apis_anilist_interfaces_ActivityHistory.html +2 -0
  258. package/docs/modules/apis_anilist_interfaces_ActivityNotification.html +3 -0
  259. package/docs/modules/apis_anilist_interfaces_ActivityReply.html +3 -0
  260. package/docs/modules/apis_anilist_interfaces_BasicComment.html +3 -0
  261. package/docs/modules/apis_anilist_interfaces_BasicThread.html +3 -0
  262. package/docs/modules/apis_anilist_interfaces_BasicUser.html +3 -0
  263. package/docs/modules/apis_anilist_interfaces_CoverImage.html +3 -0
  264. package/docs/modules/apis_anilist_interfaces_Distribution.html +2 -0
  265. package/docs/modules/apis_anilist_interfaces_ExternalLink.html +3 -0
  266. package/docs/modules/apis_anilist_interfaces_Favoured.html +2 -0
  267. package/docs/modules/apis_anilist_interfaces_FuzzyDate.html +4 -0
  268. package/docs/modules/apis_anilist_interfaces_Image.html +3 -0
  269. package/docs/modules/apis_anilist_interfaces_ListScores.html +2 -0
  270. package/docs/modules/apis_anilist_interfaces_Media.html +2 -0
  271. package/docs/modules/apis_anilist_interfaces_MediaListEntry.html +5 -0
  272. package/docs/modules/apis_anilist_interfaces_MediaStatistics.html +2 -0
  273. package/docs/modules/apis_anilist_interfaces_MediaStats.html +2 -0
  274. package/docs/modules/apis_anilist_interfaces_Name.html +3 -0
  275. package/docs/modules/apis_anilist_interfaces_NextAiringEpisode.html +3 -0
  276. package/docs/modules/apis_anilist_interfaces_Notification.html +2 -0
  277. package/docs/modules/apis_anilist_interfaces_Ranking.html +3 -0
  278. package/docs/modules/apis_anilist_interfaces_ScoreDistribution.html +3 -0
  279. package/docs/modules/apis_anilist_interfaces_SiteTrend.html +3 -0
  280. package/docs/modules/apis_anilist_interfaces_SiteTrendConnection.html +3 -0
  281. package/docs/modules/apis_anilist_interfaces_Staff.html +2 -0
  282. package/docs/modules/apis_anilist_interfaces_Stat.html +2 -0
  283. package/docs/modules/apis_anilist_interfaces_Statistics.html +2 -0
  284. package/docs/modules/apis_anilist_interfaces_StatusDistribution.html +3 -0
  285. package/docs/modules/apis_anilist_interfaces_StreamingEpisode.html +3 -0
  286. package/docs/modules/apis_anilist_interfaces_Studio.html +2 -0
  287. package/docs/modules/apis_anilist_interfaces_Tag.html +3 -0
  288. package/docs/modules/apis_anilist_interfaces_ThreadNotification.html +3 -0
  289. package/docs/modules/apis_anilist_interfaces_Title.html +3 -0
  290. package/docs/modules/apis_anilist_interfaces_Trailer.html +3 -0
  291. package/docs/modules/apis_anilist_interfaces_UserStats.html +4 -0
  292. package/docs/modules/apis_anilist_interfaces_responses_query_AiringSchedule.html +3 -0
  293. package/docs/modules/apis_anilist_interfaces_responses_query_AniChartUser.html +2 -0
  294. package/docs/modules/apis_anilist_interfaces_responses_query_Character.html +3 -0
  295. package/docs/modules/apis_anilist_interfaces_responses_query_ExternalLinkSourceCollection.html +2 -0
  296. package/docs/modules/apis_anilist_interfaces_responses_query_Media.html +4 -0
  297. package/docs/modules/apis_anilist_interfaces_responses_query_MediaList.html +3 -0
  298. package/docs/modules/apis_anilist_interfaces_responses_query_MediaListCollectionResponse.html +3 -0
  299. package/docs/modules/apis_anilist_interfaces_responses_query_MediaTagCollection.html +2 -0
  300. package/docs/modules/apis_anilist_interfaces_responses_query_MediaTrend.html +3 -0
  301. package/docs/modules/apis_anilist_interfaces_responses_query_Notification.html +3 -0
  302. package/docs/modules/apis_anilist_interfaces_responses_query_Recommendation.html +3 -0
  303. package/docs/modules/apis_anilist_interfaces_responses_query_Review.html +3 -0
  304. package/docs/modules/apis_anilist_interfaces_responses_query_SiteStatistics.html +3 -0
  305. package/docs/modules/apis_anilist_interfaces_responses_query_Staff.html +3 -0
  306. package/docs/modules/apis_anilist_interfaces_responses_query_Studio.html +3 -0
  307. package/docs/modules/apis_anilist_interfaces_responses_query_Thread.html +3 -0
  308. package/docs/modules/apis_anilist_interfaces_responses_query_ThreadComment.html +3 -0
  309. package/docs/modules/apis_anilist_interfaces_responses_query_User.html +3 -0
  310. package/docs/modules/apis_anilist_mutation_SaveMediaListEntry.html +3 -0
  311. package/docs/modules/apis_anilist_mutation_UpdateMediaListEntries.html +3 -0
  312. package/docs/modules/apis_anilist_mutation_UpdateUser.html +4 -0
  313. package/docs/modules/apis_anilist_query_Activity.html +3 -0
  314. package/docs/modules/apis_anilist_query_ActivityReply.html +3 -0
  315. package/docs/modules/apis_anilist_query_AiringSchedule.html +3 -0
  316. package/docs/modules/apis_anilist_query_AniChartUser.html +2 -0
  317. package/docs/modules/apis_anilist_query_Character.html +3 -0
  318. package/docs/modules/apis_anilist_query_ExternalLinkSourceCollection.html +3 -0
  319. package/docs/modules/apis_anilist_query_Follower.html +3 -0
  320. package/docs/modules/apis_anilist_query_Following.html +3 -0
  321. package/docs/modules/apis_anilist_query_GenreCollection.html +2 -0
  322. package/docs/modules/apis_anilist_query_Markdown.html +3 -0
  323. package/docs/modules/apis_anilist_query_Media.html +3 -0
  324. package/docs/modules/apis_anilist_query_MediaList.html +3 -0
  325. package/docs/modules/apis_anilist_query_MediaListCollection.html +3 -0
  326. package/docs/modules/apis_anilist_query_MediaTagCollection.html +3 -0
  327. package/docs/modules/apis_anilist_query_MediaTrend.html +3 -0
  328. package/docs/modules/apis_anilist_query_Notification.html +3 -0
  329. package/docs/modules/apis_anilist_query_Recommendation.html +3 -0
  330. package/docs/modules/apis_anilist_query_Review.html +3 -0
  331. package/docs/modules/apis_anilist_query_SiteStatistics.html +3 -0
  332. package/docs/modules/apis_anilist_query_Staff.html +3 -0
  333. package/docs/modules/apis_anilist_query_Studio.html +3 -0
  334. package/docs/modules/apis_anilist_query_Thread.html +3 -0
  335. package/docs/modules/apis_anilist_query_ThreadComment.html +3 -0
  336. package/docs/modules/apis_anilist_query_User.html +3 -0
  337. package/docs/modules/apis_anilist_query_Viewer.html +3 -0
  338. package/docs/modules/apis_anilist_query_page_Activities.html +3 -0
  339. package/docs/modules/apis_anilist_query_page_ActivityReplies.html +3 -0
  340. package/docs/modules/apis_anilist_query_page_AiringSchedules.html +3 -0
  341. package/docs/modules/apis_anilist_query_page_Characters.html +3 -0
  342. package/docs/modules/apis_anilist_query_page_Followers.html +3 -0
  343. package/docs/modules/apis_anilist_query_page_Followings.html +3 -0
  344. package/docs/modules/apis_anilist_query_page_Likes.html +3 -0
  345. package/docs/modules/apis_anilist_query_page_MediaLists.html +3 -0
  346. package/docs/modules/apis_anilist_query_page_MediaTrends.html +3 -0
  347. package/docs/modules/apis_anilist_query_page_Medias.html +3 -0
  348. package/docs/modules/apis_anilist_query_page_Notifications.html +3 -0
  349. package/docs/modules/apis_anilist_query_page_Recommendations.html +3 -0
  350. package/docs/modules/apis_anilist_query_page_Reviews.html +3 -0
  351. package/docs/modules/apis_anilist_query_page_Staffs.html +3 -0
  352. package/docs/modules/apis_anilist_query_page_Studios.html +3 -0
  353. package/docs/modules/apis_anilist_query_page_ThreadCommments.html +3 -0
  354. package/docs/modules/apis_anilist_query_page_Threads.html +3 -0
  355. package/docs/modules/apis_anilist_query_page_Users.html +3 -0
  356. package/docs/modules/apis_anilist_types_MediaListStatus.html +2 -0
  357. package/docs/modules/apis_anilist_types_ScoreFormat.html +2 -0
  358. package/docs/modules/apis_anilist_types_UserStaffNameLanguage.html +2 -0
  359. package/docs/modules/apis_anilist_types_UserTitleLanguage.html +2 -0
  360. package/docs/modules/base_APIWrapper.html +2 -0
  361. package/docs/modules/base_RequestHandler.html +2 -0
  362. package/docs/types/apis_anilist_interfaces_Activity.ListActivityOptionInput.html +3 -0
  363. package/docs/types/apis_anilist_interfaces_MediaListEntry.MediaListStatus.html +3 -0
  364. package/docs/types/apis_anilist_types_MediaListStatus.MediaListStatus.html +3 -0
  365. package/docs/types/apis_anilist_types_ScoreFormat.ScoreFormat.html +3 -0
  366. package/docs/types/apis_anilist_types_UserStaffNameLanguage.UserStaffNameLanguage.html +3 -0
  367. package/docs/types/apis_anilist_types_UserTitleLanguage.UserTitleLanguage.html +3 -0
  368. package/docs/variables/apis_anilist_interfaces_Activity.ActivitySchema.html +3 -0
  369. package/docs/variables/apis_anilist_interfaces_Activity.ActivityWithRepliesSchema.html +3 -0
  370. package/docs/variables/apis_anilist_interfaces_ActivityNotification.ActivityNotificationSchema.html +3 -0
  371. package/docs/variables/apis_anilist_interfaces_ActivityReply.ActivityReplySchema.html +3 -0
  372. package/docs/variables/apis_anilist_interfaces_BasicComment.BasicCommentSchema.html +3 -0
  373. package/docs/variables/apis_anilist_interfaces_BasicThread.BasicThreadSchema.html +3 -0
  374. package/docs/variables/apis_anilist_interfaces_BasicUser.BasicUserSchema.html +3 -0
  375. package/docs/variables/apis_anilist_interfaces_CoverImage.CoverImageSchema.html +3 -0
  376. package/docs/variables/apis_anilist_interfaces_ExternalLink.ExternalLinkSchema.html +3 -0
  377. package/docs/variables/apis_anilist_interfaces_FuzzyDate.FuzzyDateSchema.html +3 -0
  378. package/docs/variables/apis_anilist_interfaces_Image.ImageSchema.html +3 -0
  379. package/docs/variables/apis_anilist_interfaces_MediaListEntry.MediaListEntrySchema.html +3 -0
  380. package/docs/variables/apis_anilist_interfaces_Name.NameSchema.html +3 -0
  381. package/docs/variables/apis_anilist_interfaces_NextAiringEpisode.NextAiringEpisodeSchema.html +3 -0
  382. package/docs/variables/apis_anilist_interfaces_Ranking.RankingSchema.html +3 -0
  383. package/docs/variables/apis_anilist_interfaces_ScoreDistribution.ScoreDistributionSchema.html +3 -0
  384. package/docs/variables/apis_anilist_interfaces_SiteTrend.SiteTrendSchema.html +3 -0
  385. package/docs/variables/apis_anilist_interfaces_SiteTrendConnection.SiteTrendConnectionSchema.html +3 -0
  386. package/docs/variables/apis_anilist_interfaces_StatusDistribution.StatusDistributionSchema.html +3 -0
  387. package/docs/variables/apis_anilist_interfaces_StreamingEpisode.StreamingEpisodeSchema.html +3 -0
  388. package/docs/variables/apis_anilist_interfaces_Tag.TagSchema.html +3 -0
  389. package/docs/variables/apis_anilist_interfaces_ThreadNotification.ThreadNotificationSchema.html +3 -0
  390. package/docs/variables/apis_anilist_interfaces_Title.TitleSchema.html +3 -0
  391. package/docs/variables/apis_anilist_interfaces_Trailer.TrailerSchema.html +3 -0
  392. package/docs/variables/apis_anilist_interfaces_UserStats.UserAnimeStatsSchema.html +3 -0
  393. package/docs/variables/apis_anilist_interfaces_UserStats.UserMangaStatsSchema.html +3 -0
  394. package/docs/variables/apis_anilist_interfaces_responses_query_AiringSchedule.AiringScheduleSchema.html +3 -0
  395. package/docs/variables/apis_anilist_interfaces_responses_query_Character.CharacterSchema.html +3 -0
  396. package/docs/variables/apis_anilist_interfaces_responses_query_Media.MediaSchema.html +3 -0
  397. package/docs/variables/apis_anilist_interfaces_responses_query_Media.MediaWithRelationsSchema.html +3 -0
  398. package/docs/variables/apis_anilist_interfaces_responses_query_MediaList.MediaListSchema.html +3 -0
  399. package/docs/variables/apis_anilist_interfaces_responses_query_MediaListCollectionResponse.MediaListCollectionQuerySchema.html +3 -0
  400. package/docs/variables/apis_anilist_interfaces_responses_query_MediaTrend.MediaTrendSchema.html +3 -0
  401. package/docs/variables/apis_anilist_interfaces_responses_query_Notification.NotificationSchema.html +3 -0
  402. package/docs/variables/apis_anilist_interfaces_responses_query_Recommendation.RecommendationSchema.html +3 -0
  403. package/docs/variables/apis_anilist_interfaces_responses_query_Review.ReviewSchema.html +3 -0
  404. package/docs/variables/apis_anilist_interfaces_responses_query_SiteStatistics.SiteStatisticsSchema.html +3 -0
  405. package/docs/variables/apis_anilist_interfaces_responses_query_Staff.StaffSchema.html +3 -0
  406. package/docs/variables/apis_anilist_interfaces_responses_query_Studio.StudioSchema.html +3 -0
  407. package/docs/variables/apis_anilist_interfaces_responses_query_Thread.ThreadSchema.html +3 -0
  408. package/docs/variables/apis_anilist_interfaces_responses_query_ThreadComment.ThreadCommentSchema.html +3 -0
  409. package/docs/variables/apis_anilist_interfaces_responses_query_User.UserSchema.html +3 -0
  410. package/package.json +4 -1
  411. package/typedoc.json +15 -0
@@ -13,11 +13,26 @@ exports.MediaTrendQuery = void 0;
13
13
  const APIWrapper_1 = require("../../../base/APIWrapper");
14
14
  const RequestHandler_1 = require("../../../base/RequestHandler");
15
15
  const MediaTrend_1 = require("../interfaces/responses/query/MediaTrend");
16
+ /**
17
+ * `MediaTrendQuery` is a class representing a query for media trend data.
18
+ * It includes a method to send the media trend query and receive the response.
19
+ */
16
20
  class MediaTrendQuery extends APIWrapper_1.APIWrapper {
21
+ /**
22
+ * Constructs a new `MediaTrendQuery` instance.
23
+ *
24
+ * @param authToken - The authentication token.
25
+ */
17
26
  constructor(authToken) {
18
27
  super('https://graphql.anilist.co');
19
28
  this.authToken = authToken;
20
29
  }
30
+ /**
31
+ * `mediaTrend` is a method that sends a query request to get media trend data.
32
+ *
33
+ * @param variables - The variables for the query.
34
+ * @returns The response from the query request.
35
+ */
21
36
  mediaTrend(variables) {
22
37
  return __awaiter(this, void 0, void 0, function* () {
23
38
  const query = `
@@ -13,11 +13,26 @@ exports.NotificationQuery = void 0;
13
13
  const APIWrapper_1 = require("../../../base/APIWrapper");
14
14
  const RequestHandler_1 = require("../../../base/RequestHandler");
15
15
  const Notification_1 = require("../interfaces/responses/query/Notification");
16
+ /**
17
+ * `NotificationQuery` is a class representing a query for notification data.
18
+ * It includes a method to send the notification query and receive the response.
19
+ */
16
20
  class NotificationQuery extends APIWrapper_1.APIWrapper {
21
+ /**
22
+ * Constructs a new `NotificationQuery` instance.
23
+ *
24
+ * @param authToken - The authentication token.
25
+ */
17
26
  constructor(authToken) {
18
27
  super('https://graphql.anilist.co');
19
28
  this.authToken = authToken;
20
29
  }
30
+ /**
31
+ * `notification` is a method that sends a query request to get notification data.
32
+ *
33
+ * @param variables - The variables for the query.
34
+ * @returns The response from the query request.
35
+ */
21
36
  notification(variables) {
22
37
  return __awaiter(this, void 0, void 0, function* () {
23
38
  const query = `
@@ -13,11 +13,26 @@ exports.RecommendationQuery = void 0;
13
13
  const APIWrapper_1 = require("../../../base/APIWrapper");
14
14
  const RequestHandler_1 = require("../../../base/RequestHandler");
15
15
  const Recommendation_1 = require("../interfaces/responses/query/Recommendation");
16
+ /**
17
+ * `RecommendationQuery` is a class representing a query for recommendation data.
18
+ * It includes a method to send the recommendation query and receive the response.
19
+ */
16
20
  class RecommendationQuery extends APIWrapper_1.APIWrapper {
21
+ /**
22
+ * Constructs a new `RecommendationQuery` instance.
23
+ *
24
+ * @param authToken - The authentication token.
25
+ */
17
26
  constructor(authToken) {
18
27
  super('https://graphql.anilist.co');
19
28
  this.authToken = authToken;
20
29
  }
30
+ /**
31
+ * `recommmendation` is a method that sends a query request to get recommendation data.
32
+ *
33
+ * @param variables - The variables for the query.
34
+ * @returns The response from the query request.
35
+ */
21
36
  recommmendation(variables) {
22
37
  return __awaiter(this, void 0, void 0, function* () {
23
38
  const query = `
@@ -13,11 +13,26 @@ exports.ReviewQuery = void 0;
13
13
  const APIWrapper_1 = require("../../../base/APIWrapper");
14
14
  const RequestHandler_1 = require("../../../base/RequestHandler");
15
15
  const Review_1 = require("../interfaces/responses/query/Review");
16
+ /**
17
+ * `ReviewQuery` is a class representing a query for review data.
18
+ * It includes a method to send the review query and receive the response.
19
+ */
16
20
  class ReviewQuery extends APIWrapper_1.APIWrapper {
21
+ /**
22
+ * Constructs a new `ReviewQuery` instance.
23
+ *
24
+ * @param authToken - The authentication token.
25
+ */
17
26
  constructor(authToken) {
18
27
  super('https://graphql.anilist.co');
19
28
  this.authToken = authToken;
20
29
  }
30
+ /**
31
+ * `review` is a method that sends a query request to get review data.
32
+ *
33
+ * @param variables - The variables for the query.
34
+ * @returns The response from the query request.
35
+ */
21
36
  review(variables) {
22
37
  return __awaiter(this, void 0, void 0, function* () {
23
38
  const query = `
@@ -13,13 +13,28 @@ exports.SiteStatisticsQuery = void 0;
13
13
  const APIWrapper_1 = require("../../../base/APIWrapper");
14
14
  const RequestHandler_1 = require("../../../base/RequestHandler");
15
15
  const SiteStatistics_1 = require("../interfaces/responses/query/SiteStatistics");
16
+ /**
17
+ * `SiteStatisticsQuery` is a class representing a query for site statistics data.
18
+ * It includes a method to send the site statistics query and receive the response.
19
+ */
16
20
  class SiteStatisticsQuery extends APIWrapper_1.APIWrapper {
21
+ /**
22
+ * Constructs a new `SiteStatisticsQuery` instance.
23
+ *
24
+ * @param authToken - The authentication token.
25
+ */
17
26
  constructor(authToken) {
18
27
  super('https://graphql.anilist.co');
19
28
  this.authToken = authToken;
20
29
  }
21
- siteStatistics(variables) {
22
- return __awaiter(this, void 0, void 0, function* () {
30
+ /**
31
+ * `siteStatistics` is a method that sends a query request to get site statistics data.
32
+ *
33
+ * @param variables - The variables for the query. If not provided, an empty object will be used.
34
+ * @returns The response from the query request.
35
+ */
36
+ siteStatistics() {
37
+ return __awaiter(this, arguments, void 0, function* (variables = {}) {
23
38
  const query = `
24
39
  query ($usersSort: [SiteTrendSort], $usersPage: Int, $usersPerPage: Int, $animeSort: [SiteTrendSort], $animePage: Int, $animePerPage: Int, $mangaSort: [SiteTrendSort], $mangaPage: Int, $mangaPerPage: Int, $charactersSort: [SiteTrendSort], $charactersPage: Int, $charactersPerPage: Int, $staffSort: [SiteTrendSort], $staffPage: Int, $staffPerPage: Int, $studiosSort: [SiteTrendSort], $studiosPage: Int, $studiosPerPage: Int, $reviewsSort: [SiteTrendSort], $reviewsPage: Int, $reviewsPerPage: Int) {
25
40
  SiteStatistics {
@@ -13,11 +13,26 @@ exports.StaffQuery = void 0;
13
13
  const APIWrapper_1 = require("../../../base/APIWrapper");
14
14
  const RequestHandler_1 = require("../../../base/RequestHandler");
15
15
  const Staff_1 = require("../interfaces/responses/query/Staff");
16
+ /**
17
+ * `StaffQuery` is a class representing a query for staff data.
18
+ * It includes a method to send the staff query and receive the response.
19
+ */
16
20
  class StaffQuery extends APIWrapper_1.APIWrapper {
21
+ /**
22
+ * Constructs a new `StaffQuery` instance.
23
+ *
24
+ * @param authToken - The authentication token.
25
+ */
17
26
  constructor(authToken) {
18
27
  super('https://graphql.anilist.co');
19
28
  this.authToken = authToken;
20
29
  }
30
+ /**
31
+ * `staff` is a method that sends a query request to get staff data.
32
+ *
33
+ * @param variables - The variables for the query.
34
+ * @returns The response from the query request.
35
+ */
21
36
  staff(variables) {
22
37
  return __awaiter(this, void 0, void 0, function* () {
23
38
  const query = `
@@ -13,11 +13,26 @@ exports.StudioQuery = void 0;
13
13
  const APIWrapper_1 = require("../../../base/APIWrapper");
14
14
  const RequestHandler_1 = require("../../../base/RequestHandler");
15
15
  const Studio_1 = require("../interfaces/responses/query/Studio");
16
+ /**
17
+ * `StudioQuery` is a class representing a query for studio data.
18
+ * It includes a method to send the studio query and receive the response.
19
+ */
16
20
  class StudioQuery extends APIWrapper_1.APIWrapper {
21
+ /**
22
+ * Constructs a new `StudioQuery` instance.
23
+ *
24
+ * @param authToken - The authentication token.
25
+ */
17
26
  constructor(authToken) {
18
27
  super('https://graphql.anilist.co');
19
28
  this.authToken = authToken;
20
29
  }
30
+ /**
31
+ * `studio` is a method that sends a query request to get studio data.
32
+ *
33
+ * @param variables - The variables for the query.
34
+ * @returns The response from the query request.
35
+ */
21
36
  studio(variables) {
22
37
  return __awaiter(this, void 0, void 0, function* () {
23
38
  const query = `
@@ -13,11 +13,26 @@ exports.ThreadQuery = void 0;
13
13
  const APIWrapper_1 = require("../../../base/APIWrapper");
14
14
  const RequestHandler_1 = require("../../../base/RequestHandler");
15
15
  const Thread_1 = require("../interfaces/responses/query/Thread");
16
+ /**
17
+ * `ThreadQuery` is a class representing a query for thread data.
18
+ * It includes a method to send the thread query and receive the response.
19
+ */
16
20
  class ThreadQuery extends APIWrapper_1.APIWrapper {
21
+ /**
22
+ * Constructs a new `ThreadQuery` instance.
23
+ *
24
+ * @param authToken - The authentication token.
25
+ */
17
26
  constructor(authToken) {
18
27
  super('https://graphql.anilist.co');
19
28
  this.authToken = authToken;
20
29
  }
30
+ /**
31
+ * `thread` is a method that sends a query request to get thread data.
32
+ *
33
+ * @param variables - The variables for the query.
34
+ * @returns The response from the query request.
35
+ */
21
36
  thread(variables) {
22
37
  return __awaiter(this, void 0, void 0, function* () {
23
38
  const query = `
@@ -13,11 +13,26 @@ exports.ThreadCommentQuery = void 0;
13
13
  const APIWrapper_1 = require("../../../base/APIWrapper");
14
14
  const RequestHandler_1 = require("../../../base/RequestHandler");
15
15
  const ThreadComment_1 = require("../interfaces/responses/query/ThreadComment");
16
+ /**
17
+ * `ThreadCommentQuery` is a class representing a query for thread comment data.
18
+ * It includes a method to send the thread comment query and receive the response.
19
+ */
16
20
  class ThreadCommentQuery extends APIWrapper_1.APIWrapper {
21
+ /**
22
+ * Constructs a new `ThreadCommentQuery` instance.
23
+ *
24
+ * @param authToken - The authentication token.
25
+ */
17
26
  constructor(authToken) {
18
27
  super('https://graphql.anilist.co');
19
28
  this.authToken = authToken;
20
29
  }
30
+ /**
31
+ * `threadComment` is a method that sends a query request to get thread comment data.
32
+ *
33
+ * @param variables - The variables for the query.
34
+ * @returns The response from the query request.
35
+ */
21
36
  threadComment(variables) {
22
37
  return __awaiter(this, void 0, void 0, function* () {
23
38
  const query = `
@@ -13,11 +13,26 @@ exports.UserQuery = void 0;
13
13
  const APIWrapper_1 = require("../../../base/APIWrapper");
14
14
  const RequestHandler_1 = require("../../../base/RequestHandler");
15
15
  const User_1 = require("../interfaces/responses/query/User");
16
+ /**
17
+ * `UserQuery` is a class representing a query for user data.
18
+ * It includes a method to send the user query and receive the response.
19
+ */
16
20
  class UserQuery extends APIWrapper_1.APIWrapper {
21
+ /**
22
+ * Constructs a new `UserQuery` instance.
23
+ *
24
+ * @param authToken - The authentication token.
25
+ */
17
26
  constructor(authToken) {
18
27
  super('https://graphql.anilist.co');
19
28
  this.authToken = authToken;
20
29
  }
30
+ /**
31
+ * `user` is a method that sends a query request to get user data.
32
+ *
33
+ * @param variables - The variables for the query.
34
+ * @returns The response from the query request.
35
+ */
21
36
  user(variables) {
22
37
  return __awaiter(this, void 0, void 0, function* () {
23
38
  const query = `
@@ -13,11 +13,26 @@ exports.ViewerQuery = void 0;
13
13
  const APIWrapper_1 = require("../../../base/APIWrapper");
14
14
  const RequestHandler_1 = require("../../../base/RequestHandler");
15
15
  const User_1 = require("../interfaces/responses/query/User");
16
+ /**
17
+ * `ViewerQuery` is a class representing a query for viewer data.
18
+ * It includes a method to send the viewer query and receive the response.
19
+ */
16
20
  class ViewerQuery extends APIWrapper_1.APIWrapper {
21
+ /**
22
+ * Constructs a new `ViewerQuery` instance.
23
+ *
24
+ * @param authToken - The authentication token.
25
+ */
17
26
  constructor(authToken) {
18
27
  super('https://graphql.anilist.co');
19
28
  this.authToken = authToken;
20
29
  }
30
+ /**
31
+ * `viewer` is a method that sends a query request to get viewer data.
32
+ *
33
+ * @param variables - The variables for the query.
34
+ * @returns The response from the query request.
35
+ */
21
36
  viewer(variables) {
22
37
  return __awaiter(this, void 0, void 0, function* () {
23
38
  const query = `
@@ -13,11 +13,26 @@ exports.ActivitiesQuery = void 0;
13
13
  const APIWrapper_1 = require("../../../../base/APIWrapper");
14
14
  const RequestHandler_1 = require("../../../../base/RequestHandler");
15
15
  const Activity_1 = require("../../interfaces/Activity");
16
+ /**
17
+ * `ActivitiesQuery` is a class representing a query for activities.
18
+ * It includes a method to get activities.
19
+ */
16
20
  class ActivitiesQuery extends APIWrapper_1.APIWrapper {
21
+ /**
22
+ * Constructs a new `ActivitiesQuery` instance.
23
+ *
24
+ * @param authToken - The authentication token.
25
+ */
17
26
  constructor(authToken) {
18
27
  super('https://graphql.anilist.co');
19
28
  this.authToken = authToken;
20
29
  }
30
+ /**
31
+ * `activities` is a method that sends a query request to get activities.
32
+ *
33
+ * @param variables - The variables for the query.
34
+ * @returns The response from the query request.
35
+ */
21
36
  activities(variables) {
22
37
  return __awaiter(this, void 0, void 0, function* () {
23
38
  const query = `
@@ -13,11 +13,26 @@ exports.ActivityRepliesQuery = void 0;
13
13
  const APIWrapper_1 = require("../../../../base/APIWrapper");
14
14
  const RequestHandler_1 = require("../../../../base/RequestHandler");
15
15
  const ActivityReply_1 = require("../../interfaces/ActivityReply");
16
+ /**
17
+ * `ActivityRepliesQuery` is a class representing a query for activity replies.
18
+ * It includes a method to get activity replies.
19
+ */
16
20
  class ActivityRepliesQuery extends APIWrapper_1.APIWrapper {
21
+ /**
22
+ * Constructs a new `ActivityRepliesQuery` instance.
23
+ *
24
+ * @param authToken - The authentication token.
25
+ */
17
26
  constructor(authToken) {
18
27
  super('https://graphql.anilist.co');
19
28
  this.authToken = authToken;
20
29
  }
30
+ /**
31
+ * `activityReplies` is a method that sends a query request to get activity replies.
32
+ *
33
+ * @param variables - The variables for the query.
34
+ * @returns The response from the query request.
35
+ */
21
36
  activityReplies(variables) {
22
37
  return __awaiter(this, void 0, void 0, function* () {
23
38
  const query = `
@@ -13,11 +13,26 @@ exports.AiringSchedulesQuery = void 0;
13
13
  const APIWrapper_1 = require("../../../../base/APIWrapper");
14
14
  const RequestHandler_1 = require("../../../../base/RequestHandler");
15
15
  const AiringSchedule_1 = require("../../interfaces/responses/query/AiringSchedule");
16
+ /**
17
+ * `AiringSchedulesQuery` is a class representing a query for airing schedules.
18
+ * It includes a method to get airing schedules.
19
+ */
16
20
  class AiringSchedulesQuery extends APIWrapper_1.APIWrapper {
21
+ /**
22
+ * Constructs a new `AiringSchedulesQuery` instance.
23
+ *
24
+ * @param authToken - The authentication token.
25
+ */
17
26
  constructor(authToken) {
18
27
  super('https://graphql.anilist.co');
19
28
  this.authToken = authToken;
20
29
  }
30
+ /**
31
+ * `airingSchedules` is a method that sends a query request to get airing schedules.
32
+ *
33
+ * @param variables - The variables for the query.
34
+ * @returns The response from the query request.
35
+ */
21
36
  airingSchedules(variables) {
22
37
  return __awaiter(this, void 0, void 0, function* () {
23
38
  const query = `
@@ -13,11 +13,26 @@ exports.CharactersQuery = void 0;
13
13
  const APIWrapper_1 = require("../../../../base/APIWrapper");
14
14
  const RequestHandler_1 = require("../../../../base/RequestHandler");
15
15
  const Character_1 = require("../../interfaces/responses/query/Character");
16
+ /**
17
+ * `CharactersQuery` is a class representing a query for characters.
18
+ * It includes a method to get characters.
19
+ */
16
20
  class CharactersQuery extends APIWrapper_1.APIWrapper {
21
+ /**
22
+ * Constructs a new `CharactersQuery` instance.
23
+ *
24
+ * @param authToken - The authentication token.
25
+ */
17
26
  constructor(authToken) {
18
27
  super('https://graphql.anilist.co');
19
28
  this.authToken = authToken;
20
29
  }
30
+ /**
31
+ * `characters` is a method that sends a query request to get characters.
32
+ *
33
+ * @param variables - The variables for the query.
34
+ * @returns The response from the query request.
35
+ */
21
36
  characters(variables) {
22
37
  return __awaiter(this, void 0, void 0, function* () {
23
38
  const query = `
@@ -13,11 +13,26 @@ exports.FollowersQuery = void 0;
13
13
  const APIWrapper_1 = require("../../../../base/APIWrapper");
14
14
  const RequestHandler_1 = require("../../../../base/RequestHandler");
15
15
  const User_1 = require("../../interfaces/responses/query/User");
16
+ /**
17
+ * `FollowersQuery` is a class representing a query for followers.
18
+ * It includes a method to get followers.
19
+ */
16
20
  class FollowersQuery extends APIWrapper_1.APIWrapper {
21
+ /**
22
+ * Constructs a new `FollowersQuery` instance.
23
+ *
24
+ * @param authToken - The authentication token.
25
+ */
17
26
  constructor(authToken) {
18
27
  super('https://graphql.anilist.co');
19
28
  this.authToken = authToken;
20
29
  }
30
+ /**
31
+ * `followers` is a method that sends a query request to get followers.
32
+ *
33
+ * @param variables - The variables for the query.
34
+ * @returns The response from the query request.
35
+ */
21
36
  followers(variables) {
22
37
  return __awaiter(this, void 0, void 0, function* () {
23
38
  const query = `
@@ -13,11 +13,26 @@ exports.FollowingsQuery = void 0;
13
13
  const APIWrapper_1 = require("../../../../base/APIWrapper");
14
14
  const RequestHandler_1 = require("../../../../base/RequestHandler");
15
15
  const User_1 = require("../../interfaces/responses/query/User");
16
+ /**
17
+ * `FollowingsQuery` is a class representing a query for followings.
18
+ * It includes a method to get followings.
19
+ */
16
20
  class FollowingsQuery extends APIWrapper_1.APIWrapper {
21
+ /**
22
+ * Constructs a new `FollowingsQuery` instance.
23
+ *
24
+ * @param authToken - The authentication token.
25
+ */
17
26
  constructor(authToken) {
18
27
  super('https://graphql.anilist.co');
19
28
  this.authToken = authToken;
20
29
  }
30
+ /**
31
+ * `followings` is a method that sends a query request to get followings.
32
+ *
33
+ * @param variables - The variables for the query.
34
+ * @returns The response from the query request.
35
+ */
21
36
  followings(variables) {
22
37
  return __awaiter(this, void 0, void 0, function* () {
23
38
  const query = `
@@ -13,11 +13,26 @@ exports.LikesQuery = void 0;
13
13
  const APIWrapper_1 = require("../../../../base/APIWrapper");
14
14
  const RequestHandler_1 = require("../../../../base/RequestHandler");
15
15
  const BasicUser_1 = require("../../interfaces/BasicUser");
16
+ /**
17
+ * `LikesQuery` is a class representing a query for likes.
18
+ * It includes a method to get likes.
19
+ */
16
20
  class LikesQuery extends APIWrapper_1.APIWrapper {
21
+ /**
22
+ * Constructs a new `LikesQuery` instance.
23
+ *
24
+ * @param authToken - The authentication token.
25
+ */
17
26
  constructor(authToken) {
18
27
  super('https://graphql.anilist.co');
19
28
  this.authToken = authToken;
20
29
  }
30
+ /**
31
+ * `likes` is a method that sends a query request to get likes.
32
+ *
33
+ * @param variables - The variables for the query.
34
+ * @returns The response from the query request.
35
+ */
21
36
  likes(variables) {
22
37
  return __awaiter(this, void 0, void 0, function* () {
23
38
  const query = `
@@ -13,11 +13,26 @@ exports.MediaListsQuery = void 0;
13
13
  const APIWrapper_1 = require("../../../../base/APIWrapper");
14
14
  const RequestHandler_1 = require("../../../../base/RequestHandler");
15
15
  const MediaList_1 = require("../../interfaces/responses/query/MediaList");
16
+ /**
17
+ * `MediaListsQuery` is a class representing a query for media lists.
18
+ * It includes a method to get media lists.
19
+ */
16
20
  class MediaListsQuery extends APIWrapper_1.APIWrapper {
21
+ /**
22
+ * Constructs a new `MediaListsQuery` instance.
23
+ *
24
+ * @param authToken - The authentication token.
25
+ */
17
26
  constructor(authToken) {
18
27
  super('https://graphql.anilist.co');
19
28
  this.authToken = authToken;
20
29
  }
30
+ /**
31
+ * `mediaLists` is a method that sends a query request to get media lists.
32
+ *
33
+ * @param variables - The variables for the query.
34
+ * @returns The response from the query request.
35
+ */
21
36
  mediaLists(variables) {
22
37
  return __awaiter(this, void 0, void 0, function* () {
23
38
  const query = `
@@ -13,11 +13,26 @@ exports.MediaTrendsQuery = void 0;
13
13
  const APIWrapper_1 = require("../../../../base/APIWrapper");
14
14
  const RequestHandler_1 = require("../../../../base/RequestHandler");
15
15
  const MediaTrend_1 = require("../../interfaces/responses/query/MediaTrend");
16
+ /**
17
+ * `MediaTrendsQuery` is a class representing a query for media trends.
18
+ * It includes a method to get media trends.
19
+ */
16
20
  class MediaTrendsQuery extends APIWrapper_1.APIWrapper {
21
+ /**
22
+ * Constructs a new `MediaTrendsQuery` instance.
23
+ *
24
+ * @param authToken - The authentication token.
25
+ */
17
26
  constructor(authToken) {
18
27
  super('https://graphql.anilist.co');
19
28
  this.authToken = authToken;
20
29
  }
30
+ /**
31
+ * `mediaTrends` is a method that sends a query request to get media trends.
32
+ *
33
+ * @param variables - The variables for the query.
34
+ * @returns The response from the query request.
35
+ */
21
36
  mediaTrends(variables) {
22
37
  return __awaiter(this, void 0, void 0, function* () {
23
38
  const query = `
@@ -13,11 +13,24 @@ exports.MediasQuery = void 0;
13
13
  const APIWrapper_1 = require("../../../../base/APIWrapper");
14
14
  const RequestHandler_1 = require("../../../../base/RequestHandler");
15
15
  const Media_1 = require("../../interfaces/responses/query/Media");
16
+ /**
17
+ * `MediasQuery` is a class that extends the `APIWrapper` class.
18
+ * It defines the `medias` method that returns a `MediaResponse`.
19
+ */
16
20
  class MediasQuery extends APIWrapper_1.APIWrapper {
21
+ /**
22
+ * Creates an instance of `MediasQuery`.
23
+ * @param authToken - A string representing the authentication token.
24
+ */
17
25
  constructor(authToken) {
18
26
  super('https://graphql.anilist.co');
19
27
  this.authToken = authToken;
20
28
  }
29
+ /**
30
+ * Returns a `MediaResponse` object.
31
+ * @param variables - A `MediasVariables` object representing the variables for the query.
32
+ * @returns A `MediaResponse` object.
33
+ */
21
34
  medias(variables) {
22
35
  return __awaiter(this, void 0, void 0, function* () {
23
36
  const query = `
@@ -13,11 +13,26 @@ exports.NotificationsQuery = void 0;
13
13
  const APIWrapper_1 = require("../../../../base/APIWrapper");
14
14
  const RequestHandler_1 = require("../../../../base/RequestHandler");
15
15
  const Notification_1 = require("../../interfaces/responses/query/Notification");
16
+ /**
17
+ * `NotificationsQuery` is a class representing a query for notifications.
18
+ * It includes a method to get notifications.
19
+ */
16
20
  class NotificationsQuery extends APIWrapper_1.APIWrapper {
21
+ /**
22
+ * Constructs a new `NotificationsQuery` instance.
23
+ *
24
+ * @param authToken - The authentication token.
25
+ */
17
26
  constructor(authToken) {
18
27
  super('https://graphql.anilist.co');
19
28
  this.authToken = authToken;
20
29
  }
30
+ /**
31
+ * `notifications` is a method that sends a query request to get notifications.
32
+ *
33
+ * @param variables - The variables for the query.
34
+ * @returns The response from the query request.
35
+ */
21
36
  notifications(variables) {
22
37
  return __awaiter(this, void 0, void 0, function* () {
23
38
  const query = `
@@ -13,11 +13,26 @@ exports.RecommendationsQuery = void 0;
13
13
  const APIWrapper_1 = require("../../../../base/APIWrapper");
14
14
  const RequestHandler_1 = require("../../../../base/RequestHandler");
15
15
  const Recommendation_1 = require("../../interfaces/responses/query/Recommendation");
16
+ /**
17
+ * `RecommendationsQuery` is a class representing a query for recommendations.
18
+ * It includes a method to get recommendations.
19
+ */
16
20
  class RecommendationsQuery extends APIWrapper_1.APIWrapper {
21
+ /**
22
+ * Constructs a new `RecommendationsQuery` instance.
23
+ *
24
+ * @param authToken - The authentication token.
25
+ */
17
26
  constructor(authToken) {
18
27
  super('https://graphql.anilist.co');
19
28
  this.authToken = authToken;
20
29
  }
30
+ /**
31
+ * `recommendations` is a method that sends a query request to get recommendations.
32
+ *
33
+ * @param variables - The variables for the query.
34
+ * @returns The response from the query request.
35
+ */
21
36
  recommendations(variables) {
22
37
  return __awaiter(this, void 0, void 0, function* () {
23
38
  const query = `