/** * SeaTable Node - Version 2 * Discriminator: resource=base, operation=snapshot */ interface Credentials { seaTableApi: CredentialReference; } /** Create a snapshot of the base */ export type SeaTableV2BaseSnapshotParams = { resource: 'base'; operation: 'snapshot'; }; export type SeaTableV2BaseSnapshotNode = { type: 'n8n-nodes-base.seaTable'; version: 2; credentials?: Credentials; config: NodeConfig; };