@atlaskit/rovo-triggers 5.42.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 +18 -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,23 @@
|
|
|
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
|
+
|
|
11
|
+
## 5.43.0
|
|
12
|
+
|
|
13
|
+
### Minor Changes
|
|
14
|
+
|
|
15
|
+
- [`d27ebf26e5d58`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/d27ebf26e5d58) -
|
|
16
|
+
Add isDraftLockedForEditing flag to Rovo bridge context pipeline. When a Confluence page is locked
|
|
17
|
+
for editing due to an active approval workflow, this flag is now passed through to the Convo AI
|
|
18
|
+
backend alongside isViewMode, enabling approval-specific messaging in Rovo Chat instead of the
|
|
19
|
+
generic "no permission" message.
|
|
20
|
+
|
|
3
21
|
## 5.42.0
|
|
4
22
|
|
|
5
23
|
### Minor Changes
|
package/dist/types/types.d.ts
CHANGED
|
@@ -104,6 +104,7 @@ export type EditorContextPayloadData = {
|
|
|
104
104
|
};
|
|
105
105
|
dynamicUiType?: string;
|
|
106
106
|
isViewMode?: boolean;
|
|
107
|
+
isDraftLockedForEditing?: boolean;
|
|
107
108
|
useGenericEditorSkill?: boolean;
|
|
108
109
|
additionalContext?: Record<string, unknown>;
|
|
109
110
|
} | undefined;
|
|
@@ -189,6 +190,8 @@ export type ChatOpenPayload = PayloadCore<'chat-open', {
|
|
|
189
190
|
}>;
|
|
190
191
|
export type ForgeAppAuthSuccess = PayloadCore<'forge-auth-success', {
|
|
191
192
|
is3pActionAuth?: boolean;
|
|
193
|
+
agentMessageId?: string;
|
|
194
|
+
authUrl?: string;
|
|
192
195
|
}>;
|
|
193
196
|
export type ForgeAppAuthFailure = PayloadCore<'forge-auth-failure', {
|
|
194
197
|
is3pActionAuth?: boolean;
|
|
@@ -104,6 +104,7 @@ export type EditorContextPayloadData = {
|
|
|
104
104
|
};
|
|
105
105
|
dynamicUiType?: string;
|
|
106
106
|
isViewMode?: boolean;
|
|
107
|
+
isDraftLockedForEditing?: boolean;
|
|
107
108
|
useGenericEditorSkill?: boolean;
|
|
108
109
|
additionalContext?: Record<string, unknown>;
|
|
109
110
|
} | undefined;
|
|
@@ -189,6 +190,8 @@ export type ChatOpenPayload = PayloadCore<'chat-open', {
|
|
|
189
190
|
}>;
|
|
190
191
|
export type ForgeAppAuthSuccess = PayloadCore<'forge-auth-success', {
|
|
191
192
|
is3pActionAuth?: boolean;
|
|
193
|
+
agentMessageId?: string;
|
|
194
|
+
authUrl?: string;
|
|
192
195
|
}>;
|
|
193
196
|
export type ForgeAppAuthFailure = PayloadCore<'forge-auth-failure', {
|
|
194
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"
|