@bubblelab/bubble-core 0.1.169 → 0.1.170

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 (34) hide show
  1. package/dist/bubble-bundle.d.ts +60 -60
  2. package/dist/bubbles/service-bubble/ai-agent.d.ts +24 -24
  3. package/dist/bubbles/service-bubble/apify/apify.d.ts +8 -8
  4. package/dist/bubbles/service-bubble/ashby/ashby.d.ts +40 -40
  5. package/dist/bubbles/service-bubble/ashby/ashby.schema.d.ts +100 -100
  6. package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +2 -2
  7. package/dist/bubbles/service-bubble/browserbase/browserbase.schema.d.ts +2 -2
  8. package/dist/bubbles/service-bubble/capability-pipeline.js +2 -2
  9. package/dist/bubbles/service-bubble/capability-pipeline.js.map +1 -1
  10. package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +74 -74
  11. package/dist/bubbles/service-bubble/crustdata/crustdata.schema.d.ts +24 -24
  12. package/dist/bubbles/service-bubble/firecrawl.d.ts +152 -152
  13. package/dist/bubbles/service-bubble/gmail.d.ts +88 -88
  14. package/dist/bubbles/service-bubble/insforge-db.d.ts +8 -8
  15. package/dist/bubbles/service-bubble/jira/jira.schema.d.ts +46 -46
  16. package/dist/bubbles/service-bubble/postgresql.d.ts +8 -8
  17. package/dist/bubbles/service-bubble/posthog/posthog.d.ts +1 -1
  18. package/dist/bubbles/service-bubble/posthog/posthog.schema.d.ts +3 -3
  19. package/dist/bubbles/service-bubble/sendsafely/sendsafely.d.ts +4 -4
  20. package/dist/bubbles/service-bubble/slack/slack.d.ts +136 -136
  21. package/dist/bubbles/service-bubble/stripe/stripe.d.ts +15 -15
  22. package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +279 -279
  23. package/dist/bubbles/tool-bubble/research-agent-tool.d.ts +6 -6
  24. package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +4 -4
  25. package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +54 -54
  26. package/dist/bubbles/tool-bubble/twitter-tool.d.ts +80 -80
  27. package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +22 -22
  28. package/dist/bubbles/workflow-bubble/parse-document.workflow.d.ts +10 -10
  29. package/dist/bubbles/workflow-bubble/pdf-ocr.workflow.d.ts +20 -20
  30. package/dist/bubbles/workflow-bubble/slack-data-assistant.workflow.d.ts +6 -6
  31. package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +18 -18
  32. package/dist/bubbles/workflow-bubble/slack-notifier.workflow.d.ts +10 -10
  33. package/dist/bubbles.json +19 -9
  34. package/package.json +2 -2
@@ -11,18 +11,18 @@ declare const InsForgeDbParamsSchema: z.ZodObject<{
11
11
  maxRows: z.ZodDefault<z.ZodNumber>;
12
12
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
13
13
  }, "strip", z.ZodTypeAny, {
14
+ parameters: unknown[];
14
15
  timeout: number;
15
16
  query: string;
16
17
  allowedOperations: ("SELECT" | "INSERT" | "UPDATE" | "DELETE" | "WITH" | "EXPLAIN" | "CREATE")[];
17
- parameters: unknown[];
18
18
  maxRows: number;
19
19
  credentials?: Partial<Record<CredentialType, string>> | undefined;
20
20
  }, {
21
21
  query: string;
22
22
  credentials?: Partial<Record<CredentialType, string>> | undefined;
23
+ parameters?: unknown[] | undefined;
23
24
  timeout?: number | undefined;
24
25
  allowedOperations?: ("SELECT" | "INSERT" | "UPDATE" | "DELETE" | "WITH" | "EXPLAIN" | "CREATE")[] | undefined;
25
- parameters?: unknown[] | undefined;
26
26
  maxRows?: number | undefined;
27
27
  }>;
28
28
  type InsForgeDbParamsInput = z.input<typeof InsForgeDbParamsSchema>;
