@bubblelab/bubble-core 0.1.127 → 0.1.128
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 +81 -80
- package/dist/bubbles/service-bubble/agi-inc.d.ts +20 -20
- package/dist/bubbles/service-bubble/ai-agent.d.ts +75 -77
- package/dist/bubbles/service-bubble/ai-agent.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/ai-agent.js +4 -91
- package/dist/bubbles/service-bubble/ai-agent.js.map +1 -1
- package/dist/bubbles/service-bubble/airtable.d.ts +76 -76
- package/dist/bubbles/service-bubble/apify/apify.d.ts +22 -22
- package/dist/bubbles/service-bubble/ashby/ashby.d.ts +2 -2
- package/dist/bubbles/service-bubble/ashby/ashby.schema.d.ts +2 -2
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +1 -1
- package/dist/bubbles/service-bubble/browserbase/browserbase.schema.d.ts +1 -1
- package/dist/bubbles/service-bubble/capability-pipeline.d.ts +15 -0
- package/dist/bubbles/service-bubble/capability-pipeline.d.ts.map +1 -0
- package/dist/bubbles/service-bubble/capability-pipeline.js +114 -0
- package/dist/bubbles/service-bubble/capability-pipeline.js.map +1 -0
- package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +14 -14
- package/dist/bubbles/service-bubble/crustdata/crustdata.schema.d.ts +32 -32
- package/dist/bubbles/service-bubble/firecrawl.d.ts +342 -342
- package/dist/bubbles/service-bubble/followupboss.d.ts +4 -4
- package/dist/bubbles/service-bubble/github.d.ts +60 -60
- package/dist/bubbles/service-bubble/gmail.d.ts +164 -164
- package/dist/bubbles/service-bubble/google-calendar.d.ts +6 -6
- package/dist/bubbles/service-bubble/google-drive.d.ts +40 -40
- package/dist/bubbles/service-bubble/http.d.ts +2 -2
- package/dist/bubbles/service-bubble/insforge-db.d.ts +8 -8
- package/dist/bubbles/service-bubble/jira/jira.d.ts +42 -42
- package/dist/bubbles/service-bubble/jira/jira.schema.d.ts +50 -50
- package/dist/bubbles/service-bubble/notion/notion.d.ts +848 -848
- package/dist/bubbles/service-bubble/postgresql.d.ts +8 -8
- package/dist/bubbles/service-bubble/slack/slack.d.ts +240 -240
- package/dist/bubbles/service-bubble/stripe/stripe.d.ts +24 -24
- package/dist/bubbles/service-bubble/stripe/stripe.schema.d.ts +28 -28
- package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +2 -2
- package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.schema.d.ts +2 -2
- package/dist/bubbles/tool-bubble/bubbleflow-validation-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +28 -28
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +300 -300
- package/dist/bubbles/tool-bubble/people-search-tool.d.ts +44 -44
- package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +10 -10
- package/dist/bubbles/tool-bubble/research-agent-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +52 -52
- package/dist/bubbles/tool-bubble/twitter-tool.d.ts +124 -124
- package/dist/bubbles/tool-bubble/yc-scraper-tool.d.ts +36 -36
- 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 +16 -16
- package/dist/bubbles/workflow-bubble/pdf-ocr.workflow.d.ts +16 -16
- package/dist/bubbles/workflow-bubble/slack-data-assistant.workflow.d.ts +2 -2
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +26 -26
- package/dist/bubbles.json +1 -1
- package/package.json +2 -2
|
@@ -71,13 +71,13 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
71
71
|
operation: "get";
|
|
72
72
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
73
73
|
fields?: string[] | undefined;
|
|
74
|
-
expand?: ("comments" | "
|
|
74
|
+
expand?: ("comments" | "transitions" | "changelog")[] | undefined;
|
|
75
75
|
}, {
|
|
76
76
|
key: string;
|
|
77
77
|
operation: "get";
|
|
78
78
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
79
79
|
fields?: string[] | undefined;
|
|
80
|
-
expand?: ("comments" | "
|
|
80
|
+
expand?: ("comments" | "transitions" | "changelog")[] | undefined;
|
|
81
81
|
}>, import("zod").ZodObject<{
|
|
82
82
|
operation: import("zod").ZodLiteral<"create">;
|
|
83
83
|
project: import("zod").ZodString;
|
|
@@ -126,12 +126,12 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
126
126
|
remove: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
|
|
127
127
|
set: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
|
|
128
128
|
}, "strip", import("zod").ZodTypeAny, {
|
|
129
|
-
remove?: string[] | undefined;
|
|
130
129
|
set?: string[] | undefined;
|
|
130
|
+
remove?: string[] | undefined;
|
|
131
131
|
add?: string[] | undefined;
|
|
132
132
|
}, {
|
|
133
|
-
remove?: string[] | undefined;
|
|
134
133
|
set?: string[] | undefined;
|
|
134
|
+
remove?: string[] | undefined;
|
|
135
135
|
add?: string[] | undefined;
|
|
136
136
|
}>>;
|
|
137
137
|
due_date: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -145,8 +145,8 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
145
145
|
priority?: string | undefined;
|
|
146
146
|
summary?: string | undefined;
|
|
147
147
|
labels?: {
|
|
148
|
-
remove?: string[] | undefined;
|
|
149
148
|
set?: string[] | undefined;
|
|
149
|
+
remove?: string[] | undefined;
|
|
150
150
|
add?: string[] | undefined;
|
|
151
151
|
} | undefined;
|
|
152
152
|
comment?: string | undefined;
|
|
@@ -160,8 +160,8 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
160
160
|
priority?: string | undefined;
|
|
161
161
|
summary?: string | undefined;
|
|
162
162
|
labels?: {
|
|
163
|
-
remove?: string[] | undefined;
|
|
164
163
|
set?: string[] | undefined;
|
|
164
|
+
remove?: string[] | undefined;
|
|
165
165
|
add?: string[] | undefined;
|
|
166
166
|
} | undefined;
|
|
167
167
|
comment?: string | 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
|
-
id?: string | undefined;
|
|
1417
1416
|
key?: string | undefined;
|
|
1417
|
+
id?: 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>;
|
|
@@ -1752,7 +1752,8 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
1752
1752
|
total: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
1753
1753
|
}, import("zod").ZodTypeAny, "passthrough">>>;
|
|
1754
1754
|
}, import("zod").ZodTypeAny, "passthrough"> | undefined;
|
|
1755
|
-
|
|
1755
|
+
expand?: string | undefined;
|
|
1756
|
+
self?: string | undefined;
|
|
1756
1757
|
transitions?: import("zod").objectOutputType<{
|
|
1757
1758
|
id: import("zod").ZodString;
|
|
1758
1759
|
name: import("zod").ZodString;
|
|
@@ -1797,11 +1798,10 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
1797
1798
|
}, import("zod").ZodTypeAny, "passthrough">>>;
|
|
1798
1799
|
}, import("zod").ZodTypeAny, "passthrough">>>;
|
|
1799
1800
|
}, import("zod").ZodTypeAny, "passthrough">[] | undefined;
|
|
1800
|
-
|
|
1801
|
-
self?: string | undefined;
|
|
1801
|
+
changelog?: unknown;
|
|
1802
1802
|
}, {
|
|
1803
|
-
id?: string | undefined;
|
|
1804
1803
|
key?: string | undefined;
|
|
1804
|
+
id?: 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>;
|
|
@@ -2139,7 +2139,8 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
2139
2139
|
total: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
2140
2140
|
}, import("zod").ZodTypeAny, "passthrough">>>;
|
|
2141
2141
|
}, import("zod").ZodTypeAny, "passthrough"> | undefined;
|
|
2142
|
-
|
|
2142
|
+
expand?: string | undefined;
|
|
2143
|
+
self?: string | undefined;
|
|
2143
2144
|
transitions?: import("zod").objectInputType<{
|
|
2144
2145
|
id: import("zod").ZodString;
|
|
2145
2146
|
name: import("zod").ZodString;
|
|
@@ -2184,8 +2185,7 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
2184
2185
|
}, import("zod").ZodTypeAny, "passthrough">>>;
|
|
2185
2186
|
}, import("zod").ZodTypeAny, "passthrough">>>;
|
|
2186
2187
|
}, import("zod").ZodTypeAny, "passthrough">[] | undefined;
|
|
2187
|
-
|
|
2188
|
-
self?: string | undefined;
|
|
2188
|
+
changelog?: unknown;
|
|
2189
2189
|
}>, "many">>;
|
|
2190
2190
|
total: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
2191
2191
|
offset: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
@@ -2196,8 +2196,8 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
2196
2196
|
success: boolean;
|
|
2197
2197
|
operation: "search";
|
|
2198
2198
|
issues?: {
|
|
2199
|
-
id?: string | undefined;
|
|
2200
2199
|
key?: string | undefined;
|
|
2200
|
+
id?: 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>;
|
|
@@ -2535,7 +2535,8 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
2535
2535
|
total: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
2536
2536
|
}, import("zod").ZodTypeAny, "passthrough">>>;
|
|
2537
2537
|
}, import("zod").ZodTypeAny, "passthrough"> | undefined;
|
|
2538
|
-
|
|
2538
|
+
expand?: string | undefined;
|
|
2539
|
+
self?: string | undefined;
|
|
2539
2540
|
transitions?: import("zod").objectOutputType<{
|
|
2540
2541
|
id: import("zod").ZodString;
|
|
2541
2542
|
name: import("zod").ZodString;
|
|
@@ -2580,8 +2581,7 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
2580
2581
|
}, import("zod").ZodTypeAny, "passthrough">>>;
|
|
2581
2582
|
}, import("zod").ZodTypeAny, "passthrough">>>;
|
|
2582
2583
|
}, import("zod").ZodTypeAny, "passthrough">[] | undefined;
|
|
2583
|
-
|
|
2584
|
-
self?: string | undefined;
|
|
2584
|
+
changelog?: unknown;
|
|
2585
2585
|
}[] | undefined;
|
|
2586
2586
|
limit?: number | undefined;
|
|
2587
2587
|
offset?: number | undefined;
|
|
@@ -2591,8 +2591,8 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
2591
2591
|
success: boolean;
|
|
2592
2592
|
operation: "search";
|
|
2593
2593
|
issues?: {
|
|
2594
|
-
id?: string | undefined;
|
|
2595
2594
|
key?: string | undefined;
|
|
2595
|
+
id?: 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>;
|
|
@@ -2930,7 +2930,8 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
2930
2930
|
total: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
2931
2931
|
}, import("zod").ZodTypeAny, "passthrough">>>;
|
|
2932
2932
|
}, import("zod").ZodTypeAny, "passthrough"> | undefined;
|
|
2933
|
-
|
|
2933
|
+
expand?: string | undefined;
|
|
2934
|
+
self?: string | undefined;
|
|
2934
2935
|
transitions?: import("zod").objectInputType<{
|
|
2935
2936
|
id: import("zod").ZodString;
|
|
2936
2937
|
name: import("zod").ZodString;
|
|
@@ -2975,8 +2976,7 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
2975
2976
|
}, import("zod").ZodTypeAny, "passthrough">>>;
|
|
2976
2977
|
}, import("zod").ZodTypeAny, "passthrough">>>;
|
|
2977
2978
|
}, import("zod").ZodTypeAny, "passthrough">[] | undefined;
|
|
2978
|
-
|
|
2979
|
-
self?: string | undefined;
|
|
2979
|
+
changelog?: unknown;
|
|
2980
2980
|
}[] | undefined;
|
|
2981
2981
|
limit?: number | undefined;
|
|
2982
2982
|
offset?: number | undefined;
|
|
@@ -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
|
-
id?: string | undefined;
|
|
4134
4133
|
key?: string | undefined;
|
|
4134
|
+
id?: 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>;
|
|
@@ -4469,7 +4469,8 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
4469
4469
|
total: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
4470
4470
|
}, import("zod").ZodTypeAny, "passthrough">>>;
|
|
4471
4471
|
}, import("zod").ZodTypeAny, "passthrough"> | undefined;
|
|
4472
|
-
|
|
4472
|
+
expand?: string | undefined;
|
|
4473
|
+
self?: string | undefined;
|
|
4473
4474
|
transitions?: import("zod").objectOutputType<{
|
|
4474
4475
|
id: import("zod").ZodString;
|
|
4475
4476
|
name: import("zod").ZodString;
|
|
@@ -4514,11 +4515,10 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
4514
4515
|
}, import("zod").ZodTypeAny, "passthrough">>>;
|
|
4515
4516
|
}, import("zod").ZodTypeAny, "passthrough">>>;
|
|
4516
4517
|
}, import("zod").ZodTypeAny, "passthrough">[] | undefined;
|
|
4517
|
-
|
|
4518
|
-
self?: string | undefined;
|
|
4518
|
+
changelog?: unknown;
|
|
4519
4519
|
}, {
|
|
4520
|
-
id?: string | undefined;
|
|
4521
4520
|
key?: string | undefined;
|
|
4521
|
+
id?: 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>;
|
|
@@ -4856,7 +4856,8 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
4856
4856
|
total: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
4857
4857
|
}, import("zod").ZodTypeAny, "passthrough">>>;
|
|
4858
4858
|
}, import("zod").ZodTypeAny, "passthrough"> | undefined;
|
|
4859
|
-
|
|
4859
|
+
expand?: string | undefined;
|
|
4860
|
+
self?: string | undefined;
|
|
4860
4861
|
transitions?: import("zod").objectInputType<{
|
|
4861
4862
|
id: import("zod").ZodString;
|
|
4862
4863
|
name: import("zod").ZodString;
|
|
@@ -4901,8 +4902,7 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
4901
4902
|
}, import("zod").ZodTypeAny, "passthrough">>>;
|
|
4902
4903
|
}, import("zod").ZodTypeAny, "passthrough">>>;
|
|
4903
4904
|
}, import("zod").ZodTypeAny, "passthrough">[] | undefined;
|
|
4904
|
-
|
|
4905
|
-
self?: string | undefined;
|
|
4905
|
+
changelog?: unknown;
|
|
4906
4906
|
}>>;
|
|
4907
4907
|
error: import("zod").ZodString;
|
|
4908
4908
|
}, "strip", import("zod").ZodTypeAny, {
|
|
@@ -4910,8 +4910,8 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
4910
4910
|
success: boolean;
|
|
4911
4911
|
operation: "get";
|
|
4912
4912
|
issue?: {
|
|
4913
|
-
id?: string | undefined;
|
|
4914
4913
|
key?: string | undefined;
|
|
4914
|
+
id?: 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>;
|
|
@@ -5249,7 +5249,8 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
5249
5249
|
total: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
5250
5250
|
}, import("zod").ZodTypeAny, "passthrough">>>;
|
|
5251
5251
|
}, import("zod").ZodTypeAny, "passthrough"> | undefined;
|
|
5252
|
-
|
|
5252
|
+
expand?: string | undefined;
|
|
5253
|
+
self?: string | undefined;
|
|
5253
5254
|
transitions?: import("zod").objectOutputType<{
|
|
5254
5255
|
id: import("zod").ZodString;
|
|
5255
5256
|
name: import("zod").ZodString;
|
|
@@ -5294,16 +5295,15 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
5294
5295
|
}, import("zod").ZodTypeAny, "passthrough">>>;
|
|
5295
5296
|
}, import("zod").ZodTypeAny, "passthrough">>>;
|
|
5296
5297
|
}, import("zod").ZodTypeAny, "passthrough">[] | undefined;
|
|
5297
|
-
|
|
5298
|
-
self?: string | undefined;
|
|
5298
|
+
changelog?: unknown;
|
|
5299
5299
|
} | undefined;
|
|
5300
5300
|
}, {
|
|
5301
5301
|
error: string;
|
|
5302
5302
|
success: boolean;
|
|
5303
5303
|
operation: "get";
|
|
5304
5304
|
issue?: {
|
|
5305
|
-
id?: string | undefined;
|
|
5306
5305
|
key?: string | undefined;
|
|
5306
|
+
id?: 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>;
|
|
@@ -5641,7 +5641,8 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
5641
5641
|
total: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
5642
5642
|
}, import("zod").ZodTypeAny, "passthrough">>>;
|
|
5643
5643
|
}, import("zod").ZodTypeAny, "passthrough"> | undefined;
|
|
5644
|
-
|
|
5644
|
+
expand?: string | undefined;
|
|
5645
|
+
self?: string | undefined;
|
|
5645
5646
|
transitions?: import("zod").objectInputType<{
|
|
5646
5647
|
id: import("zod").ZodString;
|
|
5647
5648
|
name: import("zod").ZodString;
|
|
@@ -5686,8 +5687,7 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
5686
5687
|
}, import("zod").ZodTypeAny, "passthrough">>>;
|
|
5687
5688
|
}, import("zod").ZodTypeAny, "passthrough">>>;
|
|
5688
5689
|
}, import("zod").ZodTypeAny, "passthrough">[] | undefined;
|
|
5689
|
-
|
|
5690
|
-
self?: string | undefined;
|
|
5690
|
+
changelog?: unknown;
|
|
5691
5691
|
} | undefined;
|
|
5692
5692
|
}>, import("zod").ZodObject<{
|
|
5693
5693
|
operation: import("zod").ZodLiteral<"create">;
|
|
@@ -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
|
-
id: string;
|
|
5701
5700
|
key: string;
|
|
5701
|
+
id: string;
|
|
5702
5702
|
self?: string | undefined;
|
|
5703
5703
|
}, {
|
|
5704
|
-
id: string;
|
|
5705
5704
|
key: string;
|
|
5705
|
+
id: 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
|
-
id: string;
|
|
5715
5714
|
key: string;
|
|
5715
|
+
id: 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
|
-
id: string;
|
|
5724
5723
|
key: string;
|
|
5724
|
+
id: string;
|
|
5725
5725
|
self?: string | undefined;
|
|
5726
5726
|
} | undefined;
|
|
5727
5727
|
}>, import("zod").ZodObject<{
|
|
@@ -1438,8 +1438,8 @@ export declare const JiraIssueSchema: z.ZodObject<{
|
|
|
1438
1438
|
}, z.ZodTypeAny, "passthrough">>, "many">>;
|
|
1439
1439
|
changelog: z.ZodOptional<z.ZodUnknown>;
|
|
1440
1440
|
}, "strip", z.ZodTypeAny, {
|
|
1441
|
-
id?: string | undefined;
|
|
1442
1441
|
key?: string | undefined;
|
|
1442
|
+
id?: string | undefined;
|
|
1443
1443
|
fields?: z.objectOutputType<{
|
|
1444
1444
|
summary: z.ZodOptional<z.ZodString>;
|
|
1445
1445
|
description: z.ZodOptional<z.ZodUnknown>;
|
|
@@ -1777,7 +1777,8 @@ export declare const JiraIssueSchema: z.ZodObject<{
|
|
|
1777
1777
|
total: z.ZodOptional<z.ZodNumber>;
|
|
1778
1778
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
1779
1779
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
1780
|
-
|
|
1780
|
+
expand?: string | undefined;
|
|
1781
|
+
self?: string | undefined;
|
|
1781
1782
|
transitions?: z.objectOutputType<{
|
|
1782
1783
|
id: z.ZodString;
|
|
1783
1784
|
name: z.ZodString;
|
|
@@ -1822,11 +1823,10 @@ export declare const JiraIssueSchema: z.ZodObject<{
|
|
|
1822
1823
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
1823
1824
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
1824
1825
|
}, z.ZodTypeAny, "passthrough">[] | undefined;
|
|
1825
|
-
|
|
1826
|
-
self?: string | undefined;
|
|
1826
|
+
changelog?: unknown;
|
|
1827
1827
|
}, {
|
|
1828
|
-
id?: string | undefined;
|
|
1829
1828
|
key?: string | undefined;
|
|
1829
|
+
id?: string | undefined;
|
|
1830
1830
|
fields?: z.objectInputType<{
|
|
1831
1831
|
summary: z.ZodOptional<z.ZodString>;
|
|
1832
1832
|
description: z.ZodOptional<z.ZodUnknown>;
|
|
@@ -2164,7 +2164,8 @@ export declare const JiraIssueSchema: z.ZodObject<{
|
|
|
2164
2164
|
total: z.ZodOptional<z.ZodNumber>;
|
|
2165
2165
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
2166
2166
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
2167
|
-
|
|
2167
|
+
expand?: string | undefined;
|
|
2168
|
+
self?: string | undefined;
|
|
2168
2169
|
transitions?: z.objectInputType<{
|
|
2169
2170
|
id: z.ZodString;
|
|
2170
2171
|
name: z.ZodString;
|
|
@@ -2209,8 +2210,7 @@ export declare const JiraIssueSchema: z.ZodObject<{
|
|
|
2209
2210
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
2210
2211
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
2211
2212
|
}, z.ZodTypeAny, "passthrough">[] | undefined;
|
|
2212
|
-
|
|
2213
|
-
self?: string | undefined;
|
|
2213
|
+
changelog?: unknown;
|
|
2214
2214
|
}>;
|
|
2215
2215
|
export declare const JiraParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject<{
|
|
2216
2216
|
operation: z.ZodLiteral<"search">;
|
|
@@ -2244,13 +2244,13 @@ export declare const JiraParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
2244
2244
|
operation: "get";
|
|
2245
2245
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
2246
2246
|
fields?: string[] | undefined;
|
|
2247
|
-
expand?: ("comments" | "
|
|
2247
|
+
expand?: ("comments" | "transitions" | "changelog")[] | undefined;
|
|
2248
2248
|
}, {
|
|
2249
2249
|
key: string;
|
|
2250
2250
|
operation: "get";
|
|
2251
2251
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
2252
2252
|
fields?: string[] | undefined;
|
|
2253
|
-
expand?: ("comments" | "
|
|
2253
|
+
expand?: ("comments" | "transitions" | "changelog")[] | undefined;
|
|
2254
2254
|
}>, z.ZodObject<{
|
|
2255
2255
|
operation: z.ZodLiteral<"create">;
|
|
2256
2256
|
project: z.ZodString;
|
|
@@ -2299,12 +2299,12 @@ export declare const JiraParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
2299
2299
|
remove: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2300
2300
|
set: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2301
2301
|
}, "strip", z.ZodTypeAny, {
|
|
2302
|
-
remove?: string[] | undefined;
|
|
2303
2302
|
set?: string[] | undefined;
|
|
2303
|
+
remove?: string[] | undefined;
|
|
2304
2304
|
add?: string[] | undefined;
|
|
2305
2305
|
}, {
|
|
2306
|
-
remove?: string[] | undefined;
|
|
2307
2306
|
set?: string[] | undefined;
|
|
2307
|
+
remove?: string[] | undefined;
|
|
2308
2308
|
add?: string[] | undefined;
|
|
2309
2309
|
}>>;
|
|
2310
2310
|
due_date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -2318,8 +2318,8 @@ export declare const JiraParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
2318
2318
|
priority?: string | undefined;
|
|
2319
2319
|
summary?: string | undefined;
|
|
2320
2320
|
labels?: {
|
|
2321
|
-
remove?: string[] | undefined;
|
|
2322
2321
|
set?: string[] | undefined;
|
|
2322
|
+
remove?: string[] | undefined;
|
|
2323
2323
|
add?: string[] | undefined;
|
|
2324
2324
|
} | undefined;
|
|
2325
2325
|
comment?: string | undefined;
|
|
@@ -2333,8 +2333,8 @@ export declare const JiraParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
2333
2333
|
priority?: string | undefined;
|
|
2334
2334
|
summary?: string | undefined;
|
|
2335
2335
|
labels?: {
|
|
2336
|
-
remove?: string[] | undefined;
|
|
2337
2336
|
set?: string[] | undefined;
|
|
2337
|
+
remove?: string[] | undefined;
|
|
2338
2338
|
add?: string[] | undefined;
|
|
2339
2339
|
} | undefined;
|
|
2340
2340
|
comment?: string | undefined;
|
|
@@ -3586,8 +3586,8 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
3586
3586
|
}, z.ZodTypeAny, "passthrough">>, "many">>;
|
|
3587
3587
|
changelog: z.ZodOptional<z.ZodUnknown>;
|
|
3588
3588
|
}, "strip", z.ZodTypeAny, {
|
|
3589
|
-
id?: string | undefined;
|
|
3590
3589
|
key?: string | undefined;
|
|
3590
|
+
id?: string | undefined;
|
|
3591
3591
|
fields?: z.objectOutputType<{
|
|
3592
3592
|
summary: z.ZodOptional<z.ZodString>;
|
|
3593
3593
|
description: z.ZodOptional<z.ZodUnknown>;
|
|
@@ -3925,7 +3925,8 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
3925
3925
|
total: z.ZodOptional<z.ZodNumber>;
|
|
3926
3926
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
3927
3927
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
3928
|
-
|
|
3928
|
+
expand?: string | undefined;
|
|
3929
|
+
self?: string | undefined;
|
|
3929
3930
|
transitions?: z.objectOutputType<{
|
|
3930
3931
|
id: z.ZodString;
|
|
3931
3932
|
name: z.ZodString;
|
|
@@ -3970,11 +3971,10 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
3970
3971
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
3971
3972
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
3972
3973
|
}, z.ZodTypeAny, "passthrough">[] | undefined;
|
|
3973
|
-
|
|
3974
|
-
self?: string | undefined;
|
|
3974
|
+
changelog?: unknown;
|
|
3975
3975
|
}, {
|
|
3976
|
-
id?: string | undefined;
|
|
3977
3976
|
key?: string | undefined;
|
|
3977
|
+
id?: string | undefined;
|
|
3978
3978
|
fields?: z.objectInputType<{
|
|
3979
3979
|
summary: z.ZodOptional<z.ZodString>;
|
|
3980
3980
|
description: z.ZodOptional<z.ZodUnknown>;
|
|
@@ -4312,7 +4312,8 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
4312
4312
|
total: z.ZodOptional<z.ZodNumber>;
|
|
4313
4313
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
4314
4314
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
4315
|
-
|
|
4315
|
+
expand?: string | undefined;
|
|
4316
|
+
self?: string | undefined;
|
|
4316
4317
|
transitions?: z.objectInputType<{
|
|
4317
4318
|
id: z.ZodString;
|
|
4318
4319
|
name: z.ZodString;
|
|
@@ -4357,8 +4358,7 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
4357
4358
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
4358
4359
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
4359
4360
|
}, z.ZodTypeAny, "passthrough">[] | undefined;
|
|
4360
|
-
|
|
4361
|
-
self?: string | undefined;
|
|
4361
|
+
changelog?: unknown;
|
|
4362
4362
|
}>, "many">>;
|
|
4363
4363
|
total: z.ZodOptional<z.ZodNumber>;
|
|
4364
4364
|
offset: z.ZodOptional<z.ZodNumber>;
|
|
@@ -4369,8 +4369,8 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
4369
4369
|
success: boolean;
|
|
4370
4370
|
operation: "search";
|
|
4371
4371
|
issues?: {
|
|
4372
|
-
id?: string | undefined;
|
|
4373
4372
|
key?: string | undefined;
|
|
4373
|
+
id?: string | undefined;
|
|
4374
4374
|
fields?: z.objectOutputType<{
|
|
4375
4375
|
summary: z.ZodOptional<z.ZodString>;
|
|
4376
4376
|
description: z.ZodOptional<z.ZodUnknown>;
|
|
@@ -4708,7 +4708,8 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
4708
4708
|
total: z.ZodOptional<z.ZodNumber>;
|
|
4709
4709
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
4710
4710
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
4711
|
-
|
|
4711
|
+
expand?: string | undefined;
|
|
4712
|
+
self?: string | undefined;
|
|
4712
4713
|
transitions?: z.objectOutputType<{
|
|
4713
4714
|
id: z.ZodString;
|
|
4714
4715
|
name: z.ZodString;
|
|
@@ -4753,8 +4754,7 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
4753
4754
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
4754
4755
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
4755
4756
|
}, z.ZodTypeAny, "passthrough">[] | undefined;
|
|
4756
|
-
|
|
4757
|
-
self?: string | undefined;
|
|
4757
|
+
changelog?: unknown;
|
|
4758
4758
|
}[] | undefined;
|
|
4759
4759
|
limit?: number | undefined;
|
|
4760
4760
|
offset?: number | undefined;
|
|
@@ -4764,8 +4764,8 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
4764
4764
|
success: boolean;
|
|
4765
4765
|
operation: "search";
|
|
4766
4766
|
issues?: {
|
|
4767
|
-
id?: string | undefined;
|
|
4768
4767
|
key?: string | undefined;
|
|
4768
|
+
id?: string | undefined;
|
|
4769
4769
|
fields?: z.objectInputType<{
|
|
4770
4770
|
summary: z.ZodOptional<z.ZodString>;
|
|
4771
4771
|
description: z.ZodOptional<z.ZodUnknown>;
|
|
@@ -5103,7 +5103,8 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
5103
5103
|
total: z.ZodOptional<z.ZodNumber>;
|
|
5104
5104
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
5105
5105
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
5106
|
-
|
|
5106
|
+
expand?: string | undefined;
|
|
5107
|
+
self?: string | undefined;
|
|
5107
5108
|
transitions?: z.objectInputType<{
|
|
5108
5109
|
id: z.ZodString;
|
|
5109
5110
|
name: z.ZodString;
|
|
@@ -5148,8 +5149,7 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
5148
5149
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
5149
5150
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
5150
5151
|
}, z.ZodTypeAny, "passthrough">[] | undefined;
|
|
5151
|
-
|
|
5152
|
-
self?: string | undefined;
|
|
5152
|
+
changelog?: unknown;
|
|
5153
5153
|
}[] | undefined;
|
|
5154
5154
|
limit?: number | undefined;
|
|
5155
5155
|
offset?: number | undefined;
|
|
@@ -6303,8 +6303,8 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
6303
6303
|
}, z.ZodTypeAny, "passthrough">>, "many">>;
|
|
6304
6304
|
changelog: z.ZodOptional<z.ZodUnknown>;
|
|
6305
6305
|
}, "strip", z.ZodTypeAny, {
|
|
6306
|
-
id?: string | undefined;
|
|
6307
6306
|
key?: string | undefined;
|
|
6307
|
+
id?: string | undefined;
|
|
6308
6308
|
fields?: z.objectOutputType<{
|
|
6309
6309
|
summary: z.ZodOptional<z.ZodString>;
|
|
6310
6310
|
description: z.ZodOptional<z.ZodUnknown>;
|
|
@@ -6642,7 +6642,8 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
6642
6642
|
total: z.ZodOptional<z.ZodNumber>;
|
|
6643
6643
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
6644
6644
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
6645
|
-
|
|
6645
|
+
expand?: string | undefined;
|
|
6646
|
+
self?: string | undefined;
|
|
6646
6647
|
transitions?: z.objectOutputType<{
|
|
6647
6648
|
id: z.ZodString;
|
|
6648
6649
|
name: z.ZodString;
|
|
@@ -6687,11 +6688,10 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
6687
6688
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
6688
6689
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
6689
6690
|
}, z.ZodTypeAny, "passthrough">[] | undefined;
|
|
6690
|
-
|
|
6691
|
-
self?: string | undefined;
|
|
6691
|
+
changelog?: unknown;
|
|
6692
6692
|
}, {
|
|
6693
|
-
id?: string | undefined;
|
|
6694
6693
|
key?: string | undefined;
|
|
6694
|
+
id?: string | undefined;
|
|
6695
6695
|
fields?: z.objectInputType<{
|
|
6696
6696
|
summary: z.ZodOptional<z.ZodString>;
|
|
6697
6697
|
description: z.ZodOptional<z.ZodUnknown>;
|
|
@@ -7029,7 +7029,8 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
7029
7029
|
total: z.ZodOptional<z.ZodNumber>;
|
|
7030
7030
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
7031
7031
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
7032
|
-
|
|
7032
|
+
expand?: string | undefined;
|
|
7033
|
+
self?: string | undefined;
|
|
7033
7034
|
transitions?: z.objectInputType<{
|
|
7034
7035
|
id: z.ZodString;
|
|
7035
7036
|
name: z.ZodString;
|
|
@@ -7074,8 +7075,7 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
7074
7075
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
7075
7076
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
7076
7077
|
}, z.ZodTypeAny, "passthrough">[] | undefined;
|
|
7077
|
-
|
|
7078
|
-
self?: string | undefined;
|
|
7078
|
+
changelog?: unknown;
|
|
7079
7079
|
}>>;
|
|
7080
7080
|
error: z.ZodString;
|
|
7081
7081
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -7083,8 +7083,8 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
7083
7083
|
success: boolean;
|
|
7084
7084
|
operation: "get";
|
|
7085
7085
|
issue?: {
|
|
7086
|
-
id?: string | undefined;
|
|
7087
7086
|
key?: string | undefined;
|
|
7087
|
+
id?: string | undefined;
|
|
7088
7088
|
fields?: z.objectOutputType<{
|
|
7089
7089
|
summary: z.ZodOptional<z.ZodString>;
|
|
7090
7090
|
description: z.ZodOptional<z.ZodUnknown>;
|
|
@@ -7422,7 +7422,8 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
7422
7422
|
total: z.ZodOptional<z.ZodNumber>;
|
|
7423
7423
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
7424
7424
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
7425
|
-
|
|
7425
|
+
expand?: string | undefined;
|
|
7426
|
+
self?: string | undefined;
|
|
7426
7427
|
transitions?: z.objectOutputType<{
|
|
7427
7428
|
id: z.ZodString;
|
|
7428
7429
|
name: z.ZodString;
|
|
@@ -7467,16 +7468,15 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
7467
7468
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
7468
7469
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
7469
7470
|
}, z.ZodTypeAny, "passthrough">[] | undefined;
|
|
7470
|
-
|
|
7471
|
-
self?: string | undefined;
|
|
7471
|
+
changelog?: unknown;
|
|
7472
7472
|
} | undefined;
|
|
7473
7473
|
}, {
|
|
7474
7474
|
error: string;
|
|
7475
7475
|
success: boolean;
|
|
7476
7476
|
operation: "get";
|
|
7477
7477
|
issue?: {
|
|
7478
|
-
id?: string | undefined;
|
|
7479
7478
|
key?: string | undefined;
|
|
7479
|
+
id?: string | undefined;
|
|
7480
7480
|
fields?: z.objectInputType<{
|
|
7481
7481
|
summary: z.ZodOptional<z.ZodString>;
|
|
7482
7482
|
description: z.ZodOptional<z.ZodUnknown>;
|
|
@@ -7814,7 +7814,8 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
7814
7814
|
total: z.ZodOptional<z.ZodNumber>;
|
|
7815
7815
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
7816
7816
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
7817
|
-
|
|
7817
|
+
expand?: string | undefined;
|
|
7818
|
+
self?: string | undefined;
|
|
7818
7819
|
transitions?: z.objectInputType<{
|
|
7819
7820
|
id: z.ZodString;
|
|
7820
7821
|
name: z.ZodString;
|
|
@@ -7859,8 +7860,7 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
7859
7860
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
7860
7861
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
7861
7862
|
}, z.ZodTypeAny, "passthrough">[] | undefined;
|
|
7862
|
-
|
|
7863
|
-
self?: string | undefined;
|
|
7863
|
+
changelog?: unknown;
|
|
7864
7864
|
} | undefined;
|
|
7865
7865
|
}>, z.ZodObject<{
|
|
7866
7866
|
operation: z.ZodLiteral<"create">;
|
|
@@ -7870,12 +7870,12 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
7870
7870
|
key: z.ZodString;
|
|
7871
7871
|
self: z.ZodOptional<z.ZodString>;
|
|
7872
7872
|
}, "strip", z.ZodTypeAny, {
|
|
7873
|
-
id: string;
|
|
7874
7873
|
key: string;
|
|
7874
|
+
id: string;
|
|
7875
7875
|
self?: string | undefined;
|
|
7876
7876
|
}, {
|
|
7877
|
-
id: string;
|
|
7878
7877
|
key: string;
|
|
7878
|
+
id: string;
|
|
7879
7879
|
self?: string | undefined;
|
|
7880
7880
|
}>>;
|
|
7881
7881
|
error: z.ZodString;
|
|
@@ -7884,8 +7884,8 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
7884
7884
|
success: boolean;
|
|
7885
7885
|
operation: "create";
|
|
7886
7886
|
issue?: {
|
|
7887
|
-
id: string;
|
|
7888
7887
|
key: string;
|
|
7888
|
+
id: string;
|
|
7889
7889
|
self?: string | undefined;
|
|
7890
7890
|
} | undefined;
|
|
7891
7891
|
}, {
|
|
@@ -7893,8 +7893,8 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
7893
7893
|
success: boolean;
|
|
7894
7894
|
operation: "create";
|
|
7895
7895
|
issue?: {
|
|
7896
|
-
id: string;
|
|
7897
7896
|
key: string;
|
|
7897
|
+
id: string;
|
|
7898
7898
|
self?: string | undefined;
|
|
7899
7899
|
} | undefined;
|
|
7900
7900
|
}>, z.ZodObject<{
|