@bubblelab/bubble-core 0.1.125 → 0.1.127

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 (54) hide show
  1. package/dist/bubble-bundle.d.ts +84 -83
  2. package/dist/bubbles/service-bubble/agi-inc.d.ts +20 -20
  3. package/dist/bubbles/service-bubble/ai-agent.d.ts +72 -72
  4. package/dist/bubbles/service-bubble/ai-agent.js +6 -6
  5. package/dist/bubbles/service-bubble/ai-agent.js.map +1 -1
  6. package/dist/bubbles/service-bubble/airtable.d.ts +76 -76
  7. package/dist/bubbles/service-bubble/apify/apify.d.ts +22 -22
  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/browserbase/browserbase.d.ts +1 -1
  11. package/dist/bubbles/service-bubble/browserbase/browserbase.schema.d.ts +1 -1
  12. package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +14 -14
  13. package/dist/bubbles/service-bubble/crustdata/crustdata.schema.d.ts +32 -32
  14. package/dist/bubbles/service-bubble/firecrawl.d.ts +342 -342
  15. package/dist/bubbles/service-bubble/followupboss.d.ts +4 -4
  16. package/dist/bubbles/service-bubble/github.d.ts +60 -60
  17. package/dist/bubbles/service-bubble/gmail.d.ts +164 -164
  18. package/dist/bubbles/service-bubble/google-calendar.d.ts +6 -6
  19. package/dist/bubbles/service-bubble/google-drive.d.ts +40 -40
  20. package/dist/bubbles/service-bubble/http.d.ts +2 -2
  21. package/dist/bubbles/service-bubble/insforge-db.d.ts +8 -8
  22. package/dist/bubbles/service-bubble/jira/jira.d.ts +42 -42
  23. package/dist/bubbles/service-bubble/jira/jira.schema.d.ts +50 -50
  24. package/dist/bubbles/service-bubble/notion/notion.d.ts +848 -848
  25. package/dist/bubbles/service-bubble/notion/notion.d.ts.map +1 -1
  26. package/dist/bubbles/service-bubble/notion/notion.js +14 -1
  27. package/dist/bubbles/service-bubble/notion/notion.js.map +1 -1
  28. package/dist/bubbles/service-bubble/postgresql.d.ts +8 -8
  29. package/dist/bubbles/service-bubble/slack/slack.d.ts +240 -240
  30. package/dist/bubbles/service-bubble/stripe/stripe.d.ts +24 -24
  31. package/dist/bubbles/service-bubble/stripe/stripe.schema.d.ts +28 -28
  32. package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +2 -2
  33. package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.schema.d.ts +2 -2
  34. package/dist/bubbles/tool-bubble/bubbleflow-validation-tool.d.ts +4 -4
  35. package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +28 -28
  36. package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +304 -304
  37. package/dist/bubbles/tool-bubble/people-search-tool.d.ts +44 -44
  38. package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +10 -10
  39. package/dist/bubbles/tool-bubble/research-agent-tool.d.ts +4 -4
  40. package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +4 -4
  41. package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +52 -52
  42. package/dist/bubbles/tool-bubble/twitter-tool.d.ts +124 -124
  43. package/dist/bubbles/tool-bubble/yc-scraper-tool.d.ts +36 -36
  44. package/dist/bubbles/tool-bubble/youtube-tool.d.ts +20 -20
  45. package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +12 -12
  46. package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +16 -16
  47. package/dist/bubbles/workflow-bubble/pdf-ocr.workflow.d.ts +16 -16
  48. package/dist/bubbles/workflow-bubble/slack-data-assistant.workflow.d.ts +2 -2
  49. package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +26 -26
  50. package/dist/bubbles.json +1 -1
  51. package/dist/utils/markdown-to-html.d.ts.map +1 -1
  52. package/dist/utils/markdown-to-html.js +4 -2
  53. package/dist/utils/markdown-to-html.js.map +1 -1
  54. 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" | "transitions" | "changelog")[] | undefined;
