@atlaskit/rovo-triggers 3.11.0 → 3.13.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 +14 -0
- package/dist/types/types.d.ts +2 -0
- package/dist/types-ts4.5/types.d.ts +2 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @atlaskit/rovo-triggers
|
|
2
2
|
|
|
3
|
+
## 3.13.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`f2efb53c01833`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/f2efb53c01833) -
|
|
8
|
+
[ux] Adding isViewMode property to send to chat if the user is in view mode
|
|
9
|
+
|
|
10
|
+
## 3.12.0
|
|
11
|
+
|
|
12
|
+
### Minor Changes
|
|
13
|
+
|
|
14
|
+
- [`e874c628413f8`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/e874c628413f8) -
|
|
15
|
+
Adding initial support for passing minion config when sending a message
|
|
16
|
+
|
|
3
17
|
## 3.11.0
|
|
4
18
|
|
|
5
19
|
### Minor Changes
|
package/dist/types/types.d.ts
CHANGED
|
@@ -40,6 +40,7 @@ export type ChatNewPayload = PayloadCore<'chat-new', {
|
|
|
40
40
|
prompt?: string | DocNode;
|
|
41
41
|
contentContext?: 'staging-area' | 'global';
|
|
42
42
|
sourceId?: string;
|
|
43
|
+
minionAlias?: string;
|
|
43
44
|
} & Partial<TargetAgentParam>>;
|
|
44
45
|
export type EditorContextPayloadData = {
|
|
45
46
|
document: {
|
|
@@ -52,6 +53,7 @@ export type EditorContextPayloadData = {
|
|
|
52
53
|
};
|
|
53
54
|
selectionFragment?: string;
|
|
54
55
|
selectionLocalIds?: string;
|
|
56
|
+
isViewMode?: boolean;
|
|
55
57
|
} | undefined;
|
|
56
58
|
export type WhiteboardContextPayloadData = {
|
|
57
59
|
type: 'image/svg+xml' | 'text/plain';
|
|
@@ -40,6 +40,7 @@ export type ChatNewPayload = PayloadCore<'chat-new', {
|
|
|
40
40
|
prompt?: string | DocNode;
|
|
41
41
|
contentContext?: 'staging-area' | 'global';
|
|
42
42
|
sourceId?: string;
|
|
43
|
+
minionAlias?: string;
|
|
43
44
|
} & Partial<TargetAgentParam>>;
|
|
44
45
|
export type EditorContextPayloadData = {
|
|
45
46
|
document: {
|
|
@@ -52,6 +53,7 @@ export type EditorContextPayloadData = {
|
|
|
52
53
|
};
|
|
53
54
|
selectionFragment?: string;
|
|
54
55
|
selectionLocalIds?: string;
|
|
56
|
+
isViewMode?: boolean;
|
|
55
57
|
} | undefined;
|
|
56
58
|
export type WhiteboardContextPayloadData = {
|
|
57
59
|
type: 'image/svg+xml' | 'text/plain';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/rovo-triggers",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.13.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": {
|