UNPKG

n8n-nodes-base

Version:

Base nodes of n8n

27 lines (23 loc) 620 B
/** * Zulip Node - Version 1 * Discriminator: resource=message, operation=updateFile */ interface Credentials { zulipApi: CredentialReference; } export type ZulipV1MessageUpdateFileParams = { resource: 'message'; operation: 'updateFile'; /** * Put Output File in Field * @hint The name of the output binary field to put the file in * @default data */ dataBinaryProperty?: string | Expression<string> | PlaceholderValue; }; export type ZulipV1MessageUpdateFileNode = { type: 'n8n-nodes-base.zulip'; version: 1; credentials?: Credentials; config: NodeConfig<ZulipV1MessageUpdateFileParams>; };