Skip to content

Commit

Permalink
Update lexicons fetched from 319aa7c committed 2024-09-13T17:37:15Z
Browse files Browse the repository at this point in the history
  • Loading branch information
MarshalX committed Sep 24, 2024
1 parent 4721373 commit 8fd07a7
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 0 deletions.
5 changes: 5 additions & 0 deletions lexicons/app.bsky.graph.getSuggestedFollowsByActor.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,11 @@
"type": "ref",
"ref": "app.bsky.actor.defs#profileView"
}
},
"isFallback": {
"type": "boolean",
"description": "If true, response has fallen-back to generic results, and is not scoped using relativeToDid",
"default": false
}
}
}
Expand Down
5 changes: 5 additions & 0 deletions lexicons/app.bsky.unspecced.getSuggestionsSkeleton.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,11 @@
"type": "ref",
"ref": "app.bsky.unspecced.defs#skeletonSearchActor"
}
},
"relativeToDid": {
"type": "string",
"format": "did",
"description": "DID of the account these suggestions are relative to. If this is returned undefined, suggestions are based on the viewer."
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,6 @@ class Response(base.ResponseModelBase):
"""Output data model for :obj:`app.bsky.graph.getSuggestedFollowsByActor`."""

suggestions: t.List['models.AppBskyActorDefs.ProfileView'] #: Suggestions.
is_fallback: t.Optional[
bool
] = False #: If true, response has fallen-back to generic results, and is not scoped using relativeToDid.
Original file line number Diff line number Diff line change
Expand Up @@ -46,3 +46,6 @@ class Response(base.ResponseModelBase):

actors: t.List['models.AppBskyUnspeccedDefs.SkeletonSearchActor'] #: Actors.
cursor: t.Optional[str] = None #: Cursor.
relative_to_did: t.Optional[
str
] = None #: DID of the account these suggestions are relative to. If this is returned undefined, suggestions are based on the viewer.

0 comments on commit 8fd07a7

Please sign in to comment.