@milemaker/milemaker-js 2.0.0-alpha.5 → 2.0.0-alpha.7
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/actions/marker/createClusterMarkersAction.factory.d.ts +4 -1
- package/dist/actions/marker/index.d.ts +4 -1
- package/dist/apis/aerisWeather/aerisWeather.api.d.ts +1 -1
- package/dist/apis/aerisWeather/aerisWeather.slice.d.ts +0 -7
- package/dist/components/WeatherLegend/RainSnowIceLegend/RainSnowIceLegend.types.d.ts +1 -0
- package/dist/components/WeatherLegend/WeatherAlertsLegend/WeatherAlertsLegend.types.d.ts +1 -0
- package/dist/components/WeatherLegend/WeatherLegend.types.d.ts +1 -0
- package/dist/components/WeatherLegend/WeatherTemperaturesLegend/WeatherTemperaturesLegend.types.d.ts +1 -0
- package/dist/components/WeatherLegend/WeatherWindSpeedsLegend/WeatherWindSpeedsLegend.types.d.ts +1 -0
- package/dist/createMap/createMap.d.ts +1 -1
- package/dist/index.cjs +260 -260
- package/dist/index.cjs.map +1 -0
- package/dist/index.esm-8a133e09.js +1 -0
- package/dist/index.esm-8a133e09.js.map +1 -0
- package/dist/index.esm-e8122a0a.cjs +1 -0
- package/dist/index.esm-e8122a0a.cjs.map +1 -0
- package/dist/index.js +29109 -30094
- package/dist/index.js.map +1 -0
- package/dist/nmaps-gl-69f5266d.js +1 -0
- package/dist/nmaps-gl-69f5266d.js.map +1 -0
- package/dist/nmaps-gl-6afeae26.cjs +1 -0
- package/dist/nmaps-gl-6afeae26.cjs.map +1 -0
- package/dist/utils/apis/api.constants.d.ts +6 -0
- package/dist/utils/apis/api.types.d.ts +5 -0
- package/dist/utils/apis/logEvents.api.d.ts +37 -0
- package/dist/utils/apis/sdkEvents.api.d.ts +4 -0
- package/dist/utils/constants.d.ts +3 -4
- package/dist/utils/helpers/httpHeader.helpers.d.ts +29 -0
- package/dist/utils/helpers/prepareAppErrorMailToData.helper.d.ts +2 -2
- package/dist/utils/helpers/sourcemap.helpers.d.ts +14 -0
- package/dist/utils/types.d.ts +0 -7
- package/dist/utils/version.d.ts +1 -1
- package/package.json +3 -1
- package/dist/helpers/sdkEvents.helpers.d.ts +0 -4
- package/dist/utils/helpers/prepareContactSupportMandatoryFields.helper.d.ts +0 -4
|
@@ -1,2 +1,5 @@
|
|
|
1
1
|
import { CreateActionsFactory, MarkerActions } from "../types";
|
|
2
|
-
export declare const createClusterMarkersActionFactory: CreateActionsFactory<MarkerActions["createClusterMarkers"]
|
|
2
|
+
export declare const createClusterMarkersActionFactory: CreateActionsFactory<MarkerActions["createClusterMarkers"], {
|
|
3
|
+
accessToken: string;
|
|
4
|
+
baseApiUrl: string;
|
|
5
|
+
}>;
|
|
@@ -1,3 +1,6 @@
|
|
|
1
1
|
import { CreateActionsFactory } from "../types";
|
|
2
2
|
import { MarkerActions } from "./types";
|
|
3
|
-
export declare const markerActionsFactory: CreateActionsFactory<MarkerActions
|
|
3
|
+
export declare const markerActionsFactory: CreateActionsFactory<MarkerActions, {
|
|
4
|
+
accessToken: string;
|
|
5
|
+
baseApiUrl: string;
|
|
6
|
+
}>;
|
|
@@ -9,10 +9,3 @@ export declare const aerisWeatherSlice: {
|
|
|
9
9
|
}) => Promise<void>;
|
|
10
10
|
removeAlertsResponseItemsByTimestamp: (payload: number | number[]) => Promise<void>;
|
|
11
11
|
};
|
|
12
|
-
export declare const aerisWeatherSliceThunks: {
|
|
13
|
-
handleGetAlertResponseItemsByLonLatLikes: ({ lonLatLikes, baseApiUrl, accessToken }: {
|
|
14
|
-
lonLatLikes: import("../..").LonLatLike[];
|
|
15
|
-
baseApiUrl: string;
|
|
16
|
-
accessToken: string;
|
|
17
|
-
}) => Promise<import("./aerisWeather.types").AlertResponseItemPerLonLatLike[]>;
|
|
18
|
-
};
|
|
@@ -3,7 +3,7 @@ import { CreateMapProps, MapInstance } from "./types";
|
|
|
3
3
|
/**
|
|
4
4
|
* This is the main method that allows to mount the app and use all the features
|
|
5
5
|
* @group Map Initialization
|
|
6
|
-
* @param {CreateMapProps}
|
|
6
|
+
* @param {CreateMapProps} props - Options to configure the map with
|
|
7
7
|
* @example
|
|
8
8
|
* How to create map instance, with default streets map style
|
|
9
9
|
* ```ts
|