@atlaskit/rovo-triggers 5.24.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 +7 -0
- package/dist/types/types.d.ts +3 -0
- package/dist/types-ts4.5/types.d.ts +3 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
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
|
+
|
|
3
10
|
## 5.24.0
|
|
4
11
|
|
|
5
12
|
### Minor Changes
|
package/dist/types/types.d.ts
CHANGED
|
@@ -148,6 +148,9 @@ export type EditorAgentChangedPayload = PayloadCore<'agent-changed', {
|
|
|
148
148
|
export type ChatOpenPayload = PayloadCore<'chat-open', {
|
|
149
149
|
channelId: string;
|
|
150
150
|
agentId?: string;
|
|
151
|
+
agentName?: string;
|
|
152
|
+
agentIdentityAccountId?: string;
|
|
153
|
+
avatarUrl?: string;
|
|
151
154
|
resetActiveMenu?: boolean;
|
|
152
155
|
}>;
|
|
153
156
|
export type ForgeAppAuthSuccess = PayloadCore<'forge-auth-success', {
|
|
@@ -148,6 +148,9 @@ export type EditorAgentChangedPayload = PayloadCore<'agent-changed', {
|
|
|
148
148
|
export type ChatOpenPayload = PayloadCore<'chat-open', {
|
|
149
149
|
channelId: string;
|
|
150
150
|
agentId?: string;
|
|
151
|
+
agentName?: string;
|
|
152
|
+
agentIdentityAccountId?: string;
|
|
153
|
+
avatarUrl?: string;
|
|
151
154
|
resetActiveMenu?: boolean;
|
|
152
155
|
}>;
|
|
153
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": {
|