/** * Jira Software Node - Version 1 * Discriminator: resource=user, operation=create */ interface Credentials { jiraSoftwareCloudApi: CredentialReference; jiraSoftwareServerApi: CredentialReference; jiraSoftwareServerPatApi: CredentialReference; } /** Get, create and delete a user */ export type JiraV1UserCreateParams = { resource: 'user'; operation: 'create'; jiraVersion?: 'cloud' | 'server' | 'serverPat' | Expression; /** * Username */ username?: string | Expression | PlaceholderValue; /** * Email Address */ emailAddress?: string | Expression | PlaceholderValue; /** * Display Name */ displayName?: string | Expression | PlaceholderValue; /** * Additional Fields * @default {} */ additionalFields?: { /** Password for the user. If a password is not set, a random password is generated. */ password?: string | Expression | PlaceholderValue; /** Whether to send the user an email confirmation that they have been added to Jira * @default false */ notification?: boolean | Expression; }; }; export type JiraV1UserCreateNode = { type: 'n8n-nodes-base.jira'; version: 1; credentials?: Credentials; config: NodeConfig; };