@atlaskit/rovo-agent-analytics 3.0.0 → 4.1.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/CHANGELOG.md CHANGED
@@ -1,5 +1,38 @@
1
1
  # @atlaskit/rovo-agent-analytics
2
2
 
3
+ ## 4.1.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`aaefb1f02471c`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/aaefb1f02471c) -
8
+ Adjust event for rovo-agent updated to include skill names
9
+
10
+ ## 4.0.0
11
+
12
+ ### Major Changes
13
+
14
+ - [`f2dc9097319f0`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/f2dc9097319f0) - ###
15
+ Dropped support for _legacy_ Typescript 4 types. **Typescript 5 is now the new minimum**.
16
+
17
+ Removes the `typesVersions` property and `dist/types-ts4.5` directory from the dist.
18
+
19
+ Types are now exclusively via the `"types": "dist/types/index.d.ts"` property.
20
+
21
+ ```diff
22
+ - "typesVersions": {
23
+ - ">=4.5 <4.9": {
24
+ - "*": [
25
+ - "dist/types-ts4.5/*",
26
+ - "dist/types-ts4.5/index.d.ts"
27
+ - ]
28
+ - }
29
+ - },
30
+ ```
31
+
32
+ ### Patch Changes
33
+
34
+ - Updated dependencies
35
+
3
36
  ## 3.0.0
4
37
 
5
38
  ### Major Changes
@@ -18,8 +18,13 @@ type FieldAttributes = {
18
18
  isWebSearchEnabled: boolean;
19
19
  } | {
20
20
  field: 'agenticSkills';
21
- operation: 'remove' | 'change';
21
+ operation: 'remove';
22
+ skillCount: number;
23
+ } | {
24
+ field: 'agenticSkills';
25
+ operation: 'change';
22
26
  skillCount: number;
27
+ skillNames: string[];
23
28
  } | {
24
29
  field: 'tools';
25
30
  operation: 'remove' | 'change';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/rovo-agent-analytics",
3
- "version": "3.0.0",
3
+ "version": "4.1.0",
4
4
  "description": "Rovo Agents analytics",
5
5
  "repository": "https://bitbucket.org/atlassian/atlassian-frontend-monorepo",
6
6
  "atlassian": {
@@ -26,21 +26,13 @@
26
26
  "module": "dist/esm/index.js",
27
27
  "module:es2019": "dist/es2019/index.js",
28
28
  "types": "dist/types/index.d.ts",
29
- "typesVersions": {
30
- ">=4.5 <5.9": {
31
- "*": [
32
- "dist/types-ts4.5/*",
33
- "dist/types-ts4.5/index.d.ts"
34
- ]
35
- }
36
- },
37
29
  "atlaskit:src": "src/index.ts",
38
30
  "sideEffects": [
39
31
  "*.compiled.css"
40
32
  ],
41
33
  "dependencies": {
42
- "@atlaskit/analytics-listeners": "^10.1.0",
43
- "@atlaskit/analytics-next": "^11.3.0",
34
+ "@atlaskit/analytics-listeners": "^11.0.0",
35
+ "@atlaskit/analytics-next": "^12.0.0",
44
36
  "@babel/runtime": "^7.0.0",
45
37
  "@compiled/react": "^0.20.0"
46
38
  },