n8n-nodes-base
Version:
Base nodes of n8n
25 lines (21 loc) • 502 B
text/typescript
/**
* Gotify Node - Version 1
* Discriminator: resource=message, operation=delete
*/
interface Credentials {
gotifyApi: CredentialReference;
}
export type GotifyV1MessageDeleteParams = {
resource: 'message';
operation: 'delete';
/**
* Message ID
*/
messageId?: string | Expression<string> | PlaceholderValue;
};
export type GotifyV1MessageDeleteNode = {
type: 'n8n-nodes-base.gotify';
version: 1;
credentials?: Credentials;
config: NodeConfig<GotifyV1MessageDeleteParams>;
};