74
+ expand?: ("comments" | "changelog" | "transitions")[] | 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" | "transitions" | "changelog")[] | undefined;
80
+ expand?: ("comments" | "changelog" | "transitions")[] | 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
- set?: string[] | undefined;
130
129
  remove?: string[] | undefined;
130
+ set?: string[] | undefined;
131
131
  add?: string[] | undefined;
132
132
  }, {
133
- set?: string[] | undefined;
134
133
  remove?: string[] | undefined;
134
+ set?: 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
- set?: string[] | undefined;
149
148
  remove?: string[] | undefined;
149
+ set?: 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
- set?: string[] | undefined;
164
163
  remove?: string[] | undefined;
164
+ set?: 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
- key?: string | undefined;
1417
1416
  id?: string | undefined;
1417
+ key?: 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,8 +1752,7 @@ 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
- expand?: string | undefined;
1756
- self?: string | undefined;
1755
+ changelog?: unknown;
1757
1756
  transitions?: import("zod").objectOutputType<{
1758
1757
  id: import("zod").ZodString;
1759
1758
  name: import("zod").ZodString;
@@ -1798,10 +1797,11 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
1798
1797
  }, import("zod").ZodTypeAny, "passthrough">>>;
1799
1798
  }, import("zod").ZodTypeAny, "passthrough">>>;
1800
1799
  }, import("zod").ZodTypeAny, "passthrough">[] | undefined;
1801
- changelog?: unknown;
1800
+ expand?: string | undefined;
1801
+ self?: string | undefined;
1802
1802
  }, {
1803
- key?: string | undefined;
1804
1803
  id?: string | undefined;
1804
+ key?: 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,8 +2139,7 @@ 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
- expand?: string | undefined;
2143
- self?: string | undefined;
2142
+ changelog?: unknown;
2144
2143
  transitions?: import("zod").objectInputType<{
2145
2144
  id: import("zod").ZodString;
2146
2145
  name: import("zod").ZodString;
@@ -2185,7 +2184,8 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
2185
2184
  }, import("zod").ZodTypeAny, "passthrough">>>;
2186
2185
  }, import("zod").ZodTypeAny, "passthrough">>>;
2187
2186
  }, import("zod").ZodTypeAny, "passthrough">[] | undefined;
2188
- changelog?: unknown;
2187
+ expand?: string | undefined;
2188
+ self?: string | undefined;
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
- key?: string | undefined;
2200
2199
  id?: string | undefined;
2200
+ key?: 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,8 +2535,7 @@ 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
- expand?: string | undefined;
2539
- self?: string | undefined;
2538
+ changelog?: unknown;
2540
2539
  transitions?: import("zod").objectOutputType<{
2541
2540
  id: import("zod").ZodString;
2542
2541
  name: import("zod").ZodString;
@@ -2581,7 +2580,8 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
2581
2580
  }, import("zod").ZodTypeAny, "passthrough">>>;
2582
2581
  }, import("zod").ZodTypeAny, "passthrough">>>;
2583
2582
  }, import("zod").ZodTypeAny, "passthrough">[] | undefined;
2584
- changelog?: unknown;
2583
+ expand?: string | undefined;
2584
+ self?: string | undefined;
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
- key?: string | undefined;
2595
2594
  id?: string | undefined;
2595
+ key?: 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,8 +2930,7 @@ 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
- expand?: string | undefined;
2934
- self?: string | undefined;
2933
+ changelog?: unknown;
2935
2934
  transitions?: import("zod").objectInputType<{
2936
2935
  id: import("zod").ZodString;
2937
2936
  name: import("zod").ZodString;
@@ -2976,7 +2975,8 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
2976
2975
  }, import("zod").ZodTypeAny, "passthrough">>>;
2977
2976
  }, import("zod").ZodTypeAny, "passthrough">>>;
