jira.js
    Preparing search index...

    Variable GetScreensSchemaConst

    GetScreensSchema: ZodObject<
        {
            id: ZodOptional<ZodArray<ZodNumber>>;
            maxResults: ZodOptional<ZodNumber>;
            orderBy: ZodOptional<
                ZodCustom<
                    "name"
                    | "id"
                    | string & {}
                    | "-name"
                    | "+name"
                    | "-id"
                    | "+id",
                    "name" | "id" | string & {} | "-name" | "+name" | "-id" | "+id",
                >,
            >;
            queryString: ZodOptional<ZodString>;
            scope: ZodOptional<
                ZodArray<
                    ZodCustom<
                        string & {}
                        | "PROJECT"
                        | "TEMPLATE"
                        | "GLOBAL",
                        string & {} | "PROJECT" | "TEMPLATE" | "GLOBAL",
                    >,
                >,
            >;
            startAt: ZodOptional<ZodNumber>;
        },
        $strip,
    > = ...