Interface TaigaTriggerNodeParameters

Source
interface TaigaTriggerNodeParameters {
    operations?: (
        "create"
        | "delete"
        | "all"
        | "change"
    )[];
    projectId?: string;
    resources?: (
        | "all"
        | "task"
        | "issue"
        | "milestone"
        | "userstory"
        | "wikipage"
    )[];
}

Properties§

Source§

readonly operations?: ("create" | "delete" | "all" | "change")[]

Operations to listen to Default: ["all"]

Source§

readonly projectId?: string

Choose from the list, or specify an ID using an expression Type options: {"loadOptionsMethod":"getUserProjects"}

Source§

readonly resources?: (
    | "all"
    | "task"
    | "issue"
    | "milestone"
    | "userstory"
    | "wikipage"
)[]

Resources to listen to Default: ["all"]