@atlaskit/rovo-agent-analytics 2.1.0 → 2.1.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,14 @@
|
|
|
1
1
|
# @atlaskit/rovo-agent-analytics
|
|
2
2
|
|
|
3
|
+
## 2.1.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`026beed942749`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/026beed942749) -
|
|
8
|
+
Fix resumption flow analytics: fire toolsExecutionCancelled on cancel and include actionKey in
|
|
9
|
+
aiResult actioned event
|
|
10
|
+
- Updated dependencies
|
|
11
|
+
|
|
3
12
|
## 2.1.0
|
|
4
13
|
|
|
5
14
|
### Minor Changes
|
|
@@ -23,6 +23,10 @@ export type ToolsEventPayload = {
|
|
|
23
23
|
actionSubject: 'rovoAgent';
|
|
24
24
|
action: 'toolsExecutionConfirmed';
|
|
25
25
|
attributes: ToolsExecutionAttributesBase;
|
|
26
|
+
} | {
|
|
27
|
+
actionSubject: 'rovoAgent';
|
|
28
|
+
action: 'toolsExecutionCancelled';
|
|
29
|
+
attributes: ToolsExecutionAttributesBase;
|
|
26
30
|
} | {
|
|
27
31
|
actionSubject: 'rovoAgent';
|
|
28
32
|
action: 'toolsExecutionStreamStopped';
|
|
@@ -23,6 +23,10 @@ export type ToolsEventPayload = {
|
|
|
23
23
|
actionSubject: 'rovoAgent';
|
|
24
24
|
action: 'toolsExecutionConfirmed';
|
|
25
25
|
attributes: ToolsExecutionAttributesBase;
|
|
26
|
+
} | {
|
|
27
|
+
actionSubject: 'rovoAgent';
|
|
28
|
+
action: 'toolsExecutionCancelled';
|
|
29
|
+
attributes: ToolsExecutionAttributesBase;
|
|
26
30
|
} | {
|
|
27
31
|
actionSubject: 'rovoAgent';
|
|
28
32
|
action: 'toolsExecutionStreamStopped';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/rovo-agent-analytics",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.1",
|
|
4
4
|
"description": "Rovo Agents analytics",
|
|
5
5
|
"repository": "https://bitbucket.org/atlassian/atlassian-frontend-monorepo",
|
|
6
6
|
"atlassian": {
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
],
|
|
41
41
|
"dependencies": {
|
|
42
42
|
"@atlaskit/analytics-listeners": "^10.1.0",
|
|
43
|
-
"@atlaskit/analytics-next": "^11.
|
|
43
|
+
"@atlaskit/analytics-next": "^11.3.0",
|
|
44
44
|
"@babel/runtime": "^7.0.0",
|
|
45
45
|
"@compiled/react": "^0.20.0"
|
|
46
46
|
},
|