Variable setCommandResponseSchemaConst
setCommandResponseSchema: ZodUnion<
[
ZodObject<
{
code: ZodLiteral<"0">;
eagleEyeTraceId: ZodString;
message: ZodLiteral<"Success">;
tid: ZodString;
},
"strip",
ZodTypeAny,
{ code: "0"; eagleEyeTraceId: string; message: "Success"; tid: string },
{ code: "0"; eagleEyeTraceId: string; message: "Success"; tid: string },
>,
ZodObject<
{
code: ZodString;
eagleEyeTraceId: ZodString;
message: ZodString;
tid: ZodString;
},
"strip",
ZodTypeAny,
{ code: string; eagleEyeTraceId: string; message: string; tid: string },
{ code: string; eagleEyeTraceId: string; message: string; tid: string },
>,
],
> = ...