@atlaskit/rovo-triggers 5.42.0 → 5.43.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 CHANGED
@@ -1,5 +1,15 @@
1
1
  # @atlaskit/rovo-triggers
2
2
 
3
+ ## 5.43.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`d27ebf26e5d58`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/d27ebf26e5d58) -
8
+ Add isDraftLockedForEditing flag to Rovo bridge context pipeline. When a Confluence page is locked
9
+ for editing due to an active approval workflow, this flag is now passed through to the Convo AI
10
+ backend alongside isViewMode, enabling approval-specific messaging in Rovo Chat instead of the
11
+ generic "no permission" message.
12
+
3
13
  ## 5.42.0
4
14
 
5
15
  ### Minor Changes
@@ -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;
@@ -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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/rovo-triggers",
3
- "version": "5.42.0",
3
+ "version": "5.43.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": {