···11+{
22+ "lexicon": 1,
33+ "id": "app.bsky.notification.declaration",
44+ "defs": {
55+ "main": {
66+ "type": "record",
77+ "description": "A declaration of the user's choices related to notifications that can be produced by them.",
88+ "key": "literal:self",
99+ "record": {
1010+ "type": "object",
1111+ "required": ["allowSubscriptions"],
1212+ "properties": {
1313+ "allowSubscriptions": {
1414+ "type": "string",
1515+ "description": "A declaration of the user's preference for allowing activity subscriptions from other users. Absence of a record implies 'followers'.",
1616+ "knownValues": ["followers", "mutuals", "none"]
1717+ }
1818+ }
1919+ }
2020+ }
2121+ }
2222+}
···7171export * as AppBskyLabelerDefs from './types/app/bsky/labeler/defs.js';
7272export * as AppBskyLabelerGetServices from './types/app/bsky/labeler/getServices.js';
7373export * as AppBskyLabelerService from './types/app/bsky/labeler/service.js';
7474+export * as AppBskyNotificationDeclaration from './types/app/bsky/notification/declaration.js';
7475export * as AppBskyNotificationDefs from './types/app/bsky/notification/defs.js';
7576export * as AppBskyNotificationGetPreferences from './types/app/bsky/notification/getPreferences.js';
7677export * as AppBskyNotificationGetUnreadCount from './types/app/bsky/notification/getUnreadCount.js';
7878+export * as AppBskyNotificationListActivitySubscriptions from './types/app/bsky/notification/listActivitySubscriptions.js';
7779export * as AppBskyNotificationListNotifications from './types/app/bsky/notification/listNotifications.js';
8080+export * as AppBskyNotificationPutActivitySubscription from './types/app/bsky/notification/putActivitySubscription.js';
7881export * as AppBskyNotificationPutPreferences from './types/app/bsky/notification/putPreferences.js';
7982export * as AppBskyNotificationPutPreferencesV2 from './types/app/bsky/notification/putPreferencesV2.js';
8083export * as AppBskyNotificationRegisterPush from './types/app/bsky/notification/registerPush.js';