blob: fcbacb954177011907c530571d1405fcb6e03686 (
plain)
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
|
package eventlogging
import "fagott.pw/goanilist"
type ViewGrilData struct {
EventLoggerData
GrilID int `json:"grilId"`
}
type ViewListData struct {
EventLoggerData
ListID int `json:"listId"`
}
type CreateListData struct {
EventLoggerData
ListID int `json:"listId"`
Name string `json:"name"`
Description string `json:"description"`
}
type AddGrilToListData struct {
EventLoggerData
GrilID int `json:"grilId"`
ListID int `json:"listId"`
}
type DeleteGrilFromListData struct {
EventLoggerData
ListID int `json:"listId"`
GrilID int `json:"grilId"`
}
type DeleteListData struct {
EventLoggerData
ListID int `json:"listId"`
}
type EditListData struct {
EventLoggerData
ListID int `json:"listId"`
OldName string `json:"oldName"`
OldDescription string `json:"oldDescription"`
NewName string `json:"newName"`
NewDescription string `json:"newDescription"`
}
type ChangeGrilOrderData struct {
EventLoggerData
ListID int `json:"listId"`
GrilID int `json:"grilId"`
OldOrder int `json:"oldOrder"`
NewOrder int `json:"newOrder"`
}
type ViewSeriesData struct {
EventLoggerData
SeriesID int `json:"seriesId"`
}
type ViewTagData struct {
EventLoggerData
Tag string `json:"tag"`
TagID int `json:"tagId"`
Results int `json:"results"`
Pages int `json:"pages"`
Page int `json:"page"`
}
type FavImportAnilistData struct {
EventLoggerData
Favourites *goanilist.FavouritesResult `json:"favs"`
}
type FavImportAnilistAssignedData struct {
EventLoggerData
AnilistID int `json:"anilistId"`
AssignedID int `json:"assignedId"`
}
type FavImportAnilistCreatedData struct {
EventLoggerData
AnilistID int `json:"anilistId"`
AssignedID int `json:"assignedId"`
}
type AnilistCharacterPageData struct {
EventLoggerData
CharacterPage *goanilist.CharacterPageResult `json:"page"`
}
|