@amplitude/analytics-node 0.5.3 → 0.5.4

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 CHANGED
@@ -111,10 +111,10 @@ import { Identify, groupIdentify } from '@amplitude/analytics-node';
111
111
 
112
112
  const groupType = 'plan';
113
113
  const groupName = 'enterprise';
114
- const event = new Identify()
115
- event.set('key1', 'value1');
114
+ const identity = new Identify()
115
+ identity.set('key1', 'value1');
116
116
 
117
- groupIdentify(groupType, groupName, identify);
117
+ groupIdentify(groupType, groupName, identity);
118
118
  ```
119
119
 
120
120
  ### Track Revenue
@@ -1,2 +1,2 @@
1
- export declare const VERSION = "0.5.3";
1
+ export declare const VERSION = "0.5.4";
2
2
  //# sourceMappingURL=version.d.ts.map
@@ -1,4 +1,4 @@
1
1
  Object.defineProperty(exports, "__esModule", { value: true });
2
2
  exports.VERSION = void 0;
3
- exports.VERSION = '0.5.3';
3
+ exports.VERSION = '0.5.4';
4
4
  //# sourceMappingURL=version.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"version.js","sourceRoot":"","sources":["../../src/version.ts"],"names":[],"mappings":";;AAAa,QAAA,OAAO,GAAG,OAAO,CAAC","sourcesContent":["export const VERSION = '0.5.3';\n"]}
1
+ {"version":3,"file":"version.js","sourceRoot":"","sources":["../../src/version.ts"],"names":[],"mappings":";;AAAa,QAAA,OAAO,GAAG,OAAO,CAAC","sourcesContent":["export const VERSION = '0.5.4';\n"]}
@@ -1,2 +1,2 @@
1
- export declare const VERSION = "0.5.3";
1
+ export declare const VERSION = "0.5.4";
2
2
  //# sourceMappingURL=version.d.ts.map
@@ -1,2 +1,2 @@
1
- export var VERSION = '0.5.3';
1
+ export var VERSION = '0.5.4';
2
2
  //# sourceMappingURL=version.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"version.js","sourceRoot":"","sources":["../../src/version.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,IAAM,OAAO,GAAG,OAAO,CAAC","sourcesContent":["export const VERSION = '0.5.3';\n"]}
1
+ {"version":3,"file":"version.js","sourceRoot":"","sources":["../../src/version.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,IAAM,OAAO,GAAG,OAAO,CAAC","sourcesContent":["export const VERSION = '0.5.4';\n"]}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@amplitude/analytics-node",
3
- "version": "0.5.3",
3
+ "version": "0.5.4",
4
4
  "description": "Official Amplitude SDK for NodeJS",
5
5
  "author": "Amplitude Inc",
6
6
  "homepage": "https://github.com/amplitude/Amplitude-TypeScript",
@@ -8,6 +8,7 @@
8
8
  "main": "lib/cjs/index.js",
9
9
  "module": "lib/esm/index.js",
10
10
  "types": "lib/esm/index.d.ts",
11
+ "sideEffects": false,
11
12
  "publishConfig": {
12
13
  "access": "public"
13
14
  },
@@ -35,12 +36,12 @@
35
36
  "url": "https://github.com/amplitude/Amplitude-TypeScript/issues"
36
37
  },
37
38
  "dependencies": {
38
- "@amplitude/analytics-core": "^0.9.3",
39
- "@amplitude/analytics-types": "^0.10.2",
39
+ "@amplitude/analytics-core": "^0.9.4",
40
+ "@amplitude/analytics-types": "^0.10.3",
40
41
  "tslib": "^2.3.1"
41
42
  },
42
43
  "files": [
43
44
  "lib"
44
45
  ],
45
- "gitHead": "3fe5920040401c833941f18b031687d26cb2a552"
46
+ "gitHead": "66ea9159b61cc2f234b2978116025e5b55af21d2"
46
47
  }