@bubblelab/bubble-core 0.1.78 → 0.1.79

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.
Files changed (47) hide show
  1. package/dist/bubble-bundle.d.ts +74 -74
  2. package/dist/bubbles/service-bubble/ai-agent.d.ts +56 -56
  3. package/dist/bubbles/service-bubble/airtable.d.ts +92 -92
  4. package/dist/bubbles/service-bubble/apify/apify.d.ts +10 -10
  5. package/dist/bubbles/service-bubble/ashby/ashby.d.ts +2 -2
  6. package/dist/bubbles/service-bubble/ashby/ashby.schema.d.ts +2 -2
  7. package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +4 -4
  8. package/dist/bubbles/service-bubble/crustdata/crustdata.schema.d.ts +8 -8
  9. package/dist/bubbles/service-bubble/firecrawl.d.ts +242 -242
  10. package/dist/bubbles/service-bubble/followupboss.d.ts +4 -4
  11. package/dist/bubbles/service-bubble/github.d.ts +40 -40
  12. package/dist/bubbles/service-bubble/gmail.d.ts +124 -124
  13. package/dist/bubbles/service-bubble/http.d.ts +8 -8
  14. package/dist/bubbles/service-bubble/insforge-db.d.ts +8 -8
  15. package/dist/bubbles/service-bubble/jira/jira.d.ts +8 -8
  16. package/dist/bubbles/service-bubble/jira/jira.schema.d.ts +10 -10
  17. package/dist/bubbles/service-bubble/notion/notion.d.ts +453 -453
  18. package/dist/bubbles/service-bubble/postgresql.d.ts +8 -8
  19. package/dist/bubbles/service-bubble/resend.d.ts +4 -4
  20. package/dist/bubbles/service-bubble/slack/slack.d.ts +286 -286
  21. package/dist/bubbles/service-bubble/stripe/stripe.d.ts +4 -4
  22. package/dist/bubbles/service-bubble/stripe/stripe.schema.d.ts +4 -4
  23. package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +2 -2
  24. package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.schema.d.ts +2 -2
  25. package/dist/bubbles/tool-bubble/bubbleflow-validation-tool.d.ts +8 -8
  26. package/dist/bubbles/tool-bubble/chart-js-tool.d.ts +12 -12
  27. package/dist/bubbles/tool-bubble/code-edit-tool.d.ts +8 -8
  28. package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +52 -52
  29. package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +8 -8
  30. package/dist/bubbles/tool-bubble/research-agent-tool.d.ts +10 -10
  31. package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +8 -8
  32. package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +8 -8
  33. package/dist/bubbles/tool-bubble/tool-template.d.ts +8 -8
  34. package/dist/bubbles/tool-bubble/twitter-tool.d.ts +36 -36
  35. package/dist/bubbles/tool-bubble/web-crawl-tool.d.ts +4 -4
  36. package/dist/bubbles/tool-bubble/web-extract-tool.d.ts +4 -4
  37. package/dist/bubbles/tool-bubble/web-scrape-tool.d.ts +8 -8
  38. package/dist/bubbles/tool-bubble/youtube-tool.d.ts +10 -10
  39. package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +18 -18
  40. package/dist/bubbles/workflow-bubble/parse-document.workflow.d.ts +18 -18
  41. package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +30 -30
  42. package/dist/bubbles/workflow-bubble/pdf-ocr.workflow.d.ts +20 -20
  43. package/dist/bubbles/workflow-bubble/slack-data-assistant.workflow.d.ts +24 -24
  44. package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +128 -128
  45. package/dist/bubbles/workflow-bubble/slack-notifier.workflow.d.ts +10 -10
  46. package/dist/bubbles.json +29 -9
  47. package/package.json +2 -2
