@artisan-commerce/analytics-rn 0.2.0-canary.20 → 0.2.0-canary.21
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/analytics-rn/src/lib/events/geo/changeLocation/changeLocation.types.d.ts +4 -4
- package/build/analytics-rn/src/lib/events/geo/outOfCoverage/outOfCoverage.types.d.ts +2 -2
- package/build/analytics-rn/src/lib/events/geo/setLocation/setLocation.types.d.ts +2 -2
- package/build/main.bundle.js +1 -1
- package/build/report.json +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,15 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [0.2.0-canary.21](https://bitbucket.org/tradesystem/artisan_monorepo/compare/@artisan-commerce/analytics-rn@0.2.0-canary.20...@artisan-commerce/analytics-rn@0.2.0-canary.21) (2021-06-07)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **global:** make geo event parameter optional and fix Facebook purchase event for react native ([ff3369d](https://bitbucket.org/tradesystem/artisan_monorepo/commit/ff3369dcc82736f1f3b0259ba796ffe37501be7d))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
6
15
|
## [0.2.0-canary.20](https://bitbucket.org/tradesystem/artisan_monorepo/compare/@artisan-commerce/analytics-rn@0.2.0-canary.19...@artisan-commerce/analytics-rn@0.2.0-canary.20) (2021-06-04)
|
|
7
16
|
|
|
8
17
|
**Note:** Version bump only for package @artisan-commerce/analytics-rn
|
|
@@ -12,10 +12,10 @@ import { ChangeLocationParams as SegmentChangeLocationParams } from "../../../pr
|
|
|
12
12
|
* @property {number} nextLng New set user's longitude
|
|
13
13
|
*/
|
|
14
14
|
export interface ChangeLocationCommonParams {
|
|
15
|
-
previousLat
|
|
16
|
-
previousLng
|
|
17
|
-
nextLat
|
|
18
|
-
nextLng
|
|
15
|
+
previousLat?: number;
|
|
16
|
+
previousLng?: number;
|
|
17
|
+
nextLat?: number;
|
|
18
|
+
nextLng?: number;
|
|
19
19
|
}
|
|
20
20
|
/**
|
|
21
21
|
* changeLocation event params.
|
|
@@ -10,8 +10,8 @@ import { OutOfCoverageParams as SegmentOutOfCoverageParams } from "../../../prov
|
|
|
10
10
|
* @property {number} lng longitude being searched
|
|
11
11
|
*/
|
|
12
12
|
export interface OutOfCoverageCommonParams {
|
|
13
|
-
lat
|
|
14
|
-
lng
|
|
13
|
+
lat?: number;
|
|
14
|
+
lng?: number;
|
|
15
15
|
}
|
|
16
16
|
/**
|
|
17
17
|
* outOfCoverage event params.
|
|
@@ -10,8 +10,8 @@ import { SetLocationParams as SegmentSetLocationParams } from "../../../provider
|
|
|
10
10
|
* @property {number} lng the new set longitude
|
|
11
11
|
*/
|
|
12
12
|
export interface SetLocationCommonParams {
|
|
13
|
-
lat
|
|
14
|
-
lng
|
|
13
|
+
lat?: number;
|
|
14
|
+
lng?: number;
|
|
15
15
|
}
|
|
16
16
|
/**
|
|
17
17
|
* setLocation event params.
|