@bubblelab/bubble-core 0.1.30 → 0.1.31

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 (38) hide show
  1. package/dist/bubble-bundle.d.ts +48 -48
  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 +8 -8
  15. package/dist/bubbles/service-bubble/insforge-db.d.ts +4 -4
  16. package/dist/bubbles/service-bubble/jira/index.d.ts +1 -1
  17. package/dist/bubbles/service-bubble/jira/index.d.ts.map +1 -1
  18. package/dist/bubbles/service-bubble/jira/index.js.map +1 -1
  19. package/dist/bubbles/service-bubble/jira/jira.d.ts +497 -497
  20. package/dist/bubbles/service-bubble/jira/jira.d.ts.map +1 -1
  21. package/dist/bubbles/service-bubble/jira/jira.js +40 -2
  22. package/dist/bubbles/service-bubble/jira/jira.js.map +1 -1
  23. package/dist/bubbles/service-bubble/jira/jira.schema.d.ts +69 -68
  24. package/dist/bubbles/service-bubble/jira/jira.schema.d.ts.map +1 -1
  25. package/dist/bubbles/service-bubble/jira/jira.schema.js +1 -4
  26. package/dist/bubbles/service-bubble/jira/jira.schema.js.map +1 -1
  27. package/dist/bubbles/service-bubble/notion/notion.d.ts +148 -148
  28. package/dist/bubbles/service-bubble/postgresql.d.ts +4 -4
  29. package/dist/bubbles/service-bubble/resend.d.ts +4 -4
  30. package/dist/bubbles/service-bubble/slack/slack.d.ts +60 -60
  31. package/dist/bubbles/service-bubble/storage.d.ts +20 -20
  32. package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +36 -36
  33. package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +10 -10
  34. package/dist/bubbles/tool-bubble/twitter-tool.d.ts +28 -28
  35. package/dist/bubbles/tool-bubble/youtube-tool.d.ts +20 -20
  36. package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +30 -30
  37. package/dist/bubbles.json +10 -6
  38. 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;
60
59
  limit?: number | undefined;
61
60
  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
- key: string;
71
70
  operation: "get";
71
+ key: string;
72
72
  fields?: string[] | undefined;
73
73
  credentials?: Partial<Record<CredentialType, string>> | undefined;
74
- expand?: ("comments" | "transitions" | "changelog")[] | undefined;
74
+ expand?: ("changelog" | "comments" | "transitions")[] | undefined;
75
75
  }, {
76
- key: string;
77
76
  operation: "get";
77
+ key: string;
78
78
  fields?: string[] | undefined;
79
79
  credentials?: Partial<Record<CredentialType, string>> | undefined;
80
- expand?: ("comments" | "transitions" | "changelog")[] | undefined;
80
+ expand?: ("changelog" | "comments" | "transitions")[] | undefined;
81
81
  }>, import("zod").ZodObject<{
82
82
  operation: import("zod").ZodLiteral<"create">;
83
83
  project: import("zod").ZodString;
@@ -91,28 +91,28 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
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";
94
95
  type: string;
95
- summary: string;
96
96
  project: string;
97
- operation: "create";
97
+ summary: string;
98
98
  description?: string | undefined;
99
- priority?: "Highest" | "High" | "Medium" | "Low" | "Lowest" | undefined;
99
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
100
100
  assignee?: string | undefined;
101
+ priority?: "Highest" | "High" | "Medium" | "Low" | "Lowest" | undefined;
101
102
  labels?: string[] | undefined;
102
103
  parent?: string | undefined;
103
- credentials?: Partial<Record<CredentialType, string>> | undefined;
104
104
  due_date?: string | undefined;
105
105
  }, {
106
- summary: string;
107
- project: string;
108
106
  operation: "create";
107
+ project: string;
108
+ summary: string;
109
109
  type?: string | undefined;
110
110
  description?: string | undefined;
111
- priority?: "Highest" | "High" | "Medium" | "Low" | "Lowest" | undefined;
111
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
112
112
  assignee?: string | undefined;
113
+ priority?: "Highest" | "High" | "Medium" | "Low" | "Lowest" | undefined;
113
114
  labels?: string[] | undefined;
114
115
  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">;
@@ -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
- key: string;
142
141
  operation: "update";
142
+ key: string;
143
143
  description?: string | undefined;
144
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
144
145
  summary?: string | undefined;
145
- priority?: "Highest" | "High" | "Medium" | "Low" | "Lowest" | undefined;
146
146
  assignee?: string | null | undefined;
147
+ priority?: "Highest" | "High" | "Medium" | "Low" | "Lowest" | undefined;
147
148
  labels?: {
148
149
  set?: string[] | undefined;
149
150
  add?: string[] | undefined;
150
151
  remove?: string[] | undefined;
151
152
  } | undefined;
152
- comment?: string | undefined;
153
- credentials?: Partial<Record<CredentialType, string>> | undefined;
154
153
  due_date?: string | null | undefined;
154
+ comment?: string | undefined;
155
155
  }, {
156
- key: string;
157
156
  operation: "update";
157
+ key: string;
158
158
  description?: string | undefined;
159
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
159
160
  summary?: string | undefined;
160
- priority?: "Highest" | "High" | "Medium" | "Low" | "Lowest" | undefined;
161
161
  assignee?: string | null | undefined;
162
+ priority?: "Highest" | "High" | "Medium" | "Low" | "Lowest" | undefined;
162
163
  labels?: {
163
164
  set?: string[] | undefined;
164
165
  add?: string[] | undefined;
165
166
  remove?: string[] | undefined;
166
167
  } | undefined;
167
- comment?: string | undefined;
168
- credentials?: Partial<Record<CredentialType, string>> | undefined;
169
168
  due_date?: string | null | undefined;
169
+ comment?: string | 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
- key: string;
180
179
  operation: "transition";
180
+ key: string;
181
181
  status?: string | undefined;
182
- comment?: string | undefined;
183
182
  credentials?: Partial<Record<CredentialType, string>> | undefined;
183
+ comment?: string | undefined;
184
184
  transition_id?: string | undefined;
185
185
  resolution?: string | undefined;
186
186
  }, {
187
- key: string;
188
187
  operation: "transition";
188
+ key: string;
189
189
  status?: string | undefined;
190
- comment?: string | undefined;
191
190
  credentials?: Partial<Record<CredentialType, string>> | undefined;
191
+ comment?: 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
- key: string;
200
199
  operation: "list_transitions";
200
+ key: string;
201
201
  credentials?: Partial<Record<CredentialType, string>> | undefined;
202
202
  }, {
203
- key: string;
204
203
  operation: "list_transitions";
204
+ key: string;
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
- project: string;
227
226
  operation: "list_issue_types";
227
+ project: string;
228
228
  credentials?: Partial<Record<CredentialType, string>> | undefined;
229
229
  }, {
230
- project: string;
231
230
  operation: "list_issue_types";
231
+ project: string;
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";
239
240
  key: string;
240
241
  body: string;
241
- operation: "add_comment";
242
242
  credentials?: Partial<Record<CredentialType, string>> | undefined;
243
243
  }, {
244
+ operation: "add_comment";
244
245
  key: string;
245
246
  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;
256
255
  operation: "get_comments";
257
256
  limit: number;
258
257
  offset: number;
258
+ key: string;
259
259
  credentials?: Partial<Record<CredentialType, string>> | undefined;
260
260
  }, {
261
- key: string;
262
261
  operation: "get_comments";
262
+ key: string;
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
- id: string;
292
291
  name: string;
292
+ id: string;
293
293
  statusCategory?: {
294
294
  name: string;
295
295
  key: string;
296
296
  } | undefined;
297
297
  }, {
298
- id: string;
299
298
  name: string;
299
+ id: 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
- id: string;
310
309
  name: string;
311
- }, {
312
310
  id: string;
311
+ }, {
313
312
  name: string;
313
+ id: 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
- id: string;
354
353
  name: string;
354
+ id: string;
355
355
  description?: string | undefined;
356
356
  subtask?: boolean | undefined;
357
357
  }, {
358
- id: string;
359
358
  name: string;
359
+ id: 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;
369
368
  name: string;
370
369
  key: string;
371
- }, {
372
370
  id: string;
371
+ }, {
373
372
  name: string;
374
373
  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
- id: string;
385
384
  key: string;
386
- }, {
387
385
  id: string;
386
+ }, {
388
387
  key: string;
388
+ id: string;
389
389
  }>>;
