diff --git a/lexicons/app.bsky.actor.defs.json b/lexicons/app.bsky.actor.defs.json index 41bcb332..13ac9e19 100644 --- a/lexicons/app.bsky.actor.defs.json +++ b/lexicons/app.bsky.actor.defs.json @@ -661,6 +661,10 @@ "isActive": { "type": "boolean", "description": "True if the status is not expired, false if it is expired. Only present if expiration was set." + }, + "isDisabled": { + "type": "boolean", + "description": "True if the user's go-live access has been disabled by a moderator, false otherwise." } } } diff --git a/packages/atproto_client/models/app/bsky/actor/defs.py b/packages/atproto_client/models/app/bsky/actor/defs.py index ca6b1672..1c5753f7 100644 --- a/packages/atproto_client/models/app/bsky/actor/defs.py +++ b/packages/atproto_client/models/app/bsky/actor/defs.py @@ -508,6 +508,9 @@ class StatusView(base.ModelBase): is_active: t.Optional[bool] = ( None #: True if the status is not expired, false if it is expired. Only present if expiration was set. ) + is_disabled: t.Optional[bool] = ( + None #: True if the user's go-live access has been disabled by a moderator, false otherwise. + ) uri: t.Optional[string_formats.AtUri] = None #: Uri. py_type: t.Literal['app.bsky.actor.defs#statusView'] = Field(