@atlaskit/rovo-triggers 5.44.0 → 5.45.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,26 @@
1
1
  # @atlaskit/rovo-triggers
2
2
 
3
+ ## 5.45.1
4
+
5
+ ### Patch Changes
6
+
7
+ - [`7a24a72e474d7`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/7a24a72e474d7) -
8
+ Fix blitz issues: use ai-mate-chat-input-overlay topic for overlay pubsub, add getStatus prop for
9
+ deriving invoked status in action renderers, preserve terminal states in local action state
10
+ - Updated dependencies
11
+
12
+ ## 5.45.0
13
+
14
+ ### Minor Changes
15
+
16
+ - [`8aae8054b8f6a`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/8aae8054b8f6a) -
17
+ Add optional openAgentSelector attribute to the chat-open pubsub event. When true, the agent
18
+ selector menu will open after the chat sidebar opens.
19
+
20
+ ### Patch Changes
21
+
22
+ - Updated dependencies
23
+
3
24
  ## 5.44.0
4
25
 
5
26
  ### Minor Changes
package/dist/cjs/types.js CHANGED
@@ -8,6 +8,7 @@ var Topics = exports.Topics = {
8
8
  AI_MATE: 'ai-mate',
9
9
  AI_MATE_ACTIONS: 'ai-mate-actions',
10
10
  AI_MATE_INSERT_URLS: 'ai-mate-chat-inserts',
11
+ AI_MATE_CHAT_INPUT_OVERLAY: 'ai-mate-chat-input-overlay',
11
12
  AVP: 'avp'
12
13
  };
13
14
 
@@ -2,6 +2,7 @@ export const Topics = {
2
2
  AI_MATE: 'ai-mate',
3
3
  AI_MATE_ACTIONS: 'ai-mate-actions',
4
4
  AI_MATE_INSERT_URLS: 'ai-mate-chat-inserts',
5
+ AI_MATE_CHAT_INPUT_OVERLAY: 'ai-mate-chat-input-overlay',
5
6
  AVP: 'avp'
6
7
  };
7
8
 
package/dist/esm/types.js CHANGED
@@ -2,6 +2,7 @@ export var Topics = {
2
2
  AI_MATE: 'ai-mate',
3
3
  AI_MATE_ACTIONS: 'ai-mate-actions',
4
4
  AI_MATE_INSERT_URLS: 'ai-mate-chat-inserts',
5
+ AI_MATE_CHAT_INPUT_OVERLAY: 'ai-mate-chat-input-overlay',
5
6
  AVP: 'avp'
6
7
  };
7
8
 
@@ -7,6 +7,7 @@ export declare const Topics: {
7
7
  readonly AI_MATE: "ai-mate";
8
8
  readonly AI_MATE_ACTIONS: "ai-mate-actions";
9
9
  readonly AI_MATE_INSERT_URLS: "ai-mate-chat-inserts";
10
+ readonly AI_MATE_CHAT_INPUT_OVERLAY: "ai-mate-chat-input-overlay";
10
11
  readonly AVP: "avp";
11
12
  };
12
13
  export type Topic = (typeof Topics)[keyof typeof Topics];
@@ -187,6 +188,7 @@ export type ChatOpenPayload = PayloadCore<'chat-open', {
187
188
  agentIdentityAccountId?: string;
188
189
  avatarUrl?: string;
189
190
  resetActiveMenu?: boolean;
191
+ openAgentSelector?: boolean;
190
192
  }>;
191
193
  export type ForgeAppAuthSuccess = PayloadCore<'forge-auth-success', {
192
194
  is3pActionAuth?: boolean;
@@ -7,6 +7,7 @@ export declare const Topics: {
7
7
  readonly AI_MATE: "ai-mate";
8
8
  readonly AI_MATE_ACTIONS: "ai-mate-actions";
9
9
  readonly AI_MATE_INSERT_URLS: "ai-mate-chat-inserts";
10
+ readonly AI_MATE_CHAT_INPUT_OVERLAY: "ai-mate-chat-input-overlay";
10
11
  readonly AVP: "avp";
11
12
  };
12
13
  export type Topic = (typeof Topics)[keyof typeof Topics];
@@ -187,6 +188,7 @@ export type ChatOpenPayload = PayloadCore<'chat-open', {
187
188
  agentIdentityAccountId?: string;
188
189
  avatarUrl?: string;
189
190
  resetActiveMenu?: boolean;
191
+ openAgentSelector?: boolean;
190
192
  }>;
191
193
  export type ForgeAppAuthSuccess = PayloadCore<'forge-auth-success', {
192
194
  is3pActionAuth?: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/rovo-triggers",
3
- "version": "5.44.0",
3
+ "version": "5.45.1",
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": {