@amplitude/analytics-react-native 0.4.3 → 0.4.4-beta.1
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/README.md +3 -3
- package/lib/commonjs/version.js +1 -1
- package/lib/commonjs/version.js.map +1 -1
- package/lib/module/version.js +1 -1
- package/lib/module/version.js.map +1 -1
- package/lib/typescript/version.d.ts +1 -1
- package/lib/typescript/version.d.ts.map +1 -1
- package/package.json +5 -6
- package/src/version.ts +1 -1
package/README.md
CHANGED
|
@@ -109,10 +109,10 @@ import { Identify, groupIdentify } from '@amplitude/analytics-react-native';
|
|
|
109
109
|
|
|
110
110
|
const groupType = 'plan';
|
|
111
111
|
const groupName = 'enterprise';
|
|
112
|
-
const
|
|
113
|
-
|
|
112
|
+
const identity = new Identify()
|
|
113
|
+
identity.set('key1', 'value1');
|
|
114
114
|
|
|
115
|
-
groupIdentify(groupType, groupName,
|
|
115
|
+
groupIdentify(groupType, groupName, identity);
|
|
116
116
|
```
|
|
117
117
|
|
|
118
118
|
### Track Revenue
|
package/lib/commonjs/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["VERSION"],"sources":["version.ts"],"sourcesContent":["export const VERSION = '0.4.
|
|
1
|
+
{"version":3,"names":["VERSION"],"sources":["version.ts"],"sourcesContent":["export const VERSION = '0.4.4-beta.1';\n"],"mappings":";;;;;;AAAO,MAAMA,OAAO,GAAG,cAAhB"}
|
package/lib/module/version.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const VERSION = '0.4.
|
|
1
|
+
export const VERSION = '0.4.4-beta.1';
|
|
2
2
|
//# sourceMappingURL=version.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["VERSION"],"sources":["version.ts"],"sourcesContent":["export const VERSION = '0.4.
|
|
1
|
+
{"version":3,"names":["VERSION"],"sources":["version.ts"],"sourcesContent":["export const VERSION = '0.4.4-beta.1';\n"],"mappings":"AAAA,OAAO,MAAMA,OAAO,GAAG,cAAhB"}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.4.
|
|
1
|
+
export declare const VERSION = "0.4.4-beta.1";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"version.d.ts","sourceRoot":"","sources":["../../src/version.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,OAAO,
|
|
1
|
+
{"version":3,"file":"version.d.ts","sourceRoot":"","sources":["../../src/version.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,OAAO,iBAAiB,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@amplitude/analytics-react-native",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.4-beta.1",
|
|
4
4
|
"description": "Official React Native SDK",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"analytics",
|
|
@@ -57,10 +57,9 @@
|
|
|
57
57
|
"url": "https://github.com/amplitude/Amplitude-TypeScript/issues"
|
|
58
58
|
},
|
|
59
59
|
"dependencies": {
|
|
60
|
-
"@amplitude/analytics-client-common": "^0.2.1",
|
|
61
|
-
"@amplitude/analytics-
|
|
62
|
-
"@amplitude/analytics-
|
|
63
|
-
"@amplitude/analytics-types": "^0.10.2",
|
|
60
|
+
"@amplitude/analytics-client-common": "^0.2.2-beta.1",
|
|
61
|
+
"@amplitude/analytics-core": "^0.9.4-beta.0",
|
|
62
|
+
"@amplitude/analytics-types": "^0.10.3-beta.0",
|
|
64
63
|
"@amplitude/ua-parser-js": "^0.7.31",
|
|
65
64
|
"@react-native-async-storage/async-storage": "^1.17.7",
|
|
66
65
|
"tslib": "^2.3.1"
|
|
@@ -90,5 +89,5 @@
|
|
|
90
89
|
]
|
|
91
90
|
]
|
|
92
91
|
},
|
|
93
|
-
"gitHead": "
|
|
92
|
+
"gitHead": "5bca2c8012888ac0709f045e05bffbaeac1ba60a"
|
|
94
93
|
}
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '0.4.
|
|
1
|
+
export const VERSION = '0.4.4-beta.1';
|