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