@artisan-commerce/analytics-web 0.1.0-canary.15 → 0.1.0-canary.16
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/CHANGELOG.md +9 -0
- package/build/main.bundle.js +1 -1
- package/build/report.json +1 -1
- package/build/src/lib/events/geo/changeLocation/changeLocation.types.d.ts +4 -4
- package/build/src/lib/events/geo/outOfCoverage/outOfCoverage.types.d.ts +2 -2
- package/build/src/lib/events/geo/setLocation/setLocation.types.d.ts +2 -2
- package/package.json +2 -2
|
@@ -11,10 +11,10 @@ import { ChangeLocationParams as FacebookChangeLocationParams } from "../../../p
|
|
|
11
11
|
* @property {number} nextLng New set user's longitude
|
|
12
12
|
*/
|
|
13
13
|
export interface ChangeLocationCommonParams {
|
|
14
|
-
previousLat
|
|
15
|
-
previousLng
|
|
16
|
-
nextLat
|
|
17
|
-
nextLng
|
|
14
|
+
previousLat?: number;
|
|
15
|
+
previousLng?: number;
|
|
16
|
+
nextLat?: number;
|
|
17
|
+
nextLng?: number;
|
|
18
18
|
}
|
|
19
19
|
/**
|
|
20
20
|
* changeLocation event params.
|
|
@@ -9,8 +9,8 @@ import { OutOfCoverageParams as FacebookOutOfCoverageParams } from "../../../pro
|
|
|
9
9
|
* @property {number} lng longitude being searched
|
|
10
10
|
*/
|
|
11
11
|
export interface OutOfCoverageCommonParams {
|
|
12
|
-
lat
|
|
13
|
-
lng
|
|
12
|
+
lat?: number;
|
|
13
|
+
lng?: number;
|
|
14
14
|
}
|
|
15
15
|
/**
|
|
16
16
|
* outOfCoverage event params.
|
|
@@ -9,8 +9,8 @@ import { SetLocationParams as FacebookSetLocationParams } from "../../../provide
|
|
|
9
9
|
* @property {number} lng the new set longitude
|
|
10
10
|
*/
|
|
11
11
|
export interface SetLocationCommonParams {
|
|
12
|
-
lat
|
|
13
|
-
lng
|
|
12
|
+
lat?: number;
|
|
13
|
+
lng?: number;
|
|
14
14
|
}
|
|
15
15
|
/**
|
|
16
16
|
* setLocation event params.
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@artisan-commerce/analytics-web",
|
|
3
3
|
"description": "Artisan commerce analytics web library",
|
|
4
|
-
"version": "0.1.0-canary.
|
|
4
|
+
"version": "0.1.0-canary.16",
|
|
5
5
|
"main": "./build/main.bundle.js",
|
|
6
6
|
"types": "./build/src/index.d.ts",
|
|
7
7
|
"files": [
|
|
@@ -83,5 +83,5 @@
|
|
|
83
83
|
"@artisan-commerce/products": "*",
|
|
84
84
|
"@artisan-commerce/shopping-cart": "*"
|
|
85
85
|
},
|
|
86
|
-
"gitHead": "
|
|
86
|
+
"gitHead": "9538e359e9660efd3a26b75382eb0311685522e8"
|
|
87
87
|
}
|