/** * Taiga Node - Version 1 * Discriminator: resource=userStory, operation=get */ interface Credentials { taigaApi: CredentialReference; } /** Get an epic */ export type TaigaV1UserStoryGetParams = { resource: 'userStory'; operation: 'get'; /** * ID of the user story to retrieve */ userStoryId?: string | Expression | PlaceholderValue; }; export type TaigaV1UserStoryGetNode = { type: 'n8n-nodes-base.taiga'; version: 1; credentials?: Credentials; config: NodeConfig; };