jira.js
    Preparing search index...

    Variable UpdateStatusesSchemaConst

    UpdateStatusesSchema: ZodObject<
        {
            statuses: ZodArray<
                ZodObject<
                    {
                        description: ZodOptional<ZodString>;
                        id: ZodString;
                        name: ZodString;
                        statusCategory: ZodCustom<
                            string & {}
                            | "TODO"
                            | "IN_PROGRESS"
                            | "DONE",
                            string & {} | "TODO" | "IN_PROGRESS" | "DONE",
                        >;
                    },
                    $loose,
                >,
            >;
        },
        $strip,
    > = ...