/** * Linear Node - Version 1 * Discriminator: resource=issue, operation=update */ interface Credentials { linearApi: CredentialReference; linearOAuth2Api: CredentialReference; } /** Update an issue */ export type LinearV1IssueUpdateParams = { resource: 'issue'; operation: 'update'; authentication?: 'apiToken' | 'oAuth2' | Expression; /** * Issue ID */ issueId?: string | Expression | PlaceholderValue; /** * Update Fields * @default {} */ updateFields?: { /** 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 Name/ID * @default 0 */ priorityId?: 1 | 2 | 3 | 3 | 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; /** 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; }; }; export type LinearV1IssueUpdateOutput = { createdAt?: string; creator?: { displayName?: string; id?: string; }; id?: string; identifier?: string; priority?: number; state?: { id?: string; name?: string; }; title?: string; }; export type LinearV1IssueUpdateNode = { type: 'n8n-nodes-base.linear'; version: 1; credentials?: Credentials; config: NodeConfig; output?: Items; };