+5
-5
api/bsky/notificationdefs.go
+5
-5
api/bsky/notificationdefs.go
···
6
6
7
7
// NotificationDefs_ChatPreference is a "chatPreference" in the app.bsky.notification.defs schema.
8
8
type NotificationDefs_ChatPreference struct {
9
-
Filter string `json:"filter" cborgen:"filter"`
10
-
Push bool `json:"push" cborgen:"push"`
9
+
Include string `json:"include" cborgen:"include"`
10
+
Push bool `json:"push" cborgen:"push"`
11
11
}
12
12
13
13
// NotificationDefs_FilterablePreference is a "filterablePreference" in the app.bsky.notification.defs schema.
14
14
type NotificationDefs_FilterablePreference struct {
15
-
Filter string `json:"filter" cborgen:"filter"`
16
-
List bool `json:"list" cborgen:"list"`
17
-
Push bool `json:"push" cborgen:"push"`
15
+
Include string `json:"include" cborgen:"include"`
16
+
List bool `json:"list" cborgen:"list"`
17
+
Push bool `json:"push" cborgen:"push"`
18
18
}
19
19
20
20
// NotificationDefs_Preference is a "preference" in the app.bsky.notification.defs schema.