ETASCOM CRM V3 - Documentation API
    Preparing search index...
    RawMaterialFiltersSchema: ZodObject<
        {
            search: ZodOptional<ZodString>;
            categoryId: ZodOptional<ZodString>;
            productType: ZodOptional<
                ZodEnum<
                    [
                        "MATIERE_PREMIERE",
                        "ADHESIF",
                        "CONSUMABLE",
                        "SERVICE",
                        "OUTILLAGE",
                        "EMBALLAGE",
                        "AUTRES",
                    ],
                >,
            >;
            supplierId: ZodOptional<ZodString>;
            isActive: ZodOptional<ZodBoolean>;
            minPrice: ZodOptional<ZodNumber>;
            maxPrice: ZodOptional<ZodNumber>;
        },
        "strip",
        ZodTypeAny,
        {
            search?: string;
            categoryId?: string;
            productType?: | "MATIERE_PREMIERE"
            | "ADHESIF"
            | "CONSUMABLE"
            | "SERVICE"
            | "OUTILLAGE"
            | "EMBALLAGE"
            | "AUTRES";
            supplierId?: string;
            isActive?: boolean;
            minPrice?: number;
            maxPrice?: number;
        },
        {
            search?: string;
            categoryId?: string;
            productType?: | "MATIERE_PREMIERE"
            | "ADHESIF"
            | "CONSUMABLE"
            | "SERVICE"
            | "OUTILLAGE"
            | "EMBALLAGE"
            | "AUTRES";
            supplierId?: string;
            isActive?: boolean;
            minPrice?: number;
            maxPrice?: number;
        },
    > = ...