jira.js
    Preparing search index...

    Function getPaginatedComponents

    • Returns paginated list of filtered active components

      Parameters

      • client: Client
      • Optionalparameters: { maxResults?: string; projectIds?: string; query?: string; startAt?: string }
        • OptionalmaxResults?: string

          The maximum number of components to return

        • OptionalprojectIds?: string

          The set of project ids to filter components

        • Optionalquery?: string

          The string that components names will be matched with

        • OptionalstartAt?: string

          The index of the first components to return

      • Optionaloptions: RequestOptions

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