Variable: FindComponentsForProjectsSchema
ts
const FindComponentsForProjectsSchema: ZodObject<{
maxResults: ZodOptional<ZodNumber>;
orderBy: ZodOptional<ZodCustom<
| "name"
| "description"
| string & object
| "-description"
| "+description"
| "-name"
| "+name",
| "name"
| "description"
| string & object
| "-description"
| "+description"
| "-name"
| "+name">>;
projectIdsOrKeys: ZodOptional<ZodArray<ZodString>>;
query: ZodOptional<ZodString>;
startAt: ZodOptional<ZodNumber>;
}, $strip>;Defined in: src/cloud/parameters/findComponentsForProjects.ts:4