/** * Monica CRM Node - Version 1 * Discriminator: resource=activity, operation=update */ interface Credentials { monicaCrmApi: CredentialReference; } /** Update an activity */ export type MonicaCrmV1ActivityUpdateParams = { resource: 'activity'; operation: 'update'; /** * ID of the activity to update */ activityId?: string | Expression | PlaceholderValue; /** * Update Fields * @default {} */ updateFields?: { /** Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a> */ activity_type_id?: string | Expression; /** IDs of the contacts to associate the activity with */ contacts?: string | Expression | PlaceholderValue; /** Description to add more details on the activity - max 100,000 characters */ description?: string | Expression | PlaceholderValue; /** Date when the activity happened */ happened_at?: string | Expression; /** Brief description of the activity - max 255 characters */ summary?: string | Expression | PlaceholderValue; }; }; export type MonicaCrmV1ActivityUpdateNode = { type: 'n8n-nodes-base.monicaCrm'; version: 1; credentials?: Credentials; config: NodeConfig; };