Interface KitemakerNodeParameters

Source
interface KitemakerNodeParameters {
    additionalFields?: {
        description?: string;
        effort?: "SMALL" | "MEDIUM" | "LARGE";
        impact?: "SMALL" | "MEDIUM" | "LARGE";
        labelIds?: unknown[];
        memberIds?: unknown[];
    };
    limit?: number;
    operation?: "create"
    | "get"
    | "getAll"
    | "update";
    resource?:
        | "organization"
        | "user"
        | "space"
        | "workItem";
    returnAll?: boolean;
    spaceId?: string;
    statusId?: string;
    title?: string;
    updateFields?: {
        description?: string;
        effort?: "SMALL"
        | "MEDIUM"
        | "LARGE";
        impact?: "SMALL" | "MEDIUM" | "LARGE";
        statusId?: string;
        title?: string;
    };
    workItemId?: string;
}

Properties§

Source§

readonly additionalFields?: {
    description?: string;
    effort?: "SMALL" | "MEDIUM" | "LARGE";
    impact?: "SMALL" | "MEDIUM" | "LARGE";
    labelIds?: unknown[];
    memberIds?: unknown[];
}

Default: {}

Source§

readonly limit?: number

Max number of results to return Default: 5 Type options: {"minValue":1,"maxValue":1000}

Source§

readonly operation?: "create" | "get" | "getAll" | "update"

Default: "get"

Source§

readonly resource?: "organization" | "user" | "space" | "workItem"

Default: "workItem"

Source§

readonly returnAll?: boolean

Whether to return all results or only up to a given limit

Source§

readonly spaceId?: string

ID of the space to retrieve the work items from. Choose from the list, or specify an ID using an expression. Default: [] Type options: {"loadOptionsMethod":"getSpaces"}

Source§

readonly statusId?: string

ID of the status to set on the item to create. Choose from the list, or specify an ID using an expression. Default: [] Type options: {"loadOptionsDependsOn":["spaceId"],"loadOptionsMethod":"getStatuses"}

Source§

readonly title?: string

Title of the work item to create

Source§

readonly updateFields?: {
    description?: string;
    effort?: "SMALL" | "MEDIUM" | "LARGE";
    impact?: "SMALL" | "MEDIUM" | "LARGE";
    statusId?: string;
    title?: string;
}

Default: {}

Source§

readonly workItemId?: string

ID of the work item to retrieve