/** * Linear Node - Version 1.1 * Discriminator: resource=issue, operation=create */ interface Credentials { linearApi: CredentialReference; linearOAuth2Api: CredentialReference; } /** Create an issue */ export type LinearV11IssueCreateParams = { resource: 'issue'; operation: 'create'; authentication?: 'apiToken' | 'oAuth2' | Expression; /** * Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a> */ teamId?: string | Expression; /** * Title */ title?: string | Expression | PlaceholderValue; /** * Additional Fields * @default {} */ additionalFields?: { /** Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a> */ assigneeId?: string | Expression; /** Description */ description?: string | Expression | PlaceholderValue; /** Priority * @default 0 */ priorityId?: 1 | 2 | 3 | 4 | 0 | Expression; /** Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a> */ stateId?: string | Expression; }; }; export type LinearV11IssueCreateOutput = { archivedAt?: null; createdAt?: string; creator?: { displayName?: string; id?: string; }; dueDate?: null; id?: string; identifier?: string; priority?: number; state?: { id?: string; name?: string; }; title?: string; }; export type LinearV11IssueCreateNode = { type: 'n8n-nodes-base.linear'; version: 1.1; credentials?: Credentials; config: NodeConfig; output?: Items; };