@bubblelab/bubble-core 0.1.76 → 0.1.78

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 (48) hide show
  1. package/dist/bubble-bundle.d.ts +73 -72
  2. package/dist/bubbles/service-bubble/ai-agent.d.ts +38 -38
  3. package/dist/bubbles/service-bubble/ai-agent.d.ts.map +1 -1
  4. package/dist/bubbles/service-bubble/ai-agent.js +1 -0
  5. package/dist/bubbles/service-bubble/ai-agent.js.map +1 -1
  6. package/dist/bubbles/service-bubble/airtable.d.ts +92 -92
  7. package/dist/bubbles/service-bubble/apify/apify.d.ts +10 -10
  8. package/dist/bubbles/service-bubble/ashby/ashby.d.ts +2 -2
  9. package/dist/bubbles/service-bubble/ashby/ashby.schema.d.ts +2 -2
  10. package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +4 -4
  11. package/dist/bubbles/service-bubble/crustdata/crustdata.schema.d.ts +8 -8
  12. package/dist/bubbles/service-bubble/firecrawl.d.ts +242 -242
  13. package/dist/bubbles/service-bubble/followupboss.d.ts +4 -4
  14. package/dist/bubbles/service-bubble/github.d.ts +40 -40
  15. package/dist/bubbles/service-bubble/gmail.d.ts +124 -124
  16. package/dist/bubbles/service-bubble/http.d.ts +8 -8
  17. package/dist/bubbles/service-bubble/insforge-db.d.ts +8 -8
  18. package/dist/bubbles/service-bubble/jira/jira.d.ts +8 -8
  19. package/dist/bubbles/service-bubble/jira/jira.schema.d.ts +10 -10
  20. package/dist/bubbles/service-bubble/notion/notion.d.ts +453 -453
  21. package/dist/bubbles/service-bubble/postgresql.d.ts +8 -8
  22. package/dist/bubbles/service-bubble/resend.d.ts +4 -4
  23. package/dist/bubbles/service-bubble/slack/slack.d.ts +295 -295
  24. package/dist/bubbles/service-bubble/stripe/stripe.d.ts +4 -4
  25. package/dist/bubbles/service-bubble/stripe/stripe.schema.d.ts +4 -4
  26. package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +2 -2
  27. package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.schema.d.ts +2 -2
  28. package/dist/bubbles/tool-bubble/bubbleflow-validation-tool.d.ts +8 -8
  29. package/dist/bubbles/tool-bubble/chart-js-tool.d.ts +12 -12
  30. package/dist/bubbles/tool-bubble/code-edit-tool.d.ts +8 -8
  31. package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +52 -52
  32. package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +8 -8
  33. package/dist/bubbles/tool-bubble/research-agent-tool.d.ts +4 -4
  34. package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +8 -8
  35. package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +8 -8
  36. package/dist/bubbles/tool-bubble/tool-template.d.ts +8 -8
  37. package/dist/bubbles/tool-bubble/twitter-tool.d.ts +36 -36
  38. package/dist/bubbles/tool-bubble/web-crawl-tool.d.ts +4 -4
  39. package/dist/bubbles/tool-bubble/web-extract-tool.d.ts +4 -4
  40. package/dist/bubbles/tool-bubble/web-scrape-tool.d.ts +8 -8
  41. package/dist/bubbles/tool-bubble/youtube-tool.d.ts +10 -10
  42. package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +8 -8
  43. package/dist/bubbles/workflow-bubble/parse-document.workflow.d.ts +8 -8
  44. package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +30 -30
  45. package/dist/bubbles/workflow-bubble/slack-data-assistant.workflow.d.ts +18 -18
  46. package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +118 -118
  47. package/dist/bubbles.json +4 -3
  48. 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: "none" | "custom" | "bearer" | "basic" | "api-key" | "api-key-header";
20
+ authType: "custom" | "none" | "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?: "none" | "custom" | "bearer" | "basic" | "api-key" | "api-key-header" | undefined;
33
+ authType?: "custom" | "none" | "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
- headers: Record<string, string>;
53
52
  size: number;
53
+ headers: Record<string, string>;
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
- headers: Record<string, string>;
63
62
  size: number;