2978
2977
  }, import("zod").ZodTypeAny, "passthrough">[] | undefined;
2979
- changelog?: unknown;
2978
+ expand?: string | undefined;
2979
+ self?: string | undefined;
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
- key?: string | undefined;
4134
4133
  id?: string | undefined;
4134
+ key?: 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,8 +4469,7 @@ 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
- expand?: string | undefined;
4473
- self?: string | undefined;
4472
+ changelog?: unknown;
4474
4473
  transitions?: import("zod").objectOutputType<{
4475
4474
  id: import("zod").ZodString;
4476
4475
  name: import("zod").ZodString;
@@ -4515,10 +4514,11 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
4515
4514
  }, import("zod").ZodTypeAny, "passthrough">>>;
4516
4515
  }, import("zod").ZodTypeAny, "passthrough">>>;
4517
4516
  }, import("zod").ZodTypeAny, "passthrough">[] | undefined;
4518
- changelog?: unknown;
4517
+ expand?: string | undefined;
4518
+ self?: string | undefined;
4519
4519
  }, {
4520
- key?: string | undefined;
4521
4520
  id?: string | undefined;
4521
+ key?: 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,8 +4856,7 @@ 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
- expand?: string | undefined;
4860
- self?: string | undefined;
4859
+ changelog?: unknown;
4861
4860
  transitions?: import("zod").objectInputType<{
4862
4861
  id: import("zod").ZodString;
4863
4862
  name: import("zod").ZodString;
@@ -4902,7 +4901,8 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
4902
4901
  }, import("zod").ZodTypeAny, "passthrough">>>;
4903
4902
  }, import("zod").ZodTypeAny, "passthrough">>>;
4904
4903
  }, import("zod").ZodTypeAny, "passthrough">[] | undefined;
4905
- changelog?: unknown;
4904
+ expand?: string | undefined;
4905
+ self?: string | undefined;
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
- key?: string | undefined;
4914
4913
  id?: string | undefined;
4914
+ key?: 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,8 +5249,7 @@ 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
- expand?: string | undefined;
5253
- self?: string | undefined;
5252
+ changelog?: unknown;
5254
5253
  transitions?: import("zod").objectOutputType<{
5255
5254
  id: import("zod").ZodString;
5256
5255
  name: import("zod").ZodString;
@@ -5295,15 +5294,16 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
5295
5294
  }, import("zod").ZodTypeAny, "passthrough">>>;
5296
5295
  }, import("zod").ZodTypeAny, "passthrough">>>;
5297
5296
  }, import("zod").ZodTypeAny, "passthrough">[] | undefined;
5298
- changelog?: unknown;
5297
+ expand?: string | undefined;
5298
+ self?: string | undefined;
5299
5299
  } | undefined;
5300
5300
  }, {
5301
5301
  error: string;
5302
5302
  success: boolean;
5303
5303
  operation: "get";
5304
5304
  issue?: {
5305
- key?: string | undefined;
5306
5305
  id?: string | undefined;
5306
+ key?: 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,8 +5641,7 @@ 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
- expand?: string | undefined;
5645
- self?: string | undefined;
5644
+ changelog?: unknown;
5646
5645
  transitions?: import("zod").objectInputType<{
5647
5646
  id: import("zod").ZodString;
5648
5647
  name: import("zod").ZodString;
@@ -5687,7 +5686,8 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
5687
5686
  }, import("zod").ZodTypeAny, "passthrough">>>;
5688
5687
  }, import("zod").ZodTypeAny, "passthrough">>>;
5689
5688
  }, import("zod").ZodTypeAny, "passthrough">[] | undefined;
