@codecademy/tracking 0.18.1 → 0.18.2-alpha.1404c3.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.
@@ -1,6 +1,11 @@
1
- @codecademy/tracking:build: cache hit, replaying output 7290bd4ff08c11cd
1
+ @codecademy/tracking:build: cache hit, replaying output 4c335037ff25e9f6
2
2
  @codecademy/tracking:build: $ yarn build:clean && yarn build:compile && yarn build:types
3
3
  @codecademy/tracking:build: $ rm -rf dist
4
4
  @codecademy/tracking:build: $ babel ./src --out-dir ./dist --copy-files --extensions ".ts,.tsx"
5
- @codecademy/tracking:build: Successfully compiled 18 files with Babel (1299ms).
5
+ @codecademy/tracking:build: Browserslist: caniuse-lite is outdated. Please run:
6
+ @codecademy/tracking:build: npx browserslist@latest --update-db
7
+ @codecademy/tracking:build: 
8
+ @codecademy/tracking:build: Why you should do it regularly:
9
+ @codecademy/tracking:build: https://github.com/browserslist/browserslist#browsers-data-updating
10
+ @codecademy/tracking:build: Successfully compiled 18 files with Babel (1337ms).
6
11
  @codecademy/tracking:build: $ tsc --emitDeclarationOnly
package/CHANGELOG.md CHANGED
@@ -3,6 +3,14 @@
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.2-alpha.1404c3.0](https://github.com/Codecademy/client-modules/compare/@codecademy/tracking@0.18.1...@codecademy/tracking@0.18.2-alpha.1404c3.0) (2022-03-09)
7
+
8
+ **Note:** Version bump only for package @codecademy/tracking
9
+
10
+
11
+
12
+
13
+
6
14
  ### [0.18.1](https://github.com/Codecademy/client-modules/compare/@codecademy/tracking@0.18.0...@codecademy/tracking@0.18.1) (2022-02-02)
7
15
 
8
16
  **Note:** Version bump only for package @codecademy/tracking
@@ -166,6 +166,7 @@ export declare type UserClickData = UserSharedData & {
166
166
  assessment_id?: string;
167
167
  container_slugs?: string[];
168
168
  search_id?: string;
169
+ is_ugc?: boolean;
169
170
  };
170
171
  /**
171
172
  * Data sent to user visit event table
@@ -193,6 +194,7 @@ export declare type UserVisitData = UserSharedData & {
193
194
  story_slug?: string;
194
195
  unit?: string;
195
196
  lesson?: string;
197
+ is_ugc?: boolean;
196
198
  };
197
199
  export declare type UserImpressionData = {
198
200
  page_name: string;
@@ -203,6 +205,7 @@ export declare type UserImpressionData = {
203
205
  track_slug?: string;
204
206
  module_slug?: string;
205
207
  source_codebase?: string;
208
+ is_ugc?: boolean;
206
209
  };
207
210
  export declare type EventAnswerData = BaseEventData & {
208
211
  question_index: number;
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.18.1",
4
+ "version": "0.18.2-alpha.1404c3.0",
5
5
  "author": "Codecademy Engineering <dev@codecademy.com>",
6
6
  "module": "./dist/index.js",
7
7
  "main": "./dist/index.js",
@@ -35,5 +35,5 @@
35
35
  "publishConfig": {
36
36
  "access": "public"
37
37
  },
38
- "gitHead": "2dc548591747ffb088f89b3dbf1c70e9fbd946f9"
38
+ "gitHead": "453c873591bdb333ae2120765edf12df8ea5f296"
39
39
  }