Skip to content

Commit

Permalink
Add missing 'avatar' field in app.bsky.graph.getFollows (bluesky-soci…
Browse files Browse the repository at this point in the history
  • Loading branch information
pfrazee authored Jan 26, 2023
1 parent 73de6d8 commit 49d31f0
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 0 deletions.
1 change: 1 addition & 0 deletions lexicons/app/bsky/graph/getFollows.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@
"type": "string",
"maxLength": 64
},
"avatar": {"type": "string"},
"createdAt": {"type": "datetime"},
"indexedAt": {"type": "datetime"}
}
Expand Down
3 changes: 3 additions & 0 deletions packages/api/src/client/lexicons.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3611,6 +3611,9 @@ export const schemaDict = {
type: 'string',
maxLength: 64,
},
avatar: {
type: 'string',
},
createdAt: {
type: 'datetime',
},
Expand Down
1 change: 1 addition & 0 deletions packages/api/src/client/types/app/bsky/graph/getFollows.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ export interface Follow {
declaration: AppBskySystemDeclRef.Main
handle: string
displayName?: string
avatar?: string
createdAt?: string
indexedAt: string
[k: string]: unknown
Expand Down
3 changes: 3 additions & 0 deletions packages/pds/src/lexicon/lexicons.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3611,6 +3611,9 @@ export const schemaDict = {
type: 'string',
maxLength: 64,
},
avatar: {
type: 'string',
},
createdAt: {
type: 'datetime',
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ export interface Follow {
declaration: AppBskySystemDeclRef.Main
handle: string
displayName?: string
avatar?: string
createdAt?: string
indexedAt: string
[k: string]: unknown
Expand Down

0 comments on commit 49d31f0

Please sign in to comment.