Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update lexicons fetched from 319aa7c committed 2024-09-13T17:37:15Z #403

Merged
merged 1 commit into from
Sep 24, 2024
Merged
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
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.
Loading