@bubblelab/bubble-core 0.1.31 → 0.1.32

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 (37) hide show
  1. package/dist/bubble-bundle.d.ts +50 -50
  2. package/dist/bubbles/service-bubble/agi-inc.d.ts +12 -12
  3. package/dist/bubbles/service-bubble/airtable.d.ts +156 -156
  4. package/dist/bubbles/service-bubble/apify/apify.d.ts +8 -8
  5. package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +1 -1
  6. package/dist/bubbles/service-bubble/eleven-labs.d.ts +4 -4
  7. package/dist/bubbles/service-bubble/firecrawl.d.ts +8 -8
  8. package/dist/bubbles/service-bubble/followupboss.d.ts +78 -78
  9. package/dist/bubbles/service-bubble/github.d.ts +98 -98
  10. package/dist/bubbles/service-bubble/gmail.d.ts +30 -30
  11. package/dist/bubbles/service-bubble/google-calendar.d.ts +88 -88
  12. package/dist/bubbles/service-bubble/google-drive.d.ts +50 -50
  13. package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +8 -8
  14. package/dist/bubbles/service-bubble/http.d.ts +4 -4
  15. package/dist/bubbles/service-bubble/insforge-db.d.ts +2 -2
  16. package/dist/bubbles/service-bubble/jira/jira.d.ts +503 -493
  17. package/dist/bubbles/service-bubble/jira/jira.d.ts.map +1 -1
  18. package/dist/bubbles/service-bubble/jira/jira.js +47 -10
  19. package/dist/bubbles/service-bubble/jira/jira.js.map +1 -1
  20. package/dist/bubbles/service-bubble/jira/jira.schema.d.ts +6 -6
  21. package/dist/bubbles/service-bubble/jira/jira.schema.d.ts.map +1 -1
  22. package/dist/bubbles/service-bubble/jira/jira.schema.js +4 -3
  23. package/dist/bubbles/service-bubble/jira/jira.schema.js.map +1 -1
  24. package/dist/bubbles/service-bubble/notion/notion.d.ts +148 -148
  25. package/dist/bubbles/service-bubble/postgresql.d.ts +2 -2
  26. package/dist/bubbles/service-bubble/resend.d.ts +4 -4
  27. package/dist/bubbles/service-bubble/slack/slack.d.ts +60 -60
  28. package/dist/bubbles/service-bubble/storage.d.ts +20 -20
  29. package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +36 -36
  30. package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +10 -10
  31. package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +4 -4
  32. package/dist/bubbles/tool-bubble/twitter-tool.d.ts +28 -28
  33. package/dist/bubbles/tool-bubble/youtube-tool.d.ts +20 -20
  34. package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +30 -30
  35. package/dist/bubbles/workflow-bubble/slack-data-assistant.workflow.d.ts +4 -4
  36. package/dist/bubbles.json +4 -16
  37. package/package.json +2 -2
@@ -56,9 +56,9 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
56
56
  }, {
57
57
  operation: "search";
58
58
  jql: string;
59
+ fields?: string[] | undefined;
59
60
  limit?: number | undefined;
60
61
  offset?: number | undefined;
61
- fields?: string[] | undefined;
62
62
  credentials?: Partial<Record<CredentialType, string>> | undefined;
63
63
  }>, import("zod").ZodObject<{
64
64
  operation: import("zod").ZodLiteral<"get">;
@@ -67,17 +67,17 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
67
67
  expand: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodEnum<["changelog", "comments", "transitions"]>, "many">>;
68
68
  credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>;
69
69
  }, "strip", import("zod").ZodTypeAny, {
70
- operation: "get";
71
70
  key: string;
71
+ operation: "get";
72
72
  fields?: string[] | undefined;
73
73
  credentials?: Partial<Record<CredentialType, string>> | undefined;
74
- expand?: ("changelog" | "comments" | "transitions")[] | undefined;
74
+ expand?: ("comments" | "transitions" | "changelog")[] | undefined;
75
75
  }, {
76
- operation: "get";
77
76
  key: string;
77
+ operation: "get";
78
78
  fields?: string[] | undefined;
79
79
  credentials?: Partial<Record<CredentialType, string>> | undefined;
80
- expand?: ("changelog" | "comments" | "transitions")[] | undefined;
80
+ expand?: ("comments" | "transitions" | "changelog")[] | undefined;
81
81
  }>, import("zod").ZodObject<{
82
82
  operation: import("zod").ZodLiteral<"create">;
83
83
  project: import("zod").ZodString;
@@ -85,34 +85,34 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
85
85
  type: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodString>>;
86
86
  description: import("zod").ZodOptional<import("zod").ZodString>;
87
87
  assignee: import("zod").ZodOptional<import("zod").ZodString>;
88
- priority: import("zod").ZodOptional<import("zod").ZodEnum<["Highest", "High", "Medium", "Low", "Lowest"]>>;
88
+ priority: import("zod").ZodOptional<import("zod").ZodString>;
89
89
  labels: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
90
90
  parent: import("zod").ZodOptional<import("zod").ZodString>;
91
91
  due_date: import("zod").ZodOptional<import("zod").ZodString>;
92
92
  credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>;
93
93
  }, "strip", import("zod").ZodTypeAny, {
94
- operation: "create";
95
94
  type: string;
96
- project: string;
97
95
  summary: string;
96
+ project: string;
97
+ operation: "create";
98
98
  description?: string | undefined;
99
- credentials?: Partial<Record<CredentialType, string>> | undefined;
99
+ priority?: string | undefined;
100
100
  assignee?: string | undefined;
101
- priority?: "Highest" | "High" | "Medium" | "Low" | "Lowest" | undefined;
102
101
  labels?: string[] | undefined;
103
102
  parent?: string | undefined;
103
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
104
104
  due_date?: string | undefined;
105
105
  }, {
106
- operation: "create";
107
- project: string;
108
106
  summary: string;
107
+ project: string;
108
+ operation: "create";
109
109
  type?: string | undefined;
110
110
  description?: string | undefined;
111
- credentials?: Partial<Record<CredentialType, string>> | undefined;
111
+ priority?: string | undefined;
112
112
  assignee?: string | undefined;
113
- priority?: "Highest" | "High" | "Medium" | "Low" | "Lowest" | undefined;
114
113
  labels?: string[] | undefined;
115
114
  parent?: string | undefined;
115
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
116
116
  due_date?: string | undefined;
117
117
  }>, import("zod").ZodObject<{
118
118
  operation: import("zod").ZodLiteral<"update">;
@@ -120,7 +120,7 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
120
120
  summary: import("zod").ZodOptional<import("zod").ZodString>;
121
121
  description: import("zod").ZodOptional<import("zod").ZodString>;
122
122
  assignee: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
123
- priority: import("zod").ZodOptional<import("zod").ZodEnum<["Highest", "High", "Medium", "Low", "Lowest"]>>;
123
+ priority: import("zod").ZodOptional<import("zod").ZodString>;
124
124
  labels: import("zod").ZodOptional<import("zod").ZodObject<{
125
125
  add: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
126
126
  remove: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
@@ -138,35 +138,35 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
138
138
  comment: import("zod").ZodOptional<import("zod").ZodString>;
139
139
  credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>;
140
140
  }, "strip", import("zod").ZodTypeAny, {
141
- operation: "update";
142
141
  key: string;
142
+ operation: "update";
143
143
  description?: string | undefined;
144
- credentials?: Partial<Record<CredentialType, string>> | undefined;
145
144
  summary?: string | undefined;
145
+ priority?: string | undefined;
146
146
  assignee?: string | null | undefined;
147
- priority?: "Highest" | "High" | "Medium" | "Low" | "Lowest" | undefined;
148
147
  labels?: {
149
148
  set?: string[] | undefined;
150
149
  add?: string[] | undefined;
151
150
  remove?: string[] | undefined;
152
151
  } | undefined;
153
- due_date?: string | null | undefined;
154
152
  comment?: string | undefined;
153
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
154
+ due_date?: string | null | undefined;
155
155
  }, {
156
- operation: "update";
157
156
  key: string;
157
+ operation: "update";
158
158
  description?: string | undefined;
159
- credentials?: Partial<Record<CredentialType, string>> | undefined;
160
159
  summary?: string | undefined;
160
+ priority?: string | undefined;
161
161
  assignee?: string | null | undefined;
162
- priority?: "Highest" | "High" | "Medium" | "Low" | "Lowest" | undefined;
163
162
  labels?: {
164
163
  set?: string[] | undefined;
165
164
  add?: string[] | undefined;
166
165
  remove?: string[] | undefined;
167
166
  } | undefined;
168
- due_date?: string | null | undefined;
169
167
  comment?: string | undefined;
168
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
169
+ due_date?: string | null | undefined;
170
170
  }>, import("zod").ZodObject<{
171
171
  operation: import("zod").ZodLiteral<"transition">;
172
172
  key: import("zod").ZodString;
@@ -176,19 +176,19 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
176
176
  resolution: import("zod").ZodOptional<import("zod").ZodString>;
177
177
  credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>;
178
178
  }, "strip", import("zod").ZodTypeAny, {
179
- operation: "transition";
180
179
  key: string;
180
+ operation: "transition";
181
181
  status?: string | undefined;
182
- credentials?: Partial<Record<CredentialType, string>> | undefined;
183
182
  comment?: string | undefined;
183
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
184
184
  transition_id?: string | undefined;
185
185
  resolution?: string | undefined;
186
186
  }, {
187
- operation: "transition";
188
187
  key: string;
188
+ operation: "transition";
189
189
  status?: string | undefined;
190
- credentials?: Partial<Record<CredentialType, string>> | undefined;
191
190
  comment?: string | undefined;
191
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
192
192
  transition_id?: string | undefined;
193
193
  resolution?: string | undefined;
194
194
  }>, import("zod").ZodObject<{
@@ -196,12 +196,12 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
196
196
  key: import("zod").ZodString;
197
197
  credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>;
198
198
  }, "strip", import("zod").ZodTypeAny, {
199
- operation: "list_transitions";
200
199
  key: string;
200
+ operation: "list_transitions";
201
201
  credentials?: Partial<Record<CredentialType, string>> | undefined;
202
202
  }, {
203
- operation: "list_transitions";
204
203
  key: string;
204
+ operation: "list_transitions";
205
205
  credentials?: Partial<Record<CredentialType, string>> | undefined;
206
206
  }>, import("zod").ZodObject<{
207
207
  operation: import("zod").ZodLiteral<"list_projects">;
@@ -223,12 +223,12 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
223
223
  project: import("zod").ZodString;
224
224
  credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>;
225
225
  }, "strip", import("zod").ZodTypeAny, {
226
- operation: "list_issue_types";
227
226
  project: string;
227
+ operation: "list_issue_types";
228
228
  credentials?: Partial<Record<CredentialType, string>> | undefined;
229
229
  }, {
230
- operation: "list_issue_types";
231
230
  project: string;
231
+ operation: "list_issue_types";
232
232
  credentials?: Partial<Record<CredentialType, string>> | undefined;
233
233
  }>, import("zod").ZodObject<{
234
234
  operation: import("zod").ZodLiteral<"add_comment">;
@@ -236,14 +236,14 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
236
236
  body: import("zod").ZodString;
237
237
  credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>;
238
238
  }, "strip", import("zod").ZodTypeAny, {
239
- operation: "add_comment";
240
239
  key: string;
241
240
  body: string;
241
+ operation: "add_comment";
242
242
  credentials?: Partial<Record<CredentialType, string>> | undefined;
243
243
  }, {
244
- operation: "add_comment";
245
244
  key: string;
246
245
  body: string;
246
+ operation: "add_comment";
247
247
  credentials?: Partial<Record<CredentialType, string>> | undefined;
248
248
  }>, import("zod").ZodObject<{
249
249
  operation: import("zod").ZodLiteral<"get_comments">;
@@ -252,14 +252,14 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
252
252
  offset: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodNumber>>;
253
253
  credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>;
254
254
  }, "strip", import("zod").ZodTypeAny, {
255
+ key: string;
255
256
  operation: "get_comments";
256
257
  limit: number;
257
258
  offset: number;
258
- key: string;
259
259
  credentials?: Partial<Record<CredentialType, string>> | undefined;
260
260
  }, {
261
- operation: "get_comments";
262
261
  key: string;
262
+ operation: "get_comments";
263
263
  limit?: number | undefined;
264
264
  offset?: number | undefined;
265
265
  credentials?: Partial<Record<CredentialType, string>> | undefined;
@@ -288,15 +288,15 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
288
288
  key: string;
289
289
  }>>;
290
290
  }, "strip", import("zod").ZodTypeAny, {
291
- name: string;
292
291
  id: string;
292
+ name: string;
293
293
  statusCategory?: {
294
294
  name: string;
295
295
  key: string;
296
296
  } | undefined;
297
297
  }, {
298
- name: string;
299
298
  id: string;
299
+ name: string;
300
300
  statusCategory?: {
301
301
  name: string;
302
302
  key: string;
@@ -306,11 +306,11 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
306
306
  id: import("zod").ZodString;
307
307
  name: import("zod").ZodString;
308
308
  }, "strip", import("zod").ZodTypeAny, {
309
- name: string;
310
309
  id: string;
311
- }, {
312
310
  name: string;
311
+ }, {
313
312
  id: string;
313
+ name: string;
314
314
  }>>>;
315
315
  assignee: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
316
316
  accountId: import("zod").ZodString;
@@ -350,13 +350,13 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
350
350
  description: import("zod").ZodOptional<import("zod").ZodString>;
351
351
  subtask: import("zod").ZodOptional<import("zod").ZodBoolean>;
352
352
  }, "strip", import("zod").ZodTypeAny, {
353
- name: string;
354
353
  id: string;
354
+ name: string;
355
355
  description?: string | undefined;
356
356
  subtask?: boolean | undefined;
357
357
  }, {
358
- name: string;
359
358
  id: string;
359
+ name: string;
360
360
  description?: string | undefined;
361
361
  subtask?: boolean | undefined;
362
362
  }>>;
