@bubblelab/bubble-core 0.1.5 → 0.1.8

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.
@@ -16,15 +16,15 @@ declare const HttpParamsSchema: z.ZodObject<{
16
16
  method: "DELETE" | "GET" | "POST" | "PUT" | "PATCH" | "HEAD" | "OPTIONS";
17
17
  followRedirects: boolean;
18
18
  credentials?: Partial<Record<CredentialType, string>> | undefined;
19
- body?: string | Record<string, unknown> | undefined;
20
19
  headers?: Record<string, string> | undefined;
20
+ body?: string | Record<string, unknown> | undefined;
21
21
  }, {
22
22
  url: string;
23
23
  credentials?: Partial<Record<CredentialType, string>> | undefined;
24
24
  timeout?: number | undefined;
25
+ headers?: Record<string, string> | undefined;
25
26
  body?: string | Record<string, unknown> | undefined;
26
27
  method?: "DELETE" | "GET" | "POST" | "PUT" | "PATCH" | "HEAD" | "OPTIONS" | undefined;
27
- headers?: Record<string, string> | undefined;
28
28
  followRedirects?: boolean | undefined;
29
29
  }>;
30
30
  type HttpParamsInput = z.input<typeof HttpParamsSchema>;
@@ -43,9 +43,9 @@ declare const HttpResultSchema: z.ZodObject<{
43
43
  status: number;
44
44
  success: boolean;
45
45
  error: string;
46
- size: number;
47
- body: string;
48
46
  headers: Record<string, string>;
47
+ body: string;
48
+ size: number;
49
49
  statusText: string;
50
50
  responseTime: number;
51
51
  json?: unknown;
@@ -53,9 +53,9 @@ declare const HttpResultSchema: z.ZodObject<{
53
53
  status: number;
54
54
  success: boolean;
55
55
  error: string;
56
- size: number;
57
- body: string;
58
56
  headers: Record<string, string>;
57
+ body: string;
58
+ size: number;
59
59
  statusText: string;
60
60
  responseTime: number;
61
61
  json?: unknown;
@@ -80,15 +80,15 @@ export declare class HttpBubble extends ServiceBubble<HttpParams, HttpResult> {
80
80
  method: "DELETE" | "GET" | "POST" | "PUT" | "PATCH" | "HEAD" | "OPTIONS";
81
81
  followRedirects: boolean;
82
82
  credentials?: Partial<Record<CredentialType, string>> | undefined;
83
- body?: string | Record<string, unknown> | undefined;
84
83
  headers?: Record<string, string> | undefined;
84
+ body?: string | Record<string, unknown> | undefined;
85
85
  }, {
86
86
  url: string;
87
87
  credentials?: Partial<Record<CredentialType, string>> | undefined;
88
88
  timeout?: number | undefined;
89
+ headers?: Record<string, string> | undefined;
89
90
  body?: string | Record<string, unknown> | undefined;
90
91
  method?: "DELETE" | "GET" | "POST" | "PUT" | "PATCH" | "HEAD" | "OPTIONS" | undefined;
91
- headers?: Record<string, string> | undefined;
92
92
  followRedirects?: boolean | undefined;
93
93
  }>;
94
94
  static readonly resultSchema: z.ZodObject<{
@@ -105,9 +105,9 @@ export declare class HttpBubble extends ServiceBubble<HttpParams, HttpResult> {
105
105
  status: number;
106
106
  success: boolean;
107
107
  error: string;
108
- size: number;
109
- body: string;
110
108
  headers: Record<string, string>;
109
+ body: string;
110
+ size: number;
111
111
  statusText: string;
112
112
  responseTime: number;
113
113
  json?: unknown;
@@ -115,9 +115,9 @@ export declare class HttpBubble extends ServiceBubble<HttpParams, HttpResult> {
115
115
  status: number;
116
116
  success: boolean;
117
117
  error: string;
118
- size: number;
119
- body: string;
120
118
  headers: Record<string, string>;
119
+ body: string;
120
+ size: number;
121
121
  statusText: string;
122
122
  responseTime: number;
123
123
  json?: unknown;
@@ -51,6 +51,7 @@ declare const ResendParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
51
51
  value: string;
52
52
  name: string;
53
53
  }[] | undefined;
54
+ headers?: Record<string, string> | undefined;
54
55
  text?: string | undefined;
55
56
  html?: string | undefined;
56
57
  attachments?: {
@@ -63,7 +64,6 @@ declare const ResendParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
63
64
  bcc?: string | string[] | undefined;
64
65
  reply_to?: string | string[] | undefined;
65
66
  scheduled_at?: string | undefined;
66
- headers?: Record<string, string> | undefined;
67
67
  }, {
68
68
  operation: "send_email";
69
69
  to: string | string[];
@@ -73,6 +73,7 @@ declare const ResendParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
73
73
  value: string;
74
74
  name: string;
75
75
  }[] | undefined;
76
+ headers?: Record<string, string> | undefined;
76
77
  text?: string | undefined;
77
78
  html?: string | undefined;
78
79
  attachments?: {
@@ -86,7 +87,6 @@ declare const ResendParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
86
87
  bcc?: string | string[] | undefined;
87
88
  reply_to?: string | string[] | undefined;
88
89
  scheduled_at?: string | undefined;
89
- headers?: Record<string, string> | undefined;
90
90
  }>, z.ZodObject<{
91
91
  operation: z.ZodLiteral<"get_email_status">;
92
92
  email_id: z.ZodString;
@@ -198,6 +198,7 @@ export declare class ResendBubble<T extends ResendParams = ResendParams> extends
198
198
  value: string;
199
199
  name: string;
200
200
  }[] | undefined;
201
+ headers?: Record<string, string> | undefined;
201
202
  text?: string | undefined;
202
203
  html?: string | undefined;
203
204
  attachments?: {
@@ -210,7 +211,6 @@ export declare class ResendBubble<T extends ResendParams = ResendParams> extends
210
211
  bcc?: string | string[] | undefined;
211
212
  reply_to?: string | string[] | undefined;
212
213
  scheduled_at?: string | undefined;
213
- headers?: Record<string, string> | undefined;
214
214
  }, {
215
215
  operation: "send_email";
216
216
  to: string | string[];
@@ -220,6 +220,7 @@ export declare class ResendBubble<T extends ResendParams = ResendParams> extends
220
220
  value: string;
221
221
  name: string;
222
222
  }[] | undefined;
223
+ headers?: Record<string, string> | undefined;
223
224
  text?: string | undefined;
224
225
  html?: string | undefined;
225
226
  attachments?: {
@@ -233,7 +234,6 @@ export declare class ResendBubble<T extends ResendParams = ResendParams> extends
233
234
  bcc?: string | string[] | undefined;
234
235
  reply_to?: string | string[] | undefined;
235
236
  scheduled_at?: string | undefined;
236
- headers?: Record<string, string> | undefined;
237
237
  }>, z.ZodObject<{
238
238
  operation: z.ZodLiteral<"get_email_status">;
239
239
  email_id: z.ZodString;
@@ -2720,7 +2720,6 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
2720
2720
  }, "strip", z.ZodTypeAny, {
2721
2721
  name: string;
2722
2722
  user: string;
2723
- size: number;
2724
2723
  id: string;
2725
2724
  username: string;
2726
2725
  timestamp: number;
@@ -2729,6 +2728,7 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
2729
2728
  filetype: string;
2730
2729
  pretty_type: string;
2731
2730
  editable: boolean;
2731
+ size: number;
2732
2732
  mode: string;
2733
2733
  is_external: boolean;
2734
2734
  external_type: string;
@@ -2765,7 +2765,6 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
2765
2765
  }, {
2766
2766
  name: string;
2767
2767
  user: string;
2768
- size: number;
2769
2768
  id: string;
2770
2769
  username: string;
2771
2770
  timestamp: number;
@@ -2774,6 +2773,7 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
2774
2773
  filetype: string;
2775
2774
  pretty_type: string;
2776
2775
  editable: boolean;
2776
+ size: number;
2777
2777
  mode: string;
2778
2778
  is_external: boolean;
2779
2779
  external_type: string;
@@ -2818,7 +2818,6 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
2818
2818
  file?: {
2819
2819
  name: string;
2820
2820
  user: string;
2821
- size: number;
2822
2821
  id: string;
2823
2822
  username: string;
2824
2823
  timestamp: number;
@@ -2827,6 +2826,7 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
2827
2826
  filetype: string;
2828
2827
  pretty_type: string;
2829
2828
  editable: boolean;
2829
+ size: number;
2830
2830
  mode: string;
2831
2831
  is_external: boolean;
2832
2832
  external_type: string;
@@ -2869,7 +2869,6 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
2869
2869
  file?: {
2870
2870
  name: string;
2871
2871
  user: string;
2872
- size: number;
2873
2872
  id: string;
2874
2873
  username: string;
2875
2874
  timestamp: number;
@@ -2878,6 +2877,7 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
2878
2877
  filetype: string;
2879
2878
  pretty_type: string;
2880
2879
  editable: boolean;
2880
+ size: number;
2881
2881
  mode: string;
2882
2882
  is_external: boolean;
2883
2883
  external_type: string;
@@ -5644,7 +5644,6 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
5644
5644
  }, "strip", z.ZodTypeAny, {
5645
5645
  name: string;
5646
5646
  user: string;
5647
- size: number;
5648
5647
  id: string;
5649
5648
  username: string;
5650
5649
  timestamp: number;
@@ -5653,6 +5652,7 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
5653
5652
  filetype: string;
5654
5653
  pretty_type: string;
5655
5654
  editable: boolean;
5655
+ size: number;
5656
5656
  mode: string;
5657
5657
  is_external: boolean;
5658
5658
  external_type: string;
@@ -5689,7 +5689,6 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
5689
5689
  }, {
5690
5690
  name: string;
5691
5691
  user: string;
5692
- size: number;
5693
5692
  id: string;
5694
5693
  username: string;
5695
5694
  timestamp: number;
@@ -5698,6 +5697,7 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
5698
5697
  filetype: string;
5699
5698
  pretty_type: string;
5700
5699
  editable: boolean;
5700
+ size: number;
5701
5701
  mode: string;
5702
5702
  is_external: boolean;
5703
5703
  external_type: string;
@@ -5742,7 +5742,6 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
5742
5742
  file?: {
5743
5743
  name: string;
5744
5744
  user: string;
5745
- size: number;
5746
5745
  id: string;
5747
5746
  username: string;
5748
5747
  timestamp: number;
@@ -5751,6 +5750,7 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
5751
5750
  filetype: string;
5752
5751
  pretty_type: string;
5753
5752
  editable: boolean;
5753
+ size: number;
5754
5754
  mode: string;
5755
5755
  is_external: boolean;
5756
5756
  external_type: string;
@@ -5793,7 +5793,6 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
5793
5793
  file?: {
5794
5794
  name: string;
5795
5795
  user: string;
5796
- size: number;
5797
5796
  id: string;
5798
5797
  username: string;
5799
5798
  timestamp: number;
@@ -5802,6 +5801,7 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
5802
5801
  filetype: string;
5803
5802
  pretty_type: string;
5804
5803
  editable: boolean;
5804
+ size: number;
5805
5805
  mode: string;
5806
5806
  is_external: boolean;
5807
5807
  external_type: string;
@@ -103,8 +103,8 @@ declare const BubbleFlowValidationToolResultSchema: z.ZodObject<{
103
103
  error: z.ZodString;
104
104
  }, "strip", z.ZodTypeAny, {
105
105
  valid: boolean;
106
- error: string;
107
106
  success: boolean;
107
+ error: string;
108
108
  metadata: {
109
109
  strictMode: boolean;
110
110
  validatedAt: string;
@@ -122,8 +122,8 @@ declare const BubbleFlowValidationToolResultSchema: z.ZodObject<{
122
122
  bubbleCount?: number | undefined;
123
123
  }, {
124
124
  valid: boolean;
125
- error: string;
126
125
  success: boolean;
126
+ error: string;
127
127
  metadata: {
128
128
  strictMode: boolean;
129
129
  validatedAt: string;
@@ -224,8 +224,8 @@ export declare class BubbleFlowValidationTool extends ToolBubble<BubbleFlowValid
224
224
  error: z.ZodString;
225
225
  }, "strip", z.ZodTypeAny, {
226
226
  valid: boolean;
227
- error: string;
228
227
  success: boolean;
228
+ error: string;
229
229
  metadata: {
230
230
  strictMode: boolean;
231
231
  validatedAt: string;
@@ -243,8 +243,8 @@ export declare class BubbleFlowValidationTool extends ToolBubble<BubbleFlowValid
243
243
  bubbleCount?: number | undefined;
244
244
  }, {
245
245
  valid: boolean;
246
- error: string;
247
246
  success: boolean;
247
+ error: string;
248
248
  metadata: {
249
249
  strictMode: boolean;
250
250
  validatedAt: string;
@@ -24,15 +24,15 @@ declare const GetBubbleDetailsToolResultSchema: z.ZodObject<{
24
24
  error: z.ZodString;
25
25
  }, "strip", z.ZodTypeAny, {
26
26
  name: string;
27
- error: string;
28
27
  success: boolean;
28
+ error: string;
29
29
  outputSchema: string;
30
30
  usageExample: string;
31
31
  alias?: string | undefined;
32
32
  }, {
33
33
  name: string;
34
- error: string;
35
34
  success: boolean;
35
+ error: string;
36
36
  outputSchema: string;
37
37
  usageExample: string;
38
38
  alias?: string | undefined;
@@ -59,15 +59,15 @@ export declare class GetBubbleDetailsTool extends ToolBubble<GetBubbleDetailsToo
59
59
  error: z.ZodString;
60
60
  }, "strip", z.ZodTypeAny, {
61
61
  name: string;
62
- error: string;
63
62
  success: boolean;
63
+ error: string;
64
64
  outputSchema: string;
65
65
  usageExample: string;
66
66
  alias?: string | undefined;
67
67
  }, {
68
68
  name: string;
69
- error: string;
70
69
  success: boolean;
70
+ error: string;
71
71
  outputSchema: string;
72
72
  usageExample: string;
73
73
  alias?: string | undefined;
@@ -29,8 +29,8 @@ declare const ListBubblesToolResultSchema: z.ZodObject<{
29
29
  success: z.ZodBoolean;
30
30
  error: z.ZodString;
31
31
  }, "strip", z.ZodTypeAny, {
32
- error: string;
33
32
  success: boolean;
33
+ error: string;
34
34
  bubbles: {
35
35
  type: string;
36
36
  name: string;
@@ -40,8 +40,8 @@ declare const ListBubblesToolResultSchema: z.ZodObject<{
40
40
  }[];
41
41
  totalCount: number;
42
42
  }, {
43
- error: string;
44
43
  success: boolean;
44
+ error: string;
45
45
  bubbles: {
46
46
  type: string;
47
47
  name: string;
@@ -78,8 +78,8 @@ export declare class ListBubblesTool extends ToolBubble<ListBubblesToolParams, L
78
78
  success: z.ZodBoolean;
79
79
  error: z.ZodString;
80
80
  }, "strip", z.ZodTypeAny, {
81
- error: string;
82
81
  success: boolean;
82
+ error: string;
83
83
  bubbles: {
84
84
  type: string;
85
85
  name: string;
@@ -89,8 +89,8 @@ export declare class ListBubblesTool extends ToolBubble<ListBubblesToolParams, L
89
89
  }[];
90
90
  totalCount: number;
91
91
  }, {
92
- error: string;
93
92
  success: boolean;
93
+ error: string;
94
94
  bubbles: {
95
95
  type: string;
96
96
  name: string;
@@ -13,15 +13,15 @@ declare const ResearchAgentToolParamsSchema: z.ZodObject<{
13
13
  maxIterations: number;
14
14
  task: string;
15
15
  expectedResultSchema: string;
16
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
16
17
  model?: "openai/gpt-5" | "openai/gpt-5-mini" | "openai/gpt-o4-mini" | "openai/gpt-4o" | "google/gemini-2.5-pro" | "google/gemini-2.5-flash" | "google/gemini-2.5-flash-lite" | "google/gemini-2.5-flash-image-preview" | "anthropic/claude-sonnet-4-5-20250929" | undefined;
17
18
  maxTokens?: number | undefined;
18
- credentials?: Partial<Record<CredentialType, string>> | undefined;
19
19
  }, {
20
20
  task: string;
21
21
  expectedResultSchema: string;
22
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
22
23
  model?: "openai/gpt-5" | "openai/gpt-5-mini" | "openai/gpt-o4-mini" | "openai/gpt-4o" | "google/gemini-2.5-pro" | "google/gemini-2.5-flash" | "google/gemini-2.5-flash-lite" | "google/gemini-2.5-flash-image-preview" | "anthropic/claude-sonnet-4-5-20250929" | undefined;
23
24
  maxTokens?: number | undefined;
24
- credentials?: Partial<Record<CredentialType, string>> | undefined;
25
25
  maxIterations?: number | undefined;
26
26
  }>;
27
27
  declare const ResearchAgentToolResultSchema: z.ZodObject<{
@@ -32,15 +32,15 @@ declare const ResearchAgentToolResultSchema: z.ZodObject<{
32
32
  success: z.ZodBoolean;
33
33
  error: z.ZodString;
34
34
  }, "strip", z.ZodTypeAny, {
35
- error: string;
36
35
  success: boolean;
36
+ error: string;
37
37
  summary: string;
38
38
  sourcesUsed: string[];
39
39
  iterationsUsed: number;
40
40
  result?: any;
41
41
  }, {
42
- error: string;
43
42
  success: boolean;
43
+ error: string;
44
44
  summary: string;
45
45
  sourcesUsed: string[];
46
46
  iterationsUsed: number;
@@ -62,15 +62,15 @@ export declare class ResearchAgentTool extends ToolBubble<ResearchAgentToolParam
62
62
  maxIterations: number;
63
63
  task: string;
64
64
  expectedResultSchema: string;
65
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
65
66
  model?: "openai/gpt-5" | "openai/gpt-5-mini" | "openai/gpt-o4-mini" | "openai/gpt-4o" | "google/gemini-2.5-pro" | "google/gemini-2.5-flash" | "google/gemini-2.5-flash-lite" | "google/gemini-2.5-flash-image-preview" | "anthropic/claude-sonnet-4-5-20250929" | undefined;
66
67
  maxTokens?: number | undefined;
67
- credentials?: Partial<Record<CredentialType, string>> | undefined;
68
68
  }, {
69
69
  task: string;
70
70
  expectedResultSchema: string;
71
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
71
72
  model?: "openai/gpt-5" | "openai/gpt-5-mini" | "openai/gpt-o4-mini" | "openai/gpt-4o" | "google/gemini-2.5-pro" | "google/gemini-2.5-flash" | "google/gemini-2.5-flash-lite" | "google/gemini-2.5-flash-image-preview" | "anthropic/claude-sonnet-4-5-20250929" | undefined;
72
73
  maxTokens?: number | undefined;
73
- credentials?: Partial<Record<CredentialType, string>> | undefined;
74
74
  maxIterations?: number | undefined;
75
75
  }>;
76
76
  static readonly resultSchema: z.ZodObject<{
@@ -81,15 +81,15 @@ export declare class ResearchAgentTool extends ToolBubble<ResearchAgentToolParam
81
81
  success: z.ZodBoolean;
82
82
  error: z.ZodString;
83
83
  }, "strip", z.ZodTypeAny, {
84
- error: string;
85
84
  success: boolean;
85
+ error: string;
86
86
  summary: string;
87
87
  sourcesUsed: string[];
88
88
  iterationsUsed: number;
89
89
  result?: any;
90
90
  }, {
91
- error: string;
92
91
  success: boolean;
92
+ error: string;
93
93
  summary: string;
94
94
  sourcesUsed: string[];
95
95
  iterationsUsed: number;
@@ -68,9 +68,9 @@ declare const WebCrawlToolResultSchema: z.ZodObject<{
68
68
  maxPagesReached?: boolean | undefined;
69
69
  }>>;
70
70
  }, "strip", z.ZodTypeAny, {
71
- url: string;
72
- error: string;
73
71
  success: boolean;
72
+ error: string;
73
+ url: string;
74
74
  pages: {
75
75
  content: string;
76
76
  url: string;
@@ -84,9 +84,9 @@ declare const WebCrawlToolResultSchema: z.ZodObject<{
84
84
  maxPagesReached?: boolean | undefined;
85
85
  } | undefined;
86
86
  }, {
87
- url: string;
88
- error: string;
89
87
  success: boolean;
88
+ error: string;
89
+ url: string;
90
90
  pages: {
91
91
  content: string;
92
92
  url: string;
@@ -171,9 +171,9 @@ export declare class WebCrawlTool extends ToolBubble<WebCrawlToolParams, WebCraw
171
171
  maxPagesReached?: boolean | undefined;
172
172
  }>>;
173
173
  }, "strip", z.ZodTypeAny, {
174
- url: string;
175
- error: string;
176
174
  success: boolean;
175
+ error: string;
176
+ url: string;
177
177
  pages: {
178
178
  content: string;
179
179
  url: string;
@@ -187,9 +187,9 @@ export declare class WebCrawlTool extends ToolBubble<WebCrawlToolParams, WebCraw
187
187
  maxPagesReached?: boolean | undefined;
188
188
  } | undefined;
189
189
  }, {
190
- url: string;
191
- error: string;
192
190
  success: boolean;
191
+ error: string;
192
+ url: string;
193
193
  pages: {
194
194
  content: string;
195
195
  url: string;
@@ -16,16 +16,16 @@ declare const WebScrapeToolParamsSchema: z.ZodObject<{
16
16
  script: z.ZodOptional<z.ZodString>;
17
17
  }, "strip", z.ZodTypeAny, {
18
18
  type: "wait" | "click" | "write" | "press" | "scroll" | "executeJavascript";
19
- text?: string | undefined;
20
19
  script?: string | undefined;
20
+ text?: string | undefined;
21
21
  key?: string | undefined;
22
22
  milliseconds?: number | undefined;
23
23
  selector?: string | undefined;
24
24
  direction?: "up" | "down" | undefined;
25
25
  }, {
26
26
  type: "wait" | "click" | "write" | "press" | "scroll" | "executeJavascript";
27
- text?: string | undefined;
28
27
  script?: string | undefined;
28
+ text?: string | undefined;
29
29
  key?: string | undefined;
30
30
  milliseconds?: number | undefined;
31
31
  selector?: string | undefined;
@@ -43,8 +43,8 @@ declare const WebScrapeToolParamsSchema: z.ZodObject<{
43
43
  headers?: Record<string, string> | undefined;
44
44
  actions?: {
45
45
  type: "wait" | "click" | "write" | "press" | "scroll" | "executeJavascript";
46
- text?: string | undefined;
47
46
  script?: string | undefined;
47
+ text?: string | undefined;
48
48
  key?: string | undefined;
49
49
  milliseconds?: number | undefined;
50
50
  selector?: string | undefined;
@@ -59,8 +59,8 @@ declare const WebScrapeToolParamsSchema: z.ZodObject<{
59
59
  waitFor?: number | undefined;
60
60
  actions?: {
61
61
  type: "wait" | "click" | "write" | "press" | "scroll" | "executeJavascript";
62
- text?: string | undefined;
63
62
  script?: string | undefined;
63
+ text?: string | undefined;
64
64
  key?: string | undefined;
65
65
  milliseconds?: number | undefined;
66
66
  selector?: string | undefined;
@@ -87,10 +87,10 @@ declare const WebScrapeToolResultSchema: z.ZodObject<{
87
87
  }, "strip", z.ZodTypeAny, {
88
88
  format: string;
89
89
  title: string;
90
+ success: boolean;
91
+ error: string;
90
92
  content: string;
91
93
  url: string;
92
- error: string;
93
- success: boolean;
94
94
  metadata?: {
95
95
  loadTime?: number | undefined;
96
96
  statusCode?: number | undefined;
@@ -98,10 +98,10 @@ declare const WebScrapeToolResultSchema: z.ZodObject<{
98
98
  }, {
99
99
  format: string;
100
100
  title: string;
101
+ success: boolean;
102
+ error: string;
101
103
  content: string;
102
104
  url: string;
103
- error: string;
104
- success: boolean;
105
105
  metadata?: {
106
106
  loadTime?: number | undefined;
107
107
  statusCode?: number | undefined;
@@ -126,16 +126,16 @@ export declare class WebScrapeTool extends ToolBubble<WebScrapeToolParams, WebSc
126
126
  script: z.ZodOptional<z.ZodString>;
127
127
  }, "strip", z.ZodTypeAny, {
128
128
  type: "wait" | "click" | "write" | "press" | "scroll" | "executeJavascript";
129
- text?: string | undefined;
130
129
  script?: string | undefined;
130
+ text?: string | undefined;
131
131
  key?: string | undefined;
132
132
  milliseconds?: number | undefined;
133
133
  selector?: string | undefined;
134
134
  direction?: "up" | "down" | undefined;
135
135
  }, {
136
136
  type: "wait" | "click" | "write" | "press" | "scroll" | "executeJavascript";
137
- text?: string | undefined;
138
137
  script?: string | undefined;
138
+ text?: string | undefined;
139
139
  key?: string | undefined;
140
140
  milliseconds?: number | undefined;
141
141
  selector?: string | undefined;
@@ -153,8 +153,8 @@ export declare class WebScrapeTool extends ToolBubble<WebScrapeToolParams, WebSc
153
153
  headers?: Record<string, string> | undefined;
154
154
  actions?: {
155
155
  type: "wait" | "click" | "write" | "press" | "scroll" | "executeJavascript";
156
- text?: string | undefined;
157
156
  script?: string | undefined;
157
+ text?: string | undefined;
158
158
  key?: string | undefined;
159
159
  milliseconds?: number | undefined;
160
160
  selector?: string | undefined;
@@ -169,8 +169,8 @@ export declare class WebScrapeTool extends ToolBubble<WebScrapeToolParams, WebSc
169
169
  waitFor?: number | undefined;
170
170
  actions?: {
171
171
  type: "wait" | "click" | "write" | "press" | "scroll" | "executeJavascript";
172
- text?: string | undefined;
173
172
  script?: string | undefined;
173
+ text?: string | undefined;
174
174
  key?: string | undefined;
175
175
  milliseconds?: number | undefined;
176
176
  selector?: string | undefined;
@@ -197,10 +197,10 @@ export declare class WebScrapeTool extends ToolBubble<WebScrapeToolParams, WebSc
197
197
  }, "strip", z.ZodTypeAny, {
198
198
  format: string;
199
199
  title: string;
200
+ success: boolean;
201
+ error: string;
200
202
  content: string;
201
203
  url: string;
202
- error: string;
203
- success: boolean;
204
204
  metadata?: {
205
205
  loadTime?: number | undefined;
206
206
  statusCode?: number | undefined;
@@ -208,10 +208,10 @@ export declare class WebScrapeTool extends ToolBubble<WebScrapeToolParams, WebSc
208
208
  }, {
209
209
  format: string;
210
210
  title: string;
211
+ success: boolean;
212
+ error: string;
211
213
  content: string;
212
214
  url: string;
213
- error: string;
214
- success: boolean;
215
215
  metadata?: {
216
216
  loadTime?: number | undefined;
217
217
  statusCode?: number | undefined;
@@ -36,17 +36,17 @@ declare const BubbleFlowGeneratorResultSchema: z.ZodObject<{
36
36
  summary: z.ZodDefault<z.ZodString>;
37
37
  inputsSchema: z.ZodDefault<z.ZodString>;
38
38
  }, "strip", z.ZodTypeAny, {
39
- toolCalls: any[];
40
- error: string;
41
39
  success: boolean;
40
+ error: string;
41
+ toolCalls: any[];
42
42
  summary: string;
43
43
  generatedCode: string;
44
44
  isValid: boolean;
45
45
  inputsSchema: string;
46
46
  }, {
47
- toolCalls: any[];
48
- error: string;
49
47
  success: boolean;
48
+ error: string;
49
+ toolCalls: any[];
50
50
  generatedCode: string;
51
51
  isValid: boolean;
52
52
  summary?: string | undefined;
@@ -79,17 +79,17 @@ export declare class BubbleFlowGeneratorWorkflow extends WorkflowBubble<BubbleFl
79
79
  summary: z.ZodDefault<z.ZodString>;
80
80
  inputsSchema: z.ZodDefault<z.ZodString>;
81
81
  }, "strip", z.ZodTypeAny, {
82
- toolCalls: any[];
83
- error: string;
84
82
  success: boolean;
83
+ error: string;
84
+ toolCalls: any[];
85
85
  summary: string;
86
86
  generatedCode: string;
87
87
  isValid: boolean;
88
88
  inputsSchema: string;
89
89
  }, {
90
- toolCalls: any[];
91
- error: string;
92
90
  success: boolean;
91
+ error: string;
92
+ toolCalls: any[];
93
93
  generatedCode: string;
94
94
  isValid: boolean;
95
95
  summary?: string | undefined;