@bubblelab/bubble-core 0.1.74 → 0.1.76
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 +88 -88
- package/dist/bubbles/service-bubble/ai-agent.d.ts +32 -32
- package/dist/bubbles/service-bubble/airtable.d.ts +76 -76
- package/dist/bubbles/service-bubble/airtable.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/airtable.js +3 -1
- package/dist/bubbles/service-bubble/airtable.js.map +1 -1
- package/dist/bubbles/service-bubble/apify/apify.d.ts +18 -18
- package/dist/bubbles/service-bubble/ashby/ashby.d.ts +112 -112
- package/dist/bubbles/service-bubble/ashby/ashby.schema.d.ts +38 -38
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +2 -2
- package/dist/bubbles/service-bubble/browserbase/browserbase.schema.d.ts +78 -78
- package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +82 -82
- package/dist/bubbles/service-bubble/crustdata/crustdata.schema.d.ts +42 -42
- package/dist/bubbles/service-bubble/firecrawl.d.ts +250 -250
- package/dist/bubbles/service-bubble/followupboss.d.ts +4 -4
- package/dist/bubbles/service-bubble/fullenrich/fullenrich.schema.d.ts +46 -46
- package/dist/bubbles/service-bubble/github.d.ts +44 -44
- package/dist/bubbles/service-bubble/gmail.d.ts +104 -104
- package/dist/bubbles/service-bubble/google-drive.d.ts +36 -36
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.schema.d.ts +52 -52
- package/dist/bubbles/service-bubble/insforge-db.d.ts +8 -8
- package/dist/bubbles/service-bubble/jira/jira.schema.d.ts +62 -62
- package/dist/bubbles/service-bubble/notion/notion.d.ts +304 -304
- package/dist/bubbles/service-bubble/postgresql.d.ts +8 -8
- package/dist/bubbles/service-bubble/resend.d.ts +4 -4
- package/dist/bubbles/service-bubble/slack/slack.d.ts +320 -320
- package/dist/bubbles/service-bubble/stripe/stripe.d.ts +9 -9
- package/dist/bubbles/service-bubble/stripe/stripe.schema.d.ts +78 -78
- package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.schema.d.ts +28 -28
- package/dist/bubbles/tool-bubble/google-maps-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/linkedin-connection-tool/linkedin-connection-tool.schema.d.ts +4 -4
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +301 -301
- package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +60 -60
- package/dist/bubbles/tool-bubble/twitter-tool.d.ts +106 -106
- package/dist/bubbles/tool-bubble/web-scrape-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/web-search-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/youtube-tool.d.ts +20 -20
- package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +12 -12
- package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +28 -28
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +56 -56
- package/dist/bubbles.json +3 -2
- package/package.json +2 -2
|
@@ -11,18 +11,18 @@ declare const InsForgeDbParamsSchema: z.ZodObject<{
|
|
|
11
11
|
maxRows: z.ZodDefault<z.ZodNumber>;
|
|
12
12
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
13
13
|
}, "strip", z.ZodTypeAny, {
|
|
14
|
+
parameters: unknown[];
|
|
14
15
|
timeout: number;
|
|
15
16
|
query: string;
|
|
16
17
|
allowedOperations: ("SELECT" | "INSERT" | "UPDATE" | "DELETE" | "WITH" | "EXPLAIN" | "CREATE")[];
|
|
17
|
-
parameters: unknown[];
|
|
18
18
|
maxRows: number;
|
|
19
19
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
20
20
|
}, {
|
|
21
21
|
query: string;
|
|
22
|
+
parameters?: unknown[] | undefined;
|
|
22
23
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
23
24
|
timeout?: number | undefined;
|
|
24
25
|
allowedOperations?: ("SELECT" | "INSERT" | "UPDATE" | "DELETE" | "WITH" | "EXPLAIN" | "CREATE")[] | undefined;
|
|
25
|
-
parameters?: unknown[] | undefined;
|
|
26
26
|
maxRows?: number | undefined;
|
|
27
27
|
}>;
|
|
28
28
|
type InsForgeDbParamsInput = z.input<typeof InsForgeDbParamsSchema>;
|
|
@@ -36,20 +36,20 @@ declare const InsForgeDbResultSchema: z.ZodObject<{
|
|
|
36
36
|
error: z.ZodString;
|
|
37
37
|
cleanedJSONString: z.ZodString;
|
|
38
38
|
}, "strip", z.ZodTypeAny, {
|
|
39
|
+
executionTime: number;
|
|
39
40
|
error: string;
|
|
40
41
|
success: boolean;
|
|
41
42
|
rows: Record<string, unknown>[];
|
|
42
43
|
rowCount: number | null;
|
|
43
44
|
command: string;
|
|
44
|
-
executionTime: number;
|
|
45
45
|
cleanedJSONString: string;
|
|
46
46
|
}, {
|
|
47
|
+
executionTime: number;
|
|
47
48
|
error: string;
|
|
48
49
|
success: boolean;
|
|
49
50
|
rows: Record<string, unknown>[];
|
|
50
51
|
rowCount: number | null;
|
|
51
52
|
command: string;
|
|
52
|
-
executionTime: number;
|
|
53
53
|
cleanedJSONString: string;
|
|
54
54
|
}>;
|
|
55
55
|
type InsForgeDbResult = z.output<typeof InsForgeDbResultSchema>;
|
|
@@ -85,18 +85,18 @@ export declare class InsForgeDbBubble extends ServiceBubble<InsForgeDbParams, In
|
|
|
85
85
|
maxRows: z.ZodDefault<z.ZodNumber>;
|
|
86
86
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
87
87
|
}, "strip", z.ZodTypeAny, {
|
|
88
|
+
parameters: unknown[];
|
|
88
89
|
timeout: number;
|
|
89
90
|
query: string;
|
|
90
91
|
allowedOperations: ("SELECT" | "INSERT" | "UPDATE" | "DELETE" | "WITH" | "EXPLAIN" | "CREATE")[];
|
|
91
|
-
parameters: unknown[];
|
|
92
92
|
maxRows: number;
|
|
93
93
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
94
94
|
}, {
|
|
95
95
|
query: string;
|
|
96
|
+
parameters?: unknown[] | undefined;
|
|
96
97
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
97
98
|
timeout?: number | undefined;
|
|
98
99
|
allowedOperations?: ("SELECT" | "INSERT" | "UPDATE" | "DELETE" | "WITH" | "EXPLAIN" | "CREATE")[] | undefined;
|
|
99
|
-
parameters?: unknown[] | undefined;
|
|
100
100
|
maxRows?: number | undefined;
|
|
101
101
|
}>;
|
|
102
102
|
static readonly resultSchema: z.ZodObject<{
|
|
@@ -108,20 +108,20 @@ export declare class InsForgeDbBubble extends ServiceBubble<InsForgeDbParams, In
|
|
|
108
108
|
error: z.ZodString;
|
|
109
109
|
cleanedJSONString: z.ZodString;
|
|
110
110
|
}, "strip", z.ZodTypeAny, {
|
|
111
|
+
executionTime: number;
|
|
111
112
|
error: string;
|
|
112
113
|
success: boolean;
|
|
113
114
|
rows: Record<string, unknown>[];
|
|
114
115
|
rowCount: number | null;
|
|
115
116
|
command: string;
|
|
116
|
-
executionTime: number;
|
|
117
117
|
cleanedJSONString: string;
|
|
118
118
|
}, {
|
|
119
|
+
executionTime: number;
|
|
119
120
|
error: string;
|
|
120
121
|
success: boolean;
|
|
121
122
|
rows: Record<string, unknown>[];
|
|
122
123
|
rowCount: number | null;
|
|
123
124
|
command: string;
|
|
124
|
-
executionTime: number;
|
|
125
125
|
cleanedJSONString: string;
|
|
126
126
|
}>;
|
|
127
127
|
static readonly shortDescription = "InsForge is the backend built for AI-assisted development. Connect InsForge with any agent. Add authentication, database, storage, functions, and AI integrations to your app in seconds.";
|
|
@@ -2221,8 +2221,8 @@ export declare const JiraParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
2221
2221
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
2222
2222
|
}, "strip", z.ZodTypeAny, {
|
|
2223
2223
|
operation: "search";
|
|
2224
|
-
offset: number;
|
|
2225
2224
|
limit: number;
|
|
2225
|
+
offset: number;
|
|
2226
2226
|
jql: string;
|
|
2227
2227
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
2228
2228
|
fields?: string[] | undefined;
|
|
@@ -2231,8 +2231,8 @@ export declare const JiraParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
2231
2231
|
jql: string;
|
|
2232
2232
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
2233
2233
|
fields?: string[] | undefined;
|
|
2234
|
-
offset?: number | undefined;
|
|
2235
2234
|
limit?: number | undefined;
|
|
2235
|
+
offset?: number | undefined;
|
|
2236
2236
|
}>, z.ZodObject<{
|
|
2237
2237
|
operation: z.ZodLiteral<"get">;
|
|
2238
2238
|
key: z.ZodString;
|
|
@@ -2240,14 +2240,14 @@ export declare const JiraParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
2240
2240
|
expand: z.ZodOptional<z.ZodArray<z.ZodEnum<["changelog", "comments", "transitions"]>, "many">>;
|
|
2241
2241
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
2242
2242
|
}, "strip", z.ZodTypeAny, {
|
|
2243
|
-
operation: "get";
|
|
2244
2243
|
key: string;
|
|
2244
|
+
operation: "get";
|
|
2245
2245
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
2246
2246
|
fields?: string[] | undefined;
|
|
2247
2247
|
expand?: ("comments" | "changelog" | "transitions")[] | undefined;
|
|
2248
2248
|
}, {
|
|
2249
|
-
operation: "get";
|
|
2250
2249
|
key: string;
|
|
2250
|
+
operation: "get";
|
|
2251
2251
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
2252
2252
|
fields?: string[] | undefined;
|
|
2253
2253
|
expand?: ("comments" | "changelog" | "transitions")[] | undefined;
|
|
@@ -2264,9 +2264,9 @@ export declare const JiraParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
2264
2264
|
due_date: z.ZodOptional<z.ZodString>;
|
|
2265
2265
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
2266
2266
|
}, "strip", z.ZodTypeAny, {
|
|
2267
|
-
operation: "create";
|
|
2268
2267
|
type: string;
|
|
2269
2268
|
summary: string;
|
|
2269
|
+
operation: "create";
|
|
2270
2270
|
project: string;
|
|
2271
2271
|
description?: string | undefined;
|
|
2272
2272
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
@@ -2276,8 +2276,8 @@ export declare const JiraParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
2276
2276
|
assignee?: string | undefined;
|
|
2277
2277
|
due_date?: string | undefined;
|
|
2278
2278
|
}, {
|
|
2279
|
-
operation: "create";
|
|
2280
2279
|
summary: string;
|
|
2280
|
+
operation: "create";
|
|
2281
2281
|
project: string;
|
|
2282
2282
|
type?: string | undefined;
|
|
2283
2283
|
description?: string | undefined;
|
|
@@ -2311,8 +2311,8 @@ export declare const JiraParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
2311
2311
|
comment: z.ZodOptional<z.ZodString>;
|
|
2312
2312
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
2313
2313
|
}, "strip", z.ZodTypeAny, {
|
|
2314
|
-
operation: "update";
|
|
2315
2314
|
key: string;
|
|
2315
|
+
operation: "update";
|
|
2316
2316
|
description?: string | undefined;
|
|
2317
2317
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
2318
2318
|
priority?: string | undefined;
|
|
@@ -2326,8 +2326,8 @@ export declare const JiraParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
2326
2326
|
assignee?: string | null | undefined;
|
|
2327
2327
|
due_date?: string | null | undefined;
|
|
2328
2328
|
}, {
|
|
2329
|
-
operation: "update";
|
|
2330
2329
|
key: string;
|
|
2330
|
+
operation: "update";
|
|
2331
2331
|
description?: string | undefined;
|
|
2332
2332
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
2333
2333
|
priority?: string | undefined;
|
|
@@ -2349,16 +2349,16 @@ export declare const JiraParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
2349
2349
|
resolution: z.ZodOptional<z.ZodString>;
|
|
2350
2350
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
2351
2351
|
}, "strip", z.ZodTypeAny, {
|
|
2352
|
-
operation: "transition";
|
|
2353
2352
|
key: string;
|
|
2353
|
+
operation: "transition";
|
|
2354
2354
|
status?: string | undefined;
|
|
2355
2355
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
2356
2356
|
comment?: string | undefined;
|
|
2357
2357
|
transition_id?: string | undefined;
|
|
2358
2358
|
resolution?: string | undefined;
|
|
2359
2359
|
}, {
|
|
2360
|
-
operation: "transition";
|
|
2361
2360
|
key: string;
|
|
2361
|
+
operation: "transition";
|
|
2362
2362
|
status?: string | undefined;
|
|
2363
2363
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
2364
2364
|
comment?: string | undefined;
|
|
@@ -2369,12 +2369,12 @@ export declare const JiraParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
2369
2369
|
key: z.ZodString;
|
|
2370
2370
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
2371
2371
|
}, "strip", z.ZodTypeAny, {
|
|
2372
|
-
operation: "list_transitions";
|
|
2373
2372
|
key: string;
|
|
2373
|
+
operation: "list_transitions";
|
|
2374
2374
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
2375
2375
|
}, {
|
|
2376
|
-
operation: "list_transitions";
|
|
2377
2376
|
key: string;
|
|
2377
|
+
operation: "list_transitions";
|
|
2378
2378
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
2379
2379
|
}>, z.ZodObject<{
|
|
2380
2380
|
operation: z.ZodLiteral<"list_projects">;
|
|
@@ -2383,14 +2383,14 @@ export declare const JiraParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
2383
2383
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
2384
2384
|
}, "strip", z.ZodTypeAny, {
|
|
2385
2385
|
operation: "list_projects";
|
|
2386
|
-
offset: number;
|
|
2387
2386
|
limit: number;
|
|
2387
|
+
offset: number;
|
|
2388
2388
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
2389
2389
|
}, {
|
|
2390
2390
|
operation: "list_projects";
|
|
2391
2391
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
2392
|
-
offset?: number | undefined;
|
|
2393
2392
|
limit?: number | undefined;
|
|
2393
|
+
offset?: number | undefined;
|
|
2394
2394
|
}>, z.ZodObject<{
|
|
2395
2395
|
operation: z.ZodLiteral<"list_issue_types">;
|
|
2396
2396
|
project: z.ZodString;
|
|
@@ -2409,14 +2409,14 @@ export declare const JiraParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
2409
2409
|
body: z.ZodString;
|
|
2410
2410
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
2411
2411
|
}, "strip", z.ZodTypeAny, {
|
|
2412
|
+
key: string;
|
|
2412
2413
|
operation: "add_comment";
|
|
2413
2414
|
body: string;
|
|
2414
|
-
key: string;
|
|
2415
2415
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
2416
2416
|
}, {
|
|
2417
|
+
key: string;
|
|
2417
2418
|
operation: "add_comment";
|
|
2418
2419
|
body: string;
|
|
2419
|
-
key: string;
|
|
2420
2420
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
2421
2421
|
}>, z.ZodObject<{
|
|
2422
2422
|
operation: z.ZodLiteral<"get_comments">;
|
|
@@ -2425,17 +2425,17 @@ export declare const JiraParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
2425
2425
|
offset: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
2426
2426
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
2427
2427
|
}, "strip", z.ZodTypeAny, {
|
|
2428
|
-
operation: "get_comments";
|
|
2429
|
-
offset: number;
|
|
2430
2428
|
key: string;
|
|
2429
|
+
operation: "get_comments";
|
|
2431
2430
|
limit: number;
|
|
2431
|
+
offset: number;
|
|
2432
2432
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
2433
2433
|
}, {
|
|
2434
|
-
operation: "get_comments";
|
|
2435
2434
|
key: string;
|
|
2435
|
+
operation: "get_comments";
|
|
2436
2436
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
2437
|
-
offset?: number | undefined;
|
|
2438
2437
|
limit?: number | undefined;
|
|
2438
|
+
offset?: number | undefined;
|
|
2439
2439
|
}>]>;
|
|
2440
2440
|
export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject<{
|
|
2441
2441
|
operation: z.ZodLiteral<"search">;
|
|
@@ -4365,9 +4365,9 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
4365
4365
|
limit: z.ZodOptional<z.ZodNumber>;
|
|
4366
4366
|
error: z.ZodString;
|
|
4367
4367
|
}, "strip", z.ZodTypeAny, {
|
|
4368
|
-
operation: "search";
|
|
4369
|
-
success: boolean;
|
|
4370
4368
|
error: string;
|
|
4369
|
+
success: boolean;
|
|
4370
|
+
operation: "search";
|
|
4371
4371
|
issues?: {
|
|
4372
4372
|
id?: string | undefined;
|
|
4373
4373
|
fields?: z.objectOutputType<{
|
|
@@ -4756,13 +4756,13 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
4756
4756
|
expand?: string | undefined;
|
|
4757
4757
|
self?: string | undefined;
|
|
4758
4758
|
}[] | undefined;
|
|
4759
|
-
offset?: number | undefined;
|
|
4760
4759
|
limit?: number | undefined;
|
|
4760
|
+
offset?: number | undefined;
|
|
4761
4761
|
total?: number | undefined;
|
|
4762
4762
|
}, {
|
|
4763
|
-
operation: "search";
|
|
4764
|
-
success: boolean;
|
|
4765
4763
|
error: string;
|
|
4764
|
+
success: boolean;
|
|
4765
|
+
operation: "search";
|
|
4766
4766
|
issues?: {
|
|
4767
4767
|
id?: string | undefined;
|
|
4768
4768
|
fields?: z.objectInputType<{
|
|
@@ -5151,8 +5151,8 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
5151
5151
|
expand?: string | undefined;
|
|
5152
5152
|
self?: string | undefined;
|
|
5153
5153
|
}[] | undefined;
|
|
5154
|
-
offset?: number | undefined;
|
|
5155
5154
|
limit?: number | undefined;
|
|
5155
|
+
offset?: number | undefined;
|
|
5156
5156
|
total?: number | undefined;
|
|
5157
5157
|
}>, z.ZodObject<{
|
|
5158
5158
|
operation: z.ZodLiteral<"get">;
|
|
@@ -7079,9 +7079,9 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
7079
7079
|
}>>;
|
|
7080
7080
|
error: z.ZodString;
|
|
7081
7081
|
}, "strip", z.ZodTypeAny, {
|
|
7082
|
-
operation: "get";
|
|
7083
|
-
success: boolean;
|
|
7084
7082
|
error: string;
|
|
7083
|
+
success: boolean;
|
|
7084
|
+
operation: "get";
|
|
7085
7085
|
issue?: {
|
|
7086
7086
|
id?: string | undefined;
|
|
7087
7087
|
fields?: z.objectOutputType<{
|
|
@@ -7471,9 +7471,9 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
7471
7471
|
self?: string | undefined;
|
|
7472
7472
|
} | undefined;
|
|
7473
7473
|
}, {
|
|
7474
|
-
operation: "get";
|
|
7475
|
-
success: boolean;
|
|
7476
7474
|
error: string;
|
|
7475
|
+
success: boolean;
|
|
7476
|
+
operation: "get";
|
|
7477
7477
|
issue?: {
|
|
7478
7478
|
id?: string | undefined;
|
|
7479
7479
|
fields?: z.objectInputType<{
|
|
@@ -7880,18 +7880,18 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
7880
7880
|
}>>;
|
|
7881
7881
|
error: z.ZodString;
|
|
7882
7882
|
}, "strip", z.ZodTypeAny, {
|
|
7883
|
-
operation: "create";
|
|
7884
|
-
success: boolean;
|
|
7885
7883
|
error: string;
|
|
7884
|
+
success: boolean;
|
|
7885
|
+
operation: "create";
|
|
7886
7886
|
issue?: {
|
|
7887
7887
|
id: string;
|
|
7888
7888
|
key: string;
|
|
7889
7889
|
self?: string | undefined;
|
|
7890
7890
|
} | undefined;
|
|
7891
7891
|
}, {
|
|
7892
|
-
operation: "create";
|
|
7893
|
-
success: boolean;
|
|
7894
7892
|
error: string;
|
|
7893
|
+
success: boolean;
|
|
7894
|
+
operation: "create";
|
|
7895
7895
|
issue?: {
|
|
7896
7896
|
id: string;
|
|
7897
7897
|
key: string;
|
|
@@ -7903,14 +7903,14 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
7903
7903
|
key: z.ZodOptional<z.ZodString>;
|
|
7904
7904
|
error: z.ZodString;
|
|
7905
7905
|
}, "strip", z.ZodTypeAny, {
|
|
7906
|
-
operation: "update";
|
|
7907
|
-
success: boolean;
|
|
7908
7906
|
error: string;
|
|
7907
|
+
success: boolean;
|
|
7908
|
+
operation: "update";
|
|
7909
7909
|
key?: string | undefined;
|
|
7910
7910
|
}, {
|
|
7911
|
-
operation: "update";
|
|
7912
|
-
success: boolean;
|
|
7913
7911
|
error: string;
|
|
7912
|
+
success: boolean;
|
|
7913
|
+
operation: "update";
|
|
7914
7914
|
key?: string | undefined;
|
|
7915
7915
|
}>, z.ZodObject<{
|
|
7916
7916
|
operation: z.ZodLiteral<"transition">;
|
|
@@ -7919,15 +7919,15 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
7919
7919
|
new_status: z.ZodOptional<z.ZodString>;
|
|
7920
7920
|
error: z.ZodString;
|
|
7921
7921
|
}, "strip", z.ZodTypeAny, {
|
|
7922
|
-
operation: "transition";
|
|
7923
|
-
success: boolean;
|
|
7924
7922
|
error: string;
|
|
7923
|
+
success: boolean;
|
|
7924
|
+
operation: "transition";
|
|
7925
7925
|
key?: string | undefined;
|
|
7926
7926
|
new_status?: string | undefined;
|
|
7927
7927
|
}, {
|
|
7928
|
-
operation: "transition";
|
|
7929
|
-
success: boolean;
|
|
7930
7928
|
error: string;
|
|
7929
|
+
success: boolean;
|
|
7930
|
+
operation: "transition";
|
|
7931
7931
|
key?: string | undefined;
|
|
7932
7932
|
new_status?: string | undefined;
|
|
7933
7933
|
}>, z.ZodObject<{
|
|
@@ -8065,9 +8065,9 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
8065
8065
|
}, z.ZodTypeAny, "passthrough">>, "many">>;
|
|
8066
8066
|
error: z.ZodString;
|
|
8067
8067
|
}, "strip", z.ZodTypeAny, {
|
|
8068
|
-
operation: "list_transitions";
|
|
8069
|
-
success: boolean;
|
|
8070
8068
|
error: string;
|
|
8069
|
+
success: boolean;
|
|
8070
|
+
operation: "list_transitions";
|
|
8071
8071
|
transitions?: z.objectOutputType<{
|
|
8072
8072
|
id: z.ZodString;
|
|
8073
8073
|
name: z.ZodString;
|
|
@@ -8113,9 +8113,9 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
8113
8113
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
8114
8114
|
}, z.ZodTypeAny, "passthrough">[] | undefined;
|
|
8115
8115
|
}, {
|
|
8116
|
-
operation: "list_transitions";
|
|
8117
|
-
success: boolean;
|
|
8118
8116
|
error: string;
|
|
8117
|
+
success: boolean;
|
|
8118
|
+
operation: "list_transitions";
|
|
8119
8119
|
transitions?: z.objectInputType<{
|
|
8120
8120
|
id: z.ZodString;
|
|
8121
8121
|
name: z.ZodString;
|
|
@@ -8179,9 +8179,9 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
8179
8179
|
total: z.ZodOptional<z.ZodNumber>;
|
|
8180
8180
|
error: z.ZodString;
|
|
8181
8181
|
}, "strip", z.ZodTypeAny, {
|
|
8182
|
-
operation: "list_projects";
|
|
8183
|
-
success: boolean;
|
|
8184
8182
|
error: string;
|
|
8183
|
+
success: boolean;
|
|
8184
|
+
operation: "list_projects";
|
|
8185
8185
|
total?: number | undefined;
|
|
8186
8186
|
projects?: z.objectOutputType<{
|
|
8187
8187
|
id: z.ZodString;
|
|
@@ -8189,9 +8189,9 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
8189
8189
|
name: z.ZodString;
|
|
8190
8190
|
}, z.ZodTypeAny, "passthrough">[] | undefined;
|
|
8191
8191
|
}, {
|
|
8192
|
-
operation: "list_projects";
|
|
8193
|
-
success: boolean;
|
|
8194
8192
|
error: string;
|
|
8193
|
+
success: boolean;
|
|
8194
|
+
operation: "list_projects";
|
|
8195
8195
|
total?: number | undefined;
|
|
8196
8196
|
projects?: z.objectInputType<{
|
|
8197
8197
|
id: z.ZodString;
|
|
@@ -8219,9 +8219,9 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
8219
8219
|
}, z.ZodTypeAny, "passthrough">>, "many">>;
|
|
8220
8220
|
error: z.ZodString;
|
|
8221
8221
|
}, "strip", z.ZodTypeAny, {
|
|
8222
|
-
operation: "list_issue_types";
|
|
8223
|
-
success: boolean;
|
|
8224
8222
|
error: string;
|
|
8223
|
+
success: boolean;
|
|
8224
|
+
operation: "list_issue_types";
|
|
8225
8225
|
issue_types?: z.objectOutputType<{
|
|
8226
8226
|
id: z.ZodString;
|
|
8227
8227
|
name: z.ZodString;
|
|
@@ -8229,9 +8229,9 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
8229
8229
|
subtask: z.ZodOptional<z.ZodBoolean>;
|
|
8230
8230
|
}, z.ZodTypeAny, "passthrough">[] | undefined;
|
|
8231
8231
|
}, {
|
|
8232
|
-
operation: "list_issue_types";
|
|
8233
|
-
success: boolean;
|
|
8234
8232
|
error: string;
|
|
8233
|
+
success: boolean;
|
|
8234
|
+
operation: "list_issue_types";
|
|
8235
8235
|
issue_types?: z.objectInputType<{
|
|
8236
8236
|
id: z.ZodString;
|
|
8237
8237
|
name: z.ZodString;
|
|
@@ -8310,9 +8310,9 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
8310
8310
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
8311
8311
|
error: z.ZodString;
|
|
8312
8312
|
}, "strip", z.ZodTypeAny, {
|
|
8313
|
-
operation: "add_comment";
|
|
8314
|
-
success: boolean;
|
|
8315
8313
|
error: string;
|
|
8314
|
+
success: boolean;
|
|
8315
|
+
operation: "add_comment";
|
|
8316
8316
|
comment?: z.objectOutputType<{
|
|
8317
8317
|
id: z.ZodString;
|
|
8318
8318
|
author: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -8337,9 +8337,9 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
8337
8337
|
updated: z.ZodOptional<z.ZodString>;
|
|
8338
8338
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
8339
8339
|
}, {
|
|
8340
|
-
operation: "add_comment";
|
|
8341
|
-
success: boolean;
|
|
8342
8340
|
error: string;
|
|
8341
|
+
success: boolean;
|
|
8342
|
+
operation: "add_comment";
|
|
8343
8343
|
comment?: z.objectInputType<{
|
|
8344
8344
|
id: z.ZodString;
|
|
8345
8345
|
author: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -8436,9 +8436,9 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
8436
8436
|
total: z.ZodOptional<z.ZodNumber>;
|
|
8437
8437
|
error: z.ZodString;
|
|
8438
8438
|
}, "strip", z.ZodTypeAny, {
|
|
8439
|
-
operation: "get_comments";
|
|
8440
|
-
success: boolean;
|
|
8441
8439
|
error: string;
|
|
8440
|
+
success: boolean;
|
|
8441
|
+
operation: "get_comments";
|
|
8442
8442
|
comments?: z.objectOutputType<{
|
|
8443
8443
|
id: z.ZodString;
|
|
8444
8444
|
author: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -8464,9 +8464,9 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
8464
8464
|
}, z.ZodTypeAny, "passthrough">[] | undefined;
|
|
8465
8465
|
total?: number | undefined;
|
|
8466
8466
|
}, {
|
|
8467
|
-
operation: "get_comments";
|
|
8468
|
-
success: boolean;
|
|
8469
8467
|
error: string;
|
|
8468
|
+
success: boolean;
|
|
8469
|
+
operation: "get_comments";
|
|
8470
8470
|
comments?: z.objectInputType<{
|
|
8471
8471
|
id: z.ZodString;
|
|
8472
8472
|
author: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|