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 additional Fields?: {
description?: string;
effort?: "SMALL" | "MEDIUM" | "LARGE";
impact?: "SMALL" | "MEDIUM" | "LARGE";
labelIds?: unknown[];
memberIds?: unknown[];
}
readonly additional Fields?: {
description?: string;
effort?: "SMALL" | "MEDIUM" | "LARGE";
impact?: "SMALL" | "MEDIUM" | "LARGE";
labelIds?: unknown[];
memberIds?: unknown[];
}
Source§readonly limit?: number
readonly limit?: number
Max number of results to return Default: 5 Type options: {"minValue":1,"maxValue":1000}
Source§readonly space Id?: string
readonly space Id?: 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 status Id?: string
readonly status Id?: 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"}
Default: {}