@atlaskit/rovo-triggers 5.44.0 → 5.45.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 +12 -0
- package/dist/types/types.d.ts +1 -0
- package/dist/types-ts4.5/types.d.ts +1 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @atlaskit/rovo-triggers
|
|
2
2
|
|
|
3
|
+
## 5.45.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`8aae8054b8f6a`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/8aae8054b8f6a) -
|
|
8
|
+
Add optional openAgentSelector attribute to the chat-open pubsub event. When true, the agent
|
|
9
|
+
selector menu will open after the chat sidebar opens.
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- Updated dependencies
|
|
14
|
+
|
|
3
15
|
## 5.44.0
|
|
4
16
|
|
|
5
17
|
### Minor Changes
|
package/dist/types/types.d.ts
CHANGED
|
@@ -187,6 +187,7 @@ export type ChatOpenPayload = PayloadCore<'chat-open', {
|
|
|
187
187
|
agentIdentityAccountId?: string;
|
|
188
188
|
avatarUrl?: string;
|
|
189
189
|
resetActiveMenu?: boolean;
|
|
190
|
+
openAgentSelector?: boolean;
|
|
190
191
|
}>;
|
|
191
192
|
export type ForgeAppAuthSuccess = PayloadCore<'forge-auth-success', {
|
|
192
193
|
is3pActionAuth?: boolean;
|
|
@@ -187,6 +187,7 @@ export type ChatOpenPayload = PayloadCore<'chat-open', {
|
|
|
187
187
|
agentIdentityAccountId?: string;
|
|
188
188
|
avatarUrl?: string;
|
|
189
189
|
resetActiveMenu?: boolean;
|
|
190
|
+
openAgentSelector?: boolean;
|
|
190
191
|
}>;
|
|
191
192
|
export type ForgeAppAuthSuccess = PayloadCore<'forge-auth-success', {
|
|
192
193
|
is3pActionAuth?: boolean;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/rovo-triggers",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.45.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": {
|