@archastro/sdk
    Preparing search index...

    Variable commandSchemaConst

    commandSchema: ZodObject<
        {
            description: ZodString;
            errorOutput: ZodOptional<
                ZodRecord<ZodString, ZodType<{} | null, ZodTypeDef, {} | null>>,
            >;
            expectedInput: ZodOptional<
                ZodRecord<ZodString, ZodType<{} | null, ZodTypeDef, {} | null>>,
            >;
            id: ZodString;
            name: ZodString;
            successOutput: ZodOptional<
                ZodRecord<ZodString, ZodType<{} | null, ZodTypeDef, {} | null>>,
            >;
        },
        "strip",
        ZodTypeAny,
        {
            description: string;
            errorOutput?: Record<string, {} | null>;
            expectedInput?: Record<string, {} | null>;
            id: string;
            name: string;
            successOutput?: Record<string, {} | null>;
        },
        {
            description: string;
            errorOutput?: Record<string, {} | null>;
            expectedInput?: Record<string, {} | null>;
            id: string;
            name: string;
            successOutput?: Record<string, {} | null>;
        },
    > = ...

    Runtime validator for Command.