63
+ headers: Record<string, string>;
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: "none" | "custom" | "bearer" | "basic" | "api-key" | "api-key-header";
90
+ authType: "custom" | "none" | "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?: "none" | "custom" | "bearer" | "basic" | "api-key" | "api-key-header" | undefined;
103
+ authType?: "custom" | "none" | "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
- headers: Record<string, string>;
121
120
  size: number;
121
+ headers: Record<string, string>;
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
- headers: Record<string, string>;
131
130
  size: number;
131
+ headers: Record<string, string>;
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
- parameters: unknown[];
15
14
  timeout: number;
15
+ parameters: unknown[];
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;
23
22
  credentials?: Partial<Record<CredentialType, string>> | undefined;
24
23
  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;
40
39
  error: string;
41
40
  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;
48
47
  error: string;
49
48
  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
- parameters: unknown[];
89
88
  timeout: number;
89
+ parameters: unknown[];
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;
97
96
  credentials?: Partial<Record<CredentialType, string>> | undefined;
98
97
  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;
112
111
  error: string;
113
112
  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;
120
119
  error: string;
121
120
  success: boolean;
121
+ executionTime: number;
122
122
  rows: Record<string, unknown>[];
123
123
  rowCount: number | null;
124
124
  command: string;
@@ -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
- id?: string | undefined;
1417
1416
  fields?: import("zod").objectOutputType<{
1418
1417
  summary: import("zod").ZodOptional<import("zod").ZodString>;
1419
1418
  description: import("zod").ZodOptional<import("zod").ZodUnknown>;
@@ -1751,6 +1750,7 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
1751
1750
  total: import("zod").ZodOptional<import("zod").ZodNumber>;
1752
1751
  }, import("zod").ZodTypeAny, "passthrough">>>;
1753
1752
  }, 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,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
- id?: string | undefined;
1804
1803
  fields?: import("zod").objectInputType<{
1805
1804
  summary: import("zod").ZodOptional<import("zod").ZodString>;
1806
1805
  description: import("zod").ZodOptional<import("zod").ZodUnknown>;
@@ -2138,6 +2137,7 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
2138
2137
  total: import("zod").ZodOptional<import("zod").ZodNumber>;
2139
2138
  }, import("zod").ZodTypeAny, "passthrough">>>;
2140
2139
  }, 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,7 +2196,6 @@ 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
  fields?: import("zod").objectOutputType<{
2201
2200
  summary: import("zod").ZodOptional<import("zod").ZodString>;
2202
2201
  description: import("zod").ZodOptional<import("zod").ZodUnknown>;
@@ -2534,6 +2533,7 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
2534
2533
  total: import("zod").ZodOptional<import("zod").ZodNumber>;
2535
2534
  }, import("zod").ZodTypeAny, "passthrough">>>;
2536
2535
  }, 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,7 +2591,6 @@ 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
  fields?: import("zod").objectInputType<{
2596
2595
  summary: import("zod").ZodOptional<import("zod").ZodString>;
2597
2596
  description: import("zod").ZodOptional<import("zod").ZodUnknown>;
@@ -2929,6 +2928,7 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
2929
2928
  total: import("zod").ZodOptional<import("zod").ZodNumber>;
2930
2929
  }, import("zod").ZodTypeAny, "passthrough">>>;
2931
2930
  }, 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,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
- id?: string | undefined;
4134
4133
  fields?: import("zod").objectOutputType<{
4135
4134
  summary: import("zod").ZodOptional<import("zod").ZodString>;
4136
4135
  description: import("zod").ZodOptional<import("zod").ZodUnknown>;
@@ -4468,6 +4467,7 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
4468
4467
  total: import("zod").ZodOptional<import("zod").ZodNumber>;
4469
4468
  }, import("zod").ZodTypeAny, "passthrough">>>;
4470
4469
  }, 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,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
- id?: string | undefined;
4521
4520
  fields?: import("zod").objectInputType<{
4522
4521
  summary: import("zod").ZodOptional<import("zod").ZodString>;
4523
4522
  description: import("zod").ZodOptional<import("zod").ZodUnknown>;
@@ -4855,6 +4854,7 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
4855
4854
  total: import("zod").ZodOptional<import("zod").ZodNumber>;
4856
4855
  }, import("zod").ZodTypeAny, "passthrough">>>;
