@atlaskit/rovo-triggers 5.31.0 → 5.33.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,21 @@
1
1
  # @atlaskit/rovo-triggers
2
2
 
3
+ ## 5.33.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`f431307deb663`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/f431307deb663) -
8
+ [ux] Add 'pulse' pathway to enable deep-linking to the Pulse/Insights menu via URL params
9
+ (rovoChatPathway=pulse)
10
+
11
+ ## 5.32.0
12
+
13
+ ### Minor Changes
14
+
15
+ - [`47d14b235fa57`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/47d14b235fa57) -
16
+ [ux] When user clicks "Chat" button on Project card under Rovo For You tab, they get routed to the
17
+ Rovo Empty Chat state with a custom greeting and the project URL as context
18
+
3
19
  ## 5.31.0
4
20
 
5
21
  ### Minor Changes
@@ -1,4 +1,4 @@
1
- export type RovoChatPathway = 'chat' | 'agents-browse' | 'agents-create';
1
+ export type RovoChatPathway = 'chat' | 'agents-browse' | 'agents-create' | 'pulse';
2
2
  export interface BaseRovoChatParams {
3
3
  pathway: RovoChatPathway;
4
4
  agentId: string;
@@ -21,5 +21,6 @@ type RovoParams<T extends RovoChatPathway, P = object> = BaseRovoChatParams & {
21
21
  type ChatParams = RovoParams<'chat'>;
22
22
  type AgentBrowseParams = RovoParams<'agents-browse'>;
23
23
  type AgentCreateParams = RovoParams<'agents-create'>;
24
- export type RovoChatParams = Partial<ChatParams | AgentCreateParams | AgentBrowseParams>;
24
+ type PulseParams = RovoParams<'pulse'>;
25
+ export type RovoChatParams = Partial<ChatParams | AgentCreateParams | AgentBrowseParams | PulseParams>;
25
26
  export {};
@@ -1,4 +1,4 @@
1
- export type RovoChatPathway = 'chat' | 'agents-browse' | 'agents-create';
1
+ export type RovoChatPathway = 'chat' | 'agents-browse' | 'agents-create' | 'pulse';
2
2
  export interface BaseRovoChatParams {
3
3
  pathway: RovoChatPathway;
4
4
  agentId: string;
@@ -21,5 +21,6 @@ type RovoParams<T extends RovoChatPathway, P = object> = BaseRovoChatParams & {
21
21
  type ChatParams = RovoParams<'chat'>;
22
22
  type AgentBrowseParams = RovoParams<'agents-browse'>;
23
23
  type AgentCreateParams = RovoParams<'agents-create'>;
24
- export type RovoChatParams = Partial<ChatParams | AgentCreateParams | AgentBrowseParams>;
24
+ type PulseParams = RovoParams<'pulse'>;
25
+ export type RovoChatParams = Partial<ChatParams | AgentCreateParams | AgentBrowseParams | PulseParams>;
25
26
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/rovo-triggers",
3
- "version": "5.31.0",
3
+ "version": "5.33.0",
4
4
  "description": "Provides various trigger events to drive Rovo Chat functionality, such as a publish-subscribe and URL parameter hooks",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "publishConfig": {
@@ -41,7 +41,7 @@
41
41
  "@af/integration-testing": "workspace:^",
42
42
  "@af/visual-regression": "workspace:^",
43
43
  "@atlaskit/css": "^0.19.0",
44
- "@atlaskit/primitives": "^18.0.0",
44
+ "@atlaskit/primitives": "^18.1.0",
45
45
  "@atlaskit/ssr": "workspace:^",
46
46
  "@atlassian/a11y-jest-testing": "^0.10.0",
47
47
  "@atlassian/feature-flags-test-utils": "^1.0.0",