|
6 | 6 | import 'gmp/commands/audit-reports'; |
7 | 7 | import 'gmp/commands/license'; |
8 | 8 | import 'gmp/commands/scan-configs'; |
9 | | -import 'gmp/commands/tickets'; |
10 | 9 | import 'gmp/commands/tls-certificates'; |
11 | 10 |
|
12 | 11 | import {getCommands} from 'gmp/command'; |
@@ -90,6 +89,8 @@ import TargetCommand from 'gmp/commands/target'; |
90 | 89 | import TargetsCommand from 'gmp/commands/targets'; |
91 | 90 | import TaskCommand from 'gmp/commands/task'; |
92 | 91 | import TasksCommand from 'gmp/commands/tasks'; |
| 92 | +import TicketCommand from 'gmp/commands/ticket'; |
| 93 | +import TicketsCommand from 'gmp/commands/tickets'; |
93 | 94 | import TimezonesCommand from 'gmp/commands/timezones'; |
94 | 95 | import TrashCanCommand from 'gmp/commands/trashcan'; |
95 | 96 | import UserCommand from 'gmp/commands/user'; |
@@ -201,6 +202,8 @@ class Gmp { |
201 | 202 | public readonly targets: TargetsCommand; |
202 | 203 | public readonly task: TaskCommand; |
203 | 204 | public readonly tasks: TasksCommand; |
| 205 | + public readonly ticket: TicketCommand; |
| 206 | + public readonly tickets: TicketsCommand; |
204 | 207 | public readonly timezones: TimezonesCommand; |
205 | 208 | public readonly trashcan: TrashCanCommand; |
206 | 209 | public readonly user: UserCommand; |
@@ -316,6 +319,8 @@ class Gmp { |
316 | 319 | this.targets = new TargetsCommand(this.http); |
317 | 320 | this.task = new TaskCommand(this.http); |
318 | 321 | this.tasks = new TasksCommand(this.http); |
| 322 | + this.ticket = new TicketCommand(this.http); |
| 323 | + this.tickets = new TicketsCommand(this.http); |
319 | 324 | this.timezones = new TimezonesCommand(this.http); |
320 | 325 | this.trashcan = new TrashCanCommand(this.http); |
321 | 326 | this.user = new UserCommand(this.http); |
|
0 commit comments