Variable solutionInstanceListResponseSchemaConst
solutionInstanceListResponseSchema: ZodObject<
{
after_cursor: ZodOptional<ZodString>;
before_cursor: ZodOptional<ZodString>;
data: ZodArray<
ZodObject<
{
agent: ZodOptional<ZodNullable<ZodString>>;
agent_name: ZodOptional<ZodNullable<ZodString>>;
attachment_ref: ZodOptional<
ZodNullable<
ZodRecord<ZodString, ZodType<{} | null, ZodTypeDef, {} | null>>,
>,
>;
created_at: ZodString;
customer_key: ZodString;
customer_label: ZodOptional<ZodNullable<ZodString>>;
id: ZodString;
local_edit_count: ZodOptional<ZodNullable<ZodNumber>>;
pinned_template_version: ZodOptional<ZodNullable<ZodString>>;
pinned_version_number: ZodOptional<ZodNullable<ZodNumber>>;
solution_template_config: ZodString;
status: ZodEnum<["active", "archived"]>;
updated_at: ZodString;
},
"strip",
ZodTypeAny,
{
agent?: string
| null;
agent_name?: string | null;
attachment_ref?: Record<string, {} | null> | null;
created_at: string;
customer_key: string;
customer_label?: string | null;
id: string;
local_edit_count?: number | null;
pinned_template_version?: string | null;
pinned_version_number?: number | null;
solution_template_config: string;
status: "active" | "archived";
updated_at: string;
},
{
agent?: string
| null;
agent_name?: string | null;
attachment_ref?: Record<string, {} | null> | null;
created_at: string;
customer_key: string;
customer_label?: string | null;
id: string;
local_edit_count?: number | null;
pinned_template_version?: string | null;
pinned_version_number?: number | null;
solution_template_config: string;
status: "active" | "archived";
updated_at: string;
},
>,
"many",
>;
has_more: ZodBoolean;
},
"strip",
ZodTypeAny,
{
after_cursor?: string;
before_cursor?: string;
data: {
agent?: string
| null;
agent_name?: string | null;
attachment_ref?: Record<string, {} | null> | null;
created_at: string;
customer_key: string;
customer_label?: string | null;
id: string;
local_edit_count?: number | null;
pinned_template_version?: string | null;
pinned_version_number?: number | null;
solution_template_config: string;
status: "active" | "archived";
updated_at: string;
}[];
has_more: boolean;
},
{
after_cursor?: string;
before_cursor?: string;
data: {
agent?: string
| null;
agent_name?: string | null;
attachment_ref?: Record<string, {} | null> | null;
created_at: string;
customer_key: string;
customer_label?: string | null;
id: string;
local_edit_count?: number | null;
pinned_template_version?: string | null;
pinned_version_number?: number | null;
solution_template_config: string;
status: "active" | "archived";
updated_at: string;
}[];
has_more: boolean;
},
> = ...
Runtime validator for SolutionInstanceListResponse.