@atlaskit/rovo-triggers 4.11.0 → 4.12.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 +1 -0
- package/dist/types-ts4.5/types.d.ts +1 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# @atlaskit/rovo-triggers
|
|
2
2
|
|
|
3
|
+
## 4.12.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`01661f49ef857`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/01661f49ef857) -
|
|
8
|
+
[ux] Send automation rule generation prompts to Rovo chat in Studio
|
|
9
|
+
|
|
3
10
|
## 4.11.0
|
|
4
11
|
|
|
5
12
|
### Minor Changes
|
package/dist/types/types.d.ts
CHANGED
|
@@ -20,6 +20,7 @@ export type PayloadCore<TKey extends string, TData = void> = {
|
|
|
20
20
|
export type MessageSendPayload = PayloadCore<'message-send', {
|
|
21
21
|
prompt: string;
|
|
22
22
|
productKey?: string;
|
|
23
|
+
minionAlias?: string;
|
|
23
24
|
}>;
|
|
24
25
|
export type ChatClosePayload = PayloadCore<'chat-close', {}>;
|
|
25
26
|
type TargetAgentParam = {
|
|
@@ -20,6 +20,7 @@ export type PayloadCore<TKey extends string, TData = void> = {
|
|
|
20
20
|
export type MessageSendPayload = PayloadCore<'message-send', {
|
|
21
21
|
prompt: string;
|
|
22
22
|
productKey?: string;
|
|
23
|
+
minionAlias?: string;
|
|
23
24
|
}>;
|
|
24
25
|
export type ChatClosePayload = PayloadCore<'chat-close', {}>;
|
|
25
26
|
type TargetAgentParam = {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/rovo-triggers",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.12.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": {
|