jira.js
    Preparing search index...

    Variable SearchDirectoryGroupsSchemaConst

    SearchDirectoryGroupsSchema: ZodObject<
        {
            accountIds: ZodOptional<ZodArray<ZodString>>;
            cursor: ZodOptional<ZodString>;
            directoryId: ZodString;
            directoryIds: ZodOptional<ZodArray<ZodString>>;
            expand: ZodOptional<
                ZodArray<
                    ZodCustom<
                        string & {}
                        | "counts.resources"
                        | "counts.users",
                        string & {} | "counts.resources" | "counts.users",
                    >,
                >,
            >;
            groupIds: ZodOptional<ZodArray<ZodString>>;
            groupNames: ZodOptional<ZodArray<ZodString>>;
            limit: ZodOptional<ZodNumber>;
            orgId: ZodString;
            resourceIds: ZodOptional<ZodArray<ZodString>>;
            resourceOwners: ZodOptional<ZodArray<ZodString>>;
            roleIds: ZodOptional<ZodArray<ZodString>>;
            searchTerm: ZodOptional<ZodString>;
            sortBy: ZodOptional<
                ZodArray<
                    ZodObject<
                        {
                            direction: ZodCustom<
                                "desc"
                                | string & {}
                                | "asc",
                                "desc" | string & {} | "asc",
                            >;
                            field: ZodCustom<"name" | string & {}, "name" | string & {}>;
                        },
                        $loose,
                    >,
                >,
            >;
        },
        $strip,
    > = ...