Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions lexicons/app.bsky.actor.defs.json
Original file line number Diff line number Diff line change
Expand Up @@ -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."
}
}
}
Expand Down
3 changes: 3 additions & 0 deletions packages/atproto_client/models/app/bsky/actor/defs.py
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down
Loading