@@ -365,13 +365,13 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
365
365
  key: import("zod").ZodString;
366
366
  name: import("zod").ZodString;
367
367
  }, "strip", import("zod").ZodTypeAny, {
368
+ id: string;
368
369
  name: string;
369
370
  key: string;
370
- id: string;
371
371
  }, {
372
+ id: string;
372
373
  name: string;
373
374
  key: string;
374
- id: string;
375
375
  }>>;
376
376
  labels: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
377
377
  created: import("zod").ZodOptional<import("zod").ZodString>;
@@ -381,11 +381,11 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
381
381
  id: import("zod").ZodString;
382
382
  key: import("zod").ZodString;
383
383
  }, "strip", import("zod").ZodTypeAny, {
384
- key: string;
385
384
  id: string;
386
- }, {
387
385
  key: string;
386
+ }, {
388
387
  id: string;
388
+ key: string;
389
389
  }>>;
390
390
  comment: import("zod").ZodOptional<import("zod").ZodObject<{
391
391
  comments: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
@@ -412,58 +412,58 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
412
412
  updated: import("zod").ZodOptional<import("zod").ZodString>;
413
413
  }, "strip", import("zod").ZodTypeAny, {
414
414
  id: string;
415
- body?: string | undefined;
416
- created?: string | undefined;
417
- updated?: string | undefined;
418
415
  author?: {
419
416
  accountId: string;
420
417
  displayName?: string | undefined;
421
418
  emailAddress?: string | undefined;
422
419
  active?: boolean | undefined;
423
420
  } | null | undefined;
424
- renderedBody?: string | undefined;
425
- }, {
426
- id: string;
427
421
  body?: string | undefined;
422
+ renderedBody?: string | undefined;
428
423
  created?: string | undefined;
429
424
  updated?: string | undefined;
425
+ }, {
426
+ id: string;
430
427
  author?: {
431
428
  accountId: string;
432
429
  displayName?: string | undefined;
433
430
  emailAddress?: string | undefined;
434
431
  active?: boolean | undefined;
435
432
  } | null | undefined;
433
+ body?: string | undefined;
436
434
  renderedBody?: string | undefined;
435
+ created?: string | undefined;
436
+ updated?: string | undefined;
437
437
  }>, "many">>;
438
438
  total: import("zod").ZodOptional<import("zod").ZodNumber>;
439
439
  }, "strip", import("zod").ZodTypeAny, {
440
440
  comments?: {
441
441
  id: string;
442
- body?: string | undefined;
443
- created?: string | undefined;
444
- updated?: string | undefined;
445
442
  author?: {
446
443
  accountId: string;
447
444
  displayName?: string | undefined;
448
445
  emailAddress?: string | undefined;
449
446
  active?: boolean | undefined;
450
447
  } | null | undefined;
448
+ body?: string | undefined;
451
449
  renderedBody?: string | undefined;
450
+ created?: string | undefined;
451
+ updated?: string | undefined;
452
452
  }[] | undefined;
453
453
  total?: number | undefined;
454
454
  }, {
455
455
  comments?: {
456
456
  id: string;
457
- body?: string | undefined;
458
- created?: string | undefined;
459
- updated?: string | undefined;
460
457
  author?: {
461
458
  accountId: string;
462
459
  displayName?: string | undefined;
463
460
  emailAddress?: string | undefined;
464
461
  active?: boolean | undefined;
465
462
  } | null | undefined;
463
+ body?: string | undefined;
466
464
  renderedBody?: string | undefined;
465
+ created?: string | undefined;
466
+ updated?: string | undefined;
467
467
  }[] | undefined;
468
468
  total?: number | undefined;
469
469
  }>>;
@@ -484,15 +484,15 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
484
484
  key: string;
485
485
  }>>;
486
486
  }, "strip", import("zod").ZodTypeAny, {
487
- name: string;
488
487
  id: string;
488
+ name: string;
489
489
  statusCategory?: {
490
490
  name: string;
491
491
  key: string;
492
492
  } | undefined;
493
493
  }, {
494
- name: string;
495
494
  id: string;
495
+ name: string;
496
496
  statusCategory?: {
497
497
  name: string;
498
498
  key: string;
@@ -502,11 +502,11 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
502
502
  id: import("zod").ZodString;
503
503
  name: import("zod").ZodString;
504
504
  }, "strip", import("zod").ZodTypeAny, {
505
- name: string;
506
505
  id: string;
507
- }, {
508
506
  name: string;
507
+ }, {
509
508
  id: string;
509
+ name: string;
510
510
  }>>>;
511
511
  assignee: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
512
512
  accountId: import("zod").ZodString;
@@ -546,13 +546,13 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
546
546
  description: import("zod").ZodOptional<import("zod").ZodString>;
547
547
  subtask: import("zod").ZodOptional<import("zod").ZodBoolean>;
548
548
  }, "strip", import("zod").ZodTypeAny, {
549
- name: string;
550
549
  id: string;
550
+ name: string;
551
551
  description?: string | undefined;
552
552
  subtask?: boolean | undefined;
553
553
  }, {
554
- name: string;
555
554
  id: string;
555
+ name: string;
556
556
  description?: string | undefined;
557
557
  subtask?: boolean | undefined;
558
558
  }>>;
@@ -561,13 +561,13 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
561
561
  key: import("zod").ZodString;
562
562
  name: import("zod").ZodString;
563
563
  }, "strip", import("zod").ZodTypeAny, {
564
+ id: string;
564
565
  name: string;
565
566
  key: string;
566
- id: string;
567
567
  }, {
568
+ id: string;
568
569
  name: string;
569
570
  key: string;
570
- id: string;
571
571
  }>>;
572
572
  labels: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
573
573
  created: import("zod").ZodOptional<import("zod").ZodString>;
@@ -577,11 +577,11 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
577
577
  id: import("zod").ZodString;
578
578
  key: import("zod").ZodString;
579
579
  }, "strip", import("zod").ZodTypeAny, {
580
- key: string;
581
580
  id: string;
582
- }, {
583
581
  key: string;
582
+ }, {
584
583
  id: string;
584
+ key: string;
585
585
  }>>;
586
586
  comment: import("zod").ZodOptional<import("zod").ZodObject<{
587
587
  comments: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
@@ -608,58 +608,58 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
608
608
  updated: import("zod").ZodOptional<import("zod").ZodString>;
609
609
  }, "strip", import("zod").ZodTypeAny, {
610
610
  id: string;
611
- body?: string | undefined;
612
- created?: string | undefined;
613
- updated?: string | undefined;
614
611
  author?: {
615
612
  accountId: string;
616
613
  displayName?: string | undefined;
617
614
  emailAddress?: string | undefined;
618
615
  active?: boolean | undefined;
619
616
  } | null | undefined;
620
- renderedBody?: string | undefined;
621
- }, {
622
- id: string;
623
617
  body?: string | undefined;
618
+ renderedBody?: string | undefined;
624
619
  created?: string | undefined;
625
620
  updated?: string | undefined;
621
+ }, {
622
+ id: string;
626
623
  author?: {
627
624
  accountId: string;
628
625
  displayName?: string | undefined;
629
626
  emailAddress?: string | undefined;
630
627
  active?: boolean | undefined;
631
628
  } | null | undefined;
629
+ body?: string | undefined;
632
630
  renderedBody?: string | undefined;
631
+ created?: string | undefined;
632
+ updated?: string | undefined;
633
633
  }>, "many">>;
634
634
  total: import("zod").ZodOptional<import("zod").ZodNumber>;
635
635
  }, "strip", import("zod").ZodTypeAny, {
636
636
  comments?: {
637
637
  id: string;
638
- body?: string | undefined;
639
- created?: string | undefined;
640
- updated?: string | undefined;
641
638
  author?: {
642
639
  accountId: string;
643
640
  displayName?: string | undefined;
644
641
  emailAddress?: string | undefined;
645
642
  active?: boolean | undefined;
646
643
  } | null | undefined;
644
+ body?: string | undefined;
647
645
  renderedBody?: string | undefined;
646
+ created?: string | undefined;
647
+ updated?: string | undefined;
648
648
  }[] | undefined;
649
649
  total?: number | undefined;
650
650
  }, {
651
651
  comments?: {
652
652
  id: string;
653
- body?: string | undefined;
654
- created?: string | undefined;
655
- updated?: string | undefined;
656
653
  author?: {
657
654
  accountId: string;
658
655
  displayName?: string | undefined;
659
656
  emailAddress?: string | undefined;
660
657
  active?: boolean | undefined;
661
658
  } | null | undefined;
659
+ body?: string | undefined;
662
660
  renderedBody?: string | undefined;
661
+ created?: string | undefined;
662
+ updated?: string | undefined;
663
663
  }[] | undefined;
664
664
  total?: number | undefined;
665
665
  }>>;
@@ -680,15 +680,15 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
680
680
  key: string;
681
681
  }>>;
