an app.bsky.* indexer

add ID primary keys where missing

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