Variable DestinationSchemaConst
DestinationSchema: ZodUnion<
readonly [
ZodObject<
{
type: ZodLiteral<"platform">;
platform: ZodString;
account: ZodOptional<ZodNullable<ZodString>>;
},
$strip,
>,
ZodObject<
{
type: ZodLiteral<"agent">;
agent_url: ZodString;
account: ZodOptional<ZodNullable<ZodString>>;
},
$strip,
>,
],
> = ...