@getpassage/react-native
Version:
Passage React Native SDK for mobile authentication
23 lines (22 loc) • 1.22 kB
TypeScript
/**
* Configuration constants for Passage React Native SDK
*/
export declare const DEFAULT_WEB_BASE_URL = "https://ui.getpassage.ai";
export declare const DEFAULT_API_BASE_URL = "https://api.getpassage.ai";
export declare const DEFAULT_SOCKET_URL = "https://api.getpassage.ai";
export declare const SUCCESS_WEB_BASE_URL = "https://ui.getpassage.ai";
export declare const DEFAULT_LOGGER_ENDPOINT = "https://ui.getpassage.ai/api/logger";
export declare const CONNECT_PATH = "/connect";
export declare const DEFAULT_SOCKET_NAMESPACE = "/ws";
export declare const AUTOMATION_CONFIG_PATH = "/automation/configuration";
export declare const AUTOMATION_COMMAND_RESULT_PATH = "/automation/command-result";
export declare const AUTOMATION_BROWSER_STATE_PATH = "/automation/browser-state";
export declare const PASSAGE_SCHEME = "passage://";
export declare const DEFAULT_CONNECT_URL = "https://ui.getpassage.ai/connect";
export declare const DEFAULT_PASSAGE_CONNECT_URL = "passage:///connect";
export declare const CONFIG_DEFAULTS: {
readonly webUrl: "https://ui.getpassage.ai";
readonly apiUrl: "https://api.getpassage.ai";
readonly socketUrl: "https://api.getpassage.ai";
readonly socketNamespace: "/ws";
};