an app.bsky.* indexer

add ID primary keys where missing

+1
models/actor_declaration.go
··· 26 } 27 28 return &ActorDeclaration{ 29 AllowIncoming: out.AllowIncoming, 30 } 31 }
··· 26 } 27 28 return &ActorDeclaration{ 29 + ID: string(uri), 30 AllowIncoming: out.AllowIncoming, 31 } 32 }
+1
models/actor_status.go
··· 35 } 36 37 status := ActorStatus{ 38 CreatedAt: out.CreatedAt, 39 DurationMinutes: out.DurationMinutes, 40 Status: out.Status,
··· 35 } 36 37 status := ActorStatus{ 38 + ID: string(uri), 39 CreatedAt: out.CreatedAt, 40 DurationMinutes: out.DurationMinutes, 41 Status: out.Status,
+1
models/feed_generator.go
··· 39 } 40 41 feedgen := FeedGenerator{ 42 AcceptsInteractions: out.AcceptsInteractions, 43 ContentMode: out.ContentMode, 44 CreatedAt: out.CreatedAt,
··· 39 } 40 41 feedgen := FeedGenerator{ 42 + ID: string(uri), 43 AcceptsInteractions: out.AcceptsInteractions, 44 ContentMode: out.ContentMode, 45 CreatedAt: out.CreatedAt,
+1
models/graph_block.go
··· 27 } 28 29 return &GraphBlock{ 30 CreatedAt: out.CreatedAt, 31 Subject: out.Subject, 32 }
··· 27 } 28 29 return &GraphBlock{ 30 + ID: string(uri), 31 CreatedAt: out.CreatedAt, 32 Subject: out.Subject, 33 }
+1
models/graph_follow.go
··· 27 } 28 29 return &GraphFollow{ 30 CreatedAt: out.CreatedAt, 31 Subject: out.Subject, 32 }
··· 27 } 28 29 return &GraphFollow{ 30 + ID: string(uri), 31 CreatedAt: out.CreatedAt, 32 Subject: out.Subject, 33 }
+1
models/graph_list.go
··· 37 } 38 39 list := GraphList{ 40 CreatedAt: out.CreatedAt, 41 Description: out.Description, 42 Name: out.Name,
··· 37 } 38 39 list := GraphList{ 40 + ID: string(uri), 41 CreatedAt: out.CreatedAt, 42 Description: out.Description, 43 Name: out.Name,
+1
models/graph_listblock.go
··· 27 } 28 29 return &GraphListblock{ 30 CreatedAt: out.CreatedAt, 31 Subject: out.Subject, 32 }
··· 27 } 28 29 return &GraphListblock{ 30 + ID: string(uri), 31 CreatedAt: out.CreatedAt, 32 Subject: out.Subject, 33 }
+1
models/graph_listitem.go
··· 28 } 29 30 return &GraphListitem{ 31 CreatedAt: out.CreatedAt, 32 List: out.List, 33 Subject: out.Subject,
··· 28 } 29 30 return &GraphListitem{ 31 + ID: string(uri), 32 CreatedAt: out.CreatedAt, 33 List: out.List, 34 Subject: out.Subject,
+1
models/graph_starterpack.go
··· 37 } 38 39 pack := GraphStarterpack{ 40 CreatedAt: out.CreatedAt, 41 Description: out.Description, 42 List: out.List,
··· 37 } 38 39 pack := GraphStarterpack{ 40 + ID: string(uri), 41 CreatedAt: out.CreatedAt, 42 Description: out.Description, 43 List: out.List,
+1
models/graph_verification.go
··· 29 } 30 31 verification := GraphVerification{ 32 CreatedAt: out.CreatedAt, 33 DisplayName: out.DisplayName, 34 Handle: out.Handle,
··· 29 } 30 31 verification := GraphVerification{ 32 + ID: string(uri), 33 CreatedAt: out.CreatedAt, 34 DisplayName: out.DisplayName, 35 Handle: out.Handle,
+1
models/labeler_service.go
··· 65 } 66 67 labeler := LabelerService{ 68 CreatedAt: out.CreatedAt, 69 } 70
··· 65 } 66 67 labeler := LabelerService{ 68 + ID: string(uri), 69 CreatedAt: out.CreatedAt, 70 } 71