a tool for shared writing and social publishing

add db types for recommends_on_documents

+45
+45
supabase/database.types.ts
··· 1075 1075 }, 1076 1076 ] 1077 1077 } 1078 + recommends_on_documents: { 1079 + Row: { 1080 + document: string 1081 + indexed_at: string 1082 + recommender_did: string 1083 + record: Json 1084 + uri: string 1085 + } 1086 + Insert: { 1087 + document: string 1088 + indexed_at?: string 1089 + recommender_did: string 1090 + record: Json 1091 + uri: string 1092 + } 1093 + Update: { 1094 + document?: string 1095 + indexed_at?: string 1096 + recommender_did?: string 1097 + record?: Json 1098 + uri?: string 1099 + } 1100 + Relationships: [ 1101 + { 1102 + foreignKeyName: "recommends_on_documents_document_fkey" 1103 + columns: ["document"] 1104 + isOneToOne: false 1105 + referencedRelation: "documents" 1106 + referencedColumns: ["uri"] 1107 + }, 1108 + { 1109 + foreignKeyName: "recommends_on_documents_recommender_did_fkey" 1110 + columns: ["recommender_did"] 1111 + isOneToOne: false 1112 + referencedRelation: "identities" 1113 + referencedColumns: ["atp_did"] 1114 + }, 1115 + ] 1116 + } 1078 1117 replicache_clients: { 1079 1118 Row: { 1080 1119 client_group: string ··· 1303 1342 Returns: { 1304 1343 like: unknown 1305 1344 }[] 1345 + } 1346 + parse_iso_timestamp: { 1347 + Args: { 1348 + "": string 1349 + } 1350 + Returns: string 1306 1351 } 1307 1352 pull_data: { 1308 1353 Args: {