390
390
  comment: import("zod").ZodOptional<import("zod").ZodObject<{
391
391
  comments: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
@@ -406,64 +406,64 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
406
406
  emailAddress?: string | undefined;
407
407
  active?: boolean | undefined;
408
408
  }>>>;
409
- body: import("zod").ZodOptional<import("zod").ZodUnknown>;
409
+ body: import("zod").ZodOptional<import("zod").ZodString>;
410
410
  renderedBody: import("zod").ZodOptional<import("zod").ZodString>;
411
411
  created: import("zod").ZodOptional<import("zod").ZodString>;
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;
415
418
  author?: {
416
419
  accountId: string;
417
420
  displayName?: string | undefined;
418
421
  emailAddress?: string | undefined;
419
422
  active?: boolean | undefined;
420
423
  } | null | undefined;
421
- body?: unknown;
422
424
  renderedBody?: string | undefined;
423
- created?: string | undefined;
424
- updated?: string | undefined;
425
425
  }, {
426
426
  id: string;
427
+ body?: string | undefined;
428
+ created?: string | undefined;
429
+ updated?: string | undefined;
427
430
  author?: {
428
431
  accountId: string;
429
432
  displayName?: string | undefined;
430
433
  emailAddress?: string | undefined;
431
434
  active?: boolean | undefined;
432
435
  } | null | undefined;
433
- body?: unknown;
434
436
  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;
442
445
  author?: {
443
446
  accountId: string;
444
447
  displayName?: string | undefined;
445
448
  emailAddress?: string | undefined;
446
449
  active?: boolean | undefined;
447
450
  } | null | undefined;
448
- body?: unknown;
449
451
  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;
457
460
  author?: {
458
461
  accountId: string;
459
462
  displayName?: string | undefined;
460
463
  emailAddress?: string | undefined;
461
464
  active?: boolean | undefined;
462
465
  } | null | undefined;
463
- body?: unknown;
464
466
  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
- id: string;
488
487
  name: string;
488
+ id: string;
489
489
  statusCategory?: {
490
490
  name: string;
491
491
  key: string;
492
492
  } | undefined;
493
493
  }, {
494
- id: string;
495
494
  name: string;
495
+ id: 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
- id: string;
506
505
  name: string;
507
- }, {
508
506
  id: string;
507
+ }, {
509
508
  name: string;
509
+ id: 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
- id: string;
550
549
  name: string;
550
+ id: string;
551
551
  description?: string | undefined;
552
552
  subtask?: boolean | undefined;
553
553
  }, {
554
- id: string;
555
554
  name: string;
555
+ id: 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;
565
564
  name: string;
566
565
  key: string;
567
- }, {
568
566
  id: string;
567
+ }, {
569
568
  name: string;
570
569
  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
- id: string;
581
580
  key: string;
582
- }, {
583
581
  id: string;
582
+ }, {
584
583
  key: string;
584
+ id: string;
585
585
  }>>;
586
586
  comment: import("zod").ZodOptional<import("zod").ZodObject<{
587
587
  comments: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
@@ -602,64 +602,64 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
602
602
  emailAddress?: string | undefined;
603
603
  active?: boolean | undefined;
604
604
  }>>>;
605
- body: import("zod").ZodOptional<import("zod").ZodUnknown>;
605
+ body: import("zod").ZodOptional<import("zod").ZodString>;
606
606
  renderedBody: import("zod").ZodOptional<import("zod").ZodString>;
607
607
  created: import("zod").ZodOptional<import("zod").ZodString>;
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;
611
614
  author?: {
612
615
  accountId: string;
613
616
  displayName?: string | undefined;
614
617
  emailAddress?: string | undefined;
615
618
  active?: boolean | undefined;
616
619
  } | null | undefined;
617
- body?: unknown;
618
620
  renderedBody?: string | undefined;
619
- created?: string | undefined;
620
- updated?: string | undefined;
621
621
  }, {
622
622
  id: string;
623
+ body?: string | undefined;
624
+ created?: string | undefined;
625
+ updated?: string | undefined;
623
626
  author?: {
624
627
  accountId: string;
625
628
  displayName?: string | undefined;
626
629
  emailAddress?: string | undefined;
627
630
  active?: boolean | undefined;
628
631
  } | null | undefined;
629
- body?: unknown;
630
632
  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;
638
641
  author?: {
639
642
  accountId: string;
640
643
  displayName?: string | undefined;
641
644
  emailAddress?: string | undefined;
642
645
  active?: boolean | undefined;
643
646
  } | null | undefined;
644
- body?: unknown;
645
647
  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;
653
656
  author?: {
654
657
  accountId: string;
655
658
  displayName?: string | undefined;
656
659
  emailAddress?: string | undefined;
657
660
  active?: boolean | undefined;
658
661
  } | null | undefined;
659
- body?: unknown;
660
662
  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
- id: string;
684
683
  name: string;
684
+ id: string;
685
685
  statusCategory?: {
686
686
  name: string;
687
687
  key: string;
688
688
  } | undefined;
689
689
  }, {
690
- id: string;
691
690
  name: string;
691
+ id: 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
- id: string;
702
701
  name: string;
703
- }, {
704
702
  id: string;
703
+ }, {
705
704
  name: string;
705
+ id: 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
- id: string;
746
745
  name: string;
746
+ id: string;
747
747
  description?: string | undefined;
748
748
  subtask?: boolean | undefined;
749
749
  }, {
750
- id: string;
751
750
  name: string;
751
+ id: 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;
761
760
  name: string;
762
761
  key: string;
763
- }, {
764
762
  id: string;
763
+ }, {
765
764
  name: string;
766
765
  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
- id: string;
777
776
  key: string;
778
- }, {
779
777
  id: string;
778
+ }, {
780
779
  key: string;
780
+ id: string;
781
781
  }>>;
782
782
  comment: import("zod").ZodOptional<import("zod").ZodObject<{
783
783
  comments: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
@@ -798,64 +798,64 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
798
798
  emailAddress?: string | undefined;
799
799
  active?: boolean | undefined;
800
800
  }>>>;
801
- body: import("zod").ZodOptional<import("zod").ZodUnknown>;
801
+ body: import("zod").ZodOptional<import("zod").ZodString>;
802
802
  renderedBody: import("zod").ZodOptional<import("zod").ZodString>;
