jira.js
    Preparing search index...

    Variable StatusUpdateRequestSchemaConst

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

    The list of statuses that will be updated.