Variable PublisherPropertySelectorSchemaConst
PublisherPropertySelectorSchema: ZodUnion<
readonly [
ZodIntersection<
ZodRecord<ZodString, ZodUnion<readonly [ZodUnknown, ZodUndefined]>>,
ZodObject<
{ publisher_domain: ZodString; selection_type: ZodLiteral<"all"> },
$strip,
>,
>,
ZodIntersection<
ZodRecord<ZodString, ZodUnion<readonly [ZodUnknown, ZodUndefined]>>,
ZodObject<
{
publisher_domain: ZodString;
selection_type: ZodLiteral<"by_id">;
property_ids: ZodArray<ZodString>;
},
$strip,
>,
>,
ZodIntersection<
ZodRecord<ZodString, ZodUnion<readonly [ZodUnknown, ZodUndefined]>>,
ZodObject<
{
publisher_domain: ZodString;
selection_type: ZodLiteral<"by_tag">;
property_tags: ZodArray<ZodString>;
},
$strip,
>,
>,
],
> = ...