@milemaker/milemaker-js 1.0.2 → 1.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +55 -55
- package/dist/index.js +2193 -2180
- package/dist/utils/constants.d.ts +8 -0
- package/package.json +1 -1
|
@@ -1,3 +1,11 @@
|
|
|
1
1
|
import { Env } from "./types";
|
|
2
2
|
export declare const PROXY_ENVS: Record<string, Env>;
|
|
3
3
|
export declare const MILE_MAKER_API_ENVS: Record<Env, string>;
|
|
4
|
+
export declare enum HttpHeader {
|
|
5
|
+
X_CLIENT = "x-client"
|
|
6
|
+
}
|
|
7
|
+
export declare enum XClient {
|
|
8
|
+
WEB_APP = "web_app",
|
|
9
|
+
EXCEL_ADD_IN = "excel_add_in",
|
|
10
|
+
MAP_SDK = "map_sdk"
|
|
11
|
+
}
|