···17171818export interface ProfileView {
1919 $type?: 'social.grain.actor.defs#profileView'
2020+ cid: string
2021 did: string
2122 handle: string
2223 displayName?: string
···38393940export interface ProfileViewDetailed {
4041 $type?: 'social.grain.actor.defs#profileViewDetailed'
4242+ cid: string
4143 did: string
4244 handle: string
4345 displayName?: string
4446 description?: string
4547 avatar?: string
4848+ /** List of camera make and models used by this actor derived from EXIF data of photos linked to galleries. */
4949+ cameras?: string[]
4650 followersCount?: number
4751 followsCount?: number
4852 galleryCount?: number
+3
__generated__/types/social/grain/gallery/defs.ts
···2424 cid: string
2525 title?: string
2626 description?: string
2727+ /** List of camera make and models used in this gallery derived from EXIF data. */
2828+ cameras?: string[]
2729 /** Annotations of description text (mentions, URLs, hashtags, etc) */
2830 facets?: AppBskyRichtextFacet.Main[]
2931 creator: SocialGrainActorDefs.ProfileView
···3234 favCount?: number
3335 commentCount?: number
3436 labels?: ComAtprotoLabelDefs.Label[]
3737+ createdAt?: string
3538 indexedAt: string
3639 viewer?: ViewerState
3740}