@atlaskit/rovo-triggers 5.23.0 → 5.25.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 +4 -0
- package/dist/types-ts4.5/types.d.ts +4 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# @atlaskit/rovo-triggers
|
|
2
2
|
|
|
3
|
+
## 5.25.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`a60115b55c868`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/a60115b55c868) -
|
|
8
|
+
Adding agent metadata fields to ChatOpenPayload for optimistic agent header rendering
|
|
9
|
+
|
|
10
|
+
## 5.24.0
|
|
11
|
+
|
|
12
|
+
### Minor Changes
|
|
13
|
+
|
|
14
|
+
- [`02ab65c5c9755`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/02ab65c5c9755) -
|
|
15
|
+
MAX-120 pass mediaFileId to creationContext for inline rovo maui edit
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- Updated dependencies
|
|
20
|
+
|
|
3
21
|
## 5.23.0
|
|
4
22
|
|
|
5
23
|
### Minor Changes
|
package/dist/types/types.d.ts
CHANGED
|
@@ -70,6 +70,7 @@ export type EditorContextPayloadData = {
|
|
|
70
70
|
selectionFragment?: string;
|
|
71
71
|
selectionLocalIds?: string;
|
|
72
72
|
contentMauiId?: string;
|
|
73
|
+
mediaFileId?: string;
|
|
73
74
|
dynamicUiSource?: {
|
|
74
75
|
contentType: string;
|
|
75
76
|
startLocalId?: string;
|
|
@@ -147,6 +148,9 @@ export type EditorAgentChangedPayload = PayloadCore<'agent-changed', {
|
|
|
147
148
|
export type ChatOpenPayload = PayloadCore<'chat-open', {
|
|
148
149
|
channelId: string;
|
|
149
150
|
agentId?: string;
|
|
151
|
+
agentName?: string;
|
|
152
|
+
agentIdentityAccountId?: string;
|
|
153
|
+
avatarUrl?: string;
|
|
150
154
|
resetActiveMenu?: boolean;
|
|
151
155
|
}>;
|
|
152
156
|
export type ForgeAppAuthSuccess = PayloadCore<'forge-auth-success', {
|
|
@@ -70,6 +70,7 @@ export type EditorContextPayloadData = {
|
|
|
70
70
|
selectionFragment?: string;
|
|
71
71
|
selectionLocalIds?: string;
|
|
72
72
|
contentMauiId?: string;
|
|
73
|
+
mediaFileId?: string;
|
|
73
74
|
dynamicUiSource?: {
|
|
74
75
|
contentType: string;
|
|
75
76
|
startLocalId?: string;
|
|
@@ -147,6 +148,9 @@ export type EditorAgentChangedPayload = PayloadCore<'agent-changed', {
|
|
|
147
148
|
export type ChatOpenPayload = PayloadCore<'chat-open', {
|
|
148
149
|
channelId: string;
|
|
149
150
|
agentId?: string;
|
|
151
|
+
agentName?: string;
|
|
152
|
+
agentIdentityAccountId?: string;
|
|
153
|
+
avatarUrl?: string;
|
|
150
154
|
resetActiveMenu?: boolean;
|
|
151
155
|
}>;
|
|
152
156
|
export type ForgeAppAuthSuccess = PayloadCore<'forge-auth-success', {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/rovo-triggers",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.25.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": {
|