n8n-nodes-base
Version:
Base nodes of n8n
26 lines (22 loc) • 498 B
text/typescript
/**
* Taiga Node - Version 1
* Discriminator: resource=task, operation=get
*/
interface Credentials {
taigaApi: CredentialReference;
}
/** Get an epic */
export type TaigaV1TaskGetParams = {
resource: 'task';
operation: 'get';
/**
* ID of the task to retrieve
*/
taskId?: string | Expression<string> | PlaceholderValue;
};
export type TaigaV1TaskGetNode = {
type: 'n8n-nodes-base.taiga';
version: 1;
credentials?: Credentials;
config: NodeConfig<TaigaV1TaskGetParams>;
};