/** * Monica CRM Node - Version 1 * Discriminator: resource=activity, operation=create */ interface Credentials { monicaCrmApi: CredentialReference; } /** Create an activity */ export type MonicaCrmV1ActivityCreateParams = { resource: 'activity'; operation: 'create'; /** * Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a> */ activityTypeId?: string | Expression; /** * Comma-separated list of IDs of the contacts to associate the activity with */ contacts?: string | Expression | PlaceholderValue; /** * Date when the activity happened */ happenedAt?: string | Expression; /** * Brief description of the activity - max 255 characters */ summary?: string | Expression | PlaceholderValue; /** * Additional Fields * @default {} */ additionalFields?: { /** Description of the activity - max 100,000 characters */ description?: string | Expression | PlaceholderValue; }; }; export type MonicaCrmV1ActivityCreateNode = { type: 'n8n-nodes-base.monicaCrm'; version: 1; credentials?: Credentials; config: NodeConfig; };