Interface LinearNodeParameters

Source
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 additionalFields?:
    | { parentId?: string }
    | {
        assigneeId?: string;
        description?: string;
        priorityId?: 0 | 1 | 3 | 2 | 4;
        stateId?: string;
    }

Default: {}

Source§

readonly authentication?: "oAuth2" | "apiToken"

Default: "apiToken"

Source§

readonly comment?: string

Source§

readonly issueId?: string

Source§

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"

Default: "addComment"

Source§

readonly resource?: "comment" | "issue"

Default: "issue"

Source§

readonly returnAll?: boolean

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

Source§

readonly teamId?: string

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

Source§

readonly title?: string

Source§

readonly 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;
    }

Default: {}