@codecademy/tracking 0.17.1 → 0.18.1-alpha.a06003.0

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.
@@ -0,0 +1,6 @@
1
+ @codecademy/tracking:build: cache hit, replaying output 7290bd4ff08c11cd
2
+ @codecademy/tracking:build: $ yarn build:clean && yarn build:compile && yarn build:types
3
+ @codecademy/tracking:build: $ rm -rf dist
4
+ @codecademy/tracking:build: $ babel ./src --out-dir ./dist --copy-files --extensions ".ts,.tsx"
5
+ @codecademy/tracking:build: Successfully compiled 18 files with Babel (1159ms).
6
+ @codecademy/tracking:build: $ tsc --emitDeclarationOnly
package/CHANGELOG.md CHANGED
@@ -3,6 +3,23 @@
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.18.1-alpha.a06003.0](https://github.com/Codecademy/client-modules/compare/@codecademy/tracking@0.18.0...@codecademy/tracking@0.18.1-alpha.a06003.0) (2022-02-01)
7
+
8
+ **Note:** Version bump only for package @codecademy/tracking
9
+
10
+
11
+
12
+
13
+
14
+ ## [0.18.0](https://github.com/Codecademy/client-modules/compare/@codecademy/tracking@0.17.1...@codecademy/tracking@0.18.0) (2021-12-20)
15
+
16
+
17
+ ### Features
18
+
19
+ * **Tracking:** add search id param to userclick data ([7150c44](https://github.com/Codecademy/client-modules/commit/7150c44d665624502cfd95ac0020130b5ab8c26a))
20
+
21
+
22
+
6
23
  ### [0.17.1](https://github.com/Codecademy/client-modules/compare/@codecademy/tracking@0.17.0...@codecademy/tracking@0.17.1) (2021-12-17)
7
24
 
8
25
 
@@ -165,6 +165,7 @@ export declare type UserClickData = UserSharedData & {
165
165
  course_progress?: number;
166
166
  assessment_id?: string;
167
167
  container_slugs?: string[];
168
+ search_id?: string;
168
169
  };
169
170
  /**
170
171
  * Data sent to user visit event table
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@codecademy/tracking",
3
3
  "description": "Tracking library for Codecademy apps.",
4
- "version": "0.17.1",
4
+ "version": "0.18.1-alpha.a06003.0",
5
5
  "author": "Codecademy Engineering <dev@codecademy.com>",
6
6
  "module": "./dist/index.js",
7
7
  "main": "./dist/index.js",
@@ -29,12 +29,11 @@
29
29
  "build:compile": "babel ./src --out-dir ./dist --copy-files --extensions \".ts,.tsx\"",
30
30
  "build:clean": "rm -rf dist",
31
31
  "build:types": "tsc --emitDeclarationOnly",
32
- "build": "yarn build:clean && yarn build:compile && yarn build:types",
33
- "lernaBuildTask": "yarn build"
32
+ "build": "yarn build:clean && yarn build:compile && yarn build:types"
34
33
  },
35
34
  "license": "MIT",
36
35
  "publishConfig": {
37
36
  "access": "public"
38
37
  },
39
- "gitHead": "f07787036cf95208eb5d78a7a357674c8129fb0f"
38
+ "gitHead": "ce2bf3d9c76485fe0b927c8c2d03b3be0c428f3c"
40
39
  }