@atlaskit/teams-app-internal-analytics 1.19.0 → 1.19.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 +13 -0
- package/analytics.spec.yaml +1 -1
- package/dist/cjs/ui/analytics-context/index.js +1 -1
- package/dist/es2019/ui/analytics-context/index.js +1 -1
- package/dist/esm/ui/analytics-context/index.js +1 -1
- package/dist/types/common/utils/generated/analytics.types.d.ts +3 -3
- package/dist/types-ts4.5/common/utils/generated/analytics.types.d.ts +3 -3
- package/package.json +3 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# @atlaskit/teams-app-internal-analytics
|
|
2
2
|
|
|
3
|
+
## 1.19.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
|
|
9
|
+
## 1.19.1
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- [`fbefd8fca3f37`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/fbefd8fca3f37) -
|
|
14
|
+
NO-ISSUE rename teamAgentAssociation track event from succedded to added
|
|
15
|
+
|
|
3
16
|
## 1.19.0
|
|
4
17
|
|
|
5
18
|
### Minor Changes
|
package/analytics.spec.yaml
CHANGED
|
@@ -1519,7 +1519,7 @@ events:
|
|
|
1519
1519
|
memberOfTeam:
|
|
1520
1520
|
type: boolean
|
|
1521
1521
|
description: whether the user is a member of the team
|
|
1522
|
-
- teamAgentAssociation
|
|
1522
|
+
- teamAgentAssociation added:
|
|
1523
1523
|
type: track
|
|
1524
1524
|
description: add agent to team succeeded
|
|
1525
1525
|
attributes:
|
|
@@ -16,7 +16,7 @@ function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbol
|
|
|
16
16
|
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { (0, _defineProperty2.default)(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
|
17
17
|
var defaultAnalyticsContextData = exports.defaultAnalyticsContextData = {
|
|
18
18
|
packageName: "@atlaskit/teams-app-internal-analytics",
|
|
19
|
-
packageVersion: "1.
|
|
19
|
+
packageVersion: "1.19.1"
|
|
20
20
|
};
|
|
21
21
|
function TeamsAppAnalyticsContext(_ref) {
|
|
22
22
|
var data = _ref.data,
|
|
@@ -2,7 +2,7 @@ import React, { useMemo } from 'react';
|
|
|
2
2
|
import { PeopleTeamsAnalyticsContext } from '@atlaskit/analytics-namespaced-context';
|
|
3
3
|
export const defaultAnalyticsContextData = {
|
|
4
4
|
packageName: "@atlaskit/teams-app-internal-analytics",
|
|
5
|
-
packageVersion: "1.
|
|
5
|
+
packageVersion: "1.19.1"
|
|
6
6
|
};
|
|
7
7
|
export function TeamsAppAnalyticsContext({
|
|
8
8
|
data,
|
|
@@ -6,7 +6,7 @@ import React, { useMemo } from 'react';
|
|
|
6
6
|
import { PeopleTeamsAnalyticsContext } from '@atlaskit/analytics-namespaced-context';
|
|
7
7
|
export var defaultAnalyticsContextData = {
|
|
8
8
|
packageName: "@atlaskit/teams-app-internal-analytics",
|
|
9
|
-
packageVersion: "1.
|
|
9
|
+
packageVersion: "1.19.1"
|
|
10
10
|
};
|
|
11
11
|
export function TeamsAppAnalyticsContext(_ref) {
|
|
12
12
|
var data = _ref.data,
|
|
@@ -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::92aa276c532558dbd384c96eb2906f50>>
|
|
7
7
|
* @codegenCommand yarn workspace @atlassian/analytics-tooling run analytics:codegen teams-app-internal-analytics
|
|
8
8
|
*/
|
|
9
9
|
export type PackageMetaDataType = {
|
|
@@ -689,7 +689,7 @@ export type TeamAgentAssociationFailedAttributesType = {
|
|
|
689
689
|
orgAdminTriggered: boolean;
|
|
690
690
|
memberOfTeam: boolean;
|
|
691
691
|
};
|
|
692
|
-
export type
|
|
692
|
+
export type TeamAgentAssociationAddedAttributesType = {
|
|
693
693
|
numberOfAgents: number;
|
|
694
694
|
teamId: string;
|
|
695
695
|
};
|
|
@@ -1829,7 +1829,7 @@ export type AnalyticsEventAttributes = {
|
|
|
1829
1829
|
'operational.teamAgentAssociation.failed': TeamAgentAssociationFailedAttributesType;
|
|
1830
1830
|
/**
|
|
1831
1831
|
* add agent to team succeeded */
|
|
1832
|
-
'track.teamAgentAssociation.
|
|
1832
|
+
'track.teamAgentAssociation.added': TeamAgentAssociationAddedAttributesType;
|
|
1833
1833
|
/**
|
|
1834
1834
|
* container is created and linked to a team */
|
|
1835
1835
|
'track.teamContainerCreatedAndLinked.success': TeamContainerCreatedAndLinkedSuccessAttributesType;
|
|
@@ -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::92aa276c532558dbd384c96eb2906f50>>
|
|
7
7
|
* @codegenCommand yarn workspace @atlassian/analytics-tooling run analytics:codegen teams-app-internal-analytics
|
|
8
8
|
*/
|
|
9
9
|
export type PackageMetaDataType = {
|
|
@@ -689,7 +689,7 @@ export type TeamAgentAssociationFailedAttributesType = {
|
|
|
689
689
|
orgAdminTriggered: boolean;
|
|
690
690
|
memberOfTeam: boolean;
|
|
691
691
|
};
|
|
692
|
-
export type
|
|
692
|
+
export type TeamAgentAssociationAddedAttributesType = {
|
|
693
693
|
numberOfAgents: number;
|
|
694
694
|
teamId: string;
|
|
695
695
|
};
|
|
@@ -1829,7 +1829,7 @@ export type AnalyticsEventAttributes = {
|
|
|
1829
1829
|
'operational.teamAgentAssociation.failed': TeamAgentAssociationFailedAttributesType;
|
|
1830
1830
|
/**
|
|
1831
1831
|
* add agent to team succeeded */
|
|
1832
|
-
'track.teamAgentAssociation.
|
|
1832
|
+
'track.teamAgentAssociation.added': TeamAgentAssociationAddedAttributesType;
|
|
1833
1833
|
/**
|
|
1834
1834
|
* container is created and linked to a team */
|
|
1835
1835
|
'track.teamContainerCreatedAndLinked.success': TeamContainerCreatedAndLinkedSuccessAttributesType;
|
package/package.json
CHANGED
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"@atlaskit/analytics-next": "^11.1.0",
|
|
33
33
|
"@atlaskit/css": "^0.15.0",
|
|
34
34
|
"@atlaskit/primitives": "^16.1.0",
|
|
35
|
-
"@atlaskit/tokens": "^
|
|
35
|
+
"@atlaskit/tokens": "^8.0.0",
|
|
36
36
|
"@babel/runtime": "^7.0.0",
|
|
37
37
|
"@compiled/react": "^0.18.6"
|
|
38
38
|
},
|
|
@@ -88,16 +88,12 @@
|
|
|
88
88
|
}
|
|
89
89
|
},
|
|
90
90
|
"name": "@atlaskit/teams-app-internal-analytics",
|
|
91
|
-
"version": "1.19.
|
|
91
|
+
"version": "1.19.2",
|
|
92
92
|
"description": "A package used by the teams app and platform packages to handle people and teams analytics",
|
|
93
93
|
"author": "Atlassian Pty Ltd",
|
|
94
94
|
"license": "Apache-2.0",
|
|
95
95
|
"publishConfig": {
|
|
96
96
|
"registry": "https://registry.npmjs.org/"
|
|
97
97
|
},
|
|
98
|
-
"platform-feature-flags": {
|
|
99
|
-
"internal.browse-users-allowed": {
|
|
100
|
-
"type": "boolean"
|
|
101
|
-
}
|
|
102
|
-
}
|
|
98
|
+
"platform-feature-flags": {}
|
|
103
99
|
}
|