/** * Monica CRM Node - Version 1 * Discriminator: resource=reminder, operation=create */ interface Credentials { monicaCrmApi: CredentialReference; } /** Create an activity */ export type MonicaCrmV1ReminderCreateParams = { resource: 'reminder'; operation: 'create'; /** * ID of the contact to associate the reminder with */ contactId?: string | Expression | PlaceholderValue; /** * Type of frequency of the reminder * @default one_time */ frequencyType?: 'one_time' | 'week' | 'month' | 'year' | Expression; /** * Interval for the reminder * @displayOptions.show { frequencyType: ["week", "month", "year"] } * @default 0 */ frequencyNumber?: number | Expression; /** * Date of the reminder */ initialDate?: string | Expression; /** * Title of the reminder - max 100,000 characters */ title?: string | Expression | PlaceholderValue; /** * Additional Fields * @default {} */ additionalFields?: { /** Description about the reminder - Max 100,000 characters */ description?: string | Expression | PlaceholderValue; }; }; export type MonicaCrmV1ReminderCreateNode = { type: 'n8n-nodes-base.monicaCrm'; version: 1; credentials?: Credentials; config: NodeConfig; };