@@ -17,7 +17,7 @@ declare const HttpParamsSchema: z.ZodObject<{
17
17
  timeout: number;
18
18
  method: "POST" | "DELETE" | "GET" | "PUT" | "PATCH" | "HEAD" | "OPTIONS";
19
19
  followRedirects: boolean;
20
- authType: "custom" | "none" | "bearer" | "basic" | "api-key" | "api-key-header";
20
+ authType: "none" | "custom" | "bearer" | "basic" | "api-key" | "api-key-header";
21
21
  credentials?: Partial<Record<CredentialType, string>> | undefined;
22
22
  headers?: Record<string, string> | undefined;
23
23
  body?: string | Record<string, unknown> | undefined;
@@ -30,7 +30,7 @@ declare const HttpParamsSchema: z.ZodObject<{
30
30
  method?: "POST" | "DELETE" | "GET" | "PUT" | "PATCH" | "HEAD" | "OPTIONS" | undefined;
31
31
  body?: string | Record<string, unknown> | undefined;
32
32
  followRedirects?: boolean | undefined;
33
- authType?: "custom" | "none" | "bearer" | "basic" | "api-key" | "api-key-header" | undefined;
33
+ authType?: "none" | "custom" | "bearer" | "basic" | "api-key" | "api-key-header" | undefined;
34
34
  authHeader?: string | undefined;
35
35
  }>;
36
36
  type HttpParamsInput = z.input<typeof HttpParamsSchema>;
@@ -49,8 +49,8 @@ declare const HttpResultSchema: z.ZodObject<{
49
49
  status: number;
50
50
  error: string;
51
51
  success: boolean;
52
- size: number;
53
52
  headers: Record<string, string>;
53
+ size: number;
54
54
  body: string;
55
55
  statusText: string;
56
56
  responseTime: number;
@@ -59,8 +59,8 @@ declare const HttpResultSchema: z.ZodObject<{
59
59
  status: number;
60
60
  error: string;
61
61
  success: boolean;
62
- size: number;
63
62
  headers: Record<string, string>;
63
+ size: number;
64
64
  body: string;
65
65
  statusText: string;
66
66
  responseTime: number;
@@ -87,7 +87,7 @@ export declare class HttpBubble extends ServiceBubble<HttpParams, HttpResult> {
87
87
  timeout: number;
88
88
  method: "POST" | "DELETE" | "GET" | "PUT" | "PATCH" | "HEAD" | "OPTIONS";
89
89
  followRedirects: boolean;
90
- authType: "custom" | "none" | "bearer" | "basic" | "api-key" | "api-key-header";
90
+ authType: "none" | "custom" | "bearer" | "basic" | "api-key" | "api-key-header";
91
91
  credentials?: Partial<Record<CredentialType, string>> | undefined;
92
92
  headers?: Record<string, string> | undefined;
93
93
  body?: string | Record<string, unknown> | undefined;
@@ -100,7 +100,7 @@ export declare class HttpBubble extends ServiceBubble<HttpParams, HttpResult> {
100
100
  method?: "POST" | "DELETE" | "GET" | "PUT" | "PATCH" | "HEAD" | "OPTIONS" | undefined;
101
101
  body?: string | Record<string, unknown> | undefined;
102
102
  followRedirects?: boolean | undefined;
103
- authType?: "custom" | "none" | "bearer" | "basic" | "api-key" | "api-key-header" | undefined;
103
+ authType?: "none" | "custom" | "bearer" | "basic" | "api-key" | "api-key-header" | undefined;
104
104
  authHeader?: string | undefined;
105
105
  }>;
106
106
  static readonly resultSchema: z.ZodObject<{
@@ -117,8 +117,8 @@ export declare class HttpBubble extends ServiceBubble<HttpParams, HttpResult> {
117
117
  status: number;
118
118
  error: string;
119
119
  success: boolean;
120
- size: number;
121
120
  headers: Record<string, string>;
121
+ size: number;
122
122
  body: string;
123
123
  statusText: string;
124
124
  responseTime: number;
@@ -127,8 +127,8 @@ export declare class HttpBubble extends ServiceBubble<HttpParams, HttpResult> {
127
127
  status: number;
128
128
  error: string;
129
129
  success: boolean;
130
- size: number;
131
130
  headers: Record<string, string>;
131
+ size: number;
132
132
  body: string;
133
133
  statusText: string;
134
134
  responseTime: number;
@@ -11,17 +11,17 @@ 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
- timeout: number;
15
14
  parameters: unknown[];
15
+ timeout: number;
16
16
  query: string;
17
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
- parameters?: unknown[] | undefined;
25
25
  allowedOperations?: ("SELECT" | "INSERT" | "UPDATE" | "DELETE" | "WITH" | "EXPLAIN" | "CREATE")[] | undefined;
26
26
  maxRows?: number | undefined;
27
27
  }>;
@@ -36,17 +36,17 @@ 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
- executionTime: number;
42
42
  rows: Record<string, unknown>[];
43
43
  rowCount: number | null;
44
44
  command: string;
45
45
  cleanedJSONString: string;
46
46
  }, {
47
+ executionTime: number;
47
48
  error: string;
48
49
  success: boolean;
49
- executionTime: number;
50
50
  rows: Record<string, unknown>[];
51
51
  rowCount: number | null;
52
52
  command: string;
@@ -85,17 +85,17 @@ 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
- timeout: number;
89
88
  parameters: unknown[];
89
+ timeout: number;
90
90
  query: string;
91
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
- parameters?: unknown[] | undefined;
99
99
  allowedOperations?: ("SELECT" | "INSERT" | "UPDATE" | "DELETE" | "WITH" | "EXPLAIN" | "CREATE")[] | undefined;
100
100
  maxRows?: number | undefined;
101
101
  }>;
@@ -108,17 +108,17 @@ 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
- executionTime: number;
114
114
  rows: Record<string, unknown>[];
115
115
  rowCount: number | null;
116
116
  command: string;
117
117
  cleanedJSONString: string;
118
118
  }, {
119
+ executionTime: number;
119
120
  error: string;
120
121
  success: boolean;
121
- executionTime: number;
122
122
  rows: Record<string, unknown>[];
123
123
  rowCount: number | null;
124
124
  command: string;
@@ -1413,6 +1413,7 @@ 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;
1416
1417
  fields?: import("zod").objectOutputType<{
1417
1418
  summary: import("zod").ZodOptional<import("zod").ZodString>;
1418
1419
  description: import("zod").ZodOptional<import("zod").ZodUnknown>;
@@ -1750,7 +1751,6 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
1750
1751
  total: import("zod").ZodOptional<import("zod").ZodNumber>;
1751
1752
  }, import("zod").ZodTypeAny, "passthrough">>>;
1752
1753
  }, import("zod").ZodTypeAny, "passthrough"> | undefined;
1753
- id?: string | undefined;
1754
1754
  key?: string | undefined;
1755
1755
  changelog?: unknown;
1756
1756
  transitions?: import("zod").objectOutputType<{
@@ -1800,6 +1800,7 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
1800
1800
  expand?: string | undefined;
1801
1801
  self?: string | undefined;
1802
1802
  }, {
1803
+ id?: string | undefined;
1803
1804
  fields?: import("zod").objectInputType<{
1804
1805
  summary: import("zod").ZodOptional<import("zod").ZodString>;
1805
1806
  description: import("zod").ZodOptional<import("zod").ZodUnknown>;
@@ -2137,7 +2138,6 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
2137
2138
  total: import("zod").ZodOptional<import("zod").ZodNumber>;
2138
2139
  }, import("zod").ZodTypeAny, "passthrough">>>;
2139
2140
  }, import("zod").ZodTypeAny, "passthrough"> | undefined;
2140
- id?: string | undefined;
2141
2141
  key?: string | undefined;
2142
2142
  changelog?: unknown;
2143
2143
  transitions?: import("zod").objectInputType<{
@@ -2196,6 +2196,7 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
2196
2196
  success: boolean;
2197
2197
  operation: "search";
2198
2198
  issues?: {
2199
+ id?: string | undefined;
2199
2200
  fields?: import("zod").objectOutputType<{
2200
2201
  summary: import("zod").ZodOptional<import("zod").ZodString>;
2201
2202
  description: import("zod").ZodOptional<import("zod").ZodUnknown>;
@@ -2533,7 +2534,6 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
2533
2534
  total: import("zod").ZodOptional<import("zod").ZodNumber>;
2534
2535
  }, import("zod").ZodTypeAny, "passthrough">>>;
2535
2536
  }, import("zod").ZodTypeAny, "passthrough"> | undefined;
2536
- id?: string | undefined;
2537
2537
  key?: string | undefined;
2538
2538
  changelog?: unknown;
2539
2539
  transitions?: import("zod").objectOutputType<{
@@ -2591,6 +2591,7 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
2591
2591
  success: boolean;
2592
2592
  operation: "search";
2593
2593
  issues?: {
2594
+ id?: string | undefined;
2594
2595
  fields?: import("zod").objectInputType<{
2595
2596
  summary: import("zod").ZodOptional<import("zod").ZodString>;
2596
2597
  description: import("zod").ZodOptional<import("zod").ZodUnknown>;
@@ -2928,7 +2929,6 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
2928
2929
  total: import("zod").ZodOptional<import("zod").ZodNumber>;
2929
2930
  }, import("zod").ZodTypeAny, "passthrough">>>;
2930
2931
  }, import("zod").ZodTypeAny, "passthrough"> | undefined;
2931
- id?: string | undefined;
2932
2932
  key?: string | undefined;
2933
2933
  changelog?: unknown;
2934
2934
  transitions?: import("zod").objectInputType<{
@@ -4130,6 +4130,7 @@ 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;
4133
4134
  fields?: import("zod").objectOutputType<{
4134
4135
  summary: import("zod").ZodOptional<import("zod").ZodString>;
4135
4136
  description: import("zod").ZodOptional<import("zod").ZodUnknown>;
@@ -4467,7 +4468,6 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
4467
4468
  total: import("zod").ZodOptional<import("zod").ZodNumber>;
4468
4469
  }, import("zod").ZodTypeAny, "passthrough">>>;
4469
4470
  }, import("zod").ZodTypeAny, "passthrough"> | undefined;
4470
- id?: string | undefined;
4471
4471
  key?: string | undefined;
4472
4472
  changelog?: unknown;
4473
4473
  transitions?: import("zod").objectOutputType<{
@@ -4517,6 +4517,7 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
4517
4517
  expand?: string | undefined;
4518
4518
  self?: string | undefined;
4519
4519
  }, {
4520
+ id?: string | undefined;
4520
4521
  fields?: import("zod").objectInputType<{
4521
4522
  summary: import("zod").ZodOptional<import("zod").ZodString>;
4522
4523
  description: import("zod").ZodOptional<import("zod").ZodUnknown>;
@@ -4854,7 +4855,6 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
4854
4855
  total: import("zod").ZodOptional<import("zod").ZodNumber>;
4855
4856
  }, import("zod").ZodTypeAny, "passthrough">>>;
4856
4857
  }, import("zod").ZodTypeAny, "passthrough"> | undefined;
4857
- id?: string | undefined;
4858
4858
  key?: string | undefined;
4859
4859
  changelog?: unknown;
4860
4860
  transitions?: import("zod").objectInputType<{
@@ -4910,6 +4910,7 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
4910
4910
  success: boolean;
4911
4911
  operation: "get";
4912
4912
  issue?: {
4913
+ id?: string | undefined;
4913
4914
  fields?: import("zod").objectOutputType<{
4914
4915
  summary: import("zod").ZodOptional<import("zod").ZodString>;
4915
4916
  description: import("zod").ZodOptional<import("zod").ZodUnknown>;
@@ -5247,7 +5248,6 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
5247
5248
  total: import("zod").ZodOptional<import("zod").ZodNumber>;
5248
5249
  }, import("zod").ZodTypeAny, "passthrough">>>;
5249
5250
  }, import("zod").ZodTypeAny, "passthrough"> | undefined;
5250
- id?: string | undefined;
5251
5251
  key?: string | undefined;
5252
5252
  changelog?: unknown;
5253
5253
  transitions?: import("zod").objectOutputType<{
@@ -5302,6 +5302,7 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
5302
5302
  success: boolean;
5303
5303
  operation: "get";
5304
5304
  issue?: {
5305
+ id?: string | undefined;
5305
5306
  fields?: import("zod").objectInputType<{
5306
5307
  summary: import("zod").ZodOptional<import("zod").ZodString>;
5307
5308
  description: import("zod").ZodOptional<import("zod").ZodUnknown>;
@@ -5639,7 +5640,6 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
5639
5640
  total: import("zod").ZodOptional<import("zod").ZodNumber>;
5640
5641
  }, import("zod").ZodTypeAny, "passthrough">>>;
5641
5642
  }, import("zod").ZodTypeAny, "passthrough"> | undefined;
5642
- id?: string | undefined;
5643
5643
  key?: string | undefined;
5644
5644
  changelog?: unknown;
5645
5645
  transitions?: import("zod").objectInputType<{
@@ -1438,6 +1438,7 @@ 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;
1441
1442
  fields?: z.objectOutputType<{
1442
1443
  summary: z.ZodOptional<z.ZodString>;
1443
1444
  description: z.ZodOptional<z.ZodUnknown>;
@@ -1775,7 +1776,6 @@ export declare const JiraIssueSchema: z.ZodObject<{
1775
1776
  total: z.ZodOptional<z.ZodNumber>;
1776
1777
  }, z.ZodTypeAny, "passthrough">>>;
1777
1778
  }, z.ZodTypeAny, "passthrough"> | undefined;
1778
- id?: string | undefined;
1779
1779
  key?: string | undefined;
1780
1780
  changelog?: unknown;
1781
1781
  transitions?: z.objectOutputType<{
@@ -1825,6 +1825,7 @@ export declare const JiraIssueSchema: z.ZodObject<{
1825
1825
  expand?: string | undefined;
1826
1826
  self?: string | undefined;
1827
1827
  }, {
1828
+ id?: string | undefined;
1828
1829
  fields?: z.objectInputType<{
1829
1830
  summary: z.ZodOptional<z.ZodString>;
1830
1831
  description: z.ZodOptional<z.ZodUnknown>;
@@ -2162,7 +2163,6 @@ export declare const JiraIssueSchema: z.ZodObject<{
2162
2163
  total: z.ZodOptional<z.ZodNumber>;
2163
2164
  }, z.ZodTypeAny, "passthrough">>>;
2164
2165
  }, z.ZodTypeAny, "passthrough"> | undefined;
2165
- id?: string | undefined;
2166
2166
  key?: string | undefined;
2167
2167
  changelog?: unknown;
2168
2168
  transitions?: z.objectInputType<{
@@ -3586,6 +3586,7 @@ 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;
3589
3590
  fields?: z.objectOutputType<{
3590
3591
  summary: z.ZodOptional<z.ZodString>;
3591
3592
  description: z.ZodOptional<z.ZodUnknown>;
@@ -3923,7 +3924,6 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
3923
3924
  total: z.ZodOptional<z.ZodNumber>;
3924
3925
  }, z.ZodTypeAny, "passthrough">>>;
3925
3926
  }, z.ZodTypeAny, "passthrough"> | undefined;
3926
- id?: string | undefined;
3927
3927
  key?: string | undefined;
3928
3928
  changelog?: unknown;
3929
3929
  transitions?: z.objectOutputType<{
@@ -3973,6 +3973,7 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
3973
3973
  expand?: string | undefined;
3974
3974
  self?: string | undefined;
3975
3975
  }, {
3976
+ id?: string | undefined;
3976
3977
  fields?: z.objectInputType<{
3977
3978
  summary: z.ZodOptional<z.ZodString>;
3978
3979
  description: z.ZodOptional<z.ZodUnknown>;
@@ -4310,7 +4311,6 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
4310
4311
  total: z.ZodOptional<z.ZodNumber>;
4311
4312
  }, z.ZodTypeAny, "passthrough">>>;
4312
4313
  }, z.ZodTypeAny, "passthrough"> | undefined;
4313
- id?: string | undefined;
4314
4314
  key?: string | undefined;
4315
4315
  changelog?: unknown;
4316
4316
  transitions?: z.objectInputType<{
@@ -4369,6 +4369,7 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
4369
4369
  success: boolean;
4370
4370
  operation: "search";
4371
4371
  issues?: {
4372
+ id?: string | undefined;
4372
4373
  fields?: z.objectOutputType<{
4373
4374
  summary: z.ZodOptional<z.ZodString>;
4374
4375
  description: z.ZodOptional<z.ZodUnknown>;
@@ -4706,7 +4707,6 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
4706
4707
  total: z.ZodOptional<z.ZodNumber>;
4707
4708
  }, z.ZodTypeAny, "passthrough">>>;
4708
4709
  }, z.ZodTypeAny, "passthrough"> | undefined;
4709
- id?: string | undefined;
4710
4710
  key?: string | undefined;
4711
4711
  changelog?: unknown;
4712
4712
  transitions?: z.objectOutputType<{
@@ -4764,6 +4764,7 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
4764
4764
  success: boolean;
4765
4765
  operation: "search";
4766
4766
  issues?: {
4767
+ id?: string | undefined;
4767
4768
  fields?: z.objectInputType<{
4768
4769
  summary: z.ZodOptional<z.ZodString>;
4769
4770
  description: z.ZodOptional<z.ZodUnknown>;
@@ -5101,7 +5102,6 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
5101
5102
  total: z.ZodOptional<z.ZodNumber>;
5102
5103
  }, z.ZodTypeAny, "passthrough">>>;
5103
5104
  }, z.ZodTypeAny, "passthrough"> | undefined;
5104
- id?: string | undefined;
5105
5105
  key?: string | undefined;
5106
5106
  changelog?: unknown;
5107
5107
  transitions?: z.objectInputType<{
@@ -6303,6 +6303,7 @@ 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;
6306
6307
  fields?: z.objectOutputType<{
6307
6308
  summary: z.ZodOptional<z.ZodString>;
6308
6309
  description: z.ZodOptional<z.ZodUnknown>;
@@ -6640,7 +6641,6 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
6640
6641
  total: z.ZodOptional<z.ZodNumber>;
6641
6642
  }, z.ZodTypeAny, "passthrough">>>;
6642
6643
  }, z.ZodTypeAny, "passthrough"> | undefined;
6643
- id?: string | undefined;
6644
6644
  key?: string | undefined;
6645
6645
  changelog?: unknown;
6646
6646
  transitions?: z.objectOutputType<{
@@ -6690,6 +6690,7 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
6690
6690
  expand?: string | undefined;
6691
6691
  self?: string | undefined;
6692
6692
  }, {
6693
+ id?: string | undefined;
6693
6694
  fields?: z.objectInputType<{
6694
6695
  summary: z.ZodOptional<z.ZodString>;
6695
6696
  description: z.ZodOptional<z.ZodUnknown>;
@@ -7027,7 +7028,6 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
7027
7028
  total: z.ZodOptional<z.ZodNumber>;
7028
7029
  }, z.ZodTypeAny, "passthrough">>>;
7029
7030
  }, z.ZodTypeAny, "passthrough"> | undefined;
7030
- id?: string | undefined;
7031
7031
  key?: string | undefined;
7032
7032
  changelog?: unknown;
7033
7033
  transitions?: z.objectInputType<{
@@ -7083,6 +7083,7 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
7083
7083
  success: boolean;
7084
7084
  operation: "get";
7085
7085
  issue?: {
7086
+ id?: string | undefined;
7086
7087
  fields?: z.objectOutputType<{
7087
7088
  summary: z.ZodOptional<z.ZodString>;
7088
7089
  description: z.ZodOptional<z.ZodUnknown>;
@@ -7420,7 +7421,6 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
7420
7421
  total: z.ZodOptional<z.ZodNumber>;
7421
7422
  }, z.ZodTypeAny, "passthrough">>>;
7422
7423
  }, z.ZodTypeAny, "passthrough"> | undefined;
7423
- id?: string | undefined;
7424
7424
  key?: string | undefined;
7425
7425
  changelog?: unknown;
7426
7426
  transitions?: z.objectOutputType<{
@@ -7475,6 +7475,7 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
7475
7475
  success: boolean;
7476
7476
  operation: "get";
7477
7477
  issue?: {
7478
+ id?: string | undefined;
7478
7479
  fields?: z.objectInputType<{
7479
7480
  summary: z.ZodOptional<z.ZodString>;
7480
7481
  description: z.ZodOptional<z.ZodUnknown>;
@@ -7812,7 +7813,6 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
7812
7813
  total: z.ZodOptional<z.ZodNumber>;
7813
7814
  }, z.ZodTypeAny, "passthrough">>>;
7814
7815
  }, z.ZodTypeAny, "passthrough"> | undefined;
7815
- id?: string | undefined;
7816
7816
  key?: string | undefined;
7817
7817
  changelog?: unknown;
7818
7818
  transitions?: z.objectInputType<{