@atlaskit/rovo-triggers 5.30.0 → 5.32.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 +1 -0
- package/dist/types-ts4.5/types.d.ts +1 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# @atlaskit/rovo-triggers
|
|
2
2
|
|
|
3
|
+
## 5.32.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`47d14b235fa57`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/47d14b235fa57) -
|
|
8
|
+
[ux] When user clicks "Chat" button on Project card under Rovo For You tab, they get routed to the
|
|
9
|
+
Rovo Empty Chat state with a custom greeting and the project URL as context
|
|
10
|
+
|
|
11
|
+
## 5.31.0
|
|
12
|
+
|
|
13
|
+
### Minor Changes
|
|
14
|
+
|
|
15
|
+
- [`e6182ecb8b9b0`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/e6182ecb8b9b0) -
|
|
16
|
+
[ux] Programmatically update Context in Context chip in Rovo Button with Project URL. Add
|
|
17
|
+
`CurrentProjectContext` type to `CurrentPageContextType`. Add new `aiFeatureContext` to set in the
|
|
18
|
+
store when the chat is created. Each key-value pair is set via setAIFeatureContext. Stale entries
|
|
19
|
+
for known keys (e.g. 'projectContext') are cleared before new values are applied.
|
|
20
|
+
|
|
3
21
|
## 5.30.0
|
|
4
22
|
|
|
5
23
|
### Minor Changes
|
package/dist/types/types.d.ts
CHANGED
|
@@ -73,6 +73,7 @@ export type ChatNewPayload = PayloadCore<'chat-new', {
|
|
|
73
73
|
skipCreatingSeededConversation?: boolean;
|
|
74
74
|
resetActiveMenu?: boolean;
|
|
75
75
|
mode?: ChatModeParam;
|
|
76
|
+
aiFeatureContext?: Record<string, unknown>;
|
|
76
77
|
} & Partial<TargetAgentParam> & PlaceholderParam>;
|
|
77
78
|
export type EditorContextPayloadData = {
|
|
78
79
|
document: {
|
|
@@ -73,6 +73,7 @@ export type ChatNewPayload = PayloadCore<'chat-new', {
|
|
|
73
73
|
skipCreatingSeededConversation?: boolean;
|
|
74
74
|
resetActiveMenu?: boolean;
|
|
75
75
|
mode?: ChatModeParam;
|
|
76
|
+
aiFeatureContext?: Record<string, unknown>;
|
|
76
77
|
} & Partial<TargetAgentParam> & PlaceholderParam>;
|
|
77
78
|
export type EditorContextPayloadData = {
|
|
78
79
|
document: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/rovo-triggers",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.32.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": {
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
"@af/integration-testing": "workspace:^",
|
|
42
42
|
"@af/visual-regression": "workspace:^",
|
|
43
43
|
"@atlaskit/css": "^0.19.0",
|
|
44
|
-
"@atlaskit/primitives": "^18.
|
|
44
|
+
"@atlaskit/primitives": "^18.1.0",
|
|
45
45
|
"@atlaskit/ssr": "workspace:^",
|
|
46
46
|
"@atlassian/a11y-jest-testing": "^0.10.0",
|
|
47
47
|
"@atlassian/feature-flags-test-utils": "^1.0.0",
|