@bubblelab/bubble-core 0.1.33 → 0.1.35
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.
- package/dist/bubble-bundle.d.ts +85 -85
- package/dist/bubbles/service-bubble/agi-inc.d.ts +116 -116
- package/dist/bubbles/service-bubble/ai-agent.d.ts +36 -36
- package/dist/bubbles/service-bubble/airtable.d.ts +232 -232
- package/dist/bubbles/service-bubble/apify/apify.d.ts +38 -38
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +50 -50
- package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +56 -56
- package/dist/bubbles/service-bubble/eleven-labs.d.ts +52 -52
- package/dist/bubbles/service-bubble/firecrawl.d.ts +326 -326
- package/dist/bubbles/service-bubble/followupboss.d.ts +332 -332
- package/dist/bubbles/service-bubble/github.d.ts +172 -172
- package/dist/bubbles/service-bubble/gmail.d.ts +632 -632
- package/dist/bubbles/service-bubble/google-calendar.d.ts +232 -232
- package/dist/bubbles/service-bubble/google-drive.d.ts +128 -128
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +54 -54
- package/dist/bubbles/service-bubble/hello-world.d.ts +4 -4
- package/dist/bubbles/service-bubble/http.d.ts +20 -20
- package/dist/bubbles/service-bubble/insforge-db.d.ts +18 -18
- package/dist/bubbles/service-bubble/jira/jira.d.ts +513 -513
- package/dist/bubbles/service-bubble/jira/jira.schema.d.ts +670 -670
- package/dist/bubbles/service-bubble/notion/notion.d.ts +204 -204
- package/dist/bubbles/service-bubble/postgresql.d.ts +18 -18
- package/dist/bubbles/service-bubble/resend.d.ts +20 -20
- package/dist/bubbles/service-bubble/slack/slack.d.ts +414 -414
- package/dist/bubbles/service-bubble/storage.d.ts +60 -60
- package/dist/bubbles/service-bubble/telegram.d.ts +122 -122
- package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +33 -33
- package/dist/bubbles/tool-bubble/bubbleflow-validation-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/chart-js-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/code-edit-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/get-bubble-details-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/get-trigger-detail-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/google-maps-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/instagram-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +424 -424
- package/dist/bubbles/tool-bubble/list-bubbles-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/people-search-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +16 -16
- package/dist/bubbles/tool-bubble/research-agent-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +16 -16
- package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +104 -104
- package/dist/bubbles/tool-bubble/tool-template.d.ts +4 -4
- package/dist/bubbles/tool-bubble/twitter-tool.d.ts +192 -192
- package/dist/bubbles/tool-bubble/web-crawl-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/web-extract-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/web-scrape-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/web-search-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/youtube-tool.d.ts +38 -38
- package/dist/bubbles/workflow-bubble/database-analyzer.workflow.d.ts +4 -4
- package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +16 -16
- package/dist/bubbles/workflow-bubble/parse-document.workflow.d.ts +4 -4
- package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +68 -68
- package/dist/bubbles/workflow-bubble/pdf-ocr.workflow.d.ts +8 -8
- package/dist/bubbles/workflow-bubble/slack-data-assistant.workflow.d.ts +8 -8
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +60 -60
- package/dist/bubbles/workflow-bubble/slack-notifier.workflow.d.ts +4 -4
- package/dist/bubbles.json +1 -1
- package/package.json +2 -2
|
@@ -48,18 +48,18 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
48
48
|
credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>;
|
|
49
49
|
}, "strip", import("zod").ZodTypeAny, {
|
|
50
50
|
operation: "search";
|
|
51
|
-
jql: string;
|
|
52
51
|
limit: number;
|
|
53
52
|
offset: number;
|
|
54
|
-
|
|
53
|
+
jql: string;
|
|
55
54
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
55
|
+
fields?: string[] | undefined;
|
|
56
56
|
}, {
|
|
57
57
|
operation: "search";
|
|
58
58
|
jql: string;
|
|
59
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
59
60
|
fields?: string[] | undefined;
|
|
60
61
|
limit?: number | undefined;
|
|
61
62
|
offset?: number | undefined;
|
|
62
|
-
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
63
63
|
}>, import("zod").ZodObject<{
|
|
64
64
|
operation: import("zod").ZodLiteral<"get">;
|
|
65
65
|
key: import("zod").ZodString;
|
|
@@ -69,15 +69,15 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
69
69
|
}, "strip", import("zod").ZodTypeAny, {
|
|
70
70
|
key: string;
|
|
71
71
|
operation: "get";
|
|
72
|
-
fields?: string[] | undefined;
|
|
73
72
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
74
|
-
|
|
73
|
+
fields?: string[] | undefined;
|
|
74
|
+
expand?: ("comments" | "changelog" | "transitions")[] | undefined;
|
|
75
75
|
}, {
|
|
76
76
|
key: string;
|
|
77
77
|
operation: "get";
|
|
78
|
-
fields?: string[] | undefined;
|
|
79
78
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
80
|
-
|
|
79
|
+
fields?: string[] | undefined;
|
|
80
|
+
expand?: ("comments" | "changelog" | "transitions")[] | undefined;
|
|
81
81
|
}>, import("zod").ZodObject<{
|
|
82
82
|
operation: import("zod").ZodLiteral<"create">;
|
|
83
83
|
project: import("zod").ZodString;
|
|
@@ -93,26 +93,26 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
93
93
|
}, "strip", import("zod").ZodTypeAny, {
|
|
94
94
|
type: string;
|
|
95
95
|
summary: string;
|
|
96
|
-
project: string;
|
|
97
96
|
operation: "create";
|
|
97
|
+
project: string;
|
|
98
98
|
description?: string | undefined;
|
|
99
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
99
100
|
priority?: string | undefined;
|
|
100
|
-
assignee?: string | undefined;
|
|
101
|
-
labels?: string[] | undefined;
|
|
102
101
|
parent?: string | undefined;
|
|
103
|
-
|
|
102
|
+
labels?: string[] | undefined;
|
|
103
|
+
assignee?: string | undefined;
|
|
104
104
|
due_date?: string | undefined;
|
|
105
105
|
}, {
|
|
106
106
|
summary: string;
|
|
107
|
-
project: string;
|
|
108
107
|
operation: "create";
|
|
108
|
+
project: string;
|
|
109
109
|
type?: string | undefined;
|
|
110
110
|
description?: string | undefined;
|
|
111
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
111
112
|
priority?: string | undefined;
|
|
112
|
-
assignee?: string | undefined;
|
|
113
|
-
labels?: string[] | undefined;
|
|
114
113
|
parent?: string | undefined;
|
|
115
|
-
|
|
114
|
+
labels?: string[] | undefined;
|
|
115
|
+
assignee?: string | undefined;
|
|
116
116
|
due_date?: string | undefined;
|
|
117
117
|
}>, import("zod").ZodObject<{
|
|
118
118
|
operation: import("zod").ZodLiteral<"update">;
|
|
@@ -127,12 +127,12 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
127
127
|
set: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
|
|
128
128
|
}, "strip", import("zod").ZodTypeAny, {
|
|
129
129
|
set?: string[] | undefined;
|
|
130
|
-
add?: string[] | undefined;
|
|
131
130
|
remove?: string[] | undefined;
|
|
131
|
+
add?: string[] | undefined;
|
|
132
132
|
}, {
|
|
133
133
|
set?: string[] | undefined;
|
|
134
|
-
add?: string[] | undefined;
|
|
135
134
|
remove?: string[] | undefined;
|
|
135
|
+
add?: string[] | undefined;
|
|
136
136
|
}>>;
|
|
137
137
|
due_date: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
138
138
|
comment: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -141,31 +141,31 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
141
141
|
key: string;
|
|
142
142
|
operation: "update";
|
|
143
143
|
description?: string | undefined;
|
|
144
|
-
|
|
144
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
145
145
|
priority?: string | undefined;
|
|
146
|
-
|
|
146
|
+
summary?: string | undefined;
|
|
147
147
|
labels?: {
|
|
148
148
|
set?: string[] | undefined;
|
|
149
|
-
add?: string[] | undefined;
|
|
150
149
|
remove?: string[] | undefined;
|
|
150
|
+
add?: string[] | undefined;
|
|
151
151
|
} | undefined;
|
|
152
152
|
comment?: string | undefined;
|
|
153
|
-
|
|
153
|
+
assignee?: string | null | undefined;
|
|
154
154
|
due_date?: string | null | undefined;
|
|
155
155
|
}, {
|
|
156
156
|
key: string;
|
|
157
157
|
operation: "update";
|
|
158
158
|
description?: string | undefined;
|
|
159
|
-
|
|
159
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
160
160
|
priority?: string | undefined;
|
|
161
|
-
|
|
161
|
+
summary?: string | undefined;
|
|
162
162
|
labels?: {
|
|
163
163
|
set?: string[] | undefined;
|
|
164
|
-
add?: string[] | undefined;
|
|
165
164
|
remove?: string[] | undefined;
|
|
165
|
+
add?: string[] | undefined;
|
|
166
166
|
} | undefined;
|
|
167
167
|
comment?: string | undefined;
|
|
168
|
-
|
|
168
|
+
assignee?: string | null | undefined;
|
|
169
169
|
due_date?: string | null | undefined;
|
|
170
170
|
}>, import("zod").ZodObject<{
|
|
171
171
|
operation: import("zod").ZodLiteral<"transition">;
|
|
@@ -179,16 +179,16 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
179
179
|
key: string;
|
|
180
180
|
operation: "transition";
|
|
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
187
|
key: string;
|
|
188
188
|
operation: "transition";
|
|
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<{
|
|
@@ -215,20 +215,20 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
215
215
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
216
216
|
}, {
|
|
217
217
|
operation: "list_projects";
|
|
218
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
218
219
|
limit?: number | undefined;
|
|
219
220
|
offset?: number | undefined;
|
|
220
|
-
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
221
221
|
}>, import("zod").ZodObject<{
|
|
222
222
|
operation: import("zod").ZodLiteral<"list_issue_types">;
|
|
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">;
|
|
@@ -237,13 +237,13 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
237
237
|
credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>;
|
|
238
238
|
}, "strip", import("zod").ZodTypeAny, {
|
|
239
239
|
key: string;
|
|
240
|
-
body: string;
|
|
241
240
|
operation: "add_comment";
|
|
241
|
+
body: string;
|
|
242
242
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
243
243
|
}, {
|
|
244
244
|
key: string;
|
|
245
|
-
body: string;
|
|
246
245
|
operation: "add_comment";
|
|
246
|
+
body: string;
|
|
247
247
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
248
248
|
}>, import("zod").ZodObject<{
|
|
249
249
|
operation: import("zod").ZodLiteral<"get_comments">;
|
|
@@ -260,9 +260,9 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
260
260
|
}, {
|
|
261
261
|
key: string;
|
|
262
262
|
operation: "get_comments";
|
|
263
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
263
264
|
limit?: number | undefined;
|
|
264
265
|
offset?: number | undefined;
|
|
265
|
-
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
266
266
|
}>]>;
|
|
267
267
|
static readonly resultSchema: import("zod").ZodDiscriminatedUnion<"operation", [import("zod").ZodObject<{
|
|
268
268
|
operation: import("zod").ZodLiteral<"search">;
|
|
@@ -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,12 +365,12 @@ 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;
|
|
369
|
+
id: string;
|
|
370
370
|
key: string;
|
|
371
371
|
}, {
|
|
372
|
-
id: string;
|
|
373
372
|
name: string;
|
|
373
|
+
id: string;
|
|
374
374
|
key: string;
|
|
375
375
|
}>>;
|
|
376
376
|
labels: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
|
|
@@ -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
|
+
created?: string | undefined;
|
|
416
|
+
updated?: string | undefined;
|
|
417
|
+
body?: 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?: string | undefined;
|
|
422
424
|
renderedBody?: string | undefined;
|
|
423
|
-
created?: string | undefined;
|
|
424
|
-
updated?: string | undefined;
|
|
425
425
|
}, {
|
|
426
426
|
id: string;
|
|
427
|
+
created?: string | undefined;
|
|
428
|
+
updated?: string | undefined;
|
|
429
|
+
body?: 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?: string | undefined;
|
|
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
|
+
created?: string | undefined;
|
|
443
|
+
updated?: string | undefined;
|
|
444
|
+
body?: 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?: string | undefined;
|
|
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
|
+
created?: string | undefined;
|
|
458
|
+
updated?: string | undefined;
|
|
459
|
+
body?: 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?: string | undefined;
|
|
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,12 +561,12 @@ 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;
|
|
565
|
+
id: string;
|
|
566
566
|
key: string;
|
|
567
567
|
}, {
|
|
568
|
-
id: string;
|
|
569
568
|
name: string;
|
|
569
|
+
id: string;
|
|
570
570
|
key: string;
|
|
571
571
|
}>>;
|
|
572
572
|
labels: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
|
|
@@ -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
|
+
created?: string | undefined;
|
|
612
|
+
updated?: string | undefined;
|
|
613
|
+
body?: 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?: string | undefined;
|
|
618
620
|
renderedBody?: string | undefined;
|
|
619
|
-
created?: string | undefined;
|
|
620
|
-
updated?: string | undefined;
|
|
621
621
|
}, {
|
|
622
622
|
id: string;
|
|
623
|
+
created?: string | undefined;
|
|
624
|
+
updated?: string | undefined;
|
|
625
|
+
body?: 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?: string | undefined;
|
|
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
|
+
created?: string | undefined;
|
|
639
|
+
updated?: string | undefined;
|
|
640
|
+
body?: 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?: string | undefined;
|
|
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
|
+
created?: string | undefined;
|
|
654
|
+
updated?: string | undefined;
|
|
655
|
+
body?: 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?: string | undefined;
|
|
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,12 +757,12 @@ 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;
|
|
761
|
+
id: string;
|
|
762
762
|
key: string;
|
|
763
763
|
}, {
|
|
764
|
-
id: string;
|
|
765
764
|
name: string;
|
|
765
|
+
id: string;
|
|
766
766
|
key: string;
|
|
767
767
|
}>>;
|
|
768
768
|
labels: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
|
|
@@ -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
|
+
created?: string | undefined;
|
|
808
|
+
updated?: string | undefined;
|
|
809
|
+
body?: 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?: string | undefined;
|
|
814
816
|
renderedBody?: string | undefined;
|
|
815
|
-
created?: string | undefined;
|
|
816
|
-
updated?: string | undefined;
|
|
817
817
|
}, {
|
|
818
818
|
id: string;
|
|
819
|
+
created?: string | undefined;
|
|
820
|
+
updated?: string | undefined;
|
|
821
|
+
body?: 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?: string | undefined;
|
|
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
|
+
created?: string | undefined;
|
|
835
|
+
updated?: string | undefined;
|
|
836
|
+
body?: 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?: string | undefined;
|
|
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
|
+
created?: string | undefined;
|
|
850
|
+
updated?: string | undefined;
|
|
851
|
+
body?: 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?: string | undefined;
|
|
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;
|
|
@@ -917,24 +917,44 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
917
917
|
changelog: import("zod").ZodOptional<import("zod").ZodUnknown>;
|
|
918
918
|
}, "strip", import("zod").ZodTypeAny, {
|
|
919
919
|
id: string;
|
|
920
|
-
key: string;
|
|
921
920
|
fields: {
|
|
922
921
|
description?: unknown;
|
|
923
922
|
status?: {
|
|
924
|
-
id: string;
|
|
925
923
|
name: string;
|
|
924
|
+
id: string;
|
|
926
925
|
statusCategory?: {
|
|
927
926
|
name: string;
|
|
928
927
|
key: string;
|
|
929
928
|
} | undefined;
|
|
930
929
|
} | undefined;
|
|
931
|
-
created?: string | undefined;
|
|
932
|
-
updated?: string | undefined;
|
|
933
|
-
summary?: string | undefined;
|
|
934
930
|
priority?: {
|
|
935
|
-
id: string;
|
|
936
931
|
name: string;
|
|
932
|
+
id: string;
|
|
937
933
|
} | null | undefined;
|
|
934
|
+
summary?: string | undefined;
|
|
935
|
+
parent?: {
|
|
936
|
+
id: string;
|
|
937
|
+
key: string;
|
|
938
|
+
} | undefined;
|
|
939
|
+
created?: string | undefined;
|
|
940
|
+
updated?: string | undefined;
|
|
941
|
+
labels?: string[] | undefined;
|
|
942
|
+
comment?: {
|
|
943
|
+
comments?: {
|
|
944
|
+
id: string;
|
|
945
|
+
created?: string | undefined;
|
|
946
|
+
updated?: string | undefined;
|
|
947
|
+
body?: string | undefined;
|
|
948
|
+
author?: {
|
|
949
|
+
accountId: string;
|
|
950
|
+
displayName?: string | undefined;
|
|
951
|
+
emailAddress?: string | undefined;
|
|
952
|
+
active?: boolean | undefined;
|
|
953
|
+
} | null | undefined;
|
|
954
|
+
renderedBody?: string | undefined;
|
|
955
|
+
}[] | undefined;
|
|
956
|
+
total?: number | undefined;
|
|
957
|
+
} | undefined;
|
|
938
958
|
assignee?: {
|
|
939
959
|
accountId: string;
|
|
940
960
|
displayName?: string | undefined;
|
|
@@ -948,75 +968,75 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
948
968
|
active?: boolean | undefined;
|
|
949
969
|
} | null | undefined;
|
|
950
970
|
issuetype?: {
|
|
951
|
-
id: string;
|
|
952
971
|
name: string;
|
|
972
|
+
id: string;
|
|
953
973
|
description?: string | undefined;
|
|
954
974
|
subtask?: boolean | undefined;
|
|
955
975
|
} | undefined;
|
|
956
976
|
project?: {
|
|
957
|
-
id: string;
|
|
958
977
|
name: string;
|
|
959
|
-
key: string;
|
|
960
|
-
} | undefined;
|
|
961
|
-
labels?: string[] | undefined;
|
|
962
|
-
duedate?: string | null | undefined;
|
|
963
|
-
parent?: {
|
|
964
978
|
id: string;
|
|
965
979
|
key: string;
|
|
966
980
|
} | undefined;
|
|
967
|
-
|
|
968
|
-
comments?: {
|
|
969
|
-
id: string;
|
|
970
|
-
author?: {
|
|
971
|
-
accountId: string;
|
|
972
|
-
displayName?: string | undefined;
|
|
973
|
-
emailAddress?: string | undefined;
|
|
974
|
-
active?: boolean | undefined;
|
|
975
|
-
} | null | undefined;
|
|
976
|
-
body?: string | undefined;
|
|
977
|
-
renderedBody?: string | undefined;
|
|
978
|
-
created?: string | undefined;
|
|
979
|
-
updated?: string | undefined;
|
|
980
|
-
}[] | undefined;
|
|
981
|
-
total?: number | undefined;
|
|
982
|
-
} | undefined;
|
|
981
|
+
duedate?: string | null | undefined;
|
|
983
982
|
} & {
|
|
984
983
|
[k: string]: unknown;
|
|
985
984
|
};
|
|
986
|
-
|
|
985
|
+
key: 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
|
-
|
|
999
|
+
self?: string | undefined;
|
|
1000
1000
|
}, {
|
|
1001
1001
|
id: string;
|
|
1002
|
-
key: string;
|
|
1003
1002
|
fields: {
|
|
1004
1003
|
description?: unknown;
|
|
1005
1004
|
status?: {
|
|
1006
|
-
id: string;
|
|
1007
1005
|
name: string;
|
|
1006
|
+
id: string;
|
|
1008
1007
|
statusCategory?: {
|
|
1009
1008
|
name: string;
|
|
1010
1009
|
key: string;
|
|
1011
1010
|
} | undefined;
|
|
1012
1011
|
} | undefined;
|
|
1013
|
-
created?: string | undefined;
|
|
1014
|
-
updated?: string | undefined;
|
|
1015
|
-
summary?: string | undefined;
|
|
1016
1012
|
priority?: {
|
|
1017
|
-
id: string;
|
|
1018
1013
|
name: string;
|
|
1014
|
+
id: string;
|
|
1019
1015
|
} | null | undefined;
|
|
1016
|
+
summary?: string | undefined;
|
|
1017
|
+
parent?: {
|
|
1018
|
+
id: string;
|
|
1019
|
+
key: string;
|
|
1020
|
+
} | undefined;
|
|
1021
|
+
created?: string | undefined;
|
|
1022
|
+
updated?: string | undefined;
|
|
1023
|
+
labels?: string[] | undefined;
|
|
1024
|
+
comment?: {
|
|
1025
|
+
comments?: {
|
|
1026
|
+
id: string;
|
|
1027
|
+
created?: string | undefined;
|
|
1028
|
+
updated?: string | undefined;
|
|
1029
|
+
body?: string | undefined;
|
|
1030
|
+
author?: {
|
|
1031
|
+
accountId: string;
|
|
1032
|
+
displayName?: string | undefined;
|
|
1033
|
+
emailAddress?: string | undefined;
|
|
1034
|
+
active?: boolean | undefined;
|
|
1035
|
+
} | null | undefined;
|
|
1036
|
+
renderedBody?: string | undefined;
|
|
1037
|
+
}[] | undefined;
|
|
1038
|
+
total?: number | undefined;
|
|
1039
|
+
} | undefined;
|
|
1020
1040
|
assignee?: {
|
|
1021
1041
|
accountId: string;
|
|
1022
1042
|
displayName?: string | undefined;
|
|
@@ -1030,84 +1050,84 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
1030
1050
|
active?: boolean | undefined;
|
|
1031
1051
|
} | null | undefined;
|
|
1032
1052
|
issuetype?: {
|
|
1033
|
-
id: string;
|
|
1034
1053
|
name: string;
|
|
1054
|
+
id: string;
|
|
1035
1055
|
description?: string | undefined;
|
|
1036
1056
|
subtask?: boolean | undefined;
|
|
1037
1057
|
} | undefined;
|
|
1038
1058
|
project?: {
|
|
1039
|
-
id: string;
|
|
1040
1059
|
name: string;
|
|
1041
|
-
key: string;
|
|
1042
|
-
} | undefined;
|
|
1043
|
-
labels?: string[] | undefined;
|
|
1044
|
-
duedate?: string | null | undefined;
|
|
1045
|
-
parent?: {
|
|
1046
1060
|
id: string;
|
|
1047
1061
|
key: string;
|
|
1048
1062
|
} | undefined;
|
|
1049
|
-
|
|
1050
|
-
comments?: {
|
|
1051
|
-
id: string;
|
|
1052
|
-
author?: {
|
|
1053
|
-
accountId: string;
|
|
1054
|
-
displayName?: string | undefined;
|
|
1055
|
-
emailAddress?: string | undefined;
|
|
1056
|
-
active?: boolean | undefined;
|
|
1057
|
-
} | null | undefined;
|
|
1058
|
-
body?: string | undefined;
|
|
1059
|
-
renderedBody?: string | undefined;
|
|
1060
|
-
created?: string | undefined;
|
|
1061
|
-
updated?: string | undefined;
|
|
1062
|
-
}[] | undefined;
|
|
1063
|
-
total?: number | undefined;
|
|
1064
|
-
} | undefined;
|
|
1063
|
+
duedate?: string | null | undefined;
|
|
1065
1064
|
} & {
|
|
1066
1065
|
[k: string]: unknown;
|
|
1067
1066
|
};
|
|
1068
|
-
|
|
1067
|
+
key: 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
|
-
|
|
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>;
|
|
1085
1085
|
limit: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
1086
1086
|
error: import("zod").ZodString;
|
|
1087
1087
|
}, "strip", import("zod").ZodTypeAny, {
|
|
1088
|
-
operation: "search";
|
|
1089
|
-
success: boolean;
|
|
1090
1088
|
error: string;
|
|
1089
|
+
success: boolean;
|
|
1090
|
+
operation: "search";
|
|
1091
1091
|
issues?: {
|
|
1092
1092
|
id: string;
|
|
1093
|
-
key: string;
|
|
1094
1093
|
fields: {
|
|
1095
1094
|
description?: unknown;
|
|
1096
1095
|
status?: {
|
|
1097
|
-
id: string;
|
|
1098
1096
|
name: string;
|
|
1097
|
+
id: string;
|
|
1099
1098
|
statusCategory?: {
|
|
1100
1099
|
name: string;
|
|
1101
1100
|
key: string;
|
|
1102
1101
|
} | undefined;
|
|
1103
1102
|
} | undefined;
|
|
1104
|
-
created?: string | undefined;
|
|
1105
|
-
updated?: string | undefined;
|
|
1106
|
-
summary?: string | undefined;
|
|
1107
1103
|
priority?: {
|
|
1108
|
-
id: string;
|
|
1109
1104
|
name: string;
|
|
1105
|
+
id: string;
|
|
1110
1106
|
} | null | undefined;
|
|
1107
|
+
summary?: string | undefined;
|
|
1108
|
+
parent?: {
|
|
1109
|
+
id: string;
|
|
1110
|
+
key: string;
|
|
1111
|
+
} | undefined;
|
|
1112
|
+
created?: string | undefined;
|
|
1113
|
+
updated?: string | undefined;
|
|
1114
|
+
labels?: string[] | undefined;
|
|
1115
|
+
comment?: {
|
|
1116
|
+
comments?: {
|
|
1117
|
+
id: string;
|
|
1118
|
+
created?: string | undefined;
|
|
1119
|
+
updated?: string | undefined;
|
|
1120
|
+
body?: string | undefined;
|
|
1121
|
+
author?: {
|
|
1122
|
+
accountId: string;
|
|
1123
|
+
displayName?: string | undefined;
|
|
1124
|
+
emailAddress?: string | undefined;
|
|
1125
|
+
active?: boolean | undefined;
|
|
1126
|
+
} | null | undefined;
|
|
1127
|
+
renderedBody?: string | undefined;
|
|
1128
|
+
}[] | undefined;
|
|
1129
|
+
total?: number | undefined;
|
|
1130
|
+
} | undefined;
|
|
1111
1131
|
assignee?: {
|
|
1112
1132
|
accountId: string;
|
|
1113
1133
|
displayName?: string | undefined;
|
|
@@ -1121,83 +1141,83 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
1121
1141
|
active?: boolean | undefined;
|
|
1122
1142
|
} | null | undefined;
|
|
1123
1143
|
issuetype?: {
|
|
1124
|
-
id: string;
|
|
1125
1144
|
name: string;
|
|
1145
|
+
id: string;
|
|
1126
1146
|
description?: string | undefined;
|
|
1127
1147
|
subtask?: boolean | undefined;
|
|
1128
1148
|
} | undefined;
|
|
1129
1149
|
project?: {
|
|
1130
|
-
id: string;
|
|
1131
1150
|
name: string;
|
|
1132
|
-
key: string;
|
|
1133
|
-
} | undefined;
|
|
1134
|
-
labels?: string[] | undefined;
|
|
1135
|
-
duedate?: string | null | undefined;
|
|
1136
|
-
parent?: {
|
|
1137
1151
|
id: string;
|
|
1138
1152
|
key: string;
|
|
1139
1153
|
} | undefined;
|
|
1140
|
-
|
|
1141
|
-
comments?: {
|
|
1142
|
-
id: string;
|
|
1143
|
-
author?: {
|
|
1144
|
-
accountId: string;
|
|
1145
|
-
displayName?: string | undefined;
|
|
1146
|
-
emailAddress?: string | undefined;
|
|
1147
|
-
active?: boolean | undefined;
|
|
1148
|
-
} | null | undefined;
|
|
1149
|
-
body?: string | undefined;
|
|
1150
|
-
renderedBody?: string | undefined;
|
|
1151
|
-
created?: string | undefined;
|
|
1152
|
-
updated?: string | undefined;
|
|
1153
|
-
}[] | undefined;
|
|
1154
|
-
total?: number | undefined;
|
|
1155
|
-
} | undefined;
|
|
1154
|
+
duedate?: string | null | undefined;
|
|
1156
1155
|
} & {
|
|
1157
1156
|
[k: string]: unknown;
|
|
1158
1157
|
};
|
|
1159
|
-
|
|
1158
|
+
key: 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
|
-
|
|
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
|
-
operation: "search";
|
|
1179
|
-
success: boolean;
|
|
1180
1178
|
error: string;
|
|
1179
|
+
success: boolean;
|
|
1180
|
+
operation: "search";
|
|
1181
1181
|
issues?: {
|
|
1182
1182
|
id: string;
|
|
1183
|
-
key: string;
|
|
1184
1183
|
fields: {
|
|
1185
1184
|
description?: unknown;
|
|
1186
1185
|
status?: {
|
|
1187
|
-
id: string;
|
|
1188
1186
|
name: string;
|
|
1187
|
+
id: string;
|
|
1189
1188
|
statusCategory?: {
|
|
1190
1189
|
name: string;
|
|
1191
1190
|
key: string;
|
|
1192
1191
|
} | undefined;
|
|
1193
1192
|
} | undefined;
|
|
1194
|
-
created?: string | undefined;
|
|
1195
|
-
updated?: string | undefined;
|
|
1196
|
-
summary?: string | undefined;
|
|
1197
1193
|
priority?: {
|
|
1198
|
-
id: string;
|
|
1199
1194
|
name: string;
|
|
1195
|
+
id: string;
|
|
1200
1196
|
} | null | undefined;
|
|
1197
|
+
summary?: string | undefined;
|
|
1198
|
+
parent?: {
|
|
1199
|
+
id: string;
|
|
1200
|
+
key: string;
|
|
1201
|
+
} | undefined;
|
|
1202
|
+
created?: string | undefined;
|
|
1203
|
+
updated?: string | undefined;
|
|
1204
|
+
labels?: string[] | undefined;
|
|
1205
|
+
comment?: {
|
|
1206
|
+
comments?: {
|
|
1207
|
+
id: string;
|
|
1208
|
+
created?: string | undefined;
|
|
1209
|
+
updated?: string | undefined;
|
|
1210
|
+
body?: string | undefined;
|
|
1211
|
+
author?: {
|
|
1212
|
+
accountId: string;
|
|
1213
|
+
displayName?: string | undefined;
|
|
1214
|
+
emailAddress?: string | undefined;
|
|
1215
|
+
active?: boolean | undefined;
|
|
1216
|
+
} | null | undefined;
|
|
1217
|
+
renderedBody?: string | undefined;
|
|
1218
|
+
}[] | undefined;
|
|
1219
|
+
total?: number | undefined;
|
|
1220
|
+
} | undefined;
|
|
1201
1221
|
assignee?: {
|
|
1202
1222
|
accountId: string;
|
|
1203
1223
|
displayName?: string | undefined;
|
|
@@ -1211,59 +1231,39 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
1211
1231
|
active?: boolean | undefined;
|
|
1212
1232
|
} | null | undefined;
|
|
1213
1233
|
issuetype?: {
|
|
1214
|
-
id: string;
|
|
1215
1234
|
name: string;
|
|
1235
|
+
id: string;
|
|
1216
1236
|
description?: string | undefined;
|
|
1217
1237
|
subtask?: boolean | undefined;
|
|
1218
1238
|
} | undefined;
|
|
1219
1239
|
project?: {
|
|
1220
|
-
id: string;
|
|
1221
1240
|
name: string;
|
|
1222
|
-
key: string;
|
|
1223
|
-
} | undefined;
|
|
1224
|
-
labels?: string[] | undefined;
|
|
1225
|
-
duedate?: string | null | undefined;
|
|
1226
|
-
parent?: {
|
|
1227
1241
|
id: string;
|
|
1228
1242
|
key: string;
|
|
1229
1243
|
} | undefined;
|
|
1230
|
-
|
|
1231
|
-
comments?: {
|
|
1232
|
-
id: string;
|
|
1233
|
-
author?: {
|
|
1234
|
-
accountId: string;
|
|
1235
|
-
displayName?: string | undefined;
|
|
1236
|
-
emailAddress?: string | undefined;
|
|
1237
|
-
active?: boolean | undefined;
|
|
1238
|
-
} | null | undefined;
|
|
1239
|
-
body?: string | undefined;
|
|
1240
|
-
renderedBody?: string | undefined;
|
|
1241
|
-
created?: string | undefined;
|
|
1242
|
-
updated?: string | undefined;
|
|
1243
|
-
}[] | undefined;
|
|
1244
|
-
total?: number | undefined;
|
|
1245
|
-
} | undefined;
|
|
1244
|
+
duedate?: string | null | undefined;
|
|
1246
1245
|
} & {
|
|
1247
1246
|
[k: string]: unknown;
|
|
1248
1247
|
};
|
|
1249
|
-
|
|
1248
|
+
key: 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
|
-
|
|
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,12 +1365,12 @@ 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;
|
|
1369
|
+
id: string;
|
|
1370
1370
|
key: string;
|
|
1371
1371
|
}, {
|
|
1372
|
-
id: string;
|
|
1373
1372
|
name: string;
|
|
1373
|
+
id: string;
|
|
1374
1374
|
key: string;
|
|
1375
1375
|
}>>;
|
|
1376
1376
|
labels: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
|
|
@@ -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
|
+
created?: string | undefined;
|
|
1416
|
+
updated?: string | undefined;
|
|
1417
|
+
body?: 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?: string | undefined;
|
|
1422
1424
|
renderedBody?: string | undefined;
|
|
1423
|
-
created?: string | undefined;
|
|
1424
|
-
updated?: string | undefined;
|
|
1425
1425
|
}, {
|
|
1426
1426
|
id: string;
|
|
1427
|
+
created?: string | undefined;
|
|
1428
|
+
updated?: string | undefined;
|
|
1429
|
+
body?: 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?: string | undefined;
|
|
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
|
+
created?: string | undefined;
|
|
1443
|
+
updated?: string | undefined;
|
|
1444
|
+
body?: 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?: string | undefined;
|
|
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
|
+
created?: string | undefined;
|
|
1458
|
+
updated?: string | undefined;
|
|
1459
|
+
body?: 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?: string | undefined;
|
|
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,12 +1561,12 @@ 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;
|
|
1565
|
+
id: string;
|
|
1566
1566
|
key: string;
|
|
1567
1567
|
}, {
|
|
1568
|
-
id: string;
|
|
1569
1568
|
name: string;
|
|
1569
|
+
id: string;
|
|
1570
1570
|
key: string;
|
|
1571
1571
|
}>>;
|
|
1572
1572
|
labels: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
|
|
@@ -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
|
+
created?: string | undefined;
|
|
1612
|
+
updated?: string | undefined;
|
|
1613
|
+
body?: 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?: string | undefined;
|
|
1618
1620
|
renderedBody?: string | undefined;
|
|
1619
|
-
created?: string | undefined;
|
|
1620
|
-
updated?: string | undefined;
|
|
1621
1621
|
}, {
|
|
1622
1622
|
id: string;
|
|
1623
|
+
created?: string | undefined;
|
|
1624
|
+
updated?: string | undefined;
|
|
1625
|
+
body?: 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?: string | undefined;
|
|
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
|
+
created?: string | undefined;
|
|
1639
|
+
updated?: string | undefined;
|
|
1640
|
+
body?: 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?: string | undefined;
|
|
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
|
+
created?: string | undefined;
|
|
1654
|
+
updated?: string | undefined;
|
|
1655
|
+
body?: 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?: string | undefined;
|
|
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,12 +1757,12 @@ 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;
|
|
1761
|
+
id: string;
|
|
1762
1762
|
key: string;
|
|
1763
1763
|
}, {
|
|
1764
|
-
id: string;
|
|
1765
1764
|
name: string;
|
|
1765
|
+
id: string;
|
|
1766
1766
|
key: string;
|
|
1767
1767
|
}>>;
|
|
1768
1768
|
labels: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
|
|
@@ -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
|
+
created?: string | undefined;
|
|
1808
|
+
updated?: string | undefined;
|
|
1809
|
+
body?: 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?: string | undefined;
|
|
1814
1816
|
renderedBody?: string | undefined;
|
|
1815
|
-
created?: string | undefined;
|
|
1816
|
-
updated?: string | undefined;
|
|
1817
1817
|
}, {
|
|
1818
1818
|
id: string;
|
|
1819
|
+
created?: string | undefined;
|
|
1820
|
+
updated?: string | undefined;
|
|
1821
|
+
body?: 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?: string | undefined;
|
|
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
|
+
created?: string | undefined;
|
|
1835
|
+
updated?: string | undefined;
|
|
1836
|
+
body?: 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?: string | undefined;
|
|
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
|
+
created?: string | undefined;
|
|
1850
|
+
updated?: string | undefined;
|
|
1851
|
+
body?: 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?: string | undefined;
|
|
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;
|
|
@@ -1917,24 +1917,44 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
1917
1917
|
changelog: import("zod").ZodOptional<import("zod").ZodUnknown>;
|
|
1918
1918
|
}, "strip", import("zod").ZodTypeAny, {
|
|
1919
1919
|
id: string;
|
|
1920
|
-
key: string;
|
|
1921
1920
|
fields: {
|
|
1922
1921
|
description?: unknown;
|
|
1923
1922
|
status?: {
|
|
1924
|
-
id: string;
|
|
1925
1923
|
name: string;
|
|
1924
|
+
id: string;
|
|
1926
1925
|
statusCategory?: {
|
|
1927
1926
|
name: string;
|
|
1928
1927
|
key: string;
|
|
1929
1928
|
} | undefined;
|
|
1930
1929
|
} | undefined;
|
|
1931
|
-
created?: string | undefined;
|
|
1932
|
-
updated?: string | undefined;
|
|
1933
|
-
summary?: string | undefined;
|
|
1934
1930
|
priority?: {
|
|
1935
|
-
id: string;
|
|
1936
1931
|
name: string;
|
|
1932
|
+
id: string;
|
|
1937
1933
|
} | null | undefined;
|
|
1934
|
+
summary?: string | undefined;
|
|
1935
|
+
parent?: {
|
|
1936
|
+
id: string;
|
|
1937
|
+
key: string;
|
|
1938
|
+
} | undefined;
|
|
1939
|
+
created?: string | undefined;
|
|
1940
|
+
updated?: string | undefined;
|
|
1941
|
+
labels?: string[] | undefined;
|
|
1942
|
+
comment?: {
|
|
1943
|
+
comments?: {
|
|
1944
|
+
id: string;
|
|
1945
|
+
created?: string | undefined;
|
|
1946
|
+
updated?: string | undefined;
|
|
1947
|
+
body?: string | undefined;
|
|
1948
|
+
author?: {
|
|
1949
|
+
accountId: string;
|
|
1950
|
+
displayName?: string | undefined;
|
|
1951
|
+
emailAddress?: string | undefined;
|
|
1952
|
+
active?: boolean | undefined;
|
|
1953
|
+
} | null | undefined;
|
|
1954
|
+
renderedBody?: string | undefined;
|
|
1955
|
+
}[] | undefined;
|
|
1956
|
+
total?: number | undefined;
|
|
1957
|
+
} | undefined;
|
|
1938
1958
|
assignee?: {
|
|
1939
1959
|
accountId: string;
|
|
1940
1960
|
displayName?: string | undefined;
|
|
@@ -1948,75 +1968,75 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
1948
1968
|
active?: boolean | undefined;
|
|
1949
1969
|
} | null | undefined;
|
|
1950
1970
|
issuetype?: {
|
|
1951
|
-
id: string;
|
|
1952
1971
|
name: string;
|
|
1972
|
+
id: string;
|
|
1953
1973
|
description?: string | undefined;
|
|
1954
1974
|
subtask?: boolean | undefined;
|
|
1955
1975
|
} | undefined;
|
|
1956
1976
|
project?: {
|
|
1957
|
-
id: string;
|
|
1958
1977
|
name: string;
|
|
1959
|
-
key: string;
|
|
1960
|
-
} | undefined;
|
|
1961
|
-
labels?: string[] | undefined;
|
|
1962
|
-
duedate?: string | null | undefined;
|
|
1963
|
-
parent?: {
|
|
1964
1978
|
id: string;
|
|
1965
1979
|
key: string;
|
|
1966
1980
|
} | undefined;
|
|
1967
|
-
|
|
1968
|
-
comments?: {
|
|
1969
|
-
id: string;
|
|
1970
|
-
author?: {
|
|
1971
|
-
accountId: string;
|
|
1972
|
-
displayName?: string | undefined;
|
|
1973
|
-
emailAddress?: string | undefined;
|
|
1974
|
-
active?: boolean | undefined;
|
|
1975
|
-
} | null | undefined;
|
|
1976
|
-
body?: string | undefined;
|
|
1977
|
-
renderedBody?: string | undefined;
|
|
1978
|
-
created?: string | undefined;
|
|
1979
|
-
updated?: string | undefined;
|
|
1980
|
-
}[] | undefined;
|
|
1981
|
-
total?: number | undefined;
|
|
1982
|
-
} | undefined;
|
|
1981
|
+
duedate?: string | null | undefined;
|
|
1983
1982
|
} & {
|
|
1984
1983
|
[k: string]: unknown;
|
|
1985
1984
|
};
|
|
1986
|
-
|
|
1985
|
+
key: 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
|
-
|
|
1999
|
+
self?: string | undefined;
|
|
2000
2000
|
}, {
|
|
2001
2001
|
id: string;
|
|
2002
|
-
key: string;
|
|
2003
2002
|
fields: {
|
|
2004
2003
|
description?: unknown;
|
|
2005
2004
|
status?: {
|
|
2006
|
-
id: string;
|
|
2007
2005
|
name: string;
|
|
2006
|
+
id: string;
|
|
2008
2007
|
statusCategory?: {
|
|
2009
2008
|
name: string;
|
|
2010
2009
|
key: string;
|
|
2011
2010
|
} | undefined;
|
|
2012
2011
|
} | undefined;
|
|
2013
|
-
created?: string | undefined;
|
|
2014
|
-
updated?: string | undefined;
|
|
2015
|
-
summary?: string | undefined;
|
|
2016
2012
|
priority?: {
|
|
2017
|
-
id: string;
|
|
2018
2013
|
name: string;
|
|
2014
|
+
id: string;
|
|
2019
2015
|
} | null | undefined;
|
|
2016
|
+
summary?: string | undefined;
|
|
2017
|
+
parent?: {
|
|
2018
|
+
id: string;
|
|
2019
|
+
key: string;
|
|
2020
|
+
} | undefined;
|
|
2021
|
+
created?: string | undefined;
|
|
2022
|
+
updated?: string | undefined;
|
|
2023
|
+
labels?: string[] | undefined;
|
|
2024
|
+
comment?: {
|
|
2025
|
+
comments?: {
|
|
2026
|
+
id: string;
|
|
2027
|
+
created?: string | undefined;
|
|
2028
|
+
updated?: string | undefined;
|
|
2029
|
+
body?: string | undefined;
|
|
2030
|
+
author?: {
|
|
2031
|
+
accountId: string;
|
|
2032
|
+
displayName?: string | undefined;
|
|
2033
|
+
emailAddress?: string | undefined;
|
|
2034
|
+
active?: boolean | undefined;
|
|
2035
|
+
} | null | undefined;
|
|
2036
|
+
renderedBody?: string | undefined;
|
|
2037
|
+
}[] | undefined;
|
|
2038
|
+
total?: number | undefined;
|
|
2039
|
+
} | undefined;
|
|
2020
2040
|
assignee?: {
|
|
2021
2041
|
accountId: string;
|
|
2022
2042
|
displayName?: string | undefined;
|
|
@@ -2030,81 +2050,81 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
2030
2050
|
active?: boolean | undefined;
|
|
2031
2051
|
} | null | undefined;
|
|
2032
2052
|
issuetype?: {
|
|
2033
|
-
id: string;
|
|
2034
2053
|
name: string;
|
|
2054
|
+
id: string;
|
|
2035
2055
|
description?: string | undefined;
|
|
2036
2056
|
subtask?: boolean | undefined;
|
|
2037
2057
|
} | undefined;
|
|
2038
2058
|
project?: {
|
|
2039
|
-
id: string;
|
|
2040
2059
|
name: string;
|
|
2041
|
-
key: string;
|
|
2042
|
-
} | undefined;
|
|
2043
|
-
labels?: string[] | undefined;
|
|
2044
|
-
duedate?: string | null | undefined;
|
|
2045
|
-
parent?: {
|
|
2046
2060
|
id: string;
|
|
2047
2061
|
key: string;
|
|
2048
2062
|
} | undefined;
|
|
2049
|
-
|
|
2050
|
-
comments?: {
|
|
2051
|
-
id: string;
|
|
2052
|
-
author?: {
|
|
2053
|
-
accountId: string;
|
|
2054
|
-
displayName?: string | undefined;
|
|
2055
|
-
emailAddress?: string | undefined;
|
|
2056
|
-
active?: boolean | undefined;
|
|
2057
|
-
} | null | undefined;
|
|
2058
|
-
body?: string | undefined;
|
|
2059
|
-
renderedBody?: string | undefined;
|
|
2060
|
-
created?: string | undefined;
|
|
2061
|
-
updated?: string | undefined;
|
|
2062
|
-
}[] | undefined;
|
|
2063
|
-
total?: number | undefined;
|
|
2064
|
-
} | undefined;
|
|
2063
|
+
duedate?: string | null | undefined;
|
|
2065
2064
|
} & {
|
|
2066
2065
|
[k: string]: unknown;
|
|
2067
2066
|
};
|
|
2068
|
-
|
|
2067
|
+
key: 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
|
-
|
|
2081
|
+
self?: string | undefined;
|
|
2082
2082
|
}>>;
|
|
2083
2083
|
error: import("zod").ZodString;
|
|
2084
2084
|
}, "strip", import("zod").ZodTypeAny, {
|
|
2085
|
-
operation: "get";
|
|
2086
|
-
success: boolean;
|
|
2087
2085
|
error: string;
|
|
2086
|
+
success: boolean;
|
|
2087
|
+
operation: "get";
|
|
2088
2088
|
issue?: {
|
|
2089
2089
|
id: string;
|
|
2090
|
-
key: string;
|
|
2091
2090
|
fields: {
|
|
2092
2091
|
description?: unknown;
|
|
2093
2092
|
status?: {
|
|
2094
|
-
id: string;
|
|
2095
2093
|
name: string;
|
|
2094
|
+
id: string;
|
|
2096
2095
|
statusCategory?: {
|
|
2097
2096
|
name: string;
|
|
2098
2097
|
key: string;
|
|
2099
2098
|
} | undefined;
|
|
2100
2099
|
} | undefined;
|
|
2101
|
-
created?: string | undefined;
|
|
2102
|
-
updated?: string | undefined;
|
|
2103
|
-
summary?: string | undefined;
|
|
2104
2100
|
priority?: {
|
|
2105
|
-
id: string;
|
|
2106
2101
|
name: string;
|
|
2102
|
+
id: string;
|
|
2107
2103
|
} | null | undefined;
|
|
2104
|
+
summary?: string | undefined;
|
|
2105
|
+
parent?: {
|
|
2106
|
+
id: string;
|
|
2107
|
+
key: string;
|
|
2108
|
+
} | undefined;
|
|
2109
|
+
created?: string | undefined;
|
|
2110
|
+
updated?: string | undefined;
|
|
2111
|
+
labels?: string[] | undefined;
|
|
2112
|
+
comment?: {
|
|
2113
|
+
comments?: {
|
|
2114
|
+
id: string;
|
|
2115
|
+
created?: string | undefined;
|
|
2116
|
+
updated?: string | undefined;
|
|
2117
|
+
body?: string | undefined;
|
|
2118
|
+
author?: {
|
|
2119
|
+
accountId: string;
|
|
2120
|
+
displayName?: string | undefined;
|
|
2121
|
+
emailAddress?: string | undefined;
|
|
2122
|
+
active?: boolean | undefined;
|
|
2123
|
+
} | null | undefined;
|
|
2124
|
+
renderedBody?: string | undefined;
|
|
2125
|
+
}[] | undefined;
|
|
2126
|
+
total?: number | undefined;
|
|
2127
|
+
} | undefined;
|
|
2108
2128
|
assignee?: {
|
|
2109
2129
|
accountId: string;
|
|
2110
2130
|
displayName?: string | undefined;
|
|
@@ -2118,80 +2138,80 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
2118
2138
|
active?: boolean | undefined;
|
|
2119
2139
|
} | null | undefined;
|
|
2120
2140
|
issuetype?: {
|
|
2121
|
-
id: string;
|
|
2122
2141
|
name: string;
|
|
2142
|
+
id: string;
|
|
2123
2143
|
description?: string | undefined;
|
|
2124
2144
|
subtask?: boolean | undefined;
|
|
2125
2145
|
} | undefined;
|
|
2126
2146
|
project?: {
|
|
2127
|
-
id: string;
|
|
2128
2147
|
name: string;
|
|
2129
|
-
key: string;
|
|
2130
|
-
} | undefined;
|
|
2131
|
-
labels?: string[] | undefined;
|
|
2132
|
-
duedate?: string | null | undefined;
|
|
2133
|
-
parent?: {
|
|
2134
2148
|
id: string;
|
|
2135
2149
|
key: string;
|
|
2136
2150
|
} | undefined;
|
|
2137
|
-
|
|
2138
|
-
comments?: {
|
|
2139
|
-
id: string;
|
|
2140
|
-
author?: {
|
|
2141
|
-
accountId: string;
|
|
2142
|
-
displayName?: string | undefined;
|
|
2143
|
-
emailAddress?: string | undefined;
|
|
2144
|
-
active?: boolean | undefined;
|
|
2145
|
-
} | null | undefined;
|
|
2146
|
-
body?: string | undefined;
|
|
2147
|
-
renderedBody?: string | undefined;
|
|
2148
|
-
created?: string | undefined;
|
|
2149
|
-
updated?: string | undefined;
|
|
2150
|
-
}[] | undefined;
|
|
2151
|
-
total?: number | undefined;
|
|
2152
|
-
} | undefined;
|
|
2151
|
+
duedate?: string | null | undefined;
|
|
2153
2152
|
} & {
|
|
2154
2153
|
[k: string]: unknown;
|
|
2155
2154
|
};
|
|
2156
|
-
|
|
2155
|
+
key: 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
|
-
|
|
2169
|
+
self?: string | undefined;
|
|
2170
2170
|
} | undefined;
|
|
2171
2171
|
}, {
|
|
2172
|
-
operation: "get";
|
|
2173
|
-
success: boolean;
|
|
2174
2172
|
error: string;
|
|
2173
|
+
success: boolean;
|
|
2174
|
+
operation: "get";
|
|
2175
2175
|
issue?: {
|
|
2176
2176
|
id: string;
|
|
2177
|
-
key: string;
|
|
2178
2177
|
fields: {
|
|
2179
2178
|
description?: unknown;
|
|
2180
2179
|
status?: {
|
|
2181
|
-
id: string;
|
|
2182
2180
|
name: string;
|
|
2181
|
+
id: string;
|
|
2183
2182
|
statusCategory?: {
|
|
2184
2183
|
name: string;
|
|
2185
2184
|
key: string;
|
|
2186
2185
|
} | undefined;
|
|
2187
2186
|
} | undefined;
|
|
2188
|
-
created?: string | undefined;
|
|
2189
|
-
updated?: string | undefined;
|
|
2190
|
-
summary?: string | undefined;
|
|
2191
2187
|
priority?: {
|
|
2192
|
-
id: string;
|
|
2193
2188
|
name: string;
|
|
2189
|
+
id: string;
|
|
2194
2190
|
} | null | undefined;
|
|
2191
|
+
summary?: string | undefined;
|
|
2192
|
+
parent?: {
|
|
2193
|
+
id: string;
|
|
2194
|
+
key: string;
|
|
2195
|
+
} | undefined;
|
|
2196
|
+
created?: string | undefined;
|
|
2197
|
+
updated?: string | undefined;
|
|
2198
|
+
labels?: string[] | undefined;
|
|
2199
|
+
comment?: {
|
|
2200
|
+
comments?: {
|
|
2201
|
+
id: string;
|
|
2202
|
+
created?: string | undefined;
|
|
2203
|
+
updated?: string | undefined;
|
|
2204
|
+
body?: string | undefined;
|
|
2205
|
+
author?: {
|
|
2206
|
+
accountId: string;
|
|
2207
|
+
displayName?: string | undefined;
|
|
2208
|
+
emailAddress?: string | undefined;
|
|
2209
|
+
active?: boolean | undefined;
|
|
2210
|
+
} | null | undefined;
|
|
2211
|
+
renderedBody?: string | undefined;
|
|
2212
|
+
}[] | undefined;
|
|
2213
|
+
total?: number | undefined;
|
|
2214
|
+
} | undefined;
|
|
2195
2215
|
assignee?: {
|
|
2196
2216
|
accountId: string;
|
|
2197
2217
|
displayName?: string | undefined;
|
|
@@ -2205,55 +2225,35 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
2205
2225
|
active?: boolean | undefined;
|
|
2206
2226
|
} | null | undefined;
|
|
2207
2227
|
issuetype?: {
|
|
2208
|
-
id: string;
|
|
2209
2228
|
name: string;
|
|
2229
|
+
id: string;
|
|
2210
2230
|
description?: string | undefined;
|
|
2211
2231
|
subtask?: boolean | undefined;
|
|
2212
2232
|
} | undefined;
|
|
2213
2233
|
project?: {
|
|
2214
|
-
id: string;
|
|
2215
2234
|
name: string;
|
|
2216
|
-
key: string;
|
|
2217
|
-
} | undefined;
|
|
2218
|
-
labels?: string[] | undefined;
|
|
2219
|
-
duedate?: string | null | undefined;
|
|
2220
|
-
parent?: {
|
|
2221
2235
|
id: string;
|
|
2222
2236
|
key: string;
|
|
2223
2237
|
} | undefined;
|
|
2224
|
-
|
|
2225
|
-
comments?: {
|
|
2226
|
-
id: string;
|
|
2227
|
-
author?: {
|
|
2228
|
-
accountId: string;
|
|
2229
|
-
displayName?: string | undefined;
|
|
2230
|
-
emailAddress?: string | undefined;
|
|
2231
|
-
active?: boolean | undefined;
|
|
2232
|
-
} | null | undefined;
|
|
2233
|
-
body?: string | undefined;
|
|
2234
|
-
renderedBody?: string | undefined;
|
|
2235
|
-
created?: string | undefined;
|
|
2236
|
-
updated?: string | undefined;
|
|
2237
|
-
}[] | undefined;
|
|
2238
|
-
total?: number | undefined;
|
|
2239
|
-
} | undefined;
|
|
2238
|
+
duedate?: string | null | undefined;
|
|
2240
2239
|
} & {
|
|
2241
2240
|
[k: string]: unknown;
|
|
2242
2241
|
};
|
|
2243
|
-
|
|
2242
|
+
key: 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
|
-
|
|
2256
|
+
self?: string | undefined;
|
|
2257
2257
|
} | undefined;
|
|
2258
2258
|
}>, import("zod").ZodObject<{
|
|
2259
2259
|
operation: import("zod").ZodLiteral<"create">;
|
|
@@ -2273,18 +2273,18 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
2273
2273
|
}>>;
|
|
2274
2274
|
error: import("zod").ZodString;
|
|
2275
2275
|
}, "strip", import("zod").ZodTypeAny, {
|
|
2276
|
-
operation: "create";
|
|
2277
|
-
success: boolean;
|
|
2278
2276
|
error: string;
|
|
2277
|
+
success: boolean;
|
|
2278
|
+
operation: "create";
|
|
2279
2279
|
issue?: {
|
|
2280
2280
|
id: string;
|
|
2281
2281
|
key: string;
|
|
2282
2282
|
self?: string | undefined;
|
|
2283
2283
|
} | undefined;
|
|
2284
2284
|
}, {
|
|
2285
|
-
operation: "create";
|
|
2286
|
-
success: boolean;
|
|
2287
2285
|
error: string;
|
|
2286
|
+
success: boolean;
|
|
2287
|
+
operation: "create";
|
|
2288
2288
|
issue?: {
|
|
2289
2289
|
id: string;
|
|
2290
2290
|
key: string;
|
|
@@ -2296,14 +2296,14 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
2296
2296
|
key: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2297
2297
|
error: import("zod").ZodString;
|
|
2298
2298
|
}, "strip", import("zod").ZodTypeAny, {
|
|
2299
|
-
operation: "update";
|
|
2300
|
-
success: boolean;
|
|
2301
2299
|
error: string;
|
|
2300
|
+
success: boolean;
|
|
2301
|
+
operation: "update";
|
|
2302
2302
|
key?: string | undefined;
|
|
2303
2303
|
}, {
|
|
2304
|
-
operation: "update";
|
|
2305
|
-
success: boolean;
|
|
2306
2304
|
error: string;
|
|
2305
|
+
success: boolean;
|
|
2306
|
+
operation: "update";
|
|
2307
2307
|
key?: string | undefined;
|
|
2308
2308
|
}>, import("zod").ZodObject<{
|
|
2309
2309
|
operation: import("zod").ZodLiteral<"transition">;
|
|
@@ -2312,15 +2312,15 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
2312
2312
|
new_status: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2313
2313
|
error: import("zod").ZodString;
|
|
2314
2314
|
}, "strip", import("zod").ZodTypeAny, {
|
|
2315
|
-
operation: "transition";
|
|
2316
|
-
success: boolean;
|
|
2317
2315
|
error: string;
|
|
2316
|
+
success: boolean;
|
|
2317
|
+
operation: "transition";
|
|
2318
2318
|
key?: string | undefined;
|
|
2319
2319
|
new_status?: string | undefined;
|
|
2320
2320
|
}, {
|
|
2321
|
-
operation: "transition";
|
|
2322
|
-
success: boolean;
|
|
2323
2321
|
error: string;
|
|
2322
|
+
success: boolean;
|
|
2323
|
+
operation: "transition";
|
|
2324
2324
|
key?: string | undefined;
|
|
2325
2325
|
new_status?: string | undefined;
|
|
2326
2326
|
}>, 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;
|
|
@@ -2382,15 +2382,15 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
2382
2382
|
}>, "many">>;
|
|
2383
2383
|
error: import("zod").ZodString;
|
|
2384
2384
|
}, "strip", import("zod").ZodTypeAny, {
|
|
2385
|
-
operation: "list_transitions";
|
|
2386
|
-
success: boolean;
|
|
2387
2385
|
error: string;
|
|
2386
|
+
success: boolean;
|
|
2387
|
+
operation: "list_transitions";
|
|
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;
|
|
@@ -2398,15 +2398,15 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
2398
2398
|
} | undefined;
|
|
2399
2399
|
}[] | undefined;
|
|
2400
2400
|
}, {
|
|
2401
|
-
operation: "list_transitions";
|
|
2402
|
-
success: boolean;
|
|
2403
2401
|
error: string;
|
|
2402
|
+
success: boolean;
|
|
2403
|
+
operation: "list_transitions";
|
|
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,34 +2421,34 @@ 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;
|
|
2425
|
+
id: string;
|
|
2426
2426
|
key: string;
|
|
2427
2427
|
}, {
|
|
2428
|
-
id: string;
|
|
2429
2428
|
name: string;
|
|
2429
|
+
id: string;
|
|
2430
2430
|
key: string;
|
|
2431
2431
|
}>, "many">>;
|
|
2432
2432
|
total: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
2433
2433
|
error: import("zod").ZodString;
|
|
2434
2434
|
}, "strip", import("zod").ZodTypeAny, {
|
|
2435
|
-
operation: "list_projects";
|
|
2436
|
-
success: boolean;
|
|
2437
2435
|
error: string;
|
|
2436
|
+
success: boolean;
|
|
2437
|
+
operation: "list_projects";
|
|
2438
2438
|
total?: number | undefined;
|
|
2439
2439
|
projects?: {
|
|
2440
|
-
id: string;
|
|
2441
2440
|
name: string;
|
|
2441
|
+
id: string;
|
|
2442
2442
|
key: string;
|
|
2443
2443
|
}[] | undefined;
|
|
2444
2444
|
}, {
|
|
2445
|
-
operation: "list_projects";
|
|
2446
|
-
success: boolean;
|
|
2447
2445
|
error: string;
|
|
2446
|
+
success: boolean;
|
|
2447
|
+
operation: "list_projects";
|
|
2448
2448
|
total?: number | undefined;
|
|
2449
2449
|
projects?: {
|
|
2450
|
-
id: string;
|
|
2451
2450
|
name: string;
|
|
2451
|
+
id: string;
|
|
2452
2452
|
key: string;
|
|
2453
2453
|
}[] | undefined;
|
|
2454
2454
|
}>, import("zod").ZodObject<{
|
|
@@ -2460,34 +2460,34 @@ 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">>;
|
|
2473
2473
|
error: import("zod").ZodString;
|
|
2474
2474
|
}, "strip", import("zod").ZodTypeAny, {
|
|
2475
|
-
operation: "list_issue_types";
|
|
2476
|
-
success: boolean;
|
|
2477
2475
|
error: string;
|
|
2476
|
+
success: boolean;
|
|
2477
|
+
operation: "list_issue_types";
|
|
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;
|
|
2484
2484
|
}, {
|
|
2485
|
-
operation: "list_issue_types";
|
|
2486
|
-
success: boolean;
|
|
2487
2485
|
error: string;
|
|
2486
|
+
success: boolean;
|
|
2487
|
+
operation: "list_issue_types";
|
|
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;
|
|
@@ -2518,63 +2518,63 @@ 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
|
+
created?: string | undefined;
|
|
2522
|
+
updated?: string | undefined;
|
|
2523
|
+
body?: 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?: string | undefined;
|
|
2528
2530
|
renderedBody?: string | undefined;
|
|
2529
|
-
created?: string | undefined;
|
|
2530
|
-
updated?: string | undefined;
|
|
2531
2531
|
}, {
|
|
2532
2532
|
id: string;
|
|
2533
|
+
created?: string | undefined;
|
|
2534
|
+
updated?: string | undefined;
|
|
2535
|
+
body?: 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?: string | undefined;
|
|
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, {
|
|
2546
|
-
operation: "add_comment";
|
|
2547
|
-
success: boolean;
|
|
2548
2546
|
error: string;
|
|
2547
|
+
success: boolean;
|
|
2548
|
+
operation: "add_comment";
|
|
2549
2549
|
comment?: {
|
|
2550
2550
|
id: string;
|
|
2551
|
+
created?: string | undefined;
|
|
2552
|
+
updated?: string | undefined;
|
|
2553
|
+
body?: 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?: string | undefined;
|
|
2558
2560
|
renderedBody?: string | undefined;
|
|
2559
|
-
created?: string | undefined;
|
|
2560
|
-
updated?: string | undefined;
|
|
2561
2561
|
} | undefined;
|
|
2562
2562
|
}, {
|
|
2563
|
-
operation: "add_comment";
|
|
2564
|
-
success: boolean;
|
|
2565
2563
|
error: string;
|
|
2564
|
+
success: boolean;
|
|
2565
|
+
operation: "add_comment";
|
|
2566
2566
|
comment?: {
|
|
2567
2567
|
id: string;
|
|
2568
|
+
created?: string | undefined;
|
|
2569
|
+
updated?: string | undefined;
|
|
2570
|
+
body?: 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?: string | undefined;
|
|
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">;
|
|
@@ -2603,65 +2603,65 @@ 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
|
+
created?: string | undefined;
|
|
2607
|
+
updated?: string | undefined;
|
|
2608
|
+
body?: 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?: string | undefined;
|
|
2613
2615
|
renderedBody?: string | undefined;
|
|
2614
|
-
created?: string | undefined;
|
|
2615
|
-
updated?: string | undefined;
|
|
2616
2616
|
}, {
|
|
2617
2617
|
id: string;
|
|
2618
|
+
created?: string | undefined;
|
|
2619
|
+
updated?: string | undefined;
|
|
2620
|
+
body?: 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?: string | undefined;
|
|
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;
|
|
2631
2631
|
}, "strip", import("zod").ZodTypeAny, {
|
|
2632
|
-
operation: "get_comments";
|
|
2633
|
-
success: boolean;
|
|
2634
2632
|
error: string;
|
|
2633
|
+
success: boolean;
|
|
2634
|
+
operation: "get_comments";
|
|
2635
2635
|
comments?: {
|
|
2636
2636
|
id: string;
|
|
2637
|
+
created?: string | undefined;
|
|
2638
|
+
updated?: string | undefined;
|
|
2639
|
+
body?: 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?: string | undefined;
|
|
2644
2646
|
renderedBody?: string | undefined;
|
|
2645
|
-
created?: string | undefined;
|
|
2646
|
-
updated?: string | undefined;
|
|
2647
2647
|
}[] | undefined;
|
|
2648
2648
|
total?: number | undefined;
|
|
2649
2649
|
}, {
|
|
2650
|
-
operation: "get_comments";
|
|
2651
|
-
success: boolean;
|
|
2652
2650
|
error: string;
|
|
2651
|
+
success: boolean;
|
|
2652
|
+
operation: "get_comments";
|
|
2653
2653
|
comments?: {
|
|
2654
2654
|
id: string;
|
|
2655
|
+
created?: string | undefined;
|
|
2656
|
+
updated?: string | undefined;
|
|
2657
|
+
body?: 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?: string | undefined;
|
|
2662
2664
|
renderedBody?: string | undefined;
|
|
2663
|
-
created?: string | undefined;
|
|
2664
|
-
updated?: string | undefined;
|
|
2665
2665
|
}[] | undefined;
|
|
2666
2666
|
total?: number | undefined;
|
|
2667
2667
|
}>]>;
|