@atlaskit/rovo-triggers 3.1.2 → 3.1.4
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 +2 -0
- package/dist/types-ts4.5/types.d.ts +2 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# @atlaskit/rovo-triggers
|
|
2
2
|
|
|
3
|
+
## 3.1.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#191387](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/191387)
|
|
8
|
+
[`6f7cc8d725008`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/6f7cc8d725008) -
|
|
9
|
+
[ux] adding transition id to delete rule payload
|
|
10
|
+
|
|
11
|
+
## 3.1.3
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- [#188287](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/188287)
|
|
16
|
+
[`51b3b61c573f3`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/51b3b61c573f3) -
|
|
17
|
+
Rovo types for Jira Workflow Builder agent are updated to include statusId for add status
|
|
18
|
+
operations.
|
|
19
|
+
|
|
3
20
|
## 3.1.2
|
|
4
21
|
|
|
5
22
|
### Patch Changes
|
package/dist/types/types.d.ts
CHANGED
|
@@ -109,6 +109,7 @@ export type RuleConfig = {
|
|
|
109
109
|
[key: string]: string;
|
|
110
110
|
};
|
|
111
111
|
export type AddStatusRovoPayload = {
|
|
112
|
+
statusId: StatusId;
|
|
112
113
|
statusName: string;
|
|
113
114
|
statusCategory: StatusCategory;
|
|
114
115
|
};
|
|
@@ -168,6 +169,7 @@ export type DeleteRuleRovoPayload = {
|
|
|
168
169
|
ruleId: string;
|
|
169
170
|
ruleTemplateKey: string;
|
|
170
171
|
ruleDescription: string;
|
|
172
|
+
transitionId: TransitionId;
|
|
171
173
|
};
|
|
172
174
|
export type JiraWorkflowWizardAction = {
|
|
173
175
|
operationType: 'ADD_STATUS';
|
|
@@ -109,6 +109,7 @@ export type RuleConfig = {
|
|
|
109
109
|
[key: string]: string;
|
|
110
110
|
};
|
|
111
111
|
export type AddStatusRovoPayload = {
|
|
112
|
+
statusId: StatusId;
|
|
112
113
|
statusName: string;
|
|
113
114
|
statusCategory: StatusCategory;
|
|
114
115
|
};
|
|
@@ -168,6 +169,7 @@ export type DeleteRuleRovoPayload = {
|
|
|
168
169
|
ruleId: string;
|
|
169
170
|
ruleTemplateKey: string;
|
|
170
171
|
ruleDescription: string;
|
|
172
|
+
transitionId: TransitionId;
|
|
171
173
|
};
|
|
172
174
|
export type JiraWorkflowWizardAction = {
|
|
173
175
|
operationType: 'ADD_STATUS';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/rovo-triggers",
|
|
3
|
-
"version": "3.1.
|
|
3
|
+
"version": "3.1.4",
|
|
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": {
|