anilink-api-wrapper 1.3.0 → 1.3.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.
@@ -5,15 +5,54 @@ exports.ActivitySchema = `
5
5
  activity {
6
6
  ... on TextActivity {
7
7
  id
8
+ userId
8
9
  type
10
+ replyCount
11
+ text (asHtml: $asHtml)
12
+ siteUrl
13
+ isLocked
14
+ isSubscribed
15
+ likeCount
16
+ isLiked
17
+ isPinned
18
+ createdAt
9
19
  }
10
20
  ... on ListActivity {
11
21
  id
22
+ userId
12
23
  type
24
+ replyCount
25
+ status
26
+ progress
27
+ isLocked
28
+ isSubscribed
29
+ likeCount
30
+ isLiked
31
+ isPinned
32
+ siteUrl
33
+ createdAt
34
+ media {
35
+ id
36
+ title {
37
+ romaji
38
+ english
39
+ }
40
+ }
13
41
  }
14
42
  ... on MessageActivity {
15
43
  id
44
+ recipientId
45
+ messengerId
16
46
  type
47
+ replyCount
48
+ message (asHtml: $asHtml)
49
+ isLocked
50
+ isSubscribed
51
+ likeCount
52
+ isLiked
53
+ isPrivate
54
+ siteUrl
55
+ createdAt
17
56
  }
18
57
  }
19
58
  `;
@@ -51,12 +51,6 @@ exports.NotificationSchema = `
51
51
  isPrivate
52
52
  siteUrl
53
53
  createdAt
54
- recipient {
55
- ${BasicUser_1.BasicUserSchema}
56
- }
57
- messenger {
58
- ${BasicUser_1.BasicUserSchema}
59
- }
60
54
  replies {
61
55
  id
62
56
  userId
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "anilink-api-wrapper",
3
- "version": "1.3.0",
3
+ "version": "1.3.1",
4
4
  "description": "Anilist API Wrapper",
5
5
  "main": "dist/AniLink.js",
6
6
  "scripts": {