@codecademy/tracking 0.20.1-alpha.655232.0 → 0.20.1-alpha.7e7d1e.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.
- package/.turbo/turbo-build.log +2 -2
- package/CHANGELOG.md +1 -1
- package/dist/events/types.d.ts +2 -8
- package/package.json +2 -2
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
[35m@codecademy/tracking:build: [0mcache hit, replaying output [
|
|
1
|
+
[35m@codecademy/tracking:build: [0mcache hit, replaying output [2m2770732b64b5e0d0[0m
|
|
2
2
|
[35m@codecademy/tracking:build: [0m$ yarn build:clean && yarn build:compile && yarn build:types
|
|
3
3
|
[35m@codecademy/tracking:build: [0m$ rm -rf dist
|
|
4
4
|
[35m@codecademy/tracking:build: [0m$ babel ./src --out-dir ./dist --copy-files --extensions ".ts,.tsx"
|
|
@@ -7,5 +7,5 @@
|
|
|
7
7
|
[35m@codecademy/tracking:build: [0m
|
|
8
8
|
[35m@codecademy/tracking:build: [0mWhy you should do it regularly:
|
|
9
9
|
[35m@codecademy/tracking:build: [0mhttps://github.com/browserslist/browserslist#browsers-data-updating
|
|
10
|
-
[35m@codecademy/tracking:build: [0mSuccessfully compiled 18 files with Babel (
|
|
10
|
+
[35m@codecademy/tracking:build: [0mSuccessfully compiled 18 files with Babel (1166ms).
|
|
11
11
|
[35m@codecademy/tracking:build: [0m$ tsc --emitDeclarationOnly
|
package/CHANGELOG.md
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
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.20.1-alpha.
|
|
6
|
+
### [0.20.1-alpha.7e7d1e.0](https://github.com/Codecademy/client-modules/compare/@codecademy/tracking@0.20.0...@codecademy/tracking@0.20.1-alpha.7e7d1e.0) (2022-05-06)
|
|
7
7
|
|
|
8
8
|
**Note:** Version bump only for package @codecademy/tracking
|
|
9
9
|
|
package/dist/events/types.d.ts
CHANGED
|
@@ -170,7 +170,8 @@ export declare type UserClickData = UserSharedData & {
|
|
|
170
170
|
container_slugs?: string[];
|
|
171
171
|
search_id?: string;
|
|
172
172
|
is_ugc?: boolean;
|
|
173
|
-
business_seat?:
|
|
173
|
+
business_seat?: BaseEventAnyData;
|
|
174
|
+
business_plan?: BaseEventAnyData;
|
|
174
175
|
};
|
|
175
176
|
/**
|
|
176
177
|
* Data sent to user visit event table
|
|
@@ -247,13 +248,6 @@ export declare type BusinessFilterData = BaseEventData & {
|
|
|
247
248
|
filter_key: string;
|
|
248
249
|
filter_value: FilterType;
|
|
249
250
|
};
|
|
250
|
-
export declare type BusinessSeatData = BaseEventData & {
|
|
251
|
-
role: string;
|
|
252
|
-
seat_id: string;
|
|
253
|
-
created_at?: string;
|
|
254
|
-
email?: string;
|
|
255
|
-
full_name?: string;
|
|
256
|
-
};
|
|
257
251
|
export declare type BusinessSearchData = BaseEventData & {
|
|
258
252
|
search_query: string;
|
|
259
253
|
};
|
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.20.1-alpha.
|
|
4
|
+
"version": "0.20.1-alpha.7e7d1e.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": "
|
|
38
|
+
"gitHead": "85bcc1c601d094872e2f3dda7fb9b3ebbed89050"
|
|
39
39
|
}
|