···1414type ActorGetSuggestions_Output struct {
1515 Actors []*ActorDefs_ProfileView `json:"actors" cborgen:"actors"`
1616 Cursor *string `json:"cursor,omitempty" cborgen:"cursor,omitempty"`
1717+ // recId: Snowflake for this recommendation, use when submitting recommendation events.
1818+ RecId *int64 `json:"recId,omitempty" cborgen:"recId,omitempty"`
1719}
18201921// ActorGetSuggestions calls the XRPC method "app.bsky.actor.getSuggestions".
+3-1
api/bsky/graphgetSuggestedFollowsByActor.go
···1313// GraphGetSuggestedFollowsByActor_Output is the output of a app.bsky.graph.getSuggestedFollowsByActor call.
1414type GraphGetSuggestedFollowsByActor_Output struct {
1515 // isFallback: If true, response has fallen-back to generic results, and is not scoped using relativeToDid
1616- IsFallback *bool `json:"isFallback,omitempty" cborgen:"isFallback,omitempty"`
1616+ IsFallback *bool `json:"isFallback,omitempty" cborgen:"isFallback,omitempty"`
1717+ // recId: Snowflake for this recommendation, use when submitting recommendation events.
1818+ RecId *int64 `json:"recId,omitempty" cborgen:"recId,omitempty"`
1719 Suggestions []*ActorDefs_ProfileView `json:"suggestions" cborgen:"suggestions"`
1820}
1921
+2
api/bsky/unspeccedgetSuggestionsSkeleton.go
···1414type UnspeccedGetSuggestionsSkeleton_Output struct {
1515 Actors []*UnspeccedDefs_SkeletonSearchActor `json:"actors" cborgen:"actors"`
1616 Cursor *string `json:"cursor,omitempty" cborgen:"cursor,omitempty"`
1717+ // recId: Snowflake for this recommendation, use when submitting recommendation events.
1818+ RecId *int64 `json:"recId,omitempty" cborgen:"recId,omitempty"`
1719 // relativeToDid: DID of the account these suggestions are relative to. If this is returned undefined, suggestions are based on the viewer.
1820 RelativeToDid *string `json:"relativeToDid,omitempty" cborgen:"relativeToDid,omitempty"`
1921}