4857
4856
  }, 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,7 +4910,6 @@ 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
  fields?: import("zod").objectOutputType<{
4915
4914
  summary: import("zod").ZodOptional<import("zod").ZodString>;
4916
4915
  description: import("zod").ZodOptional<import("zod").ZodUnknown>;
@@ -5248,6 +5247,7 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
5248
5247
  total: import("zod").ZodOptional<import("zod").ZodNumber>;
5249
5248
  }, import("zod").ZodTypeAny, "passthrough">>>;
5250
5249
  }, 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,7 +5302,6 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
5302
5302
  success: boolean;
5303
5303
  operation: "get";
5304
5304
  issue?: {
5305
- id?: string | undefined;
5306
5305
  fields?: import("zod").objectInputType<{
5307
5306
  summary: import("zod").ZodOptional<import("zod").ZodString>;
5308
5307
  description: import("zod").ZodOptional<import("zod").ZodUnknown>;
@@ -5640,6 +5639,7 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
5640
5639
  total: import("zod").ZodOptional<import("zod").ZodNumber>;
5641
5640
  }, import("zod").ZodTypeAny, "passthrough">>>;
5642
5641
  }, 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,7 +1438,6 @@ 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
  fields?: z.objectOutputType<{
1443
1442
  summary: z.ZodOptional<z.ZodString>;
1444
1443
  description: z.ZodOptional<z.ZodUnknown>;
@@ -1776,6 +1775,7 @@ export declare const JiraIssueSchema: z.ZodObject<{
1776
1775
  total: z.ZodOptional<z.ZodNumber>;
1777
1776
  }, z.ZodTypeAny, "passthrough">>>;
1778
1777
  }, z.ZodTypeAny, "passthrough"> | undefined;
1778
+ id?: string | undefined;
1779
1779
  key?: string | undefined;
1780
1780
  changelog?: unknown;
