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§
Source§readonly additional Fields?:
| { parentId?: string }
| {
assigneeId?: string;
description?: string;
priorityId?: 0 | 1 | 3 | 2 | 4;
stateId?: string;
}
readonly additional Fields?:
| { parentId?: string }
| {
assigneeId?: string;
description?: string;
priorityId?: 0 | 1 | 3 | 2 | 4;
stateId?: string;
}
Source§readonly limit?: number
readonly limit?: number
Max number of results to return Default: 50 Type options: {"minValue":1}
Source§readonly operation?:
| "create"
| "get"
| "getAll"
| "update"
| "delete"
| "addComment"
| "addLink"
readonly operation?:
| "create"
| "get"
| "getAll"
| "update"
| "delete"
| "addComment"
| "addLink"
Default: "addComment"
Source§readonly team Id?: string
readonly team Id?: string
Choose from the list, or specify an ID using an expression Type options: {"loadOptionsMethod":"getTeams"}
Source§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;
}
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: {}