5690
- changelog?: unknown;
5689
+ expand?: string | undefined;
5690
+ self?: string | undefined;
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
- 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<{
@@ -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
- key?: string | undefined;
1442
1441
  id?: string | undefined;
1442
+ key?: string | undefined;
1443
1443
  fields?: z.objectOutputType<{
1444
1444
  summary: z.ZodOptional<z.ZodString>;
1445
1445
  description: z.ZodOptional<z.ZodUnknown>;
@@ -1777,8 +1777,7 @@ 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
- expand?: string | undefined;
1781
- self?: string | undefined;
1780
+ changelog?: unknown;
1782
1781
  transitions?: z.objectOutputType<{
1783
1782
  id: z.ZodString;
1784
1783
  name: z.ZodString;
@@ -1823,10 +1822,11 @@ export declare const JiraIssueSchema: z.ZodObject<{
1823
1822
  }, z.ZodTypeAny, "passthrough">>>;
1824
1823
  }, z.ZodTypeAny, "passthrough">>>;
1825
1824
  }, z.ZodTypeAny, "passthrough">[] | undefined;
1826
- changelog?: unknown;
1825
+ expand?: string | undefined;
1826
+ self?: string | undefined;
1827
1827
  }, {
1828
- key?: string | undefined;
1829
1828
  id?: string | undefined;
1829
+ key?: string | undefined;
1830
1830
  fields?: z.objectInputType<{
1831
1831
  summary: z.ZodOptional<z.ZodString>;
1832
1832
  description: z.ZodOptional<z.ZodUnknown>;
@@ -2164,8 +2164,7 @@ 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
- expand?: string | undefined;
2168
- self?: string | undefined;
2167
+ changelog?: unknown;
2169
2168
  transitions?: z.objectInputType<{
2170
2169
  id: z.ZodString;
2171
2170
  name: z.ZodString;
@@ -2210,7 +2209,8 @@ export declare const JiraIssueSchema: z.ZodObject<{
2210
2209
  }, z.ZodTypeAny, "passthrough">>>;
2211
2210
  }, z.ZodTypeAny, "passthrough">>>;
2212
2211
  }, z.ZodTypeAny, "passthrough">[] | undefined;
2213
- changelog?: unknown;
2212
+ expand?: string | undefined;
2213
+ self?: string | undefined;
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" | "transitions" | "changelog")[] | undefined;
2247
+ expand?: ("comments" | "changelog" | "transitions")[] | 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" | "transitions" | "changelog")[] | undefined;
2253
+ expand?: ("comments" | "changelog" | "transitions")[] | 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
- set?: string[] | undefined;
2303
2302
  remove?: string[] | undefined;
2303
+ set?: string[] | undefined;
2304
2304
  add?: string[] | undefined;
2305
2305
  }, {
2306
- set?: string[] | undefined;
2307
2306
  remove?: string[] | undefined;
2307
+ set?: 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
- set?: string[] | undefined;
2322
2321
  remove?: string[] | undefined;
2322
+ set?: 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
- set?: string[] | undefined;
2337
2336
  remove?: string[] | undefined;
2337
+ set?: 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
- key?: string | undefined;
3590
3589
  id?: string | undefined;
3590
+ key?: string | undefined;
3591
3591
  fields?: z.objectOutputType<{
3592
3592
  summary: z.ZodOptional<z.ZodString>;
3593
3593
  description: z.ZodOptional<z.ZodUnknown>;
@@ -3925,8 +3925,7 @@ 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
- expand?: string | undefined;
3929
- self?: string | undefined;
3928
+ changelog?: unknown;
3930
3929
  transitions?: z.objectOutputType<{
3931
3930
  id: z.ZodString;
3932
3931
  name: z.ZodString;
@@ -3971,10 +3970,11 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
3971
3970
  }, z.ZodTypeAny, "passthrough">>>;
3972
3971
  }, z.ZodTypeAny, "passthrough">>>;
3973
3972
  }, z.ZodTypeAny, "passthrough">[] | undefined;