@@ -38,18 +38,18 @@ declare const InsForgeDbResultSchema: z.ZodObject<{
38
38
  }, "strip", z.ZodTypeAny, {
39
39
  error: string;
40
40
  success: boolean;
41
+ executionTime: number;
41
42
  rows: Record<string, unknown>[];
42
43
  rowCount: number | null;
43
44
  command: string;
44
- executionTime: number;
45
45
  cleanedJSONString: string;
46
46
  }, {
47
47
  error: string;
48
48
  success: boolean;
49
+ executionTime: number;
49
50
  rows: Record<string, unknown>[];
50
51
  rowCount: number | null;
51
52
  command: string;
52
- executionTime: number;
53
53
  cleanedJSONString: string;
54
54
  }>;
55
55
  type InsForgeDbResult = z.output<typeof InsForgeDbResultSchema>;
@@ -85,18 +85,18 @@ export declare class InsForgeDbBubble extends ServiceBubble<InsForgeDbParams, In
85
85
  maxRows: z.ZodDefault<z.ZodNumber>;
86
86
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
87
87
  }, "strip", z.ZodTypeAny, {
88
+ parameters: unknown[];
88
89
  timeout: number;
89
90
  query: string;
90
91
  allowedOperations: ("SELECT" | "INSERT" | "UPDATE" | "DELETE" | "WITH" | "EXPLAIN" | "CREATE")[];
91
- parameters: unknown[];
92
92
  maxRows: number;
93
93
  credentials?: Partial<Record<CredentialType, string>> | undefined;
94
94
  }, {
95
95
  query: string;
96
96
  credentials?: Partial<Record<CredentialType, string>> | undefined;
97
+ parameters?: unknown[] | undefined;
97
98
  timeout?: number | undefined;
98
99
  allowedOperations?: ("SELECT" | "INSERT" | "UPDATE" | "DELETE" | "WITH" | "EXPLAIN" | "CREATE")[] | undefined;
99
- parameters?: unknown[] | undefined;
100
100
  maxRows?: number | undefined;
101
101
  }>;
102
102
  static readonly resultSchema: z.ZodObject<{
@@ -110,18 +110,18 @@ export declare class InsForgeDbBubble extends ServiceBubble<InsForgeDbParams, In
110
110
  }, "strip", z.ZodTypeAny, {
111
111
  error: string;
112
112
  success: boolean;
113
+ executionTime: number;
113
114
  rows: Record<string, unknown>[];
114
115
  rowCount: number | null;
115
116
  command: string;
116
- executionTime: number;
117
117
  cleanedJSONString: string;
118
118
  }, {
119
119
  error: string;
120
120
  success: boolean;
121
+ executionTime: number;
121
122
  rows: Record<string, unknown>[];
122
123
  rowCount: number | null;
123
124
  command: string;
124
- executionTime: number;
125
125
  cleanedJSONString: string;
126
126
  }>;
127
127
  static readonly shortDescription = "InsForge is the backend built for AI-assisted development. Connect InsForge with any agent. Add authentication, database, storage, functions, and AI integrations to your app in seconds.";
@@ -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;
@@ -3604,8 +3604,8 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
3604
3604
  }, z.ZodTypeAny, "passthrough">>, "many">>;
3605
3605
  changelog: z.ZodOptional<z.ZodUnknown>;
3606
3606
  }, "strip", z.ZodTypeAny, {
3607
- key?: string | undefined;
3608
3607
  id?: string | undefined;
3608
+ key?: string | undefined;
3609
3609
  fields?: z.objectOutputType<{
3610
3610
  summary: z.ZodOptional<z.ZodString>;
3611
3611
  description: z.ZodOptional<z.ZodUnknown>;
@@ -3943,8 +3943,7 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
3943
3943
  total: z.ZodOptional<z.ZodNumber>;
3944
3944
  }, z.ZodTypeAny, "passthrough">>>;
3945
3945
  }, z.ZodTypeAny, "passthrough"> | undefined;
3946
- expand?: string | undefined;
3947
- self?: string | undefined;
3946
+ changelog?: unknown;
3948
3947
  transitions?: z.objectOutputType<{
3949
3948
  id: z.ZodString;
3950
3949
  name: z.ZodString;
@@ -3989,10 +3988,11 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
3989
3988
  }, z.ZodTypeAny, "passthrough">>>;
3990
3989
  }, z.ZodTypeAny, "passthrough">>>;
3991
3990
  }, z.ZodTypeAny, "passthrough">[] | undefined;
