@atlaskit/rovo-triggers 5.43.0 → 5.44.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 +8 -0
- package/dist/types/types.d.ts +2 -0
- package/dist/types-ts4.5/types.d.ts +2 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# @atlaskit/rovo-triggers
|
|
2
2
|
|
|
3
|
+
## 5.44.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`ec3410f5b4e80`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/ec3410f5b4e80) -
|
|
8
|
+
fix: send auth completion notification to agent instead of re-executing prompt when 3P auth
|
|
9
|
+
completes, gated behind rovo_chat_fix_oauth_from_message_agent_ack
|
|
10
|
+
|
|
3
11
|
## 5.43.0
|
|
4
12
|
|
|
5
13
|
### Minor Changes
|
package/dist/types/types.d.ts
CHANGED
|
@@ -190,6 +190,8 @@ export type ChatOpenPayload = PayloadCore<'chat-open', {
|
|
|
190
190
|
}>;
|
|
191
191
|
export type ForgeAppAuthSuccess = PayloadCore<'forge-auth-success', {
|
|
192
192
|
is3pActionAuth?: boolean;
|
|
193
|
+
agentMessageId?: string;
|
|
194
|
+
authUrl?: string;
|
|
193
195
|
}>;
|
|
194
196
|
export type ForgeAppAuthFailure = PayloadCore<'forge-auth-failure', {
|
|
195
197
|
is3pActionAuth?: boolean;
|
|
@@ -190,6 +190,8 @@ export type ChatOpenPayload = PayloadCore<'chat-open', {
|
|
|
190
190
|
}>;
|
|
191
191
|
export type ForgeAppAuthSuccess = PayloadCore<'forge-auth-success', {
|
|
192
192
|
is3pActionAuth?: boolean;
|
|
193
|
+
agentMessageId?: string;
|
|
194
|
+
authUrl?: string;
|
|
193
195
|
}>;
|
|
194
196
|
export type ForgeAppAuthFailure = PayloadCore<'forge-auth-failure', {
|
|
195
197
|
is3pActionAuth?: boolean;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/rovo-triggers",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.44.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"
|