803
803
  created: import("zod").ZodOptional<import("zod").ZodString>;
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;
807
810
  author?: {
808
811
  accountId: string;
809
812
  displayName?: string | undefined;
810
813
  emailAddress?: string | undefined;
811
814
  active?: boolean | undefined;
812
815
  } | null | undefined;
813
- body?: unknown;
814
816
  renderedBody?: string | undefined;
815
- created?: string | undefined;
816
- updated?: string | undefined;
817
817
  }, {
818
818
  id: string;
819
+ body?: string | undefined;
820
+ created?: string | undefined;
821
+ updated?: string | undefined;
819
822
  author?: {
820
823
  accountId: string;
821
824
  displayName?: string | undefined;
822
825
  emailAddress?: string | undefined;
823
826
  active?: boolean | undefined;
824
827
  } | null | undefined;
825
- body?: unknown;
826
828
  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;
834
837
  author?: {
835
838
  accountId: string;
836
839
  displayName?: string | undefined;
837
840
  emailAddress?: string | undefined;
838
841
  active?: boolean | undefined;
839
842
  } | null | undefined;
840
- body?: unknown;
841
843
  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;
849
852
  author?: {
850
853
  accountId: string;
851
854
  displayName?: string | undefined;
852
855
  emailAddress?: string | undefined;
853
856
  active?: boolean | undefined;
854
857
  } | null | undefined;
855
- body?: unknown;
856
858
  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
- id: string;
881
880
  name: string;
881
+ id: string;
882
882
  statusCategory?: {
883
883
  name: string;
884
884
  key: string;
885
885
  } | undefined;
886
886
  }, {
887
- id: string;
888
887
  name: string;
888
+ id: string;
889
889
  statusCategory?: {
890
890
  name: string;
891
891
  key: string;
892
892
  } | undefined;
893
893
  }>>;
894
894
  }, "strip", import("zod").ZodTypeAny, {
895
- id: string;
896
895
  name: string;
896
+ id: string;
897
897
  to?: {
898
- id: string;
899
898
  name: string;
899
+ id: string;
900
900
  statusCategory?: {
901
901
  name: string;
902
902
  key: string;
903
903
  } | undefined;
904
904
  } | undefined;
905
905
  }, {
906
- id: string;
907
906
  name: string;
907
+ id: string;
908
908
  to?: {
909
- id: string;
910
909
  name: string;
910
+ id: 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;
921
919
  fields: {
922
920
  description?: unknown;
923
921
  status?: {
924
- id: string;
925
922
  name: string;
923
+ id: string;
926
924
  statusCategory?: {
927
925
  name: string;
928
926
  key: string;
929
927
  } | undefined;
930
928
  } | undefined;
931
- created?: string | undefined;
932
- updated?: string | undefined;
933
- summary?: string | undefined;
934
- priority?: {
935
- id: string;
929
+ project?: {
936
930
  name: string;
937
- } | null | undefined;
931
+ key: string;
932
+ id: string;
933
+ } | undefined;
934
+ summary?: string | undefined;
938
935
  assignee?: {
939
936
  accountId: string;
940
937
  displayName?: string | undefined;
941
938
  emailAddress?: string | undefined;
942
939
  active?: boolean | undefined;
943
940
  } | null | undefined;
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;
941
+ priority?: {
952
942
  name: string;
953
- description?: string | undefined;
954
- subtask?: boolean | undefined;
955
- } | undefined;
956
- project?: {
957
943
  id: string;
958
- name: string;
959
- key: string;
960
- } | undefined;
944
+ } | null | undefined;
961
945
  labels?: string[] | undefined;
962
- duedate?: string | null | undefined;
963
946
  parent?: {
964
- id: string;
965
947
  key: string;
948
+ id: string;
966
949
  } | undefined;
967
950
  comment?: {
968
951
  comments?: {
969
952
  id: string;
953
+ body?: string | undefined;
954
+ created?: string | undefined;
955
+ updated?: string | undefined;
970
956
  author?: {
971
957
  accountId: string;
972
958
  displayName?: string | undefined;
973
959
  emailAddress?: string | undefined;
974
960
  active?: boolean | undefined;
975
961
  } | null | undefined;
976
- body?: unknown;
977
962
  renderedBody?: string | undefined;
978
- created?: string | undefined;
979
- updated?: string | undefined;
980
963
  }[] | undefined;
981
964
  total?: number | undefined;
982
965
  } | 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;
983
981
  } & {
984
982
  [k: string]: unknown;
985
983
  };
986
- self?: string | undefined;
984
+ key: string;
985
+ id: string;
986
+ changelog?: unknown;
987
987
  transitions?: {
988
- id: string;
989
988
  name: string;
989
+ id: string;
990
990
  to?: {
991
- id: string;
992
991
  name: string;
992
+ id: string;
993
993
  statusCategory?: {
994
994
  name: string;
995
995
  key: string;
996
996
  } | undefined;
997
997
  } | undefined;
998
998
  }[] | undefined;
999
- changelog?: unknown;
999
+ self?: string | undefined;
1000
1000
  }, {
1001
- id: string;
1002
- key: string;
1003
1001
  fields: {
1004
1002
  description?: unknown;
1005
1003
  status?: {
1006
- id: string;
1007
1004
  name: string;
1005
+ id: string;
1008
1006
  statusCategory?: {
1009
1007
  name: string;
1010
1008
  key: string;
1011
1009
  } | undefined;
1012
1010
  } | undefined;
1013
- created?: string | undefined;
1014
- updated?: string | undefined;
1015
- summary?: string | undefined;
1016
- priority?: {
1017
- id: string;
1011
+ project?: {
1018
1012
  name: string;
1019
- } | null | undefined;
1013
+ key: string;
1014
+ id: string;
1015
+ } | undefined;
1016
+ summary?: string | undefined;
1020
1017
  assignee?: {
1021
1018
  accountId: string;
1022
1019
  displayName?: string | undefined;
1023
1020
  emailAddress?: string | undefined;
1024
1021
  active?: boolean | undefined;
1025
1022
  } | null | undefined;
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;
1023
+ priority?: {
1034
1024
  name: string;
1035
- description?: string | undefined;
1036
- subtask?: boolean | undefined;
1037
- } | undefined;
1038
- project?: {
1039
1025
  id: string;
1040
- name: string;
1041
- key: string;
1042
- } | undefined;
1026
+ } | null | undefined;
1043
1027
  labels?: string[] | undefined;
1044
- duedate?: string | null | undefined;
1045
1028
  parent?: {
1046
- id: string;
1047
1029
  key: string;
1030
+ id: string;
1048
1031
  } | undefined;
1049
1032
  comment?: {
1050
1033
  comments?: {
1051
1034
  id: string;
1035
+ body?: string | undefined;
1036
+ created?: string | undefined;
1037
+ updated?: string | undefined;
1052
1038
  author?: {
1053
1039
  accountId: string;
1054
1040
  displayName?: string | undefined;
1055
1041
  emailAddress?: string | undefined;
1056
1042
  active?: boolean | undefined;
1057
1043
  } | null | undefined;
1058
- body?: unknown;
1059
1044
  renderedBody?: string | undefined;
1060
- created?: string | undefined;
1061
- updated?: string | undefined;
1062
1045
  }[] | undefined;
1063
1046
  total?: number | undefined;
1064
1047
  } | 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;
1065
1063
  } & {
1066
1064
  [k: string]: unknown;
1067
1065
  };