682
682
  }, "strip", import("zod").ZodTypeAny, {
683
- name: string;
684
683
  id: string;
684
+ name: string;
685
685
  statusCategory?: {
686
686
  name: string;
687
687
  key: string;
688
688
  } | undefined;
689
689
  }, {
690
- name: string;
691
690
  id: string;
691
+ name: string;
692
692
  statusCategory?: {
693
693
  name: string;
694
694
  key: string;
@@ -698,11 +698,11 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
698
698
  id: import("zod").ZodString;
699
699
  name: import("zod").ZodString;
700
700
  }, "strip", import("zod").ZodTypeAny, {
701
- name: string;
702
701
  id: string;
703
- }, {
704
702
  name: string;
703
+ }, {
705
704
  id: string;
705
+ name: string;
706
706
  }>>>;
707
707
  assignee: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
708
708
  accountId: import("zod").ZodString;
@@ -742,13 +742,13 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
742
742
  description: import("zod").ZodOptional<import("zod").ZodString>;
743
743
  subtask: import("zod").ZodOptional<import("zod").ZodBoolean>;
744
744
  }, "strip", import("zod").ZodTypeAny, {
745
- name: string;
746
745
  id: string;
746
+ name: string;
747
747
  description?: string | undefined;
748
748
  subtask?: boolean | undefined;
749
749
  }, {
750
- name: string;
751
750
  id: string;
751
+ name: string;
752
752
  description?: string | undefined;
753
753
  subtask?: boolean | undefined;
754
754
  }>>;
@@ -757,13 +757,13 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
757
757
  key: import("zod").ZodString;
758
758
  name: import("zod").ZodString;
759
759
  }, "strip", import("zod").ZodTypeAny, {
760
+ id: string;
760
761
  name: string;
761
762
  key: string;
762
- id: string;
763
763
  }, {
764
+ id: string;
764
765
  name: string;
765
766
  key: string;
766
- id: string;
767
767
  }>>;
768
768
  labels: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
769
769
  created: import("zod").ZodOptional<import("zod").ZodString>;
@@ -773,11 +773,11 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
773
773
  id: import("zod").ZodString;
774
774
  key: import("zod").ZodString;
775
775
  }, "strip", import("zod").ZodTypeAny, {
776
- key: string;
777
776
  id: string;
778
- }, {
779
777
  key: string;
778
+ }, {
780
779
  id: string;
780
+ key: string;
781
781
  }>>;
782
782
  comment: import("zod").ZodOptional<import("zod").ZodObject<{
783
783
  comments: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
@@ -804,58 +804,58 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
804
804
  updated: import("zod").ZodOptional<import("zod").ZodString>;
805
805
  }, "strip", import("zod").ZodTypeAny, {
806
806
  id: string;
807
- body?: string | undefined;
808
- created?: string | undefined;
809
- updated?: string | undefined;
810
807
  author?: {
811
808
  accountId: string;
812
809
  displayName?: string | undefined;
813
810
  emailAddress?: string | undefined;
814
811
  active?: boolean | undefined;
815
812
  } | null | undefined;
816
- renderedBody?: string | undefined;
817
- }, {
818
- id: string;
819
813
  body?: string | undefined;
814
+ renderedBody?: string | undefined;
820
815
  created?: string | undefined;
821
816
  updated?: string | undefined;
817
+ }, {
818
+ id: string;
822
819
  author?: {
823
820
  accountId: string;
824
821
  displayName?: string | undefined;
825
822
  emailAddress?: string | undefined;
826
823
  active?: boolean | undefined;
827
824
  } | null | undefined;
825
+ body?: string | undefined;
828
826
  renderedBody?: string | undefined;
827
+ created?: string | undefined;
828
+ updated?: string | undefined;
829
829
  }>, "many">>;
830
830
  total: import("zod").ZodOptional<import("zod").ZodNumber>;
831
831
  }, "strip", import("zod").ZodTypeAny, {
832
832
  comments?: {
833
833
  id: string;
834
- body?: string | undefined;
835
- created?: string | undefined;
836
- updated?: string | undefined;
837
834
  author?: {
838
835
  accountId: string;
839
836
  displayName?: string | undefined;
840
837
  emailAddress?: string | undefined;
841
838
  active?: boolean | undefined;
842
839
  } | null | undefined;
840
+ body?: string | undefined;
843
841
  renderedBody?: string | undefined;
842
+ created?: string | undefined;
843
+ updated?: string | undefined;
844
844
  }[] | undefined;
845
845
  total?: number | undefined;
846
846
  }, {
847
847
  comments?: {
848
848
  id: string;
849
- body?: string | undefined;
850
- created?: string | undefined;
851
- updated?: string | undefined;
852
849
  author?: {
853
850
  accountId: string;
854
851
  displayName?: string | undefined;
855
852
  emailAddress?: string | undefined;
856
853
  active?: boolean | undefined;
857
854
  } | null | undefined;
855
+ body?: string | undefined;
858
856
  renderedBody?: string | undefined;
857
+ created?: string | undefined;
858
+ updated?: string | undefined;
859
859
  }[] | undefined;
860
860
  total?: number | undefined;
861
861
  }>>;
@@ -877,37 +877,37 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
877
877
  key: string;
878
878
  }>>;
879
879
  }, "strip", import("zod").ZodTypeAny, {
880
- name: string;
881
880
  id: string;
881
+ name: string;
882
882
  statusCategory?: {
883
883
  name: string;
884
884
  key: string;
885
885
  } | undefined;
886
886
  }, {
887
- name: string;
888
887
  id: string;
888
+ name: string;
889
889
  statusCategory?: {
890
890
  name: string;
891
891
  key: string;
892
892
  } | undefined;
893
893
  }>>;
