Variable common_succeeded_action_attemptConst
common_succeeded_action_attempt: ZodObject<
{ action_attempt_id: ZodString } & {
error: ZodNull;
status: ZodLiteral<"success">;
},
"strip",
ZodTypeAny,
{ action_attempt_id: string; error: null; status: "success" },
{ action_attempt_id: string; error: null; status: "success" },
> = ...