n8n-nodes-base
Version:
Base nodes of n8n
26 lines (22 loc) • 581 B
text/typescript
/**
* Microsoft Outlook Node - Version 1
* Discriminator: resource=draft, operation=delete
*/
interface Credentials {
microsoftOutlookOAuth2Api: CredentialReference;
}
/** Delete a draft */
export type MicrosoftOutlookV1DraftDeleteParams = {
resource: 'draft';
operation: 'delete';
/**
* Message ID
*/
messageId?: string | Expression<string> | PlaceholderValue;
};
export type MicrosoftOutlookV1DraftDeleteNode = {
type: 'n8n-nodes-base.microsoftOutlook';
version: 1;
credentials?: Credentials;
config: NodeConfig<MicrosoftOutlookV1DraftDeleteParams>;
};