/** * SeaTable Node - Version 2 * Discriminator: resource=row, operation=lock */ interface Credentials { seaTableApi: CredentialReference; } /** Lock a row to prevent further changes */ export type SeaTableV2RowLockParams = { resource: 'row'; operation: 'lock'; /** * Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a> */ tableName?: string | Expression; /** * Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a> * @displayOptions.hide { operation: ["create", "list", "search"] } */ rowId?: string | Expression; }; export type SeaTableV2RowLockNode = { type: 'n8n-nodes-base.seaTable'; version: 2; credentials?: Credentials; config: NodeConfig; };