this repo has no description
0
fork

Configure Feed

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

temporarily remove the did doc field from auth response (#440)

this value is typed as "unknown" in lexicon, which we don't really know
how to map into a go type here

authored by

Whyrusleeping and committed by
GitHub
1b8971c9 4f36bf92

+5 -6
+5 -6
api/atproto/serverrefreshSession.go
··· 7 7 import ( 8 8 "context" 9 9 10 - "github.com/bluesky-social/indigo/lex/util" 11 10 "github.com/bluesky-social/indigo/xrpc" 12 11 ) 13 12 14 13 // ServerRefreshSession_Output is the output of a com.atproto.server.refreshSession call. 15 14 type ServerRefreshSession_Output struct { 16 - AccessJwt string `json:"accessJwt" cborgen:"accessJwt"` 17 - Did string `json:"did" cborgen:"did"` 18 - DidDoc *util.LexiconTypeDecoder `json:"didDoc,omitempty" cborgen:"didDoc,omitempty"` 19 - Handle string `json:"handle" cborgen:"handle"` 20 - RefreshJwt string `json:"refreshJwt" cborgen:"refreshJwt"` 15 + AccessJwt string `json:"accessJwt" cborgen:"accessJwt"` 16 + Did string `json:"did" cborgen:"did"` 17 + //DidDoc *util.LexiconTypeDecoder `json:"didDoc,omitempty" cborgen:"didDoc,omitempty"` 18 + Handle string `json:"handle" cborgen:"handle"` 19 + RefreshJwt string `json:"refreshJwt" cborgen:"refreshJwt"` 21 20 } 22 21 23 22 // ServerRefreshSession calls the XRPC method "com.atproto.server.refreshSession".