Skip to content

Variable: FindUsersAndGroupsSchema

ts
const FindUsersAndGroupsSchema: ZodObject<{
  avatarSize: ZodOptional<ZodCustom<
     | "small"
     | "medium"
     | string & object
     | "xsmall"
     | "large"
     | "xlarge"
     | "xsmall@2x"
     | "xsmall@3x"
     | "small@2x"
     | "small@3x"
     | "medium@2x"
     | "medium@3x"
     | "large@2x"
     | "large@3x"
     | "xlarge@2x"
     | "xlarge@3x"
     | "xxlarge"
     | "xxlarge@2x"
     | "xxlarge@3x"
     | "xxxlarge"
     | "xxxlarge@2x"
     | "xxxlarge@3x", 
     | "small"
     | "medium"
     | string & object
     | "xsmall"
     | "large"
     | "xlarge"
     | "xsmall@2x"
     | "xsmall@3x"
     | "small@2x"
     | "small@3x"
     | "medium@2x"
     | "medium@3x"
     | "large@2x"
     | "large@3x"
     | "xlarge@2x"
     | "xlarge@3x"
     | "xxlarge"
     | "xxlarge@2x"
     | "xxlarge@3x"
     | "xxxlarge"
     | "xxxlarge@2x"
    | "xxxlarge@3x">>;
  caseInsensitive: ZodOptional<ZodBoolean>;
  excludeConnectAddons: ZodOptional<ZodBoolean>;
  fieldId: ZodOptional<ZodString>;
  includeAiAgents: ZodOptional<ZodBoolean>;
  issueTypeId: ZodOptional<ZodArray<ZodString>>;
  maxResults: ZodOptional<ZodNumber>;
  projectId: ZodOptional<ZodArray<ZodString>>;
  query: ZodString;
  showAvatar: ZodOptional<ZodBoolean>;
}, $strip>;

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