forked from MrRefactoring/jira.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfilters.ts
624 lines (592 loc) · 25.6 KB
/
filters.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
import * as Models from './models';
import * as Parameters from './parameters';
import { Callback } from '../callback';
import { Client } from '../clients';
import { RequestConfig } from '../requestConfig';
export class Filters {
constructor(private client: Client) {}
/**
* Creates a filter. The filter is shared according to the [default share scope](#api-rest-api-2-filter-post). The
* filter is not selected as a favorite.
*
* **[Permissions](https://developer.atlassian.com/cloud/jira/platform/rest/v2/intro/#permissions) required:**
* Permission to access Jira.
*/
async createFilter<T = Models.Filter>(parameters: Parameters.CreateFilter, callback: Callback<T>): Promise<void>;
/**
* Creates a filter. The filter is shared according to the [default share scope](#api-rest-api-2-filter-post). The
* filter is not selected as a favorite.
*
* **[Permissions](https://developer.atlassian.com/cloud/jira/platform/rest/v2/intro/#permissions) required:**
* Permission to access Jira.
*/
async createFilter<T = Models.Filter>(parameters: Parameters.CreateFilter, callback?: never): Promise<T>;
async createFilter<T = Models.Filter>(
parameters: Parameters.CreateFilter,
callback?: Callback<T>,
): Promise<void | T> {
const config: RequestConfig = {
url: '/rest/api/2/filter',
method: 'POST',
params: {
expand: parameters?.expand,
overrideSharePermissions: parameters?.overrideSharePermissions,
},
data: {
description: parameters.description,
editPermissions: parameters.editPermissions,
favourite: parameters.favourite,
favouritedCount: parameters.favouritedCount,
id: parameters.id,
jql: parameters.jql,
name: parameters.name,
owner: parameters.owner,
searchUrl: parameters.searchUrl,
self: parameters.self,
sharePermissions: parameters.sharePermissions,
sharedUsers: parameters.sharedUsers,
subscriptions: parameters.subscriptions,
viewUrl: parameters.viewUrl,
},
};
return this.client.sendRequest(config, callback);
}
/**
* Returns the visible favorite filters of the user.
*
* This operation can be accessed anonymously.
*
* **[Permissions](https://developer.atlassian.com/cloud/jira/platform/rest/v2/intro/#permissions) required:** A
* favorite filter is only visible to the user where the filter is:
*
* - Owned by the user.
* - Shared with a group that the user is a member of.
* - Shared with a private project that the user has _Browse projects_ [project
* permission](https://confluence.atlassian.com/x/yodKLg) for.
* - Shared with a public project.
* - Shared with the public.
*
* For example, if the user favorites a public filter that is subsequently made private that filter is not returned by
* this operation.
*/
async getFavouriteFilters<T = Models.Filter[]>(
parameters: Parameters.GetFavouriteFilters | undefined,
callback: Callback<T>,
): Promise<void>;
/**
* Returns the visible favorite filters of the user.
*
* This operation can be accessed anonymously.
*
* **[Permissions](https://developer.atlassian.com/cloud/jira/platform/rest/v2/intro/#permissions) required:** A
* favorite filter is only visible to the user where the filter is:
*
* - Owned by the user.
* - Shared with a group that the user is a member of.
* - Shared with a private project that the user has _Browse projects_ [project
* permission](https://confluence.atlassian.com/x/yodKLg) for.
* - Shared with a public project.
* - Shared with the public.
*
* For example, if the user favorites a public filter that is subsequently made private that filter is not returned by
* this operation.
*/
async getFavouriteFilters<T = Models.Filter[]>(
parameters?: Parameters.GetFavouriteFilters,
callback?: never,
): Promise<T>;
async getFavouriteFilters<T = Models.Filter[]>(
parameters?: Parameters.GetFavouriteFilters,
callback?: Callback<T>,
): Promise<void | T> {
const config: RequestConfig = {
url: '/rest/api/2/filter/favourite',
method: 'GET',
params: {
expand: parameters?.expand,
},
};
return this.client.sendRequest(config, callback);
}
/**
* Returns the filters owned by the user. If `includeFavourites` is `true`, the user's visible favorite filters are
* also returned.
*
* **[Permissions](https://developer.atlassian.com/cloud/jira/platform/rest/v2/intro/#permissions) required:**
* Permission to access Jira, however, a favorite filters is only visible to the user where the filter is:
*
* - Owned by the user.
* - Shared with a group that the user is a member of.
* - Shared with a private project that the user has _Browse projects_ [project
* permission](https://confluence.atlassian.com/x/yodKLg) for.
* - Shared with a public project.
* - Shared with the public.
*
* For example, if the user favorites a public filter that is subsequently made private that filter is not returned by
* this operation.
*/
async getMyFilters<T = Models.Filter[]>(
parameters: Parameters.GetMyFilters | undefined,
callback: Callback<T>,
): Promise<void>;
/**
* Returns the filters owned by the user. If `includeFavourites` is `true`, the user's visible favorite filters are
* also returned.
*
* **[Permissions](https://developer.atlassian.com/cloud/jira/platform/rest/v2/intro/#permissions) required:**
* Permission to access Jira, however, a favorite filters is only visible to the user where the filter is:
*
* - Owned by the user.
* - Shared with a group that the user is a member of.
* - Shared with a private project that the user has _Browse projects_ [project
* permission](https://confluence.atlassian.com/x/yodKLg) for.
* - Shared with a public project.
* - Shared with the public.
*
* For example, if the user favorites a public filter that is subsequently made private that filter is not returned by
* this operation.
*/
async getMyFilters<T = Models.Filter[]>(parameters?: Parameters.GetMyFilters, callback?: never): Promise<T>;
async getMyFilters<T = Models.Filter[]>(
parameters?: Parameters.GetMyFilters,
callback?: Callback<T>,
): Promise<void | T> {
const config: RequestConfig = {
url: '/rest/api/2/filter/my',
method: 'GET',
params: {
expand: parameters?.expand,
includeFavourites: parameters?.includeFavourites,
},
};
return this.client.sendRequest(config, callback);
}
/**
* Returns a [paginated](https://developer.atlassian.com/cloud/jira/platform/rest/v2/intro/#pagination) list of
* filters. Use this operation to get:
*
* - Specific filters, by defining `id` only.
* - Filters that match all of the specified attributes. For example, all filters for a user with a particular word in
* their name. When multiple attributes are specified only filters matching all attributes are returned.
*
* This operation can be accessed anonymously.
*
* **[Permissions](https://developer.atlassian.com/cloud/jira/platform/rest/v2/intro/#permissions) required:** None,
* however, only the following filters that match the query parameters are returned:
*
* - Filters owned by the user.
* - Filters shared with a group that the user is a member of.
* - Filters shared with a private project that the user has _Browse projects_ [project
* permission](https://confluence.atlassian.com/x/yodKLg) for.
* - Filters shared with a public project.
* - Filters shared with the public.
*/
async getFiltersPaginated<T = Models.PageFilterDetails>(
parameters: Parameters.GetFiltersPaginated | undefined,
callback: Callback<T>,
): Promise<void>;
/**
* Returns a [paginated](https://developer.atlassian.com/cloud/jira/platform/rest/v2/intro/#pagination) list of
* filters. Use this operation to get:
*
* - Specific filters, by defining `id` only.
* - Filters that match all of the specified attributes. For example, all filters for a user with a particular word in
* their name. When multiple attributes are specified only filters matching all attributes are returned.
*
* This operation can be accessed anonymously.
*
* **[Permissions](https://developer.atlassian.com/cloud/jira/platform/rest/v2/intro/#permissions) required:** None,
* however, only the following filters that match the query parameters are returned:
*
* - Filters owned by the user.
* - Filters shared with a group that the user is a member of.
* - Filters shared with a private project that the user has _Browse projects_ [project
* permission](https://confluence.atlassian.com/x/yodKLg) for.
* - Filters shared with a public project.
* - Filters shared with the public.
*/
async getFiltersPaginated<T = Models.PageFilterDetails>(
parameters?: Parameters.GetFiltersPaginated,
callback?: never,
): Promise<T>;
async getFiltersPaginated<T = Models.PageFilterDetails>(
parameters?: Parameters.GetFiltersPaginated,
callback?: Callback<T>,
): Promise<void | T> {
const config: RequestConfig = {
url: '/rest/api/2/filter/search',
method: 'GET',
params: {
filterName: parameters?.filterName,
accountId: parameters?.accountId,
groupname: parameters?.groupname,
groupId: parameters?.groupId,
projectId: parameters?.projectId,
id: parameters?.id,
orderBy: parameters?.orderBy,
startAt: parameters?.startAt,
maxResults: parameters?.maxResults,
expand: parameters?.expand,
overrideSharePermissions: parameters?.overrideSharePermissions,
},
};
return this.client.sendRequest(config, callback);
}
/**
* Returns a filter.
*
* This operation can be accessed anonymously.
*
* **[Permissions](https://developer.atlassian.com/cloud/jira/platform/rest/v2/intro/#permissions) required:** None,
* however, the filter is only returned where it is:
*
* - Owned by the user.
* - Shared with a group that the user is a member of.
* - Shared with a private project that the user has _Browse projects_ [project
* permission](https://confluence.atlassian.com/x/yodKLg) for.
* - Shared with a public project.
* - Shared with the public.
*/
async getFilter<T = Models.Filter>(parameters: Parameters.GetFilter | string, callback: Callback<T>): Promise<void>;
/**
* Returns a filter.
*
* This operation can be accessed anonymously.
*
* **[Permissions](https://developer.atlassian.com/cloud/jira/platform/rest/v2/intro/#permissions) required:** None,
* however, the filter is only returned where it is:
*
* - Owned by the user.
* - Shared with a group that the user is a member of.
* - Shared with a private project that the user has _Browse projects_ [project
* permission](https://confluence.atlassian.com/x/yodKLg) for.
* - Shared with a public project.
* - Shared with the public.
*/
async getFilter<T = Models.Filter>(parameters: Parameters.GetFilter | string, callback?: never): Promise<T>;
async getFilter<T = Models.Filter>(
parameters: Parameters.GetFilter | string,
callback?: Callback<T>,
): Promise<void | T> {
const id = typeof parameters === 'string' ? parameters : parameters.id;
const config: RequestConfig = {
url: `/rest/api/2/filter/${id}`,
method: 'GET',
params: {
expand: typeof parameters !== 'string' && parameters.expand,
overrideSharePermissions: typeof parameters !== 'string' && parameters.overrideSharePermissions,
},
};
return this.client.sendRequest(config, callback);
}
/**
* Updates a filter. Use this operation to update a filter's name, description, JQL, or sharing.
*
* **[Permissions](https://developer.atlassian.com/cloud/jira/platform/rest/v2/intro/#permissions) required:**
* Permission to access Jira, however the user must own the filter.
*/
async updateFilter<T = Models.Filter>(parameters: Parameters.UpdateFilter, callback: Callback<T>): Promise<void>;
/**
* Updates a filter. Use this operation to update a filter's name, description, JQL, or sharing.
*
* **[Permissions](https://developer.atlassian.com/cloud/jira/platform/rest/v2/intro/#permissions) required:**
* Permission to access Jira, however the user must own the filter.
*/
async updateFilter<T = Models.Filter>(parameters: Parameters.UpdateFilter, callback?: never): Promise<T>;
async updateFilter<T = Models.Filter>(
parameters: Parameters.UpdateFilter,
callback?: Callback<T>,
): Promise<void | T> {
const config: RequestConfig = {
url: `/rest/api/2/filter/${parameters.id}`,
method: 'PUT',
params: {
expand: parameters.expand,
overrideSharePermissions: parameters.overrideSharePermissions,
},
data: {
name: parameters.name,
description: parameters.description,
jql: parameters.jql,
favourite: parameters.favourite,
sharePermissions: parameters.sharePermissions,
},
};
return this.client.sendRequest(config, callback);
}
/**
* Delete a filter.
*
* **[Permissions](https://developer.atlassian.com/cloud/jira/platform/rest/v2/intro/#permissions) required:**
* Permission to access Jira, however filters can only be deleted by the creator of the filter or a user with
* _Administer Jira_ [global permission](https://confluence.atlassian.com/x/x4dKLg).
*/
async deleteFilter<T = void>(parameters: Parameters.DeleteFilter | string, callback: Callback<T>): Promise<void>;
/**
* Delete a filter.
*
* **[Permissions](https://developer.atlassian.com/cloud/jira/platform/rest/v2/intro/#permissions) required:**
* Permission to access Jira, however filters can only be deleted by the creator of the filter or a user with
* _Administer Jira_ [global permission](https://confluence.atlassian.com/x/x4dKLg).
*/
async deleteFilter<T = void>(parameters: Parameters.DeleteFilter | string, callback?: never): Promise<T>;
async deleteFilter<T = void>(
parameters: Parameters.DeleteFilter | string,
callback?: Callback<T>,
): Promise<void | T> {
const id = typeof parameters === 'string' ? parameters : parameters.id;
const config: RequestConfig = {
url: `/rest/api/2/filter/${id}`,
method: 'DELETE',
};
return this.client.sendRequest(config, callback);
}
/**
* Returns the columns configured for a filter. The column configuration is used when the filter's results are viewed
* in _List View_ with the _Columns_ set to _Filter_.
*
* This operation can be accessed anonymously.
*
* **[Permissions](https://developer.atlassian.com/cloud/jira/platform/rest/v2/intro/#permissions) required:** None,
* however, column details are only returned for:
*
* - Filters owned by the user.
* - Filters shared with a group that the user is a member of.
* - Filters shared with a private project that the user has _Browse projects_ [project
* permission](https://confluence.atlassian.com/x/yodKLg) for.
* - Filters shared with a public project.
* - Filters shared with the public.
*/
async getColumns<T = Models.ColumnItem[]>(
parameters: Parameters.GetColumns | string,
callback: Callback<T>,
): Promise<void>;
/**
* Returns the columns configured for a filter. The column configuration is used when the filter's results are viewed
* in _List View_ with the _Columns_ set to _Filter_.
*
* This operation can be accessed anonymously.
*
* **[Permissions](https://developer.atlassian.com/cloud/jira/platform/rest/v2/intro/#permissions) required:** None,
* however, column details are only returned for:
*
* - Filters owned by the user.
* - Filters shared with a group that the user is a member of.
* - Filters shared with a private project that the user has _Browse projects_ [project
* permission](https://confluence.atlassian.com/x/yodKLg) for.
* - Filters shared with a public project.
* - Filters shared with the public.
*/
async getColumns<T = Models.ColumnItem[]>(parameters: Parameters.GetColumns | string, callback?: never): Promise<T>;
async getColumns<T = Models.ColumnItem[]>(
parameters: Parameters.GetColumns | string,
callback?: Callback<T>,
): Promise<void | T> {
const id = typeof parameters === 'string' ? parameters : parameters.id;
const config: RequestConfig = {
url: `/rest/api/2/filter/${id}/columns`,
method: 'GET',
};
return this.client.sendRequest(config, callback);
}
/**
* Sets the columns for a filter. Only navigable fields can be set as columns. Use [Get
* fields](#api-rest-api-2-field-get) to get the list fields in Jira. A navigable field has `navigable` set to
* `true`.
*
* The parameters for this resource are expressed as HTML form data. For example, in curl:
*
* `curl -X PUT -d columns=summary -d columns=description
* https://your-domain.atlassian.net/rest/api/2/filter/10000/columns`
*
* **[Permissions](https://developer.atlassian.com/cloud/jira/platform/rest/v2/intro/#permissions) required:**
* Permission to access Jira, however, columns are only set for:
*
* - Filters owned by the user.
* - Filters shared with a group that the user is a member of.
* - Filters shared with a private project that the user has _Browse projects_ [project
* permission](https://confluence.atlassian.com/x/yodKLg) for.
* - Filters shared with a public project.
* - Filters shared with the public.
*/
async setColumns<T = unknown>(parameters: Parameters.SetColumns, callback: Callback<T>): Promise<void>;
/**
* Sets the columns for a filter. Only navigable fields can be set as columns. Use [Get
* fields](#api-rest-api-2-field-get) to get the list fields in Jira. A navigable field has `navigable` set to
* `true`.
*
* The parameters for this resource are expressed as HTML form data. For example, in curl:
*
* `curl -X PUT -d columns=summary -d columns=description
* https://your-domain.atlassian.net/rest/api/2/filter/10000/columns`
*
* **[Permissions](https://developer.atlassian.com/cloud/jira/platform/rest/v2/intro/#permissions) required:**
* Permission to access Jira, however, columns are only set for:
*
* - Filters owned by the user.
* - Filters shared with a group that the user is a member of.
* - Filters shared with a private project that the user has _Browse projects_ [project
* permission](https://confluence.atlassian.com/x/yodKLg) for.
* - Filters shared with a public project.
* - Filters shared with the public.
*/
async setColumns<T = unknown>(parameters: Parameters.SetColumns, callback?: never): Promise<T>;
async setColumns<T = unknown>(parameters: Parameters.SetColumns, callback?: Callback<T>): Promise<void | T> {
const config: RequestConfig = {
url: `/rest/api/2/filter/${parameters.id}/columns`,
method: 'PUT',
data: parameters.columns,
};
return this.client.sendRequest(config, callback);
}
/**
* Reset the user's column configuration for the filter to the default.
*
* **[Permissions](https://developer.atlassian.com/cloud/jira/platform/rest/v2/intro/#permissions) required:**
* Permission to access Jira, however, columns are only reset for:
*
* - Filters owned by the user.
* - Filters shared with a group that the user is a member of.
* - Filters shared with a private project that the user has _Browse projects_ [project
* permission](https://confluence.atlassian.com/x/yodKLg) for.
* - Filters shared with a public project.
* - Filters shared with the public.
*/
async resetColumns<T = void>(parameters: Parameters.ResetColumns, callback: Callback<T>): Promise<void>;
/**
* Reset the user's column configuration for the filter to the default.
*
* **[Permissions](https://developer.atlassian.com/cloud/jira/platform/rest/v2/intro/#permissions) required:**
* Permission to access Jira, however, columns are only reset for:
*
* - Filters owned by the user.
* - Filters shared with a group that the user is a member of.
* - Filters shared with a private project that the user has _Browse projects_ [project
* permission](https://confluence.atlassian.com/x/yodKLg) for.
* - Filters shared with a public project.
* - Filters shared with the public.
*/
async resetColumns<T = void>(parameters: Parameters.ResetColumns, callback?: never): Promise<T>;
async resetColumns<T = void>(parameters: Parameters.ResetColumns, callback?: Callback<T>): Promise<void | T> {
const config: RequestConfig = {
url: `/rest/api/2/filter/${parameters.id}/columns`,
method: 'DELETE',
};
return this.client.sendRequest(config, callback);
}
/**
* Add a filter as a favorite for the user.
*
* **[Permissions](https://developer.atlassian.com/cloud/jira/platform/rest/v2/intro/#permissions) required:**
* Permission to access Jira, however, the user can only favorite:
*
* - Filters owned by the user.
* - Filters shared with a group that the user is a member of.
* - Filters shared with a private project that the user has _Browse projects_ [project
* permission](https://confluence.atlassian.com/x/yodKLg) for.
* - Filters shared with a public project.
* - Filters shared with the public.
*/
async setFavouriteForFilter<T = Models.Filter>(
parameters: Parameters.SetFavouriteForFilter | string,
callback: Callback<T>,
): Promise<void>;
/**
* Add a filter as a favorite for the user.
*
* **[Permissions](https://developer.atlassian.com/cloud/jira/platform/rest/v2/intro/#permissions) required:**
* Permission to access Jira, however, the user can only favorite:
*
* - Filters owned by the user.
* - Filters shared with a group that the user is a member of.
* - Filters shared with a private project that the user has _Browse projects_ [project
* permission](https://confluence.atlassian.com/x/yodKLg) for.
* - Filters shared with a public project.
* - Filters shared with the public.
*/
async setFavouriteForFilter<T = Models.Filter>(
parameters: Parameters.SetFavouriteForFilter | string,
callback?: never,
): Promise<T>;
async setFavouriteForFilter<T = Models.Filter>(
parameters: Parameters.SetFavouriteForFilter | string,
callback?: Callback<T>,
): Promise<void | T> {
const id = typeof parameters === 'string' ? parameters : parameters.id;
const config: RequestConfig = {
url: `/rest/api/2/filter/${id}/favourite`,
method: 'PUT',
params: {
expand: typeof parameters !== 'string' && parameters.expand,
},
};
return this.client.sendRequest(config, callback);
}
/**
* Removes a filter as a favorite for the user. Note that this operation only removes filters visible to the user from
* the user's favorites list. For example, if the user favorites a public filter that is subsequently made private
* (and is therefore no longer visible on their favorites list) they cannot remove it from their favorites list.
*
* **[Permissions](https://developer.atlassian.com/cloud/jira/platform/rest/v2/intro/#permissions) required:**
* Permission to access Jira.
*/
async deleteFavouriteForFilter<T = Models.Filter>(
parameters: Parameters.DeleteFavouriteForFilter | string,
callback: Callback<T>,
): Promise<void>;
/**
* Removes a filter as a favorite for the user. Note that this operation only removes filters visible to the user from
* the user's favorites list. For example, if the user favorites a public filter that is subsequently made private
* (and is therefore no longer visible on their favorites list) they cannot remove it from their favorites list.
*
* **[Permissions](https://developer.atlassian.com/cloud/jira/platform/rest/v2/intro/#permissions) required:**
* Permission to access Jira.
*/
async deleteFavouriteForFilter<T = Models.Filter>(
parameters: Parameters.DeleteFavouriteForFilter | string,
callback?: never,
): Promise<T>;
async deleteFavouriteForFilter<T = Models.Filter>(
parameters: Parameters.DeleteFavouriteForFilter | string,
callback?: Callback<T>,
): Promise<void | T> {
const id = typeof parameters === 'string' ? parameters : parameters.id;
const config: RequestConfig = {
url: `/rest/api/2/filter/${id}/favourite`,
method: 'DELETE',
params: {
expand: typeof parameters !== 'string' && parameters.expand,
},
};
return this.client.sendRequest(config, callback);
}
/**
* Changes the owner of the filter.
*
* **[Permissions](https://developer.atlassian.com/cloud/jira/platform/rest/v2/intro/#permissions) required:**
* Permission to access Jira. However, the user must own the filter or have the _Administer Jira_ [global
* permission](https://confluence.atlassian.com/x/x4dKLg).
*/
async changeFilterOwner<T = void>(parameters: Parameters.ChangeFilterOwner, callback: Callback<T>): Promise<void>;
/**
* Changes the owner of the filter.
*
* **[Permissions](https://developer.atlassian.com/cloud/jira/platform/rest/v2/intro/#permissions) required:**
* Permission to access Jira. However, the user must own the filter or have the _Administer Jira_ [global
* permission](https://confluence.atlassian.com/x/x4dKLg).
*/
async changeFilterOwner<T = void>(parameters: Parameters.ChangeFilterOwner, callback?: never): Promise<T>;
async changeFilterOwner<T = void>(
parameters: Parameters.ChangeFilterOwner,
callback?: Callback<T>,
): Promise<void | T> {
const config: RequestConfig = {
url: `/rest/api/2/filter/${parameters.id}/owner`,
method: 'PUT',
data: {
accountId: parameters.accountId,
},
};
return this.client.sendRequest(config, callback);
}
}