3974
- changelog?: unknown;
3973
+ expand?: string | undefined;
3974
+ self?: string | undefined;
3975
3975
  }, {
3976
- key?: string | undefined;
3977
3976
  id?: string | undefined;
3977
+ key?: string | undefined;
3978
3978
  fields?: z.objectInputType<{
3979
3979
  summary: z.ZodOptional<z.ZodString>;
3980
3980
  description: z.ZodOptional<z.ZodUnknown>;
@@ -4312,8 +4312,7 @@ 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
- expand?: string | undefined;
4316
- self?: string | undefined;
4315
+ changelog?: unknown;
4317
4316
  transitions?: z.objectInputType<{
4318
4317
  id: z.ZodString;
4319
4318
  name: z.ZodString;
@@ -4358,7 +4357,8 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
4358
4357
  }, z.ZodTypeAny, "passthrough">>>;
4359
4358
  }, z.ZodTypeAny, "passthrough">>>;
4360
4359
  }, z.ZodTypeAny, "passthrough">[] | undefined;
4361
- changelog?: unknown;
4360
+ expand?: string | undefined;
4361
+ self?: string | undefined;
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
- key?: string | undefined;
4373
4372
  id?: string | undefined;
4373
+ key?: string | undefined;
4374
4374
  fields?: z.objectOutputType<{
4375
4375
  summary: z.ZodOptional<z.ZodString>;
4376
4376
  description: z.ZodOptional<z.ZodUnknown>;
@@ -4708,8 +4708,7 @@ 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
- expand?: string | undefined;
4712
- self?: string | undefined;
4711
+ changelog?: unknown;
4713
4712
  transitions?: z.objectOutputType<{
4714
4713
  id: z.ZodString;
4715
4714
  name: z.ZodString;
@@ -4754,7 +4753,8 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
4754
4753
  }, z.ZodTypeAny, "passthrough">>>;
4755
4754
  }, z.ZodTypeAny, "passthrough">>>;
4756
4755
  }, z.ZodTypeAny, "passthrough">[] | undefined;
4757
- changelog?: unknown;
4756
+ expand?: string | undefined;
4757
+ self?: string | undefined;
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
- key?: string | undefined;
4768
4767
  id?: string | undefined;
4768
+ key?: string | undefined;
4769
4769
  fields?: z.objectInputType<{
4770
4770
  summary: z.ZodOptional<z.ZodString>;
4771
4771
  description: z.ZodOptional<z.ZodUnknown>;
@@ -5103,8 +5103,7 @@ 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
- expand?: string | undefined;
5107
- self?: string | undefined;
5106
+ changelog?: unknown;
5108
5107
  transitions?: z.objectInputType<{
5109
5108
  id: z.ZodString;
5110
5109
  name: z.ZodString;
@@ -5149,7 +5148,8 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
5149
5148
  }, z.ZodTypeAny, "passthrough">>>;
5150
5149
  }, z.ZodTypeAny, "passthrough">>>;
5151
5150
  }, z.ZodTypeAny, "passthrough">[] | undefined;
5152
- changelog?: unknown;
5151
+ expand?: string | undefined;
5152
+ self?: string | undefined;
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
- key?: string | undefined;
6307
6306
  id?: string | undefined;
6307
+ key?: string | undefined;
6308
6308
  fields?: z.objectOutputType<{
6309
6309
  summary: z.ZodOptional<z.ZodString>;
6310
6310
  description: z.ZodOptional<z.ZodUnknown>;
@@ -6642,8 +6642,7 @@ 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
- expand?: string | undefined;
6646
- self?: string | undefined;
6645
+ changelog?: unknown;
6647
6646
  transitions?: z.objectOutputType<{
6648
6647
  id: z.ZodString;
6649
6648
  name: z.ZodString;
@@ -6688,10 +6687,11 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
6688
6687
  }, z.ZodTypeAny, "passthrough">>>;
6689
6688
  }, z.ZodTypeAny, "passthrough">>>;
6690
6689
  }, z.ZodTypeAny, "passthrough">[] | undefined;
