@atlaskit/teams-app-internal-analytics 1.24.1 → 1.24.2
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/CHANGELOG.md
CHANGED
package/analytics.spec.yaml
CHANGED
|
@@ -3164,6 +3164,9 @@ events:
|
|
|
3164
3164
|
type: number
|
|
3165
3165
|
description: how many teams
|
|
3166
3166
|
<<: *NewUserProfileAttribute
|
|
3167
|
+
- userProfileWorkingWithMe viewed:
|
|
3168
|
+
type: screen
|
|
3169
|
+
description: fired when user profile working with me section is viewed (only when section has content)
|
|
3167
3170
|
- teamAgentsPanel viewed:
|
|
3168
3171
|
type: screen
|
|
3169
3172
|
description: fired when team agents panel is viewed
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
*
|
|
4
4
|
* Generates Typescript types for analytics events from analytics.spec.yaml
|
|
5
5
|
*
|
|
6
|
-
* @codegen <<SignedSource::
|
|
6
|
+
* @codegen <<SignedSource::404bdf7d30df1f4487b74a9e3c00c09d>>
|
|
7
7
|
* @codegenCommand yarn workspace @atlassian/analytics-tooling run analytics:codegen teams-app-internal-analytics
|
|
8
8
|
*/
|
|
9
9
|
export type PackageMetaDataType = {
|
|
@@ -1152,6 +1152,7 @@ export type AvatarPickerClosedAttributesType = {
|
|
|
1152
1152
|
};
|
|
1153
1153
|
export type AvatarPickerOpenedAttributesType = {
|
|
1154
1154
|
hasUploadedAvatar: boolean;
|
|
1155
|
+
isNewUserProfile: boolean | null;
|
|
1155
1156
|
};
|
|
1156
1157
|
export type ButtonClickedChangeProfilePhotoAttributesType = {
|
|
1157
1158
|
isNewUserProfile: boolean | null;
|
|
@@ -1161,6 +1162,7 @@ export type ButtonClickedCreateInitialsAvatarAttributesType = {
|
|
|
1161
1162
|
};
|
|
1162
1163
|
export type AvatarInitialsPickerOpenedAttributesType = {
|
|
1163
1164
|
hasUploadedAvatar: boolean;
|
|
1165
|
+
isNewUserProfile: boolean | null;
|
|
1164
1166
|
};
|
|
1165
1167
|
export type UploadAvatarFailedAttributesType = {
|
|
1166
1168
|
avatarType: 'image' | 'initials';
|
|
@@ -1432,6 +1434,7 @@ export type UserProfileAboutTeamsViewedAttributesType = {
|
|
|
1432
1434
|
teamsCount: number;
|
|
1433
1435
|
isNewUserProfile: boolean | null;
|
|
1434
1436
|
};
|
|
1437
|
+
export type UserProfileWorkingWithMeViewedAttributesType = undefined;
|
|
1435
1438
|
export type TeamAgentsPanelViewedAttributesType = {
|
|
1436
1439
|
activeAgentsCount: number;
|
|
1437
1440
|
};
|
|
@@ -2477,6 +2480,9 @@ export type AnalyticsEventAttributes = {
|
|
|
2477
2480
|
/**
|
|
2478
2481
|
* fired when user profile about teams section is viewed */
|
|
2479
2482
|
'screen.userProfileAboutTeams.viewed': UserProfileAboutTeamsViewedAttributesType;
|
|
2483
|
+
/**
|
|
2484
|
+
* fired when user profile working with me section is viewed (only when section has content) */
|
|
2485
|
+
'screen.userProfileWorkingWithMe.viewed': UserProfileWorkingWithMeViewedAttributesType;
|
|
2480
2486
|
/**
|
|
2481
2487
|
* fired when team agents panel is viewed */
|
|
2482
2488
|
'screen.teamAgentsPanel.viewed': TeamAgentsPanelViewedAttributesType;
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
*
|
|
4
4
|
* Generates Typescript types for analytics events from analytics.spec.yaml
|
|
5
5
|
*
|
|
6
|
-
* @codegen <<SignedSource::
|
|
6
|
+
* @codegen <<SignedSource::404bdf7d30df1f4487b74a9e3c00c09d>>
|
|
7
7
|
* @codegenCommand yarn workspace @atlassian/analytics-tooling run analytics:codegen teams-app-internal-analytics
|
|
8
8
|
*/
|
|
9
9
|
export type PackageMetaDataType = {
|
|
@@ -1152,6 +1152,7 @@ export type AvatarPickerClosedAttributesType = {
|
|
|
1152
1152
|
};
|
|
1153
1153
|
export type AvatarPickerOpenedAttributesType = {
|
|
1154
1154
|
hasUploadedAvatar: boolean;
|
|
1155
|
+
isNewUserProfile: boolean | null;
|
|
1155
1156
|
};
|
|
1156
1157
|
export type ButtonClickedChangeProfilePhotoAttributesType = {
|
|
1157
1158
|
isNewUserProfile: boolean | null;
|
|
@@ -1161,6 +1162,7 @@ export type ButtonClickedCreateInitialsAvatarAttributesType = {
|
|
|
1161
1162
|
};
|
|
1162
1163
|
export type AvatarInitialsPickerOpenedAttributesType = {
|
|
1163
1164
|
hasUploadedAvatar: boolean;
|
|
1165
|
+
isNewUserProfile: boolean | null;
|
|
1164
1166
|
};
|
|
1165
1167
|
export type UploadAvatarFailedAttributesType = {
|
|
1166
1168
|
avatarType: 'image' | 'initials';
|
|
@@ -1432,6 +1434,7 @@ export type UserProfileAboutTeamsViewedAttributesType = {
|
|
|
1432
1434
|
teamsCount: number;
|
|
1433
1435
|
isNewUserProfile: boolean | null;
|
|
1434
1436
|
};
|
|
1437
|
+
export type UserProfileWorkingWithMeViewedAttributesType = undefined;
|
|
1435
1438
|
export type TeamAgentsPanelViewedAttributesType = {
|
|
1436
1439
|
activeAgentsCount: number;
|
|
1437
1440
|
};
|
|
@@ -2477,6 +2480,9 @@ export type AnalyticsEventAttributes = {
|
|
|
2477
2480
|
/**
|
|
2478
2481
|
* fired when user profile about teams section is viewed */
|
|
2479
2482
|
'screen.userProfileAboutTeams.viewed': UserProfileAboutTeamsViewedAttributesType;
|
|
2483
|
+
/**
|
|
2484
|
+
* fired when user profile working with me section is viewed (only when section has content) */
|
|
2485
|
+
'screen.userProfileWorkingWithMe.viewed': UserProfileWorkingWithMeViewedAttributesType;
|
|
2480
2486
|
/**
|
|
2481
2487
|
* fired when team agents panel is viewed */
|
|
2482
2488
|
'screen.teamAgentsPanel.viewed': TeamAgentsPanelViewedAttributesType;
|
package/package.json
CHANGED
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"analytics:codegen": "yarn workspace @atlassian/analytics-tooling run analytics:codegen teams-app-internal-analytics --output ./src/common/utils/generated"
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@atlaskit/analytics-listeners": "^
|
|
30
|
+
"@atlaskit/analytics-listeners": "^10.0.0",
|
|
31
31
|
"@atlaskit/analytics-namespaced-context": "^7.2.0",
|
|
32
32
|
"@atlaskit/analytics-next": "^11.1.0",
|
|
33
33
|
"@babel/runtime": "^7.0.0",
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
"@af/integration-testing": "workspace:^",
|
|
41
41
|
"@af/visual-regression": "workspace:^",
|
|
42
42
|
"@atlaskit/ssr": "workspace:^",
|
|
43
|
-
"@atlassian/ptc-test-utils": "^0.
|
|
43
|
+
"@atlassian/ptc-test-utils": "^0.12.0",
|
|
44
44
|
"@testing-library/react": "^16.3.0",
|
|
45
45
|
"@testing-library/user-event": "^14.4.3",
|
|
46
46
|
"react-dom": "^18.2.0"
|
|
@@ -84,7 +84,7 @@
|
|
|
84
84
|
}
|
|
85
85
|
},
|
|
86
86
|
"name": "@atlaskit/teams-app-internal-analytics",
|
|
87
|
-
"version": "1.24.
|
|
87
|
+
"version": "1.24.2",
|
|
88
88
|
"description": "A package used by the teams app and platform packages to handle people and teams analytics",
|
|
89
89
|
"author": "Atlassian Pty Ltd",
|
|
90
90
|
"license": "Apache-2.0",
|