Skip to content

Variable: GetProjectComponentsPaginatedSchema

ts
const GetProjectComponentsPaginatedSchema: ZodObject<{
  componentSource: ZodOptional<ZodCustom<"auto" | "jira" | string & object | "compass", "auto" | "jira" | string & object | "compass">>;
  maxResults: ZodOptional<ZodNumber>;
  orderBy: ZodOptional<ZodCustom<
     | "name"
     | "description"
     | string & object
     | "lead"
     | "issueCount"
     | "-description"
     | "+description"
     | "-name"
     | "+name"
     | "-issueCount"
     | "+issueCount"
     | "-lead"
     | "+lead", 
     | "name"
     | "description"
     | string & object
     | "lead"
     | "issueCount"
     | "-description"
     | "+description"
     | "-name"
     | "+name"
     | "-issueCount"
     | "+issueCount"
     | "-lead"
    | "+lead">>;
  projectIdOrKey: ZodString;
  query: ZodOptional<ZodString>;
  startAt: ZodOptional<ZodNumber>;
}, $strip>;

Defined in: src/cloud/parameters/getProjectComponentsPaginated.ts:4