/** * Twist Node - Version 1 * Discriminator: resource=channel, operation=delete */ interface Credentials { twistOAuth2Api: CredentialReference; } /** Delete a channel */ export type TwistV1ChannelDeleteParams = { resource: 'channel'; operation: 'delete'; /** * The ID of the channel */ channelId?: string | Expression | PlaceholderValue; }; export type TwistV1ChannelDeleteNode = { type: 'n8n-nodes-base.twist'; version: 1; credentials?: Credentials; config: NodeConfig; };