jira.js
    Preparing search index...

    Function getProjectVersionsPaginated

    • Returns all versions for the specified project. Results are paginated. Results can be ordered by the following fields: sequence, name, startDate, releaseDate.

      Parameters

      • client: Client
      • parameters: {
            expand?: string;
            maxResults?: number;
            orderBy?: string;
            projectIdOrKey: string;
            startAt?: number;
        }
        • Optionalexpand?: string

          Parameters to expand

        • OptionalmaxResults?: number

          How many results on the page should be included. Defaults to 50

        • OptionalorderBy?: string

          Ordering of the results

        • projectIdOrKey: string

          Project id or project key

        • OptionalstartAt?: number

          The page offset, if not specified then defaults to 0

      • Optionaloptions: RequestOptions

      Returns Promise<
          {
              isLast?: boolean;
              maxResults?: number;
              nextPage?: string;
              self?: string;
              startAt?: number;
              total?: number;
              values?: Record<string, any>[];
              [key: string]: unknown;
          },
      >