6691
- changelog?: unknown;
6690
+ expand?: string | undefined;
6691
+ self?: string | undefined;
6692
6692
  }, {
6693
- key?: string | undefined;
6694
6693
  id?: string | undefined;
6694
+ key?: string | undefined;
6695
6695
  fields?: z.objectInputType<{
6696
6696
  summary: z.ZodOptional<z.ZodString>;
6697
6697
  description: z.ZodOptional<z.ZodUnknown>;
@@ -7029,8 +7029,7 @@ 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
- expand?: string | undefined;
7033
- self?: string | undefined;
7032
+ changelog?: unknown;
7034
7033
  transitions?: z.objectInputType<{
7035
7034
  id: z.ZodString;
7036
7035
  name: z.ZodString;
@@ -7075,7 +7074,8 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
7075
7074
  }, z.ZodTypeAny, "passthrough">>>;
7076
7075
  }, z.ZodTypeAny, "passthrough">>>;
7077
7076
  }, z.ZodTypeAny, "passthrough">[] | undefined;
7078
- changelog?: unknown;
7077
+ expand?: string | undefined;
7078
+ self?: string | undefined;
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
- key?: string | undefined;
7087
7086
  id?: string | undefined;
7087
+ key?: string | undefined;
7088
7088
  fields?: z.objectOutputType<{
7089
7089
  summary: z.ZodOptional<z.ZodString>;
7090
7090
  description: z.ZodOptional<z.ZodUnknown>;
@@ -7422,8 +7422,7 @@ 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
- expand?: string | undefined;
7426
- self?: string | undefined;
7425
+ changelog?: unknown;
7427
7426
  transitions?: z.objectOutputType<{
7428
7427
  id: z.ZodString;
7429
7428
  name: z.ZodString;
@@ -7468,15 +7467,16 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
7468
7467
  }, z.ZodTypeAny, "passthrough">>>;
7469
7468
  }, z.ZodTypeAny, "passthrough">>>;
7470
7469
  }, z.ZodTypeAny, "passthrough">[] | undefined;
7471
- changelog?: unknown;
7470
+ expand?: string | undefined;
7471
+ self?: string | undefined;
7472
7472
  } | undefined;
7473
7473
  }, {
7474
7474
  error: string;
7475
7475
  success: boolean;
7476
7476
  operation: "get";
7477
7477
  issue?: {
7478
- key?: string | undefined;
7479
7478
  id?: string | undefined;
7479
+ key?: string | undefined;
7480
7480
  fields?: z.objectInputType<{
7481
7481
  summary: z.ZodOptional<z.ZodString>;
7482
7482
  description: z.ZodOptional<z.ZodUnknown>;
@@ -7814,8 +7814,7 @@ 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
- expand?: string | undefined;
7818
- self?: string | undefined;
7817
+ changelog?: unknown;
7819
7818
  transitions?: z.objectInputType<{
7820
7819
  id: z.ZodString;
7821
7820
  name: z.ZodString;
@@ -7860,7 +7859,8 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
7860
7859
  }, z.ZodTypeAny, "passthrough">>>;
7861
7860
  }, z.ZodTypeAny, "passthrough">>>;
7862
7861
  }, z.ZodTypeAny, "passthrough">[] | undefined;
7863
- changelog?: unknown;
7862
+ expand?: string | undefined;
7863
+ self?: string | undefined;
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
- key: string;
7874
7873
  id: string;
7874
+ key: string;
7875
7875
  self?: string | undefined;
7876
7876
  }, {
7877
- key: string;
7878
7877
  id: string;
7878
+ key: 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
- key: string;
7888
7887
  id: string;
7888
+ key: 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
- key: string;
7897
7896
  id: string;
7897
+ key: string;
7898
7898
  self?: string | undefined;
7899
7899
  } | undefined;
7900
7900
  }>, z.ZodObject<{