3992
- changelog?: unknown;
3991
+ expand?: string | undefined;
3992
+ self?: string | undefined;
3993
3993
  }, {
3994
- key?: string | undefined;
3995
3994
  id?: string | undefined;
3995
+ key?: string | undefined;
3996
3996
  fields?: z.objectInputType<{
3997
3997
  summary: z.ZodOptional<z.ZodString>;
3998
3998
  description: z.ZodOptional<z.ZodUnknown>;
@@ -4330,8 +4330,7 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
4330
4330
  total: z.ZodOptional<z.ZodNumber>;
4331
4331
  }, z.ZodTypeAny, "passthrough">>>;
4332
4332
  }, z.ZodTypeAny, "passthrough"> | undefined;
4333
- expand?: string | undefined;
4334
- self?: string | undefined;
4333
+ changelog?: unknown;
4335
4334
  transitions?: z.objectInputType<{
4336
4335
  id: z.ZodString;
4337
4336
  name: z.ZodString;
@@ -4376,7 +4375,8 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
4376
4375
  }, z.ZodTypeAny, "passthrough">>>;
4377
4376
  }, z.ZodTypeAny, "passthrough">>>;
4378
4377
  }, z.ZodTypeAny, "passthrough">[] | undefined;
4379
- changelog?: unknown;
4378
+ expand?: string | undefined;
4379
+ self?: string | undefined;
4380
4380
  }>, "many">>;
4381
4381
  total: z.ZodOptional<z.ZodNumber>;
4382
4382
  offset: z.ZodOptional<z.ZodNumber>;
@@ -4387,8 +4387,8 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
4387
4387
  success: boolean;
4388
4388
  operation: "search";
4389
4389
  issues?: {
4390
- key?: string | undefined;
4391
4390
  id?: string | undefined;
4391
+ key?: string | undefined;
4392
4392
  fields?: z.objectOutputType<{
4393
4393
  summary: z.ZodOptional<z.ZodString>;
4394
4394
  description: z.ZodOptional<z.ZodUnknown>;
@@ -4726,8 +4726,7 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
4726
4726
  total: z.ZodOptional<z.ZodNumber>;
4727
4727
  }, z.ZodTypeAny, "passthrough">>>;
4728
4728
  }, z.ZodTypeAny, "passthrough"> | undefined;
4729
- expand?: string | undefined;
4730
- self?: string | undefined;
4729
+ changelog?: unknown;
4731
4730
  transitions?: z.objectOutputType<{
4732
4731
  id: z.ZodString;
4733
4732
  name: z.ZodString;
@@ -4772,7 +4771,8 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
4772
4771
  }, z.ZodTypeAny, "passthrough">>>;
4773
4772
  }, z.ZodTypeAny, "passthrough">>>;
4774
4773
  }, z.ZodTypeAny, "passthrough">[] | undefined;
4775
- changelog?: unknown;
4774
+ expand?: string | undefined;
4775
+ self?: string | undefined;
4776
4776
  }[] | undefined;
4777
4777
  limit?: number | undefined;
4778
4778
  offset?: number | undefined;
@@ -4782,8 +4782,8 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
4782
4782
  success: boolean;
4783
4783
  operation: "search";
4784
4784
  issues?: {
4785
- key?: string | undefined;
4786
4785
  id?: string | undefined;
4786
+ key?: string | undefined;
4787
4787
  fields?: z.objectInputType<{
4788
4788
  summary: z.ZodOptional<z.ZodString>;
4789
4789
  description: z.ZodOptional<z.ZodUnknown>;
@@ -5121,8 +5121,7 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
5121
5121
  total: z.ZodOptional<z.ZodNumber>;
5122
5122
  }, z.ZodTypeAny, "passthrough">>>;
5123
5123
  }, z.ZodTypeAny, "passthrough"> | undefined;
5124
- expand?: string | undefined;
5125
- self?: string | undefined;
5124
+ changelog?: unknown;
5126
5125
  transitions?: z.objectInputType<{
5127
5126
  id: z.ZodString;
5128
5127
  name: z.ZodString;
@@ -5167,7 +5166,8 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
5167
5166
  }, z.ZodTypeAny, "passthrough">>>;
5168
5167
  }, z.ZodTypeAny, "passthrough">>>;
5169
5168
  }, z.ZodTypeAny, "passthrough">[] | undefined;
5170
- changelog?: unknown;
5169
+ expand?: string | undefined;
5170
+ self?: string | undefined;
5171
5171
  }[] | undefined;
5172
5172
  limit?: number | undefined;
5173
5173
  offset?: number | undefined;
