Variable installationSchemaConst
installationSchema: ZodObject<
{
agent: ZodOptional<ZodString>;
config: ZodOptional<ZodRecord<ZodString, ZodUnknown>>;
created_at: ZodOptional<ZodString>;
id: ZodString;
kind: ZodOptional<ZodString>;
lookup_key: ZodOptional<ZodString>;
shared_integration: ZodOptional<ZodString>;
state: ZodOptional<ZodString>;
status_payload: ZodOptional<ZodRecord<ZodString, ZodUnknown>>;
updated_at: ZodOptional<ZodString>;
},
"strip",
ZodTypeAny,
{
agent?: string;
config?: Record<string, unknown>;
created_at?: string;
id: string;
kind?: string;
lookup_key?: string;
shared_integration?: string;
state?: string;
status_payload?: Record<string, unknown>;
updated_at?: string;
},
{
agent?: string;
config?: Record<string, unknown>;
created_at?: string;
id: string;
kind?: string;
lookup_key?: string;
shared_integration?: string;
state?: string;
status_payload?: Record<string, unknown>;
updated_at?: string;
},
> = ...
Runtime validator for Installation.