this repo has no description
0
fork

Configure Feed

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

update lexgen for fixed lexicon schemas

+4 -4
+1 -1
api/atproto/identityrefreshIdentity.go
··· 12 12 13 13 // IdentityRefreshIdentity_Input is the input argument to a com.atproto.identity.refreshIdentity call. 14 14 type IdentityRefreshIdentity_Input struct { 15 - Hostname *string `json:"hostname,omitempty" cborgen:"hostname,omitempty"` 15 + Identifier string `json:"identifier" cborgen:"identifier"` 16 16 } 17 17 18 18 // IdentityRefreshIdentity calls the XRPC method "com.atproto.identity.refreshIdentity".
+3 -3
api/atproto/identityresolveIdentity.go
··· 12 12 13 13 // IdentityResolveIdentity calls the XRPC method "com.atproto.identity.resolveIdentity". 14 14 // 15 - // handle: Handle or DID to resolve. 16 - func IdentityResolveIdentity(ctx context.Context, c *xrpc.Client, handle string) (*IdentityDefs_AtprotoIdentity, error) { 15 + // identifier: Handle or DID to resolve. 16 + func IdentityResolveIdentity(ctx context.Context, c *xrpc.Client, identifier string) (*IdentityDefs_AtprotoIdentity, error) { 17 17 var out IdentityDefs_AtprotoIdentity 18 18 19 19 params := map[string]interface{}{ 20 - "handle": handle, 20 + "identifier": identifier, 21 21 } 22 22 if err := c.Do(ctx, xrpc.Query, "", "com.atproto.identity.resolveIdentity", params, nil, &out); err != nil { 23 23 return nil, err