@@ -6321,8 +6321,8 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
6321
6321
  }, z.ZodTypeAny, "passthrough">>, "many">>;
6322
6322
  changelog: z.ZodOptional<z.ZodUnknown>;
6323
6323
  }, "strip", z.ZodTypeAny, {
6324
- key?: string | undefined;
6325
6324
  id?: string | undefined;
6325
+ key?: string | undefined;
6326
6326
  fields?: z.objectOutputType<{
6327
6327
  summary: z.ZodOptional<z.ZodString>;
6328
6328
  description: z.ZodOptional<z.ZodUnknown>;
@@ -6660,8 +6660,7 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
6660
6660
  total: z.ZodOptional<z.ZodNumber>;
6661
6661
  }, z.ZodTypeAny, "passthrough">>>;
6662
6662
  }, z.ZodTypeAny, "passthrough"> | undefined;
6663
- expand?: string | undefined;
6664
- self?: string | undefined;
6663
+ changelog?: unknown;
6665
6664
  transitions?: z.objectOutputType<{
6666
6665
  id: z.ZodString;
6667
6666
  name: z.ZodString;
@@ -6706,10 +6705,11 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
6706
6705
  }, z.ZodTypeAny, "passthrough">>>;
6707
6706
  }, z.ZodTypeAny, "passthrough">>>;
6708
6707
  }, z.ZodTypeAny, "passthrough">[] | undefined;
6709
- changelog?: unknown;
6708
+ expand?: string | undefined;
6709
+ self?: string | undefined;
6710
6710
  }, {
6711
- key?: string | undefined;
6712
6711
  id?: string | undefined;
6712
+ key?: string | undefined;
6713
6713
  fields?: z.objectInputType<{
6714
6714
  summary: z.ZodOptional<z.ZodString>;
6715
6715
  description: z.ZodOptional<z.ZodUnknown>;
@@ -7047,8 +7047,7 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
7047
7047
  total: z.ZodOptional<z.ZodNumber>;
7048
7048
  }, z.ZodTypeAny, "passthrough">>>;
7049
7049
  }, z.ZodTypeAny, "passthrough"> | undefined;
7050
- expand?: string | undefined;
7051
- self?: string | undefined;
7050
+ changelog?: unknown;
7052
7051
  transitions?: z.objectInputType<{
7053
7052
  id: z.ZodString;
7054
7053
  name: z.ZodString;
@@ -7093,7 +7092,8 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
7093
7092
  }, z.ZodTypeAny, "passthrough">>>;
7094
7093
  }, z.ZodTypeAny, "passthrough">>>;
7095
7094
  }, z.ZodTypeAny, "passthrough">[] | undefined;
7096
- changelog?: unknown;
7095
+ expand?: string | undefined;
7096
+ self?: string | undefined;
7097
7097
  }>>;
7098
7098
  error: z.ZodString;
7099
7099
  }, "strip", z.ZodTypeAny, {
@@ -7101,8 +7101,8 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
7101
7101
  success: boolean;
7102
7102
  operation: "get";
7103
7103
  issue?: {
7104
- key?: string | undefined;
7105
7104
  id?: string | undefined;
7105
+ key?: string | undefined;
7106
7106
  fields?: z.objectOutputType<{
7107
7107
  summary: z.ZodOptional<z.ZodString>;
7108
7108
  description: z.ZodOptional<z.ZodUnknown>;
@@ -7440,8 +7440,7 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
7440
7440
  total: z.ZodOptional<z.ZodNumber>;
7441
7441
  }, z.ZodTypeAny, "passthrough">>>;
7442
7442
  }, z.ZodTypeAny, "passthrough"> | undefined;
7443
- expand?: string | undefined;
7444
- self?: string | undefined;
7443
+ changelog?: unknown;
7445
7444
  transitions?: z.objectOutputType<{
7446
7445
  id: z.ZodString;
7447
7446
  name: z.ZodString;
@@ -7486,15 +7485,16 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
7486
7485
  }, z.ZodTypeAny, "passthrough">>>;
7487
7486
  }, z.ZodTypeAny, "passthrough">>>;
7488
7487
  }, z.ZodTypeAny, "passthrough">[] | undefined;
7489
- changelog?: unknown;
7488
+ expand?: string | undefined;
7489
+ self?: string | undefined;
7490
7490
  } | undefined;
