/** * Quick Base Node - Version 1 * Discriminator: resource=report, operation=run */ interface Credentials { quickbaseApi: CredentialReference; } /** Run a report */ export type QuickbaseV1ReportRunParams = { resource: 'report'; operation: 'run'; /** * The table identifier */ tableId?: string | Expression | PlaceholderValue; /** * The identifier of the report, unique to the table */ reportId?: string | Expression | PlaceholderValue; /** * Whether to return all results or only up to a given limit * @default true */ returnAll?: boolean | Expression; /** * Max number of results to return * @displayOptions.hide { returnAll: [true] } * @default 100 */ limit?: number | Expression; }; export type QuickbaseV1ReportRunNode = { type: 'n8n-nodes-base.quickbase'; version: 1; credentials?: Credentials; config: NodeConfig; };