UNPKG

n8n-nodes-base

Version:

Base nodes of n8n

26 lines (22 loc) 537 B
/** * 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<string> | PlaceholderValue; }; export type TwistV1ChannelDeleteNode = { type: 'n8n-nodes-base.twist'; version: 1; credentials?: Credentials; config: NodeConfig<TwistV1ChannelDeleteParams>; };