894
894
  }, "strip", import("zod").ZodTypeAny, {
895
- name: string;
896
895
  id: string;
896
+ name: string;
897
897
  to?: {
898
- name: string;
899
898
  id: string;
899
+ name: string;
900
900
  statusCategory?: {
901
901
  name: string;
902
902
  key: string;
903
903
  } | undefined;
904
904
  } | undefined;
905
905
  }, {
906
- name: string;
907
906
  id: string;
907
+ name: string;
908
908
  to?: {
909
- name: string;
910
909
  id: string;
910
+ name: string;
911
911
  statusCategory?: {
912
912
  name: string;
913
913
  key: string;
@@ -916,169 +916,169 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
916
916
  }>, "many">>;
917
917
  changelog: import("zod").ZodOptional<import("zod").ZodUnknown>;
918
918
  }, "strip", import("zod").ZodTypeAny, {
919
+ id: string;
920
+ key: string;
919
921
  fields: {
920
922
  description?: unknown;
921
923
  status?: {
922
- name: string;
923
924
  id: string;
925
+ name: string;
924
926
  statusCategory?: {
925
927
  name: string;
926
928
  key: string;
927
929
  } | undefined;
928
930
  } | undefined;
929
- project?: {
930
- name: string;
931
- key: string;
932
- id: string;
933
- } | undefined;
931
+ created?: string | undefined;
932
+ updated?: string | undefined;
934
933
  summary?: string | undefined;
934
+ priority?: {
935
+ id: string;
936
+ name: string;
937
+ } | null | undefined;
935
938
  assignee?: {
936
939
  accountId: string;
937
940
  displayName?: string | undefined;
938
941
  emailAddress?: string | undefined;
939
942
  active?: boolean | undefined;
940
943
  } | null | undefined;
941
- priority?: {
944
+ reporter?: {
945
+ accountId: string;
946
+ displayName?: string | undefined;
947
+ emailAddress?: string | undefined;
948
+ active?: boolean | undefined;
949
+ } | null | undefined;
950
+ issuetype?: {
951
+ id: string;
942
952
  name: string;
953
+ description?: string | undefined;
954
+ subtask?: boolean | undefined;
955
+ } | undefined;
956
+ project?: {
943
957
  id: string;
944
- } | null | undefined;
958
+ name: string;
959
+ key: string;
960
+ } | undefined;
945
961
  labels?: string[] | undefined;
962
+ duedate?: string | null | undefined;
946
963
  parent?: {
947
- key: string;
948
964
  id: string;
965
+ key: string;
949
966
  } | undefined;
950
967
  comment?: {
951
968
  comments?: {
952
969
  id: string;
953
- body?: string | undefined;
954
- created?: string | undefined;
955
- updated?: string | undefined;
956
970
  author?: {
957
971
  accountId: string;
958
972
  displayName?: string | undefined;
959
973
  emailAddress?: string | undefined;
960
974
  active?: boolean | undefined;
961
975
  } | null | undefined;
976
+ body?: string | undefined;
962
977
  renderedBody?: string | undefined;
978
+ created?: string | undefined;
979
+ updated?: string | undefined;
963
980
  }[] | undefined;
964
981
  total?: number | undefined;
965
982
  } | undefined;
966
- reporter?: {
967
- accountId: string;
968
- displayName?: string | undefined;
969
- emailAddress?: string | undefined;
970
- active?: boolean | undefined;
971
- } | null | undefined;
972
- issuetype?: {
973
- name: string;
974
- id: string;
975
- description?: string | undefined;
976
- subtask?: boolean | undefined;
977
- } | undefined;
978
- created?: string | undefined;
979
- updated?: string | undefined;
980
- duedate?: string | null | undefined;
981
983
  } & {
982
984
  [k: string]: unknown;
983
985
  };
984
- key: string;
985
- id: string;
986
- changelog?: unknown;
986
+ self?: string | undefined;
987
987
  transitions?: {
988
- name: string;
989
988
  id: string;
989
+ name: string;
990
990
  to?: {
991
- name: string;
992
991
  id: string;
992
+ name: string;
993
993
  statusCategory?: {
994
994
  name: string;
995
995
  key: string;
996
996
  } | undefined;
997
997
  } | undefined;
998
998
  }[] | undefined;
999
- self?: string | undefined;
999
+ changelog?: unknown;
1000
1000
  }, {
1001
+ id: string;
1002
+ key: string;
1001
1003
  fields: {
1002
1004
  description?: unknown;
1003
1005
  status?: {
1004
- name: string;
1005
1006
  id: string;
1007
+ name: string;
1006
1008
  statusCategory?: {
1007
1009
  name: string;
1008
1010
  key: string;
1009
1011
  } | undefined;
1010
1012
  } | undefined;
1011
- project?: {
1012
- name: string;
1013
- key: string;
1014
- id: string;
1015
- } | undefined;
1013
+ created?: string | undefined;
1014
+ updated?: string | undefined;
1016
1015
  summary?: string | undefined;
1016
+ priority?: {
1017
+ id: string;
1018
+ name: string;
1019
+ } | null | undefined;
1017
1020
  assignee?: {
1018
1021
  accountId: string;
1019
1022
  displayName?: string | undefined;
1020
1023
  emailAddress?: string | undefined;
1021
1024
  active?: boolean | undefined;
1022
1025
  } | null | undefined;
1023
- priority?: {
1026
+ reporter?: {
1027
+ accountId: string;
1028
+ displayName?: string | undefined;
1029
+ emailAddress?: string | undefined;
1030
+ active?: boolean | undefined;
1031
+ } | null | undefined;
1032
+ issuetype?: {
1033
+ id: string;
1024
1034
  name: string;
1035
+ description?: string | undefined;
1036
+ subtask?: boolean | undefined;
1037
+ } | undefined;
1038
+ project?: {
1025
1039
  id: string;
1026
- } | null | undefined;
1040
+ name: string;
1041
+ key: string;
1042
+ } | undefined;
1027
1043
  labels?: string[] | undefined;
1044
+ duedate?: string | null | undefined;
1028
1045
  parent?: {
1029
- key: string;
1030
1046
  id: string;
1047
+ key: string;
1031
1048
  } | undefined;
1032
1049
  comment?: {
1033
1050
  comments?: {
1034
1051
  id: string;
1035
- body?: string | undefined;
1036
- created?: string | undefined;
1037
- updated?: string | undefined;
1038
1052
  author?: {
1039
1053
  accountId: string;
1040
1054
  displayName?: string | undefined;
1041
1055
  emailAddress?: string | undefined;
1042
1056
  active?: boolean | undefined;
1043
1057
  } | null | undefined;
1058
+ body?: string | undefined;
1044
1059
  renderedBody?: string | undefined;
1060
+ created?: string | undefined;
1061
+ updated?: string | undefined;
1045
1062
  }[] | undefined;
1046
1063
  total?: number | undefined;
1047
1064
  } | undefined;
1048
- reporter?: {
1049
- accountId: string;
1050
- displayName?: string | undefined;
1051
- emailAddress?: string | undefined;
1052
- active?: boolean | undefined;
1053
- } | null | undefined;
1054
- issuetype?: {
1055
- name: string;
1056
- id: string;
1057
- description?: string | undefined;
1058
- subtask?: boolean | undefined;
1059
- } | undefined;
1060
- created?: string | undefined;
1061
- updated?: string | undefined;
1062
- duedate?: string | null | undefined;
1063
1065
  } & {
1064
1066
  [k: string]: unknown;
1065
1067
  };
1066
- key: string;
1067
- id: string;
1068
- changelog?: unknown;
1068
+ self?: string | undefined;
1069
1069
  transitions?: {
1070
- name: string;
1071
1070
  id: string;
1071
+ name: string;
1072
1072
  to?: {
1073
- name: string;
1074
1073
  id: string;
1074
+ name: string;
1075
1075
  statusCategory?: {
1076
1076
  name: string;
1077
1077
  key: string;
1078
1078
  } | undefined;
1079
1079
  } | undefined;
1080
1080
  }[] | undefined;
1081
- self?: string | undefined;
1081
+ changelog?: unknown;
1082
1082
  }>, "many">>;
1083
1083
  total: import("zod").ZodOptional<import("zod").ZodNumber>;
1084
1084
  offset: import("zod").ZodOptional<import("zod").ZodNumber>;
@@ -1089,181 +1089,181 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
1089
1089
  success: boolean;
1090
1090
  error: string;
1091
1091
  issues?: {
1092
+ id: string;
1093
+ key: string;
1092
1094
  fields: {
1093
1095
  description?: unknown;
1094
1096
  status?: {
1095
- name: string;
1096
1097
  id: string;
1098
+ name: string;
1097
1099
  statusCategory?: {
1098
1100
  name: string;
1099
1101
  key: string;
1100
1102
  } | undefined;
1101
1103
  } | undefined;
1102
- project?: {
1103
- name: string;
1104
- key: string;
1105
- id: string;
1106
- } | undefined;
1104
+ created?: string | undefined;
1105
+ updated?: string | undefined;
1107
1106
  summary?: string | undefined;
1107
+ priority?: {
1108
+ id: string;
1109
+ name: string;
1110
+ } | null | undefined;
1108
1111
  assignee?: {
1109
1112
  accountId: string;
1110
1113
  displayName?: string | undefined;
1111
1114
  emailAddress?: string | undefined;
1112
1115
  active?: boolean | undefined;
1113
1116
  } | null | undefined;
1114
- priority?: {
1117
+ reporter?: {
1118
+ accountId: string;
1119
+ displayName?: string | undefined;
1120
+ emailAddress?: string | undefined;
1121
+ active?: boolean | undefined;
1122
+ } | null | undefined;
1123
+ issuetype?: {
1124
+ id: string;
1115
1125
  name: string;
1126
+ description?: string | undefined;
1127
+ subtask?: boolean | undefined;
1128
+ } | undefined;
1129
+ project?: {
1116
1130
  id: string;
1117
- } | null | undefined;
1131
+ name: string;
1132
+ key: string;
1133
+ } | undefined;
1118
1134
  labels?: string[] | undefined;
1135
+ duedate?: string | null | undefined;
1119
1136
  parent?: {
1120
- key: string;
1121
1137
  id: string;
1138
+ key: string;
1122
1139
  } | undefined;
1123
1140
  comment?: {
1124
1141
  comments?: {
1125
1142
  id: string;
1126
- body?: string | undefined;
1127
- created?: string | undefined;
1128
- updated?: string | undefined;
1129
1143
  author?: {
1130
1144
  accountId: string;
1131
1145
  displayName?: string | undefined;
1132
1146
  emailAddress?: string | undefined;
1133
1147
  active?: boolean | undefined;
1134
1148
  } | null | undefined;
1149
+ body?: string | undefined;
1135
1150
  renderedBody?: string | undefined;
1151
+ created?: string | undefined;
1152
+ updated?: string | undefined;
1136
1153
  }[] | undefined;
1137
1154
  total?: number | undefined;
1138
1155
  } | undefined;
1139
- reporter?: {
1140
- accountId: string;
1141
- displayName?: string | undefined;
1142
- emailAddress?: string | undefined;
1143
- active?: boolean | undefined;
1144
- } | null | undefined;
1145
- issuetype?: {
1146
- name: string;
1147
- id: string;
1148
- description?: string | undefined;
1149
- subtask?: boolean | undefined;
1150
- } | undefined;
1151
- created?: string | undefined;
1152
- updated?: string | undefined;
1153
- duedate?: string | null | undefined;
1154
1156
  } & {
1155
1157
  [k: string]: unknown;
1156
1158
  };
1157
- key: string;
1158
- id: string;
1159
- changelog?: unknown;
1159
+ self?: string | undefined;
1160
1160
  transitions?: {
1161
- name: string;
1162
1161
  id: string;
1162
+ name: string;
1163
1163
  to?: {
1164
- name: string;
1165
1164
  id: string;
1165
+ name: string;
1166
1166
  statusCategory?: {
1167
1167
  name: string;
1168
1168
  key: string;
1169
1169
  } | undefined;
1170
1170
  } | undefined;
1171
1171
  }[] | undefined;
1172
- self?: string | undefined;
1172
+ changelog?: unknown;
1173
1173
  }[] | undefined;
1174
+ total?: number | undefined;
1174
1175
  limit?: number | undefined;
1175
1176
  offset?: number | undefined;
1176
- total?: number | undefined;
1177
1177
  }, {
1178
1178
  operation: "search";
1179
1179
  success: boolean;
1180
1180
  error: string;
1181
1181
  issues?: {
1182
+ id: string;
1183
+ key: string;
1182
1184
  fields: {
1183
1185
  description?: unknown;
1184
1186
  status?: {
1185
- name: string;
1186
1187
  id: string;
1188
+ name: string;
1187
1189
  statusCategory?: {
1188
1190
  name: string;
1189
1191
  key: string;
1190
1192
  } | undefined;
1191
1193
  } | undefined;
1192
- project?: {
1193
- name: string;
1194
- key: string;
1195
- id: string;
1196
- } | undefined;
1194
+ created?: string | undefined;
1195
+ updated?: string | undefined;
1197
1196
  summary?: string | undefined;
1197
+ priority?: {
1198
+ id: string;
1199
+ name: string;
1200
+ } | null | undefined;
1198
1201
  assignee?: {
1199
1202
  accountId: string;
1200
1203
  displayName?: string | undefined;
1201
1204
  emailAddress?: string | undefined;
1202
1205
  active?: boolean | undefined;
1203
1206
  } | null | undefined;
1204
- priority?: {
1207
+ reporter?: {
1208
+ accountId: string;
1209
+ displayName?: string | undefined;
1210
+ emailAddress?: string | undefined;
1211
+ active?: boolean | undefined;
1212
+ } | null | undefined;
1213
+ issuetype?: {
1214
+ id: string;
1205
1215
  name: string;
1216
+ description?: string | undefined;
1217
+ subtask?: boolean | undefined;
1218
+ } | undefined;
1219
+ project?: {
1206
1220
  id: string;
1207
- } | null | undefined;
1221
+ name: string;
1222
+ key: string;
1223
+ } | undefined;
1208
1224
  labels?: string[] | undefined;
1225
+ duedate?: string | null | undefined;
1209
1226
  parent?: {
1210
- key: string;
1211
1227
  id: string;
1228
+ key: string;
1212
1229
  } | undefined;
1213
1230
  comment?: {
1214
1231
  comments?: {
1215
1232
  id: string;
1216
- body?: string | undefined;
1217
- created?: string | undefined;
1218
- updated?: string | undefined;
1219
1233
  author?: {
1220
1234
  accountId: string;
1221
1235
  displayName?: string | undefined;
1222
1236
  emailAddress?: string | undefined;
1223
1237
  active?: boolean | undefined;
1224
1238
  } | null | undefined;
1239
+ body?: string | undefined;
1225
1240
  renderedBody?: string | undefined;
1241
+ created?: string | undefined;
1242
+ updated?: string | undefined;
1226
1243
  }[] | undefined;
1227
1244
  total?: number | undefined;
1228
1245
  } | undefined;
1229
- reporter?: {
1230
- accountId: string;
1231
- displayName?: string | undefined;
1232
- emailAddress?: string | undefined;
1233
- active?: boolean | undefined;
1234
- } | null | undefined;
1235
- issuetype?: {
1236
- name: string;
1237
- id: string;
1238
- description?: string | undefined;
1239
- subtask?: boolean | undefined;
1240
- } | undefined;
1241
- created?: string | undefined;
1242
- updated?: string | undefined;
1243
- duedate?: string | null | undefined;
1244
1246
  } & {
1245
1247
  [k: string]: unknown;
1246
1248
  };
1247
- key: string;
1248
- id: string;
1249
- changelog?: unknown;
1249
+ self?: string | undefined;
1250
1250
  transitions?: {
1251
- name: string;
1252
1251
  id: string;
1252
+ name: string;
1253
1253
  to?: {
1254
- name: string;
1255
1254
  id: string;
1255
+ name: string;
1256
1256
  statusCategory?: {
1257
1257
  name: string;
1258
1258
  key: string;
1259
1259
  } | undefined;
1260
1260
  } | undefined;
1261
1261
  }[] | undefined;
1262
- self?: string | undefined;
1262
+ changelog?: unknown;
1263
1263
  }[] | undefined;
1264
+ total?: number | undefined;
1264
1265
  limit?: number | undefined;
1265
1266
  offset?: number | undefined;
1266
- total?: number | undefined;
1267
1267
  }>, import("zod").ZodObject<{
1268
1268
  operation: import("zod").ZodLiteral<"get">;
1269
1269
  success: import("zod").ZodBoolean;
@@ -1288,15 +1288,15 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
1288
1288
  key: string;
1289
1289
  }>>;
1290
1290
  }, "strip", import("zod").ZodTypeAny, {
1291
- name: string;
1292
1291
  id: string;
1292
+ name: string;
1293
1293
  statusCategory?: {
1294
1294
  name: string;
1295
1295
  key: string;
1296
1296
  } | undefined;
1297
1297
  }, {
1298
- name: string;
1299
1298
  id: string;
1299
+ name: string;
1300
1300
  statusCategory?: {
1301
1301
  name: string;
1302
1302
  key: string;
@@ -1306,11 +1306,11 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
1306
1306
  id: import("zod").ZodString;
1307
1307
  name: import("zod").ZodString;
1308
1308
  }, "strip", import("zod").ZodTypeAny, {
1309
- name: string;
1310
1309
  id: string;
1311
- }, {
1312
1310
  name: string;
1311
+ }, {
1313
1312
  id: string;
1313
+ name: string;
1314
1314
  }>>>;
1315
1315
  assignee: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
1316
1316
  accountId: import("zod").ZodString;
@@ -1350,13 +1350,13 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
1350
1350
  description: import("zod").ZodOptional<import("zod").ZodString>;
1351
1351
  subtask: import("zod").ZodOptional<import("zod").ZodBoolean>;
1352
1352
  }, "strip", import("zod").ZodTypeAny, {
1353
- name: string;
1354
1353
  id: string;
1354
+ name: string;
1355
1355
  description?: string | undefined;
1356
1356
  subtask?: boolean | undefined;
1357
1357
  }, {
1358
- name: string;
1359
1358
  id: string;
1359
+ name: string;
1360
1360
  description?: string | undefined;
1361
1361
  subtask?: boolean | undefined;
1362
1362
  }>>;
