| 11 | type AuthUserRecord = Database['auth']['Tables']['users']['Row']; |
| 12 | |
| 13 | interface UserPayload { |
| 14 | type: 'INSERT'; |
| 15 | table: string; |
| 16 | record: AuthUserRecord; |
| 17 | schema: 'auth'; |
| 18 | old_record: AuthUserRecord | null; |
| 19 | } |
| 20 | |
| 21 | Deno.serve(async (req) => { |
| 22 | try { |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…