Skip to main content
The Deno 2 Release Candidate is here
Learn more
Module

x/jira/src/version3/parameters/search.ts>Search

A JavaScript/TypeScript wrapper for the JIRA Cloud, Service Desk and Agile REST API
Latest
interface Search
import { type Search } from "https://deno.land/x/jira@v3.0.2/src/version3/parameters/search.ts";

Properties

optional
expand:
| "usages"
| "workflowUsages"
| ("usages" | "workflowUsages")[]
| string
| string[]

Use expand to include additional information in the response. This parameter accepts a comma-separated list. Expand options include:

  • usages Returns the project and issue types that use the status in their workflow.
  • workflowUsages Returns the workflows that use the status.
optional
projectId: string

The project the status is part of or null for global statuses.

optional
startAt: number

The index of the first item to return in a page of results (page offset).

optional
maxResults: number

The maximum number of items to return per page.

optional
searchString: string

Term to match status names against or null to search for all statuses in the search scope.

optional
statusCategory:
| "TODO"
| "IN_PROGRESS"
| "DONE"
| string

Category of the status to filter by. The supported values are: TODO, IN_PROGRESS, and DONE.