Variable SearchProjectsSchemaConst
SearchProjectsSchema: ZodObject<
{
action: ZodOptional<
ZodCustom<
"view"
| string & {}
| "edit"
| "create"
| "browse",
"view" | string & {} | "edit" | "create" | "browse",
>,
>;
categoryId: ZodOptional<ZodNumber>;
expand: ZodOptional<
ZodUnion<
readonly [
ZodString,
ZodArray<ZodString>,
ZodCustom<
| "url"
| "description"
| string & {}
| "issueTypes"
| "lead"
| "insight"
| "projectKeys",
| "url"
| "description"
| string & {}
| "issueTypes"
| "lead"
| "insight"
| "projectKeys",
>,
ZodArray<
ZodCustom<
| "url"
| "description"
| string & {}
| "issueTypes"
| "lead"
| "insight"
| "projectKeys",
| "url"
| "description"
| string & {}
| "issueTypes"
| "lead"
| "insight"
| "projectKeys",
>,
>,
],
>,
>;
id: ZodOptional<ZodArray<ZodNumber>>;
keys: ZodOptional<ZodArray<ZodString>>;
maxResults: ZodOptional<ZodNumber>;
orderBy: ZodOptional<
ZodCustom<
| "name"
| "key"
| string & {}
| "category"
| "owner"
| "archivedDate"
| "deletedDate"
| "issueCount"
| "-name"
| "+name"
| "-issueCount"
| "+issueCount"
| "-owner"
| "+owner"
| "-category"
| "+category"
| "-key"
| "+key"
| "lastIssueUpdatedDate"
| "-lastIssueUpdatedDate"
| "+lastIssueUpdatedDate"
| "+archivedDate"
| "-archivedDate"
| "+deletedDate"
| "-deletedDate",
| "name"
| "key"
| string & {}
| "category"
| "owner"
| "archivedDate"
| "deletedDate"
| "issueCount"
| "-name"
| "+name"
| "-issueCount"
| "+issueCount"
| "-owner"
| "+owner"
| "-category"
| "+category"
| "-key"
| "+key"
| "lastIssueUpdatedDate"
| "-lastIssueUpdatedDate"
| "+lastIssueUpdatedDate"
| "+archivedDate"
| "-archivedDate"
| "+deletedDate"
| "-deletedDate",
>,
>;
properties: ZodOptional<ZodArray<ZodObject<{}, $loose>>>;
propertyQuery: ZodOptional<ZodString>;
query: ZodOptional<ZodString>;
startAt: ZodOptional<ZodNumber>;
status: ZodOptional<
ZodArray<
ZodCustom<
"deleted"
| "live"
| string & {}
| "archived",
"deleted" | "live" | string & {} | "archived",
>,
>,
>;
typeKey: ZodOptional<ZodUnion<readonly [ZodString, ZodArray<ZodString>]>>;
},
$strip,
> = ...