Variable StateTransitionSuccessSchemaConst
StateTransitionSuccessSchema: ZodObject<
{
success: ZodLiteral<true>;
previous_state: ZodString;
current_state: ZodString;
message: ZodOptional<ZodNullable<ZodString>>;
context: ZodOptional<ZodNullable<ZodObject<{}, $loose>>>;
ext: ZodOptional<ZodNullable<ZodObject<{}, $loose>>>;
},
$loose,
> = ...