/** * Monica CRM Node - Version 1 * Discriminator: resource=contact, operation=create */ interface Credentials { monicaCrmApi: CredentialReference; } /** Create an activity */ export type MonicaCrmV1ContactCreateParams = { resource: 'contact'; operation: 'create'; /** * First Name */ firstName?: string | Expression | PlaceholderValue; /** * Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a> */ genderId?: string | Expression; /** * Additional Fields * @default {} */ additionalFields?: { /** Birthdate */ birthdate?: string | Expression; /** Deceased Date */ deceasedDate?: string | Expression; /** Whether the contact has passed away * @default false */ isDeceased?: boolean | Expression; /** Last Name */ last_name?: string | Expression | PlaceholderValue; /** Nickname */ nickname?: string | Expression | PlaceholderValue; /** Type * @default false */ is_partial?: false | true | Expression; }; }; export type MonicaCrmV1ContactCreateNode = { type: 'n8n-nodes-base.monicaCrm'; version: 1; credentials?: Credentials; config: NodeConfig; };