fork of indigo with slightly nicer lexgen

Rename Notif Preference Filter -> Include (#1101)

re: https://github.com/bluesky-social/atproto/pull/3966

Ran `make lexgen` and just kept stuff related to notification
preferences.

authored by Jim Calabro and committed by GitHub 336ebe49 d4516ea1

Changed files
+5 -5
api
+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.