/** * Twake Node - Version 1 * Discriminator: resource=message, operation=send */ interface Credentials { twakeCloudApi: CredentialReference; } /** Send data to the message app */ export type TwakeV1MessageSendParams = { resource: 'message'; operation: 'send'; /** * Channel's ID. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>. */ channelId?: string | Expression; /** * Message content */ content?: string | Expression | PlaceholderValue; /** * Additional Fields * @default {} */ additionalFields?: { /** URL of the image/icon */ senderIcon?: string | Expression | PlaceholderValue; /** Sender Name */ senderName?: string | Expression | PlaceholderValue; }; }; export type TwakeV1MessageSendNode = { type: 'n8n-nodes-base.twake'; version: 1; credentials?: Credentials; config: NodeConfig; };