Variable packageTestSchemaConst
packageTestSchema: ZodDiscriminatedUnion<
[
ZodObject<
{
expected_status: ZodNumber;
name: ZodString;
response_contains: ZodOptional<ZodString>;
type: ZodLiteral<"route">;
url: ZodString;
},
$strip,
>,
ZodObject<
{ name: ZodString; path: ZodString; type: ZodLiteral<"file"> },
$strip,
>,
ZodObject<
{
data_file: ZodString;
format: ZodEnum<{ json: "json"; yaml: "yaml" }>;
name: ZodString;
schema_file: ZodString;
type: ZodLiteral<"data_validation">;
},
$strip,
>,
ZodObject<
{
config_file: ZodString;
format: ZodEnum<{ json: "json"; yaml: "yaml" }>;
name: ZodString;
type: ZodLiteral<"config">;
},
$strip,
>,
],
"type",
> = ...