Skip to content

Commit

Permalink
Update lexicons fetched from c28e374 committed 2024-03-19T16:26:14Z (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
MarshalX authored Mar 20, 2024
1 parent 407e84e commit b6be44d
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
8 changes: 8 additions & 0 deletions lexicons/app.bsky.actor.defs.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@
"maxLength": 640
},
"avatar": { "type": "string" },
"associated": {
"type": "ref",
"ref": "#profileAssociated"
},
"viewer": { "type": "ref", "ref": "#viewerState" },
"labels": {
"type": "array",
Expand All @@ -38,6 +42,10 @@
"maxLength": 2560
},
"avatar": { "type": "string" },
"associated": {
"type": "ref",
"ref": "#profileAssociated"
},
"indexedAt": { "type": "string", "format": "datetime" },
"viewer": { "type": "ref", "ref": "#viewerState" },
"labels": {
Expand Down
2 changes: 2 additions & 0 deletions packages/atproto_client/models/app/bsky/actor/defs.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ class ProfileViewBasic(base.ModelBase):

did: str #: Did.
handle: str #: Handle.
associated: t.Optional['models.AppBskyActorDefs.ProfileAssociated'] = None #: Associated.
avatar: t.Optional[str] = None #: Avatar.
display_name: t.Optional[str] = Field(default=None, max_length=640) #: Display name.
labels: t.Optional[t.List['models.ComAtprotoLabelDefs.Label']] = None #: Labels.
Expand All @@ -35,6 +36,7 @@ class ProfileView(base.ModelBase):

did: str #: Did.
handle: str #: Handle.
associated: t.Optional['models.AppBskyActorDefs.ProfileAssociated'] = None #: Associated.
avatar: t.Optional[str] = None #: Avatar.
description: t.Optional[str] = Field(default=None, max_length=2560) #: Description.
display_name: t.Optional[str] = Field(default=None, max_length=640) #: Display name.
Expand Down

0 comments on commit b6be44d

Please sign in to comment.