@atlaskit/teams-app-internal-analytics 1.27.0 → 1.27.1
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
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# @atlaskit/teams-app-internal-analytics
|
|
2
2
|
|
|
3
|
+
## 1.27.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`2c34be51e4045`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/2c34be51e4045) -
|
|
8
|
+
Remove code related to the teams_app_auto_container_create_universal_create experiment (we are not
|
|
9
|
+
going ahead with this)
|
|
10
|
+
|
|
3
11
|
## 1.27.0
|
|
4
12
|
|
|
5
13
|
### Minor Changes
|
package/analytics.spec.yaml
CHANGED
|
@@ -203,14 +203,6 @@ events:
|
|
|
203
203
|
description: fired when the member picker error is triggered
|
|
204
204
|
attributes:
|
|
205
205
|
<<: *PackageMetaDataContext
|
|
206
|
-
- requestedContainers requested:
|
|
207
|
-
type: track
|
|
208
|
-
description: fired when the teams containers are requested
|
|
209
|
-
attributes:
|
|
210
|
-
<<: *PackageMetaDataContext
|
|
211
|
-
containers:
|
|
212
|
-
type: object
|
|
213
|
-
description: the containers that are requested
|
|
214
206
|
- teamCreateDialog viewed:
|
|
215
207
|
type: screen
|
|
216
208
|
description: fired when the team create dialog is viewed
|
|
@@ -3307,30 +3299,6 @@ events:
|
|
|
3307
3299
|
error:
|
|
3308
3300
|
type: string
|
|
3309
3301
|
description: The error that was thrown
|
|
3310
|
-
- requestedContainers tryAgain:
|
|
3311
|
-
type: track
|
|
3312
|
-
description: Fired when the user tries to add requested containers again
|
|
3313
|
-
attributes:
|
|
3314
|
-
containers:
|
|
3315
|
-
type: []
|
|
3316
|
-
description: The containers that the user tried to add
|
|
3317
|
-
teamId:
|
|
3318
|
-
type: string
|
|
3319
|
-
description: The id of the team
|
|
3320
|
-
- requestedContainers failed:
|
|
3321
|
-
type: track
|
|
3322
|
-
description: Fired when the user fails to add requested containers
|
|
3323
|
-
attributes:
|
|
3324
|
-
containers:
|
|
3325
|
-
type: []
|
|
3326
|
-
description: The containers that the user tried to add
|
|
3327
|
-
teamId:
|
|
3328
|
-
type: string
|
|
3329
|
-
description: The id of the team
|
|
3330
|
-
tryAgainCount:
|
|
3331
|
-
required: false
|
|
3332
|
-
type: number
|
|
3333
|
-
description: The number of times the user has tried to add requested containers
|
|
3334
3302
|
- starred succeeded (team):
|
|
3335
3303
|
type: track
|
|
3336
3304
|
description: fired when a team is starred or unstarred succeeds
|
|
@@ -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::cbc269295ed6028e0abc5d33a2165ed0>>
|
|
7
7
|
* @codegenCommand yarn workspace @atlassian/analytics-tooling run analytics:codegen teams-app-internal-analytics
|
|
8
8
|
*/
|
|
9
9
|
export type PackageMetaDataType = {
|
|
@@ -33,9 +33,6 @@ export type AssignTeamToASiteConfirmButtonClickedAttributesType = {
|
|
|
33
33
|
};
|
|
34
34
|
export type AssignTeamToASiteCancelButtonClickedAttributesType = {};
|
|
35
35
|
export type MemberPickerErrorAttributesType = {};
|
|
36
|
-
export type RequestedContainersRequestedAttributesType = {
|
|
37
|
-
containers: Record<string, unknown>;
|
|
38
|
-
};
|
|
39
36
|
export type TeamCreateDialogViewedAttributesType = {
|
|
40
37
|
proposedMembersLength: number;
|
|
41
38
|
};
|
|
@@ -1487,15 +1484,6 @@ export type FeatureExposedAttributesType = {
|
|
|
1487
1484
|
export type InvitePromptShowContainerAddedFlagFailedAttributesType = {
|
|
1488
1485
|
error: string;
|
|
1489
1486
|
};
|
|
1490
|
-
export type RequestedContainersTryAgainAttributesType = {
|
|
1491
|
-
containers: unknown[];
|
|
1492
|
-
teamId: string;
|
|
1493
|
-
};
|
|
1494
|
-
export type RequestedContainersFailedAttributesType = {
|
|
1495
|
-
containers: unknown[];
|
|
1496
|
-
teamId: string;
|
|
1497
|
-
tryAgainCount: number | null;
|
|
1498
|
-
};
|
|
1499
1487
|
export type StarredSucceededTeamAttributesType = {
|
|
1500
1488
|
starred: boolean;
|
|
1501
1489
|
};
|
|
@@ -1587,9 +1575,6 @@ export type AnalyticsEventAttributes = {
|
|
|
1587
1575
|
/**
|
|
1588
1576
|
* fired when the member picker error is triggered */
|
|
1589
1577
|
'track.memberPicker.error': MemberPickerErrorAttributesType;
|
|
1590
|
-
/**
|
|
1591
|
-
* fired when the teams containers are requested */
|
|
1592
|
-
'track.requestedContainers.requested': RequestedContainersRequestedAttributesType;
|
|
1593
1578
|
/**
|
|
1594
1579
|
* fired when the team create dialog is viewed */
|
|
1595
1580
|
'screen.teamCreateDialog.viewed': TeamCreateDialogViewedAttributesType;
|
|
@@ -2580,12 +2565,6 @@ export type AnalyticsEventAttributes = {
|
|
|
2580
2565
|
/**
|
|
2581
2566
|
* Fired when something fails horribly inside of showContainerAddedFlagFailed */
|
|
2582
2567
|
'operational.invitePrompt.showContainerAddedFlagFailed': InvitePromptShowContainerAddedFlagFailedAttributesType;
|
|
2583
|
-
/**
|
|
2584
|
-
* Fired when the user tries to add requested containers again */
|
|
2585
|
-
'track.requestedContainers.tryAgain': RequestedContainersTryAgainAttributesType;
|
|
2586
|
-
/**
|
|
2587
|
-
* Fired when the user fails to add requested containers */
|
|
2588
|
-
'track.requestedContainers.failed': RequestedContainersFailedAttributesType;
|
|
2589
2568
|
/**
|
|
2590
2569
|
* fired when a team is starred or unstarred succeeds */
|
|
2591
2570
|
'track.starred.succeeded.team': StarredSucceededTeamAttributesType;
|
|
@@ -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::cbc269295ed6028e0abc5d33a2165ed0>>
|
|
7
7
|
* @codegenCommand yarn workspace @atlassian/analytics-tooling run analytics:codegen teams-app-internal-analytics
|
|
8
8
|
*/
|
|
9
9
|
export type PackageMetaDataType = {
|
|
@@ -33,9 +33,6 @@ export type AssignTeamToASiteConfirmButtonClickedAttributesType = {
|
|
|
33
33
|
};
|
|
34
34
|
export type AssignTeamToASiteCancelButtonClickedAttributesType = {};
|
|
35
35
|
export type MemberPickerErrorAttributesType = {};
|
|
36
|
-
export type RequestedContainersRequestedAttributesType = {
|
|
37
|
-
containers: Record<string, unknown>;
|
|
38
|
-
};
|
|
39
36
|
export type TeamCreateDialogViewedAttributesType = {
|
|
40
37
|
proposedMembersLength: number;
|
|
41
38
|
};
|
|
@@ -1487,15 +1484,6 @@ export type FeatureExposedAttributesType = {
|
|
|
1487
1484
|
export type InvitePromptShowContainerAddedFlagFailedAttributesType = {
|
|
1488
1485
|
error: string;
|
|
1489
1486
|
};
|
|
1490
|
-
export type RequestedContainersTryAgainAttributesType = {
|
|
1491
|
-
containers: unknown[];
|
|
1492
|
-
teamId: string;
|
|
1493
|
-
};
|
|
1494
|
-
export type RequestedContainersFailedAttributesType = {
|
|
1495
|
-
containers: unknown[];
|
|
1496
|
-
teamId: string;
|
|
1497
|
-
tryAgainCount: number | null;
|
|
1498
|
-
};
|
|
1499
1487
|
export type StarredSucceededTeamAttributesType = {
|
|
1500
1488
|
starred: boolean;
|
|
1501
1489
|
};
|
|
@@ -1587,9 +1575,6 @@ export type AnalyticsEventAttributes = {
|
|
|
1587
1575
|
/**
|
|
1588
1576
|
* fired when the member picker error is triggered */
|
|
1589
1577
|
'track.memberPicker.error': MemberPickerErrorAttributesType;
|
|
1590
|
-
/**
|
|
1591
|
-
* fired when the teams containers are requested */
|
|
1592
|
-
'track.requestedContainers.requested': RequestedContainersRequestedAttributesType;
|
|
1593
1578
|
/**
|
|
1594
1579
|
* fired when the team create dialog is viewed */
|
|
1595
1580
|
'screen.teamCreateDialog.viewed': TeamCreateDialogViewedAttributesType;
|
|
@@ -2580,12 +2565,6 @@ export type AnalyticsEventAttributes = {
|
|
|
2580
2565
|
/**
|
|
2581
2566
|
* Fired when something fails horribly inside of showContainerAddedFlagFailed */
|
|
2582
2567
|
'operational.invitePrompt.showContainerAddedFlagFailed': InvitePromptShowContainerAddedFlagFailedAttributesType;
|
|
2583
|
-
/**
|
|
2584
|
-
* Fired when the user tries to add requested containers again */
|
|
2585
|
-
'track.requestedContainers.tryAgain': RequestedContainersTryAgainAttributesType;
|
|
2586
|
-
/**
|
|
2587
|
-
* Fired when the user fails to add requested containers */
|
|
2588
|
-
'track.requestedContainers.failed': RequestedContainersFailedAttributesType;
|
|
2589
2568
|
/**
|
|
2590
2569
|
* fired when a team is starred or unstarred succeeds */
|
|
2591
2570
|
'track.starred.succeeded.team': StarredSucceededTeamAttributesType;
|
package/package.json
CHANGED
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"@atlaskit/analytics-namespaced-context": "^7.2.0",
|
|
32
32
|
"@atlaskit/analytics-next": "^11.1.0",
|
|
33
33
|
"@babel/runtime": "^7.0.0",
|
|
34
|
-
"@compiled/react": "^0.
|
|
34
|
+
"@compiled/react": "^0.20.0"
|
|
35
35
|
},
|
|
36
36
|
"peerDependencies": {
|
|
37
37
|
"react": "^18.2.0"
|
|
@@ -84,7 +84,7 @@
|
|
|
84
84
|
}
|
|
85
85
|
},
|
|
86
86
|
"name": "@atlaskit/teams-app-internal-analytics",
|
|
87
|
-
"version": "1.27.
|
|
87
|
+
"version": "1.27.1",
|
|
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",
|