API Docs for: 2.0.20133.2
Show:

File: src\internal\api\search\searchConstants.ts

namespace internal.api.search {

    /**
     * Endpoint base url
     * @property {string} BASE_URI
     * @private
     */
    export const BASE_URI = <any>"supportsearch.microsoft.com";

    /**
     * Endpoint base url for staging
     * @property {string} BASE_URI_STG
     * @private
     */
    export const BASE_URI_STG = <any>"supportsearch-stg.microsoft.com";

    /**
     * Endpoint base url through the app gateway
     * @property {string} BASE_GATEWAYURI
     * @private
     */
    export const BASE_GATEWAYURI = <any>"api.support.microsoft.com/v1/search/knowledge";

    /**
     * Endpoint base url through the app gateway for staging
     * @property {string} BASE_GATEWAYURI_STG
     * @private
     */
    export const BASE_GATEWAYURI_STG = <any>"api-ppe.support.microsoft.com/v1/search/knowledge";

    /**
     * Route to the search controller method
     * @property {string} SEARCH_ROUTE
     * @private
     */
    export const SEARCH_ROUTE = <any>"search";

    /**
     * Default number of search results
     * @property {string} DEFAULT_SEARCHRESULTSCOUNT
     * @private
     */
    export const DEFAULT_SEARCHRESULTSCOUNT = 20;

    /**
     * Default language
     * @property {string} DEFAULT_LOCALE
     * @private
     */
    export const DEFAULT_LOCALE = "en-us";

    /**
     * Default scope
     * @property {string} DEFAULT_SCOPE
     * @private
     */
    export const DEFAULT_SCOPE = "default";

    /**
     * Default version
     * @property {string} DEFAULT_VERSION
     * @private
     */
    export const DEFAULT_VERSION = "5.0";
}