@@ -1365,13 +1365,13 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
1365
1365
  key: import("zod").ZodString;
1366
1366
  name: import("zod").ZodString;
1367
1367
  }, "strip", import("zod").ZodTypeAny, {
1368
+ id: string;
1368
1369
  name: string;
1369
1370
  key: string;
1370
- id: string;
1371
1371
  }, {
1372
+ id: string;
1372
1373
  name: string;
1373
1374
  key: string;
1374
- id: string;
1375
1375
  }>>;
1376
1376
  labels: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
1377
1377
  created: import("zod").ZodOptional<import("zod").ZodString>;
@@ -1381,11 +1381,11 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
1381
1381
  id: import("zod").ZodString;
1382
1382
  key: import("zod").ZodString;
1383
1383
  }, "strip", import("zod").ZodTypeAny, {
1384
- key: string;
1385
1384
  id: string;
1386
- }, {
1387
1385
  key: string;
1386
+ }, {
1388
1387
  id: string;
1388
+ key: string;
1389
1389
  }>>;
1390
1390
  comment: import("zod").ZodOptional<import("zod").ZodObject<{
1391
1391
  comments: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
@@ -1412,58 +1412,58 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
1412
1412
  updated: import("zod").ZodOptional<import("zod").ZodString>;
1413
1413
  }, "strip", import("zod").ZodTypeAny, {
1414
1414
  id: string;
1415
- body?: string | undefined;
1416
- created?: string | undefined;
1417
- updated?: string | undefined;
1418
1415
  author?: {
1419
1416
  accountId: string;
1420
1417
  displayName?: string | undefined;
1421
1418
  emailAddress?: string | undefined;
1422
1419
  active?: boolean | undefined;
1423
1420
  } | null | undefined;
1424
- renderedBody?: string | undefined;
1425
- }, {
1426
- id: string;
1427
1421
  body?: string | undefined;
1422
+ renderedBody?: string | undefined;
1428
1423
  created?: string | undefined;
1429
1424
  updated?: string | undefined;
1425
+ }, {
1426
+ id: string;
1430
1427
  author?: {
1431
1428
  accountId: string;
1432
1429
  displayName?: string | undefined;
1433
1430
  emailAddress?: string | undefined;
1434
1431
  active?: boolean | undefined;
1435
1432
  } | null | undefined;
1433
+ body?: string | undefined;
1436
1434
  renderedBody?: string | undefined;
1435
+ created?: string | undefined;
1436
+ updated?: string | undefined;
1437
1437
  }>, "many">>;
1438
1438
  total: import("zod").ZodOptional<import("zod").ZodNumber>;
1439
1439
  }, "strip", import("zod").ZodTypeAny, {
1440
1440
  comments?: {
1441
1441
  id: string;
1442
- body?: string | undefined;
1443
- created?: string | undefined;
1444
- updated?: string | undefined;
1445
1442
  author?: {
1446
1443
  accountId: string;
1447
1444
  displayName?: string | undefined;
1448
1445
  emailAddress?: string | undefined;
1449
1446
  active?: boolean | undefined;
1450
1447
  } | null | undefined;
1448
+ body?: string | undefined;
1451
1449
  renderedBody?: string | undefined;
1450
+ created?: string | undefined;
1451
+ updated?: string | undefined;
1452
1452
  }[] | undefined;
1453
1453
  total?: number | undefined;
1454
1454
  }, {
1455
1455
  comments?: {
1456
1456
  id: string;
1457
- body?: string | undefined;
1458
- created?: string | undefined;
1459
- updated?: string | undefined;
1460
1457
  author?: {
1461
1458
  accountId: string;
1462
1459
  displayName?: string | undefined;
1463
1460
  emailAddress?: string | undefined;
1464
1461
  active?: boolean | undefined;
1465
1462
  } | null | undefined;
1463
+ body?: string | undefined;
1466
1464
  renderedBody?: string | undefined;
1465
+ created?: string | undefined;
1466
+ updated?: string | undefined;
1467
1467
  }[] | undefined;
1468
1468
  total?: number | undefined;
1469
1469
  }>>;
@@ -1484,15 +1484,15 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
1484
1484
  key: string;
1485
1485
  }>>;
1486
1486
  }, "strip", import("zod").ZodTypeAny, {
1487
- name: string;
1488
1487
  id: string;
1488
+ name: string;
1489
1489
  statusCategory?: {
1490
1490
  name: string;
1491
1491
  key: string;
1492
1492
  } | undefined;
1493
1493
  }, {
1494
- name: string;
1495
1494
  id: string;
1495
+ name: string;
1496
1496
  statusCategory?: {
1497
1497
  name: string;
1498
1498
  key: string;
@@ -1502,11 +1502,11 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
1502
1502
  id: import("zod").ZodString;
1503
1503
  name: import("zod").ZodString;
1504
1504
  }, "strip", import("zod").ZodTypeAny, {
1505
- name: string;
1506
1505
  id: string;
1507
- }, {
1508
1506
  name: string;
1507
+ }, {
1509
1508
  id: string;
1509
+ name: string;
1510
1510
  }>>>;
1511
1511
  assignee: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
1512
1512
  accountId: import("zod").ZodString;
@@ -1546,13 +1546,13 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
1546
1546
  description: import("zod").ZodOptional<import("zod").ZodString>;
1547
1547
  subtask: import("zod").ZodOptional<import("zod").ZodBoolean>;
1548
1548
  }, "strip", import("zod").ZodTypeAny, {
1549
- name: string;
1550
1549
  id: string;
1550
+ name: string;
1551
1551
  description?: string | undefined;
1552
1552
  subtask?: boolean | undefined;
1553
1553
  }, {
1554
- name: string;
1555
1554
  id: string;
1555
+ name: string;
1556
1556
  description?: string | undefined;
1557
1557
  subtask?: boolean | undefined;
1558
1558
  }>>;
@@ -1561,13 +1561,13 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
1561
1561
  key: import("zod").ZodString;
1562
1562
  name: import("zod").ZodString;
1563
1563
  }, "strip", import("zod").ZodTypeAny, {
1564
+ id: string;
1564
1565
  name: string;
1565
1566
  key: string;
1566
- id: string;
1567
1567
  }, {
1568
+ id: string;
1568
1569
  name: string;
1569
1570
  key: string;
1570
- id: string;
1571
1571
  }>>;
1572
1572
  labels: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
1573
1573
  created: import("zod").ZodOptional<import("zod").ZodString>;
@@ -1577,11 +1577,11 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
1577
1577
  id: import("zod").ZodString;
1578
1578
  key: import("zod").ZodString;
1579
1579
  }, "strip", import("zod").ZodTypeAny, {
1580
- key: string;
1581
1580
  id: string;
1582
- }, {
1583
1581
  key: string;
1582
+ }, {
1584
1583
  id: string;
1584
+ key: string;
1585
1585
  }>>;
1586
1586
  comment: import("zod").ZodOptional<import("zod").ZodObject<{
1587
1587
  comments: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
@@ -1608,58 +1608,58 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
1608
1608
  updated: import("zod").ZodOptional<import("zod").ZodString>;
1609
1609
  }, "strip", import("zod").ZodTypeAny, {
1610
1610
  id: string;
1611
- body?: string | undefined;
1612
- created?: string | undefined;
1613
- updated?: string | undefined;
1614
1611
  author?: {
1615
1612
  accountId: string;
1616
1613
  displayName?: string | undefined;
1617
1614
  emailAddress?: string | undefined;
1618
1615
  active?: boolean | undefined;
1619
1616
  } | null | undefined;
1620
- renderedBody?: string | undefined;
1621
- }, {
1622
- id: string;
1623
1617
  body?: string | undefined;
1618
+ renderedBody?: string | undefined;
1624
1619
  created?: string | undefined;
1625
1620
  updated?: string | undefined;
1621
+ }, {
1622
+ id: string;
1626
1623
  author?: {
1627
1624
  accountId: string;
1628
1625
  displayName?: string | undefined;
1629
1626
  emailAddress?: string | undefined;
1630
1627
  active?: boolean | undefined;
1631
1628
  } | null | undefined;
1629
+ body?: string | undefined;
1632
1630
  renderedBody?: string | undefined;
1631
+ created?: string | undefined;
1632
+ updated?: string | undefined;
1633
1633
  }>, "many">>;
1634
1634
  total: import("zod").ZodOptional<import("zod").ZodNumber>;
1635
1635
  }, "strip", import("zod").ZodTypeAny, {
1636
1636
  comments?: {
1637
1637
  id: string;
1638
- body?: string | undefined;
1639
- created?: string | undefined;
1640
- updated?: string | undefined;
1641
1638
  author?: {
1642
1639
  accountId: string;
1643
1640
  displayName?: string | undefined;
1644
1641
  emailAddress?: string | undefined;
1645
1642
  active?: boolean | undefined;
1646
1643
  } | null | undefined;
1644
+ body?: string | undefined;
1647
1645
  renderedBody?: string | undefined;
1646
+ created?: string | undefined;
1647
+ updated?: string | undefined;
1648
1648
  }[] | undefined;
1649
1649
  total?: number | undefined;
1650
1650
  }, {
1651
1651
  comments?: {
1652
1652
  id: string;
1653
- body?: string | undefined;
1654
- created?: string | undefined;
1655
- updated?: string | undefined;
1656
1653
  author?: {
1657
1654
  accountId: string;
1658
1655
  displayName?: string | undefined;
1659
1656
  emailAddress?: string | undefined;
1660
1657
  active?: boolean | undefined;
1661
1658
  } | null | undefined;
1659
+ body?: string | undefined;
1662
1660
  renderedBody?: string | undefined;
1661
+ created?: string | undefined;
1662
+ updated?: string | undefined;
1663
1663
  }[] | undefined;
1664
1664
  total?: number | undefined;
1665
1665
  }>>;
@@ -1680,15 +1680,15 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
1680
1680
  key: string;
1681
1681
  }>>;
1682
1682
  }, "strip", import("zod").ZodTypeAny, {
1683
- name: string;
1684
1683
  id: string;
1684
+ name: string;
1685
1685
  statusCategory?: {
1686
1686
  name: string;
1687
1687
  key: string;
1688
1688
  } | undefined;
1689
1689
  }, {
1690
- name: string;
1691
1690
  id: string;
1691
+ name: string;
1692
1692
  statusCategory?: {
1693
1693
  name: string;
1694
1694
  key: string;
@@ -1698,11 +1698,11 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
1698
1698
  id: import("zod").ZodString;
1699
1699
  name: import("zod").ZodString;
1700
1700
  }, "strip", import("zod").ZodTypeAny, {
1701
- name: string;
1702
1701
  id: string;
1703
- }, {
1704
1702
  name: string;
1703
+ }, {
1705
1704
  id: string;
1705
+ name: string;
1706
1706
  }>>>;
1707
1707
  assignee: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
1708
1708
  accountId: import("zod").ZodString;
@@ -1742,13 +1742,13 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
1742
1742
  description: import("zod").ZodOptional<import("zod").ZodString>;
1743
1743
  subtask: import("zod").ZodOptional<import("zod").ZodBoolean>;
1744
1744
  }, "strip", import("zod").ZodTypeAny, {
1745
- name: string;
1746
1745
  id: string;
1746
+ name: string;
1747
1747
  description?: string | undefined;
1748
1748
  subtask?: boolean | undefined;
1749
1749
  }, {
1750
- name: string;
1751
1750
  id: string;
1751
+ name: string;
1752
1752
  description?: string | undefined;
1753
1753
  subtask?: boolean | undefined;
1754
1754
  }>>;
