···392392 "#bskyAppStatePref",
393393 "#labelersPref",
394394 "#postInteractionSettingsPref",
395395- "#verificationPrefs"
395395+ "#verificationPrefs",
396396+ "#liveEventPreferences"
396397 ]
397398 }
398399 },
···733734 }
734735 }
735736 },
737737+ "liveEventPreferences": {
738738+ "type": "object",
739739+ "description": "Preferences for live events.",
740740+ "properties": {
741741+ "hiddenFeedIds": {
742742+ "description": "A list of feed IDs that the user has hidden from live events.",
743743+ "type": "array",
744744+ "items": {
745745+ "type": "string"
746746+ }
747747+ },
748748+ "hideAllFeeds": {
749749+ "description": "Whether to hide all feeds from live events.",
750750+ "type": "boolean",
751751+ "default": false
752752+ }
753753+ }
754754+ },
736755 "postInteractionSettingsPref": {
737756 "type": "object",
738757 "description": "Default post interaction settings for the account. These values should be applied as default values when creating new posts. These refs should mirror the threadgate and postgate records exactly.",
···796815 "isActive": {
797816 "type": "boolean",
798817 "description": "True if the status is not expired, false if it is expired. Only present if expiration was set."
818818+ },
819819+ "isDisabled": {
820820+ "type": "boolean",
821821+ "description": "True if the user's go-live access has been disabled by a moderator, false otherwise."
799822 }
800823 }
801824 }
···2525export * as AppBskyContactSendNotification from './types/app/bsky/contact/sendNotification.js';
2626export * as AppBskyContactStartPhoneVerification from './types/app/bsky/contact/startPhoneVerification.js';
2727export * as AppBskyContactVerifyPhone from './types/app/bsky/contact/verifyPhone.js';
2828+export * as AppBskyDraftCreateDraft from './types/app/bsky/draft/createDraft.js';
2929+export * as AppBskyDraftDefs from './types/app/bsky/draft/defs.js';
3030+export * as AppBskyDraftDeleteDraft from './types/app/bsky/draft/deleteDraft.js';
3131+export * as AppBskyDraftGetDrafts from './types/app/bsky/draft/getDrafts.js';
3232+export * as AppBskyDraftUpdateDraft from './types/app/bsky/draft/updateDraft.js';
2833export * as AppBskyEmbedDefs from './types/app/bsky/embed/defs.js';
2934export * as AppBskyEmbedExternal from './types/app/bsky/embed/external.js';
3035export * as AppBskyEmbedImages from './types/app/bsky/embed/images.js';