tangled
alpha
login
or
join now
leaflet.pub
/
leaflet
289
fork
atom
a tool for shared writing and social publishing
289
fork
atom
overview
issues
27
pulls
pipelines
add db types for recommends_on_documents
awarm.space
1 month ago
fcfee9d6
7c6ed622
+45
1 changed file
expand all
collapse all
unified
split
supabase
database.types.ts
+45
supabase/database.types.ts
···
1075
1075
},
1076
1076
]
1077
1077
}
1078
1078
+
recommends_on_documents: {
1079
1079
+
Row: {
1080
1080
+
document: string
1081
1081
+
indexed_at: string
1082
1082
+
recommender_did: string
1083
1083
+
record: Json
1084
1084
+
uri: string
1085
1085
+
}
1086
1086
+
Insert: {
1087
1087
+
document: string
1088
1088
+
indexed_at?: string
1089
1089
+
recommender_did: string
1090
1090
+
record: Json
1091
1091
+
uri: string
1092
1092
+
}
1093
1093
+
Update: {
1094
1094
+
document?: string
1095
1095
+
indexed_at?: string
1096
1096
+
recommender_did?: string
1097
1097
+
record?: Json
1098
1098
+
uri?: string
1099
1099
+
}
1100
1100
+
Relationships: [
1101
1101
+
{
1102
1102
+
foreignKeyName: "recommends_on_documents_document_fkey"
1103
1103
+
columns: ["document"]
1104
1104
+
isOneToOne: false
1105
1105
+
referencedRelation: "documents"
1106
1106
+
referencedColumns: ["uri"]
1107
1107
+
},
1108
1108
+
{
1109
1109
+
foreignKeyName: "recommends_on_documents_recommender_did_fkey"
1110
1110
+
columns: ["recommender_did"]
1111
1111
+
isOneToOne: false
1112
1112
+
referencedRelation: "identities"
1113
1113
+
referencedColumns: ["atp_did"]
1114
1114
+
},
1115
1115
+
]
1116
1116
+
}
1078
1117
replicache_clients: {
1079
1118
Row: {
1080
1119
client_group: string
···
1303
1342
Returns: {
1304
1343
like: unknown
1305
1344
}[]
1345
1345
+
}
1346
1346
+
parse_iso_timestamp: {
1347
1347
+
Args: {
1348
1348
+
"": string
1349
1349
+
}
1350
1350
+
Returns: string
1306
1351
}
1307
1352
pull_data: {
1308
1353
Args: {