@bubblelab/bubble-core 0.1.51 → 0.1.53
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 +50 -50
- package/dist/bubbles/service-bubble/agi-inc.d.ts +8 -8
- package/dist/bubbles/service-bubble/ai-agent.d.ts +8 -8
- package/dist/bubbles/service-bubble/airtable.d.ts +72 -72
- package/dist/bubbles/service-bubble/ashby/ashby.d.ts +124 -124
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +16 -16
- package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +4 -4
- package/dist/bubbles/service-bubble/firecrawl.d.ts +48 -48
- package/dist/bubbles/service-bubble/followupboss.d.ts +4 -4
- package/dist/bubbles/service-bubble/fullenrich/fullenrich.d.ts +36 -36
- package/dist/bubbles/service-bubble/github.d.ts +56 -56
- package/dist/bubbles/service-bubble/gmail.d.ts +124 -124
- package/dist/bubbles/service-bubble/google-drive.d.ts +8 -8
- package/dist/bubbles/service-bubble/hello-world.d.ts +2 -2
- package/dist/bubbles/service-bubble/jira/jira.d.ts +28 -28
- package/dist/bubbles/service-bubble/notion/notion.d.ts +392 -392
- package/dist/bubbles/service-bubble/resend.d.ts +8 -8
- package/dist/bubbles/service-bubble/slack/slack.d.ts +28 -28
- package/dist/bubbles/service-bubble/stripe/stripe.d.ts +221 -32
- package/dist/bubbles/service-bubble/stripe/stripe.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/stripe/stripe.js +61 -0
- package/dist/bubbles/service-bubble/stripe/stripe.js.map +1 -1
- package/dist/bubbles/service-bubble/stripe/stripe.schema.d.ts +233 -40
- package/dist/bubbles/service-bubble/stripe/stripe.schema.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/stripe/stripe.schema.js +50 -0
- package/dist/bubbles/service-bubble/stripe/stripe.schema.js.map +1 -1
- package/dist/bubbles/service-bubble/telegram.d.ts +140 -140
- package/dist/bubbles/tool-bubble/bubbleflow-validation-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +18 -18
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +10 -10
- package/dist/bubbles/tool-bubble/list-bubbles-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/people-search-tool.d.ts +10 -10
- package/dist/bubbles/tool-bubble/twitter-tool.d.ts +18 -18
- package/dist/bubbles/tool-bubble/youtube-tool.d.ts +10 -10
- package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +8 -8
- package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +48 -48
- package/dist/bubbles/workflow-bubble/pdf-ocr.workflow.d.ts +16 -16
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +8 -8
- package/dist/bubbles.json +272 -2
- package/package.json +2 -2
|
@@ -519,14 +519,14 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
519
519
|
emailAddress: z.ZodOptional<z.ZodString>;
|
|
520
520
|
displayName: z.ZodOptional<z.ZodString>;
|
|
521
521
|
}, "strip", z.ZodTypeAny, {
|
|
522
|
-
type: string;
|
|
523
522
|
id: string;
|
|
523
|
+
type: string;
|
|
524
524
|
role: string;
|
|
525
525
|
displayName?: string | undefined;
|
|
526
526
|
emailAddress?: string | undefined;
|
|
527
527
|
}, {
|
|
528
|
-
type: string;
|
|
529
528
|
id: string;
|
|
529
|
+
type: string;
|
|
530
530
|
role: string;
|
|
531
531
|
displayName?: string | undefined;
|
|
532
532
|
emailAddress?: string | undefined;
|
|
@@ -553,8 +553,8 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
553
553
|
}[] | undefined;
|
|
554
554
|
} | undefined;
|
|
555
555
|
permissions?: {
|
|
556
|
-
type: string;
|
|
557
556
|
id: string;
|
|
557
|
+
type: string;
|
|
558
558
|
role: string;
|
|
559
559
|
displayName?: string | undefined;
|
|
560
560
|
emailAddress?: string | undefined;
|
|
@@ -580,8 +580,8 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
580
580
|
}[] | undefined;
|
|
581
581
|
} | undefined;
|
|
582
582
|
permissions?: {
|
|
583
|
-
type: string;
|
|
584
583
|
id: string;
|
|
584
|
+
type: string;
|
|
585
585
|
role: string;
|
|
586
586
|
displayName?: string | undefined;
|
|
587
587
|
emailAddress?: string | undefined;
|
|
@@ -1307,14 +1307,14 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
|
|
|
1307
1307
|
emailAddress: z.ZodOptional<z.ZodString>;
|
|
1308
1308
|
displayName: z.ZodOptional<z.ZodString>;
|
|
1309
1309
|
}, "strip", z.ZodTypeAny, {
|
|
1310
|
-
type: string;
|
|
1311
1310
|
id: string;
|
|
1311
|
+
type: string;
|
|
1312
1312
|
role: string;
|
|
1313
1313
|
displayName?: string | undefined;
|
|
1314
1314
|
emailAddress?: string | undefined;
|
|
1315
1315
|
}, {
|
|
1316
|
-
type: string;
|
|
1317
1316
|
id: string;
|
|
1317
|
+
type: string;
|
|
1318
1318
|
role: string;
|
|
1319
1319
|
displayName?: string | undefined;
|
|
1320
1320
|
emailAddress?: string | undefined;
|
|
@@ -1341,8 +1341,8 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
|
|
|
1341
1341
|
}[] | undefined;
|
|
1342
1342
|
} | undefined;
|
|
1343
1343
|
permissions?: {
|
|
1344
|
-
type: string;
|
|
1345
1344
|
id: string;
|
|
1345
|
+
type: string;
|
|
1346
1346
|
role: string;
|
|
1347
1347
|
displayName?: string | undefined;
|
|
1348
1348
|
emailAddress?: string | undefined;
|
|
@@ -1368,8 +1368,8 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
|
|
|
1368
1368
|
}[] | undefined;
|
|
1369
1369
|
} | undefined;
|
|
1370
1370
|
permissions?: {
|
|
1371
|
-
type: string;
|
|
1372
1371
|
id: string;
|
|
1372
|
+
type: string;
|
|
1373
1373
|
role: string;
|
|
1374
1374
|
displayName?: string | undefined;
|
|
1375
1375
|
emailAddress?: string | undefined;
|
|
@@ -7,8 +7,8 @@ declare const HelloWorldParamsSchema: z.ZodObject<{
|
|
|
7
7
|
message: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
8
8
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
9
9
|
}, "strip", z.ZodTypeAny, {
|
|
10
|
-
message: string;
|
|
11
10
|
name: string;
|
|
11
|
+
message: string;
|
|
12
12
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
13
13
|
}, {
|
|
14
14
|
name: string;
|
|
@@ -41,8 +41,8 @@ export declare class HelloWorldBubble extends ServiceBubble<HelloWorldParams, He
|
|
|
41
41
|
message: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
42
42
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
43
43
|
}, "strip", z.ZodTypeAny, {
|
|
44
|
-
message: string;
|
|
45
44
|
name: string;
|
|
45
|
+
message: string;
|
|
46
46
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
47
47
|
}, {
|
|
48
48
|
name: string;
|
|
@@ -67,14 +67,14 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
67
67
|
expand: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodEnum<["changelog", "comments", "transitions"]>, "many">>;
|
|
68
68
|
credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>;
|
|
69
69
|
}, "strip", import("zod").ZodTypeAny, {
|
|
70
|
-
key: string;
|
|
71
70
|
operation: "get";
|
|
71
|
+
key: string;
|
|
72
72
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
73
73
|
fields?: string[] | undefined;
|
|
74
74
|
expand?: ("comments" | "changelog" | "transitions")[] | undefined;
|
|
75
75
|
}, {
|
|
76
|
-
key: string;
|
|
77
76
|
operation: "get";
|
|
77
|
+
key: string;
|
|
78
78
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
79
79
|
fields?: string[] | undefined;
|
|
80
80
|
expand?: ("comments" | "changelog" | "transitions")[] | undefined;
|
|
@@ -96,24 +96,24 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
96
96
|
summary: string;
|
|
97
97
|
project: string;
|
|
98
98
|
description?: string | undefined;
|
|
99
|
+
due_date?: string | undefined;
|
|
99
100
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
100
101
|
priority?: string | undefined;
|
|
101
102
|
parent?: string | undefined;
|
|
102
103
|
labels?: string[] | undefined;
|
|
103
104
|
assignee?: string | undefined;
|
|
104
|
-
due_date?: string | undefined;
|
|
105
105
|
}, {
|
|
106
106
|
operation: "create";
|
|
107
107
|
summary: string;
|
|
108
108
|
project: string;
|
|
109
109
|
type?: string | undefined;
|
|
110
110
|
description?: string | undefined;
|
|
111
|
+
due_date?: string | undefined;
|
|
111
112
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
112
113
|
priority?: string | undefined;
|
|
113
114
|
parent?: string | undefined;
|
|
114
115
|
labels?: string[] | undefined;
|
|
115
116
|
assignee?: string | undefined;
|
|
116
|
-
due_date?: string | undefined;
|
|
117
117
|
}>, import("zod").ZodObject<{
|
|
118
118
|
operation: import("zod").ZodLiteral<"update">;
|
|
119
119
|
key: import("zod").ZodString;
|
|
@@ -138,9 +138,10 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
138
138
|
comment: import("zod").ZodOptional<import("zod").ZodString>;
|
|
139
139
|
credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>;
|
|
140
140
|
}, "strip", import("zod").ZodTypeAny, {
|
|
141
|
-
key: string;
|
|
142
141
|
operation: "update";
|
|
142
|
+
key: string;
|
|
143
143
|
description?: string | undefined;
|
|
144
|
+
due_date?: string | null | undefined;
|
|
144
145
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
145
146
|
priority?: string | undefined;
|
|
146
147
|
summary?: string | undefined;
|
|
@@ -151,11 +152,11 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
151
152
|
} | undefined;
|
|
152
153
|
comment?: string | undefined;
|
|
153
154
|
assignee?: string | null | undefined;
|
|
154
|
-
due_date?: string | null | undefined;
|
|
155
155
|
}, {
|
|
156
|
-
key: string;
|
|
157
156
|
operation: "update";
|
|
157
|
+
key: string;
|
|
158
158
|
description?: string | undefined;
|
|
159
|
+
due_date?: string | null | undefined;
|
|
159
160
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
160
161
|
priority?: string | undefined;
|
|
161
162
|
summary?: string | undefined;
|
|
@@ -166,7 +167,6 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
166
167
|
} | undefined;
|
|
167
168
|
comment?: string | undefined;
|
|
168
169
|
assignee?: string | null | undefined;
|
|
169
|
-
due_date?: string | null | undefined;
|
|
170
170
|
}>, import("zod").ZodObject<{
|
|
171
171
|
operation: import("zod").ZodLiteral<"transition">;
|
|
172
172
|
key: import("zod").ZodString;
|
|
@@ -176,16 +176,16 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
176
176
|
resolution: import("zod").ZodOptional<import("zod").ZodString>;
|
|
177
177
|
credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>;
|
|
178
178
|
}, "strip", import("zod").ZodTypeAny, {
|
|
179
|
-
key: string;
|
|
180
179
|
operation: "transition";
|
|
180
|
+
key: string;
|
|
181
181
|
status?: string | undefined;
|
|
182
182
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
183
183
|
comment?: string | undefined;
|
|
184
184
|
transition_id?: string | undefined;
|
|
185
185
|
resolution?: string | undefined;
|
|
186
186
|
}, {
|
|
187
|
-
key: string;
|
|
188
187
|
operation: "transition";
|
|
188
|
+
key: string;
|
|
189
189
|
status?: string | undefined;
|
|
190
190
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
191
191
|
comment?: string | undefined;
|
|
@@ -196,12 +196,12 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
196
196
|
key: import("zod").ZodString;
|
|
197
197
|
credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>;
|
|
198
198
|
}, "strip", import("zod").ZodTypeAny, {
|
|
199
|
-
key: string;
|
|
200
199
|
operation: "list_transitions";
|
|
200
|
+
key: string;
|
|
201
201
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
202
202
|
}, {
|
|
203
|
-
key: string;
|
|
204
203
|
operation: "list_transitions";
|
|
204
|
+
key: string;
|
|
205
205
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
206
206
|
}>, import("zod").ZodObject<{
|
|
207
207
|
operation: import("zod").ZodLiteral<"list_projects">;
|
|
@@ -236,13 +236,13 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
236
236
|
body: import("zod").ZodString;
|
|
237
237
|
credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>;
|
|
238
238
|
}, "strip", import("zod").ZodTypeAny, {
|
|
239
|
-
key: string;
|
|
240
239
|
operation: "add_comment";
|
|
240
|
+
key: string;
|
|
241
241
|
body: string;
|
|
242
242
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
243
243
|
}, {
|
|
244
|
-
key: string;
|
|
245
244
|
operation: "add_comment";
|
|
245
|
+
key: string;
|
|
246
246
|
body: string;
|
|
247
247
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
248
248
|
}>, import("zod").ZodObject<{
|
|
@@ -252,14 +252,14 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
252
252
|
offset: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodNumber>>;
|
|
253
253
|
credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>;
|
|
254
254
|
}, "strip", import("zod").ZodTypeAny, {
|
|
255
|
-
key: string;
|
|
256
255
|
operation: "get_comments";
|
|
257
256
|
limit: number;
|
|
257
|
+
key: string;
|
|
258
258
|
offset: number;
|
|
259
259
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
260
260
|
}, {
|
|
261
|
-
key: string;
|
|
262
261
|
operation: "get_comments";
|
|
262
|
+
key: string;
|
|
263
263
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
264
264
|
limit?: number | undefined;
|
|
265
265
|
offset?: number | undefined;
|
|
@@ -1413,8 +1413,8 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
1413
1413
|
}, import("zod").ZodTypeAny, "passthrough">>, "many">>;
|
|
1414
1414
|
changelog: import("zod").ZodOptional<import("zod").ZodUnknown>;
|
|
1415
1415
|
}, "strip", import("zod").ZodTypeAny, {
|
|
1416
|
-
key?: string | undefined;
|
|
1417
1416
|
id?: string | undefined;
|
|
1417
|
+
key?: string | undefined;
|
|
1418
1418
|
fields?: import("zod").objectOutputType<{
|
|
1419
1419
|
summary: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1420
1420
|
description: import("zod").ZodOptional<import("zod").ZodUnknown>;
|
|
@@ -1800,8 +1800,8 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
1800
1800
|
expand?: string | undefined;
|
|
1801
1801
|
self?: string | undefined;
|
|
1802
1802
|
}, {
|
|
1803
|
-
key?: string | undefined;
|
|
1804
1803
|
id?: string | undefined;
|
|
1804
|
+
key?: string | undefined;
|
|
1805
1805
|
fields?: import("zod").objectInputType<{
|
|
1806
1806
|
summary: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1807
1807
|
description: import("zod").ZodOptional<import("zod").ZodUnknown>;
|
|
@@ -2196,8 +2196,8 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
2196
2196
|
success: boolean;
|
|
2197
2197
|
error: string;
|
|
2198
2198
|
issues?: {
|
|
2199
|
-
key?: string | undefined;
|
|
2200
2199
|
id?: string | undefined;
|
|
2200
|
+
key?: string | undefined;
|
|
2201
2201
|
fields?: import("zod").objectOutputType<{
|
|
2202
2202
|
summary: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2203
2203
|
description: import("zod").ZodOptional<import("zod").ZodUnknown>;
|
|
@@ -2591,8 +2591,8 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
2591
2591
|
success: boolean;
|
|
2592
2592
|
error: string;
|
|
2593
2593
|
issues?: {
|
|
2594
|
-
key?: string | undefined;
|
|
2595
2594
|
id?: string | undefined;
|
|
2595
|
+
key?: string | undefined;
|
|
2596
2596
|
fields?: import("zod").objectInputType<{
|
|
2597
2597
|
summary: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2598
2598
|
description: import("zod").ZodOptional<import("zod").ZodUnknown>;
|
|
@@ -4130,8 +4130,8 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
4130
4130
|
}, import("zod").ZodTypeAny, "passthrough">>, "many">>;
|
|
4131
4131
|
changelog: import("zod").ZodOptional<import("zod").ZodUnknown>;
|
|
4132
4132
|
}, "strip", import("zod").ZodTypeAny, {
|
|
4133
|
-
key?: string | undefined;
|
|
4134
4133
|
id?: string | undefined;
|
|
4134
|
+
key?: string | undefined;
|
|
4135
4135
|
fields?: import("zod").objectOutputType<{
|
|
4136
4136
|
summary: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4137
4137
|
description: import("zod").ZodOptional<import("zod").ZodUnknown>;
|
|
@@ -4517,8 +4517,8 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
4517
4517
|
expand?: string | undefined;
|
|
4518
4518
|
self?: string | undefined;
|
|
4519
4519
|
}, {
|
|
4520
|
-
key?: string | undefined;
|
|
4521
4520
|
id?: string | undefined;
|
|
4521
|
+
key?: string | undefined;
|
|
4522
4522
|
fields?: import("zod").objectInputType<{
|
|
4523
4523
|
summary: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4524
4524
|
description: import("zod").ZodOptional<import("zod").ZodUnknown>;
|
|
@@ -4910,8 +4910,8 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
4910
4910
|
success: boolean;
|
|
4911
4911
|
error: string;
|
|
4912
4912
|
issue?: {
|
|
4913
|
-
key?: string | undefined;
|
|
4914
4913
|
id?: string | undefined;
|
|
4914
|
+
key?: string | undefined;
|
|
4915
4915
|
fields?: import("zod").objectOutputType<{
|
|
4916
4916
|
summary: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4917
4917
|
description: import("zod").ZodOptional<import("zod").ZodUnknown>;
|
|
@@ -5302,8 +5302,8 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
5302
5302
|
success: boolean;
|
|
5303
5303
|
error: string;
|
|
5304
5304
|
issue?: {
|
|
5305
|
-
key?: string | undefined;
|
|
5306
5305
|
id?: string | undefined;
|
|
5306
|
+
key?: string | undefined;
|
|
5307
5307
|
fields?: import("zod").objectInputType<{
|
|
5308
5308
|
summary: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5309
5309
|
description: import("zod").ZodOptional<import("zod").ZodUnknown>;
|
|
@@ -5697,12 +5697,12 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
5697
5697
|
key: import("zod").ZodString;
|
|
5698
5698
|
self: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5699
5699
|
}, "strip", import("zod").ZodTypeAny, {
|
|
5700
|
-
key: string;
|
|
5701
5700
|
id: string;
|
|
5701
|
+
key: string;
|
|
5702
5702
|
self?: string | undefined;
|
|
5703
5703
|
}, {
|
|
5704
|
-
key: string;
|
|
5705
5704
|
id: string;
|
|
5705
|
+
key: string;
|
|
5706
5706
|
self?: string | undefined;
|
|
5707
5707
|
}>>;
|
|
5708
5708
|
error: import("zod").ZodString;
|
|
@@ -5711,8 +5711,8 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
5711
5711
|
success: boolean;
|
|
5712
5712
|
error: string;
|
|
5713
5713
|
issue?: {
|
|
5714
|
-
key: string;
|
|
5715
5714
|
id: string;
|
|
5715
|
+
key: string;
|
|
5716
5716
|
self?: string | undefined;
|
|
5717
5717
|
} | undefined;
|
|
5718
5718
|
}, {
|
|
@@ -5720,8 +5720,8 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
5720
5720
|
success: boolean;
|
|
5721
5721
|
error: string;
|
|
5722
5722
|
issue?: {
|
|
5723
|
-
key: string;
|
|
5724
5723
|
id: string;
|
|
5724
|
+
key: string;
|
|
5725
5725
|
self?: string | undefined;
|
|
5726
5726
|
} | undefined;
|
|
5727
5727
|
}>, import("zod").ZodObject<{
|