Variable DeploymentSchemaConst
DeploymentSchema: ZodUnion<
readonly [
ZodObject<
{
type: ZodLiteral<"platform">;
platform: ZodString;
account: ZodOptional<ZodNullable<ZodString>>;
is_live: ZodBoolean;
activation_key: ZodOptional<
ZodNullable<
ZodUnion<
readonly [
ZodObject<
{ type: ZodLiteral<(...)>; segment_id: ZodString },
$strip,
>,
ZodObject<
{ type: ZodLiteral<(...)>; key: ZodString; value: ZodString },
$strip,
>,
],
>,
>,
>;
estimated_activation_duration_minutes: ZodOptional<
ZodNullable<ZodNumber>,
>;
deployed_at: ZodOptional<ZodNullable<ZodString>>;
},
$strip,
>,
ZodObject<
{
type: ZodLiteral<"agent">;
agent_url: ZodString;
account: ZodOptional<ZodNullable<ZodString>>;
is_live: ZodBoolean;
activation_key: ZodOptional<
ZodNullable<
ZodUnion<
readonly [
ZodObject<
{ type: ZodLiteral<(...)>; segment_id: ZodString },
$strip,
>,
ZodObject<
{ type: ZodLiteral<(...)>; key: ZodString; value: ZodString },
$strip,
>,
],
>,
>,
>;
estimated_activation_duration_minutes: ZodOptional<
ZodNullable<ZodNumber>,
>;
deployed_at: ZodOptional<ZodNullable<ZodString>>;
},
$strip,
>,
],
> = ...