/** * Monica CRM Node - Version 1 * Discriminator: resource=conversation, operation=update */ interface Credentials { monicaCrmApi: CredentialReference; } /** Update an activity */ export type MonicaCrmV1ConversationUpdateParams = { resource: 'conversation'; operation: 'update'; /** * ID of the conversation to update */ conversationId?: string | Expression | PlaceholderValue; /** * Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a> */ contactFieldTypeId?: string | Expression; /** * Date when the conversation happened */ happenedAt?: string | Expression; }; export type MonicaCrmV1ConversationUpdateNode = { type: 'n8n-nodes-base.monicaCrm'; version: 1; credentials?: Credentials; config: NodeConfig; };