@bubblelab/bubble-core 0.1.55 → 0.1.57
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 +102 -102
- package/dist/bubbles/service-bubble/agi-inc.d.ts +60 -60
- package/dist/bubbles/service-bubble/ai-agent.d.ts +68 -68
- package/dist/bubbles/service-bubble/airtable.d.ts +86 -86
- package/dist/bubbles/service-bubble/apify/apify.d.ts +24 -24
- package/dist/bubbles/service-bubble/ashby/ashby.d.ts +128 -128
- package/dist/bubbles/service-bubble/ashby/ashby.schema.d.ts +180 -180
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +28 -28
- package/dist/bubbles/service-bubble/browserbase/browserbase.schema.d.ts +36 -36
- package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +88 -88
- package/dist/bubbles/service-bubble/crustdata/crustdata.schema.d.ts +118 -118
- package/dist/bubbles/service-bubble/eleven-labs.d.ts +8 -8
- package/dist/bubbles/service-bubble/firecrawl.d.ts +879 -879
- package/dist/bubbles/service-bubble/followupboss.d.ts +254 -254
- package/dist/bubbles/service-bubble/fullenrich/fullenrich.d.ts +233 -233
- package/dist/bubbles/service-bubble/fullenrich/fullenrich.schema.d.ts +341 -341
- package/dist/bubbles/service-bubble/github.d.ts +112 -112
- package/dist/bubbles/service-bubble/gmail.d.ts +555 -555
- package/dist/bubbles/service-bubble/google-calendar.d.ts +20 -20
- package/dist/bubbles/service-bubble/google-drive.d.ts +16 -16
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +10 -10
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.schema.d.ts +10 -10
- package/dist/bubbles/service-bubble/http.d.ts +20 -20
- package/dist/bubbles/service-bubble/insforge-db.d.ts +12 -12
- package/dist/bubbles/service-bubble/jira/jira.d.ts +35 -35
- package/dist/bubbles/service-bubble/jira/jira.schema.d.ts +37 -37
- package/dist/bubbles/service-bubble/notion/notion.d.ts +1365 -1365
- package/dist/bubbles/service-bubble/postgresql.d.ts +12 -12
- package/dist/bubbles/service-bubble/resend.d.ts +24 -24
- package/dist/bubbles/service-bubble/slack/slack.d.ts +320 -320
- package/dist/bubbles/service-bubble/storage.d.ts +20 -20
- package/dist/bubbles/service-bubble/stripe/stripe.d.ts +91 -91
- package/dist/bubbles/service-bubble/stripe/stripe.schema.d.ts +107 -107
- package/dist/bubbles/service-bubble/telegram.d.ts +1491 -1491
- package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.schema.d.ts +16 -16
- package/dist/bubbles/tool-bubble/bubbleflow-validation-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/chart-js-tool.d.ts +16 -16
- package/dist/bubbles/tool-bubble/code-edit-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +126 -126
- package/dist/bubbles/tool-bubble/google-maps-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/instagram-tool.d.ts +10 -10
- package/dist/bubbles/tool-bubble/linkedin-connection-tool/linkedin-connection-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/linkedin-connection-tool/linkedin-connection-tool.schema.d.ts +6 -6
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +421 -421
- package/dist/bubbles/tool-bubble/people-search-tool.d.ts +150 -150
- package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +24 -24
- package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +64 -64
- package/dist/bubbles/tool-bubble/twitter-tool.d.ts +146 -146
- package/dist/bubbles/tool-bubble/web-crawl-tool.d.ts +14 -14
- package/dist/bubbles/tool-bubble/web-search-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/youtube-tool.d.ts +24 -24
- package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +32 -32
- package/dist/bubbles/workflow-bubble/parse-document.workflow.d.ts +4 -4
- package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +86 -86
- package/dist/bubbles/workflow-bubble/pdf-ocr.workflow.d.ts +24 -24
- package/dist/bubbles/workflow-bubble/slack-data-assistant.workflow.d.ts +24 -24
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +44 -44
- package/dist/bubbles/workflow-bubble/slack-notifier.workflow.d.ts +4 -4
- package/dist/bubbles.json +1 -1
- 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
|
-
allowedOperations: ("
|
|
17
|
-
parameters: unknown[];
|
|
17
|
+
allowedOperations: ("SELECT" | "INSERT" | "UPDATE" | "DELETE" | "WITH" | "EXPLAIN" | "CREATE")[];
|
|
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
|
-
allowedOperations?: ("
|
|
25
|
-
parameters?: unknown[] | undefined;
|
|
25
|
+
allowedOperations?: ("SELECT" | "INSERT" | "UPDATE" | "DELETE" | "WITH" | "EXPLAIN" | "CREATE")[] | 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
|
-
allowedOperations: ("
|
|
91
|
-
parameters: unknown[];
|
|
91
|
+
allowedOperations: ("SELECT" | "INSERT" | "UPDATE" | "DELETE" | "WITH" | "EXPLAIN" | "CREATE")[];
|
|
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
|
-
allowedOperations?: ("
|
|
99
|
-
parameters?: unknown[] | undefined;
|
|
99
|
+
allowedOperations?: ("SELECT" | "INSERT" | "UPDATE" | "DELETE" | "WITH" | "EXPLAIN" | "CREATE")[] | 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.";
|
|
@@ -57,9 +57,9 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
57
57
|
operation: "search";
|
|
58
58
|
jql: string;
|
|
59
59
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
60
|
+
fields?: string[] | undefined;
|
|
60
61
|
limit?: number | undefined;
|
|
61
62
|
offset?: number | undefined;
|
|
62
|
-
fields?: string[] | undefined;
|
|
63
63
|
}>, import("zod").ZodObject<{
|
|
64
64
|
operation: import("zod").ZodLiteral<"get">;
|
|
65
65
|
key: import("zod").ZodString;
|
|
@@ -92,28 +92,28 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
92
92
|
credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>;
|
|
93
93
|
}, "strip", import("zod").ZodTypeAny, {
|
|
94
94
|
type: string;
|
|
95
|
-
operation: "create";
|
|
96
95
|
summary: string;
|
|
96
|
+
operation: "create";
|
|
97
97
|
project: string;
|
|
98
98
|
description?: string | undefined;
|
|
99
99
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
100
|
-
|
|
101
|
-
labels?: string[] | undefined;
|
|
100
|
+
priority?: string | undefined;
|
|
102
101
|
parent?: string | undefined;
|
|
102
|
+
labels?: string[] | undefined;
|
|
103
103
|
assignee?: string | undefined;
|
|
104
|
-
|
|
104
|
+
due_date?: string | undefined;
|
|
105
105
|
}, {
|
|
106
|
-
operation: "create";
|
|
107
106
|
summary: string;
|
|
107
|
+
operation: "create";
|
|
108
108
|
project: string;
|
|
109
109
|
type?: string | undefined;
|
|
110
110
|
description?: string | undefined;
|
|
111
111
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
112
|
-
|
|
113
|
-
labels?: string[] | undefined;
|
|
112
|
+
priority?: string | undefined;
|
|
114
113
|
parent?: string | undefined;
|
|
114
|
+
labels?: string[] | undefined;
|
|
115
115
|
assignee?: string | undefined;
|
|
116
|
-
|
|
116
|
+
due_date?: string | undefined;
|
|
117
117
|
}>, import("zod").ZodObject<{
|
|
118
118
|
operation: import("zod").ZodLiteral<"update">;
|
|
119
119
|
key: import("zod").ZodString;
|
|
@@ -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>;
|
|
@@ -142,31 +142,31 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
142
142
|
operation: "update";
|
|
143
143
|
description?: string | undefined;
|
|
144
144
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
145
|
-
|
|
145
|
+
priority?: string | undefined;
|
|
146
|
+
summary?: string | undefined;
|
|
146
147
|
labels?: {
|
|
147
148
|
set?: string[] | undefined;
|
|
148
|
-
add?: string[] | undefined;
|
|
149
149
|
remove?: string[] | undefined;
|
|
150
|
+
add?: string[] | undefined;
|
|
150
151
|
} | undefined;
|
|
151
|
-
summary?: string | 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
|
+
summary?: string | undefined;
|
|
161
162
|
labels?: {
|
|
162
163
|
set?: string[] | undefined;
|
|
163
|
-
add?: string[] | undefined;
|
|
164
164
|
remove?: string[] | undefined;
|
|
165
|
+
add?: string[] | undefined;
|
|
165
166
|
} | undefined;
|
|
166
|
-
summary?: string | 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">;
|
|
172
172
|
key: import("zod").ZodString;
|
|
@@ -1413,7 +1413,6 @@ 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;
|
|
1418
1417
|
fields?: import("zod").objectOutputType<{
|
|
1419
1418
|
summary: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -1752,6 +1751,7 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
1752
1751
|
total: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
1753
1752
|
}, import("zod").ZodTypeAny, "passthrough">>>;
|
|
1754
1753
|
}, import("zod").ZodTypeAny, "passthrough"> | undefined;
|
|
1754
|
+
key?: string | undefined;
|
|
1755
1755
|
changelog?: unknown;
|
|
1756
1756
|
transitions?: import("zod").objectOutputType<{
|
|
1757
1757
|
id: import("zod").ZodString;
|
|
@@ -1800,7 +1800,6 @@ 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;
|
|
1805
1804
|
fields?: import("zod").objectInputType<{
|
|
1806
1805
|
summary: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -2139,6 +2138,7 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
2139
2138
|
total: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
2140
2139
|
}, import("zod").ZodTypeAny, "passthrough">>>;
|
|
2141
2140
|
}, import("zod").ZodTypeAny, "passthrough"> | undefined;
|
|
2141
|
+
key?: string | undefined;
|
|
2142
2142
|
changelog?: unknown;
|
|
2143
2143
|
transitions?: import("zod").objectInputType<{
|
|
2144
2144
|
id: import("zod").ZodString;
|
|
@@ -2196,7 +2196,6 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
2196
2196
|
success: boolean;
|
|
2197
2197
|
operation: "search";
|
|
2198
2198
|
issues?: {
|
|
2199
|
-
key?: string | undefined;
|
|
2200
2199
|
id?: string | undefined;
|
|
2201
2200
|
fields?: import("zod").objectOutputType<{
|
|
2202
2201
|
summary: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -2535,6 +2534,7 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
2535
2534
|
total: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
2536
2535
|
}, import("zod").ZodTypeAny, "passthrough">>>;
|
|
2537
2536
|
}, import("zod").ZodTypeAny, "passthrough"> | undefined;
|
|
2537
|
+
key?: string | undefined;
|
|
2538
2538
|
changelog?: unknown;
|
|
2539
2539
|
transitions?: import("zod").objectOutputType<{
|
|
2540
2540
|
id: import("zod").ZodString;
|
|
@@ -2583,15 +2583,14 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
2583
2583
|
expand?: string | undefined;
|
|
2584
2584
|
self?: string | undefined;
|
|
2585
2585
|
}[] | undefined;
|
|
2586
|
-
total?: number | undefined;
|
|
2587
2586
|
limit?: number | undefined;
|
|
2588
2587
|
offset?: number | undefined;
|
|
2588
|
+
total?: number | undefined;
|
|
2589
2589
|
}, {
|
|
2590
2590
|
error: string;
|
|
2591
2591
|
success: boolean;
|
|
2592
2592
|
operation: "search";
|
|
2593
2593
|
issues?: {
|
|
2594
|
-
key?: string | undefined;
|
|
2595
2594
|
id?: string | undefined;
|
|
2596
2595
|
fields?: import("zod").objectInputType<{
|
|
2597
2596
|
summary: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -2930,6 +2929,7 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
2930
2929
|
total: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
2931
2930
|
}, import("zod").ZodTypeAny, "passthrough">>>;
|
|
2932
2931
|
}, import("zod").ZodTypeAny, "passthrough"> | undefined;
|
|
2932
|
+
key?: string | undefined;
|
|
2933
2933
|
changelog?: unknown;
|
|
2934
2934
|
transitions?: import("zod").objectInputType<{
|
|
2935
2935
|
id: import("zod").ZodString;
|
|
@@ -2978,9 +2978,9 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
2978
2978
|
expand?: string | undefined;
|
|
2979
2979
|
self?: string | undefined;
|
|
2980
2980
|
}[] | undefined;
|
|
2981
|
-
total?: number | undefined;
|
|
2982
2981
|
limit?: number | undefined;
|
|
2983
2982
|
offset?: number | undefined;
|
|
2983
|
+
total?: number | undefined;
|
|
2984
2984
|
}>, import("zod").ZodObject<{
|
|
2985
2985
|
operation: import("zod").ZodLiteral<"get">;
|
|
2986
2986
|
success: import("zod").ZodBoolean;
|
|
@@ -4130,7 +4130,6 @@ 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;
|
|
4135
4134
|
fields?: import("zod").objectOutputType<{
|
|
4136
4135
|
summary: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -4469,6 +4468,7 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
4469
4468
|
total: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
4470
4469
|
}, import("zod").ZodTypeAny, "passthrough">>>;
|
|
4471
4470
|
}, import("zod").ZodTypeAny, "passthrough"> | undefined;
|
|
4471
|
+
key?: string | undefined;
|
|
4472
4472
|
changelog?: unknown;
|
|
4473
4473
|
transitions?: import("zod").objectOutputType<{
|
|
4474
4474
|
id: import("zod").ZodString;
|
|
@@ -4517,7 +4517,6 @@ 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;
|
|
4522
4521
|
fields?: import("zod").objectInputType<{
|
|
4523
4522
|
summary: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -4856,6 +4855,7 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
4856
4855
|
total: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
4857
4856
|
}, import("zod").ZodTypeAny, "passthrough">>>;
|
|
4858
4857
|
}, import("zod").ZodTypeAny, "passthrough"> | undefined;
|
|
4858
|
+
key?: string | undefined;
|
|
4859
4859
|
changelog?: unknown;
|
|
4860
4860
|
transitions?: import("zod").objectInputType<{
|
|
4861
4861
|
id: import("zod").ZodString;
|
|
@@ -4910,7 +4910,6 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
4910
4910
|
success: boolean;
|
|
4911
4911
|
operation: "get";
|
|
4912
4912
|
issue?: {
|
|
4913
|
-
key?: string | undefined;
|
|
4914
4913
|
id?: string | undefined;
|
|
4915
4914
|
fields?: import("zod").objectOutputType<{
|
|
4916
4915
|
summary: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -5249,6 +5248,7 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
5249
5248
|
total: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
5250
5249
|
}, import("zod").ZodTypeAny, "passthrough">>>;
|
|
5251
5250
|
}, import("zod").ZodTypeAny, "passthrough"> | undefined;
|
|
5251
|
+
key?: string | undefined;
|
|
5252
5252
|
changelog?: unknown;
|
|
5253
5253
|
transitions?: import("zod").objectOutputType<{
|
|
5254
5254
|
id: import("zod").ZodString;
|
|
@@ -5302,7 +5302,6 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
5302
5302
|
success: boolean;
|
|
5303
5303
|
operation: "get";
|
|
5304
5304
|
issue?: {
|
|
5305
|
-
key?: string | undefined;
|
|
5306
5305
|
id?: string | undefined;
|
|
5307
5306
|
fields?: import("zod").objectInputType<{
|
|
5308
5307
|
summary: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -5641,6 +5640,7 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
5641
5640
|
total: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
5642
5641
|
}, import("zod").ZodTypeAny, "passthrough">>>;
|
|
5643
5642
|
}, import("zod").ZodTypeAny, "passthrough"> | undefined;
|
|
5643
|
+
key?: string | undefined;
|
|
5644
5644
|
changelog?: unknown;
|
|
5645
5645
|
transitions?: import("zod").objectInputType<{
|
|
5646
5646
|
id: import("zod").ZodString;
|
|
@@ -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
|
operation: "create";
|
|
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
|
operation: "create";
|
|
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<{
|
|
@@ -6266,7 +6266,6 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
6266
6266
|
error: string;
|
|
6267
6267
|
success: boolean;
|
|
6268
6268
|
operation: "get_comments";
|
|
6269
|
-
total?: number | undefined;
|
|
6270
6269
|
comments?: import("zod").objectOutputType<{
|
|
6271
6270
|
id: import("zod").ZodString;
|
|
6272
6271
|
author: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
|
|
@@ -6290,11 +6289,11 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
6290
6289
|
created: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6291
6290
|
updated: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6292
6291
|
}, import("zod").ZodTypeAny, "passthrough">[] | undefined;
|
|
6292
|
+
total?: number | undefined;
|
|
6293
6293
|
}, {
|
|
6294
6294
|
error: string;
|
|
6295
6295
|
success: boolean;
|
|
6296
6296
|
operation: "get_comments";
|
|
6297
|
-
total?: number | undefined;
|
|
6298
6297
|
comments?: import("zod").objectInputType<{
|
|
6299
6298
|
id: import("zod").ZodString;
|
|
6300
6299
|
author: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
|
|
@@ -6318,6 +6317,7 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
6318
6317
|
created: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6319
6318
|
updated: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6320
6319
|
}, import("zod").ZodTypeAny, "passthrough">[] | undefined;
|
|
6320
|
+
total?: number | undefined;
|
|
6321
6321
|
}>]>;
|
|
6322
6322
|
static readonly shortDescription = "Jira integration for issue tracking and project management";
|
|
6323
6323
|
static readonly longDescription = "\n Agent-friendly Jira integration with minimal required parameters and smart defaults.\n\n Core Operations:\n - search: Find issues using JQL queries\n - get: Get details for a specific issue\n - create: Create new issues with automatic ADF conversion\n - update: Modify existing issues with flexible label operations\n - transition: Change issue status by name (no ID lookup needed)\n\n Supporting Operations:\n - list_transitions: Get available status transitions\n - list_projects: Discover available projects\n - list_issue_types: Get issue types for a project\n - add_comment: Add a comment to an issue\n - get_comments: Retrieve comments for an issue\n\n Features:\n - Markdown or plain text descriptions/comments auto-converted to Atlassian Document Format (ADF)\n - Status transitions by name (e.g., \"Done\") instead of IDs\n - Flexible label operations (add/remove/set)\n - Smart defaults for 90% of use cases\n\n Authentication:\n - OAuth 2.0 (recommended): Connect via Atlassian OAuth for secure access\n - API token (legacy): Use email + API token for Basic auth\n - Secure credential injection at runtime\n ";
|