Variable ProductFiltersSchemaConst
ProductFiltersSchema: ZodObject<
{
delivery_type: ZodOptional<
ZodNullable<
ZodUnion<
readonly [ZodLiteral<"guaranteed">, ZodLiteral<"non_guaranteed">],
>,
>,
>;
is_fixed_price: ZodOptional<ZodNullable<ZodBoolean>>;
format_types: ZodOptional<
ZodNullable<
ZodArray<
ZodUnion<
readonly [
ZodLiteral<"audio">,
ZodLiteral<"video">,
ZodLiteral<"display">,
ZodLiteral<"native">,
ZodLiteral<"dooh">,
ZodLiteral<"rich_media">,
ZodLiteral<"universal">,
],
>,
>,
>,
>;
format_ids: ZodOptional<
ZodNullable<
ZodArray<
ZodObject<
{
agent_url: ZodString;
id: ZodString;
width: ZodOptional<ZodNullable<ZodNumber>>;
height: ZodOptional<ZodNullable<ZodNumber>>;
duration_ms: ZodOptional<ZodNullable<ZodNumber>>;
},
$strip,
>,
>,
>,
>;
standard_formats_only: ZodOptional<ZodNullable<ZodBoolean>>;
min_exposures: ZodOptional<ZodNullable<ZodNumber>>;
start_date: ZodOptional<ZodNullable<ZodString>>;
end_date: ZodOptional<ZodNullable<ZodString>>;
budget_range: ZodOptional<ZodNullable<ZodRecord<ZodString, ZodUnknown>>>;
countries: ZodOptional<ZodNullable<ZodArray<ZodString>>>;
channels: ZodOptional<
ZodNullable<
ZodArray<
ZodUnion<
readonly [
ZodLiteral<"display">,
ZodLiteral<"video">,
ZodLiteral<"audio">,
ZodLiteral<"native">,
ZodLiteral<"dooh">,
ZodLiteral<"ctv">,
ZodLiteral<"podcast">,
ZodLiteral<"retail">,
ZodLiteral<"social">,
],
>,
>,
>,
>;
},
$strip,
> = ...