/** * Quick Base Node - Version 1 * Discriminator: resource=file, operation=delete */ interface Credentials { quickbaseApi: CredentialReference; } /** Delete a file */ export type QuickbaseV1FileDeleteParams = { resource: 'file'; operation: 'delete'; /** * The table identifier */ tableId?: string | Expression | PlaceholderValue; /** * The unique identifier of the record */ recordId?: string | Expression | PlaceholderValue; /** * The unique identifier of the field */ fieldId?: string | Expression | PlaceholderValue; /** * The file attachment version number * @default 1 */ versionNumber?: number | Expression; }; export type QuickbaseV1FileDeleteNode = { type: 'n8n-nodes-base.quickbase'; version: 1; credentials?: Credentials; config: NodeConfig; };