Skip to content

Commit 8ee31d0

Browse files
committed
assign required arguments fixed
1 parent 6a482d9 commit 8ee31d0

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

src/version2/parameters/assignIssue.ts

+3
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,7 @@ export interface AssignIssue extends Omit<User, 'accountId' | 'active'> {
99
* *5b10ac8d82e05b22cc7d4ef5*. If passed `null` it will unassigned issue.
1010
*/
1111
accountId: string | null;
12+
13+
/** Whether the user is active. */
14+
active?: boolean;
1215
}

src/version3/parameters/assignIssue.ts

+3
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,7 @@ export interface AssignIssue extends Omit<User, 'accountId' | 'active'> {
99
* *5b10ac8d82e05b22cc7d4ef5*. If passed `null` it will unassigned issue.
1010
*/
1111
accountId: string | null;
12+
13+
/** Whether the user is active. */
14+
active?: boolean;
1215
}

0 commit comments

Comments
 (0)