1068
- self?: string | undefined;
1066
+ key: string;
1067
+ id: string;
1068
+ changelog?: unknown;
1069
1069
  transitions?: {
1070
- id: string;
1071
1070
  name: string;
1071
+ id: string;
1072
1072
  to?: {
1073
- id: string;
1074
1073
  name: string;
1074
+ id: string;
1075
1075
  statusCategory?: {
1076
1076
  name: string;
1077
1077
  key: string;
1078
1078
  } | undefined;
1079
1079
  } | undefined;
1080
1080
  }[] | undefined;
1081
- changelog?: unknown;
1081
+ self?: string | undefined;
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;
1094
1092
  fields: {
1095
1093
  description?: unknown;
1096
1094
  status?: {
1097
- id: string;
1098
1095
  name: string;
1096
+ id: string;
1099
1097
  statusCategory?: {
1100
1098
  name: string;
1101
1099
  key: string;
1102
1100
  } | undefined;
1103
1101
  } | undefined;
1104
- created?: string | undefined;
1105
- updated?: string | undefined;
1106
- summary?: string | undefined;
1107
- priority?: {
1108
- id: string;
1102
+ project?: {
1109
1103
  name: string;
1110
- } | null | undefined;
1104
+ key: string;
1105
+ id: string;
1106
+ } | undefined;
1107
+ summary?: string | undefined;
1111
1108
  assignee?: {
1112
1109
  accountId: string;
1113
1110
  displayName?: string | undefined;
1114
1111
  emailAddress?: string | undefined;
1115
1112
  active?: boolean | undefined;
1116
1113
  } | null | undefined;
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;
1114
+ priority?: {
1125
1115
  name: string;
1126
- description?: string | undefined;
1127
- subtask?: boolean | undefined;
1128
- } | undefined;
1129
- project?: {
1130
1116
  id: string;
1131
- name: string;
1132
- key: string;
1133
- } | undefined;
1117
+ } | null | undefined;
1134
1118
  labels?: string[] | undefined;
1135
- duedate?: string | null | undefined;
1136
1119
  parent?: {
1137
- id: string;
1138
1120
  key: string;
1121
+ id: string;
1139
1122
  } | undefined;
1140
1123
  comment?: {
1141
1124
  comments?: {
1142
1125
  id: string;
1126
+ body?: string | undefined;
1127
+ created?: string | undefined;
1128
+ updated?: string | undefined;
1143
1129
  author?: {
1144
1130
  accountId: string;
1145
1131
  displayName?: string | undefined;
1146
1132
  emailAddress?: string | undefined;
1147
1133
  active?: boolean | undefined;
1148
1134
  } | null | undefined;
1149
- body?: unknown;
1150
1135
  renderedBody?: string | undefined;
1151
- created?: string | undefined;
1152
- updated?: string | undefined;
1153
1136
  }[] | undefined;
1154
1137
  total?: number | undefined;
1155
1138
  } | 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;
1156
1154
  } & {
1157
1155
  [k: string]: unknown;
1158
1156
  };
1159
- self?: string | undefined;
1157
+ key: string;
1158
+ id: string;
1159
+ changelog?: unknown;
1160
1160
  transitions?: {
1161
- id: string;
1162
1161
  name: string;
1162
+ id: string;
1163
1163
  to?: {
1164
- id: string;
1165
1164
  name: string;
1165
+ id: string;
1166
1166
  statusCategory?: {
1167
1167
  name: string;
1168
1168
  key: string;
1169
1169
  } | undefined;
1170
1170
  } | undefined;
1171
1171
  }[] | undefined;
1172
- changelog?: unknown;
1172
+ self?: string | undefined;
1173
1173
  }[] | undefined;
1174
- total?: number | undefined;
1175
1174
  limit?: number | undefined;
1176
1175
  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;
1184
1182
  fields: {
1185
1183
  description?: unknown;
1186
1184
  status?: {
1187
- id: string;
1188
1185
  name: string;
1186
+ id: string;
1189
1187
  statusCategory?: {
1190
1188
  name: string;
1191
1189
  key: string;
1192
1190
  } | undefined;
1193
1191
  } | undefined;
1194
- created?: string | undefined;
1195
- updated?: string | undefined;
1196
- summary?: string | undefined;
1197
- priority?: {
1198
- id: string;
1192
+ project?: {
1199
1193
  name: string;
1200
- } | null | undefined;
1194
+ key: string;
1195
+ id: string;
1196
+ } | undefined;
1197
+ summary?: string | undefined;
1201
1198
  assignee?: {
1202
1199
  accountId: string;
1203
1200
  displayName?: string | undefined;
1204
1201
  emailAddress?: string | undefined;
1205
1202
  active?: boolean | undefined;
1206
1203
  } | null | undefined;
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;
1204
+ priority?: {
1215
1205
  name: string;
1216
- description?: string | undefined;
1217
- subtask?: boolean | undefined;
1218
- } | undefined;
1219
- project?: {
1220
1206
  id: string;
1221
- name: string;
1222
- key: string;
1223
- } | undefined;
1207
+ } | null | undefined;
1224
1208
  labels?: string[] | undefined;
1225
- duedate?: string | null | undefined;
1226
1209
  parent?: {
1227
- id: string;
1228
1210
  key: string;
1211
+ id: string;
1229
1212
  } | undefined;
1230
1213
  comment?: {
1231
1214
  comments?: {
1232
1215
  id: string;
1216
+ body?: string | undefined;
1217
+ created?: string | undefined;
1218
+ updated?: string | undefined;
1233
1219
  author?: {
1234
1220
  accountId: string;
1235
1221
  displayName?: string | undefined;
1236
1222
  emailAddress?: string | undefined;
1237
1223
  active?: boolean | undefined;
1238
1224
  } | null | undefined;
1239
- body?: unknown;
1240
1225
  renderedBody?: string | undefined;
1241
- created?: string | undefined;
1242
- updated?: string | undefined;
1243
1226
  }[] | undefined;
1244
1227
  total?: number | undefined;
1245
1228
  } | 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;
1246
1244
  } & {
1247
1245
  [k: string]: unknown;
1248
1246
  };
1249
- self?: string | undefined;
1247
+ key: string;
1248
+ id: string;
1249
+ changelog?: unknown;
1250
1250
  transitions?: {
1251
- id: string;
1252
1251
  name: string;
1252
+ id: string;
1253
1253
  to?: {
1254
- id: string;
1255
1254
  name: string;
1255
+ id: string;
1256
1256
  statusCategory?: {
1257
1257
  name: string;
1258
1258
  key: string;
1259
1259
  } | undefined;
1260
1260
  } | undefined;
1261
1261
  }[] | undefined;
1262
- changelog?: unknown;
1262
+ self?: string | undefined;
1263
1263
  }[] | undefined;
1264
- total?: number | undefined;
1265
1264
  limit?: number | undefined;
1266
1265
  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
- id: string;
1292
1291
  name: string;
1292
+ id: string;
1293
1293
  statusCategory?: {
1294
1294
  name: string;
1295
1295
  key: string;
1296
1296
  } | undefined;
