@@ -11,7 +11,7 @@ export class Board {
11
11
/** Returns all boards. This only includes boards that the user has permission to view. */
12
12
async getAllBoards < T = Models . GetAllBoards > (
13
13
parameters : Parameters . GetAllBoards | undefined ,
14
- callback : Callback < T >
14
+ callback : Callback < T > ,
15
15
) : Promise < void > ;
16
16
/** Returns all boards. This only includes boards that the user has permission to view. */
17
17
async getAllBoards < T = Models . GetAllBoards > ( parameters ?: Parameters . GetAllBoards , callback ?: never ) : Promise < T > ;
@@ -117,15 +117,15 @@ export class Board {
117
117
*/
118
118
async getBoardByFilterId < T = Models . GetBoardByFilterId > (
119
119
parameters : Parameters . GetBoardByFilterId ,
120
- callback : Callback < T >
120
+ callback : Callback < T > ,
121
121
) : Promise < void > ;
122
122
/**
123
123
* Returns any boards which use the provided filter id. This method can be executed by users without a valid software
124
124
* license in order to find which boards are using a particular filter.
125
125
*/
126
126
async getBoardByFilterId < T = Models . GetBoardByFilterId > (
127
127
parameters : Parameters . GetBoardByFilterId ,
128
- callback ?: never
128
+ callback ?: never ,
129
129
) : Promise < T > ;
130
130
async getBoardByFilterId < T = Models . GetBoardByFilterId > (
131
131
parameters : Parameters . GetBoardByFilterId ,
@@ -186,7 +186,7 @@ export class Board {
186
186
*/
187
187
async getIssuesForBacklog < T = Models . SearchResults > (
188
188
parameters : Parameters . GetIssuesForBacklog ,
189
- callback : Callback < T >
189
+ callback : Callback < T > ,
190
190
) : Promise < void > ;
191
191
/**
192
192
* Returns all issues from the board's backlog, for the given board ID. This only includes issues that the user has
@@ -197,7 +197,7 @@ export class Board {
197
197
*/
198
198
async getIssuesForBacklog < T = Models . SearchResults > (
199
199
parameters : Parameters . GetIssuesForBacklog ,
200
- callback ?: never
200
+ callback ?: never ,
201
201
) : Promise < T > ;
202
202
async getIssuesForBacklog < T = Models . SearchResults > (
203
203
parameters : Parameters . GetIssuesForBacklog ,
@@ -242,7 +242,7 @@ export class Board {
242
242
*/
243
243
async getConfiguration < T = Models . GetConfiguration > (
244
244
parameters : Parameters . GetConfiguration ,
245
- callback : Callback < T >
245
+ callback : Callback < T > ,
246
246
) : Promise < void > ;
247
247
/**
248
248
* Get the board configuration. The response contains the following fields:
@@ -267,7 +267,7 @@ export class Board {
267
267
*/
268
268
async getConfiguration < T = Models . GetConfiguration > (
269
269
parameters : Parameters . GetConfiguration ,
270
- callback ?: never
270
+ callback ?: never ,
271
271
) : Promise < T > ;
272
272
async getConfiguration < T = Models . GetConfiguration > (
273
273
parameters : Parameters . GetConfiguration ,
@@ -315,7 +315,7 @@ export class Board {
315
315
*/
316
316
async getIssuesWithoutEpicForBoard < T = Models . SearchResults > (
317
317
parameters : Parameters . GetIssuesWithoutEpicForBoard ,
318
- callback : Callback < T >
318
+ callback : Callback < T > ,
319
319
) : Promise < void > ;
320
320
/**
321
321
* Returns all issues that do not belong to any epic on a board, for a given board ID. This only includes issues that
@@ -324,7 +324,7 @@ export class Board {
324
324
*/
325
325
async getIssuesWithoutEpicForBoard < T = Models . SearchResults > (
326
326
parameters : Parameters . GetIssuesWithoutEpicForBoard ,
327
- callback ?: never
327
+ callback ?: never ,
328
328
) : Promise < T > ;
329
329
async getIssuesWithoutEpicForBoard < T = Models . SearchResults > (
330
330
parameters : Parameters . GetIssuesWithoutEpicForBoard ,
@@ -353,7 +353,7 @@ export class Board {
353
353
*/
354
354
async getBoardIssuesForEpic < T = Models . SearchResults > (
355
355
parameters : Parameters . GetBoardIssuesForEpic ,
356
- callback : Callback < T >
356
+ callback : Callback < T > ,
357
357
) : Promise < void > ;
358
358
/**
359
359
* Returns all issues that belong to an epic on the board, for the given epic ID and the board ID. This only includes
@@ -362,7 +362,7 @@ export class Board {
362
362
*/
363
363
async getBoardIssuesForEpic < T = Models . SearchResults > (
364
364
parameters : Parameters . GetBoardIssuesForEpic ,
365
- callback ?: never
365
+ callback ?: never ,
366
366
) : Promise < T > ;
367
367
async getBoardIssuesForEpic < T = Models . SearchResults > (
368
368
parameters : Parameters . GetBoardIssuesForEpic ,
@@ -386,11 +386,11 @@ export class Board {
386
386
387
387
async getFeaturesForBoard < T = Models . GetFeaturesForBoard > (
388
388
parameters : Parameters . GetFeaturesForBoard ,
389
- callback : Callback < T >
389
+ callback : Callback < T > ,
390
390
) : Promise < void > ;
391
391
async getFeaturesForBoard < T = Models . GetFeaturesForBoard > (
392
392
parameters : Parameters . GetFeaturesForBoard ,
393
- callback ?: never
393
+ callback ?: never ,
394
394
) : Promise < T > ;
395
395
async getFeaturesForBoard < T = Models . GetFeaturesForBoard > (
396
396
parameters : Parameters . GetFeaturesForBoard ,
@@ -406,7 +406,7 @@ export class Board {
406
406
407
407
async toggleFeatures < T = Models . ToggleFeatures > (
408
408
parameters : Parameters . ToggleFeatures ,
409
- callback : Callback < T >
409
+ callback : Callback < T > ,
410
410
) : Promise < void > ;
411
411
async toggleFeatures < T = Models . ToggleFeatures > ( parameters : Parameters . ToggleFeatures , callback ?: never ) : Promise < T > ;
412
412
async toggleFeatures < T = Models . ToggleFeatures > (
@@ -431,7 +431,7 @@ export class Board {
431
431
*/
432
432
async getIssuesForBoard < T = Models . SearchResults > (
433
433
parameters : Parameters . GetIssuesForBoard ,
434
- callback : Callback < T >
434
+ callback : Callback < T > ,
435
435
) : Promise < void > ;
436
436
/**
437
437
* Returns all issues from a board, for a given board ID. This only includes issues that the user has permission to
@@ -442,7 +442,7 @@ export class Board {
442
442
*/
443
443
async getIssuesForBoard < T = Models . SearchResults > (
444
444
parameters : Parameters . GetIssuesForBoard ,
445
- callback ?: never
445
+ callback ?: never ,
446
446
) : Promise < T > ;
447
447
async getIssuesForBoard < T = Models . SearchResults > (
448
448
parameters : Parameters . GetIssuesForBoard ,
@@ -511,7 +511,7 @@ export class Board {
511
511
*/
512
512
async getProjects < T = Paginated < Models . Projects > > (
513
513
parameters : Parameters . GetProjects ,
514
- callback : Callback < T >
514
+ callback : Callback < T > ,
515
515
) : Promise < void > ;
516
516
/**
517
517
* Returns all projects that are associated with the board, for the given board ID. If the user does not have
@@ -558,7 +558,7 @@ export class Board {
558
558
*/
559
559
async getProjectsFull < T = Models . Projects [ ] > (
560
560
parameters : Parameters . GetProjectsFull ,
561
- callback : Callback < T >
561
+ callback : Callback < T > ,
562
562
) : Promise < void > ;
563
563
/**
564
564
* Returns all projects that are statically associated with the board, for the given board ID. Returned projects are
@@ -590,7 +590,7 @@ export class Board {
590
590
*/
591
591
async getBoardPropertyKeys < T = unknown > (
592
592
parameters : Parameters . GetBoardPropertyKeys ,
593
- callback : Callback < T >
593
+ callback : Callback < T > ,
594
594
) : Promise < void > ;
595
595
/**
596
596
* Returns the keys of all properties for the board identified by the id. The user who retrieves the property keys is
@@ -682,12 +682,12 @@ export class Board {
682
682
/** Returns all quick filters from a board, for a given board ID. */
683
683
async getAllQuickFilters < T = Models . GetAllQuickFilters > (
684
684
parameters : Parameters . GetAllQuickFilters ,
685
- callback : Callback < T >
685
+ callback : Callback < T > ,
686
686
) : Promise < void > ;
687
687
/** Returns all quick filters from a board, for a given board ID. */
688
688
async getAllQuickFilters < T = Models . GetAllQuickFilters > (
689
689
parameters : Parameters . GetAllQuickFilters ,
690
- callback ?: never
690
+ callback ?: never ,
691
691
) : Promise < T > ;
692
692
async getAllQuickFilters < T = Models . GetAllQuickFilters > (
693
693
parameters : Parameters . GetAllQuickFilters ,
@@ -711,7 +711,7 @@ export class Board {
711
711
*/
712
712
async getQuickFilter < T = Models . GetQuickFilter > (
713
713
parameters : Parameters . GetQuickFilter ,
714
- callback : Callback < T >
714
+ callback : Callback < T > ,
715
715
) : Promise < void > ;
716
716
/**
717
717
* Returns the quick filter for a given quick filter ID. The quick filter will only be returned if the user can view
@@ -732,11 +732,11 @@ export class Board {
732
732
733
733
async getReportsForBoard < T = Models . GetReportsForBoard > (
734
734
parameters : Parameters . GetReportsForBoard ,
735
- callback : Callback < T >
735
+ callback : Callback < T > ,
736
736
) : Promise < void > ;
737
737
async getReportsForBoard < T = Models . GetReportsForBoard > (
738
738
parameters : Parameters . GetReportsForBoard ,
739
- callback ?: never
739
+ callback ?: never ,
740
740
) : Promise < T > ;
741
741
async getReportsForBoard < T = Models . GetReportsForBoard > (
742
742
parameters : Parameters . GetReportsForBoard ,
@@ -756,7 +756,7 @@ export class Board {
756
756
*/
757
757
async getAllSprints < T = Paginated < Models . Sprint > > (
758
758
parameters : Parameters . GetAllSprints ,
759
- callback : Callback < T >
759
+ callback : Callback < T > ,
760
760
) : Promise < void > ;
761
761
/**
762
762
* Returns all sprints from a board, for a given board ID. This only includes sprints that the user has permission to
@@ -787,7 +787,7 @@ export class Board {
787
787
*/
788
788
async getBoardIssuesForSprint < T = unknown > (
789
789
parameters : Parameters . GetBoardIssuesForSprint ,
790
- callback : Callback < T >
790
+ callback : Callback < T > ,
791
791
) : Promise < void > ;
792
792
/**
793
793
* Get all issues you have access to that belong to the sprint from the board. Issue returned from this resource
@@ -796,7 +796,7 @@ export class Board {
796
796
*/
797
797
async getBoardIssuesForSprint < T = unknown > (
798
798
parameters : Parameters . GetBoardIssuesForSprint ,
799
- callback ?: never
799
+ callback ?: never ,
800
800
) : Promise < T > ;
801
801
async getBoardIssuesForSprint < T = unknown > (
802
802
parameters : Parameters . GetBoardIssuesForSprint ,
@@ -826,7 +826,7 @@ export class Board {
826
826
*/
827
827
async getAllVersions < T = Paginated < Models . Version > > (
828
828
parameters : Parameters . GetAllVersions ,
829
- callback : Callback < T >
829
+ callback : Callback < T > ,
830
830
) : Promise < void > ;
831
831
/**
832
832
* Returns all versions from a board, for a given board ID. This only includes versions that the user has permission
@@ -836,7 +836,7 @@ export class Board {
836
836
*/
837
837
async getAllVersions < T = Paginated < Models . Version > > (
838
838
parameters : Parameters . GetAllVersions ,
839
- callback ?: never
839
+ callback ?: never ,
840
840
) : Promise < T > ;
841
841
async getAllVersions < T = Paginated < Models . Version > > (
842
842
parameters : Parameters . GetAllVersions ,
0 commit comments