RealtimePostgresInsertPayload
import type { RealtimePostgresInsertPayload } from "https://esm.sh/@supabase/supabase-js@2.89.0/dist/index.d.mts";type RealtimePostgresInsertPayload<T extends {}> = RealtimePostgresChangesPayloadBase & {
[key: string]: any;
eventType: `${REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.INSERT}`;
new: T;
old: {};
};