@@ -1757,13 +1757,13 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
1757
1757
  key: import("zod").ZodString;
1758
1758
  name: import("zod").ZodString;
1759
1759
  }, "strip", import("zod").ZodTypeAny, {
1760
+ id: string;
1760
1761
  name: string;
1761
1762
  key: string;
1762
- id: string;
1763
1763
  }, {
1764
+ id: string;
1764
1765
  name: string;
1765
1766
  key: string;
1766
- id: string;
1767
1767
  }>>;
1768
1768
  labels: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
1769
1769
  created: import("zod").ZodOptional<import("zod").ZodString>;
@@ -1773,11 +1773,11 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
1773
1773
  id: import("zod").ZodString;
1774
1774
  key: import("zod").ZodString;
1775
1775
  }, "strip", import("zod").ZodTypeAny, {
1776
- key: string;
1777
1776
  id: string;
1778
- }, {
1779
1777
  key: string;
1778
+ }, {
1780
1779
  id: string;
1780
+ key: string;
1781
1781
  }>>;
1782
1782
  comment: import("zod").ZodOptional<import("zod").ZodObject<{
1783
1783
  comments: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
@@ -1804,58 +1804,58 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
1804
1804
  updated: import("zod").ZodOptional<import("zod").ZodString>;
1805
1805
  }, "strip", import("zod").ZodTypeAny, {
1806
1806
  id: string;
1807
- body?: string | undefined;
1808
- created?: string | undefined;
1809
- updated?: string | undefined;
1810
1807
  author?: {
1811
1808
  accountId: string;
1812
1809
  displayName?: string | undefined;
1813
1810
  emailAddress?: string | undefined;
1814
1811
  active?: boolean | undefined;
1815
1812
  } | null | undefined;
1816
- renderedBody?: string | undefined;
1817
- }, {
1818
- id: string;
1819
1813
  body?: string | undefined;
1814
+ renderedBody?: string | undefined;
1820
1815
  created?: string | undefined;
1821
1816
  updated?: string | undefined;
1817
+ }, {
1818
+ id: string;
1822
1819
  author?: {
1823
1820
  accountId: string;
1824
1821
  displayName?: string | undefined;
1825
1822
  emailAddress?: string | undefined;
1826
1823
  active?: boolean | undefined;
1827
1824
  } | null | undefined;
1825
+ body?: string | undefined;
1828
1826
  renderedBody?: string | undefined;
1827
+ created?: string | undefined;
1828
+ updated?: string | undefined;
1829
1829
  }>, "many">>;
1830
1830
  total: import("zod").ZodOptional<import("zod").ZodNumber>;
1831
1831
  }, "strip", import("zod").ZodTypeAny, {
1832
1832
  comments?: {
1833
1833
  id: string;
1834
- body?: string | undefined;
1835
- created?: string | undefined;
1836
- updated?: string | undefined;
1837
1834
  author?: {
1838
1835
  accountId: string;
1839
1836
  displayName?: string | undefined;
1840
1837
  emailAddress?: string | undefined;
1841
1838
  active?: boolean | undefined;
1842
1839
  } | null | undefined;
1840
+ body?: string | undefined;
1843
1841
  renderedBody?: string | undefined;
1842
+ created?: string | undefined;
1843
+ updated?: string | undefined;
1844
1844
  }[] | undefined;
1845
1845
  total?: number | undefined;
1846
1846
  }, {
1847
1847
  comments?: {
1848
1848
  id: string;
1849
- body?: string | undefined;
1850
- created?: string | undefined;
1851
- updated?: string | undefined;
1852
1849
  author?: {
1853
1850
  accountId: string;
1854
1851
  displayName?: string | undefined;
1855
1852
  emailAddress?: string | undefined;
1856
1853
  active?: boolean | undefined;
1857
1854
  } | null | undefined;
1855
+ body?: string | undefined;
1858
1856
  renderedBody?: string | undefined;
1857
+ created?: string | undefined;
1858
+ updated?: string | undefined;
1859
1859
  }[] | undefined;
1860
1860
  total?: number | undefined;
1861
1861
  }>>;
@@ -1877,37 +1877,37 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
1877
1877
  key: string;
1878
1878
  }>>;
1879
1879
  }, "strip", import("zod").ZodTypeAny, {
1880
- name: string;
1881
1880
  id: string;
1881
+ name: string;
1882
1882
  statusCategory?: {
1883
1883
  name: string;
1884
1884
  key: string;
1885
1885
  } | undefined;
1886
1886
  }, {
1887
- name: string;
1888
1887
  id: string;
1888
+ name: string;
1889
1889
  statusCategory?: {
1890
1890
  name: string;
1891
1891
  key: string;
1892
1892
  } | undefined;
1893
1893
  }>>;
