@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,3028 @@
1
+ import type { BindEndpoints, BindWebhooks, CorsairEndpoint, CorsairErrorHandler, CorsairPlugin, CorsairPluginContext, CorsairWebhook, KeyBuilderContext, PluginPermissionsConfig } from 'corsair/core';
2
+ import type { AuthTypes, PickAuth } from 'corsair/core';
3
+ import type { JiraEndpointInputs, JiraEndpointOutputs } from './endpoints/types';
4
+ import type { JiraWebhookOutputs, NewIssueEvent, UpdatedIssueEvent, NewProjectEvent } from './webhooks/types';
5
+ import { JiraSchema } from './schema';
6
+ export type JiraPluginOptions = {
7
+ authType?: PickAuth<'api_key'>;
8
+ key?: string;
9
+ webhookSecret?: string;
10
+ /**
11
+ * Jira Cloud URL, e.g. 'https://your-domain.atlassian.net'
12
+ * Required for all API calls.
13
+ */
14
+ cloudUrl?: string;
15
+ hooks?: InternalJiraPlugin['hooks'];
16
+ webhookHooks?: InternalJiraPlugin['webhookHooks'];
17
+ errorHandlers?: CorsairErrorHandler;
18
+ /**
19
+ * Permission configuration for the Jira plugin.
20
+ * Controls what the AI agent is allowed to do.
21
+ * Overrides use dot-notation paths from the Jira endpoint tree — invalid paths are type errors.
22
+ */
23
+ permissions?: PluginPermissionsConfig<typeof jiraEndpointsNested>;
24
+ };
25
+ /**
26
+ * Extends the base api_key auth config with a `cloud_url` account field.
27
+ * This allows the Jira Cloud URL (e.g. https://your-domain.atlassian.net) to be
28
+ * stored in the database and set via `corsair auth`, rather than hard-coded in options.
29
+ */
30
+ export declare const jiraAuthConfig: {
31
+ readonly api_key: {
32
+ readonly account: readonly ["cloud_url"];
33
+ };
34
+ };
35
+ export type JiraContext = CorsairPluginContext<typeof JiraSchema, JiraPluginOptions, undefined, typeof jiraAuthConfig>;
36
+ export type JiraKeyBuilderContext = KeyBuilderContext<JiraPluginOptions, typeof jiraAuthConfig>;
37
+ export type JiraBoundEndpoints = BindEndpoints<typeof jiraEndpointsNested>;
38
+ type JiraEndpoint<K extends keyof JiraEndpointOutputs> = CorsairEndpoint<JiraContext, JiraEndpointInputs[K], JiraEndpointOutputs[K]>;
39
+ export type JiraEndpoints = {
40
+ issuesCreate: JiraEndpoint<'issuesCreate'>;
41
+ issuesGet: JiraEndpoint<'issuesGet'>;
42
+ issuesEdit: JiraEndpoint<'issuesEdit'>;
43
+ issuesDelete: JiraEndpoint<'issuesDelete'>;
44
+ issuesSearch: JiraEndpoint<'issuesSearch'>;
45
+ issuesAssign: JiraEndpoint<'issuesAssign'>;
46
+ issuesGetTransitions: JiraEndpoint<'issuesGetTransitions'>;
47
+ issuesTransition: JiraEndpoint<'issuesTransition'>;
48
+ issuesBulkCreate: JiraEndpoint<'issuesBulkCreate'>;
49
+ issuesBulkFetch: JiraEndpoint<'issuesBulkFetch'>;
50
+ issuesAddAttachment: JiraEndpoint<'issuesAddAttachment'>;
51
+ issuesAddWatcher: JiraEndpoint<'issuesAddWatcher'>;
52
+ issuesRemoveWatcher: JiraEndpoint<'issuesRemoveWatcher'>;
53
+ issuesLinkIssues: JiraEndpoint<'issuesLinkIssues'>;
54
+ commentsAdd: JiraEndpoint<'commentsAdd'>;
55
+ commentsGet: JiraEndpoint<'commentsGet'>;
56
+ commentsList: JiraEndpoint<'commentsList'>;
57
+ commentsUpdate: JiraEndpoint<'commentsUpdate'>;
58
+ commentsDelete: JiraEndpoint<'commentsDelete'>;
59
+ projectsCreate: JiraEndpoint<'projectsCreate'>;
60
+ projectsGet: JiraEndpoint<'projectsGet'>;
61
+ projectsList: JiraEndpoint<'projectsList'>;
62
+ projectsGetRoles: JiraEndpoint<'projectsGetRoles'>;
63
+ sprintsCreate: JiraEndpoint<'sprintsCreate'>;
64
+ sprintsList: JiraEndpoint<'sprintsList'>;
65
+ sprintsMoveIssues: JiraEndpoint<'sprintsMoveIssues'>;
66
+ sprintsListBoards: JiraEndpoint<'sprintsListBoards'>;
67
+ usersGetCurrent: JiraEndpoint<'usersGetCurrent'>;
68
+ usersFind: JiraEndpoint<'usersFind'>;
69
+ usersGetAll: JiraEndpoint<'usersGetAll'>;
70
+ groupsGetAll: JiraEndpoint<'groupsGetAll'>;
71
+ groupsCreate: JiraEndpoint<'groupsCreate'>;
72
+ };
73
+ type JiraWebhook<K extends keyof JiraWebhookOutputs, TEvent> = CorsairWebhook<JiraContext, TEvent, JiraWebhookOutputs[K]>;
74
+ export type JiraWebhooks = {
75
+ newIssue: JiraWebhook<'newIssue', NewIssueEvent>;
76
+ updatedIssue: JiraWebhook<'updatedIssue', UpdatedIssueEvent>;
77
+ newProject: JiraWebhook<'newProject', NewProjectEvent>;
78
+ };
79
+ export type JiraBoundWebhooks = BindWebhooks<JiraWebhooks>;
80
+ declare const jiraEndpointsNested: {
81
+ readonly issues: {
82
+ readonly create: JiraEndpoint<"issuesCreate">;
83
+ readonly get: JiraEndpoint<"issuesGet">;
84
+ readonly edit: JiraEndpoint<"issuesEdit">;
85
+ readonly delete: JiraEndpoint<"issuesDelete">;
86
+ readonly search: JiraEndpoint<"issuesSearch">;
87
+ readonly assign: JiraEndpoint<"issuesAssign">;
88
+ readonly getTransitions: JiraEndpoint<"issuesGetTransitions">;
89
+ readonly transition: JiraEndpoint<"issuesTransition">;
90
+ readonly bulkCreate: JiraEndpoint<"issuesBulkCreate">;
91
+ readonly bulkFetch: JiraEndpoint<"issuesBulkFetch">;
92
+ readonly addAttachment: JiraEndpoint<"issuesAddAttachment">;
93
+ readonly addWatcher: JiraEndpoint<"issuesAddWatcher">;
94
+ readonly removeWatcher: JiraEndpoint<"issuesRemoveWatcher">;
95
+ readonly linkIssues: JiraEndpoint<"issuesLinkIssues">;
96
+ };
97
+ readonly comments: {
98
+ readonly add: JiraEndpoint<"commentsAdd">;
99
+ readonly get: JiraEndpoint<"commentsGet">;
100
+ readonly list: JiraEndpoint<"commentsList">;
101
+ readonly update: JiraEndpoint<"commentsUpdate">;
102
+ readonly delete: JiraEndpoint<"commentsDelete">;
103
+ };
104
+ readonly projects: {
105
+ readonly create: JiraEndpoint<"projectsCreate">;
106
+ readonly get: JiraEndpoint<"projectsGet">;
107
+ readonly list: JiraEndpoint<"projectsList">;
108
+ readonly getRoles: JiraEndpoint<"projectsGetRoles">;
109
+ };
110
+ readonly sprints: {
111
+ readonly create: JiraEndpoint<"sprintsCreate">;
112
+ readonly list: JiraEndpoint<"sprintsList">;
113
+ readonly moveIssues: JiraEndpoint<"sprintsMoveIssues">;
114
+ readonly listBoards: JiraEndpoint<"sprintsListBoards">;
115
+ };
116
+ readonly users: {
117
+ readonly getCurrent: JiraEndpoint<"usersGetCurrent">;
118
+ readonly find: JiraEndpoint<"usersFind">;
119
+ readonly getAll: JiraEndpoint<"usersGetAll">;
120
+ };
121
+ readonly groups: {
122
+ readonly getAll: JiraEndpoint<"groupsGetAll">;
123
+ readonly create: JiraEndpoint<"groupsCreate">;
124
+ };
125
+ };
126
+ declare const jiraWebhooksNested: {
127
+ readonly issues: {
128
+ readonly newIssue: JiraWebhook<"newIssue", {
129
+ webhookEvent: "jira:issue_created";
130
+ timestamp?: number | undefined;
131
+ issue?: {
132
+ key?: string | undefined;
133
+ id?: string | undefined;
134
+ self?: string | undefined;
135
+ fields?: {
136
+ priority?: {
137
+ id?: string | undefined;
138
+ name?: string | undefined;
139
+ } | null | undefined;
140
+ status?: {
141
+ id?: string | undefined;
142
+ name?: string | undefined;
143
+ statusCategory?: {
144
+ key?: string | undefined;
145
+ name?: string | undefined;
146
+ } | undefined;
147
+ } | undefined;
148
+ summary?: string | undefined;
149
+ assignee?: {
150
+ accountId?: string | undefined;
151
+ displayName?: string | undefined;
152
+ emailAddress?: string | undefined;
153
+ } | null | undefined;
154
+ reporter?: {
155
+ accountId?: string | undefined;
156
+ displayName?: string | undefined;
157
+ emailAddress?: string | undefined;
158
+ } | undefined;
159
+ issuetype?: {
160
+ id?: string | undefined;
161
+ name?: string | undefined;
162
+ subtask?: boolean | undefined;
163
+ } | undefined;
164
+ project?: {
165
+ key?: string | undefined;
166
+ id?: string | undefined;
167
+ name?: string | undefined;
168
+ } | undefined;
169
+ labels?: string[] | undefined;
170
+ created?: string | undefined;
171
+ updated?: string | undefined;
172
+ } | undefined;
173
+ } | undefined;
174
+ user?: {
175
+ accountId?: string | undefined;
176
+ displayName?: string | undefined;
177
+ emailAddress?: string | undefined;
178
+ } | undefined;
179
+ }>;
180
+ readonly updatedIssue: JiraWebhook<"updatedIssue", {
181
+ webhookEvent: "jira:issue_updated";
182
+ timestamp?: number | undefined;
183
+ issue?: {
184
+ key?: string | undefined;
185
+ id?: string | undefined;
186
+ self?: string | undefined;
187
+ fields?: {
188
+ priority?: {
189
+ id?: string | undefined;
190
+ name?: string | undefined;
191
+ } | null | undefined;
192
+ status?: {
193
+ id?: string | undefined;
194
+ name?: string | undefined;
195
+ statusCategory?: {
196
+ key?: string | undefined;
197
+ name?: string | undefined;
198
+ } | undefined;
199
+ } | undefined;
200
+ summary?: string | undefined;
201
+ assignee?: {
202
+ accountId?: string | undefined;
203
+ displayName?: string | undefined;
204
+ emailAddress?: string | undefined;
205
+ } | null | undefined;
206
+ reporter?: {
207
+ accountId?: string | undefined;
208
+ displayName?: string | undefined;
209
+ emailAddress?: string | undefined;
210
+ } | undefined;
211
+ issuetype?: {
212
+ id?: string | undefined;
213
+ name?: string | undefined;
214
+ subtask?: boolean | undefined;
215
+ } | undefined;
216
+ project?: {
217
+ key?: string | undefined;
218
+ id?: string | undefined;
219
+ name?: string | undefined;
220
+ } | undefined;
221
+ labels?: string[] | undefined;
222
+ updated?: string | undefined;
223
+ } | undefined;
224
+ } | undefined;
225
+ user?: {
226
+ accountId?: string | undefined;
227
+ displayName?: string | undefined;
228
+ emailAddress?: string | undefined;
229
+ } | undefined;
230
+ changelog?: {
231
+ id?: string | undefined;
232
+ items?: {
233
+ from?: string | null | undefined;
234
+ toString?: string | null | undefined;
235
+ to?: string | null | undefined;
236
+ field?: string | undefined;
237
+ fieldtype?: string | undefined;
238
+ fromString?: string | null | undefined;
239
+ }[] | undefined;
240
+ } | undefined;
241
+ }>;
242
+ };
243
+ readonly projects: {
244
+ readonly newProject: JiraWebhook<"newProject", {
245
+ webhookEvent: "project_created";
246
+ project?: {
247
+ key?: string | undefined;
248
+ id?: string | undefined;
249
+ name?: string | undefined;
250
+ description?: string | undefined;
251
+ self?: string | undefined;
252
+ projectTypeKey?: string | undefined;
253
+ lead?: {
254
+ accountId?: string | undefined;
255
+ displayName?: string | undefined;
256
+ emailAddress?: string | undefined;
257
+ } | undefined;
258
+ } | undefined;
259
+ timestamp?: number | undefined;
260
+ }>;
261
+ };
262
+ };
263
+ export declare const jiraEndpointSchemas: {
264
+ readonly 'issues.create': {
265
+ readonly input: import("zod").ZodObject<{
266
+ project_key: import("zod").ZodString;
267
+ summary: import("zod").ZodString;
268
+ issue_type: import("zod").ZodOptional<import("zod").ZodString>;
269
+ description: import("zod").ZodOptional<import("zod").ZodString>;
270
+ assignee: import("zod").ZodOptional<import("zod").ZodString>;
271
+ priority: import("zod").ZodOptional<import("zod").ZodString>;
272
+ labels: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
273
+ due_date: import("zod").ZodOptional<import("zod").ZodString>;
274
+ parent: import("zod").ZodOptional<import("zod").ZodString>;
275
+ }, "strip", import("zod").ZodTypeAny, {
276
+ summary: string;
277
+ project_key: string;
278
+ priority?: string | undefined;
279
+ description?: string | undefined;
280
+ assignee?: string | undefined;
281
+ labels?: string[] | undefined;
282
+ issue_type?: string | undefined;
283
+ due_date?: string | undefined;
284
+ parent?: string | undefined;
285
+ }, {
286
+ summary: string;
287
+ project_key: string;
288
+ priority?: string | undefined;
289
+ description?: string | undefined;
290
+ assignee?: string | undefined;
291
+ labels?: string[] | undefined;
292
+ issue_type?: string | undefined;
293
+ due_date?: string | undefined;
294
+ parent?: string | undefined;
295
+ }>;
296
+ readonly output: import("zod").ZodObject<{
297
+ id: import("zod").ZodOptional<import("zod").ZodString>;
298
+ key: import("zod").ZodOptional<import("zod").ZodString>;
299
+ self: import("zod").ZodOptional<import("zod").ZodString>;
300
+ }, "strip", import("zod").ZodTypeAny, {
301
+ key?: string | undefined;
302
+ id?: string | undefined;
303
+ self?: string | undefined;
304
+ }, {
305
+ key?: string | undefined;
306
+ id?: string | undefined;
307
+ self?: string | undefined;
308
+ }>;
309
+ };
310
+ readonly 'issues.get': {
311
+ readonly input: import("zod").ZodObject<{
312
+ issue_id_or_key: import("zod").ZodString;
313
+ fields: import("zod").ZodOptional<import("zod").ZodString>;
314
+ expand: import("zod").ZodOptional<import("zod").ZodString>;
315
+ }, "strip", import("zod").ZodTypeAny, {
316
+ issue_id_or_key: string;
317
+ fields?: string | undefined;
318
+ expand?: string | undefined;
319
+ }, {
320
+ issue_id_or_key: string;
321
+ fields?: string | undefined;
322
+ expand?: string | undefined;
323
+ }>;
324
+ readonly output: import("zod").ZodObject<{
325
+ id: import("zod").ZodString;
326
+ key: import("zod").ZodOptional<import("zod").ZodString>;
327
+ self: import("zod").ZodOptional<import("zod").ZodString>;
328
+ fields: import("zod").ZodOptional<import("zod").ZodObject<{
329
+ summary: import("zod").ZodOptional<import("zod").ZodString>;
330
+ description: import("zod").ZodOptional<import("zod").ZodUnknown>;
331
+ status: import("zod").ZodOptional<import("zod").ZodObject<{
332
+ id: import("zod").ZodOptional<import("zod").ZodString>;
333
+ name: import("zod").ZodOptional<import("zod").ZodString>;
334
+ statusCategory: import("zod").ZodOptional<import("zod").ZodObject<{
335
+ id: import("zod").ZodOptional<import("zod").ZodNumber>;
336
+ key: import("zod").ZodOptional<import("zod").ZodString>;
337
+ name: import("zod").ZodOptional<import("zod").ZodString>;
338
+ }, "strip", import("zod").ZodTypeAny, {
339
+ key?: string | undefined;
340
+ id?: number | undefined;
341
+ name?: string | undefined;
342
+ }, {
343
+ key?: string | undefined;
344
+ id?: number | undefined;
345
+ name?: string | undefined;
346
+ }>>;
347
+ }, "strip", import("zod").ZodTypeAny, {
348
+ id?: string | undefined;
349
+ name?: string | undefined;
350
+ statusCategory?: {
351
+ key?: string | undefined;
352
+ id?: number | undefined;
353
+ name?: string | undefined;
354
+ } | undefined;
355
+ }, {
356
+ id?: string | undefined;
357
+ name?: string | undefined;
358
+ statusCategory?: {
359
+ key?: string | undefined;
360
+ id?: number | undefined;
361
+ name?: string | undefined;
362
+ } | undefined;
363
+ }>>;
364
+ assignee: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
365
+ accountId: import("zod").ZodOptional<import("zod").ZodString>;
366
+ displayName: import("zod").ZodOptional<import("zod").ZodString>;
367
+ emailAddress: import("zod").ZodOptional<import("zod").ZodString>;
368
+ active: import("zod").ZodOptional<import("zod").ZodBoolean>;
369
+ avatarUrls: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodString>>;
370
+ }, "strip", import("zod").ZodTypeAny, {
371
+ accountId?: string | undefined;
372
+ displayName?: string | undefined;
373
+ emailAddress?: string | undefined;
374
+ active?: boolean | undefined;
375
+ avatarUrls?: Record<string, string> | undefined;
376
+ }, {
377
+ accountId?: string | undefined;
378
+ displayName?: string | undefined;
379
+ emailAddress?: string | undefined;
380
+ active?: boolean | undefined;
381
+ avatarUrls?: Record<string, string> | undefined;
382
+ }>>>;
383
+ reporter: import("zod").ZodOptional<import("zod").ZodObject<{
384
+ accountId: import("zod").ZodOptional<import("zod").ZodString>;
385
+ displayName: import("zod").ZodOptional<import("zod").ZodString>;
386
+ emailAddress: import("zod").ZodOptional<import("zod").ZodString>;
387
+ active: import("zod").ZodOptional<import("zod").ZodBoolean>;
388
+ avatarUrls: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodString>>;
389
+ }, "strip", import("zod").ZodTypeAny, {
390
+ accountId?: string | undefined;
391
+ displayName?: string | undefined;
392
+ emailAddress?: string | undefined;
393
+ active?: boolean | undefined;
394
+ avatarUrls?: Record<string, string> | undefined;
395
+ }, {
396
+ accountId?: string | undefined;
397
+ displayName?: string | undefined;
398
+ emailAddress?: string | undefined;
399
+ active?: boolean | undefined;
400
+ avatarUrls?: Record<string, string> | undefined;
401
+ }>>;
402
+ priority: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
403
+ id: import("zod").ZodOptional<import("zod").ZodString>;
404
+ name: import("zod").ZodOptional<import("zod").ZodString>;
405
+ iconUrl: import("zod").ZodOptional<import("zod").ZodString>;
406
+ }, "strip", import("zod").ZodTypeAny, {
407
+ id?: string | undefined;
408
+ name?: string | undefined;
409
+ iconUrl?: string | undefined;
410
+ }, {
411
+ id?: string | undefined;
412
+ name?: string | undefined;
413
+ iconUrl?: string | undefined;
414
+ }>>>;
415
+ issuetype: import("zod").ZodOptional<import("zod").ZodObject<{
416
+ id: import("zod").ZodOptional<import("zod").ZodString>;
417
+ name: import("zod").ZodOptional<import("zod").ZodString>;
418
+ description: import("zod").ZodOptional<import("zod").ZodString>;
419
+ subtask: import("zod").ZodOptional<import("zod").ZodBoolean>;
420
+ }, "strip", import("zod").ZodTypeAny, {
421
+ id?: string | undefined;
422
+ name?: string | undefined;
423
+ description?: string | undefined;
424
+ subtask?: boolean | undefined;
425
+ }, {
426
+ id?: string | undefined;
427
+ name?: string | undefined;
428
+ description?: string | undefined;
429
+ subtask?: boolean | undefined;
430
+ }>>;
431
+ project: import("zod").ZodOptional<import("zod").ZodObject<{
432
+ id: import("zod").ZodOptional<import("zod").ZodString>;
433
+ key: import("zod").ZodOptional<import("zod").ZodString>;
434
+ name: import("zod").ZodOptional<import("zod").ZodString>;
435
+ }, "strip", import("zod").ZodTypeAny, {
436
+ key?: string | undefined;
437
+ id?: string | undefined;
438
+ name?: string | undefined;
439
+ }, {
440
+ key?: string | undefined;
441
+ id?: string | undefined;
442
+ name?: string | undefined;
443
+ }>>;
444
+ labels: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
445
+ created: import("zod").ZodOptional<import("zod").ZodString>;
446
+ updated: import("zod").ZodOptional<import("zod").ZodString>;
447
+ comment: import("zod").ZodOptional<import("zod").ZodObject<{
448
+ total: import("zod").ZodOptional<import("zod").ZodNumber>;
449
+ comments: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodUnknown, "many">>;
450
+ }, "strip", import("zod").ZodTypeAny, {
451
+ total?: number | undefined;
452
+ comments?: unknown[] | undefined;
453
+ }, {
454
+ total?: number | undefined;
455
+ comments?: unknown[] | undefined;
456
+ }>>;
457
+ }, "strip", import("zod").ZodTypeAny, {
458
+ priority?: {
459
+ id?: string | undefined;
460
+ name?: string | undefined;
461
+ iconUrl?: string | undefined;
462
+ } | null | undefined;
463
+ status?: {
464
+ id?: string | undefined;
465
+ name?: string | undefined;
466
+ statusCategory?: {
467
+ key?: string | undefined;
468
+ id?: number | undefined;
469
+ name?: string | undefined;
470
+ } | undefined;
471
+ } | undefined;
472
+ description?: unknown;
473
+ summary?: string | undefined;
474
+ assignee?: {
475
+ accountId?: string | undefined;
476
+ displayName?: string | undefined;
477
+ emailAddress?: string | undefined;
478
+ active?: boolean | undefined;
479
+ avatarUrls?: Record<string, string> | undefined;
480
+ } | null | undefined;
481
+ reporter?: {
482
+ accountId?: string | undefined;
483
+ displayName?: string | undefined;
484
+ emailAddress?: string | undefined;
485
+ active?: boolean | undefined;
486
+ avatarUrls?: Record<string, string> | undefined;
487
+ } | undefined;
488
+ issuetype?: {
489
+ id?: string | undefined;
490
+ name?: string | undefined;
491
+ description?: string | undefined;
492
+ subtask?: boolean | undefined;
493
+ } | undefined;
494
+ project?: {
495
+ key?: string | undefined;
496
+ id?: string | undefined;
497
+ name?: string | undefined;
498
+ } | undefined;
499
+ labels?: string[] | undefined;
500
+ created?: string | undefined;
501
+ updated?: string | undefined;
502
+ comment?: {
503
+ total?: number | undefined;
504
+ comments?: unknown[] | undefined;
505
+ } | undefined;
506
+ }, {
507
+ priority?: {
508
+ id?: string | undefined;
509
+ name?: string | undefined;
510
+ iconUrl?: string | undefined;
511
+ } | null | undefined;
512
+ status?: {
513
+ id?: string | undefined;
514
+ name?: string | undefined;
515
+ statusCategory?: {
516
+ key?: string | undefined;
517
+ id?: number | undefined;
518
+ name?: string | undefined;
519
+ } | undefined;
520
+ } | undefined;
521
+ description?: unknown;
522
+ summary?: string | undefined;
523
+ assignee?: {
524
+ accountId?: string | undefined;
525
+ displayName?: string | undefined;
526
+ emailAddress?: string | undefined;
527
+ active?: boolean | undefined;
528
+ avatarUrls?: Record<string, string> | undefined;
529
+ } | null | undefined;
530
+ reporter?: {
531
+ accountId?: string | undefined;
532
+ displayName?: string | undefined;
533
+ emailAddress?: string | undefined;
534
+ active?: boolean | undefined;
535
+ avatarUrls?: Record<string, string> | undefined;
536
+ } | undefined;
537
+ issuetype?: {
538
+ id?: string | undefined;
539
+ name?: string | undefined;
540
+ description?: string | undefined;
541
+ subtask?: boolean | undefined;
542
+ } | undefined;
543
+ project?: {
544
+ key?: string | undefined;
545
+ id?: string | undefined;
546
+ name?: string | undefined;
547
+ } | undefined;
548
+ labels?: string[] | undefined;
549
+ created?: string | undefined;
550
+ updated?: string | undefined;
551
+ comment?: {
552
+ total?: number | undefined;
553
+ comments?: unknown[] | undefined;
554
+ } | undefined;
555
+ }>>;
556
+ }, "strip", import("zod").ZodTypeAny, {
557
+ id: string;
558
+ key?: string | undefined;
559
+ self?: string | undefined;
560
+ fields?: {
561
+ priority?: {
562
+ id?: string | undefined;
563
+ name?: string | undefined;
564
+ iconUrl?: string | undefined;
565
+ } | null | undefined;
566
+ status?: {
567
+ id?: string | undefined;
568
+ name?: string | undefined;
569
+ statusCategory?: {
570
+ key?: string | undefined;
571
+ id?: number | undefined;
572
+ name?: string | undefined;
573
+ } | undefined;
574
+ } | undefined;
575
+ description?: unknown;
576
+ summary?: string | undefined;
577
+ assignee?: {
578
+ accountId?: string | undefined;
579
+ displayName?: string | undefined;
580
+ emailAddress?: string | undefined;
581
+ active?: boolean | undefined;
582
+ avatarUrls?: Record<string, string> | undefined;
583
+ } | null | undefined;
584
+ reporter?: {
585
+ accountId?: string | undefined;
586
+ displayName?: string | undefined;
587
+ emailAddress?: string | undefined;
588
+ active?: boolean | undefined;
589
+ avatarUrls?: Record<string, string> | undefined;
590
+ } | undefined;
591
+ issuetype?: {
592
+ id?: string | undefined;
593
+ name?: string | undefined;
594
+ description?: string | undefined;
595
+ subtask?: boolean | undefined;
596
+ } | undefined;
597
+ project?: {
598
+ key?: string | undefined;
599
+ id?: string | undefined;
600
+ name?: string | undefined;
601
+ } | undefined;
602
+ labels?: string[] | undefined;
603
+ created?: string | undefined;
604
+ updated?: string | undefined;
605
+ comment?: {
606
+ total?: number | undefined;
607
+ comments?: unknown[] | undefined;
608
+ } | undefined;
609
+ } | undefined;
610
+ }, {
611
+ id: string;
612
+ key?: string | undefined;
613
+ self?: string | undefined;
614
+ fields?: {
615
+ priority?: {
616
+ id?: string | undefined;
617
+ name?: string | undefined;
618
+ iconUrl?: string | undefined;
619
+ } | null | undefined;
620
+ status?: {
621
+ id?: string | undefined;
622
+ name?: string | undefined;
623
+ statusCategory?: {
624
+ key?: string | undefined;
625
+ id?: number | undefined;
626
+ name?: string | undefined;
627
+ } | undefined;
628
+ } | undefined;
629
+ description?: unknown;
630
+ summary?: string | undefined;
631
+ assignee?: {
632
+ accountId?: string | undefined;
633
+ displayName?: string | undefined;
634
+ emailAddress?: string | undefined;
635
+ active?: boolean | undefined;
636
+ avatarUrls?: Record<string, string> | undefined;
637
+ } | null | undefined;
638
+ reporter?: {
639
+ accountId?: string | undefined;
640
+ displayName?: string | undefined;
641
+ emailAddress?: string | undefined;
642
+ active?: boolean | undefined;
643
+ avatarUrls?: Record<string, string> | undefined;
644
+ } | undefined;
645
+ issuetype?: {
646
+ id?: string | undefined;
647
+ name?: string | undefined;
648
+ description?: string | undefined;
649
+ subtask?: boolean | undefined;
650
+ } | undefined;
651
+ project?: {
652
+ key?: string | undefined;
653
+ id?: string | undefined;
654
+ name?: string | undefined;
655
+ } | undefined;
656
+ labels?: string[] | undefined;
657
+ created?: string | undefined;
658
+ updated?: string | undefined;
659
+ comment?: {
660
+ total?: number | undefined;
661
+ comments?: unknown[] | undefined;
662
+ } | undefined;
663
+ } | undefined;
664
+ }>;
665
+ };
666
+ readonly 'issues.edit': {
667
+ readonly input: import("zod").ZodObject<{
668
+ issue_id_or_key: import("zod").ZodString;
669
+ summary: import("zod").ZodOptional<import("zod").ZodString>;
670
+ description: import("zod").ZodOptional<import("zod").ZodString>;
671
+ assignee: import("zod").ZodOptional<import("zod").ZodString>;
672
+ priority: import("zod").ZodOptional<import("zod").ZodString>;
673
+ labels: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
674
+ due_date: import("zod").ZodOptional<import("zod").ZodString>;
675
+ notify_users: import("zod").ZodOptional<import("zod").ZodBoolean>;
676
+ }, "strip", import("zod").ZodTypeAny, {
677
+ issue_id_or_key: string;
678
+ priority?: string | undefined;
679
+ description?: string | undefined;
680
+ summary?: string | undefined;
681
+ assignee?: string | undefined;
682
+ labels?: string[] | undefined;
683
+ due_date?: string | undefined;
684
+ notify_users?: boolean | undefined;
685
+ }, {
686
+ issue_id_or_key: string;
687
+ priority?: string | undefined;
688
+ description?: string | undefined;
689
+ summary?: string | undefined;
690
+ assignee?: string | undefined;
691
+ labels?: string[] | undefined;
692
+ due_date?: string | undefined;
693
+ notify_users?: boolean | undefined;
694
+ }>;
695
+ readonly output: import("zod").ZodObject<{
696
+ success: import("zod").ZodBoolean;
697
+ issue_key: import("zod").ZodOptional<import("zod").ZodString>;
698
+ }, "strip", import("zod").ZodTypeAny, {
699
+ success: boolean;
700
+ issue_key?: string | undefined;
701
+ }, {
702
+ success: boolean;
703
+ issue_key?: string | undefined;
704
+ }>;
705
+ };
706
+ readonly 'issues.delete': {
707
+ readonly input: import("zod").ZodObject<{
708
+ issue_id_or_key: import("zod").ZodString;
709
+ delete_subtasks: import("zod").ZodOptional<import("zod").ZodBoolean>;
710
+ }, "strip", import("zod").ZodTypeAny, {
711
+ issue_id_or_key: string;
712
+ delete_subtasks?: boolean | undefined;
713
+ }, {
714
+ issue_id_or_key: string;
715
+ delete_subtasks?: boolean | undefined;
716
+ }>;
717
+ readonly output: import("zod").ZodObject<{
718
+ success: import("zod").ZodBoolean;
719
+ message: import("zod").ZodOptional<import("zod").ZodString>;
720
+ }, "strip", import("zod").ZodTypeAny, {
721
+ success: boolean;
722
+ message?: string | undefined;
723
+ }, {
724
+ success: boolean;
725
+ message?: string | undefined;
726
+ }>;
727
+ };
728
+ readonly 'issues.search': {
729
+ readonly input: import("zod").ZodObject<{
730
+ jql: import("zod").ZodString;
731
+ start_at: import("zod").ZodOptional<import("zod").ZodNumber>;
732
+ max_results: import("zod").ZodOptional<import("zod").ZodNumber>;
733
+ fields: import("zod").ZodOptional<import("zod").ZodString>;
734
+ expand: import("zod").ZodOptional<import("zod").ZodString>;
735
+ }, "strip", import("zod").ZodTypeAny, {
736
+ jql: string;
737
+ fields?: string | undefined;
738
+ expand?: string | undefined;
739
+ start_at?: number | undefined;
740
+ max_results?: number | undefined;
741
+ }, {
742
+ jql: string;
743
+ fields?: string | undefined;
744
+ expand?: string | undefined;
745
+ start_at?: number | undefined;
746
+ max_results?: number | undefined;
747
+ }>;
748
+ readonly output: import("zod").ZodObject<{
749
+ total: import("zod").ZodOptional<import("zod").ZodNumber>;
750
+ startAt: import("zod").ZodOptional<import("zod").ZodNumber>;
751
+ maxResults: import("zod").ZodOptional<import("zod").ZodNumber>;
752
+ issues: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
753
+ id: import("zod").ZodString;
754
+ key: import("zod").ZodOptional<import("zod").ZodString>;
755
+ self: import("zod").ZodOptional<import("zod").ZodString>;
756
+ fields: import("zod").ZodOptional<import("zod").ZodObject<{
757
+ summary: import("zod").ZodOptional<import("zod").ZodString>;
758
+ description: import("zod").ZodOptional<import("zod").ZodUnknown>;
759
+ status: import("zod").ZodOptional<import("zod").ZodObject<{
760
+ id: import("zod").ZodOptional<import("zod").ZodString>;
761
+ name: import("zod").ZodOptional<import("zod").ZodString>;
762
+ statusCategory: import("zod").ZodOptional<import("zod").ZodObject<{
763
+ id: import("zod").ZodOptional<import("zod").ZodNumber>;
764
+ key: import("zod").ZodOptional<import("zod").ZodString>;
765
+ name: import("zod").ZodOptional<import("zod").ZodString>;
766
+ }, "strip", import("zod").ZodTypeAny, {
767
+ key?: string | undefined;
768
+ id?: number | undefined;
769
+ name?: string | undefined;
770
+ }, {
771
+ key?: string | undefined;
772
+ id?: number | undefined;
773
+ name?: string | undefined;
774
+ }>>;
775
+ }, "strip", import("zod").ZodTypeAny, {
776
+ id?: string | undefined;
777
+ name?: string | undefined;
778
+ statusCategory?: {
779
+ key?: string | undefined;
780
+ id?: number | undefined;
781
+ name?: string | undefined;
782
+ } | undefined;
783
+ }, {
784
+ id?: string | undefined;
785
+ name?: string | undefined;
786
+ statusCategory?: {
787
+ key?: string | undefined;
788
+ id?: number | undefined;
789
+ name?: string | undefined;
790
+ } | undefined;
791
+ }>>;
792
+ assignee: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
793
+ accountId: import("zod").ZodOptional<import("zod").ZodString>;
794
+ displayName: import("zod").ZodOptional<import("zod").ZodString>;
795
+ emailAddress: import("zod").ZodOptional<import("zod").ZodString>;
796
+ active: import("zod").ZodOptional<import("zod").ZodBoolean>;
797
+ avatarUrls: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodString>>;
798
+ }, "strip", import("zod").ZodTypeAny, {
799
+ accountId?: string | undefined;
800
+ displayName?: string | undefined;
801
+ emailAddress?: string | undefined;
802
+ active?: boolean | undefined;
803
+ avatarUrls?: Record<string, string> | undefined;
804
+ }, {
805
+ accountId?: string | undefined;
806
+ displayName?: string | undefined;
807
+ emailAddress?: string | undefined;
808
+ active?: boolean | undefined;
809
+ avatarUrls?: Record<string, string> | undefined;
810
+ }>>>;
811
+ reporter: import("zod").ZodOptional<import("zod").ZodObject<{
812
+ accountId: import("zod").ZodOptional<import("zod").ZodString>;
813
+ displayName: import("zod").ZodOptional<import("zod").ZodString>;
814
+ emailAddress: import("zod").ZodOptional<import("zod").ZodString>;
815
+ active: import("zod").ZodOptional<import("zod").ZodBoolean>;
816
+ avatarUrls: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodString>>;
817
+ }, "strip", import("zod").ZodTypeAny, {
818
+ accountId?: string | undefined;
819
+ displayName?: string | undefined;
820
+ emailAddress?: string | undefined;
821
+ active?: boolean | undefined;
822
+ avatarUrls?: Record<string, string> | undefined;
823
+ }, {
824
+ accountId?: string | undefined;
825
+ displayName?: string | undefined;
826
+ emailAddress?: string | undefined;
827
+ active?: boolean | undefined;
828
+ avatarUrls?: Record<string, string> | undefined;
829
+ }>>;
830
+ priority: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
831
+ id: import("zod").ZodOptional<import("zod").ZodString>;
832
+ name: import("zod").ZodOptional<import("zod").ZodString>;
833
+ iconUrl: import("zod").ZodOptional<import("zod").ZodString>;
834
+ }, "strip", import("zod").ZodTypeAny, {
835
+ id?: string | undefined;
836
+ name?: string | undefined;
837
+ iconUrl?: string | undefined;
838
+ }, {
839
+ id?: string | undefined;
840
+ name?: string | undefined;
841
+ iconUrl?: string | undefined;
842
+ }>>>;
843
+ issuetype: import("zod").ZodOptional<import("zod").ZodObject<{
844
+ id: import("zod").ZodOptional<import("zod").ZodString>;
845
+ name: import("zod").ZodOptional<import("zod").ZodString>;
846
+ description: import("zod").ZodOptional<import("zod").ZodString>;
847
+ subtask: import("zod").ZodOptional<import("zod").ZodBoolean>;
848
+ }, "strip", import("zod").ZodTypeAny, {
849
+ id?: string | undefined;
850
+ name?: string | undefined;
851
+ description?: string | undefined;
852
+ subtask?: boolean | undefined;
853
+ }, {
854
+ id?: string | undefined;
855
+ name?: string | undefined;
856
+ description?: string | undefined;
857
+ subtask?: boolean | undefined;
858
+ }>>;
859
+ project: import("zod").ZodOptional<import("zod").ZodObject<{
860
+ id: import("zod").ZodOptional<import("zod").ZodString>;
861
+ key: import("zod").ZodOptional<import("zod").ZodString>;
862
+ name: import("zod").ZodOptional<import("zod").ZodString>;
863
+ }, "strip", import("zod").ZodTypeAny, {
864
+ key?: string | undefined;
865
+ id?: string | undefined;
866
+ name?: string | undefined;
867
+ }, {
868
+ key?: string | undefined;
869
+ id?: string | undefined;
870
+ name?: string | undefined;
871
+ }>>;
872
+ labels: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
873
+ created: import("zod").ZodOptional<import("zod").ZodString>;
874
+ updated: import("zod").ZodOptional<import("zod").ZodString>;
875
+ comment: import("zod").ZodOptional<import("zod").ZodObject<{
876
+ total: import("zod").ZodOptional<import("zod").ZodNumber>;
877
+ comments: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodUnknown, "many">>;
878
+ }, "strip", import("zod").ZodTypeAny, {
879
+ total?: number | undefined;
880
+ comments?: unknown[] | undefined;
881
+ }, {
882
+ total?: number | undefined;
883
+ comments?: unknown[] | undefined;
884
+ }>>;
885
+ }, "strip", import("zod").ZodTypeAny, {
886
+ priority?: {
887
+ id?: string | undefined;
888
+ name?: string | undefined;
889
+ iconUrl?: string | undefined;
890
+ } | null | undefined;
891
+ status?: {
892
+ id?: string | undefined;
893
+ name?: string | undefined;
894
+ statusCategory?: {
895
+ key?: string | undefined;
896
+ id?: number | undefined;
897
+ name?: string | undefined;
898
+ } | undefined;
899
+ } | undefined;
900
+ description?: unknown;
901
+ summary?: string | undefined;
902
+ assignee?: {
903
+ accountId?: string | undefined;
904
+ displayName?: string | undefined;
905
+ emailAddress?: string | undefined;
906
+ active?: boolean | undefined;
907
+ avatarUrls?: Record<string, string> | undefined;
908
+ } | null | undefined;
909
+ reporter?: {
910
+ accountId?: string | undefined;
911
+ displayName?: string | undefined;
912
+ emailAddress?: string | undefined;
913
+ active?: boolean | undefined;
914
+ avatarUrls?: Record<string, string> | undefined;
915
+ } | undefined;
916
+ issuetype?: {
917
+ id?: string | undefined;
918
+ name?: string | undefined;
919
+ description?: string | undefined;
920
+ subtask?: boolean | undefined;
921
+ } | undefined;
922
+ project?: {
923
+ key?: string | undefined;
924
+ id?: string | undefined;
925
+ name?: string | undefined;
926
+ } | undefined;
927
+ labels?: string[] | undefined;
928
+ created?: string | undefined;
929
+ updated?: string | undefined;
930
+ comment?: {
931
+ total?: number | undefined;
932
+ comments?: unknown[] | undefined;
933
+ } | undefined;
934
+ }, {
935
+ priority?: {
936
+ id?: string | undefined;
937
+ name?: string | undefined;
938
+ iconUrl?: string | undefined;
939
+ } | null | undefined;
940
+ status?: {
941
+ id?: string | undefined;
942
+ name?: string | undefined;
943
+ statusCategory?: {
944
+ key?: string | undefined;
945
+ id?: number | undefined;
946
+ name?: string | undefined;
947
+ } | undefined;
948
+ } | undefined;
949
+ description?: unknown;
950
+ summary?: string | undefined;
951
+ assignee?: {
952
+ accountId?: string | undefined;
953
+ displayName?: string | undefined;
954
+ emailAddress?: string | undefined;
955
+ active?: boolean | undefined;
956
+ avatarUrls?: Record<string, string> | undefined;
957
+ } | null | undefined;
958
+ reporter?: {
959
+ accountId?: string | undefined;
960
+ displayName?: string | undefined;
961
+ emailAddress?: string | undefined;
962
+ active?: boolean | undefined;
963
+ avatarUrls?: Record<string, string> | undefined;
964
+ } | undefined;
965
+ issuetype?: {
966
+ id?: string | undefined;
967
+ name?: string | undefined;
968
+ description?: string | undefined;
969
+ subtask?: boolean | undefined;
970
+ } | undefined;
971
+ project?: {
972
+ key?: string | undefined;
973
+ id?: string | undefined;
974
+ name?: string | undefined;
975
+ } | undefined;
976
+ labels?: string[] | undefined;
977
+ created?: string | undefined;
978
+ updated?: string | undefined;
979
+ comment?: {
980
+ total?: number | undefined;
981
+ comments?: unknown[] | undefined;
982
+ } | undefined;
983
+ }>>;
984
+ }, "strip", import("zod").ZodTypeAny, {
985
+ id: string;
986
+ key?: string | undefined;
987
+ self?: string | undefined;
988
+ fields?: {
989
+ priority?: {
990
+ id?: string | undefined;
991
+ name?: string | undefined;
992
+ iconUrl?: string | undefined;
993
+ } | null | undefined;
994
+ status?: {
995
+ id?: string | undefined;
996
+ name?: string | undefined;
997
+ statusCategory?: {
998
+ key?: string | undefined;
999
+ id?: number | undefined;
1000
+ name?: string | undefined;
1001
+ } | undefined;
1002
+ } | undefined;
1003
+ description?: unknown;
1004
+ summary?: string | undefined;
1005
+ assignee?: {
1006
+ accountId?: string | undefined;
1007
+ displayName?: string | undefined;
1008
+ emailAddress?: string | undefined;
1009
+ active?: boolean | undefined;
1010
+ avatarUrls?: Record<string, string> | undefined;
1011
+ } | null | undefined;
1012
+ reporter?: {
1013
+ accountId?: string | undefined;
1014
+ displayName?: string | undefined;
1015
+ emailAddress?: string | undefined;
1016
+ active?: boolean | undefined;
1017
+ avatarUrls?: Record<string, string> | undefined;
1018
+ } | undefined;
1019
+ issuetype?: {
1020
+ id?: string | undefined;
1021
+ name?: string | undefined;
1022
+ description?: string | undefined;
1023
+ subtask?: boolean | undefined;
1024
+ } | undefined;
1025
+ project?: {
1026
+ key?: string | undefined;
1027
+ id?: string | undefined;
1028
+ name?: string | undefined;
1029
+ } | undefined;
1030
+ labels?: string[] | undefined;
1031
+ created?: string | undefined;
1032
+ updated?: string | undefined;
1033
+ comment?: {
1034
+ total?: number | undefined;
1035
+ comments?: unknown[] | undefined;
1036
+ } | undefined;
1037
+ } | undefined;
1038
+ }, {
1039
+ id: string;
1040
+ key?: string | undefined;
1041
+ self?: string | undefined;
1042
+ fields?: {
1043
+ priority?: {
1044
+ id?: string | undefined;
1045
+ name?: string | undefined;
1046
+ iconUrl?: string | undefined;
1047
+ } | null | undefined;
1048
+ status?: {
1049
+ id?: string | undefined;
1050
+ name?: string | undefined;
1051
+ statusCategory?: {
1052
+ key?: string | undefined;
1053
+ id?: number | undefined;
1054
+ name?: string | undefined;
1055
+ } | undefined;
1056
+ } | undefined;
1057
+ description?: unknown;
1058
+ summary?: string | undefined;
1059
+ assignee?: {
1060
+ accountId?: string | undefined;
1061
+ displayName?: string | undefined;
1062
+ emailAddress?: string | undefined;
1063
+ active?: boolean | undefined;
1064
+ avatarUrls?: Record<string, string> | undefined;
1065
+ } | null | undefined;
1066
+ reporter?: {
1067
+ accountId?: string | undefined;
1068
+ displayName?: string | undefined;
1069
+ emailAddress?: string | undefined;
1070
+ active?: boolean | undefined;
1071
+ avatarUrls?: Record<string, string> | undefined;
1072
+ } | undefined;
1073
+ issuetype?: {
1074
+ id?: string | undefined;
1075
+ name?: string | undefined;
1076
+ description?: string | undefined;
1077
+ subtask?: boolean | undefined;
1078
+ } | undefined;
1079
+ project?: {
1080
+ key?: string | undefined;
1081
+ id?: string | undefined;
1082
+ name?: string | undefined;
1083
+ } | undefined;
1084
+ labels?: string[] | undefined;
1085
+ created?: string | undefined;
1086
+ updated?: string | undefined;
1087
+ comment?: {
1088
+ total?: number | undefined;
1089
+ comments?: unknown[] | undefined;
1090
+ } | undefined;
1091
+ } | undefined;
1092
+ }>, "many">>;
1093
+ }, "strip", import("zod").ZodTypeAny, {
1094
+ issues?: {
1095
+ id: string;
1096
+ key?: string | undefined;
1097
+ self?: string | undefined;
1098
+ fields?: {
1099
+ priority?: {
1100
+ id?: string | undefined;
1101
+ name?: string | undefined;
1102
+ iconUrl?: string | undefined;
1103
+ } | null | undefined;
1104
+ status?: {
1105
+ id?: string | undefined;
1106
+ name?: string | undefined;
1107
+ statusCategory?: {
1108
+ key?: string | undefined;
1109
+ id?: number | undefined;
1110
+ name?: string | undefined;
1111
+ } | undefined;
1112
+ } | undefined;
1113
+ description?: unknown;
1114
+ summary?: string | undefined;
1115
+ assignee?: {
1116
+ accountId?: string | undefined;
1117
+ displayName?: string | undefined;
1118
+ emailAddress?: string | undefined;
1119
+ active?: boolean | undefined;
1120
+ avatarUrls?: Record<string, string> | undefined;
1121
+ } | null | undefined;
1122
+ reporter?: {
1123
+ accountId?: string | undefined;
1124
+ displayName?: string | undefined;
1125
+ emailAddress?: string | undefined;
1126
+ active?: boolean | undefined;
1127
+ avatarUrls?: Record<string, string> | undefined;
1128
+ } | undefined;
1129
+ issuetype?: {
1130
+ id?: string | undefined;
1131
+ name?: string | undefined;
1132
+ description?: string | undefined;
1133
+ subtask?: boolean | undefined;
1134
+ } | undefined;
1135
+ project?: {
1136
+ key?: string | undefined;
1137
+ id?: string | undefined;
1138
+ name?: string | undefined;
1139
+ } | undefined;
1140
+ labels?: string[] | undefined;
1141
+ created?: string | undefined;
1142
+ updated?: string | undefined;
1143
+ comment?: {
1144
+ total?: number | undefined;
1145
+ comments?: unknown[] | undefined;
1146
+ } | undefined;
1147
+ } | undefined;
1148
+ }[] | undefined;
1149
+ total?: number | undefined;
1150
+ startAt?: number | undefined;
1151
+ maxResults?: number | undefined;
1152
+ }, {
1153
+ issues?: {
1154
+ id: string;
1155
+ key?: string | undefined;
1156
+ self?: string | undefined;
1157
+ fields?: {
1158
+ priority?: {
1159
+ id?: string | undefined;
1160
+ name?: string | undefined;
1161
+ iconUrl?: string | undefined;
1162
+ } | null | undefined;
1163
+ status?: {
1164
+ id?: string | undefined;
1165
+ name?: string | undefined;
1166
+ statusCategory?: {
1167
+ key?: string | undefined;
1168
+ id?: number | undefined;
1169
+ name?: string | undefined;
1170
+ } | undefined;
1171
+ } | undefined;
1172
+ description?: unknown;
1173
+ summary?: string | undefined;
1174
+ assignee?: {
1175
+ accountId?: string | undefined;
1176
+ displayName?: string | undefined;
1177
+ emailAddress?: string | undefined;
1178
+ active?: boolean | undefined;
1179
+ avatarUrls?: Record<string, string> | undefined;
1180
+ } | null | undefined;
1181
+ reporter?: {
1182
+ accountId?: string | undefined;
1183
+ displayName?: string | undefined;
1184
+ emailAddress?: string | undefined;
1185
+ active?: boolean | undefined;
1186
+ avatarUrls?: Record<string, string> | undefined;
1187
+ } | undefined;
1188
+ issuetype?: {
1189
+ id?: string | undefined;
1190
+ name?: string | undefined;
1191
+ description?: string | undefined;
1192
+ subtask?: boolean | undefined;
1193
+ } | undefined;
1194
+ project?: {
1195
+ key?: string | undefined;
1196
+ id?: string | undefined;
1197
+ name?: string | undefined;
1198
+ } | undefined;
1199
+ labels?: string[] | undefined;
1200
+ created?: string | undefined;
1201
+ updated?: string | undefined;
1202
+ comment?: {
1203
+ total?: number | undefined;
1204
+ comments?: unknown[] | undefined;
1205
+ } | undefined;
1206
+ } | undefined;
1207
+ }[] | undefined;
1208
+ total?: number | undefined;
1209
+ startAt?: number | undefined;
1210
+ maxResults?: number | undefined;
1211
+ }>;
1212
+ };
1213
+ readonly 'issues.assign': {
1214
+ readonly input: import("zod").ZodObject<{
1215
+ issue_id_or_key: import("zod").ZodString;
1216
+ account_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
1217
+ }, "strip", import("zod").ZodTypeAny, {
1218
+ issue_id_or_key: string;
1219
+ account_id?: string | null | undefined;
1220
+ }, {
1221
+ issue_id_or_key: string;
1222
+ account_id?: string | null | undefined;
1223
+ }>;
1224
+ readonly output: import("zod").ZodObject<{
1225
+ success: import("zod").ZodBoolean;
1226
+ }, "strip", import("zod").ZodTypeAny, {
1227
+ success: boolean;
1228
+ }, {
1229
+ success: boolean;
1230
+ }>;
1231
+ };
1232
+ readonly 'issues.getTransitions': {
1233
+ readonly input: import("zod").ZodObject<{
1234
+ issue_id_or_key: import("zod").ZodString;
1235
+ }, "strip", import("zod").ZodTypeAny, {
1236
+ issue_id_or_key: string;
1237
+ }, {
1238
+ issue_id_or_key: string;
1239
+ }>;
1240
+ readonly output: import("zod").ZodObject<{
1241
+ transitions: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
1242
+ id: import("zod").ZodOptional<import("zod").ZodString>;
1243
+ name: import("zod").ZodOptional<import("zod").ZodString>;
1244
+ to: import("zod").ZodOptional<import("zod").ZodObject<{
1245
+ id: import("zod").ZodOptional<import("zod").ZodString>;
1246
+ name: import("zod").ZodOptional<import("zod").ZodString>;
1247
+ statusCategory: import("zod").ZodOptional<import("zod").ZodObject<{
1248
+ id: import("zod").ZodOptional<import("zod").ZodNumber>;
1249
+ key: import("zod").ZodOptional<import("zod").ZodString>;
1250
+ name: import("zod").ZodOptional<import("zod").ZodString>;
1251
+ }, "strip", import("zod").ZodTypeAny, {
1252
+ key?: string | undefined;
1253
+ id?: number | undefined;
1254
+ name?: string | undefined;
1255
+ }, {
1256
+ key?: string | undefined;
1257
+ id?: number | undefined;
1258
+ name?: string | undefined;
1259
+ }>>;
1260
+ }, "strip", import("zod").ZodTypeAny, {
1261
+ id?: string | undefined;
1262
+ name?: string | undefined;
1263
+ statusCategory?: {
1264
+ key?: string | undefined;
1265
+ id?: number | undefined;
1266
+ name?: string | undefined;
1267
+ } | undefined;
1268
+ }, {
1269
+ id?: string | undefined;
1270
+ name?: string | undefined;
1271
+ statusCategory?: {
1272
+ key?: string | undefined;
1273
+ id?: number | undefined;
1274
+ name?: string | undefined;
1275
+ } | undefined;
1276
+ }>>;
1277
+ }, "strip", import("zod").ZodTypeAny, {
1278
+ id?: string | undefined;
1279
+ name?: string | undefined;
1280
+ to?: {
1281
+ id?: string | undefined;
1282
+ name?: string | undefined;
1283
+ statusCategory?: {
1284
+ key?: string | undefined;
1285
+ id?: number | undefined;
1286
+ name?: string | undefined;
1287
+ } | undefined;
1288
+ } | undefined;
1289
+ }, {
1290
+ id?: string | undefined;
1291
+ name?: string | undefined;
1292
+ to?: {
1293
+ id?: string | undefined;
1294
+ name?: string | undefined;
1295
+ statusCategory?: {
1296
+ key?: string | undefined;
1297
+ id?: number | undefined;
1298
+ name?: string | undefined;
1299
+ } | undefined;
1300
+ } | undefined;
1301
+ }>, "many">>;
1302
+ }, "strip", import("zod").ZodTypeAny, {
1303
+ transitions?: {
1304
+ id?: string | undefined;
1305
+ name?: string | undefined;
1306
+ to?: {
1307
+ id?: string | undefined;
1308
+ name?: string | undefined;
1309
+ statusCategory?: {
1310
+ key?: string | undefined;
1311
+ id?: number | undefined;
1312
+ name?: string | undefined;
1313
+ } | undefined;
1314
+ } | undefined;
1315
+ }[] | undefined;
1316
+ }, {
1317
+ transitions?: {
1318
+ id?: string | undefined;
1319
+ name?: string | undefined;
1320
+ to?: {
1321
+ id?: string | undefined;
1322
+ name?: string | undefined;
1323
+ statusCategory?: {
1324
+ key?: string | undefined;
1325
+ id?: number | undefined;
1326
+ name?: string | undefined;
1327
+ } | undefined;
1328
+ } | undefined;
1329
+ }[] | undefined;
1330
+ }>;
1331
+ };
1332
+ readonly 'issues.transition': {
1333
+ readonly input: import("zod").ZodObject<{
1334
+ issue_id_or_key: import("zod").ZodString;
1335
+ transition_id: import("zod").ZodString;
1336
+ comment: import("zod").ZodOptional<import("zod").ZodString>;
1337
+ }, "strip", import("zod").ZodTypeAny, {
1338
+ issue_id_or_key: string;
1339
+ transition_id: string;
1340
+ comment?: string | undefined;
1341
+ }, {
1342
+ issue_id_or_key: string;
1343
+ transition_id: string;
1344
+ comment?: string | undefined;
1345
+ }>;
1346
+ readonly output: import("zod").ZodObject<{
1347
+ success: import("zod").ZodBoolean;
1348
+ }, "strip", import("zod").ZodTypeAny, {
1349
+ success: boolean;
1350
+ }, {
1351
+ success: boolean;
1352
+ }>;
1353
+ };
1354
+ readonly 'issues.bulkCreate': {
1355
+ readonly input: import("zod").ZodObject<{
1356
+ issues: import("zod").ZodArray<import("zod").ZodObject<{
1357
+ project_key: import("zod").ZodString;
1358
+ summary: import("zod").ZodString;
1359
+ issue_type: import("zod").ZodOptional<import("zod").ZodString>;
1360
+ description: import("zod").ZodOptional<import("zod").ZodString>;
1361
+ assignee: import("zod").ZodOptional<import("zod").ZodString>;
1362
+ priority: import("zod").ZodOptional<import("zod").ZodString>;
1363
+ }, "strip", import("zod").ZodTypeAny, {
1364
+ summary: string;
1365
+ project_key: string;
1366
+ priority?: string | undefined;
1367
+ description?: string | undefined;
1368
+ assignee?: string | undefined;
1369
+ issue_type?: string | undefined;
1370
+ }, {
1371
+ summary: string;
1372
+ project_key: string;
1373
+ priority?: string | undefined;
1374
+ description?: string | undefined;
1375
+ assignee?: string | undefined;
1376
+ issue_type?: string | undefined;
1377
+ }>, "many">;
1378
+ }, "strip", import("zod").ZodTypeAny, {
1379
+ issues: {
1380
+ summary: string;
1381
+ project_key: string;
1382
+ priority?: string | undefined;
1383
+ description?: string | undefined;
1384
+ assignee?: string | undefined;
1385
+ issue_type?: string | undefined;
1386
+ }[];
1387
+ }, {
1388
+ issues: {
1389
+ summary: string;
1390
+ project_key: string;
1391
+ priority?: string | undefined;
1392
+ description?: string | undefined;
1393
+ assignee?: string | undefined;
1394
+ issue_type?: string | undefined;
1395
+ }[];
1396
+ }>;
1397
+ readonly output: import("zod").ZodObject<{
1398
+ issues: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
1399
+ id: import("zod").ZodOptional<import("zod").ZodString>;
1400
+ key: import("zod").ZodOptional<import("zod").ZodString>;
1401
+ self: import("zod").ZodOptional<import("zod").ZodString>;
1402
+ }, "strip", import("zod").ZodTypeAny, {
1403
+ key?: string | undefined;
1404
+ id?: string | undefined;
1405
+ self?: string | undefined;
1406
+ }, {
1407
+ key?: string | undefined;
1408
+ id?: string | undefined;
1409
+ self?: string | undefined;
1410
+ }>, "many">>;
1411
+ errors: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodUnknown, "many">>;
1412
+ }, "strip", import("zod").ZodTypeAny, {
1413
+ issues?: {
1414
+ key?: string | undefined;
1415
+ id?: string | undefined;
1416
+ self?: string | undefined;
1417
+ }[] | undefined;
1418
+ errors?: unknown[] | undefined;
1419
+ }, {
1420
+ issues?: {
1421
+ key?: string | undefined;
1422
+ id?: string | undefined;
1423
+ self?: string | undefined;
1424
+ }[] | undefined;
1425
+ errors?: unknown[] | undefined;
1426
+ }>;
1427
+ };
1428
+ readonly 'issues.bulkFetch': {
1429
+ readonly input: import("zod").ZodObject<{
1430
+ issue_ids_or_keys: import("zod").ZodArray<import("zod").ZodString, "many">;
1431
+ fields: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
1432
+ expand: import("zod").ZodOptional<import("zod").ZodString>;
1433
+ }, "strip", import("zod").ZodTypeAny, {
1434
+ issue_ids_or_keys: string[];
1435
+ fields?: string[] | undefined;
1436
+ expand?: string | undefined;
1437
+ }, {
1438
+ issue_ids_or_keys: string[];
1439
+ fields?: string[] | undefined;
1440
+ expand?: string | undefined;
1441
+ }>;
1442
+ readonly output: import("zod").ZodObject<{
1443
+ issues: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
1444
+ id: import("zod").ZodString;
1445
+ key: import("zod").ZodOptional<import("zod").ZodString>;
1446
+ self: import("zod").ZodOptional<import("zod").ZodString>;
1447
+ fields: import("zod").ZodOptional<import("zod").ZodObject<{
1448
+ summary: import("zod").ZodOptional<import("zod").ZodString>;
1449
+ description: import("zod").ZodOptional<import("zod").ZodUnknown>;
1450
+ status: import("zod").ZodOptional<import("zod").ZodObject<{
1451
+ id: import("zod").ZodOptional<import("zod").ZodString>;
1452
+ name: import("zod").ZodOptional<import("zod").ZodString>;
1453
+ statusCategory: import("zod").ZodOptional<import("zod").ZodObject<{
1454
+ id: import("zod").ZodOptional<import("zod").ZodNumber>;
1455
+ key: import("zod").ZodOptional<import("zod").ZodString>;
1456
+ name: import("zod").ZodOptional<import("zod").ZodString>;
1457
+ }, "strip", import("zod").ZodTypeAny, {
1458
+ key?: string | undefined;
1459
+ id?: number | undefined;
1460
+ name?: string | undefined;
1461
+ }, {
1462
+ key?: string | undefined;
1463
+ id?: number | undefined;
1464
+ name?: string | undefined;
1465
+ }>>;
1466
+ }, "strip", import("zod").ZodTypeAny, {
1467
+ id?: string | undefined;
1468
+ name?: string | undefined;
1469
+ statusCategory?: {
1470
+ key?: string | undefined;
1471
+ id?: number | undefined;
1472
+ name?: string | undefined;
1473
+ } | undefined;
1474
+ }, {
1475
+ id?: string | undefined;
1476
+ name?: string | undefined;
1477
+ statusCategory?: {
1478
+ key?: string | undefined;
1479
+ id?: number | undefined;
1480
+ name?: string | undefined;
1481
+ } | undefined;
1482
+ }>>;
1483
+ assignee: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
1484
+ accountId: import("zod").ZodOptional<import("zod").ZodString>;
1485
+ displayName: import("zod").ZodOptional<import("zod").ZodString>;
1486
+ emailAddress: import("zod").ZodOptional<import("zod").ZodString>;
1487
+ active: import("zod").ZodOptional<import("zod").ZodBoolean>;
1488
+ avatarUrls: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodString>>;
1489
+ }, "strip", import("zod").ZodTypeAny, {
1490
+ accountId?: string | undefined;
1491
+ displayName?: string | undefined;
1492
+ emailAddress?: string | undefined;
1493
+ active?: boolean | undefined;
1494
+ avatarUrls?: Record<string, string> | undefined;
1495
+ }, {
1496
+ accountId?: string | undefined;
1497
+ displayName?: string | undefined;
1498
+ emailAddress?: string | undefined;
1499
+ active?: boolean | undefined;
1500
+ avatarUrls?: Record<string, string> | undefined;
1501
+ }>>>;
1502
+ reporter: import("zod").ZodOptional<import("zod").ZodObject<{
1503
+ accountId: import("zod").ZodOptional<import("zod").ZodString>;
1504
+ displayName: import("zod").ZodOptional<import("zod").ZodString>;
1505
+ emailAddress: import("zod").ZodOptional<import("zod").ZodString>;
1506
+ active: import("zod").ZodOptional<import("zod").ZodBoolean>;
1507
+ avatarUrls: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodString>>;
1508
+ }, "strip", import("zod").ZodTypeAny, {
1509
+ accountId?: string | undefined;
1510
+ displayName?: string | undefined;
1511
+ emailAddress?: string | undefined;
1512
+ active?: boolean | undefined;
1513
+ avatarUrls?: Record<string, string> | undefined;
1514
+ }, {
1515
+ accountId?: string | undefined;
1516
+ displayName?: string | undefined;
1517
+ emailAddress?: string | undefined;
1518
+ active?: boolean | undefined;
1519
+ avatarUrls?: Record<string, string> | undefined;
1520
+ }>>;
1521
+ priority: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
1522
+ id: import("zod").ZodOptional<import("zod").ZodString>;
1523
+ name: import("zod").ZodOptional<import("zod").ZodString>;
1524
+ iconUrl: import("zod").ZodOptional<import("zod").ZodString>;
1525
+ }, "strip", import("zod").ZodTypeAny, {
1526
+ id?: string | undefined;
1527
+ name?: string | undefined;
1528
+ iconUrl?: string | undefined;
1529
+ }, {
1530
+ id?: string | undefined;
1531
+ name?: string | undefined;
1532
+ iconUrl?: string | undefined;
1533
+ }>>>;
1534
+ issuetype: import("zod").ZodOptional<import("zod").ZodObject<{
1535
+ id: import("zod").ZodOptional<import("zod").ZodString>;
1536
+ name: import("zod").ZodOptional<import("zod").ZodString>;
1537
+ description: import("zod").ZodOptional<import("zod").ZodString>;
1538
+ subtask: import("zod").ZodOptional<import("zod").ZodBoolean>;
1539
+ }, "strip", import("zod").ZodTypeAny, {
1540
+ id?: string | undefined;
1541
+ name?: string | undefined;
1542
+ description?: string | undefined;
1543
+ subtask?: boolean | undefined;
1544
+ }, {
1545
+ id?: string | undefined;
1546
+ name?: string | undefined;
1547
+ description?: string | undefined;
1548
+ subtask?: boolean | undefined;
1549
+ }>>;
1550
+ project: import("zod").ZodOptional<import("zod").ZodObject<{
1551
+ id: import("zod").ZodOptional<import("zod").ZodString>;
1552
+ key: import("zod").ZodOptional<import("zod").ZodString>;
1553
+ name: import("zod").ZodOptional<import("zod").ZodString>;
1554
+ }, "strip", import("zod").ZodTypeAny, {
1555
+ key?: string | undefined;
1556
+ id?: string | undefined;
1557
+ name?: string | undefined;
1558
+ }, {
1559
+ key?: string | undefined;
1560
+ id?: string | undefined;
1561
+ name?: string | undefined;
1562
+ }>>;
1563
+ labels: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
1564
+ created: import("zod").ZodOptional<import("zod").ZodString>;
1565
+ updated: import("zod").ZodOptional<import("zod").ZodString>;
1566
+ comment: import("zod").ZodOptional<import("zod").ZodObject<{
1567
+ total: import("zod").ZodOptional<import("zod").ZodNumber>;
1568
+ comments: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodUnknown, "many">>;
1569
+ }, "strip", import("zod").ZodTypeAny, {
1570
+ total?: number | undefined;
1571
+ comments?: unknown[] | undefined;
1572
+ }, {
1573
+ total?: number | undefined;
1574
+ comments?: unknown[] | undefined;
1575
+ }>>;
1576
+ }, "strip", import("zod").ZodTypeAny, {
1577
+ priority?: {
1578
+ id?: string | undefined;
1579
+ name?: string | undefined;
1580
+ iconUrl?: string | undefined;
1581
+ } | null | undefined;
1582
+ status?: {
1583
+ id?: string | undefined;
1584
+ name?: string | undefined;
1585
+ statusCategory?: {
1586
+ key?: string | undefined;
1587
+ id?: number | undefined;
1588
+ name?: string | undefined;
1589
+ } | undefined;
1590
+ } | undefined;
1591
+ description?: unknown;
1592
+ summary?: string | undefined;
1593
+ assignee?: {
1594
+ accountId?: string | undefined;
1595
+ displayName?: string | undefined;
1596
+ emailAddress?: string | undefined;
1597
+ active?: boolean | undefined;
1598
+ avatarUrls?: Record<string, string> | undefined;
1599
+ } | null | undefined;
1600
+ reporter?: {
1601
+ accountId?: string | undefined;
1602
+ displayName?: string | undefined;
1603
+ emailAddress?: string | undefined;
1604
+ active?: boolean | undefined;
1605
+ avatarUrls?: Record<string, string> | undefined;
1606
+ } | undefined;
1607
+ issuetype?: {
1608
+ id?: string | undefined;
1609
+ name?: string | undefined;
1610
+ description?: string | undefined;
1611
+ subtask?: boolean | undefined;
1612
+ } | undefined;
1613
+ project?: {
1614
+ key?: string | undefined;
1615
+ id?: string | undefined;
1616
+ name?: string | undefined;
1617
+ } | undefined;
1618
+ labels?: string[] | undefined;
1619
+ created?: string | undefined;
1620
+ updated?: string | undefined;
1621
+ comment?: {
1622
+ total?: number | undefined;
1623
+ comments?: unknown[] | undefined;
1624
+ } | undefined;
1625
+ }, {
1626
+ priority?: {
1627
+ id?: string | undefined;
1628
+ name?: string | undefined;
1629
+ iconUrl?: string | undefined;
1630
+ } | null | undefined;
1631
+ status?: {
1632
+ id?: string | undefined;
1633
+ name?: string | undefined;
1634
+ statusCategory?: {
1635
+ key?: string | undefined;
1636
+ id?: number | undefined;
1637
+ name?: string | undefined;
1638
+ } | undefined;
1639
+ } | undefined;
1640
+ description?: unknown;
1641
+ summary?: string | undefined;
1642
+ assignee?: {
1643
+ accountId?: string | undefined;
1644
+ displayName?: string | undefined;
1645
+ emailAddress?: string | undefined;
1646
+ active?: boolean | undefined;
1647
+ avatarUrls?: Record<string, string> | undefined;
1648
+ } | null | undefined;
1649
+ reporter?: {
1650
+ accountId?: string | undefined;
1651
+ displayName?: string | undefined;
1652
+ emailAddress?: string | undefined;
1653
+ active?: boolean | undefined;
1654
+ avatarUrls?: Record<string, string> | undefined;
1655
+ } | undefined;
1656
+ issuetype?: {
1657
+ id?: string | undefined;
1658
+ name?: string | undefined;
1659
+ description?: string | undefined;
1660
+ subtask?: boolean | undefined;
1661
+ } | undefined;
1662
+ project?: {
1663
+ key?: string | undefined;
1664
+ id?: string | undefined;
1665
+ name?: string | undefined;
1666
+ } | undefined;
1667
+ labels?: string[] | undefined;
1668
+ created?: string | undefined;
1669
+ updated?: string | undefined;
1670
+ comment?: {
1671
+ total?: number | undefined;
1672
+ comments?: unknown[] | undefined;
1673
+ } | undefined;
1674
+ }>>;
1675
+ }, "strip", import("zod").ZodTypeAny, {
1676
+ id: string;
1677
+ key?: string | undefined;
1678
+ self?: string | undefined;
1679
+ fields?: {
1680
+ priority?: {
1681
+ id?: string | undefined;
1682
+ name?: string | undefined;
1683
+ iconUrl?: string | undefined;
1684
+ } | null | undefined;
1685
+ status?: {
1686
+ id?: string | undefined;
1687
+ name?: string | undefined;
1688
+ statusCategory?: {
1689
+ key?: string | undefined;
1690
+ id?: number | undefined;
1691
+ name?: string | undefined;
1692
+ } | undefined;
1693
+ } | undefined;
1694
+ description?: unknown;
1695
+ summary?: string | undefined;
1696
+ assignee?: {
1697
+ accountId?: string | undefined;
1698
+ displayName?: string | undefined;
1699
+ emailAddress?: string | undefined;
1700
+ active?: boolean | undefined;
1701
+ avatarUrls?: Record<string, string> | undefined;
1702
+ } | null | undefined;
1703
+ reporter?: {
1704
+ accountId?: string | undefined;
1705
+ displayName?: string | undefined;
1706
+ emailAddress?: string | undefined;
1707
+ active?: boolean | undefined;
1708
+ avatarUrls?: Record<string, string> | undefined;
1709
+ } | undefined;
1710
+ issuetype?: {
1711
+ id?: string | undefined;
1712
+ name?: string | undefined;
1713
+ description?: string | undefined;
1714
+ subtask?: boolean | undefined;
1715
+ } | undefined;
1716
+ project?: {
1717
+ key?: string | undefined;
1718
+ id?: string | undefined;
1719
+ name?: string | undefined;
1720
+ } | undefined;
1721
+ labels?: string[] | undefined;
1722
+ created?: string | undefined;
1723
+ updated?: string | undefined;
1724
+ comment?: {
1725
+ total?: number | undefined;
1726
+ comments?: unknown[] | undefined;
1727
+ } | undefined;
1728
+ } | undefined;
1729
+ }, {
1730
+ id: string;
1731
+ key?: string | undefined;
1732
+ self?: string | undefined;
1733
+ fields?: {
1734
+ priority?: {
1735
+ id?: string | undefined;
1736
+ name?: string | undefined;
1737
+ iconUrl?: string | undefined;
1738
+ } | null | undefined;
1739
+ status?: {
1740
+ id?: string | undefined;
1741
+ name?: string | undefined;
1742
+ statusCategory?: {
1743
+ key?: string | undefined;
1744
+ id?: number | undefined;
1745
+ name?: string | undefined;
1746
+ } | undefined;
1747
+ } | undefined;
1748
+ description?: unknown;
1749
+ summary?: string | undefined;
1750
+ assignee?: {
1751
+ accountId?: string | undefined;
1752
+ displayName?: string | undefined;
1753
+ emailAddress?: string | undefined;
1754
+ active?: boolean | undefined;
1755
+ avatarUrls?: Record<string, string> | undefined;
1756
+ } | null | undefined;
1757
+ reporter?: {
1758
+ accountId?: string | undefined;
1759
+ displayName?: string | undefined;
1760
+ emailAddress?: string | undefined;
1761
+ active?: boolean | undefined;
1762
+ avatarUrls?: Record<string, string> | undefined;
1763
+ } | undefined;
1764
+ issuetype?: {
1765
+ id?: string | undefined;
1766
+ name?: string | undefined;
1767
+ description?: string | undefined;
1768
+ subtask?: boolean | undefined;
1769
+ } | undefined;
1770
+ project?: {
1771
+ key?: string | undefined;
1772
+ id?: string | undefined;
1773
+ name?: string | undefined;
1774
+ } | undefined;
1775
+ labels?: string[] | undefined;
1776
+ created?: string | undefined;
1777
+ updated?: string | undefined;
1778
+ comment?: {
1779
+ total?: number | undefined;
1780
+ comments?: unknown[] | undefined;
1781
+ } | undefined;
1782
+ } | undefined;
1783
+ }>, "many">>;
1784
+ issueErrors: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodUnknown, "many">>;
1785
+ }, "strip", import("zod").ZodTypeAny, {
1786
+ issues?: {
1787
+ id: string;
1788
+ key?: string | undefined;
1789
+ self?: string | undefined;
1790
+ fields?: {
1791
+ priority?: {
1792
+ id?: string | undefined;
1793
+ name?: string | undefined;
1794
+ iconUrl?: string | undefined;
1795
+ } | null | undefined;
1796
+ status?: {
1797
+ id?: string | undefined;
1798
+ name?: string | undefined;
1799
+ statusCategory?: {
1800
+ key?: string | undefined;
1801
+ id?: number | undefined;
1802
+ name?: string | undefined;
1803
+ } | undefined;
1804
+ } | undefined;
1805
+ description?: unknown;
1806
+ summary?: string | undefined;
1807
+ assignee?: {
1808
+ accountId?: string | undefined;
1809
+ displayName?: string | undefined;
1810
+ emailAddress?: string | undefined;
1811
+ active?: boolean | undefined;
1812
+ avatarUrls?: Record<string, string> | undefined;
1813
+ } | null | undefined;
1814
+ reporter?: {
1815
+ accountId?: string | undefined;
1816
+ displayName?: string | undefined;
1817
+ emailAddress?: string | undefined;
1818
+ active?: boolean | undefined;
1819
+ avatarUrls?: Record<string, string> | undefined;
1820
+ } | undefined;
1821
+ issuetype?: {
1822
+ id?: string | undefined;
1823
+ name?: string | undefined;
1824
+ description?: string | undefined;
1825
+ subtask?: boolean | undefined;
1826
+ } | undefined;
1827
+ project?: {
1828
+ key?: string | undefined;
1829
+ id?: string | undefined;
1830
+ name?: string | undefined;
1831
+ } | undefined;
1832
+ labels?: string[] | undefined;
1833
+ created?: string | undefined;
1834
+ updated?: string | undefined;
1835
+ comment?: {
1836
+ total?: number | undefined;
1837
+ comments?: unknown[] | undefined;
1838
+ } | undefined;
1839
+ } | undefined;
1840
+ }[] | undefined;
1841
+ issueErrors?: unknown[] | undefined;
1842
+ }, {
1843
+ issues?: {
1844
+ id: string;
1845
+ key?: string | undefined;
1846
+ self?: string | undefined;
1847
+ fields?: {
1848
+ priority?: {
1849
+ id?: string | undefined;
1850
+ name?: string | undefined;
1851
+ iconUrl?: string | undefined;
1852
+ } | null | undefined;
1853
+ status?: {
1854
+ id?: string | undefined;
1855
+ name?: string | undefined;
1856
+ statusCategory?: {
1857
+ key?: string | undefined;
1858
+ id?: number | undefined;
1859
+ name?: string | undefined;
1860
+ } | undefined;
1861
+ } | undefined;
1862
+ description?: unknown;
1863
+ summary?: string | undefined;
1864
+ assignee?: {
1865
+ accountId?: string | undefined;
1866
+ displayName?: string | undefined;
1867
+ emailAddress?: string | undefined;
1868
+ active?: boolean | undefined;
1869
+ avatarUrls?: Record<string, string> | undefined;
1870
+ } | null | undefined;
1871
+ reporter?: {
1872
+ accountId?: string | undefined;
1873
+ displayName?: string | undefined;
1874
+ emailAddress?: string | undefined;
1875
+ active?: boolean | undefined;
1876
+ avatarUrls?: Record<string, string> | undefined;
1877
+ } | undefined;
1878
+ issuetype?: {
1879
+ id?: string | undefined;
1880
+ name?: string | undefined;
1881
+ description?: string | undefined;
1882
+ subtask?: boolean | undefined;
1883
+ } | undefined;
1884
+ project?: {
1885
+ key?: string | undefined;
1886
+ id?: string | undefined;
1887
+ name?: string | undefined;
1888
+ } | undefined;
1889
+ labels?: string[] | undefined;
1890
+ created?: string | undefined;
1891
+ updated?: string | undefined;
1892
+ comment?: {
1893
+ total?: number | undefined;
1894
+ comments?: unknown[] | undefined;
1895
+ } | undefined;
1896
+ } | undefined;
1897
+ }[] | undefined;
1898
+ issueErrors?: unknown[] | undefined;
1899
+ }>;
1900
+ };
1901
+ readonly 'issues.addAttachment': {
1902
+ readonly input: import("zod").ZodEffects<import("zod").ZodObject<{
1903
+ issue_id_or_key: import("zod").ZodString;
1904
+ file_name: import("zod").ZodString;
1905
+ file_content: import("zod").ZodOptional<import("zod").ZodString>;
1906
+ file_url: import("zod").ZodOptional<import("zod").ZodString>;
1907
+ mime_type: import("zod").ZodOptional<import("zod").ZodString>;
1908
+ }, "strip", import("zod").ZodTypeAny, {
1909
+ issue_id_or_key: string;
1910
+ file_name: string;
1911
+ file_content?: string | undefined;
1912
+ file_url?: string | undefined;
1913
+ mime_type?: string | undefined;
1914
+ }, {
1915
+ issue_id_or_key: string;
1916
+ file_name: string;
1917
+ file_content?: string | undefined;
1918
+ file_url?: string | undefined;
1919
+ mime_type?: string | undefined;
1920
+ }>, {
1921
+ issue_id_or_key: string;
1922
+ file_name: string;
1923
+ file_content?: string | undefined;
1924
+ file_url?: string | undefined;
1925
+ mime_type?: string | undefined;
1926
+ }, {
1927
+ issue_id_or_key: string;
1928
+ file_name: string;
1929
+ file_content?: string | undefined;
1930
+ file_url?: string | undefined;
1931
+ mime_type?: string | undefined;
1932
+ }>;
1933
+ readonly output: import("zod").ZodArray<import("zod").ZodObject<{
1934
+ id: import("zod").ZodOptional<import("zod").ZodString>;
1935
+ self: import("zod").ZodOptional<import("zod").ZodString>;
1936
+ filename: import("zod").ZodOptional<import("zod").ZodString>;
1937
+ mimeType: import("zod").ZodOptional<import("zod").ZodString>;
1938
+ size: import("zod").ZodOptional<import("zod").ZodNumber>;
1939
+ content: import("zod").ZodOptional<import("zod").ZodString>;
1940
+ created: import("zod").ZodOptional<import("zod").ZodString>;
1941
+ }, "strip", import("zod").ZodTypeAny, {
1942
+ id?: string | undefined;
1943
+ created?: string | undefined;
1944
+ self?: string | undefined;
1945
+ filename?: string | undefined;
1946
+ mimeType?: string | undefined;
1947
+ size?: number | undefined;
1948
+ content?: string | undefined;
1949
+ }, {
1950
+ id?: string | undefined;
1951
+ created?: string | undefined;
1952
+ self?: string | undefined;
1953
+ filename?: string | undefined;
1954
+ mimeType?: string | undefined;
1955
+ size?: number | undefined;
1956
+ content?: string | undefined;
1957
+ }>, "many">;
1958
+ };
1959
+ readonly 'issues.addWatcher': {
1960
+ readonly input: import("zod").ZodObject<{
1961
+ issue_id_or_key: import("zod").ZodString;
1962
+ account_id: import("zod").ZodString;
1963
+ }, "strip", import("zod").ZodTypeAny, {
1964
+ account_id: string;
1965
+ issue_id_or_key: string;
1966
+ }, {
1967
+ account_id: string;
1968
+ issue_id_or_key: string;
1969
+ }>;
1970
+ readonly output: import("zod").ZodObject<{
1971
+ success: import("zod").ZodBoolean;
1972
+ }, "strip", import("zod").ZodTypeAny, {
1973
+ success: boolean;
1974
+ }, {
1975
+ success: boolean;
1976
+ }>;
1977
+ };
1978
+ readonly 'issues.removeWatcher': {
1979
+ readonly input: import("zod").ZodObject<{
1980
+ issue_id_or_key: import("zod").ZodString;
1981
+ account_id: import("zod").ZodString;
1982
+ }, "strip", import("zod").ZodTypeAny, {
1983
+ account_id: string;
1984
+ issue_id_or_key: string;
1985
+ }, {
1986
+ account_id: string;
1987
+ issue_id_or_key: string;
1988
+ }>;
1989
+ readonly output: import("zod").ZodObject<{
1990
+ success: import("zod").ZodBoolean;
1991
+ }, "strip", import("zod").ZodTypeAny, {
1992
+ success: boolean;
1993
+ }, {
1994
+ success: boolean;
1995
+ }>;
1996
+ };
1997
+ readonly 'issues.linkIssues': {
1998
+ readonly input: import("zod").ZodObject<{
1999
+ link_type: import("zod").ZodString;
2000
+ inward_issue_key: import("zod").ZodString;
2001
+ outward_issue_key: import("zod").ZodString;
2002
+ comment: import("zod").ZodOptional<import("zod").ZodString>;
2003
+ }, "strip", import("zod").ZodTypeAny, {
2004
+ link_type: string;
2005
+ inward_issue_key: string;
2006
+ outward_issue_key: string;
2007
+ comment?: string | undefined;
2008
+ }, {
2009
+ link_type: string;
2010
+ inward_issue_key: string;
2011
+ outward_issue_key: string;
2012
+ comment?: string | undefined;
2013
+ }>;
2014
+ readonly output: import("zod").ZodObject<{
2015
+ success: import("zod").ZodBoolean;
2016
+ }, "strip", import("zod").ZodTypeAny, {
2017
+ success: boolean;
2018
+ }, {
2019
+ success: boolean;
2020
+ }>;
2021
+ };
2022
+ readonly 'comments.add': {
2023
+ readonly input: import("zod").ZodObject<{
2024
+ issue_id_or_key: import("zod").ZodString;
2025
+ comment: import("zod").ZodString;
2026
+ visibility_type: import("zod").ZodOptional<import("zod").ZodString>;
2027
+ visibility_value: import("zod").ZodOptional<import("zod").ZodString>;
2028
+ }, "strip", import("zod").ZodTypeAny, {
2029
+ comment: string;
2030
+ issue_id_or_key: string;
2031
+ visibility_type?: string | undefined;
2032
+ visibility_value?: string | undefined;
2033
+ }, {
2034
+ comment: string;
2035
+ issue_id_or_key: string;
2036
+ visibility_type?: string | undefined;
2037
+ visibility_value?: string | undefined;
2038
+ }>;
2039
+ readonly output: import("zod").ZodObject<{
2040
+ id: import("zod").ZodOptional<import("zod").ZodString>;
2041
+ self: import("zod").ZodOptional<import("zod").ZodString>;
2042
+ author: import("zod").ZodOptional<import("zod").ZodObject<{
2043
+ accountId: import("zod").ZodOptional<import("zod").ZodString>;
2044
+ displayName: import("zod").ZodOptional<import("zod").ZodString>;
2045
+ emailAddress: import("zod").ZodOptional<import("zod").ZodString>;
2046
+ active: import("zod").ZodOptional<import("zod").ZodBoolean>;
2047
+ avatarUrls: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodString>>;
2048
+ }, "strip", import("zod").ZodTypeAny, {
2049
+ accountId?: string | undefined;
2050
+ displayName?: string | undefined;
2051
+ emailAddress?: string | undefined;
2052
+ active?: boolean | undefined;
2053
+ avatarUrls?: Record<string, string> | undefined;
2054
+ }, {
2055
+ accountId?: string | undefined;
2056
+ displayName?: string | undefined;
2057
+ emailAddress?: string | undefined;
2058
+ active?: boolean | undefined;
2059
+ avatarUrls?: Record<string, string> | undefined;
2060
+ }>>;
2061
+ created: import("zod").ZodOptional<import("zod").ZodString>;
2062
+ }, "strip", import("zod").ZodTypeAny, {
2063
+ id?: string | undefined;
2064
+ created?: string | undefined;
2065
+ self?: string | undefined;
2066
+ author?: {
2067
+ accountId?: string | undefined;
2068
+ displayName?: string | undefined;
2069
+ emailAddress?: string | undefined;
2070
+ active?: boolean | undefined;
2071
+ avatarUrls?: Record<string, string> | undefined;
2072
+ } | undefined;
2073
+ }, {
2074
+ id?: string | undefined;
2075
+ created?: string | undefined;
2076
+ self?: string | undefined;
2077
+ author?: {
2078
+ accountId?: string | undefined;
2079
+ displayName?: string | undefined;
2080
+ emailAddress?: string | undefined;
2081
+ active?: boolean | undefined;
2082
+ avatarUrls?: Record<string, string> | undefined;
2083
+ } | undefined;
2084
+ }>;
2085
+ };
2086
+ readonly 'comments.get': {
2087
+ readonly input: import("zod").ZodObject<{
2088
+ issue_id_or_key: import("zod").ZodString;
2089
+ comment_id: import("zod").ZodString;
2090
+ }, "strip", import("zod").ZodTypeAny, {
2091
+ issue_id_or_key: string;
2092
+ comment_id: string;
2093
+ }, {
2094
+ issue_id_or_key: string;
2095
+ comment_id: string;
2096
+ }>;
2097
+ readonly output: import("zod").ZodObject<{
2098
+ id: import("zod").ZodOptional<import("zod").ZodString>;
2099
+ self: import("zod").ZodOptional<import("zod").ZodString>;
2100
+ author: import("zod").ZodOptional<import("zod").ZodObject<{
2101
+ accountId: import("zod").ZodOptional<import("zod").ZodString>;
2102
+ displayName: import("zod").ZodOptional<import("zod").ZodString>;
2103
+ emailAddress: import("zod").ZodOptional<import("zod").ZodString>;
2104
+ active: import("zod").ZodOptional<import("zod").ZodBoolean>;
2105
+ avatarUrls: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodString>>;
2106
+ }, "strip", import("zod").ZodTypeAny, {
2107
+ accountId?: string | undefined;
2108
+ displayName?: string | undefined;
2109
+ emailAddress?: string | undefined;
2110
+ active?: boolean | undefined;
2111
+ avatarUrls?: Record<string, string> | undefined;
2112
+ }, {
2113
+ accountId?: string | undefined;
2114
+ displayName?: string | undefined;
2115
+ emailAddress?: string | undefined;
2116
+ active?: boolean | undefined;
2117
+ avatarUrls?: Record<string, string> | undefined;
2118
+ }>>;
2119
+ body: import("zod").ZodOptional<import("zod").ZodUnknown>;
2120
+ renderedBody: import("zod").ZodOptional<import("zod").ZodString>;
2121
+ created: import("zod").ZodOptional<import("zod").ZodString>;
2122
+ updated: import("zod").ZodOptional<import("zod").ZodString>;
2123
+ }, "strip", import("zod").ZodTypeAny, {
2124
+ body?: unknown;
2125
+ id?: string | undefined;
2126
+ created?: string | undefined;
2127
+ updated?: string | undefined;
2128
+ self?: string | undefined;
2129
+ author?: {
2130
+ accountId?: string | undefined;
2131
+ displayName?: string | undefined;
2132
+ emailAddress?: string | undefined;
2133
+ active?: boolean | undefined;
2134
+ avatarUrls?: Record<string, string> | undefined;
2135
+ } | undefined;
2136
+ renderedBody?: string | undefined;
2137
+ }, {
2138
+ body?: unknown;
2139
+ id?: string | undefined;
2140
+ created?: string | undefined;
2141
+ updated?: string | undefined;
2142
+ self?: string | undefined;
2143
+ author?: {
2144
+ accountId?: string | undefined;
2145
+ displayName?: string | undefined;
2146
+ emailAddress?: string | undefined;
2147
+ active?: boolean | undefined;
2148
+ avatarUrls?: Record<string, string> | undefined;
2149
+ } | undefined;
2150
+ renderedBody?: string | undefined;
2151
+ }>;
2152
+ };
2153
+ readonly 'comments.list': {
2154
+ readonly input: import("zod").ZodObject<{
2155
+ issue_id_or_key: import("zod").ZodString;
2156
+ start_at: import("zod").ZodOptional<import("zod").ZodNumber>;
2157
+ max_results: import("zod").ZodOptional<import("zod").ZodNumber>;
2158
+ order_by: import("zod").ZodOptional<import("zod").ZodString>;
2159
+ }, "strip", import("zod").ZodTypeAny, {
2160
+ issue_id_or_key: string;
2161
+ start_at?: number | undefined;
2162
+ max_results?: number | undefined;
2163
+ order_by?: string | undefined;
2164
+ }, {
2165
+ issue_id_or_key: string;
2166
+ start_at?: number | undefined;
2167
+ max_results?: number | undefined;
2168
+ order_by?: string | undefined;
2169
+ }>;
2170
+ readonly output: import("zod").ZodObject<{
2171
+ total: import("zod").ZodOptional<import("zod").ZodNumber>;
2172
+ startAt: import("zod").ZodOptional<import("zod").ZodNumber>;
2173
+ maxResults: import("zod").ZodOptional<import("zod").ZodNumber>;
2174
+ comments: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
2175
+ id: import("zod").ZodOptional<import("zod").ZodString>;
2176
+ self: import("zod").ZodOptional<import("zod").ZodString>;
2177
+ author: import("zod").ZodOptional<import("zod").ZodObject<{
2178
+ accountId: import("zod").ZodOptional<import("zod").ZodString>;
2179
+ displayName: import("zod").ZodOptional<import("zod").ZodString>;
2180
+ emailAddress: import("zod").ZodOptional<import("zod").ZodString>;
2181
+ active: import("zod").ZodOptional<import("zod").ZodBoolean>;
2182
+ avatarUrls: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodString>>;
2183
+ }, "strip", import("zod").ZodTypeAny, {
2184
+ accountId?: string | undefined;
2185
+ displayName?: string | undefined;
2186
+ emailAddress?: string | undefined;
2187
+ active?: boolean | undefined;
2188
+ avatarUrls?: Record<string, string> | undefined;
2189
+ }, {
2190
+ accountId?: string | undefined;
2191
+ displayName?: string | undefined;
2192
+ emailAddress?: string | undefined;
2193
+ active?: boolean | undefined;
2194
+ avatarUrls?: Record<string, string> | undefined;
2195
+ }>>;
2196
+ body: import("zod").ZodOptional<import("zod").ZodUnknown>;
2197
+ renderedBody: import("zod").ZodOptional<import("zod").ZodString>;
2198
+ created: import("zod").ZodOptional<import("zod").ZodString>;
2199
+ updated: import("zod").ZodOptional<import("zod").ZodString>;
2200
+ }, "strip", import("zod").ZodTypeAny, {
2201
+ body?: unknown;
2202
+ id?: string | undefined;
2203
+ created?: string | undefined;
2204
+ updated?: string | undefined;
2205
+ self?: string | undefined;
2206
+ author?: {
2207
+ accountId?: string | undefined;
2208
+ displayName?: string | undefined;
2209
+ emailAddress?: string | undefined;
2210
+ active?: boolean | undefined;
2211
+ avatarUrls?: Record<string, string> | undefined;
2212
+ } | undefined;
2213
+ renderedBody?: string | undefined;
2214
+ }, {
2215
+ body?: unknown;
2216
+ id?: string | undefined;
2217
+ created?: string | undefined;
2218
+ updated?: string | undefined;
2219
+ self?: string | undefined;
2220
+ author?: {
2221
+ accountId?: string | undefined;
2222
+ displayName?: string | undefined;
2223
+ emailAddress?: string | undefined;
2224
+ active?: boolean | undefined;
2225
+ avatarUrls?: Record<string, string> | undefined;
2226
+ } | undefined;
2227
+ renderedBody?: string | undefined;
2228
+ }>, "many">>;
2229
+ }, "strip", import("zod").ZodTypeAny, {
2230
+ total?: number | undefined;
2231
+ comments?: {
2232
+ body?: unknown;
2233
+ id?: string | undefined;
2234
+ created?: string | undefined;
2235
+ updated?: string | undefined;
2236
+ self?: string | undefined;
2237
+ author?: {
2238
+ accountId?: string | undefined;
2239
+ displayName?: string | undefined;
2240
+ emailAddress?: string | undefined;
2241
+ active?: boolean | undefined;
2242
+ avatarUrls?: Record<string, string> | undefined;
2243
+ } | undefined;
2244
+ renderedBody?: string | undefined;
2245
+ }[] | undefined;
2246
+ startAt?: number | undefined;
2247
+ maxResults?: number | undefined;
2248
+ }, {
2249
+ total?: number | undefined;
2250
+ comments?: {
2251
+ body?: unknown;
2252
+ id?: string | undefined;
2253
+ created?: string | undefined;
2254
+ updated?: string | undefined;
2255
+ self?: string | undefined;
2256
+ author?: {
2257
+ accountId?: string | undefined;
2258
+ displayName?: string | undefined;
2259
+ emailAddress?: string | undefined;
2260
+ active?: boolean | undefined;
2261
+ avatarUrls?: Record<string, string> | undefined;
2262
+ } | undefined;
2263
+ renderedBody?: string | undefined;
2264
+ }[] | undefined;
2265
+ startAt?: number | undefined;
2266
+ maxResults?: number | undefined;
2267
+ }>;
2268
+ };
2269
+ readonly 'comments.update': {
2270
+ readonly input: import("zod").ZodObject<{
2271
+ issue_id_or_key: import("zod").ZodString;
2272
+ comment_id: import("zod").ZodString;
2273
+ comment: import("zod").ZodString;
2274
+ }, "strip", import("zod").ZodTypeAny, {
2275
+ comment: string;
2276
+ issue_id_or_key: string;
2277
+ comment_id: string;
2278
+ }, {
2279
+ comment: string;
2280
+ issue_id_or_key: string;
2281
+ comment_id: string;
2282
+ }>;
2283
+ readonly output: import("zod").ZodObject<{
2284
+ id: import("zod").ZodOptional<import("zod").ZodString>;
2285
+ self: import("zod").ZodOptional<import("zod").ZodString>;
2286
+ author: import("zod").ZodOptional<import("zod").ZodObject<{
2287
+ accountId: import("zod").ZodOptional<import("zod").ZodString>;
2288
+ displayName: import("zod").ZodOptional<import("zod").ZodString>;
2289
+ emailAddress: import("zod").ZodOptional<import("zod").ZodString>;
2290
+ active: import("zod").ZodOptional<import("zod").ZodBoolean>;
2291
+ avatarUrls: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodString>>;
2292
+ }, "strip", import("zod").ZodTypeAny, {
2293
+ accountId?: string | undefined;
2294
+ displayName?: string | undefined;
2295
+ emailAddress?: string | undefined;
2296
+ active?: boolean | undefined;
2297
+ avatarUrls?: Record<string, string> | undefined;
2298
+ }, {
2299
+ accountId?: string | undefined;
2300
+ displayName?: string | undefined;
2301
+ emailAddress?: string | undefined;
2302
+ active?: boolean | undefined;
2303
+ avatarUrls?: Record<string, string> | undefined;
2304
+ }>>;
2305
+ body: import("zod").ZodOptional<import("zod").ZodUnknown>;
2306
+ renderedBody: import("zod").ZodOptional<import("zod").ZodString>;
2307
+ created: import("zod").ZodOptional<import("zod").ZodString>;
2308
+ updated: import("zod").ZodOptional<import("zod").ZodString>;
2309
+ }, "strip", import("zod").ZodTypeAny, {
2310
+ body?: unknown;
2311
+ id?: string | undefined;
2312
+ created?: string | undefined;
2313
+ updated?: string | undefined;
2314
+ self?: string | undefined;
2315
+ author?: {
2316
+ accountId?: string | undefined;
2317
+ displayName?: string | undefined;
2318
+ emailAddress?: string | undefined;
2319
+ active?: boolean | undefined;
2320
+ avatarUrls?: Record<string, string> | undefined;
2321
+ } | undefined;
2322
+ renderedBody?: string | undefined;
2323
+ }, {
2324
+ body?: unknown;
2325
+ id?: string | undefined;
2326
+ created?: string | undefined;
2327
+ updated?: string | undefined;
2328
+ self?: string | undefined;
2329
+ author?: {
2330
+ accountId?: string | undefined;
2331
+ displayName?: string | undefined;
2332
+ emailAddress?: string | undefined;
2333
+ active?: boolean | undefined;
2334
+ avatarUrls?: Record<string, string> | undefined;
2335
+ } | undefined;
2336
+ renderedBody?: string | undefined;
2337
+ }>;
2338
+ };
2339
+ readonly 'comments.delete': {
2340
+ readonly input: import("zod").ZodObject<{
2341
+ issue_id_or_key: import("zod").ZodString;
2342
+ comment_id: import("zod").ZodString;
2343
+ }, "strip", import("zod").ZodTypeAny, {
2344
+ issue_id_or_key: string;
2345
+ comment_id: string;
2346
+ }, {
2347
+ issue_id_or_key: string;
2348
+ comment_id: string;
2349
+ }>;
2350
+ readonly output: import("zod").ZodObject<{
2351
+ success: import("zod").ZodBoolean;
2352
+ }, "strip", import("zod").ZodTypeAny, {
2353
+ success: boolean;
2354
+ }, {
2355
+ success: boolean;
2356
+ }>;
2357
+ };
2358
+ readonly 'projects.create': {
2359
+ readonly input: import("zod").ZodObject<{
2360
+ key: import("zod").ZodString;
2361
+ name: import("zod").ZodString;
2362
+ project_type_key: import("zod").ZodOptional<import("zod").ZodString>;
2363
+ description: import("zod").ZodOptional<import("zod").ZodString>;
2364
+ lead_account_id: import("zod").ZodOptional<import("zod").ZodString>;
2365
+ assignee_type: import("zod").ZodOptional<import("zod").ZodString>;
2366
+ }, "strip", import("zod").ZodTypeAny, {
2367
+ key: string;
2368
+ name: string;
2369
+ description?: string | undefined;
2370
+ project_type_key?: string | undefined;
2371
+ lead_account_id?: string | undefined;
2372
+ assignee_type?: string | undefined;
2373
+ }, {
2374
+ key: string;
2375
+ name: string;
2376
+ description?: string | undefined;
2377
+ project_type_key?: string | undefined;
2378
+ lead_account_id?: string | undefined;
2379
+ assignee_type?: string | undefined;
2380
+ }>;
2381
+ readonly output: import("zod").ZodObject<{
2382
+ id: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>>;
2383
+ key: import("zod").ZodOptional<import("zod").ZodString>;
2384
+ self: import("zod").ZodOptional<import("zod").ZodString>;
2385
+ }, "strip", import("zod").ZodTypeAny, {
2386
+ key?: string | undefined;
2387
+ id?: string | number | undefined;
2388
+ self?: string | undefined;
2389
+ }, {
2390
+ key?: string | undefined;
2391
+ id?: string | number | undefined;
2392
+ self?: string | undefined;
2393
+ }>;
2394
+ };
2395
+ readonly 'projects.get': {
2396
+ readonly input: import("zod").ZodObject<{
2397
+ project_id_or_key: import("zod").ZodString;
2398
+ expand: import("zod").ZodOptional<import("zod").ZodString>;
2399
+ }, "strip", import("zod").ZodTypeAny, {
2400
+ project_id_or_key: string;
2401
+ expand?: string | undefined;
2402
+ }, {
2403
+ project_id_or_key: string;
2404
+ expand?: string | undefined;
2405
+ }>;
2406
+ readonly output: import("zod").ZodObject<{
2407
+ id: import("zod").ZodOptional<import("zod").ZodString>;
2408
+ key: import("zod").ZodOptional<import("zod").ZodString>;
2409
+ name: import("zod").ZodOptional<import("zod").ZodString>;
2410
+ description: import("zod").ZodOptional<import("zod").ZodString>;
2411
+ projectTypeKey: import("zod").ZodOptional<import("zod").ZodString>;
2412
+ lead: import("zod").ZodOptional<import("zod").ZodObject<{
2413
+ accountId: import("zod").ZodOptional<import("zod").ZodString>;
2414
+ displayName: import("zod").ZodOptional<import("zod").ZodString>;
2415
+ emailAddress: import("zod").ZodOptional<import("zod").ZodString>;
2416
+ active: import("zod").ZodOptional<import("zod").ZodBoolean>;
2417
+ avatarUrls: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodString>>;
2418
+ }, "strip", import("zod").ZodTypeAny, {
2419
+ accountId?: string | undefined;
2420
+ displayName?: string | undefined;
2421
+ emailAddress?: string | undefined;
2422
+ active?: boolean | undefined;
2423
+ avatarUrls?: Record<string, string> | undefined;
2424
+ }, {
2425
+ accountId?: string | undefined;
2426
+ displayName?: string | undefined;
2427
+ emailAddress?: string | undefined;
2428
+ active?: boolean | undefined;
2429
+ avatarUrls?: Record<string, string> | undefined;
2430
+ }>>;
2431
+ self: import("zod").ZodOptional<import("zod").ZodString>;
2432
+ }, "strip", import("zod").ZodTypeAny, {
2433
+ key?: string | undefined;
2434
+ id?: string | undefined;
2435
+ name?: string | undefined;
2436
+ description?: string | undefined;
2437
+ self?: string | undefined;
2438
+ projectTypeKey?: string | undefined;
2439
+ lead?: {
2440
+ accountId?: string | undefined;
2441
+ displayName?: string | undefined;
2442
+ emailAddress?: string | undefined;
2443
+ active?: boolean | undefined;
2444
+ avatarUrls?: Record<string, string> | undefined;
2445
+ } | undefined;
2446
+ }, {
2447
+ key?: string | undefined;
2448
+ id?: string | undefined;
2449
+ name?: string | undefined;
2450
+ description?: string | undefined;
2451
+ self?: string | undefined;
2452
+ projectTypeKey?: string | undefined;
2453
+ lead?: {
2454
+ accountId?: string | undefined;
2455
+ displayName?: string | undefined;
2456
+ emailAddress?: string | undefined;
2457
+ active?: boolean | undefined;
2458
+ avatarUrls?: Record<string, string> | undefined;
2459
+ } | undefined;
2460
+ }>;
2461
+ };
2462
+ readonly 'projects.list': {
2463
+ readonly input: import("zod").ZodObject<{
2464
+ query: import("zod").ZodOptional<import("zod").ZodString>;
2465
+ order_by: import("zod").ZodOptional<import("zod").ZodString>;
2466
+ start_at: import("zod").ZodOptional<import("zod").ZodNumber>;
2467
+ max_results: import("zod").ZodOptional<import("zod").ZodNumber>;
2468
+ expand: import("zod").ZodOptional<import("zod").ZodString>;
2469
+ }, "strip", import("zod").ZodTypeAny, {
2470
+ query?: string | undefined;
2471
+ expand?: string | undefined;
2472
+ start_at?: number | undefined;
2473
+ max_results?: number | undefined;
2474
+ order_by?: string | undefined;
2475
+ }, {
2476
+ query?: string | undefined;
2477
+ expand?: string | undefined;
2478
+ start_at?: number | undefined;
2479
+ max_results?: number | undefined;
2480
+ order_by?: string | undefined;
2481
+ }>;
2482
+ readonly output: import("zod").ZodObject<{
2483
+ total: import("zod").ZodOptional<import("zod").ZodNumber>;
2484
+ startAt: import("zod").ZodOptional<import("zod").ZodNumber>;
2485
+ maxResults: import("zod").ZodOptional<import("zod").ZodNumber>;
2486
+ isLast: import("zod").ZodOptional<import("zod").ZodBoolean>;
2487
+ values: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
2488
+ id: import("zod").ZodOptional<import("zod").ZodString>;
2489
+ key: import("zod").ZodOptional<import("zod").ZodString>;
2490
+ name: import("zod").ZodOptional<import("zod").ZodString>;
2491
+ description: import("zod").ZodOptional<import("zod").ZodString>;
2492
+ projectTypeKey: import("zod").ZodOptional<import("zod").ZodString>;
2493
+ lead: import("zod").ZodOptional<import("zod").ZodObject<{
2494
+ accountId: import("zod").ZodOptional<import("zod").ZodString>;
2495
+ displayName: import("zod").ZodOptional<import("zod").ZodString>;
2496
+ emailAddress: import("zod").ZodOptional<import("zod").ZodString>;
2497
+ active: import("zod").ZodOptional<import("zod").ZodBoolean>;
2498
+ avatarUrls: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodString>>;
2499
+ }, "strip", import("zod").ZodTypeAny, {
2500
+ accountId?: string | undefined;
2501
+ displayName?: string | undefined;
2502
+ emailAddress?: string | undefined;
2503
+ active?: boolean | undefined;
2504
+ avatarUrls?: Record<string, string> | undefined;
2505
+ }, {
2506
+ accountId?: string | undefined;
2507
+ displayName?: string | undefined;
2508
+ emailAddress?: string | undefined;
2509
+ active?: boolean | undefined;
2510
+ avatarUrls?: Record<string, string> | undefined;
2511
+ }>>;
2512
+ self: import("zod").ZodOptional<import("zod").ZodString>;
2513
+ }, "strip", import("zod").ZodTypeAny, {
2514
+ key?: string | undefined;
2515
+ id?: string | undefined;
2516
+ name?: string | undefined;
2517
+ description?: string | undefined;
2518
+ self?: string | undefined;
2519
+ projectTypeKey?: string | undefined;
2520
+ lead?: {
2521
+ accountId?: string | undefined;
2522
+ displayName?: string | undefined;
2523
+ emailAddress?: string | undefined;
2524
+ active?: boolean | undefined;
2525
+ avatarUrls?: Record<string, string> | undefined;
2526
+ } | undefined;
2527
+ }, {
2528
+ key?: string | undefined;
2529
+ id?: string | undefined;
2530
+ name?: string | undefined;
2531
+ description?: string | undefined;
2532
+ self?: string | undefined;
2533
+ projectTypeKey?: string | undefined;
2534
+ lead?: {
2535
+ accountId?: string | undefined;
2536
+ displayName?: string | undefined;
2537
+ emailAddress?: string | undefined;
2538
+ active?: boolean | undefined;
2539
+ avatarUrls?: Record<string, string> | undefined;
2540
+ } | undefined;
2541
+ }>, "many">>;
2542
+ }, "strip", import("zod").ZodTypeAny, {
2543
+ values?: {
2544
+ key?: string | undefined;
2545
+ id?: string | undefined;
2546
+ name?: string | undefined;
2547
+ description?: string | undefined;
2548
+ self?: string | undefined;
2549
+ projectTypeKey?: string | undefined;
2550
+ lead?: {
2551
+ accountId?: string | undefined;
2552
+ displayName?: string | undefined;
2553
+ emailAddress?: string | undefined;
2554
+ active?: boolean | undefined;
2555
+ avatarUrls?: Record<string, string> | undefined;
2556
+ } | undefined;
2557
+ }[] | undefined;
2558
+ total?: number | undefined;
2559
+ startAt?: number | undefined;
2560
+ maxResults?: number | undefined;
2561
+ isLast?: boolean | undefined;
2562
+ }, {
2563
+ values?: {
2564
+ key?: string | undefined;
2565
+ id?: string | undefined;
2566
+ name?: string | undefined;
2567
+ description?: string | undefined;
2568
+ self?: string | undefined;
2569
+ projectTypeKey?: string | undefined;
2570
+ lead?: {
2571
+ accountId?: string | undefined;
2572
+ displayName?: string | undefined;
2573
+ emailAddress?: string | undefined;
2574
+ active?: boolean | undefined;
2575
+ avatarUrls?: Record<string, string> | undefined;
2576
+ } | undefined;
2577
+ }[] | undefined;
2578
+ total?: number | undefined;
2579
+ startAt?: number | undefined;
2580
+ maxResults?: number | undefined;
2581
+ isLast?: boolean | undefined;
2582
+ }>;
2583
+ };
2584
+ readonly 'projects.getRoles': {
2585
+ readonly input: import("zod").ZodObject<{
2586
+ project_id_or_key: import("zod").ZodString;
2587
+ }, "strip", import("zod").ZodTypeAny, {
2588
+ project_id_or_key: string;
2589
+ }, {
2590
+ project_id_or_key: string;
2591
+ }>;
2592
+ readonly output: import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodString>;
2593
+ };
2594
+ readonly 'sprints.create': {
2595
+ readonly input: import("zod").ZodObject<{
2596
+ origin_board_id: import("zod").ZodNumber;
2597
+ name: import("zod").ZodString;
2598
+ goal: import("zod").ZodOptional<import("zod").ZodString>;
2599
+ start_date: import("zod").ZodOptional<import("zod").ZodString>;
2600
+ end_date: import("zod").ZodOptional<import("zod").ZodString>;
2601
+ }, "strip", import("zod").ZodTypeAny, {
2602
+ name: string;
2603
+ origin_board_id: number;
2604
+ goal?: string | undefined;
2605
+ start_date?: string | undefined;
2606
+ end_date?: string | undefined;
2607
+ }, {
2608
+ name: string;
2609
+ origin_board_id: number;
2610
+ goal?: string | undefined;
2611
+ start_date?: string | undefined;
2612
+ end_date?: string | undefined;
2613
+ }>;
2614
+ readonly output: import("zod").ZodObject<{
2615
+ id: import("zod").ZodOptional<import("zod").ZodNumber>;
2616
+ name: import("zod").ZodOptional<import("zod").ZodString>;
2617
+ state: import("zod").ZodOptional<import("zod").ZodString>;
2618
+ goal: import("zod").ZodOptional<import("zod").ZodString>;
2619
+ startDate: import("zod").ZodOptional<import("zod").ZodString>;
2620
+ endDate: import("zod").ZodOptional<import("zod").ZodString>;
2621
+ completeDate: import("zod").ZodOptional<import("zod").ZodString>;
2622
+ createdDate: import("zod").ZodOptional<import("zod").ZodString>;
2623
+ originBoardId: import("zod").ZodOptional<import("zod").ZodNumber>;
2624
+ self: import("zod").ZodOptional<import("zod").ZodString>;
2625
+ }, "strip", import("zod").ZodTypeAny, {
2626
+ id?: number | undefined;
2627
+ name?: string | undefined;
2628
+ self?: string | undefined;
2629
+ state?: string | undefined;
2630
+ goal?: string | undefined;
2631
+ startDate?: string | undefined;
2632
+ endDate?: string | undefined;
2633
+ completeDate?: string | undefined;
2634
+ createdDate?: string | undefined;
2635
+ originBoardId?: number | undefined;
2636
+ }, {
2637
+ id?: number | undefined;
2638
+ name?: string | undefined;
2639
+ self?: string | undefined;
2640
+ state?: string | undefined;
2641
+ goal?: string | undefined;
2642
+ startDate?: string | undefined;
2643
+ endDate?: string | undefined;
2644
+ completeDate?: string | undefined;
2645
+ createdDate?: string | undefined;
2646
+ originBoardId?: number | undefined;
2647
+ }>;
2648
+ };
2649
+ readonly 'sprints.list': {
2650
+ readonly input: import("zod").ZodObject<{
2651
+ board_id: import("zod").ZodNumber;
2652
+ state: import("zod").ZodOptional<import("zod").ZodString>;
2653
+ start_at: import("zod").ZodOptional<import("zod").ZodNumber>;
2654
+ max_results: import("zod").ZodOptional<import("zod").ZodNumber>;
2655
+ }, "strip", import("zod").ZodTypeAny, {
2656
+ board_id: number;
2657
+ state?: string | undefined;
2658
+ start_at?: number | undefined;
2659
+ max_results?: number | undefined;
2660
+ }, {
2661
+ board_id: number;
2662
+ state?: string | undefined;
2663
+ start_at?: number | undefined;
2664
+ max_results?: number | undefined;
2665
+ }>;
2666
+ readonly output: import("zod").ZodObject<{
2667
+ maxResults: import("zod").ZodOptional<import("zod").ZodNumber>;
2668
+ startAt: import("zod").ZodOptional<import("zod").ZodNumber>;
2669
+ isLast: import("zod").ZodOptional<import("zod").ZodBoolean>;
2670
+ values: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
2671
+ id: import("zod").ZodOptional<import("zod").ZodNumber>;
2672
+ name: import("zod").ZodOptional<import("zod").ZodString>;
2673
+ state: import("zod").ZodOptional<import("zod").ZodString>;
2674
+ goal: import("zod").ZodOptional<import("zod").ZodString>;
2675
+ startDate: import("zod").ZodOptional<import("zod").ZodString>;
2676
+ endDate: import("zod").ZodOptional<import("zod").ZodString>;
2677
+ completeDate: import("zod").ZodOptional<import("zod").ZodString>;
2678
+ createdDate: import("zod").ZodOptional<import("zod").ZodString>;
2679
+ originBoardId: import("zod").ZodOptional<import("zod").ZodNumber>;
2680
+ self: import("zod").ZodOptional<import("zod").ZodString>;
2681
+ }, "strip", import("zod").ZodTypeAny, {
2682
+ id?: number | undefined;
2683
+ name?: string | undefined;
2684
+ self?: string | undefined;
2685
+ state?: string | undefined;
2686
+ goal?: string | undefined;
2687
+ startDate?: string | undefined;
2688
+ endDate?: string | undefined;
2689
+ completeDate?: string | undefined;
2690
+ createdDate?: string | undefined;
2691
+ originBoardId?: number | undefined;
2692
+ }, {
2693
+ id?: number | undefined;
2694
+ name?: string | undefined;
2695
+ self?: string | undefined;
2696
+ state?: string | undefined;
2697
+ goal?: string | undefined;
2698
+ startDate?: string | undefined;
2699
+ endDate?: string | undefined;
2700
+ completeDate?: string | undefined;
2701
+ createdDate?: string | undefined;
2702
+ originBoardId?: number | undefined;
2703
+ }>, "many">>;
2704
+ }, "strip", import("zod").ZodTypeAny, {
2705
+ values?: {
2706
+ id?: number | undefined;
2707
+ name?: string | undefined;
2708
+ self?: string | undefined;
2709
+ state?: string | undefined;
2710
+ goal?: string | undefined;
2711
+ startDate?: string | undefined;
2712
+ endDate?: string | undefined;
2713
+ completeDate?: string | undefined;
2714
+ createdDate?: string | undefined;
2715
+ originBoardId?: number | undefined;
2716
+ }[] | undefined;
2717
+ startAt?: number | undefined;
2718
+ maxResults?: number | undefined;
2719
+ isLast?: boolean | undefined;
2720
+ }, {
2721
+ values?: {
2722
+ id?: number | undefined;
2723
+ name?: string | undefined;
2724
+ self?: string | undefined;
2725
+ state?: string | undefined;
2726
+ goal?: string | undefined;
2727
+ startDate?: string | undefined;
2728
+ endDate?: string | undefined;
2729
+ completeDate?: string | undefined;
2730
+ createdDate?: string | undefined;
2731
+ originBoardId?: number | undefined;
2732
+ }[] | undefined;
2733
+ startAt?: number | undefined;
2734
+ maxResults?: number | undefined;
2735
+ isLast?: boolean | undefined;
2736
+ }>;
2737
+ };
2738
+ readonly 'sprints.moveIssues': {
2739
+ readonly input: import("zod").ZodObject<{
2740
+ sprint_id: import("zod").ZodNumber;
2741
+ issue_keys: import("zod").ZodArray<import("zod").ZodString, "many">;
2742
+ }, "strip", import("zod").ZodTypeAny, {
2743
+ sprint_id: number;
2744
+ issue_keys: string[];
2745
+ }, {
2746
+ sprint_id: number;
2747
+ issue_keys: string[];
2748
+ }>;
2749
+ readonly output: import("zod").ZodObject<{
2750
+ success: import("zod").ZodBoolean;
2751
+ }, "strip", import("zod").ZodTypeAny, {
2752
+ success: boolean;
2753
+ }, {
2754
+ success: boolean;
2755
+ }>;
2756
+ };
2757
+ readonly 'sprints.listBoards': {
2758
+ readonly input: import("zod").ZodObject<{
2759
+ project_key_or_id: import("zod").ZodOptional<import("zod").ZodString>;
2760
+ type: import("zod").ZodOptional<import("zod").ZodString>;
2761
+ name: import("zod").ZodOptional<import("zod").ZodString>;
2762
+ start_at: import("zod").ZodOptional<import("zod").ZodNumber>;
2763
+ max_results: import("zod").ZodOptional<import("zod").ZodNumber>;
2764
+ }, "strip", import("zod").ZodTypeAny, {
2765
+ type?: string | undefined;
2766
+ name?: string | undefined;
2767
+ start_at?: number | undefined;
2768
+ max_results?: number | undefined;
2769
+ project_key_or_id?: string | undefined;
2770
+ }, {
2771
+ type?: string | undefined;
2772
+ name?: string | undefined;
2773
+ start_at?: number | undefined;
2774
+ max_results?: number | undefined;
2775
+ project_key_or_id?: string | undefined;
2776
+ }>;
2777
+ readonly output: import("zod").ZodObject<{
2778
+ maxResults: import("zod").ZodOptional<import("zod").ZodNumber>;
2779
+ startAt: import("zod").ZodOptional<import("zod").ZodNumber>;
2780
+ isLast: import("zod").ZodOptional<import("zod").ZodBoolean>;
2781
+ total: import("zod").ZodOptional<import("zod").ZodNumber>;
2782
+ values: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
2783
+ id: import("zod").ZodOptional<import("zod").ZodNumber>;
2784
+ name: import("zod").ZodOptional<import("zod").ZodString>;
2785
+ type: import("zod").ZodOptional<import("zod").ZodString>;
2786
+ self: import("zod").ZodOptional<import("zod").ZodString>;
2787
+ location: import("zod").ZodOptional<import("zod").ZodObject<{
2788
+ projectId: import("zod").ZodOptional<import("zod").ZodNumber>;
2789
+ projectKey: import("zod").ZodOptional<import("zod").ZodString>;
2790
+ projectName: import("zod").ZodOptional<import("zod").ZodString>;
2791
+ }, "strip", import("zod").ZodTypeAny, {
2792
+ projectId?: number | undefined;
2793
+ projectKey?: string | undefined;
2794
+ projectName?: string | undefined;
2795
+ }, {
2796
+ projectId?: number | undefined;
2797
+ projectKey?: string | undefined;
2798
+ projectName?: string | undefined;
2799
+ }>>;
2800
+ }, "strip", import("zod").ZodTypeAny, {
2801
+ location?: {
2802
+ projectId?: number | undefined;
2803
+ projectKey?: string | undefined;
2804
+ projectName?: string | undefined;
2805
+ } | undefined;
2806
+ type?: string | undefined;
2807
+ id?: number | undefined;
2808
+ name?: string | undefined;
2809
+ self?: string | undefined;
2810
+ }, {
2811
+ location?: {
2812
+ projectId?: number | undefined;
2813
+ projectKey?: string | undefined;
2814
+ projectName?: string | undefined;
2815
+ } | undefined;
2816
+ type?: string | undefined;
2817
+ id?: number | undefined;
2818
+ name?: string | undefined;
2819
+ self?: string | undefined;
2820
+ }>, "many">>;
2821
+ }, "strip", import("zod").ZodTypeAny, {
2822
+ values?: {
2823
+ location?: {
2824
+ projectId?: number | undefined;
2825
+ projectKey?: string | undefined;
2826
+ projectName?: string | undefined;
2827
+ } | undefined;
2828
+ type?: string | undefined;
2829
+ id?: number | undefined;
2830
+ name?: string | undefined;
2831
+ self?: string | undefined;
2832
+ }[] | undefined;
2833
+ total?: number | undefined;
2834
+ startAt?: number | undefined;
2835
+ maxResults?: number | undefined;
2836
+ isLast?: boolean | undefined;
2837
+ }, {
2838
+ values?: {
2839
+ location?: {
2840
+ projectId?: number | undefined;
2841
+ projectKey?: string | undefined;
2842
+ projectName?: string | undefined;
2843
+ } | undefined;
2844
+ type?: string | undefined;
2845
+ id?: number | undefined;
2846
+ name?: string | undefined;
2847
+ self?: string | undefined;
2848
+ }[] | undefined;
2849
+ total?: number | undefined;
2850
+ startAt?: number | undefined;
2851
+ maxResults?: number | undefined;
2852
+ isLast?: boolean | undefined;
2853
+ }>;
2854
+ };
2855
+ readonly 'users.getCurrent': {
2856
+ readonly input: import("zod").ZodObject<{}, "strip", import("zod").ZodTypeAny, {}, {}>;
2857
+ readonly output: import("zod").ZodObject<{
2858
+ active: import("zod").ZodOptional<import("zod").ZodBoolean>;
2859
+ avatarUrls: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodString>>;
2860
+ } & {
2861
+ accountId: import("zod").ZodString;
2862
+ displayName: import("zod").ZodOptional<import("zod").ZodString>;
2863
+ emailAddress: import("zod").ZodOptional<import("zod").ZodString>;
2864
+ timeZone: import("zod").ZodOptional<import("zod").ZodString>;
2865
+ locale: import("zod").ZodOptional<import("zod").ZodString>;
2866
+ }, "strip", import("zod").ZodTypeAny, {
2867
+ accountId: string;
2868
+ displayName?: string | undefined;
2869
+ emailAddress?: string | undefined;
2870
+ active?: boolean | undefined;
2871
+ avatarUrls?: Record<string, string> | undefined;
2872
+ timeZone?: string | undefined;
2873
+ locale?: string | undefined;
2874
+ }, {
2875
+ accountId: string;
2876
+ displayName?: string | undefined;
2877
+ emailAddress?: string | undefined;
2878
+ active?: boolean | undefined;
2879
+ avatarUrls?: Record<string, string> | undefined;
2880
+ timeZone?: string | undefined;
2881
+ locale?: string | undefined;
2882
+ }>;
2883
+ };
2884
+ readonly 'users.find': {
2885
+ readonly input: import("zod").ZodObject<{
2886
+ query: import("zod").ZodOptional<import("zod").ZodString>;
2887
+ account_id: import("zod").ZodOptional<import("zod").ZodString>;
2888
+ start_at: import("zod").ZodOptional<import("zod").ZodNumber>;
2889
+ max_results: import("zod").ZodOptional<import("zod").ZodNumber>;
2890
+ }, "strip", import("zod").ZodTypeAny, {
2891
+ query?: string | undefined;
2892
+ account_id?: string | undefined;
2893
+ start_at?: number | undefined;
2894
+ max_results?: number | undefined;
2895
+ }, {
2896
+ query?: string | undefined;
2897
+ account_id?: string | undefined;
2898
+ start_at?: number | undefined;
2899
+ max_results?: number | undefined;
2900
+ }>;
2901
+ readonly output: import("zod").ZodArray<import("zod").ZodObject<{
2902
+ accountId: import("zod").ZodOptional<import("zod").ZodString>;
2903
+ displayName: import("zod").ZodOptional<import("zod").ZodString>;
2904
+ emailAddress: import("zod").ZodOptional<import("zod").ZodString>;
2905
+ active: import("zod").ZodOptional<import("zod").ZodBoolean>;
2906
+ avatarUrls: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodString>>;
2907
+ }, "strip", import("zod").ZodTypeAny, {
2908
+ accountId?: string | undefined;
2909
+ displayName?: string | undefined;
2910
+ emailAddress?: string | undefined;
2911
+ active?: boolean | undefined;
2912
+ avatarUrls?: Record<string, string> | undefined;
2913
+ }, {
2914
+ accountId?: string | undefined;
2915
+ displayName?: string | undefined;
2916
+ emailAddress?: string | undefined;
2917
+ active?: boolean | undefined;
2918
+ avatarUrls?: Record<string, string> | undefined;
2919
+ }>, "many">;
2920
+ };
2921
+ readonly 'users.getAll': {
2922
+ readonly input: import("zod").ZodObject<{
2923
+ start_at: import("zod").ZodOptional<import("zod").ZodNumber>;
2924
+ max_results: import("zod").ZodOptional<import("zod").ZodNumber>;
2925
+ }, "strip", import("zod").ZodTypeAny, {
2926
+ start_at?: number | undefined;
2927
+ max_results?: number | undefined;
2928
+ }, {
2929
+ start_at?: number | undefined;
2930
+ max_results?: number | undefined;
2931
+ }>;
2932
+ readonly output: import("zod").ZodArray<import("zod").ZodObject<{
2933
+ accountId: import("zod").ZodOptional<import("zod").ZodString>;
2934
+ displayName: import("zod").ZodOptional<import("zod").ZodString>;
2935
+ emailAddress: import("zod").ZodOptional<import("zod").ZodString>;
2936
+ active: import("zod").ZodOptional<import("zod").ZodBoolean>;
2937
+ avatarUrls: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodString>>;
2938
+ }, "strip", import("zod").ZodTypeAny, {
2939
+ accountId?: string | undefined;
2940
+ displayName?: string | undefined;
2941
+ emailAddress?: string | undefined;
2942
+ active?: boolean | undefined;
2943
+ avatarUrls?: Record<string, string> | undefined;
2944
+ }, {
2945
+ accountId?: string | undefined;
2946
+ displayName?: string | undefined;
2947
+ emailAddress?: string | undefined;
2948
+ active?: boolean | undefined;
2949
+ avatarUrls?: Record<string, string> | undefined;
2950
+ }>, "many">;
2951
+ };
2952
+ readonly 'groups.getAll': {
2953
+ readonly input: import("zod").ZodObject<{
2954
+ start_at: import("zod").ZodOptional<import("zod").ZodNumber>;
2955
+ max_results: import("zod").ZodOptional<import("zod").ZodNumber>;
2956
+ }, "strip", import("zod").ZodTypeAny, {
2957
+ start_at?: number | undefined;
2958
+ max_results?: number | undefined;
2959
+ }, {
2960
+ start_at?: number | undefined;
2961
+ max_results?: number | undefined;
2962
+ }>;
2963
+ readonly output: import("zod").ZodObject<{
2964
+ total: import("zod").ZodOptional<import("zod").ZodNumber>;
2965
+ header: import("zod").ZodOptional<import("zod").ZodString>;
2966
+ groups: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
2967
+ groupId: import("zod").ZodOptional<import("zod").ZodString>;
2968
+ name: import("zod").ZodOptional<import("zod").ZodString>;
2969
+ html: import("zod").ZodOptional<import("zod").ZodString>;
2970
+ }, "strip", import("zod").ZodTypeAny, {
2971
+ name?: string | undefined;
2972
+ groupId?: string | undefined;
2973
+ html?: string | undefined;
2974
+ }, {
2975
+ name?: string | undefined;
2976
+ groupId?: string | undefined;
2977
+ html?: string | undefined;
2978
+ }>, "many">>;
2979
+ }, "strip", import("zod").ZodTypeAny, {
2980
+ total?: number | undefined;
2981
+ header?: string | undefined;
2982
+ groups?: {
2983
+ name?: string | undefined;
2984
+ groupId?: string | undefined;
2985
+ html?: string | undefined;
2986
+ }[] | undefined;
2987
+ }, {
2988
+ total?: number | undefined;
2989
+ header?: string | undefined;
2990
+ groups?: {
2991
+ name?: string | undefined;
2992
+ groupId?: string | undefined;
2993
+ html?: string | undefined;
2994
+ }[] | undefined;
2995
+ }>;
2996
+ };
2997
+ readonly 'groups.create': {
2998
+ readonly input: import("zod").ZodObject<{
2999
+ name: import("zod").ZodString;
3000
+ }, "strip", import("zod").ZodTypeAny, {
3001
+ name: string;
3002
+ }, {
3003
+ name: string;
3004
+ }>;
3005
+ readonly output: import("zod").ZodObject<{
3006
+ groupId: import("zod").ZodOptional<import("zod").ZodString>;
3007
+ name: import("zod").ZodOptional<import("zod").ZodString>;
3008
+ self: import("zod").ZodOptional<import("zod").ZodString>;
3009
+ }, "strip", import("zod").ZodTypeAny, {
3010
+ name?: string | undefined;
3011
+ self?: string | undefined;
3012
+ groupId?: string | undefined;
3013
+ }, {
3014
+ name?: string | undefined;
3015
+ self?: string | undefined;
3016
+ groupId?: string | undefined;
3017
+ }>;
3018
+ };
3019
+ };
3020
+ declare const defaultAuthType: AuthTypes;
3021
+ export type BaseJiraPlugin<T extends JiraPluginOptions> = CorsairPlugin<'jira', typeof JiraSchema, typeof jiraEndpointsNested, typeof jiraWebhooksNested, T, typeof defaultAuthType, typeof jiraAuthConfig>;
3022
+ export type InternalJiraPlugin = BaseJiraPlugin<JiraPluginOptions>;
3023
+ export type ExternalJiraPlugin<T extends JiraPluginOptions> = BaseJiraPlugin<T>;
3024
+ export declare function jira<const T extends JiraPluginOptions>(incomingOptions?: JiraPluginOptions & T): ExternalJiraPlugin<T>;
3025
+ export type { JiraWebhookOutputs, JiraWebhookPayload, NewIssueEvent, NewProjectEvent, UpdatedIssueEvent, } from './webhooks/types';
3026
+ export { createJiraMatch } from './webhooks/types';
3027
+ export type { CommentsAddInput, CommentsAddResponse, CommentsDeleteInput, CommentsDeleteResponse, CommentsGetInput, CommentsGetResponse, CommentsListInput, CommentsListResponse, CommentsUpdateInput, CommentsUpdateResponse, GroupsCreateInput, GroupsCreateResponse, GroupsGetAllInput, GroupsGetAllResponse, IssuesAddAttachmentInput, IssuesAddAttachmentResponse, IssuesAddWatcherInput, IssuesAddWatcherResponse, IssuesAssignInput, IssuesAssignResponse, IssuesBulkCreateInput, IssuesBulkCreateResponse, IssuesBulkFetchInput, IssuesBulkFetchResponse, IssuesCreateInput, IssuesCreateResponse, IssuesDeleteInput, IssuesDeleteResponse, IssuesEditInput, IssuesEditResponse, IssuesGetInput, IssuesGetResponse, IssuesGetTransitionsInput, IssuesGetTransitionsResponse, IssuesLinkIssuesInput, IssuesLinkIssuesResponse, IssuesRemoveWatcherInput, IssuesRemoveWatcherResponse, IssuesSearchInput, IssuesSearchResponse, IssuesTransitionInput, IssuesTransitionResponse, JiraEndpointInputs, JiraEndpointOutputs, ProjectsCreateInput, ProjectsCreateResponse, ProjectsGetInput, ProjectsGetResponse, ProjectsGetRolesInput, ProjectsGetRolesResponse, ProjectsListInput, ProjectsListResponse, SprintsCreateInput, SprintsCreateResponse, SprintsListBoardsInput, SprintsListBoardsResponse, SprintsListInput, SprintsListResponse, SprintsMoveIssuesInput, SprintsMoveIssuesResponse, UsersGetAllInput, UsersGetAllResponse, UsersGetCurrentInput, UsersGetCurrentResponse, UsersFindInput, UsersFindResponse, } from './endpoints/types';
3028
+ //# sourceMappingURL=index.d.ts.map