openpaul
    Preparing search index...

    Variable MustHavesSchemaConst

    MustHavesSchema: ZodObject<
        {
            artifacts: ZodDefault<
                ZodArray<
                    ZodObject<
                        {
                            min_lines: ZodOptional<ZodNumber>;
                            must_contain: ZodOptional<ZodArray<ZodString, "many">>;
                            path: ZodString;
                            provides: ZodString;
                        },
                        "strip",
                        ZodTypeAny,
                        {
                            min_lines?: number;
                            must_contain?: string[];
                            path: string;
                            provides: string;
                        },
                        {
                            min_lines?: number;
                            must_contain?: string[];
                            path: string;
                            provides: string;
                        },
                    >,
                    "many",
                >,
            >;
            key_links: ZodDefault<
                ZodArray<
                    ZodObject<
                        {
                            from: ZodString;
                            pattern: ZodString;
                            to: ZodString;
                            via: ZodString;
                        },
                        "strip",
                        ZodTypeAny,
                        { from: string; pattern: string; to: string; via: string },
                        { from: string; pattern: string; to: string; via: string },
                    >,
                    "many",
                >,
            >;
            truths: ZodDefault<ZodArray<ZodString, "many">>;
        },
        "strip",
        ZodTypeAny,
        {
            artifacts: {
                min_lines?: number;
                must_contain?: string[];
                path: string;
                provides: string;
            }[];
            key_links: { from: string; pattern: string; to: string; via: string }[];
            truths: string[];
        },
        {
            artifacts?: {
                min_lines?: number;
                must_contain?: string[];
                path: string;
                provides: string;
            }[];
            key_links?: { from: string; pattern: string; to: string; via: string }[];
            truths?: string[];
        },
    > = ...