1894
1894
  }, "strip", import("zod").ZodTypeAny, {
1895
- name: string;
1896
1895
  id: string;
1896
+ name: string;
1897
1897
  to?: {
1898
- name: string;
1899
1898
  id: string;
1899
+ name: string;
1900
1900
  statusCategory?: {
1901
1901
  name: string;
1902
1902
  key: string;
1903
1903
  } | undefined;
1904
1904
  } | undefined;
1905
1905
  }, {
1906
- name: string;
1907
1906
  id: string;
1907
+ name: string;
1908
1908
  to?: {
1909
- name: string;
1910
1909
  id: string;
1910
+ name: string;
1911
1911
  statusCategory?: {
1912
1912
  name: string;
1913
1913
  key: string;
@@ -1916,169 +1916,169 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
1916
1916
  }>, "many">>;
1917
1917
  changelog: import("zod").ZodOptional<import("zod").ZodUnknown>;
1918
1918
  }, "strip", import("zod").ZodTypeAny, {
1919
+ id: string;
1920
+ key: string;
1919
1921
  fields: {
1920
1922
  description?: unknown;
1921
1923
  status?: {
1922
- name: string;
1923
1924
  id: string;
1925
+ name: string;
1924
1926
  statusCategory?: {
1925
1927
  name: string;
1926
1928
  key: string;
1927
1929
  } | undefined;
1928
1930
  } | undefined;
1929
- project?: {
1930
- name: string;
1931
- key: string;
1932
- id: string;
1933
- } | undefined;
1931
+ created?: string | undefined;
1932
+ updated?: string | undefined;
1934
1933
  summary?: string | undefined;
1934
+ priority?: {
1935
+ id: string;
1936
+ name: string;
1937
+ } | null | undefined;
1935
1938
  assignee?: {
1936
1939
  accountId: string;
1937
1940
  displayName?: string | undefined;
1938
1941
  emailAddress?: string | undefined;
1939
1942
  active?: boolean | undefined;
1940
1943
  } | null | undefined;
1941
- priority?: {
1944
+ reporter?: {
1945
+ accountId: string;
1946
+ displayName?: string | undefined;
1947
+ emailAddress?: string | undefined;
1948
+ active?: boolean | undefined;
1949
+ } | null | undefined;
1950
+ issuetype?: {
1951
+ id: string;
1942
1952
  name: string;
1953
+ description?: string | undefined;
1954
+ subtask?: boolean | undefined;
1955
+ } | undefined;
1956
+ project?: {
1943
1957
  id: string;
1944
- } | null | undefined;
1958
+ name: string;
1959
+ key: string;
1960
+ } | undefined;
1945
1961
  labels?: string[] | undefined;
1962
+ duedate?: string | null | undefined;
1946
1963
  parent?: {
1947
- key: string;
1948
1964
  id: string;
1965
+ key: string;
1949
1966
  } | undefined;
1950
1967
  comment?: {
1951
1968
  comments?: {
1952
1969
  id: string;
1953
- body?: string | undefined;
1954
- created?: string | undefined;
1955
- updated?: string | undefined;
1956
1970
  author?: {
1957
1971
  accountId: string;
1958
1972
  displayName?: string | undefined;
1959
1973
  emailAddress?: string | undefined;
1960
1974
  active?: boolean | undefined;
1961
1975
  } | null | undefined;
1976
+ body?: string | undefined;
1962
1977
  renderedBody?: string | undefined;
1978
+ created?: string | undefined;
1979
+ updated?: string | undefined;
1963
1980
  }[] | undefined;
1964
1981
  total?: number | undefined;
1965
1982
  } | undefined;
1966
- reporter?: {
1967
- accountId: string;
1968
- displayName?: string | undefined;
1969
- emailAddress?: string | undefined;
1970
- active?: boolean | undefined;
1971
- } | null | undefined;
1972
- issuetype?: {
1973
- name: string;
1974
- id: string;
1975
- description?: string | undefined;
1976
- subtask?: boolean | undefined;
1977
- } | undefined;
1978
- created?: string | undefined;
1979
- updated?: string | undefined;
1980
- duedate?: string | null | undefined;
1981
1983
  } & {
1982
1984
  [k: string]: unknown;
1983
1985
  };
1984
- key: string;
1985
- id: string;
1986
- changelog?: unknown;
1986
+ self?: string | undefined;
1987
1987
  transitions?: {
1988
- name: string;
1989
1988
  id: string;
1989
+ name: string;
1990
1990
  to?: {
1991
- name: string;
1992
1991
  id: string;
1992
+ name: string;
1993
1993
  statusCategory?: {
1994
1994
  name: string;
1995
1995
  key: string;
1996
1996
  } | undefined;
1997
1997
  } | undefined;
1998
1998
  }[] | undefined;
1999
- self?: string | undefined;
1999
+ changelog?: unknown;
2000
2000
  }, {
2001
+ id: string;
2002
+ key: string;
2001
2003
  fields: {
2002
2004
  description?: unknown;
2003
2005
  status?: {
2004
- name: string;
2005
2006
  id: string;
2007
+ name: string;
2006
2008
  statusCategory?: {
2007
2009
  name: string;
2008
2010
  key: string;
2009
2011
  } | undefined;
2010
2012
  } | undefined;
2011
- project?: {
2012
- name: string;
2013
- key: string;
2014
- id: string;
2015
- } | undefined;
2013
+ created?: string | undefined;
2014
+ updated?: string | undefined;
2016
2015
  summary?: string | undefined;
2016
+ priority?: {
2017
+ id: string;
2018
+ name: string;
2019
+ } | null | undefined;
2017
2020
  assignee?: {
2018
2021
  accountId: string;
2019
2022
  displayName?: string | undefined;
2020
2023
  emailAddress?: string | undefined;
2021
2024
  active?: boolean | undefined;
2022
2025
  } | null | undefined;
2023
- priority?: {
2026
+ reporter?: {
2027
+ accountId: string;
2028
+ displayName?: string | undefined;
2029
+ emailAddress?: string | undefined;
2030
+ active?: boolean | undefined;
2031
+ } | null | undefined;
2032
+ issuetype?: {
2033
+ id: string;
2024
2034
  name: string;
2035
+ description?: string | undefined;
2036
+ subtask?: boolean | undefined;
2037
+ } | undefined;
2038
+ project?: {
2025
2039
  id: string;
2026
- } | null | undefined;
2040
+ name: string;
2041
+ key: string;
2042
+ } | undefined;
2027
2043
  labels?: string[] | undefined;
2044
+ duedate?: string | null | undefined;
2028
2045
  parent?: {
2029
- key: string;
2030
2046
  id: string;
2047
+ key: string;
2031
2048
  } | undefined;
2032
2049
  comment?: {
2033
- comments?: {
2034
- id: string;
2035
- body?: string | undefined;
2036
- created?: string | undefined;
2037
- updated?: string | undefined;
2050
+ comments?: {
2051
+ id: string;
2038
2052
  author?: {
2039
2053
  accountId: string;
2040
2054
  displayName?: string | undefined;
2041
2055
  emailAddress?: string | undefined;
2042
2056
  active?: boolean | undefined;
2043
2057
  } | null | undefined;
2058
+ body?: string | undefined;
2044
2059
  renderedBody?: string | undefined;
2060
+ created?: string | undefined;
2061
+ updated?: string | undefined;
2045
2062
  }[] | undefined;
2046
2063
  total?: number | undefined;
2047
2064
  } | undefined;
2048
- reporter?: {
2049
- accountId: string;
2050
- displayName?: string | undefined;
2051
- emailAddress?: string | undefined;
2052
- active?: boolean | undefined;
2053
- } | null | undefined;
2054
- issuetype?: {
2055
- name: string;
2056
- id: string;
2057
- description?: string | undefined;
2058
- subtask?: boolean | undefined;
2059
- } | undefined;
2060
- created?: string | undefined;
2061
- updated?: string | undefined;
2062
- duedate?: string | null | undefined;
2063
2065
  } & {
2064
2066
  [k: string]: unknown;
2065
2067
  };
2066
- key: string;
2067
- id: string;
2068
- changelog?: unknown;
2068
+ self?: string | undefined;
2069
2069
  transitions?: {
2070
- name: string;
2071
2070
  id: string;
2071
+ name: string;
2072
2072
  to?: {
2073
- name: string;
2074
2073
  id: string;
2074
+ name: string;
2075
2075
  statusCategory?: {
2076
2076
  name: string;
2077
2077
  key: string;
2078
2078
  } | undefined;
2079
2079
  } | undefined;
2080
2080
  }[] | undefined;
2081
- self?: string | undefined;
2081
+ changelog?: unknown;
2082
2082
  }>>;
2083
2083
  error: import("zod").ZodString;
2084
2084
  }, "strip", import("zod").ZodTypeAny, {
@@ -2086,174 +2086,174 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
2086
2086
  success: boolean;
2087
2087
  error: string;
2088
2088
  issue?: {
2089
+ id: string;
2090
+ key: string;
2089
2091
  fields: {
2090
2092
  description?: unknown;
2091
2093
  status?: {
2092
- name: string;
2093
2094
  id: string;
2095
+ name: string;
2094
2096
  statusCategory?: {
2095
2097
  name: string;
2096
2098
  key: string;
2097
2099
  } | undefined;
2098
2100
  } | undefined;
2099
- project?: {
2100
- name: string;
2101
- key: string;
2102
- id: string;
2103
- } | undefined;
2101
+ created?: string | undefined;
2102
+ updated?: string | undefined;
2104
2103
  summary?: string | undefined;
2104
+ priority?: {
2105
+ id: string;
2106
+ name: string;
2107
+ } | null | undefined;
2105
2108
  assignee?: {
2106
2109
  accountId: string;
2107
2110
  displayName?: string | undefined;
2108
2111
  emailAddress?: string | undefined;
2109
2112
  active?: boolean | undefined;
2110
2113
  } | null | undefined;
2111
- priority?: {
2114
+ reporter?: {
2115
+ accountId: string;
2116
+ displayName?: string | undefined;
2117
+ emailAddress?: string | undefined;
2118
+ active?: boolean | undefined;
2119
+ } | null | undefined;
2120
+ issuetype?: {
2121
+ id: string;
2112
2122
  name: string;
2123
+ description?: string | undefined;
2124
+ subtask?: boolean | undefined;
2125
+ } | undefined;
2126
+ project?: {
2113
2127
  id: string;
2114
- } | null | undefined;
2128
+ name: string;
2129
+ key: string;
2130
+ } | undefined;
2115
2131
  labels?: string[] | undefined;
2132
+ duedate?: string | null | undefined;
2116
2133
  parent?: {
2117
- key: string;
2118
2134
  id: string;
2135
+ key: string;
2119
2136
  } | undefined;
2120
2137
  comment?: {
2121
2138
  comments?: {
2122
2139
  id: string;
2123
- body?: string | undefined;
2124
- created?: string | undefined;
2125
- updated?: string | undefined;
2126
2140
  author?: {
2127
2141
  accountId: string;
2128
2142
  displayName?: string | undefined;
2129
2143
  emailAddress?: string | undefined;
2130
2144
  active?: boolean | undefined;
2131
2145
  } | null | undefined;
2146
+ body?: string | undefined;
2132
2147
  renderedBody?: string | undefined;
2148
+ created?: string | undefined;
2149
+ updated?: string | undefined;
2133
2150
  }[] | undefined;
2134
2151
  total?: number | undefined;
2135
2152
  } | undefined;
2136
- reporter?: {
2137
- accountId: string;
2138
- displayName?: string | undefined;
2139
- emailAddress?: string | undefined;
2140
- active?: boolean | undefined;
2141
- } | null | undefined;
2142
- issuetype?: {
2143
- name: string;
2144
- id: string;
2145
- description?: string | undefined;
2146
- subtask?: boolean | undefined;
2147
- } | undefined;
2148
- created?: string | undefined;
2149
- updated?: string | undefined;
2150
- duedate?: string | null | undefined;
2151
2153
  } & {
2152
2154
  [k: string]: unknown;
2153
2155
  };
2154
- key: string;
2155
- id: string;
2156
- changelog?: unknown;
2156
+ self?: string | undefined;
2157
2157
  transitions?: {
2158
- name: string;
2159
2158
  id: string;
2159
+ name: string;
2160
2160
  to?: {
2161
- name: string;
2162
2161
  id: string;
2162
+ name: string;
2163
2163
  statusCategory?: {
2164
2164
  name: string;
2165
2165
  key: string;
2166
2166
  } | undefined;
2167
2167
  } | undefined;
2168
2168
  }[] | undefined;
2169
- self?: string | undefined;
2169
+ changelog?: unknown;
2170
2170
  } | undefined;
2171
2171
  }, {
2172
2172
  operation: "get";
2173
2173
  success: boolean;
2174
2174
  error: string;
2175
2175
  issue?: {
2176
+ id: string;
2177
+ key: string;
2176
2178
  fields: {
2177
2179
  description?: unknown;
2178
2180
  status?: {
2179
- name: string;
2180
2181
  id: string;
2182
+ name: string;
2181
2183
  statusCategory?: {
2182
2184
  name: string;
2183
2185
  key: string;
2184
2186
  } | undefined;
2185
2187
  } | undefined;
2186
- project?: {
2187
- name: string;
2188
- key: string;
2189
- id: string;
2190
- } | undefined;
2188
+ created?: string | undefined;
2189
+ updated?: string | undefined;
2191
2190
  summary?: string | undefined;
2191
+ priority?: {
2192
+ id: string;
2193
+ name: string;
2194
+ } | null | undefined;
2192
2195
  assignee?: {
2193
2196
  accountId: string;
2194
2197
  displayName?: string | undefined;
2195
2198
  emailAddress?: string | undefined;
2196
2199
  active?: boolean | undefined;
2197
2200
  } | null | undefined;
2198
- priority?: {
2201
+ reporter?: {
2202
+ accountId: string;
2203
+ displayName?: string | undefined;
2204
+ emailAddress?: string | undefined;
2205
+ active?: boolean | undefined;
2206
+ } | null | undefined;
2207
+ issuetype?: {
2208
+ id: string;
2199
2209
  name: string;
2210
+ description?: string | undefined;
2211
+ subtask?: boolean | undefined;
2212
+ } | undefined;
2213
+ project?: {
2200
2214
  id: string;
2201
- } | null | undefined;
2215
+ name: string;
2216
+ key: string;
2217
+ } | undefined;
2202
2218
  labels?: string[] | undefined;
2219
+ duedate?: string | null | undefined;
2203
2220
  parent?: {
2204
- key: string;
2205
2221
  id: string;
2222
+ key: string;
2206
2223
  } | undefined;
2207
2224
  comment?: {
2208
2225
  comments?: {
2209
2226
  id: string;
2210
- body?: string | undefined;
2211
- created?: string | undefined;
2212
- updated?: string | undefined;
2213
2227
  author?: {
2214
2228
  accountId: string;
2215
2229
  displayName?: string | undefined;
2216
2230
  emailAddress?: string | undefined;
2217
2231
  active?: boolean | undefined;
2218
2232
  } | null | undefined;
2233
+ body?: string | undefined;
2219
2234
  renderedBody?: string | undefined;
2235
+ created?: string | undefined;
2236
+ updated?: string | undefined;
2220
2237
  }[] | undefined;
2221
2238
  total?: number | undefined;
2222
2239
  } | undefined;
2223
- reporter?: {
2224
- accountId: string;
2225
- displayName?: string | undefined;
2226
- emailAddress?: string | undefined;
2227
- active?: boolean | undefined;
2228
- } | null | undefined;
2229
- issuetype?: {
2230
- name: string;
2231
- id: string;
2232
- description?: string | undefined;
2233
- subtask?: boolean | undefined;
2234
- } | undefined;
2235
- created?: string | undefined;
2236
- updated?: string | undefined;
2237
- duedate?: string | null | undefined;
2238
2240
  } & {
2239
2241
  [k: string]: unknown;
2240
2242
  };
2241
- key: string;
2242
- id: string;
2243
- changelog?: unknown;
2243
+ self?: string | undefined;
2244
2244
  transitions?: {
2245
- name: string;
2246
2245
  id: string;
2246
+ name: string;
2247
2247
  to?: {
2248
- name: string;
2249
2248
  id: string;
2249
+ name: string;
2250
2250
  statusCategory?: {
2251
2251
  name: string;
2252
2252
  key: string;
2253
2253
  } | undefined;
2254
2254
  } | undefined;
2255
2255
  }[] | undefined;
2256
- self?: string | undefined;
2256
+ changelog?: unknown;
2257
2257
  } | undefined;
2258
2258
  }>, import("zod").ZodObject<{
2259
2259
  operation: import("zod").ZodLiteral<"create">;
@@ -2263,12 +2263,12 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
2263
2263
  key: import("zod").ZodString;
2264
2264
  self: import("zod").ZodOptional<import("zod").ZodString>;
2265
2265
  }, "strip", import("zod").ZodTypeAny, {
2266
- key: string;
2267
2266
  id: string;
2267
+ key: string;
2268
2268
  self?: string | undefined;
2269
2269
  }, {
2270
- key: string;
2271
2270
  id: string;
2271
+ key: string;
2272
2272
  self?: string | undefined;
2273
2273
  }>>;
2274
2274
  error: import("zod").ZodString;
@@ -2277,8 +2277,8 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
2277
2277
  success: boolean;
2278
2278
  error: string;
2279
2279
  issue?: {
2280
- key: string;
2281
2280
  id: string;
2281
+ key: string;
2282
2282
  self?: string | undefined;
2283
2283
  } | undefined;
2284
2284
  }, {
@@ -2286,8 +2286,8 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
2286
2286
  success: boolean;
2287
2287
  error: string;
2288
2288
  issue?: {
2289
- key: string;
2290
2289
  id: string;
2290
+ key: string;
2291
2291
  self?: string | undefined;
2292
2292
  } | undefined;
2293
2293
  }>, import("zod").ZodObject<{
@@ -2343,37 +2343,37 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
2343
2343
  key: string;
2344
2344
  }>>;
