/** * Supabase Node - Version 1 * Discriminator: resource=row, operation=get */ interface Credentials { supabaseApi: CredentialReference; } /** Get a row */ export type SupabaseV1RowGetParams = { resource: 'row'; operation: 'get'; /** * Whether to use a database schema different from the default "public" schema (requires schema exposure in the <a href="https://supabase.com/docs/guides/api/using-custom-schemas?queryGroups=language&language=curl#exposing-custom-schemas">Supabase API</a>) * @default false */ useCustomSchema?: boolean; /** * Name of database schema to use for table * @displayOptions.show { useCustomSchema: [true] } * @default public */ schema?: string | Expression | PlaceholderValue; /** * Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a> */ tableId?: string | Expression; /** * Select Conditions * @default {} */ filters?: { /** Conditions */ conditions?: Array<{ /** Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a> */ keyName?: string | Expression; /** Value */ keyValue?: string | Expression | PlaceholderValue; }>; }; }; export type SupabaseV1RowGetOutput = { created_at?: string; }; export type SupabaseV1RowGetNode = { type: 'n8n-nodes-base.supabase'; version: 1; credentials?: Credentials; config: NodeConfig; output?: Items; };