@corsair-dev/jira 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (39) hide show
  1. package/LICENSE +191 -0
  2. package/dist/client.d.ts +41 -0
  3. package/dist/client.d.ts.map +1 -0
  4. package/dist/endpoints/comments.d.ts +7 -0
  5. package/dist/endpoints/comments.d.ts.map +1 -0
  6. package/dist/endpoints/index.d.ts +582 -0
  7. package/dist/endpoints/index.d.ts.map +1 -0
  8. package/dist/endpoints/issues.d.ts +16 -0
  9. package/dist/endpoints/issues.d.ts.map +1 -0
  10. package/dist/endpoints/projects.d.ts +6 -0
  11. package/dist/endpoints/projects.d.ts.map +1 -0
  12. package/dist/endpoints/sprints.d.ts +6 -0
  13. package/dist/endpoints/sprints.d.ts.map +1 -0
  14. package/dist/endpoints/types.d.ts +5540 -0
  15. package/dist/endpoints/types.d.ts.map +1 -0
  16. package/dist/endpoints/users.d.ts +7 -0
  17. package/dist/endpoints/users.d.ts.map +1 -0
  18. package/dist/error-handlers.d.ts +28 -0
  19. package/dist/error-handlers.d.ts.map +1 -0
  20. package/dist/index.d.ts +3028 -0
  21. package/dist/index.d.ts.map +1 -0
  22. package/dist/index.js +1 -0
  23. package/dist/schema/database.d.ts +197 -0
  24. package/dist/schema/database.d.ts.map +1 -0
  25. package/dist/schema/index.d.ts +196 -0
  26. package/dist/schema/index.d.ts.map +1 -0
  27. package/dist/tsup.config.d.ts +3 -0
  28. package/dist/tsup.config.d.ts.map +1 -0
  29. package/dist/webhooks/index.d.ts +274 -0
  30. package/dist/webhooks/index.d.ts.map +1 -0
  31. package/dist/webhooks/newIssue.d.ts +3 -0
  32. package/dist/webhooks/newIssue.d.ts.map +1 -0
  33. package/dist/webhooks/newProject.d.ts +3 -0
  34. package/dist/webhooks/newProject.d.ts.map +1 -0
  35. package/dist/webhooks/types.d.ts +1818 -0
  36. package/dist/webhooks/types.d.ts.map +1 -0
  37. package/dist/webhooks/updatedIssue.d.ts +3 -0
  38. package/dist/webhooks/updatedIssue.d.ts.map +1 -0
  39. package/package.json +40 -0
