You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"prepublishOnly": "npm run build && npm run test && npm run lint",
19
-
"lint": "eslint src tests --ext .ts",
19
+
"lint": "npm run lint:tests && npm run lint:src:agile && npm run lint:src:clients && npm run lint:src:services && npm run lint:src:version2 && npm run lint:src:version3 && npm run lint:src:files",
20
+
"lint:tests": "npm run lint:base -- tests",
21
+
"lint:src:agile": "npm run lint:base -- src/agile",
22
+
"lint:src:clients": "npm run lint:base -- src/clients",
23
+
"lint:src:services": "npm run lint:base -- src/services",
24
+
"lint:src:version2": "npm run lint:base -- src/version2",
25
+
"lint:src:version3": "npm run lint:base -- src/version3",
26
+
"lint:src:files": "npm run lint:base -- src/*.ts",
Copy file name to clipboardExpand all lines: src/version2/models/issueUpdateDetails.ts
+2-2
Original file line number
Diff line number
Diff line change
@@ -6,13 +6,13 @@ import { EntityProperty } from './entityProperty';
6
6
* Details of an issue update request. */
7
7
exportinterfaceIssueUpdateDetails{
8
8
/** Details of a transition. Required when performing a transition, optional when creating or editing an issue. */
9
-
transition?: IssueTransition[];
9
+
transition?: IssueTransition;
10
10
/** List of issue screen fields to update, specifying the sub-field to update and its value for each field. This field provides a straightforward option when setting a sub-field. When multiple sub-fields or other operations are required, use `update`. Fields included in here cannot be included in `update`. */
11
11
fields?: {};
12
12
/** List of operations to perform on issue screen fields. Note that fields included in here cannot be included in `fields`. */
13
13
update?: {};
14
14
/** Additional issue history details. */
15
-
historyMetadata?: HistoryMetadata[];
15
+
historyMetadata?: HistoryMetadata;
16
16
/** Details of issue properties to be add or update. */
0 commit comments