1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
//! AniList API endpoint modules.
//!
//! Each module provides a specialized endpoint for interacting with different
//! parts of the AniList API, such as anime, manga, characters, users, etc.
/// Activity feed operations (text posts, list updates, replies)
/// Airing schedule operations (upcoming episodes, recently aired)
/// Character operations (search, popular, birthdays)
/// Common operations (likes, follows, favorites)
/// Forum operations (threads, comments, categories)
/// Media operations (anime, manga, search)
/// Media list operations (user anime/manga lists)
/// Notification operations (read, manage notifications)
/// Recommendation operations (browse, manage recommendations)
/// Review operations (create, read, update, delete reviews)
/// Staff operations (search, popular, birthdays)
/// Studio operations (search, productions)
/// User operations (profiles, statistics, favorites)
pub use ActivityEndpoint;
pub use AiringEndpoint;
pub use CharacterEndpoint;
pub use CommonEndpoint;
pub use ForumEndpoint;
pub use MediaEndpoint;
pub use MediaListEndpoint;
pub use NotificationEndpoint;
pub use RecommendationEndpoint;
pub use ReviewEndpoint;
pub use StaffEndpoint;
pub use StudioEndpoint;
pub use UserEndpoint;