@@ -88,7 +88,7 @@ export const getOrCreateEntity = async <
8888 insertData,
8989 uniqueOn = undefined ,
9090} : {
91- supabase : SupabaseClient < Database , "public" , Database [ "public" ] > ;
91+ supabase : SupabaseClient < Database , "public" > ;
9292 tableName : keyof Database [ "public" ] [ "Tables" ] ;
9393 insertData : TablesInsert < TableName > ;
9494 uniqueOn ?: ( keyof TablesInsert < TableName > ) [ ] ; // Uses pKey otherwise
@@ -176,7 +176,7 @@ export const InsertValidatedBatch = async <
176176 items,
177177 uniqueOn = undefined ,
178178} : {
179- supabase : SupabaseClient < Database , "public" , Database [ "public" ] > ;
179+ supabase : SupabaseClient < Database , "public" > ;
180180 tableName : keyof Database [ "public" ] [ "Tables" ] ;
181181 items : TablesInsert < TableName > [ ] ;
182182 uniqueOn ?: ( keyof TablesInsert < TableName > ) [ ] ; // Uses pKey otherwise
@@ -220,7 +220,7 @@ export const validateAndInsertBatch = async <
220220 inputValidator = undefined ,
221221 outputValidator = undefined ,
222222} : {
223- supabase : SupabaseClient < Database , "public" , Database [ "public" ] > ;
223+ supabase : SupabaseClient < Database , "public" > ;
224224 tableName : keyof Database [ "public" ] [ "Tables" ] ;
225225 items : TablesInsert < TableName > [ ] ;
226226 uniqueOn ?: ( keyof TablesInsert < TableName > ) [ ] ; // Uses pKey otherwise
@@ -359,7 +359,7 @@ export const processAndInsertBatch = async <
359359 inputProcessor,
360360 outputProcessor,
361361} : {
362- supabase : SupabaseClient < Database , "public" , Database [ "public" ] > ;
362+ supabase : SupabaseClient < Database , "public" > ;
363363 tableName : keyof Database [ "public" ] [ "Tables" ] ;
364364 items : InputType [ ] ;
365365 uniqueOn ?: ( keyof TablesInsert < TableName > ) [ ] ; // Uses pKey otherwise
0 commit comments