/** * Jira Software Node - Version 1 * Discriminator: resource=issue, operation=delete */ interface Credentials { jiraSoftwareCloudApi: CredentialReference; jiraSoftwareServerApi: CredentialReference; jiraSoftwareServerPatApi: CredentialReference; } /** Creates an issue or, where the option to create subtasks is enabled in Jira, a subtask */ export type JiraV1IssueDeleteParams = { resource: 'issue'; operation: 'delete'; jiraVersion?: 'cloud' | 'server' | 'serverPat' | Expression; /** * Issue Key */ issueKey?: string | Expression | PlaceholderValue; /** * Delete Subtasks * @default false */ deleteSubtasks?: boolean | Expression; }; export type JiraV1IssueDeleteOutput = { success?: boolean; }; export type JiraV1IssueDeleteNode = { type: 'n8n-nodes-base.jira'; version: 1; credentials?: Credentials; config: NodeConfig; output?: Items; };