1781
1781
  transitions?: z.objectOutputType<{
@@ -1825,7 +1825,6 @@ export declare const JiraIssueSchema: z.ZodObject<{
1825
1825
  expand?: string | undefined;
1826
1826
  self?: string | undefined;
1827
1827
  }, {
1828
- id?: string | undefined;
1829
1828
  fields?: z.objectInputType<{
1830
1829
  summary: z.ZodOptional<z.ZodString>;
1831
1830
  description: z.ZodOptional<z.ZodUnknown>;
@@ -2163,6 +2162,7 @@ export declare const JiraIssueSchema: z.ZodObject<{
2163
2162
  total: z.ZodOptional<z.ZodNumber>;
2164
2163
  }, z.ZodTypeAny, "passthrough">>>;
2165
2164
  }, z.ZodTypeAny, "passthrough"> | undefined;
2165
+ id?: string | undefined;
2166
2166
  key?: string | undefined;
2167
2167
  changelog?: unknown;
2168
2168
  transitions?: z.objectInputType<{
@@ -3586,7 +3586,6 @@ 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
  fields?: z.objectOutputType<{
3591
3590
  summary: z.ZodOptional<z.ZodString>;
3592
3591
  description: z.ZodOptional<z.ZodUnknown>;
@@ -3924,6 +3923,7 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
3924
3923
  total: z.ZodOptional<z.ZodNumber>;
3925
3924
  }, z.ZodTypeAny, "passthrough">>>;
3926
3925
  }, z.ZodTypeAny, "passthrough"> | undefined;
3926
+ id?: string | undefined;
3927
3927
  key?: string | undefined;
3928
3928
  changelog?: unknown;
3929
3929
  transitions?: z.objectOutputType<{
@@ -3973,7 +3973,6 @@ 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;
3977
3976
  fields?: z.objectInputType<{
3978
3977
  summary: z.ZodOptional<z.ZodString>;
3979
3978
  description: z.ZodOptional<z.ZodUnknown>;
@@ -4311,6 +4310,7 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
4311
4310
  total: z.ZodOptional<z.ZodNumber>;
4312
4311
  }, z.ZodTypeAny, "passthrough">>>;
4313
4312
  }, z.ZodTypeAny, "passthrough"> | undefined;
4313
+ id?: string | undefined;
4314
4314
  key?: string | undefined;
4315
4315
  changelog?: unknown;
4316
4316
  transitions?: z.objectInputType<{
@@ -4369,7 +4369,6 @@ 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
  fields?: z.objectOutputType<{
4374
4373
  summary: z.ZodOptional<z.ZodString>;
4375
4374
  description: z.ZodOptional<z.ZodUnknown>;
@@ -4707,6 +4706,7 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
4707
4706
  total: z.ZodOptional<z.ZodNumber>;
4708
4707
  }, z.ZodTypeAny, "passthrough">>>;
4709
4708
  }, z.ZodTypeAny, "passthrough"> | undefined;
4709
+ id?: string | undefined;
4710
4710
  key?: string | undefined;
4711
4711
  changelog?: unknown;
4712
4712
  transitions?: z.objectOutputType<{
@@ -4764,7 +4764,6 @@ 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
  fields?: z.objectInputType<{
4769
4768
  summary: z.ZodOptional<z.ZodString>;
4770
4769
  description: z.ZodOptional<z.ZodUnknown>;
@@ -5102,6 +5101,7 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
5102
5101
  total: z.ZodOptional<z.ZodNumber>;
5103
5102
  }, z.ZodTypeAny, "passthrough">>>;
5104
5103
  }, z.ZodTypeAny, "passthrough"> | undefined;
5104
+ id?: string | undefined;
5105
5105
  key?: string | undefined;
5106
5106
  changelog?: unknown;
5107
5107
  transitions?: z.objectInputType<{
@@ -6303,7 +6303,6 @@ 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
  fields?: z.objectOutputType<{
6308
6307
  summary: z.ZodOptional<z.ZodString>;
6309
6308
  description: z.ZodOptional<z.ZodUnknown>;
@@ -6641,6 +6640,7 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
6641
6640
  total: z.ZodOptional<z.ZodNumber>;
6642
6641
  }, z.ZodTypeAny, "passthrough">>>;
6643
6642
  }, z.ZodTypeAny, "passthrough"> | undefined;
6643
+ id?: string | undefined;
6644
6644
  key?: string | undefined;
6645
6645
  changelog?: unknown;
6646
6646
  transitions?: z.objectOutputType<{
@@ -6690,7 +6690,6 @@ 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;
6694
6693
  fields?: z.objectInputType<{
6695
6694
  summary: z.ZodOptional<z.ZodString>;
6696
6695
  description: z.ZodOptional<z.ZodUnknown>;
@@ -7028,6 +7027,7 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
7028
7027
  total: z.ZodOptional<z.ZodNumber>;
7029
7028
  }, z.ZodTypeAny, "passthrough">>>;
7030
7029
  }, z.ZodTypeAny, "passthrough"> | undefined;
7030
+ id?: string | undefined;
7031
7031
  key?: string | undefined;
7032
7032
  changelog?: unknown;
7033
7033
  transitions?: z.objectInputType<{
@@ -7083,7 +7083,6 @@ 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
  fields?: z.objectOutputType<{
7088
7087
  summary: z.ZodOptional<z.ZodString>;
7089
7088
  description: z.ZodOptional<z.ZodUnknown>;
@@ -7421,6 +7420,7 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
7421
7420
  total: z.ZodOptional<z.ZodNumber>;
7422
7421
  }, z.ZodTypeAny, "passthrough">>>;
7423
7422
  }, z.ZodTypeAny, "passthrough"> | undefined;
7423
+ id?: string | undefined;
7424
7424
  key?: string | undefined;
7425
7425
  changelog?: unknown;
7426
7426
  transitions?: z.objectOutputType<{
@@ -7475,7 +7475,6 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
7475
7475
  success: boolean;
7476
7476
  operation: "get";
7477
7477
  issue?: {
7478
- id?: string | undefined;
7479
7478
  fields?: z.objectInputType<{
7480
7479
  summary: z.ZodOptional<z.ZodString>;
7481
7480
  description: z.ZodOptional<z.ZodUnknown>;
@@ -7813,6 +7812,7 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
7813
7812
  total: z.ZodOptional<z.ZodNumber>;
7814
7813
  }, z.ZodTypeAny, "passthrough">>>;
7815
7814
  }, z.ZodTypeAny, "passthrough"> | undefined;
7815
+ id?: string | undefined;
7816
7816
  key?: string | undefined;
7817
7817
  changelog?: unknown;
7818
7818
  transitions?: z.objectInputType<{