1297
1297
  }, {
1298
- id: string;
1299
1298
  name: string;
1299
+ id: 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
- id: string;
1310
1309
  name: string;
1311
- }, {
1312
1310
  id: string;
1311
+ }, {
1313
1312
  name: string;
1313
+ id: 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
- id: string;
1354
1353
  name: string;
1354
+ id: string;
1355
1355
  description?: string | undefined;
1356
1356
  subtask?: boolean | undefined;
1357
1357
  }, {
1358
- id: string;
1359
1358
  name: string;
1359
+ id: 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;
1369
1368
  name: string;
1370
1369
  key: string;
1371
- }, {
1372
1370
  id: string;
1371
+ }, {
1373
1372
  name: string;
1374
1373
  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
- id: string;
1385
1384
  key: string;
1386
- }, {
1387
1385
  id: string;
1386
+ }, {
1388
1387
  key: string;
1388
+ id: string;
1389
1389
  }>>;
1390
1390
  comment: import("zod").ZodOptional<import("zod").ZodObject<{
1391
1391
  comments: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
@@ -1406,64 +1406,64 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
1406
1406
  emailAddress?: string | undefined;
1407
1407
  active?: boolean | undefined;
1408
1408
  }>>>;
1409
- body: import("zod").ZodOptional<import("zod").ZodUnknown>;
1409
+ body: import("zod").ZodOptional<import("zod").ZodString>;
1410
1410
  renderedBody: import("zod").ZodOptional<import("zod").ZodString>;
1411
1411
  created: import("zod").ZodOptional<import("zod").ZodString>;
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;
1415
1418
  author?: {
1416
1419
  accountId: string;
1417
1420
  displayName?: string | undefined;
1418
1421
  emailAddress?: string | undefined;
1419
1422
  active?: boolean | undefined;
1420
1423
  } | null | undefined;
1421
- body?: unknown;
1422
1424
  renderedBody?: string | undefined;
1423
- created?: string | undefined;
1424
- updated?: string | undefined;
1425
1425
  }, {
1426
1426
  id: string;
1427
+ body?: string | undefined;
1428
+ created?: string | undefined;
1429
+ updated?: string | undefined;
1427
1430
  author?: {
1428
1431
  accountId: string;
1429
1432
  displayName?: string | undefined;
1430
1433
  emailAddress?: string | undefined;
1431
1434
  active?: boolean | undefined;
1432
1435
  } | null | undefined;
1433
- body?: unknown;
1434
1436
  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;
1442
1445
  author?: {
1443
1446
  accountId: string;
1444
1447
  displayName?: string | undefined;
1445
1448
  emailAddress?: string | undefined;
1446
1449
  active?: boolean | undefined;
1447
1450
  } | null | undefined;
1448
- body?: unknown;
1449
1451
  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;
1457
1460
  author?: {
1458
1461
  accountId: string;
1459
1462
  displayName?: string | undefined;
1460
1463
  emailAddress?: string | undefined;
1461
1464
  active?: boolean | undefined;
1462
1465
  } | null | undefined;
1463
- body?: unknown;
1464
1466
  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
- id: string;
1488
1487
  name: string;
1488
+ id: string;
1489
1489
  statusCategory?: {
1490
1490
  name: string;
1491
1491
  key: string;
1492
1492
  } | undefined;
1493
1493
  }, {
1494
- id: string;
1495
1494
  name: string;
1495
+ id: 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
- id: string;
1506
1505
  name: string;
1507
- }, {
1508
1506
  id: string;
1507
+ }, {
1509
1508
  name: string;
1509
+ id: 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
- id: string;
1550
1549
  name: string;
1550
+ id: string;
1551
1551
  description?: string | undefined;
1552
1552
  subtask?: boolean | undefined;
1553
1553
  }, {
1554
- id: string;
1555
1554
  name: string;
1555
+ id: 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;
1565
1564
  name: string;
1566
1565
  key: string;
1567
- }, {
1568
1566
  id: string;
1567
+ }, {
1569
1568
  name: string;
1570
1569
  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
- id: string;
1581
1580
  key: string;
1582
- }, {
1583
1581
  id: string;
1582
+ }, {
1584
1583
  key: string;
1584
+ id: string;
1585
1585
  }>>;
1586
1586
  comment: import("zod").ZodOptional<import("zod").ZodObject<{
1587
1587
  comments: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
@@ -1602,64 +1602,64 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
1602
1602
  emailAddress?: string | undefined;
1603
1603
  active?: boolean | undefined;
1604
1604
  }>>>;
1605
- body: import("zod").ZodOptional<import("zod").ZodUnknown>;
1605
+ body: import("zod").ZodOptional<import("zod").ZodString>;
1606
1606
  renderedBody: import("zod").ZodOptional<import("zod").ZodString>;
1607
1607
  created: import("zod").ZodOptional<import("zod").ZodString>;
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;
1611
1614
  author?: {
1612
1615
  accountId: string;
1613
1616
  displayName?: string | undefined;
1614
1617
  emailAddress?: string | undefined;
1615
1618
  active?: boolean | undefined;
1616
1619
  } | null | undefined;
1617
- body?: unknown;
1618
1620
  renderedBody?: string | undefined;
1619
- created?: string | undefined;
1620
- updated?: string | undefined;
1621
1621
  }, {
1622
1622
  id: string;
1623
+ body?: string | undefined;
1624
+ created?: string | undefined;
1625
+ updated?: string | undefined;
1623
1626
  author?: {
1624
1627
  accountId: string;
1625
1628
  displayName?: string | undefined;
1626
1629
  emailAddress?: string | undefined;
1627
1630
  active?: boolean | undefined;
1628
1631
  } | null | undefined;
1629
- body?: unknown;
1630
1632
  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;
1638
1641
  author?: {
1639
1642
  accountId: string;
1640
1643
  displayName?: string | undefined;
1641
1644
  emailAddress?: string | undefined;
1642
1645
  active?: boolean | undefined;
1643
1646
  } | null | undefined;
1644
- body?: unknown;
1645
1647
  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;
1653
1656
  author?: {
1654
1657
  accountId: string;
1655
1658
  displayName?: string | undefined;
1656
1659
  emailAddress?: string | undefined;
1657
1660
  active?: boolean | undefined;
1658
1661
  } | null | undefined;
1659
- body?: unknown;
1660
1662
  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
- id: string;
1684
1683
  name: string;
1684
+ id: string;
1685
1685
  statusCategory?: {
1686
1686
  name: string;
1687
1687
  key: string;
1688
1688
  } | undefined;
1689
1689
  }, {
1690
- id: string;
1691
1690
  name: string;
1691
+ id: 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
- id: string;
1702
1701
  name: string;
1703
- }, {
1704
1702
  id: string;
1703
+ }, {
1705
1704
  name: string;
1705
+ id: 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
- id: string;
1746
1745
  name: string;
1746
+ id: string;
1747
1747
  description?: string | undefined;
1748
1748
  subtask?: boolean | undefined;
1749
1749
  }, {
1750
- id: string;
1751
1750
  name: string;
1751
+ id: 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;
1761
1760
  name: string;
1762
1761
  key: string;
1763
- }, {
1764
1762
  id: string;
1763
+ }, {
1765
1764
  name: string;
1766
1765
  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
- id: string;
1777
1776
  key: string;
1778
- }, {
1779
1777
  id: string;
1778
+ }, {
1780
1779
  key: string;
1780
+ id: string;
1781
1781
  }>>;