7491
7491
  }, {
7492
7492
  error: string;
7493
7493
  success: boolean;
7494
7494
  operation: "get";
7495
7495
  issue?: {
7496
- key?: string | undefined;
7497
7496
  id?: string | undefined;
7497
+ key?: string | undefined;
7498
7498
  fields?: z.objectInputType<{
7499
7499
  summary: z.ZodOptional<z.ZodString>;
7500
7500
  description: z.ZodOptional<z.ZodUnknown>;
@@ -7832,8 +7832,7 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
7832
7832
  total: z.ZodOptional<z.ZodNumber>;
7833
7833
  }, z.ZodTypeAny, "passthrough">>>;
7834
7834
  }, z.ZodTypeAny, "passthrough"> | undefined;
7835
- expand?: string | undefined;
7836
- self?: string | undefined;
7835
+ changelog?: unknown;
7837
7836
  transitions?: z.objectInputType<{
7838
7837
  id: z.ZodString;
7839
7838
  name: z.ZodString;
@@ -7878,7 +7877,8 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
7878
7877
  }, z.ZodTypeAny, "passthrough">>>;
7879
7878
  }, z.ZodTypeAny, "passthrough">>>;
7880
7879
  }, z.ZodTypeAny, "passthrough">[] | undefined;
7881
- changelog?: unknown;
7880
+ expand?: string | undefined;
7881
+ self?: string | undefined;
7882
7882
  } | undefined;
7883
7883
  }>, z.ZodObject<{
7884
7884
  operation: z.ZodLiteral<"create">;
@@ -7888,12 +7888,12 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
7888
7888
  key: z.ZodString;
7889
7889
  self: z.ZodOptional<z.ZodString>;
7890
7890
  }, "strip", z.ZodTypeAny, {
7891
- key: string;
7892
7891
  id: string;
7892
+ key: string;
7893
7893
  self?: string | undefined;
7894
7894
  }, {
7895
- key: string;
7896
7895
  id: string;
7896
+ key: string;
7897
7897
  self?: string | undefined;
7898
7898
  }>>;
7899
7899
  error: z.ZodString;
@@ -7902,8 +7902,8 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
7902
7902
  success: boolean;
7903
7903
  operation: "create";
7904
7904
  issue?: {
7905
- key: string;
7906
7905
  id: string;
7906
+ key: string;
7907
7907
  self?: string | undefined;
7908
7908
  } | undefined;
