/** * Monica CRM Node - Version 1 * Discriminator: resource=conversation, operation=create */ interface Credentials { monicaCrmApi: CredentialReference; } /** Create an activity */ export type MonicaCrmV1ConversationCreateParams = { resource: 'conversation'; operation: 'create'; /** * ID of the contact to associate the conversation with */ contactId?: 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 MonicaCrmV1ConversationCreateNode = { type: 'n8n-nodes-base.monicaCrm'; version: 1; credentials?: Credentials; config: NodeConfig; };