Variable productKnowledgeReconcileResponseSchemaConst
productKnowledgeReconcileResponseSchema: ZodObject<
{
complete: ZodBoolean;
failures: ZodArray<
ZodObject<
{ customer_key: ZodString; error: ZodString; retryable: ZodBoolean },
"strip",
ZodTypeAny,
{ customer_key: string; error: string; retryable: boolean },
{ customer_key: string; error: string; retryable: boolean },
>,
"many",
>;
reconciled_customers: ZodArray<ZodString, "many">;
},
"strip",
ZodTypeAny,
{
complete: boolean;
failures: { customer_key: string; error: string; retryable: boolean }[];
reconciled_customers: string[];
},
{
complete: boolean;
failures: { customer_key: string; error: string; retryable: boolean }[];
reconciled_customers: string[];
},
> = ...
Runtime validator for ProductKnowledgeReconcileResponse.