1782
1782
  comment: import("zod").ZodOptional<import("zod").ZodObject<{
1783
1783
  comments: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
@@ -1798,64 +1798,64 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
1798
1798
  emailAddress?: string | undefined;
1799
1799
  active?: boolean | undefined;
1800
1800
  }>>>;
1801
- body: import("zod").ZodOptional<import("zod").ZodUnknown>;
1801
+ body: import("zod").ZodOptional<import("zod").ZodString>;
1802
1802
  renderedBody: import("zod").ZodOptional<import("zod").ZodString>;
1803
1803
  created: import("zod").ZodOptional<import("zod").ZodString>;
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;
1807
1810
  author?: {
1808
1811
  accountId: string;
1809
1812
  displayName?: string | undefined;
1810
1813
  emailAddress?: string | undefined;
1811
1814
  active?: boolean | undefined;
1812
1815
  } | null | undefined;
1813
- body?: unknown;
1814
1816
  renderedBody?: string | undefined;
1815
- created?: string | undefined;
1816
- updated?: string | undefined;
1817
1817
  }, {
1818
1818
  id: string;
1819
+ body?: string | undefined;
1820
+ created?: string | undefined;
1821
+ updated?: string | undefined;
1819
1822
  author?: {
1820
1823
  accountId: string;
1821
1824
  displayName?: string | undefined;
1822
1825
  emailAddress?: string | undefined;
1823
1826
  active?: boolean | undefined;
1824
1827
  } | null | undefined;
1825
- body?: unknown;
1826
1828
  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;
1834
1837
  author?: {
1835
1838
  accountId: string;
1836
1839
  displayName?: string | undefined;
1837
1840
  emailAddress?: string | undefined;
1838
1841
  active?: boolean | undefined;
1839
1842
  } | null | undefined;
1840
- body?: unknown;
1841
1843
  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;
1849
1852
  author?: {
1850
1853
  accountId: string;
1851
1854
  displayName?: string | undefined;
1852
1855
  emailAddress?: string | undefined;
1853
1856
  active?: boolean | undefined;
1854
1857
  } | null | undefined;
1855
- body?: unknown;
1856
1858
  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
- id: string;
1881
1880
  name: string;
1881
+ id: string;
1882
1882
  statusCategory?: {
1883
1883
  name: string;
1884
1884
  key: string;
1885
1885
  } | undefined;
1886
1886
  }, {
1887
- id: string;
1888
1887
  name: string;
1888
+ id: string;
1889
1889
  statusCategory?: {
1890
1890
  name: string;
1891
1891
  key: string;
1892
1892
  } | undefined;
1893
1893
  }>>;
1894
1894
  }, "strip", import("zod").ZodTypeAny, {
1895
- id: string;
1896
1895
  name: string;
1896
+ id: string;
1897
1897
  to?: {
1898
- id: string;
1899
1898
  name: string;
1899
+ id: string;
1900
1900
  statusCategory?: {
1901
1901
  name: string;
1902
1902
  key: string;
1903
1903
  } | undefined;
1904
1904
  } | undefined;
1905
1905
  }, {
1906
- id: string;
1907
1906
  name: string;
1907
+ id: string;
1908
1908
  to?: {
1909
- id: string;
1910
1909
  name: string;
1910
+ id: 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;
1921
1919
  fields: {
1922
1920
  description?: unknown;
1923
1921
  status?: {
1924
- id: string;
1925
1922
  name: string;
1923
+ id: string;
1926
1924
  statusCategory?: {
1927
1925
  name: string;
1928
1926
  key: string;
1929
1927
  } | undefined;
1930
1928
  } | undefined;
1931
- created?: string | undefined;
1932
- updated?: string | undefined;
1933
- summary?: string | undefined;
1934
- priority?: {
1935
- id: string;
1929
+ project?: {
1936
1930
  name: string;
1937
- } | null | undefined;
1931
+ key: string;
1932
+ id: string;
1933
+ } | undefined;
1934
+ summary?: string | undefined;
1938
1935
  assignee?: {
1939
1936
  accountId: string;
1940
1937
  displayName?: string | undefined;
1941
1938
  emailAddress?: string | undefined;
1942
1939
  active?: boolean | undefined;
1943
1940
  } | null | undefined;
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;
1941
+ priority?: {
1952
1942
  name: string;
1953
- description?: string | undefined;
1954
- subtask?: boolean | undefined;
1955
- } | undefined;
1956
- project?: {
1957
1943
  id: string;
1958
- name: string;
1959
- key: string;
1960
- } | undefined;
1944
+ } | null | undefined;
1961
1945
  labels?: string[] | undefined;
1962
- duedate?: string | null | undefined;
1963
1946
  parent?: {
1964
- id: string;
1965
1947
  key: string;
1948
+ id: string;
1966
1949
  } | undefined;
1967
1950
  comment?: {
1968
1951
  comments?: {
1969
1952
  id: string;
1953
+ body?: string | undefined;
1954
+ created?: string | undefined;
1955
+ updated?: string | undefined;
1970
1956
  author?: {
1971
1957
  accountId: string;
1972
1958
  displayName?: string | undefined;
1973
1959
  emailAddress?: string | undefined;
1974
1960
  active?: boolean | undefined;
1975
1961
  } | null | undefined;
1976
- body?: unknown;
1977
1962
  renderedBody?: string | undefined;
1978
- created?: string | undefined;
1979
- updated?: string | undefined;
1980
1963
  }[] | undefined;
1981
1964
  total?: number | undefined;
1982
1965
  } | 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;
1983
1981
  } & {
1984
1982
  [k: string]: unknown;
1985
1983
  };
1986
- self?: string | undefined;
1984
+ key: string;
1985
+ id: string;
1986
+ changelog?: unknown;
1987
1987
  transitions?: {
1988
- id: string;
1989
1988
  name: string;
1989
+ id: string;
1990
1990
  to?: {
1991
- id: string;
1992
1991
  name: string;
1992
+ id: string;
1993
1993
  statusCategory?: {
1994
1994
  name: string;
1995
1995
  key: string;
1996
1996
  } | undefined;
1997
1997
  } | undefined;
1998
1998
  }[] | undefined;
1999
- changelog?: unknown;
1999
+ self?: string | undefined;
2000
2000
  }, {
2001
- id: string;
2002
- key: string;
2003
2001
  fields: {
2004
2002
  description?: unknown;
2005
2003
  status?: {
2006
- id: string;
2007
2004
  name: string;
2005
+ id: string;
2008
2006
  statusCategory?: {
2009
2007
  name: string;
2010
2008
  key: string;
2011
2009
  } | undefined;
2012
2010
  } | undefined;
2013
- created?: string | undefined;
2014
- updated?: string | undefined;
2015
- summary?: string | undefined;
2016
- priority?: {
2017
- id: string;
2011
+ project?: {
2018
2012
  name: string;
2019
- } | null | undefined;
2013
+ key: string;
2014
+ id: string;
2015
+ } | undefined;
2016
+ summary?: string | undefined;
2020
2017
  assignee?: {
2021
2018
  accountId: string;
2022
2019
  displayName?: string | undefined;
2023
2020
  emailAddress?: string | undefined;
2024
2021
  active?: boolean | undefined;
2025
2022
  } | null | undefined;
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;
2023
+ priority?: {
2034
2024
  name: string;
2035
- description?: string | undefined;
2036
- subtask?: boolean | undefined;
2037
- } | undefined;
2038
- project?: {
2039
2025
  id: string;
2040
- name: string;
2041
- key: string;
2042
- } | undefined;
2026
+ } | null | undefined;
2043
2027
  labels?: string[] | undefined;
2044
- duedate?: string | null | undefined;
2045
2028
  parent?: {
2046
- id: string;
2047
2029
  key: string;
2030
+ id: string;
2048
2031
  } | undefined;
2049
2032
  comment?: {
2050
2033
  comments?: {
2051
2034
  id: string;
2035
+ body?: string | undefined;
2036
+ created?: string | undefined;
2037
+ updated?: string | undefined;
2052
2038
  author?: {
2053
2039
  accountId: string;
2054
2040
  displayName?: string | undefined;
2055
2041
  emailAddress?: string | undefined;
2056
2042
  active?: boolean | undefined;
2057
2043
  } | null | undefined;
2058
- body?: unknown;
2059
2044
  renderedBody?: string | undefined;
2060
- created?: string | undefined;
2061
- updated?: string | undefined;
2062
2045
  }[] | undefined;
2063
2046
  total?: number | undefined;
2064
2047
  } | 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;
2065
2063
  } & {
2066
2064
  [k: string]: unknown;
2067
2065
  };