@@ -0,0 +1,582 @@
1
+ export declare const Issues: {
2
+ create: (ctx: import("..").JiraContext, args: {
3
+ summary: string;
4
+ project_key: string;
5
+ priority?: string | undefined;
6
+ description?: string | undefined;
7
+ assignee?: string | undefined;
8
+ labels?: string[] | undefined;
9
+ issue_type?: string | undefined;
10
+ due_date?: string | undefined;
11
+ parent?: string | undefined;
12
+ }) => Promise<{
13
+ key?: string | undefined;
14
+ id?: string | undefined;
15
+ self?: string | undefined;
16
+ }>;
17
+ get: (ctx: import("..").JiraContext, args: {
18
+ issue_id_or_key: string;
19
+ fields?: string | undefined;
20
+ expand?: string | undefined;
21
+ }) => Promise<{
22
+ id: string;
23
+ key?: string | undefined;
24
+ self?: string | undefined;
25
+ fields?: {
26
+ priority?: {
27
+ id?: string | undefined;
28
+ name?: string | undefined;
29
+ iconUrl?: string | undefined;
30
+ } | null | undefined;
31
+ status?: {
32
+ id?: string | undefined;
33
+ name?: string | undefined;
34
+ statusCategory?: {
35
+ key?: string | undefined;
36
+ id?: number | undefined;
37
+ name?: string | undefined;
38
+ } | undefined;
39
+ } | undefined;
40
+ description?: unknown;
41
+ summary?: string | undefined;
42
+ assignee?: {
43
+ accountId?: string | undefined;
44
+ displayName?: string | undefined;
45
+ emailAddress?: string | undefined;
46
+ active?: boolean | undefined;
47
+ avatarUrls?: Record<string, string> | undefined;
48
+ } | null | undefined;
49
+ reporter?: {
50
+ accountId?: string | undefined;
51
+ displayName?: string | undefined;
52
+ emailAddress?: string | undefined;
53
+ active?: boolean | undefined;
54
+ avatarUrls?: Record<string, string> | undefined;
55
+ } | undefined;
56
+ issuetype?: {
57
+ id?: string | undefined;
58
+ name?: string | undefined;
59
+ description?: string | undefined;
60
+ subtask?: boolean | undefined;
61
+ } | undefined;
62
+ project?: {
63
+ key?: string | undefined;
64
+ id?: string | undefined;
65
+ name?: string | undefined;
66
+ } | undefined;
67
+ labels?: string[] | undefined;
68
+ created?: string | undefined;
69
+ updated?: string | undefined;
70
+ comment?: {
71
+ total?: number | undefined;
72
+ comments?: unknown[] | undefined;
73
+ } | undefined;
74
+ } | undefined;
75
+ }>;
76
+ edit: (ctx: import("..").JiraContext, args: {
77
+ issue_id_or_key: string;
78
+ priority?: string | undefined;
79
+ description?: string | undefined;
80
+ summary?: string | undefined;
81
+ assignee?: string | undefined;
82
+ labels?: string[] | undefined;
83
+ due_date?: string | undefined;
84
+ notify_users?: boolean | undefined;
85
+ }) => Promise<{
86
+ success: boolean;
87
+ issue_key?: string | undefined;
88
+ }>;
89
+ delete: (ctx: import("..").JiraContext, args: {
90
+ issue_id_or_key: string;
91
+ delete_subtasks?: boolean | undefined;
92
+ }) => Promise<{
93
+ success: boolean;
94
+ message?: string | undefined;
95
+ }>;
96
+ search: (ctx: import("..").JiraContext, args: {
97
+ jql: string;
98
+ fields?: string | undefined;
99
+ expand?: string | undefined;
100
+ start_at?: number | undefined;
101
+ max_results?: number | undefined;
102
+ }) => Promise<{
103
+ issues?: {
104
+ id: string;
105
+ key?: string | undefined;
106
+ self?: string | undefined;
107
+ fields?: {
108
+ priority?: {
109
+ id?: string | undefined;
110
+ name?: string | undefined;
111
+ iconUrl?: string | undefined;
112
+ } | null | undefined;
113
+ status?: {
114
+ id?: string | undefined;
115
+ name?: string | undefined;
116
+ statusCategory?: {
117
+ key?: string | undefined;
118
+ id?: number | undefined;
119
+ name?: string | undefined;
120
+ } | undefined;
121
+ } | undefined;
122
+ description?: unknown;
123
+ summary?: string | undefined;
124
+ assignee?: {
125
+ accountId?: string | undefined;
126
+ displayName?: string | undefined;
127
+ emailAddress?: string | undefined;
128
+ active?: boolean | undefined;
129
+ avatarUrls?: Record<string, string> | undefined;
130
+ } | null | undefined;
131
+ reporter?: {
132
+ accountId?: string | undefined;
133
+ displayName?: string | undefined;
134
+ emailAddress?: string | undefined;
135
+ active?: boolean | undefined;
136
+ avatarUrls?: Record<string, string> | undefined;
137
+ } | undefined;
138
+ issuetype?: {
139
+ id?: string | undefined;
140
+ name?: string | undefined;
141
+ description?: string | undefined;
142
+ subtask?: boolean | undefined;
143
+ } | undefined;
144
+ project?: {
145
+ key?: string | undefined;
146
+ id?: string | undefined;
147
+ name?: string | undefined;
148
+ } | undefined;
149
+ labels?: string[] | undefined;
150
+ created?: string | undefined;
151
+ updated?: string | undefined;
152
+ comment?: {
153
+ total?: number | undefined;
154
+ comments?: unknown[] | undefined;
155
+ } | undefined;
156
+ } | undefined;
157
+ }[] | undefined;
158
+ total?: number | undefined;
159
+ startAt?: number | undefined;
160
+ maxResults?: number | undefined;
161
+ }>;
162
+ assign: (ctx: import("..").JiraContext, args: {
163
+ issue_id_or_key: string;
164
+ account_id?: string | null | undefined;
165
+ }) => Promise<{
166
+ success: boolean;
167
+ }>;
168
+ getTransitions: (ctx: import("..").JiraContext, args: {
169
+ issue_id_or_key: string;
170
+ }) => Promise<{
171
+ transitions?: {
172
+ id?: string | undefined;
173
+ name?: string | undefined;
174
+ to?: {
175
+ id?: string | undefined;
176
+ name?: string | undefined;
177
+ statusCategory?: {
178
+ key?: string | undefined;
179
+ id?: number | undefined;
180
+ name?: string | undefined;
181
+ } | undefined;
182
+ } | undefined;
183
+ }[] | undefined;
184
+ }>;
185
+ transition: (ctx: import("..").JiraContext, args: {
186
+ issue_id_or_key: string;
187
+ transition_id: string;
188
+ comment?: string | undefined;
189
+ }) => Promise<{
190
+ success: boolean;
191
+ }>;
192
+ bulkCreate: (ctx: import("..").JiraContext, args: {
193
+ issues: {
194
+ summary: string;
195
+ project_key: string;
196
+ priority?: string | undefined;
197
+ description?: string | undefined;
198
+ assignee?: string | undefined;
199
+ issue_type?: string | undefined;
200
+ }[];
201
+ }) => Promise<{
202
+ issues?: {
203
+ key?: string | undefined;
204
+ id?: string | undefined;
205
+ self?: string | undefined;
206
+ }[] | undefined;
207
+ errors?: unknown[] | undefined;
208
+ }>;
209
+ bulkFetch: (ctx: import("..").JiraContext, args: {
210
+ issue_ids_or_keys: string[];
211
+ fields?: string[] | undefined;
212
+ expand?: string | undefined;
213
+ }) => Promise<{
214
+ issues?: {
215
+ id: string;
216
+ key?: string | undefined;
217
+ self?: string | undefined;
218
+ fields?: {
219
+ priority?: {
220
+ id?: string | undefined;
221
+ name?: string | undefined;
222
+ iconUrl?: string | undefined;
223
+ } | null | undefined;
224
+ status?: {
225
+ id?: string | undefined;
226
+ name?: string | undefined;
227
+ statusCategory?: {
228
+ key?: string | undefined;
229
+ id?: number | undefined;
230
+ name?: string | undefined;
231
+ } | undefined;
232
+ } | undefined;
233
+ description?: unknown;
234
+ summary?: string | undefined;
235
+ assignee?: {
236
+ accountId?: string | undefined;
237
+ displayName?: string | undefined;
238
+ emailAddress?: string | undefined;
239
+ active?: boolean | undefined;
240
+ avatarUrls?: Record<string, string> | undefined;
241
+ } | null | undefined;
242
+ reporter?: {
243
+ accountId?: string | undefined;
244
+ displayName?: string | undefined;
245
+ emailAddress?: string | undefined;
246
+ active?: boolean | undefined;
247
+ avatarUrls?: Record<string, string> | undefined;
248
+ } | undefined;
249
+ issuetype?: {
250
+ id?: string | undefined;
251
+ name?: string | undefined;
252
+ description?: string | undefined;
253
+ subtask?: boolean | undefined;
254
+ } | undefined;
255
+ project?: {
256
+ key?: string | undefined;
257
+ id?: string | undefined;
258
+ name?: string | undefined;
259
+ } | undefined;
260
+ labels?: string[] | undefined;
261
+ created?: string | undefined;
262
+ updated?: string | undefined;
263
+ comment?: {
264
+ total?: number | undefined;
265
+ comments?: unknown[] | undefined;
266
+ } | undefined;
267
+ } | undefined;
268
+ }[] | undefined;
269
+ issueErrors?: unknown[] | undefined;
270
+ }>;
271
+ addAttachment: (ctx: import("..").JiraContext, args: {
272
+ issue_id_or_key: string;
273
+ file_name: string;
274
+ file_content?: string | undefined;
275
+ file_url?: string | undefined;
276
+ mime_type?: string | undefined;
277
+ }) => Promise<{
278
+ id?: string | undefined;
279
+ created?: string | undefined;
280
+ self?: string | undefined;
281
+ filename?: string | undefined;
282
+ mimeType?: string | undefined;
283
+ size?: number | undefined;
284
+ content?: string | undefined;
285
+ }[]>;
286
+ addWatcher: (ctx: import("..").JiraContext, args: {
287
+ account_id: string;
288
+ issue_id_or_key: string;
289
+ }) => Promise<{
290
+ success: boolean;
291
+ }>;
292
+ removeWatcher: (ctx: import("..").JiraContext, args: {
293
+ account_id: string;
294
+ issue_id_or_key: string;
295
+ }) => Promise<{
296
+ success: boolean;
297
+ }>;
298
+ linkIssues: (ctx: import("..").JiraContext, args: {
299
+ link_type: string;
300
+ inward_issue_key: string;
301
+ outward_issue_key: string;
302
+ comment?: string | undefined;
303
+ }) => Promise<{
304
+ success: boolean;
305
+ }>;
306
+ };
307
+ export declare const Comments: {
308
+ add: (ctx: import("..").JiraContext, args: {
309
+ comment: string;
310
+ issue_id_or_key: string;
311
+ visibility_type?: string | undefined;
312
+ visibility_value?: string | undefined;
313
+ }) => Promise<{
314
+ id?: string | undefined;
315
+ created?: string | undefined;
316
+ self?: string | undefined;
317
+ author?: {
318
+ accountId?: string | undefined;
319
+ displayName?: string | undefined;
320
+ emailAddress?: string | undefined;
321
+ active?: boolean | undefined;
322
+ avatarUrls?: Record<string, string> | undefined;
323
+ } | undefined;
324
+ }>;
325
+ get: (ctx: import("..").JiraContext, args: {
326
+ issue_id_or_key: string;
327
+ comment_id: string;
328
+ }) => Promise<{
329
+ body?: unknown;
330
+ id?: string | undefined;
331
+ created?: string | undefined;
332
+ updated?: string | undefined;
333
+ self?: string | undefined;
334
+ author?: {
335
+ accountId?: string | undefined;
336
+ displayName?: string | undefined;
337
+ emailAddress?: string | undefined;
338
+ active?: boolean | undefined;
339
+ avatarUrls?: Record<string, string> | undefined;
340
+ } | undefined;
341
+ renderedBody?: string | undefined;
342
+ }>;
343
+ list: (ctx: import("..").JiraContext, args: {
344
+ issue_id_or_key: string;
345
+ start_at?: number | undefined;
346
+ max_results?: number | undefined;
347
+ order_by?: string | undefined;
348
+ }) => Promise<{
349
+ total?: number | undefined;
350
+ comments?: {
351
+ body?: unknown;
352
+ id?: string | undefined;
353
+ created?: string | undefined;
354
+ updated?: string | undefined;
355
+ self?: string | undefined;
356
+ author?: {
357
+ accountId?: string | undefined;
358
+ displayName?: string | undefined;
359
+ emailAddress?: string | undefined;
360
+ active?: boolean | undefined;
361
+ avatarUrls?: Record<string, string> | undefined;
362
+ } | undefined;
363
+ renderedBody?: string | undefined;
364
+ }[] | undefined;
365
+ startAt?: number | undefined;
366
+ maxResults?: number | undefined;
367
+ }>;
368
+ update: (ctx: import("..").JiraContext, args: {
369
+ comment: string;
370
+ issue_id_or_key: string;
371
+ comment_id: string;
372
+ }) => Promise<{
373
+ body?: unknown;
374
+ id?: string | undefined;
375
+ created?: string | undefined;
376
+ updated?: string | undefined;
377
+ self?: string | undefined;
378
+ author?: {
379
+ accountId?: string | undefined;
380
+ displayName?: string | undefined;
381
+ emailAddress?: string | undefined;
382
+ active?: boolean | undefined;
383
+ avatarUrls?: Record<string, string> | undefined;
384
+ } | undefined;
385
+ renderedBody?: string | undefined;
386
+ }>;
387
+ delete: (ctx: import("..").JiraContext, args: {
388
+ issue_id_or_key: string;
389
+ comment_id: string;
390
+ }) => Promise<{
391
+ success: boolean;
392
+ }>;
393
+ };
394
+ export declare const Projects: {
395
+ create: (ctx: import("..").JiraContext, args: {
396
+ key: string;
397
+ name: string;
398
+ description?: string | undefined;
399
+ project_type_key?: string | undefined;
400
+ lead_account_id?: string | undefined;
401
+ assignee_type?: string | undefined;
402
+ }) => Promise<{
403
+ key?: string | undefined;
404
+ id?: string | number | undefined;
405
+ self?: string | undefined;
406
+ }>;
407
+ get: (ctx: import("..").JiraContext, args: {
408
+ project_id_or_key: string;
409
+ expand?: string | undefined;
410
+ }) => Promise<{
411
+ key?: string | undefined;
412
+ id?: string | undefined;
413
+ name?: string | undefined;
414
+ description?: string | undefined;
415
+ self?: string | undefined;
416
+ projectTypeKey?: string | undefined;
417
+ lead?: {
418
+ accountId?: string | undefined;
419
+ displayName?: string | undefined;
420
+ emailAddress?: string | undefined;
421
+ active?: boolean | undefined;
422
+ avatarUrls?: Record<string, string> | undefined;
423
+ } | undefined;
424
+ }>;
425
+ list: (ctx: import("..").JiraContext, args: {
426
+ query?: string | undefined;
427
+ expand?: string | undefined;
428
+ start_at?: number | undefined;
429
+ max_results?: number | undefined;
430
+ order_by?: string | undefined;
431
+ }) => Promise<{
432
+ values?: {
433
+ key?: string | undefined;
434
+ id?: string | undefined;
435
+ name?: string | undefined;
436
+ description?: string | undefined;
437
+ self?: string | undefined;
438
+ projectTypeKey?: string | undefined;
439
+ lead?: {
440
+ accountId?: string | undefined;
441
+ displayName?: string | undefined;
442
+ emailAddress?: string | undefined;
443
+ active?: boolean | undefined;
444
+ avatarUrls?: Record<string, string> | undefined;
445
+ } | undefined;
446
+ }[] | undefined;
447
+ total?: number | undefined;
448
+ startAt?: number | undefined;
449
+ maxResults?: number | undefined;
450
+ isLast?: boolean | undefined;
451
+ }>;
452
+ getRoles: (ctx: import("..").JiraContext, args: {
453
+ project_id_or_key: string;
454
+ }) => Promise<Record<string, string>>;
455
+ };
456
+ export declare const Sprints: {
457
+ create: (ctx: import("..").JiraContext, args: {
458
+ name: string;
459
+ origin_board_id: number;
460
+ goal?: string | undefined;
461
+ start_date?: string | undefined;
462
+ end_date?: string | undefined;
463
+ }) => Promise<{
464
+ id?: number | undefined;
465
+ name?: string | undefined;
466
+ self?: string | undefined;
467
+ state?: string | undefined;
468
+ goal?: string | undefined;
469
+ startDate?: string | undefined;
470
+ endDate?: string | undefined;
471
+ completeDate?: string | undefined;
472
+ createdDate?: string | undefined;
473
+ originBoardId?: number | undefined;
474
+ }>;
475
+ list: (ctx: import("..").JiraContext, args: {
476
+ board_id: number;
477
+ state?: string | undefined;
478
+ start_at?: number | undefined;
479
+ max_results?: number | undefined;
480
+ }) => Promise<{
481
+ values?: {
482
+ id?: number | undefined;
483
+ name?: string | undefined;
484
+ self?: string | undefined;
485
+ state?: string | undefined;
486
+ goal?: string | undefined;
487
+ startDate?: string | undefined;
488
+ endDate?: string | undefined;
489
+ completeDate?: string | undefined;
490
+ createdDate?: string | undefined;
491
+ originBoardId?: number | undefined;
492
+ }[] | undefined;
493
+ startAt?: number | undefined;
494
+ maxResults?: number | undefined;
495
+ isLast?: boolean | undefined;
496
+ }>;
497
+ moveIssues: (ctx: import("..").JiraContext, args: {
498
+ sprint_id: number;
499
+ issue_keys: string[];
500
+ }) => Promise<{
501
+ success: boolean;
502
+ }>;
503
+ listBoards: (ctx: import("..").JiraContext, args: {
504
+ type?: string | undefined;
505
+ name?: string | undefined;
506
+ start_at?: number | undefined;
507
+ max_results?: number | undefined;
508
+ project_key_or_id?: string | undefined;
509
+ }) => Promise<{
510
+ values?: {
511
+ location?: {
512
+ projectId?: number | undefined;
513
+ projectKey?: string | undefined;
514
+ projectName?: string | undefined;
515
+ } | undefined;
516
+ type?: string | undefined;
517
+ id?: number | undefined;
518
+ name?: string | undefined;
519
+ self?: string | undefined;
520
+ }[] | undefined;
521
+ total?: number | undefined;
522
+ startAt?: number | undefined;
523
+ maxResults?: number | undefined;
524
+ isLast?: boolean | undefined;
525
+ }>;
526
+ };
527
+ export declare const Users: {
528
+ getCurrent: (ctx: import("..").JiraContext, args: {}) => Promise<{
529
+ accountId: string;
530
+ displayName?: string | undefined;
531
+ emailAddress?: string | undefined;
532
+ active?: boolean | undefined;
533
+ avatarUrls?: Record<string, string> | undefined;
534
+ timeZone?: string | undefined;
535
+ locale?: string | undefined;
536
+ }>;
537
+ find: (ctx: import("..").JiraContext, args: {
538
+ query?: string | undefined;
539
+ account_id?: string | undefined;
540
+ start_at?: number | undefined;
541
+ max_results?: number | undefined;
542
+ }) => Promise<{
543
+ accountId?: string | undefined;
544
+ displayName?: string | undefined;
545
+ emailAddress?: string | undefined;
546
+ active?: boolean | undefined;
547
+ avatarUrls?: Record<string, string> | undefined;
548
+ }[]>;
549
+ getAll: (ctx: import("..").JiraContext, args: {
550
+ start_at?: number | undefined;
551
+ max_results?: number | undefined;
552
+ }) => Promise<{
553
+ accountId?: string | undefined;
554
+ displayName?: string | undefined;
555
+ emailAddress?: string | undefined;
556
+ active?: boolean | undefined;
557
+ avatarUrls?: Record<string, string> | undefined;
558
+ }[]>;
559
+ };
560
+ export declare const Groups: {
561
+ getAll: (ctx: import("..").JiraContext, args: {
562
+ start_at?: number | undefined;
563
+ max_results?: number | undefined;
564
+ }) => Promise<{
565
+ total?: number | undefined;
566
+ header?: string | undefined;
567
+ groups?: {
568
+ name?: string | undefined;
569
+ groupId?: string | undefined;
570
+ html?: string | undefined;
571
+ }[] | undefined;
572
+ }>;
573
+ create: (ctx: import("..").JiraContext, args: {
574
+ name: string;
575
+ }) => Promise<{
576
+ name?: string | undefined;
577
+ self?: string | undefined;
578
+ groupId?: string | undefined;
579
+ }>;
580
+ };
581
+ export * from './types';
582
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../endpoints/index.ts"],"names":[],"mappings":"AAMA,eAAO,MAAM,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAelB,CAAC;AAEF,eAAO,MAAM,QAAQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMpB,CAAC;AAEF,eAAO,MAAM,QAAQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAKpB,CAAC;AAEF,eAAO,MAAM,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAKnB,CAAC;AAEF,eAAO,MAAM,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAIjB,CAAC;AAEF,eAAO,MAAM,MAAM;;;;;;;;;;;;;;;;;;;;CAGlB,CAAC;AAEF,cAAc,SAAS,CAAC"}
@@ -0,0 +1,16 @@
1
+ import type { JiraEndpoints } from '..';
2
+ export declare const create: JiraEndpoints['issuesCreate'];
3
+ export declare const get: JiraEndpoints['issuesGet'];
4
+ export declare const edit: JiraEndpoints['issuesEdit'];
5
+ export declare const deleteIssue: JiraEndpoints['issuesDelete'];
6
+ export declare const search: JiraEndpoints['issuesSearch'];
7
+ export declare const assign: JiraEndpoints['issuesAssign'];
8
+ export declare const getTransitions: JiraEndpoints['issuesGetTransitions'];
9
+ export declare const transition: JiraEndpoints['issuesTransition'];
10
+ export declare const bulkCreate: JiraEndpoints['issuesBulkCreate'];
11
+ export declare const bulkFetch: JiraEndpoints['issuesBulkFetch'];
12
+ export declare const addAttachment: JiraEndpoints['issuesAddAttachment'];
13
+ export declare const addWatcher: JiraEndpoints['issuesAddWatcher'];
14
+ export declare const removeWatcher: JiraEndpoints['issuesRemoveWatcher'];
15
+ export declare const linkIssues: JiraEndpoints['issuesLinkIssues'];
16
+ //# sourceMappingURL=issues.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"issues.d.ts","sourceRoot":"","sources":["../../endpoints/issues.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,IAAI,CAAC;AAIxC,eAAO,MAAM,MAAM,EAAE,aAAa,CAAC,cAAc,CA0ChD,CAAC;AAEF,eAAO,MAAM,GAAG,EAAE,aAAa,CAAC,WAAW,CA2C1C,CAAC;AAEF,eAAO,MAAM,IAAI,EAAE,aAAa,CAAC,YAAY,CA6B5C,CAAC;AAEF,eAAO,MAAM,WAAW,EAAE,aAAa,CAAC,cAAc,CAarD,CAAC;AAEF,eAAO,MAAM,MAAM,EAAE,aAAa,CAAC,cAAc,CA2ChD,CAAC;AAEF,eAAO,MAAM,MAAM,EAAE,aAAa,CAAC,cAAc,CAgBhD,CAAC;AAEF,eAAO,MAAM,cAAc,EAAE,aAAa,CAAC,sBAAsB,CAUhE,CAAC;AAEF,eAAO,MAAM,UAAU,EAAE,aAAa,CAAC,kBAAkB,CAkBxD,CAAC;AAEF,eAAO,MAAM,UAAU,EAAE,aAAa,CAAC,kBAAkB,CA+CxD,CAAC;AAEF,eAAO,MAAM,SAAS,EAAE,aAAa,CAAC,iBAAiB,CAyCtD,CAAC;AAEF,eAAO,MAAM,aAAa,EAAE,aAAa,CAAC,qBAAqB,CAc9D,CAAC;AAEF,eAAO,MAAM,UAAU,EAAE,aAAa,CAAC,kBAAkB,CAcxD,CAAC;AAEF,eAAO,MAAM,aAAa,EAAE,aAAa,CAAC,qBAAqB,CAa9D,CAAC;AAEF,eAAO,MAAM,UAAU,EAAE,aAAa,CAAC,kBAAkB,CAkBxD,CAAC"}
@@ -0,0 +1,6 @@
1
+ import type { JiraEndpoints } from '..';
2
+ export declare const create: JiraEndpoints['projectsCreate'];
3
+ export declare const get: JiraEndpoints['projectsGet'];
4
+ export declare const list: JiraEndpoints['projectsList'];
5
+ export declare const getRoles: JiraEndpoints['projectsGetRoles'];
6
+ //# sourceMappingURL=projects.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"projects.d.ts","sourceRoot":"","sources":["../../endpoints/projects.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,IAAI,CAAC;AAIxC,eAAO,MAAM,MAAM,EAAE,aAAa,CAAC,gBAAgB,CAwClD,CAAC;AAEF,eAAO,MAAM,GAAG,EAAE,aAAa,CAAC,aAAa,CAgC5C,CAAC;AAEF,eAAO,MAAM,IAAI,EAAE,aAAa,CAAC,cAAc,CAyC9C,CAAC;AAEF,eAAO,MAAM,QAAQ,EAAE,aAAa,CAAC,kBAAkB,CAYtD,CAAC"}
@@ -0,0 +1,6 @@
1
+ import type { JiraEndpoints } from '..';
2
+ export declare const create: JiraEndpoints['sprintsCreate'];
3
+ export declare const list: JiraEndpoints['sprintsList'];
4
+ export declare const moveIssues: JiraEndpoints['sprintsMoveIssues'];
5
+ export declare const listBoards: JiraEndpoints['sprintsListBoards'];
6
+ //# sourceMappingURL=sprints.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"sprints.d.ts","sourceRoot":"","sources":["../../endpoints/sprints.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,IAAI,CAAC;AAIxC,eAAO,MAAM,MAAM,EAAE,aAAa,CAAC,eAAe,CAsCjD,CAAC;AAEF,eAAO,MAAM,IAAI,EAAE,aAAa,CAAC,aAAa,CAuC7C,CAAC;AAEF,eAAO,MAAM,UAAU,EAAE,aAAa,CAAC,mBAAmB,CAazD,CAAC;AAEF,eAAO,MAAM,UAAU,EAAE,aAAa,CAAC,mBAAmB,CAwCzD,CAAC"}