Variable ActivateSignalSuccessSchemaConst
ActivateSignalSuccessSchema: ZodObject<
{
deployments: ZodArray<
ZodUnion<
readonly [
ZodIntersection<
ZodRecord<ZodString, ZodUnion<readonly [ZodUnknown, ZodUndefined]>>,
ZodObject<
{
type: ZodLiteral<"platform">;
platform: ZodString;
account: ZodOptional<ZodNullable<ZodString>>;
is_live: ZodBoolean;
activation_key: ZodOptional<ZodNullable<ZodUnion<(...)>>>;
estimated_activation_duration_minutes: ZodOptional<
ZodNullable<ZodNumber>,
>;
deployed_at: ZodOptional<ZodNullable<ZodString>>;
},
$strip,
>,
>,
ZodIntersection<
ZodRecord<ZodString, ZodUnion<readonly [ZodUnknown, ZodUndefined]>>,
ZodObject<
{
type: ZodLiteral<"agent">;
agent_url: ZodString;
account: ZodOptional<ZodNullable<ZodString>>;
is_live: ZodBoolean;
activation_key: ZodOptional<ZodNullable<ZodUnion<(...)>>>;
estimated_activation_duration_minutes: ZodOptional<
ZodNullable<ZodNumber>,
>;
deployed_at: ZodOptional<ZodNullable<ZodString>>;
},
$strip,
>,
>,
],
>,
>;
context: ZodOptional<
ZodNullable<
ZodRecord<ZodString, ZodUnion<readonly [ZodUnknown, ZodUndefined]>>,
>,
>;
ext: ZodOptional<
ZodNullable<
ZodRecord<ZodString, ZodUnion<readonly [ZodUnknown, ZodUndefined]>>,
>,
>;
},
$strip,
> = ...