2068
- self?: string | undefined;
2066
+ key: string;
2067
+ id: string;
2068
+ changelog?: unknown;
2069
2069
  transitions?: {
2070
- id: string;
2071
2070
  name: string;
2071
+ id: string;
2072
2072
  to?: {
2073
- id: string;
2074
2073
  name: string;
2074
+ id: string;
2075
2075
  statusCategory?: {
2076
2076
  name: string;
2077
2077
  key: string;
2078
2078
  } | undefined;
2079
2079
  } | undefined;
2080
2080
  }[] | undefined;
2081
- changelog?: unknown;
2081
+ self?: string | undefined;
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;
2091
2089
  fields: {
2092
2090
  description?: unknown;
2093
2091
  status?: {
2094
- id: string;
2095
2092
  name: string;
2093
+ id: string;
2096
2094
  statusCategory?: {
2097
2095
  name: string;
2098
2096
  key: string;
2099
2097
  } | undefined;
2100
2098
  } | undefined;
2101
- created?: string | undefined;
2102
- updated?: string | undefined;
2103
- summary?: string | undefined;
2104
- priority?: {
2105
- id: string;
2099
+ project?: {
2106
2100
  name: string;
2107
- } | null | undefined;
2101
+ key: string;
2102
+ id: string;
2103
+ } | undefined;
2104
+ summary?: string | undefined;
2108
2105
  assignee?: {
2109
2106
  accountId: string;
2110
2107
  displayName?: string | undefined;
2111
2108
  emailAddress?: string | undefined;
2112
2109
  active?: boolean | undefined;
2113
2110
  } | null | undefined;
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;
2111
+ priority?: {
2122
2112
  name: string;
2123
- description?: string | undefined;
2124
- subtask?: boolean | undefined;
2125
- } | undefined;
2126
- project?: {
2127
2113
  id: string;
2128
- name: string;
2129
- key: string;
2130
- } | undefined;
2114
+ } | null | undefined;
2131
2115
  labels?: string[] | undefined;
2132
- duedate?: string | null | undefined;
2133
2116
  parent?: {
2134
- id: string;
2135
2117
  key: string;
2118
+ id: string;
2136
2119
  } | undefined;
2137
2120
  comment?: {
2138
2121
  comments?: {
2139
2122
  id: string;
2123
+ body?: string | undefined;
2124
+ created?: string | undefined;
2125
+ updated?: string | undefined;
2140
2126
  author?: {
2141
2127
  accountId: string;
2142
2128
  displayName?: string | undefined;
2143
2129
  emailAddress?: string | undefined;
2144
2130
  active?: boolean | undefined;
2145
2131
  } | null | undefined;
2146
- body?: unknown;
2147
2132
  renderedBody?: string | undefined;
2148
- created?: string | undefined;
2149
- updated?: string | undefined;
2150
2133
  }[] | undefined;
2151
2134
  total?: number | undefined;
2152
2135
  } | 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;
2153
2151
  } & {
2154
2152
  [k: string]: unknown;
2155
2153
  };
2156
- self?: string | undefined;
2154
+ key: string;
2155
+ id: string;
2156
+ changelog?: unknown;
2157
2157
  transitions?: {
2158
- id: string;
2159
2158
  name: string;
2159
+ id: string;
2160
2160
  to?: {
2161
- id: string;
2162
2161
  name: string;
2162
+ id: string;
2163
2163
  statusCategory?: {
2164
2164
  name: string;
2165
2165
  key: string;
2166
2166
  } | undefined;
2167
2167
  } | undefined;
2168
2168
  }[] | undefined;
2169
- changelog?: unknown;
2169
+ self?: string | undefined;
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;
2178
2176
  fields: {
2179
2177
  description?: unknown;
2180
2178
  status?: {
2181
- id: string;
2182
2179
  name: string;
2180
+ id: string;
2183
2181
  statusCategory?: {
2184
2182
  name: string;
2185
2183
  key: string;
2186
2184
  } | undefined;
2187
2185
  } | undefined;
2188
- created?: string | undefined;
2189
- updated?: string | undefined;
2190
- summary?: string | undefined;
2191
- priority?: {
2192
- id: string;
2186
+ project?: {
2193
2187
  name: string;
2194
- } | null | undefined;
2188
+ key: string;
2189
+ id: string;
2190
+ } | undefined;
2191
+ summary?: string | undefined;
2195
2192
  assignee?: {
2196
2193
  accountId: string;
2197
2194
  displayName?: string | undefined;
2198
2195
  emailAddress?: string | undefined;
2199
2196
  active?: boolean | undefined;
2200
2197
  } | null | undefined;
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;
2198
+ priority?: {
2209
2199
  name: string;
2210
- description?: string | undefined;
2211
- subtask?: boolean | undefined;
2212
- } | undefined;
2213
- project?: {
2214
2200
  id: string;
2215
- name: string;
2216
- key: string;
2217
- } | undefined;
2201
+ } | null | undefined;
2218
2202
  labels?: string[] | undefined;
2219
- duedate?: string | null | undefined;
2220
2203
  parent?: {
2221
- id: string;
2222
2204
  key: string;
2205
+ id: string;
2223
2206
  } | undefined;
2224
2207
  comment?: {
2225
2208
  comments?: {
2226
2209
  id: string;
2210
+ body?: string | undefined;
2211
+ created?: string | undefined;
2212
+ updated?: string | undefined;
2227
2213
  author?: {
2228
2214
  accountId: string;
2229
2215
  displayName?: string | undefined;
2230
2216
  emailAddress?: string | undefined;
2231
2217
  active?: boolean | undefined;
2232
2218
  } | null | undefined;
2233
- body?: unknown;
2234
2219
  renderedBody?: string | undefined;
2235
- created?: string | undefined;
2236
- updated?: string | undefined;
2237
2220
  }[] | undefined;
2238
2221
  total?: number | undefined;
2239
2222
  } | 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;
2240
2238
  } & {
2241
2239
  [k: string]: unknown;
2242
2240
  };
