/** * Linear Node - Version 1.1 * Discriminator: resource=issue, operation=get */ interface Credentials { linearApi: CredentialReference; linearOAuth2Api: CredentialReference; } /** Get an issue */ export type LinearV11IssueGetParams = { resource: 'issue'; operation: 'get'; authentication?: 'apiToken' | 'oAuth2' | Expression; /** * Issue ID */ issueId?: string | Expression | PlaceholderValue; }; export type LinearV11IssueGetOutput = { createdAt?: string; creator?: { displayName?: string; id?: string; }; id?: string; identifier?: string; priority?: number; state?: { id?: string; name?: string; }; title?: string; }; export type LinearV11IssueGetNode = { type: 'n8n-nodes-base.linear'; version: 1.1; credentials?: Credentials; config: NodeConfig; output?: Items; };