@atlaskit/rovo-triggers 2.7.0 → 2.8.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 +17 -0
- package/dist/types/types.d.ts +3 -1
- package/dist/types-ts4.5/types.d.ts +3 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# @atlaskit/rovo-triggers
|
|
2
2
|
|
|
3
|
+
## 2.8.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#132823](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/132823)
|
|
8
|
+
[`baec8548ddfdd`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/baec8548ddfdd) -
|
|
9
|
+
Add support for status and rule presentation components in workflow builder rovo agent
|
|
10
|
+
|
|
11
|
+
## 2.7.1
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- [#131989](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/131989)
|
|
16
|
+
[`3c353c272040f`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/3c353c272040f) -
|
|
17
|
+
Update types for Workflow builder Rovo agent, update agent icon, and add presentational card for
|
|
18
|
+
transition actions
|
|
19
|
+
|
|
3
20
|
## 2.7.0
|
|
4
21
|
|
|
5
22
|
### Minor Changes
|
package/dist/types/types.d.ts
CHANGED
|
@@ -92,7 +92,7 @@ export type InsertPromptPayload = PayloadCore<'insert-prompt', {
|
|
|
92
92
|
}>;
|
|
93
93
|
export type TransitionId = string;
|
|
94
94
|
export type StatusId = string;
|
|
95
|
-
export type StatusCategory = 'TODO' | 'IN_PROGRESS' | 'DONE';
|
|
95
|
+
export type StatusCategory = 'TODO' | 'IN_PROGRESS' | 'DONE' | 'UNDEFINED';
|
|
96
96
|
export type RuleConfig = {
|
|
97
97
|
[key: string]: string;
|
|
98
98
|
};
|
|
@@ -128,6 +128,8 @@ export type AddRuleRovoPayload = {
|
|
|
128
128
|
ruleTemplateKey: string;
|
|
129
129
|
transitionId: TransitionId;
|
|
130
130
|
ruleConfig: RuleConfig;
|
|
131
|
+
ruleType: string;
|
|
132
|
+
ruleDescription: string;
|
|
131
133
|
};
|
|
132
134
|
export type UpdateRuleRovoPayload = {
|
|
133
135
|
ruleTemplateKey: string;
|
|
@@ -92,7 +92,7 @@ export type InsertPromptPayload = PayloadCore<'insert-prompt', {
|
|
|
92
92
|
}>;
|
|
93
93
|
export type TransitionId = string;
|
|
94
94
|
export type StatusId = string;
|
|
95
|
-
export type StatusCategory = 'TODO' | 'IN_PROGRESS' | 'DONE';
|
|
95
|
+
export type StatusCategory = 'TODO' | 'IN_PROGRESS' | 'DONE' | 'UNDEFINED';
|
|
96
96
|
export type RuleConfig = {
|
|
97
97
|
[key: string]: string;
|
|
98
98
|
};
|
|
@@ -128,6 +128,8 @@ export type AddRuleRovoPayload = {
|
|
|
128
128
|
ruleTemplateKey: string;
|
|
129
129
|
transitionId: TransitionId;
|
|
130
130
|
ruleConfig: RuleConfig;
|
|
131
|
+
ruleType: string;
|
|
132
|
+
ruleDescription: string;
|
|
131
133
|
};
|
|
132
134
|
export type UpdateRuleRovoPayload = {
|
|
133
135
|
ruleTemplateKey: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/rovo-triggers",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.8.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": {
|