jamespot-user-api
    Preparing search index...

    Variable createFaqCategorySchemaConst

    createFaqCategorySchema: 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";
            },
        >,
    > = ...