@atlaskit/rovo-agent-analytics 0.8.0 → 0.9.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,12 @@
1
1
  # @atlaskit/rovo-agent-analytics
2
2
 
3
+ ## 0.9.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`30b1a6e6f786c`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/30b1a6e6f786c) -
8
+ [ux] add verify agent in rovo agent landing page dropdown
9
+
3
10
  ## 0.8.0
4
11
 
5
12
  ### Minor Changes
@@ -29,6 +29,10 @@ var AgentActions = exports.AgentActions = /*#__PURE__*/function (AgentActions) {
29
29
  AgentActions["STAR"] = "star";
30
30
  /* Chat with agent clicked */
31
31
  AgentActions["CHAT"] = "chat";
32
+ /* Verify agent clicked */
33
+ AgentActions["VERIFY"] = "verify";
34
+ /* Unverify agent clicked */
35
+ AgentActions["UNVERIFY"] = "unverify";
32
36
  return AgentActions;
33
37
  }({});
34
38
  var ANALYTICS_CHANNEL = exports.ANALYTICS_CHANNEL = _analyticsListeners.FabricChannel.aiMate;
@@ -19,6 +19,10 @@ export let AgentActions = /*#__PURE__*/function (AgentActions) {
19
19
  AgentActions["STAR"] = "star";
20
20
  /* Chat with agent clicked */
21
21
  AgentActions["CHAT"] = "chat";
22
+ /* Verify agent clicked */
23
+ AgentActions["VERIFY"] = "verify";
24
+ /* Unverify agent clicked */
25
+ AgentActions["UNVERIFY"] = "unverify";
22
26
  return AgentActions;
23
27
  }({});
24
28
  export const ANALYTICS_CHANNEL = FabricChannel.aiMate;
@@ -22,6 +22,10 @@ export var AgentActions = /*#__PURE__*/function (AgentActions) {
22
22
  AgentActions["STAR"] = "star";
23
23
  /* Chat with agent clicked */
24
24
  AgentActions["CHAT"] = "chat";
25
+ /* Verify agent clicked */
26
+ AgentActions["VERIFY"] = "verify";
27
+ /* Unverify agent clicked */
28
+ AgentActions["UNVERIFY"] = "unverify";
25
29
  return AgentActions;
26
30
  }({});
27
31
  export var ANALYTICS_CHANNEL = FabricChannel.aiMate;
@@ -8,7 +8,9 @@ export declare enum AgentActions {
8
8
  DELETE = "delete",
9
9
  DUPLICATE = "duplicate",
10
10
  STAR = "star",
11
- CHAT = "chat"
11
+ CHAT = "chat",
12
+ VERIFY = "verify",
13
+ UNVERIFY = "unverify"
12
14
  }
13
15
  type CommonAnalyticsAttributes = {
14
16
  touchPoint: string;
@@ -8,7 +8,9 @@ export declare enum AgentActions {
8
8
  DELETE = "delete",
9
9
  DUPLICATE = "duplicate",
10
10
  STAR = "star",
11
- CHAT = "chat"
11
+ CHAT = "chat",
12
+ VERIFY = "verify",
13
+ UNVERIFY = "unverify"
12
14
  }
13
15
  type CommonAnalyticsAttributes = {
14
16
  touchPoint: string;
package/package.json CHANGED
@@ -24,7 +24,7 @@
24
24
  ],
25
25
  "atlaskit:src": "src/index.ts",
26
26
  "dependencies": {
27
- "@atlaskit/analytics-listeners": "^9.1.0",
27
+ "@atlaskit/analytics-listeners": "^9.2.0",
28
28
  "@atlaskit/analytics-next": "^11.1.0",
29
29
  "@babel/runtime": "^7.0.0",
30
30
  "@compiled/react": "^0.18.6"
@@ -36,7 +36,7 @@
36
36
  "@af/integration-testing": "workspace:^",
37
37
  "@af/visual-regression": "workspace:^",
38
38
  "@atlaskit/ssr": "workspace:^",
39
- "@testing-library/react": "^13.4.0",
39
+ "@testing-library/react": "^16.3.0",
40
40
  "react-dom": "^18.2.0"
41
41
  },
42
42
  "techstack": {
@@ -83,7 +83,7 @@
83
83
  ]
84
84
  },
85
85
  "name": "@atlaskit/rovo-agent-analytics",
86
- "version": "0.8.0",
86
+ "version": "0.9.0",
87
87
  "description": "Rovo Agents analytics",
88
88
  "author": "Atlassian Pty Ltd",
89
89
  "license": "Apache-2.0",