Mappedin JS - v6.14.0
    Preparing search index...

    Interface SearchOptions

    interface SearchOptions {
        enterpriseCategories?: {
            fields?: {
                description?: boolean;
                "locations.name"?: boolean;
                name?: boolean;
            };
            limit?: number;
        };
        enterpriseLocations?: {
            fields?: { description?: boolean; name?: boolean; tags?: boolean };
            limit?: number;
        };
        places?: {
            fields?: { description?: boolean; name?: boolean };
            limit?: number;
        };
    }
    Index

    Properties

    enterpriseCategories?: {
        fields?: {
            description?: boolean;
            "locations.name"?: boolean;
            name?: boolean;
        };
        limit?: number;
    } = ...

    Options for searching categories.

    Type Declaration

    • Optionalfields?: { description?: boolean; "locations.name"?: boolean; name?: boolean }

      Fields to search in categories.

      • Optionaldescription?: boolean

        Enable searching by category description

      • Optionallocations.name?: boolean

        Enable searching by names of locations within the category

      • Optionalname?: boolean

        Enable searching by category name

    • Optionallimit?: number

      Maximum number of category results to return

    enterpriseLocations?: {
        fields?: { description?: boolean; name?: boolean; tags?: boolean };
        limit?: number;
    } = ...

    Options for searching locations.

    Type Declaration

    • Optionalfields?: { description?: boolean; name?: boolean; tags?: boolean }

      Fields to search in locations.

      • Optionaldescription?: boolean

        Enable searching by location description

      • Optionalname?: boolean

        Enable searching by location name

      • Optionaltags?: boolean

        Enable searching by location tags

    • Optionallimit?: number

      Maximum number of location results to return

    places?: { fields?: { description?: boolean; name?: boolean }; limit?: number } = ...

    Options for searching places.

    Type Declaration

    • Optionalfields?: { description?: boolean; name?: boolean }

      Fields to search in places.

      • Optionaldescription?: boolean

        Enable searching by place description

      • Optionalname?: boolean

        Enable searching by place name

    • Optionallimit?: number

      Maximum number of place results to return