2243
- self?: string | undefined;
2241
+ key: string;
2242
+ id: string;
2243
+ changelog?: unknown;
2244
2244
  transitions?: {
2245
- id: string;
2246
2245
  name: string;
2246
+ id: string;
2247
2247
  to?: {
2248
- id: string;
2249
2248
  name: string;
2249
+ id: string;
2250
2250
  statusCategory?: {
2251
2251
  name: string;
2252
2252
  key: string;
2253
2253
  } | undefined;
2254
2254
  } | undefined;
2255
2255
  }[] | undefined;
2256
- changelog?: unknown;
2256
+ self?: string | undefined;
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
- id: string;
2267
2266
  key: string;
2267
+ id: string;
2268
2268
  self?: string | undefined;
2269
2269
  }, {
2270
- id: string;
2271
2270
  key: string;
2271
+ id: 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
- id: string;
2281
2280
  key: string;
2281
+ id: 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
- id: string;
2290
2289
  key: string;
2290
+ id: 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
- id: string;
2347
2346
  name: string;
2347
+ id: string;
2348
2348
  statusCategory?: {
2349
2349
  name: string;
2350
2350
  key: string;
2351
2351
  } | undefined;
2352
2352
  }, {
2353
- id: string;
2354
2353
  name: string;
2354
+ id: string;
2355
2355
  statusCategory?: {
2356
2356
  name: string;
2357
2357
  key: string;
2358
2358
  } | undefined;
2359
2359
  }>>;
2360
2360
  }, "strip", import("zod").ZodTypeAny, {
2361
- id: string;
2362
2361
  name: string;
2362
+ id: string;
2363
2363
  to?: {
2364
- id: string;
2365
2364
  name: string;
2365
+ id: string;
2366
2366
  statusCategory?: {
2367
2367
  name: string;
2368
2368
  key: string;
2369
2369
  } | undefined;
2370
2370
  } | undefined;
2371
2371
  }, {
2372
- id: string;
2373
2372
  name: string;
2373
+ id: string;
2374
2374
  to?: {
2375
- id: string;
2376
2375
  name: string;
2376
+ id: 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
- id: string;
2390
2389
  name: string;
2390
+ id: string;
2391
2391
  to?: {
2392
- id: string;
2393
2392
  name: string;
2393
+ id: 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
- id: string;
2406
2405
  name: string;
2406
+ id: string;
2407
2407
  to?: {
2408
- id: string;
2409
2408
  name: string;
2409
+ id: 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;
2425
2424
  name: string;
2426
2425
  key: string;
2427
- }, {
2428
2426
  id: string;
2427
+ }, {
2429
2428
  name: string;
2430
2429
  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;
2441
2440
  name: string;
2442
2441
  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;
2451
2450
  name: string;
2452
2451
  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
- id: string;
2464
2463
  name: string;
2464
+ id: string;
2465
2465
  description?: string | undefined;
2466
2466
  subtask?: boolean | undefined;
2467
2467
  }, {
2468
- id: string;
2469
2468
  name: string;
2469
+ id: 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
- id: string;
2480
2479
  name: string;
2480
+ id: 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
- id: string;
2490
2489
  name: string;
2490
+ id: string;
2491
2491
  description?: string | undefined;
2492
2492
  subtask?: boolean | undefined;
2493
2493
  }[] | undefined;
@@ -2512,34 +2512,34 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
2512
2512
  emailAddress?: string | undefined;
2513
2513
  active?: boolean | undefined;
2514
2514
  }>>>;
2515
- body: import("zod").ZodOptional<import("zod").ZodUnknown>;
2515
+ body: import("zod").ZodOptional<import("zod").ZodString>;
2516
2516
  renderedBody: import("zod").ZodOptional<import("zod").ZodString>;
2517
2517
  created: import("zod").ZodOptional<import("zod").ZodString>;
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;
2521
2524
  author?: {
2522
2525
  accountId: string;
2523
2526
  displayName?: string | undefined;
2524
2527
  emailAddress?: string | undefined;
2525
2528
  active?: boolean | undefined;
2526
2529
  } | null | undefined;
2527
- body?: unknown;
2528
2530
  renderedBody?: string | undefined;
2529
- created?: string | undefined;
2530
- updated?: string | undefined;
2531
2531
  }, {
2532
2532
  id: string;
2533
+ body?: string | undefined;
2534
+ created?: string | undefined;
2535
+ updated?: string | undefined;
2533
2536
  author?: {
2534
2537
  accountId: string;
2535
2538
  displayName?: string | undefined;
2536
2539
  emailAddress?: string | undefined;
2537
2540
  active?: boolean | undefined;
2538
2541
  } | null | undefined;
2539
- body?: unknown;
2540
2542
  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;
2551
2554
  author?: {
2552
2555
  accountId: string;
2553
2556
  displayName?: string | undefined;
2554
2557
  emailAddress?: string | undefined;
2555
2558
  active?: boolean | undefined;
2556
2559
  } | null | undefined;
2557
- body?: unknown;
2558
2560
  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;
2568
2571
  author?: {
2569
2572
  accountId: string;
2570
2573
  displayName?: string | undefined;
2571
2574
  emailAddress?: string | undefined;
2572
2575
  active?: boolean | undefined;
2573
2576
  } | null | undefined;
2574
- body?: unknown;
2575
2577
  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">;
@@ -2597,34 +2597,34 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
2597
2597
  emailAddress?: string | undefined;
2598
2598
  active?: boolean | undefined;
2599
2599
  }>>>;
2600
- body: import("zod").ZodOptional<import("zod").ZodUnknown>;
2600
+ body: import("zod").ZodOptional<import("zod").ZodString>;
2601
2601
  renderedBody: import("zod").ZodOptional<import("zod").ZodString>;
2602
2602
  created: import("zod").ZodOptional<import("zod").ZodString>;
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;
2606
2609
  author?: {
2607
2610
  accountId: string;
2608
2611
  displayName?: string | undefined;
2609
2612
  emailAddress?: string | undefined;
2610
2613
  active?: boolean | undefined;
2611
2614
  } | null | undefined;
2612
- body?: unknown;
2613
2615
  renderedBody?: string | undefined;
2614
- created?: string | undefined;
2615
- updated?: string | undefined;
2616
2616
  }, {
2617
2617
  id: string;
2618
+ body?: string | undefined;
2619
+ created?: string | undefined;
2620
+ updated?: string | undefined;
2618
2621
  author?: {
2619
2622
  accountId: string;
2620
2623
  displayName?: string | undefined;
2621
2624
  emailAddress?: string | undefined;
2622
2625
  active?: boolean | undefined;
2623
2626
  } | null | undefined;
2624
- body?: unknown;
2625
2627
  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;
2637
2640
  author?: {
2638
2641
  accountId: string;
2639
2642
  displayName?: string | undefined;
2640
2643
  emailAddress?: string | undefined;
2641
2644
  active?: boolean | undefined;
2642
2645
  } | null | undefined;
2643
- body?: unknown;
2644
2646
  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;
2655
2658
  author?: {
2656
2659
  accountId: string;
2657
2660
  displayName?: string | undefined;
2658
2661
  emailAddress?: string | undefined;
2659
2662
  active?: boolean | undefined;
2660
2663
  } | null | undefined;
2661
- body?: unknown;
2662
2664
  renderedBody?: string | undefined;
2663
- created?: string | undefined;
2664
- updated?: string | undefined;
2665
2665
  }[] | undefined;
2666
2666
  total?: number | undefined;
2667
2667
  }>]>;