7909
7909
  }, {
@@ -7911,8 +7911,8 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
7911
7911
  success: boolean;
7912
7912
  operation: "create";
7913
7913
  issue?: {
7914
- key: string;
7915
7914
  id: string;
7915
+ key: string;
7916
7916
  self?: string | undefined;
7917
7917
  } | undefined;
7918
7918
  }>, z.ZodObject<{
@@ -12,20 +12,20 @@ declare const PostgreSQLParamsSchema: z.ZodObject<{
12
12
  maxRows: z.ZodDefault<z.ZodNumber>;
13
13
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
14
14
  }, "strip", z.ZodTypeAny, {
15
+ parameters: unknown[];
15
16
  timeout: number;
16
17
  ignoreSSL: boolean;
17
18
  query: string;
18
19
  allowedOperations: ("SELECT" | "INSERT" | "UPDATE" | "DELETE" | "WITH" | "EXPLAIN" | "ANALYZE" | "SHOW" | "DESCRIBE" | "DESC" | "CREATE")[];
19
- parameters: unknown[];
20
20
  maxRows: number;
21
21
  credentials?: Partial<Record<CredentialType, string>> | undefined;
22
22
  }, {
23
23
  query: string;
24
24
  credentials?: Partial<Record<CredentialType, string>> | undefined;
25
+ parameters?: unknown[] | undefined;
25
26
  timeout?: number | undefined;
26
27
  ignoreSSL?: boolean | undefined;
27
28
  allowedOperations?: ("SELECT" | "INSERT" | "UPDATE" | "DELETE" | "WITH" | "EXPLAIN" | "ANALYZE" | "SHOW" | "DESCRIBE" | "DESC" | "CREATE")[] | undefined;
28
- parameters?: unknown[] | undefined;
29
29
  maxRows?: number | undefined;
30
30
  }>;
31
31
  type PostgreSQLParamsInput = z.input<typeof PostgreSQLParamsSchema>;
@@ -51,10 +51,10 @@ declare const PostgreSQLResultSchema: z.ZodObject<{
51
51
  }, "strip", z.ZodTypeAny, {
52
52
  error: string;
53
53
  success: boolean;
54
+ executionTime: number;
54
55
  rows: Record<string, unknown>[];
55
56
  rowCount: number | null;
56
57
  command: string;
57
- executionTime: number;
58
58
  cleanedJSONString: string;
59
59
  fields?: {
60
60
  name: string;
@@ -63,10 +63,10 @@ declare const PostgreSQLResultSchema: z.ZodObject<{
63
63
  }, {
64
64
  error: string;
65
65
  success: boolean;
66
+ executionTime: number;
66
67
  rows: Record<string, unknown>[];
67
68
  rowCount: number | null;
68
69
  command: string;
69
- executionTime: number;
70
70
  cleanedJSONString: string;
71
71
  fields?: {
72
72
  name: string;
@@ -89,20 +89,20 @@ export declare class PostgreSQLBubble extends ServiceBubble<PostgreSQLParams, Po
89
89
  maxRows: z.ZodDefault<z.ZodNumber>;
90
90
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
91
91
  }, "strip", z.ZodTypeAny, {
92
+ parameters: unknown[];
92
93
  timeout: number;
93
94
  ignoreSSL: boolean;
94
95
  query: string;
95
96
  allowedOperations: ("SELECT" | "INSERT" | "UPDATE" | "DELETE" | "WITH" | "EXPLAIN" | "ANALYZE" | "SHOW" | "DESCRIBE" | "DESC" | "CREATE")[];
96
- parameters: unknown[];
97
97
  maxRows: number;
98
98
  credentials?: Partial<Record<CredentialType, string>> | undefined;
99
99
  }, {
100
100
  query: string;
101
101
  credentials?: Partial<Record<CredentialType, string>> | undefined;
102
+ parameters?: unknown[] | undefined;
102
103
  timeout?: number | undefined;
103
104
  ignoreSSL?: boolean | undefined;
104
105
  allowedOperations?: ("SELECT" | "INSERT" | "UPDATE" | "DELETE" | "WITH" | "EXPLAIN" | "ANALYZE" | "SHOW" | "DESCRIBE" | "DESC" | "CREATE")[] | undefined;
105
- parameters?: unknown[] | undefined;
106
106
  maxRows?: number | undefined;
107
107
  }>;
108
108
  static readonly resultSchema: z.ZodObject<{
@@ -126,10 +126,10 @@ export declare class PostgreSQLBubble extends ServiceBubble<PostgreSQLParams, Po
126
126
  }, "strip", z.ZodTypeAny, {
127
127
  error: string;
128
128
  success: boolean;
129
+ executionTime: number;
129
130
  rows: Record<string, unknown>[];
130
131
  rowCount: number | null;
131
132
  command: string;
132
- executionTime: number;
133
133
  cleanedJSONString: string;
134
134
  fields?: {
135
135
  name: string;
@@ -138,10 +138,10 @@ export declare class PostgreSQLBubble extends ServiceBubble<PostgreSQLParams, Po
138
138
  }, {
139
139
  error: string;
140
140
  success: boolean;
141
+ executionTime: number;
141
142
  rows: Record<string, unknown>[];
142
143
  rowCount: number | null;
143
144
  command: string;
144
- executionTime: number;
145
145
  cleanedJSONString: string;
146
146
  fields?: {
147
147
  name: string;
@@ -91,8 +91,8 @@ export declare class PosthogBubble<T extends PosthogParamsInput = PosthogParamsI
91
91
  event?: string | undefined;
92
92
  person_id?: string | undefined;
93
93
  after?: string | undefined;
94
- before?: string | undefined;
95
94
  host?: string | undefined;
95
+ before?: string | undefined;
96
96
  distinct_id?: string | undefined;
97
97
  }>, import("zod").ZodObject<{
98
98
  operation: import("zod").ZodLiteral<"query">;
@@ -180,8 +180,8 @@ export declare const PosthogParamsSchema: z.ZodDiscriminatedUnion<"operation", [
180
180
  event?: string | undefined;
181
181
  person_id?: string | undefined;
182
182
  after?: string | undefined;
183
- distinct_id?: string | undefined;
184
183
  before?: string | undefined;
184
+ distinct_id?: string | undefined;
185
185
  }, {
186
186
  operation: "list_events";
187
187
  project_id: string;
@@ -191,9 +191,9 @@ export declare const PosthogParamsSchema: z.ZodDiscriminatedUnion<"operation", [
191
191
  event?: string | undefined;
192
192
  person_id?: string | undefined;
193
193
  after?: string | undefined;
194
- distinct_id?: string | undefined;
195
194
  host?: string | undefined;
196
195
  before?: string | undefined;
196
+ distinct_id?: string | undefined;
197
197
  }>, z.ZodObject<{
198
198
  operation: z.ZodLiteral<"query">;
199
199
  project_id: z.ZodString;
@@ -234,8 +234,8 @@ export declare const PosthogParamsSchema: z.ZodDiscriminatedUnion<"operation", [
234
234
  credentials?: Partial<Record<CredentialType, string>> | undefined;
235
235
  search?: string | undefined;
236
236
  limit?: number | undefined;
237
- distinct_id?: string | undefined;
238
237
  host?: string | undefined;
238
+ distinct_id?: string | undefined;
239
239
  }>, z.ZodObject<{
240
240
  operation: z.ZodLiteral<"get_insight">;
241
241
  project_id: z.ZodString;
@@ -162,7 +162,6 @@ export declare class SendSafelyBubble<T extends SendSafelyParamsInput = SendSafe
162
162
  fileSize?: number | undefined;
163
163
  }[] | undefined;
164
164
  state?: string | undefined;
165
- secureLink?: string | undefined;
166
165
  packageCode?: string | undefined;
167
166
  serverSecret?: string | undefined;
168
167
  recipients?: {
@@ -170,6 +169,7 @@ export declare class SendSafelyBubble<T extends SendSafelyParamsInput = SendSafe
170
169
  recipientId: string;
171
170
  }[] | undefined;
172
171
  life?: number | undefined;
172
+ secureLink?: string | undefined;
173
173
  }, {
174
174
  packageId: string;
175
175
  files?: {
@@ -178,7 +178,6 @@ export declare class SendSafelyBubble<T extends SendSafelyParamsInput = SendSafe
178
178
  fileSize?: number | undefined;
179
179
  }[] | undefined;
180
180
  state?: string | undefined;
181
- secureLink?: string | undefined;
182
181
  packageCode?: string | undefined;
183
182
  serverSecret?: string | undefined;
184
183
  recipients?: {
@@ -186,6 +185,7 @@ export declare class SendSafelyBubble<T extends SendSafelyParamsInput = SendSafe
186
185
  recipientId: string;
187
186
  }[] | undefined;
188
187
  life?: number | undefined;
188
+ secureLink?: string | undefined;
189
189
  }>>;
190
190
  error: import("zod").ZodString;
191
191
  }, "strip", import("zod").ZodTypeAny, {
@@ -200,7 +200,6 @@ export declare class SendSafelyBubble<T extends SendSafelyParamsInput = SendSafe
200
200
  fileSize?: number | undefined;
201
201
  }[] | undefined;
202
202
  state?: string | undefined;
203
- secureLink?: string | undefined;
204
203
  packageCode?: string | undefined;
205
204
  serverSecret?: string | undefined;
206
205
  recipients?: {
@@ -208,6 +207,7 @@ export declare class SendSafelyBubble<T extends SendSafelyParamsInput = SendSafe
208
207
  recipientId: string;
209
208
  }[] | undefined;
210
209
  life?: number | undefined;
210
+ secureLink?: string | undefined;
211
211
  } | undefined;
212
212
  }, {
213
213
  error: string;
@@ -221,7 +221,6 @@ export declare class SendSafelyBubble<T extends SendSafelyParamsInput = SendSafe
221
221
  fileSize?: number | undefined;
222
222
  }[] | undefined;
223
223
  state?: string | undefined;
224
- secureLink?: string | undefined;
225
224
  packageCode?: string | undefined;
226
225
  serverSecret?: string | undefined;
227
226
  recipients?: {
@@ -229,6 +228,7 @@ export declare class SendSafelyBubble<T extends SendSafelyParamsInput = SendSafe
229
228
  recipientId: string;
230
229
  }[] | undefined;
231
230
  life?: number | undefined;
231
+ secureLink?: string | undefined;
232
232
  } | undefined;
233
233
  }>]>;
234
234
  static readonly shortDescription = "Encrypted file transfer and secure messaging via SendSafely";