n8n-nodes-base
Version:
Base nodes of n8n
30 lines (26 loc) • 857 B
text/typescript
/**
* Microsoft Teams Node - Version 1.1
* Discriminator: resource=channel, operation=delete
*/
interface Credentials {
microsoftTeamsOAuth2Api: CredentialReference;
}
/** Delete a channel */
export type MicrosoftTeamsV11ChannelDeleteParams = {
resource: 'channel';
operation: 'delete';
/**
* Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>
*/
teamId?: string | Expression<string>;
/**
* Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>
*/
channelId?: string | Expression<string>;
};
export type MicrosoftTeamsV11ChannelDeleteNode = {
type: 'n8n-nodes-base.microsoftTeams';
version: 1.1;
credentials?: Credentials;
config: NodeConfig<MicrosoftTeamsV11ChannelDeleteParams>;
};