forked from MrRefactoring/jira.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrequest.ts
1105 lines (1048 loc) · 44.6 KB
/
request.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import * as Models from './models';
import * as Parameters from './parameters';
import { Callback } from '../callback';
import { Client } from '../clients';
import { RequestConfig } from '../requestConfig';
export class Request {
constructor(private client: Client) {}
/**
* This method returns all customer requests for the user executing the query.
*
* The returned customer requests are ordered chronologically by the latest activity on each request. For example, the
* latest status transition or comment.
*
* **[Permissions](https://developer.atlassian.com/cloud/jira/service-desk/rest/intro/#permissions) required**:
* Permission to access the specified service desk.
*
* **Response limitations**: For customers, the list returned will include request they created (or were created on
* their behalf) or are participating in only.
*/
async getCustomerRequests<T = Models.PagedCustomerRequest>(
parameters: Parameters.GetCustomerRequests | undefined,
callback: Callback<T>,
): Promise<void>;
/**
* This method returns all customer requests for the user executing the query.
*
* The returned customer requests are ordered chronologically by the latest activity on each request. For example, the
* latest status transition or comment.
*
* **[Permissions](https://developer.atlassian.com/cloud/jira/service-desk/rest/intro/#permissions) required**:
* Permission to access the specified service desk.
*
* **Response limitations**: For customers, the list returned will include request they created (or were created on
* their behalf) or are participating in only.
*/
async getCustomerRequests<T = Models.PagedCustomerRequest>(
parameters?: Parameters.GetCustomerRequests,
callback?: never,
): Promise<T>;
async getCustomerRequests<T = Models.PagedCustomerRequest>(
parameters?: Parameters.GetCustomerRequests,
callback?: Callback<T>,
): Promise<void | T> {
const config: RequestConfig = {
url: '/rest/servicedeskapi/request',
method: 'GET',
params: {
searchTerm: parameters?.searchTerm,
requestStatus: parameters?.requestStatus,
approvalStatus: parameters?.approvalStatus,
organizationId: parameters?.organizationId,
serviceDeskId: parameters?.serviceDeskId,
requestTypeId: parameters?.requestTypeId,
expand: parameters?.expand,
start: parameters?.start,
limit: parameters?.limit,
},
};
return this.client.sendRequest(config, callback);
}
/**
* This method creates a customer request in a service desk.
*
* The JSON request must include the service desk and customer request type, as well as any fields that are required
* for the request type. A list of the fields required by a customer request type can be obtained using
* [servicedesk/{serviceDeskId}/requesttype/{requestTypeId}/field](#api-servicedesk-serviceDeskId-requesttype-requestTypeId-field-get).
*
* The fields required for a customer request type depend on the user's permissions:
*
* - `raiseOnBehalfOf` is not available to Users who have the customer permission only.
* - `requestParticipants` is not available to Users who have the customer permission only or if the feature is turned
* off for customers.
*
* `requestFieldValues` is a map of Jira field IDs and their values. See [Field input formats](#fieldformats), for
* details of each field's JSON semantics and the values they can take.
*
* **[Permissions](https://developer.atlassian.com/cloud/jira/service-desk/rest/intro/#permissions) required**:
* Permission to create requests in the specified service desk.
*/
async createCustomerRequest<T = Models.CustomerRequest>(
parameters: Parameters.CreateCustomerRequest | undefined,
callback: Callback<T>,
): Promise<void>;
/**
* This method creates a customer request in a service desk.
*
* The JSON request must include the service desk and customer request type, as well as any fields that are required
* for the request type. A list of the fields required by a customer request type can be obtained using
* [servicedesk/{serviceDeskId}/requesttype/{requestTypeId}/field](#api-servicedesk-serviceDeskId-requesttype-requestTypeId-field-get).
*
* The fields required for a customer request type depend on the user's permissions:
*
* - `raiseOnBehalfOf` is not available to Users who have the customer permission only.
* - `requestParticipants` is not available to Users who have the customer permission only or if the feature is turned
* off for customers.
*
* `requestFieldValues` is a map of Jira field IDs and their values. See [Field input formats](#fieldformats), for
* details of each field's JSON semantics and the values they can take.
*
* **[Permissions](https://developer.atlassian.com/cloud/jira/service-desk/rest/intro/#permissions) required**:
* Permission to create requests in the specified service desk.
*/
async createCustomerRequest<T = Models.CustomerRequest>(
parameters?: Parameters.CreateCustomerRequest,
callback?: never,
): Promise<T>;
async createCustomerRequest<T = Models.CustomerRequest>(
parameters?: Parameters.CreateCustomerRequest,
callback?: Callback<T>,
): Promise<void | T> {
const config: RequestConfig = {
url: '/rest/servicedeskapi/request',
method: 'POST',
data: {
serviceDeskId: parameters?.serviceDeskId,
requestTypeId: parameters?.requestTypeId,
requestFieldValues: parameters?.requestFieldValues,
requestParticipants: parameters?.requestParticipants,
raiseOnBehalfOf: parameters?.raiseOnBehalfOf,
channel: parameters?.channel,
},
};
return this.client.sendRequest(config, callback);
}
/**
* This method returns a customer request.
*
* **[Permissions](https://developer.atlassian.com/cloud/jira/service-desk/rest/intro/#permissions) required**:
* Permission to access the specified service desk.
*
* **Response limitations**: For customers, only a request they created, was created on their behalf, or they are
* participating in will be returned.
*/
async getCustomerRequestByIdOrKey<T = Models.CustomerRequest>(
parameters: Parameters.GetCustomerRequestByIdOrKey,
callback: Callback<T>,
): Promise<void>;
/**
* This method returns a customer request.
*
* **[Permissions](https://developer.atlassian.com/cloud/jira/service-desk/rest/intro/#permissions) required**:
* Permission to access the specified service desk.
*
* **Response limitations**: For customers, only a request they created, was created on their behalf, or they are
* participating in will be returned.
*/
async getCustomerRequestByIdOrKey<T = Models.CustomerRequest>(
parameters: Parameters.GetCustomerRequestByIdOrKey,
callback?: never,
): Promise<T>;
async getCustomerRequestByIdOrKey<T = Models.CustomerRequest>(
parameters: Parameters.GetCustomerRequestByIdOrKey,
callback?: Callback<T>,
): Promise<void | T> {
const config: RequestConfig = {
url: `/rest/servicedeskapi/request/${parameters.issueIdOrKey}`,
method: 'GET',
params: {
expand: parameters.expand,
},
};
return this.client.sendRequest(config, callback);
}
/**
* This method returns all approvals on a customer request.
*
* **[Permissions](https://developer.atlassian.com/cloud/jira/service-desk/rest/intro/#permissions) required**:
* Permission to view the customer request.
*/
async getApprovals<T = Models.PagedApproval>(
parameters: Parameters.GetApprovals,
callback: Callback<T>,
): Promise<void>;
/**
* This method returns all approvals on a customer request.
*
* **[Permissions](https://developer.atlassian.com/cloud/jira/service-desk/rest/intro/#permissions) required**:
* Permission to view the customer request.
*/
async getApprovals<T = Models.PagedApproval>(parameters: Parameters.GetApprovals, callback?: never): Promise<T>;
async getApprovals<T = Models.PagedApproval>(
parameters: Parameters.GetApprovals,
callback?: Callback<T>,
): Promise<void | T> {
const config: RequestConfig = {
url: `/rest/servicedeskapi/request/${parameters.issueIdOrKey}/approval`,
method: 'GET',
params: {
start: parameters.start,
limit: parameters.limit,
},
};
return this.client.sendRequest(config, callback);
}
/**
* This method returns an approval. Use this method to determine the status of an approval and the list of approvers.
*
* **[Permissions](https://developer.atlassian.com/cloud/jira/service-desk/rest/intro/#permissions) required**:
* Permission to view the customer request.
*/
async getApprovalById<T = Models.Approval>(
parameters: Parameters.GetApprovalById,
callback: Callback<T>,
): Promise<void>;
/**
* This method returns an approval. Use this method to determine the status of an approval and the list of approvers.
*
* **[Permissions](https://developer.atlassian.com/cloud/jira/service-desk/rest/intro/#permissions) required**:
* Permission to view the customer request.
*/
async getApprovalById<T = Models.Approval>(parameters: Parameters.GetApprovalById, callback?: never): Promise<T>;
async getApprovalById<T = Models.Approval>(
parameters: Parameters.GetApprovalById,
callback?: Callback<T>,
): Promise<void | T> {
const config: RequestConfig = {
url: `/rest/servicedeskapi/request/${parameters.issueIdOrKey}/approval/${parameters.approvalId}`,
method: 'GET',
};
return this.client.sendRequest(config, callback);
}
/**
* This method enables a user to **Approve** or **Decline** an approval on a customer request. The approval is assumed
* to be owned by the user making the call.
*
* **[Permissions](https://developer.atlassian.com/cloud/jira/service-desk/rest/intro/#permissions) required**: User
* is assigned to the approval request.
*/
async answerApproval<T = Models.Approval>(
parameters: Parameters.AnswerApproval,
callback: Callback<T>,
): Promise<void>;
/**
* This method enables a user to **Approve** or **Decline** an approval on a customer request. The approval is assumed
* to be owned by the user making the call.
*
* **[Permissions](https://developer.atlassian.com/cloud/jira/service-desk/rest/intro/#permissions) required**: User
* is assigned to the approval request.
*/
async answerApproval<T = Models.Approval>(parameters: Parameters.AnswerApproval, callback?: never): Promise<T>;
async answerApproval<T = Models.Approval>(
parameters: Parameters.AnswerApproval,
callback?: Callback<T>,
): Promise<void | T> {
const config: RequestConfig = {
url: `/rest/servicedeskapi/request/${parameters.issueIdOrKey}/approval/${parameters.approvalId}`,
method: 'POST',
data: {
decision: parameters.decision,
},
};
return this.client.sendRequest(config, callback);
}
/**
* This method returns all the attachments for a customer requests.
*
* **[Permissions](https://developer.atlassian.com/cloud/jira/service-desk/rest/intro/#permissions) required**:
* Permission to view the customer request.
*
* **Response limitations**: Customers will only get a list of public attachments.
*/
async getAttachmentsForRequest<T = Models.PagedAttachment>(
parameters: Parameters.GetAttachmentsForRequest,
callback: Callback<T>,
): Promise<void>;
/**
* This method returns all the attachments for a customer requests.
*
* **[Permissions](https://developer.atlassian.com/cloud/jira/service-desk/rest/intro/#permissions) required**:
* Permission to view the customer request.
*
* **Response limitations**: Customers will only get a list of public attachments.
*/
async getAttachmentsForRequest<T = Models.PagedAttachment>(
parameters: Parameters.GetAttachmentsForRequest,
callback?: never,
): Promise<T>;
async getAttachmentsForRequest<T = Models.PagedAttachment>(
parameters: Parameters.GetAttachmentsForRequest,
callback?: Callback<T>,
): Promise<void | T> {
const config: RequestConfig = {
url: `/rest/servicedeskapi/request/${parameters.issueIdOrKey}/attachment`,
method: 'GET',
params: {
start: parameters.start,
limit: parameters.limit,
},
};
return this.client.sendRequest(config, callback);
}
/**
* This method adds one or more temporary files (attached to the request's service desk using
* [servicedesk/{serviceDeskId}/attachTemporaryFile](#api-servicedesk-serviceDeskId-attachTemporaryFile-post)) as
* attachments to a customer request and set the attachment visibility using the `public` flag. Also, it is possible
* to include a comment with the attachments.
*
* To get a list of attachments for a comment on the request use
* [servicedeskapi/request/{issueIdOrKey}/comment/{commentId}/attachment](#api-request-issueIdOrKey-comment-commentId-attachment-get).
*
* **[Permissions](https://developer.atlassian.com/cloud/jira/service-desk/rest/intro/#permissions) required**:
* Permission to add an attachment.
*
* **Request limitations**: Customers can set attachments to public visibility only.
*/
async createAttachment<T = Models.AttachmentCreateResult>(
parameters: Parameters.CreateAttachment,
callback: Callback<T>,
): Promise<void>;
/**
* This method adds one or more temporary files (attached to the request's service desk using
* [servicedesk/{serviceDeskId}/attachTemporaryFile](#api-servicedesk-serviceDeskId-attachTemporaryFile-post)) as
* attachments to a customer request and set the attachment visibility using the `public` flag. Also, it is possible
* to include a comment with the attachments.
*
* To get a list of attachments for a comment on the request use
* [servicedeskapi/request/{issueIdOrKey}/comment/{commentId}/attachment](#api-request-issueIdOrKey-comment-commentId-attachment-get).
*
* **[Permissions](https://developer.atlassian.com/cloud/jira/service-desk/rest/intro/#permissions) required**:
* Permission to add an attachment.
*
* **Request limitations**: Customers can set attachments to public visibility only.
*/
async createAttachment<T = Models.AttachmentCreateResult>(
parameters: Parameters.CreateAttachment,
callback?: never,
): Promise<T>;
async createAttachment<T = Models.AttachmentCreateResult>(
parameters: Parameters.CreateAttachment,
callback?: Callback<T>,
): Promise<void | T> {
const config: RequestConfig = {
url: `/rest/servicedeskapi/request/${parameters.issueIdOrKey}/attachment`,
method: 'POST',
data: {
temporaryAttachmentIds: parameters.temporaryAttachmentIds,
additionalComment: parameters.additionalComment,
public: parameters.public,
},
};
return this.client.sendRequest(config, callback);
}
/**
* Returns the contents of an attachment.
*
* To return a thumbnail of the attachment, use
* [servicedeskapi/request/{issueIdOrKey}/attachment/{attachmentId}/thumbnail](#api-rest-servicedeskapi-request-issueidorkey-attachment-attachmentid-thumbnail-get).
*
* **[Permissions](#permissions) required:** For the issue containing the attachment:
*
* - _Browse projects_ [project permission](https://confluence.atlassian.com/x/yodKLg) for the project that the issue is
* in.
* - If [issue-level security](https://confluence.atlassian.com/x/J4lKLg) is configured, issue-level security permission
* to view the issue.
*/
async getAttachmentContent<T = unknown>(
parameters: Parameters.GetAttachmentContent,
callback: Callback<T>,
): Promise<void>;
/**
* Returns the contents of an attachment.
*
* To return a thumbnail of the attachment, use
* [servicedeskapi/request/{issueIdOrKey}/attachment/{attachmentId}/thumbnail](#api-rest-servicedeskapi-request-issueidorkey-attachment-attachmentid-thumbnail-get).
*
* **[Permissions](#permissions) required:** For the issue containing the attachment:
*
* - _Browse projects_ [project permission](https://confluence.atlassian.com/x/yodKLg) for the project that the issue is
* in.
* - If [issue-level security](https://confluence.atlassian.com/x/J4lKLg) is configured, issue-level security permission
* to view the issue.
*/
async getAttachmentContent<T = unknown>(parameters: Parameters.GetAttachmentContent, callback?: never): Promise<T>;
async getAttachmentContent<T = unknown>(
parameters: Parameters.GetAttachmentContent,
callback?: Callback<T>,
): Promise<void | T> {
const config: RequestConfig = {
url: `/rest/servicedeskapi/request/${parameters.issueIdOrKey}/attachment/${parameters.attachmentId}`,
method: 'GET',
};
return this.client.sendRequest(config, callback);
}
/**
* Returns the thumbnail of an attachment.
*
* To return the attachment contents, use
* [servicedeskapi/request/{issueIdOrKey}/attachment/{attachmentId}](#api-rest-servicedeskapi-request-issueidorkey-attachment-attachmentid-get).
*
* **[Permissions](#permissions) required:** For the issue containing the attachment:
*
* - _Browse projects_ [project permission](https://confluence.atlassian.com/x/yodKLg) for the project that the issue is
* in.
* - If [issue-level security](https://confluence.atlassian.com/x/J4lKLg) is configured, issue-level security permission
* to view the issue.
*/
async getAttachmentThumbnail<T = unknown>(
parameters: Parameters.GetAttachmentThumbnail,
callback: Callback<T>,
): Promise<void>;
/**
* Returns the thumbnail of an attachment.
*
* To return the attachment contents, use
* [servicedeskapi/request/{issueIdOrKey}/attachment/{attachmentId}](#api-rest-servicedeskapi-request-issueidorkey-attachment-attachmentid-get).
*
* **[Permissions](#permissions) required:** For the issue containing the attachment:
*
* - _Browse projects_ [project permission](https://confluence.atlassian.com/x/yodKLg) for the project that the issue is
* in.
* - If [issue-level security](https://confluence.atlassian.com/x/J4lKLg) is configured, issue-level security permission
* to view the issue.
*/
async getAttachmentThumbnail<T = unknown>(
parameters: Parameters.GetAttachmentThumbnail,
callback?: never,
): Promise<T>;
async getAttachmentThumbnail<T = unknown>(
parameters: Parameters.GetAttachmentThumbnail,
callback?: Callback<T>,
): Promise<void | T> {
const config: RequestConfig = {
url: `/rest/servicedeskapi/request/${parameters.issueIdOrKey}/attachment/${parameters.attachmentId}/thumbnail`,
method: 'GET',
};
return this.client.sendRequest(config, callback);
}
/**
* This method returns all comments on a customer request. No permissions error is provided if, for example, the user
* doesn't have access to the service desk or request, the method simply returns an empty response.
*
* **[Permissions](https://developer.atlassian.com/cloud/jira/service-desk/rest/intro/#permissions) required**:
* Permission to view the customer request.
*
* **Response limitations**: Customers are returned public comments only.
*/
async getRequestComments<T = Models.PagedComment>(
parameters: Parameters.GetRequestComments,
callback: Callback<T>,
): Promise<void>;
/**
* This method returns all comments on a customer request. No permissions error is provided if, for example, the user
* doesn't have access to the service desk or request, the method simply returns an empty response.
*
* **[Permissions](https://developer.atlassian.com/cloud/jira/service-desk/rest/intro/#permissions) required**:
* Permission to view the customer request.
*
* **Response limitations**: Customers are returned public comments only.
*/
async getRequestComments<T = Models.PagedComment>(
parameters: Parameters.GetRequestComments,
callback?: never,
): Promise<T>;
async getRequestComments<T = Models.PagedComment>(
parameters: Parameters.GetRequestComments,
callback?: Callback<T>,
): Promise<void | T> {
const config: RequestConfig = {
url: `/rest/servicedeskapi/request/${parameters.issueIdOrKey}/comment`,
method: 'GET',
params: {
public: parameters.public,
internal: parameters.internal,
expand: parameters.expand,
start: parameters.start,
limit: parameters.limit,
},
};
return this.client.sendRequest(config, callback);
}
/**
* This method creates a public or private (internal) comment on a customer request, with the comment visibility set
* by `public`. The user recorded as the author of the comment.
*
* **[Permissions](https://developer.atlassian.com/cloud/jira/service-desk/rest/intro/#permissions) required**: User
* has Add Comments permission.
*
* **Request limitations**: Customers can set comments to public visibility only.
*/
async createRequestComment<T = Models.Comment>(
parameters: Parameters.CreateRequestComment,
callback: Callback<T>,
): Promise<void>;
/**
* This method creates a public or private (internal) comment on a customer request, with the comment visibility set
* by `public`. The user recorded as the author of the comment.
*
* **[Permissions](https://developer.atlassian.com/cloud/jira/service-desk/rest/intro/#permissions) required**: User
* has Add Comments permission.
*
* **Request limitations**: Customers can set comments to public visibility only.
*/
async createRequestComment<T = Models.Comment>(
parameters: Parameters.CreateRequestComment,
callback?: never,
): Promise<T>;
async createRequestComment<T = Models.Comment>(
parameters: Parameters.CreateRequestComment,
callback?: Callback<T>,
): Promise<void | T> {
const config: RequestConfig = {
url: `/rest/servicedeskapi/request/${parameters.issueIdOrKey}/comment`,
method: 'POST',
data: {
body: parameters.body,
public: parameters.public,
},
};
return this.client.sendRequest(config, callback);
}
/**
* This method returns details of a customer request's comment.
*
* **[Permissions](https://developer.atlassian.com/cloud/jira/service-desk/rest/intro/#permissions) required**:
* Permission to view the customer request.
*
* **Response limitations**: Customers can only view public comments on requests where they are the reporter or a
* participant whereas agents can see both internal and public comments.
*/
async getRequestCommentById<T = Models.Comment>(
parameters: Parameters.GetRequestCommentById,
callback: Callback<T>,
): Promise<void>;
/**
* This method returns details of a customer request's comment.
*
* **[Permissions](https://developer.atlassian.com/cloud/jira/service-desk/rest/intro/#permissions) required**:
* Permission to view the customer request.
*
* **Response limitations**: Customers can only view public comments on requests where they are the reporter or a
* participant whereas agents can see both internal and public comments.
*/
async getRequestCommentById<T = Models.Comment>(
parameters: Parameters.GetRequestCommentById,
callback?: never,
): Promise<T>;
async getRequestCommentById<T = Models.Comment>(
parameters: Parameters.GetRequestCommentById,
callback?: Callback<T>,
): Promise<void | T> {
const config: RequestConfig = {
url: `/rest/servicedeskapi/request/${parameters.issueIdOrKey}/comment/${parameters.commentId}`,
method: 'GET',
params: {
expand: parameters.expand,
},
};
return this.client.sendRequest(config, callback);
}
/**
* This method returns the attachments referenced in a comment.
*
* **[Permissions](https://developer.atlassian.com/cloud/jira/service-desk/rest/intro/#permissions) required**:
* Permission to view the customer request.
*
* **Response limitations**: Customers can only view public comments, and retrieve their attachments, on requests
* where they are the reporter or a participant whereas agents can see both internal and public comments.
*/
async getCommentAttachments<T = Models.PagedAttachment>(
parameters: Parameters.GetCommentAttachments,
callback: Callback<T>,
): Promise<void>;
/**
* This method returns the attachments referenced in a comment.
*
* **[Permissions](https://developer.atlassian.com/cloud/jira/service-desk/rest/intro/#permissions) required**:
* Permission to view the customer request.
*
* **Response limitations**: Customers can only view public comments, and retrieve their attachments, on requests
* where they are the reporter or a participant whereas agents can see both internal and public comments.
*/
async getCommentAttachments<T = Models.PagedAttachment>(
parameters: Parameters.GetCommentAttachments,
callback?: never,
): Promise<T>;
async getCommentAttachments<T = Models.PagedAttachment>(
parameters: Parameters.GetCommentAttachments,
callback?: Callback<T>,
): Promise<void | T> {
const config: RequestConfig = {
url: `/rest/servicedeskapi/request/${parameters.issueIdOrKey}/comment/${parameters.commentId}/attachment`,
method: 'GET',
headers: {
'X-ExperimentalApi': 'opt-in',
},
params: {
start: parameters.start,
limit: parameters.limit,
},
};
return this.client.sendRequest(config, callback);
}
/**
* This method returns the notification subscription status of the user making the request. Use this method to
* determine if the user is subscribed to a customer request's notifications.
*
* **[Permissions](https://developer.atlassian.com/cloud/jira/service-desk/rest/intro/#permissions) required**:
* Permission to view the customer request.
*/
async getSubscriptionStatus<T = Models.RequestNotificationSubscription>(
parameters: Parameters.GetSubscriptionStatus,
callback: Callback<T>,
): Promise<void>;
/**
* This method returns the notification subscription status of the user making the request. Use this method to
* determine if the user is subscribed to a customer request's notifications.
*
* **[Permissions](https://developer.atlassian.com/cloud/jira/service-desk/rest/intro/#permissions) required**:
* Permission to view the customer request.
*/
async getSubscriptionStatus<T = Models.RequestNotificationSubscription>(
parameters: Parameters.GetSubscriptionStatus,
callback?: never,
): Promise<T>;
async getSubscriptionStatus<T = Models.RequestNotificationSubscription>(
parameters: Parameters.GetSubscriptionStatus,
callback?: Callback<T>,
): Promise<void | T> {
const config: RequestConfig = {
url: `/rest/servicedeskapi/request/${parameters.issueIdOrKey}/notification`,
method: 'GET',
};
return this.client.sendRequest(config, callback);
}
/**
* This method subscribes the user to receiving notifications from a customer request.
*
* **[Permissions](https://developer.atlassian.com/cloud/jira/service-desk/rest/intro/#permissions) required**:
* Permission to view the customer request.
*/
async subscribe<T = void>(parameters: Parameters.Subscribe, callback: Callback<T>): Promise<void>;
/**
* This method subscribes the user to receiving notifications from a customer request.
*
* **[Permissions](https://developer.atlassian.com/cloud/jira/service-desk/rest/intro/#permissions) required**:
* Permission to view the customer request.
*/
async subscribe<T = void>(parameters: Parameters.Subscribe, callback?: never): Promise<T>;
async subscribe<T = void>(parameters: Parameters.Subscribe, callback?: Callback<T>): Promise<void | T> {
const config: RequestConfig = {
url: `/rest/servicedeskapi/request/${parameters.issueIdOrKey}/notification`,
method: 'PUT',
};
return this.client.sendRequest(config, callback);
}
/**
* This method unsubscribes the user from notifications from a customer request.
*
* **[Permissions](https://developer.atlassian.com/cloud/jira/service-desk/rest/intro/#permissions) required**:
* Permission to view the customer request.
*/
async unsubscribe<T = void>(parameters: Parameters.Unsubscribe, callback: Callback<T>): Promise<void>;
/**
* This method unsubscribes the user from notifications from a customer request.
*
* **[Permissions](https://developer.atlassian.com/cloud/jira/service-desk/rest/intro/#permissions) required**:
* Permission to view the customer request.
*/
async unsubscribe<T = void>(parameters: Parameters.Unsubscribe, callback?: never): Promise<T>;
async unsubscribe<T = void>(parameters: Parameters.Unsubscribe, callback?: Callback<T>): Promise<void | T> {
const config: RequestConfig = {
url: `/rest/servicedeskapi/request/${parameters.issueIdOrKey}/notification`,
method: 'DELETE',
};
return this.client.sendRequest(config, callback);
}
/**
* This method returns a list of all the participants on a customer request.
*
* **[Permissions](https://developer.atlassian.com/cloud/jira/service-desk/rest/intro/#permissions) required**:
* Permission to view the customer request.
*/
async getRequestParticipants<T = Models.PagedUser>(
parameters: Parameters.GetRequestParticipants,
callback: Callback<T>,
): Promise<void>;
/**
* This method returns a list of all the participants on a customer request.
*
* **[Permissions](https://developer.atlassian.com/cloud/jira/service-desk/rest/intro/#permissions) required**:
* Permission to view the customer request.
*/
async getRequestParticipants<T = Models.PagedUser>(
parameters: Parameters.GetRequestParticipants,
callback?: never,
): Promise<T>;
async getRequestParticipants<T = Models.PagedUser>(
parameters: Parameters.GetRequestParticipants,
callback?: Callback<T>,
): Promise<void | T> {
const config: RequestConfig = {
url: `/rest/servicedeskapi/request/${parameters.issueIdOrKey}/participant`,
method: 'GET',
params: {
start: parameters.start,
limit: parameters.limit,
},
};
return this.client.sendRequest(config, callback);
}
/**
* This method adds participants to a customer request.
*
* **[Permissions](https://developer.atlassian.com/cloud/jira/service-desk/rest/intro/#permissions) required**:
* Permission to manage participants on the customer request.
*
* Note, participants can be added when creating a customer request using the
* [request](https://developer.atlassian.com/cloud/jira/service-desk/rest/api-group-request/) resource, by defining
* the participants in the `requestParticipants` field.
*/
async addRequestParticipants<T = Models.PagedUser>(
parameters: Parameters.AddRequestParticipants,
callback: Callback<T>,
): Promise<void>;
/**
* This method adds participants to a customer request.
*
* **[Permissions](https://developer.atlassian.com/cloud/jira/service-desk/rest/intro/#permissions) required**:
* Permission to manage participants on the customer request.
*
* Note, participants can be added when creating a customer request using the
* [request](https://developer.atlassian.com/cloud/jira/service-desk/rest/api-group-request/) resource, by defining
* the participants in the `requestParticipants` field.
*/
async addRequestParticipants<T = Models.PagedUser>(
parameters: Parameters.AddRequestParticipants,
callback?: never,
): Promise<T>;
async addRequestParticipants<T = Models.PagedUser>(
parameters: Parameters.AddRequestParticipants,
callback?: Callback<T>,
): Promise<void | T> {
const config: RequestConfig = {
url: `/rest/servicedeskapi/request/${parameters.issueIdOrKey}/participant`,
method: 'POST',
data: {
usernames: parameters.usernames,
accountIds: parameters.accountIds,
},
};
return this.client.sendRequest(config, callback);
}
/**
* This method removes participants from a customer request.
*
* **[Permissions](https://developer.atlassian.com/cloud/jira/service-desk/rest/intro/#permissions) required**:
* Permission to manage participants on the customer request.
*/
async removeRequestParticipants<T = Models.PagedUser>(
parameters: Parameters.RemoveRequestParticipants,
callback: Callback<T>,
): Promise<void>;
/**
* This method removes participants from a customer request.
*
* **[Permissions](https://developer.atlassian.com/cloud/jira/service-desk/rest/intro/#permissions) required**:
* Permission to manage participants on the customer request.
*/
async removeRequestParticipants<T = Models.PagedUser>(
parameters: Parameters.RemoveRequestParticipants,
callback?: never,
): Promise<T>;
async removeRequestParticipants<T = Models.PagedUser>(
parameters: Parameters.RemoveRequestParticipants,
callback?: Callback<T>,
): Promise<void | T> {
const config: RequestConfig = {
url: `/rest/servicedeskapi/request/${parameters.issueIdOrKey}/participant`,
method: 'DELETE',
data: {
usernames: parameters.usernames,
accountIds: parameters.accountIds,
},
};
return this.client.sendRequest(config, callback);
}
/**
* This method returns all the SLA records on a customer request. A customer request can have zero or more SLAs. Each
* SLA can have recordings for zero or more "completed cycles" and zero or 1 "ongoing cycle". Each cycle includes
* information on when it started and stopped, and whether it breached the SLA goal.
*
* **[Permissions](https://developer.atlassian.com/cloud/jira/service-desk/rest/intro/#permissions) required**: Agent
* for the Service Desk containing the queried customer request.
*/
async getSlaInformation<T = Models.PagedSlaInformation>(
parameters: Parameters.GetSlaInformation,
callback: Callback<T>,
): Promise<void>;
/**
* This method returns all the SLA records on a customer request. A customer request can have zero or more SLAs. Each
* SLA can have recordings for zero or more "completed cycles" and zero or 1 "ongoing cycle". Each cycle includes
* information on when it started and stopped, and whether it breached the SLA goal.
*
* **[Permissions](https://developer.atlassian.com/cloud/jira/service-desk/rest/intro/#permissions) required**: Agent
* for the Service Desk containing the queried customer request.
*/
async getSlaInformation<T = Models.PagedSlaInformation>(
parameters: Parameters.GetSlaInformation,
callback?: never,
): Promise<T>;
async getSlaInformation<T = Models.PagedSlaInformation>(
parameters: Parameters.GetSlaInformation,
callback?: Callback<T>,
): Promise<void | T> {
const config: RequestConfig = {
url: `/rest/servicedeskapi/request/${parameters.issueIdOrKey}/sla`,
method: 'GET',
params: {
start: parameters.start,
limit: parameters.limit,
},
};
return this.client.sendRequest(config, callback);
}
/**
* This method returns the details for an SLA on a customer request.
*
* **[Permissions](https://developer.atlassian.com/cloud/jira/service-desk/rest/intro/#permissions) required**: Agent
* for the Service Desk containing the queried customer request.
*/
async getSlaInformationById<T = Models.SlaInformation>(
parameters: Parameters.GetSlaInformationById,
callback: Callback<T>,
): Promise<void>;
/**
* This method returns the details for an SLA on a customer request.
*
* **[Permissions](https://developer.atlassian.com/cloud/jira/service-desk/rest/intro/#permissions) required**: Agent
* for the Service Desk containing the queried customer request.
*/
async getSlaInformationById<T = Models.SlaInformation>(
parameters: Parameters.GetSlaInformationById,
callback?: never,
): Promise<T>;
async getSlaInformationById<T = Models.SlaInformation>(
parameters: Parameters.GetSlaInformationById,
callback?: Callback<T>,
): Promise<void | T> {
const config: RequestConfig = {
url: `/rest/servicedeskapi/request/${parameters.issueIdOrKey}/sla/${parameters.slaMetricId}`,
method: 'GET',
};
return this.client.sendRequest(config, callback);
}
/**
* This method returns a list of all the statuses a customer Request has achieved. A status represents the state of an
* issue in its workflow. An issue can have one active status only. The list returns the status history in
* chronological order, most recent (current) status first.
*
* **[Permissions](https://developer.atlassian.com/cloud/jira/service-desk/rest/intro/#permissions) required**:
* Permission to view the customer request.
*/
async getCustomerRequestStatus<T = Models.PagedCustomerRequestStatus>(
parameters: Parameters.GetCustomerRequestStatus,
callback: Callback<T>,
): Promise<void>;
/**
* This method returns a list of all the statuses a customer Request has achieved. A status represents the state of an
* issue in its workflow. An issue can have one active status only. The list returns the status history in
* chronological order, most recent (current) status first.
*
* **[Permissions](https://developer.atlassian.com/cloud/jira/service-desk/rest/intro/#permissions) required**:
* Permission to view the customer request.
*/
async getCustomerRequestStatus<T = Models.PagedCustomerRequestStatus>(
parameters: Parameters.GetCustomerRequestStatus,
callback?: never,
): Promise<T>;
async getCustomerRequestStatus<T = Models.PagedCustomerRequestStatus>(
parameters: Parameters.GetCustomerRequestStatus,
callback?: Callback<T>,
): Promise<void | T> {
const config: RequestConfig = {
url: `/rest/servicedeskapi/request/${parameters.issueIdOrKey}/status`,
method: 'GET',
params: {
start: parameters.start,
limit: parameters.limit,
},
};
return this.client.sendRequest(config, callback);
}
/**
* This method returns a list of transitions, the workflow processes that moves a customer request from one status to
* another, that the user can perform on a request. Use this method to provide a user with a list if the actions they
* can take on a customer request.
*
* **[Permissions](https://developer.atlassian.com/cloud/jira/service-desk/rest/intro/#permissions) required**:
* Permission to view the customer request.
*/
async getCustomerTransitions<T = Models.PagedCustomerTransition>(
parameters: Parameters.GetCustomerTransitions,
callback: Callback<T>,
): Promise<void>;
/**
* This method returns a list of transitions, the workflow processes that moves a customer request from one status to
* another, that the user can perform on a request. Use this method to provide a user with a list if the actions they
* can take on a customer request.
*
* **[Permissions](https://developer.atlassian.com/cloud/jira/service-desk/rest/intro/#permissions) required**:
* Permission to view the customer request.
*/
async getCustomerTransitions<T = Models.PagedCustomerTransition>(
parameters: Parameters.GetCustomerTransitions,
callback?: never,
): Promise<T>;
async getCustomerTransitions<T = Models.PagedCustomerTransition>(
parameters: Parameters.GetCustomerTransitions,
callback?: Callback<T>,
): Promise<void | T> {
const config: RequestConfig = {
url: `/rest/servicedeskapi/request/${parameters.issueIdOrKey}/transition`,
method: 'GET',
params: {
start: parameters.start,
limit: parameters.limit,
},
};
return this.client.sendRequest(config, callback);
}
/**
* This method performs a customer transition for a given request and transition. An optional comment can be included
* to provide a reason for the transition.
*
* **[Permissions](https://developer.atlassian.com/cloud/jira/service-desk/rest/intro/#permissions) required**: The
* user must be able to view the request and have the Transition Issues permission. If a comment is passed the user
* must have the Add Comments permission.
*/
async performCustomerTransition<T = void>(
parameters: Parameters.PerformCustomerTransition,
callback: Callback<T>,
): Promise<void>;
/**
* This method performs a customer transition for a given request and transition. An optional comment can be included
* to provide a reason for the transition.
*
* **[Permissions](https://developer.atlassian.com/cloud/jira/service-desk/rest/intro/#permissions) required**: The
* user must be able to view the request and have the Transition Issues permission. If a comment is passed the user
* must have the Add Comments permission.
*/
async performCustomerTransition<T = void>(
parameters: Parameters.PerformCustomerTransition,
callback?: never,
): Promise<T>;
async performCustomerTransition<T = void>(
parameters: Parameters.PerformCustomerTransition,
callback?: Callback<T>,
): Promise<void | T> {
const config: RequestConfig = {
url: `/rest/servicedeskapi/request/${parameters.issueIdOrKey}/transition`,