···240240 public let handle: String
241241 public let displayName: String?
242242 public let avatar: String?
243243+ public let description: String?
244244+ public let indexedAt: Date?
245245+ public let viewer: Viewer?
246246+ public let labels: [AuthorLabels]?
243247}
244248245249public struct FollowProfile: Codable, Sendable, Identifiable {
···278282 public let handle: String
279283 public let displayName: String?
280284 public let avatar: String?
285285+ public let description: String?
286286+ public let indexedAt: Date?
281287 public let viewer: Viewer?
288288+ public let labels: [AuthorLabels]?
282289283290 public var id: String { did }
284291}
···297304 public let handle: String
298305 public let displayName: String?
299306 public let avatar: String?
307307+ public let description: String?
308308+ public let indexedAt: Date?
300309 public let viewer: Viewer?
310310+ public let labels: [AuthorLabels]?
301311302312 public var id: String { did }
303313}
···308318```swift
309319public struct Viewer: Codable, Sendable {
310320 public let muted: Bool?
311311- public let mutedByList: String?
312321 public let blockedBy: Bool?
313313- public let blocking: String?
314322 public let following: String?
315323 public let followedBy: String?
324324+ public let blocking: String?
325325+ public let mutedByList: String?
326326+ public let blockingByList: String?
316327}
317328```
318329