@@ -211,7 +211,7 @@ extension AppBskyLexicon.Actor {
211
211
public let associated : ProfileAssociatedDefinition ?
212
212
213
213
/// The starter pack the user account used to join Bluesky. Optional.
214
- public let joinedViaStarterPack : AppBskyLexicon . Graph . StarterpackRecord ?
214
+ public let joinedViaStarterPack : AppBskyLexicon . Graph . StarterPackViewBasicDefinition ?
215
215
216
216
/// The date the profile was last indexed. Optional.
217
217
public let indexedAt : Date ?
@@ -231,7 +231,7 @@ extension AppBskyLexicon.Actor {
231
231
232
232
public init ( actorDID: String , actorHandle: String , displayName: String ? = nil , description: String ? = nil , avatarImageURL: URL ? = nil ,
233
233
bannerImageURL: URL ? = nil , followerCount: Int ? = nil , followCount: Int ? = nil , postCount: Int ? = nil ,
234
- associated: ProfileAssociatedDefinition ? , joinedViaStarterPack: AppBskyLexicon . Graph . StarterpackRecord ? , indexedAt: Date ? ,
234
+ associated: ProfileAssociatedDefinition ? , joinedViaStarterPack: AppBskyLexicon . Graph . StarterPackViewBasicDefinition ? , indexedAt: Date ? ,
235
235
createdAt: Date ? , viewer: ViewerStateDefinition ? = nil , labels: [ ComAtprotoLexicon . Label . LabelDefinition ] ? = nil ,
236
236
pinnedPost: ComAtprotoLexicon . Repository . StrongReference ? ) {
237
237
self . actorDID = actorDID
@@ -264,7 +264,7 @@ extension AppBskyLexicon.Actor {
264
264
self . followerCount = try container. decodeIfPresent ( Int . self, forKey: . followerCount)
265
265
self . followCount = try container. decodeIfPresent ( Int . self, forKey: . followCount)
266
266
self . postCount = try container. decodeIfPresent ( Int . self, forKey: . postCount)
267
- self . joinedViaStarterPack = try container. decodeIfPresent ( AppBskyLexicon . Graph. StarterpackRecord . self, forKey: . joinedViaStarterPack)
267
+ self . joinedViaStarterPack = try container. decodeIfPresent ( AppBskyLexicon . Graph. StarterPackViewBasicDefinition . self, forKey: . joinedViaStarterPack)
268
268
self . associated = try container. decodeIfPresent ( AppBskyLexicon . Actor. ProfileAssociatedDefinition. self, forKey: . associated)
269
269
self . indexedAt = try container. decodeDateIfPresent ( forKey: . indexedAt)
270
270
self . createdAt = try container. decodeDateIfPresent ( forKey: . createdAt)
0 commit comments