interface LinearNodeParameters {
additionalFields?:
| { parentId?: string }
| {
assigneeId?: string;
description?: string;
priorityId?: 0 | 1 | 3 | 2 | 4;
stateId?: string;
};
authentication?: "oAuth2"
| "apiToken";
comment?: string;
issueId?: string;
limit?: number;
link?: string;
operation?:
| "create"
| "get"
| "getAll"
| "update"
| "delete"
| "addComment"
| "addLink";
resource?: "comment"
| "issue";
returnAll?: boolean;
teamId?: string;
title?: string;
updateFields?:
| {
assigneeId?: string;
description?: string;
priorityId?: 0
| 1
| 3
| 2;
stateId?: string;
teamId?: string;
title?: string;
}
| {
assigneeId?: string;
description?: string;
priorityId?: 0
| 1
| 3
| 2
| 4;
stateId?: string;
teamId?: string;
title?: string;
};
}
Properties§
§
§
§
§
§
§
§
§
readonly additional Fields?:
| { parentId?: string }
| {
assigneeId?: string;
description?: string;
priorityId?: 0 | 1 | 3 | 2 | 4;
stateId?: string;
}
readonly authentication?: "oAuth2" | "apiToken"
Default: "apiToken"
readonly comment?: string
§readonly issue Id?: string
§readonly limit?: number
Max number of results to return Default: 50 Type options: {"minValue":1}
readonly link?: string
§readonly operation?:
| "create"
| "get"
| "getAll"
| "update"
| "delete"
| "addComment"
| "addLink"
Default: "addComment"
readonly resource?: "comment" | "issue"
Default: "issue"
readonly return All?: boolean
Whether to return all results or only up to a given limit
readonly team Id?: string
Choose from the list, or specify an ID using an expression Type options: {"loadOptionsMethod":"getTeams"}
readonly title?: string
§readonly update Fields?:
| {
assigneeId?: string;
description?: string;
priorityId?: 0
| 1
| 3
| 2;
stateId?: string;
teamId?: string;
title?: string;
}
| {
assigneeId?: string;
description?: string;
priorityId?: 0
| 1
| 3
| 2
| 4;
stateId?: string;
teamId?: string;
title?: string;
}
Default: {}
Default: {}