/** * Copper Node - Version 1 * Discriminator: resource=task, operation=create */ interface Credentials { copperApi: CredentialReference; } export type CopperV1TaskCreateParams = { resource: 'task'; operation: 'create'; /** * Name */ name?: string | Expression | PlaceholderValue; /** * Additional Fields * @default {} */ additionalFields?: { /** ID of the user who will own the task to create */ assignee_id?: string | Expression | PlaceholderValue; /** Description of the task to create */ details?: string | Expression | PlaceholderValue; /** Priority * @default High */ priority?: 'High' | 'None' | Expression; /** Status * @default Open */ status?: 'Completed' | 'Open' | Expression; }; }; export type CopperV1TaskCreateNode = { type: 'n8n-nodes-base.copper'; version: 1; credentials?: Credentials; config: NodeConfig; };