2345
2345
  }, "strip", import("zod").ZodTypeAny, {
2346
- name: string;
2347
2346
  id: string;
2347
+ name: string;
2348
2348
  statusCategory?: {
2349
2349
  name: string;
2350
2350
  key: string;
2351
2351
  } | undefined;
2352
2352
  }, {
2353
- name: string;
2354
2353
  id: string;
2354
+ name: string;
2355
2355
  statusCategory?: {
2356
2356
  name: string;
2357
2357
  key: string;
2358
2358
  } | undefined;
2359
2359
  }>>;
2360
2360
  }, "strip", import("zod").ZodTypeAny, {
2361
- name: string;
2362
2361
  id: string;
2362
+ name: string;
2363
2363
  to?: {
2364
- name: string;
2365
2364
  id: string;
2365
+ name: string;
2366
2366
  statusCategory?: {
2367
2367
  name: string;
2368
2368
  key: string;
2369
2369
  } | undefined;
2370
2370
  } | undefined;
2371
2371
  }, {
2372
- name: string;
2373
2372
  id: string;
2373
+ name: string;
2374
2374
  to?: {
2375
- name: string;
2376
2375
  id: string;
2376
+ name: string;
2377
2377
  statusCategory?: {
2378
2378
  name: string;
2379
2379
  key: string;
@@ -2386,11 +2386,11 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
2386
2386
  success: boolean;
2387
2387
  error: string;
2388
2388
  transitions?: {
2389
- name: string;
2390
2389
  id: string;
2390
+ name: string;
2391
2391
  to?: {
2392
- name: string;
2393
2392
  id: string;
2393
+ name: string;
2394
2394
  statusCategory?: {
2395
2395
  name: string;
2396
2396
  key: string;
@@ -2402,11 +2402,11 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
2402
2402
  success: boolean;
2403
2403
  error: string;
2404
2404
  transitions?: {
2405
- name: string;
2406
2405
  id: string;
2406
+ name: string;
2407
2407
  to?: {
2408
- name: string;
2409
2408
  id: string;
2409
+ name: string;
2410
2410
  statusCategory?: {
2411
2411
  name: string;
2412
2412
  key: string;
@@ -2421,13 +2421,13 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
2421
2421
  key: import("zod").ZodString;
2422
2422
  name: import("zod").ZodString;
2423
2423
  }, "strip", import("zod").ZodTypeAny, {
2424
+ id: string;
2424
2425
  name: string;
2425
2426
  key: string;
2426
- id: string;
2427
2427
  }, {
2428
+ id: string;
2428
2429
  name: string;
2429
2430
  key: string;
2430
- id: string;
2431
2431
  }>, "many">>;
2432
2432
  total: import("zod").ZodOptional<import("zod").ZodNumber>;
2433
2433
  error: import("zod").ZodString;
@@ -2437,9 +2437,9 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
2437
2437
  error: string;
2438
2438
  total?: number | undefined;
2439
2439
  projects?: {
2440
+ id: string;
2440
2441
  name: string;
2441
2442
  key: string;
2442
- id: string;
2443
2443
  }[] | undefined;
2444
2444
  }, {
2445
2445
  operation: "list_projects";
@@ -2447,9 +2447,9 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
2447
2447
  error: string;
2448
2448
  total?: number | undefined;
2449
2449
  projects?: {
2450
+ id: string;
2450
2451
  name: string;
2451
2452
  key: string;
2452
- id: string;
2453
2453
  }[] | undefined;
2454
2454
  }>, import("zod").ZodObject<{
2455
2455
  operation: import("zod").ZodLiteral<"list_issue_types">;
@@ -2460,13 +2460,13 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
2460
2460
  description: import("zod").ZodOptional<import("zod").ZodString>;
2461
2461
  subtask: import("zod").ZodOptional<import("zod").ZodBoolean>;
2462
2462
  }, "strip", import("zod").ZodTypeAny, {
2463
- name: string;
2464
2463
  id: string;
2464
+ name: string;
2465
2465
  description?: string | undefined;
2466
2466
  subtask?: boolean | undefined;
2467
2467
  }, {
2468
- name: string;
2469
2468
  id: string;
2469
+ name: string;
2470
2470
  description?: string | undefined;
2471
2471
  subtask?: boolean | undefined;
2472
2472
  }>, "many">>;
@@ -2476,8 +2476,8 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
2476
2476
  success: boolean;
2477
2477
  error: string;
2478
2478
  issue_types?: {
2479
- name: string;
2480
2479
  id: string;
2480
+ name: string;
2481
2481
  description?: string | undefined;
2482
2482
  subtask?: boolean | undefined;
2483
2483
  }[] | undefined;
@@ -2486,8 +2486,8 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
2486
2486
  success: boolean;
2487
2487
  error: string;
2488
2488
  issue_types?: {
2489
- name: string;
2490
2489
  id: string;
2490
+ name: string;
2491
2491
  description?: string | undefined;
2492
2492
  subtask?: boolean | undefined;
2493
2493
  }[] | undefined;
@@ -2518,28 +2518,28 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
2518
2518
  updated: import("zod").ZodOptional<import("zod").ZodString>;
2519
2519
  }, "strip", import("zod").ZodTypeAny, {
2520
2520
  id: string;
2521
- body?: string | undefined;
2522
- created?: string | undefined;
2523
- updated?: string | undefined;
2524
2521
  author?: {
2525
2522
  accountId: string;
2526
2523
  displayName?: string | undefined;
2527
2524
  emailAddress?: string | undefined;
2528
2525
  active?: boolean | undefined;
2529
2526
  } | null | undefined;
2530
- renderedBody?: string | undefined;
2531
- }, {
2532
- id: string;
2533
2527
  body?: string | undefined;
2528
+ renderedBody?: string | undefined;
2534
2529
  created?: string | undefined;
2535
2530
  updated?: string | undefined;
2531
+ }, {
2532
+ id: string;
2536
2533
  author?: {
2537
2534
  accountId: string;
2538
2535
  displayName?: string | undefined;
2539
2536
  emailAddress?: string | undefined;
2540
2537
  active?: boolean | undefined;
2541
2538
  } | null | undefined;
2539
+ body?: string | undefined;
2542
2540
  renderedBody?: string | undefined;
2541
+ created?: string | undefined;
2542
+ updated?: string | undefined;
2543
2543
  }>>;
2544
2544
  error: import("zod").ZodString;
2545
2545
  }, "strip", import("zod").ZodTypeAny, {
@@ -2548,16 +2548,16 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
2548
2548
  error: string;
2549
2549
  comment?: {
2550
2550
  id: string;
2551
- body?: string | undefined;
2552
- created?: string | undefined;
2553
- updated?: string | undefined;
2554
2551
  author?: {
2555
2552
  accountId: string;
2556
2553
  displayName?: string | undefined;
2557
2554
  emailAddress?: string | undefined;
2558
2555
  active?: boolean | undefined;
2559
2556
  } | null | undefined;
2557
+ body?: string | undefined;
2560
2558
  renderedBody?: string | undefined;
2559
+ created?: string | undefined;
2560
+ updated?: string | undefined;
2561
2561
  } | undefined;
2562
2562
  }, {
2563
2563
  operation: "add_comment";
@@ -2565,16 +2565,16 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
2565
2565
  error: string;
2566
2566
  comment?: {
2567
2567
  id: string;
2568
- body?: string | undefined;
2569
- created?: string | undefined;
2570
- updated?: string | undefined;
2571
2568
  author?: {
2572
2569
  accountId: string;
2573
2570
  displayName?: string | undefined;
2574
2571
  emailAddress?: string | undefined;
2575
2572
  active?: boolean | undefined;
2576
2573
  } | null | undefined;
2574
+ body?: string | undefined;
2577
2575
  renderedBody?: string | undefined;
2576
+ created?: string | undefined;
2577
+ updated?: string | undefined;
2578
2578
  } | undefined;
2579
2579
  }>, import("zod").ZodObject<{
2580
2580
  operation: import("zod").ZodLiteral<"get_comments">;
@@ -2603,28 +2603,28 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
2603
2603
  updated: import("zod").ZodOptional<import("zod").ZodString>;
2604
2604
  }, "strip", import("zod").ZodTypeAny, {
2605
2605
  id: string;
2606
- body?: string | undefined;
2607
- created?: string | undefined;
2608
- updated?: string | undefined;
2609
2606
  author?: {
2610
2607
  accountId: string;
2611
2608
  displayName?: string | undefined;
2612
2609
  emailAddress?: string | undefined;
2613
2610
  active?: boolean | undefined;
2614
2611
  } | null | undefined;
2615
- renderedBody?: string | undefined;
2616
- }, {
2617
- id: string;
2618
2612
  body?: string | undefined;
2613
+ renderedBody?: string | undefined;
2619
2614
  created?: string | undefined;
2620
2615
  updated?: string | undefined;
2616
+ }, {
2617
+ id: string;
2621
2618
  author?: {
2622
2619
  accountId: string;
2623
2620
  displayName?: string | undefined;
2624
2621
  emailAddress?: string | undefined;
2625
2622
  active?: boolean | undefined;
2626
2623
  } | null | undefined;
2624
+ body?: string | undefined;
2627
2625
  renderedBody?: string | undefined;
2626
+ created?: string | undefined;
2627
+ updated?: string | undefined;
2628
2628
  }>, "many">>;
2629
2629
  total: import("zod").ZodOptional<import("zod").ZodNumber>;
2630
2630
  error: import("zod").ZodString;
@@ -2634,16 +2634,16 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
2634
2634
  error: string;
2635
2635
  comments?: {
2636
2636
  id: string;
2637
- body?: string | undefined;
2638
- created?: string | undefined;
2639
- updated?: string | undefined;
2640
2637
  author?: {
2641
2638
  accountId: string;
2642
2639
  displayName?: string | undefined;
2643
2640
  emailAddress?: string | undefined;
2644
2641
  active?: boolean | undefined;
2645
2642
  } | null | undefined;
2643
+ body?: string | undefined;
2646
2644
  renderedBody?: string | undefined;
2645
+ created?: string | undefined;
2646
+ updated?: string | undefined;
2647
2647
  }[] | undefined;
2648
2648
  total?: number | undefined;
2649
2649
  }, {
@@ -2652,16 +2652,16 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
2652
2652
  error: string;
2653
2653
  comments?: {
2654
2654
  id: string;
2655
- body?: string | undefined;
2656
- created?: string | undefined;
2657
- updated?: string | undefined;
2658
2655
  author?: {
2659
2656
  accountId: string;
2660
2657
  displayName?: string | undefined;
2661
2658
  emailAddress?: string | undefined;
2662
2659
  active?: boolean | undefined;
2663
2660
  } | null | undefined;
2661
+ body?: string | undefined;
2664
2662
  renderedBody?: string | undefined;
2663
+ created?: string | undefined;
2664
+ updated?: string | undefined;
2665
2665
  }[] | undefined;
2666
2666
  total?: number | undefined;
2667
2667
  }>]>;
@@ -2677,6 +2677,16 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
2677
2677
  */
2678
2678
  private parseCredentials;
2679
2679
  private makeJiraApiRequest;
2680
+ /**
2681
+ * Resolves an assignee (email or accountId) to a Jira accountId.
2682
+ * If the assignee contains '@', it's treated as an email and looked up via the Jira API.
2683
+ * Otherwise, it's assumed to be an accountId and returned as-is.
2684
+ *
2685
+ * @param assignee - Email address or accountId
2686
+ * @returns The resolved accountId
2687
+ * @throws Error if assignee is an email but no user is found
2688
+ */
2689
+ private resolveAssigneeAccountId;
2680
2690
  protected performAction(context?: BubbleContext): Promise<Extract<JiraResult, {
2681
2691
  operation: T['operation'];
2682
2692
  }>>;