jamespot-user-api
    Preparing search index...

    Variable editFaqCategorySchemaConst

    editFaqCategorySchema: ZodIntersection<
        ZodIntersection<
            ZodIntersection<
                ZodObject<
                    Omit<ZodShape<ArticleCreation>, "idSpot">,
                    "strip",
                    ZodTypeAny,
                    {
                        description?: string | null;
                        publishTo?: string;
                        title?: string;
                        type?: string;
                    },
                    {
                        description?: string
                        | null;
                        publishTo?: string;
                        title?: string;
                        type?: string;
                    },
                >,
                ZodObject<
                    { token: ZodOptional<ZodUnion<[ZodString, ZodUndefined]>> },
                    "strip",
                    ZodTypeAny,
                    { token?: string },
                    { token?: string },
                >,
            >,
            ZodObject<
                {
                    faqColor: ZodOptional<ZodString>;
                    image: ZodOptional<
                        ZodNullable<
                            ZodObject<
                                ZodShape<ImageSize>,
                                "strip",
                                ZodTypeAny,
                                ImageSize,
                                ImageSize,
                            >,
                        >,
                    >;
                    isWeb: ZodOptional<ZodBoolean>;
                    tags: ZodOptional<ZodString>;
                    type: ZodLiteral<"faq">;
                },
                "strip",
                ZodTypeAny,
                {
                    faqColor?: string;
                    image?: ImageSize
                    | null;
                    isWeb?: boolean;
                    tags?: string;
                    type: "faq";
                },
                {
                    faqColor?: string;
                    image?: ImageSize
                    | null;
                    isWeb?: boolean;
                    tags?: string;
                    type: "faq";
                },
            >,
        >,
        ZodObject<
            {
                format: ZodOptional<
                    ZodUnion<
                        [
                            ZodEffects<
                                ZodNativeEnum<typeof Format>,
                                "raw-little" | "raw-list" | "raw-view",
                                Format,
                            >,
                            ZodUndefined,
                        ],
                    >,
                >;
                uri: ZodString;
            },
            "strip",
            ZodTypeAny,
            { format?: "raw-little"
            | "raw-list"
            | "raw-view"; uri: string },
            { format?: LITTLE | LIST | VIEW; uri: string },
        >,
    > = ...