this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

add suggestions recid codegen

Hailey 2ca54d04 eab52046

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