@atlaskit/rovo-triggers 5.43.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 +20 -0
- package/dist/types/types.d.ts +3 -0
- package/dist/types-ts4.5/types.d.ts +3 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
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
|
+
|
|
15
|
+
## 5.44.0
|
|
16
|
+
|
|
17
|
+
### Minor Changes
|
|
18
|
+
|
|
19
|
+
- [`ec3410f5b4e80`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/ec3410f5b4e80) -
|
|
20
|
+
fix: send auth completion notification to agent instead of re-executing prompt when 3P auth
|
|
21
|
+
completes, gated behind rovo_chat_fix_oauth_from_message_agent_ack
|
|
22
|
+
|
|
3
23
|
## 5.43.0
|
|
4
24
|
|
|
5
25
|
### Minor Changes
|
package/dist/types/types.d.ts
CHANGED
|
@@ -187,9 +187,12 @@ 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;
|
|
194
|
+
agentMessageId?: string;
|
|
195
|
+
authUrl?: string;
|
|
193
196
|
}>;
|
|
194
197
|
export type ForgeAppAuthFailure = PayloadCore<'forge-auth-failure', {
|
|
195
198
|
is3pActionAuth?: boolean;
|
|
@@ -187,9 +187,12 @@ 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;
|
|
194
|
+
agentMessageId?: string;
|
|
195
|
+
authUrl?: string;
|
|
193
196
|
}>;
|
|
194
197
|
export type ForgeAppAuthFailure = PayloadCore<'forge-auth-failure', {
|
|
195
198
|
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": {
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
],
|
|
37
37
|
"atlaskit:src": "src/index.ts",
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@atlaskit/adf-schema": "^52.
|
|
39
|
+
"@atlaskit/adf-schema": "^52.6.0",
|
|
40
40
|
"@atlaskit/platform-feature-flags": "^1.1.0",
|
|
41
41
|
"@babel/runtime": "^7.0.0",
|
|
42
42
|
"bind-event-listener": "^3.0.0"
|