@bubblelab/bubble-core 0.1.44 → 0.1.45

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 (43) hide show
  1. package/dist/bubble-bundle.d.ts +67 -67
  2. package/dist/bubbles/service-bubble/agi-inc.d.ts +24 -24
  3. package/dist/bubbles/service-bubble/ai-agent.d.ts +24 -24
  4. package/dist/bubbles/service-bubble/apify/apify.d.ts +14 -14
  5. package/dist/bubbles/service-bubble/ashby/ashby.d.ts +48 -48
  6. package/dist/bubbles/service-bubble/ashby/ashby.schema.d.ts +10 -10
  7. package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +16 -16
  8. package/dist/bubbles/service-bubble/browserbase/browserbase.schema.d.ts +16 -16
  9. package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +6 -6
  10. package/dist/bubbles/service-bubble/crustdata/crustdata.schema.d.ts +80 -80
  11. package/dist/bubbles/service-bubble/firecrawl.d.ts +268 -268
  12. package/dist/bubbles/service-bubble/followupboss.d.ts +172 -172
  13. package/dist/bubbles/service-bubble/fullenrich/fullenrich.d.ts +233 -233
  14. package/dist/bubbles/service-bubble/fullenrich/fullenrich.d.ts.map +1 -1
  15. package/dist/bubbles/service-bubble/fullenrich/fullenrich.js +59 -2
  16. package/dist/bubbles/service-bubble/fullenrich/fullenrich.js.map +1 -1
  17. package/dist/bubbles/service-bubble/fullenrich/fullenrich.schema.d.ts +341 -341
  18. package/dist/bubbles/service-bubble/github.d.ts +28 -28
  19. package/dist/bubbles/service-bubble/gmail.d.ts +104 -104
  20. package/dist/bubbles/service-bubble/google-drive.d.ts +32 -32
  21. package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +10 -10
  22. package/dist/bubbles/service-bubble/http.d.ts +4 -4
  23. package/dist/bubbles/service-bubble/insforge-db.d.ts +8 -8
  24. package/dist/bubbles/service-bubble/notion/notion.d.ts +80 -80
  25. package/dist/bubbles/service-bubble/postgresql.d.ts +8 -8
  26. package/dist/bubbles/service-bubble/resend.d.ts +8 -8
  27. package/dist/bubbles/service-bubble/slack/slack.d.ts +88 -88
  28. package/dist/bubbles/service-bubble/storage.d.ts +20 -20
  29. package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +5 -5
  30. package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +50 -50
  31. package/dist/bubbles/tool-bubble/google-maps-tool.d.ts +8 -8
  32. package/dist/bubbles/tool-bubble/linkedin-connection-tool/linkedin-connection-tool.d.ts +4 -4
  33. package/dist/bubbles/tool-bubble/linkedin-connection-tool/linkedin-connection-tool.schema.d.ts +6 -6
  34. package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +330 -330
  35. package/dist/bubbles/tool-bubble/people-search-tool.d.ts +18 -18
  36. package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +4 -4
  37. package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +60 -60
  38. package/dist/bubbles/tool-bubble/twitter-tool.d.ts +90 -90
  39. package/dist/bubbles/tool-bubble/web-search-tool.d.ts +4 -4
  40. package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +12 -12
  41. package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +16 -16
  42. package/dist/bubbles.json +1 -1
  43. package/package.json +2 -2
@@ -14,15 +14,15 @@ declare const AGIIncParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
14
14
  operation: "create_session";
15
15
  agent_name: "agi-0" | "agi-0-fast";
16
16
  enable_memory_snapshot: boolean;
17
- credentials?: Partial<Record<CredentialType, string>> | undefined;
18
17
  webhook_url?: string | undefined;
18
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
19
19
  restore_from_session_id?: string | undefined;
20
20
  restore_default_environment_from_user_id?: string | undefined;
21
21
  }, {
22
22
  operation: "create_session";
23
+ webhook_url?: string | undefined;
23
24
  credentials?: Partial<Record<CredentialType, string>> | undefined;
24
25
  agent_name?: "agi-0" | "agi-0-fast" | undefined;
25
- webhook_url?: string | undefined;
26
26
  restore_from_session_id?: string | undefined;
27
27
  restore_default_environment_from_user_id?: string | undefined;
28
28
  enable_memory_snapshot?: boolean | undefined;
@@ -202,8 +202,8 @@ declare const AGIIncResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
202
202
  error: string;
203
203
  ok: boolean;
204
204
  status?: "error" | "completed" | "initializing" | "ready" | "running" | "paused" | "terminated" | undefined;
205
- session_id?: string | undefined;
206
205
  created_at?: string | undefined;
206
+ session_id?: string | undefined;
207
207
  vnc_url?: string | undefined;
208
208
  agent_name?: string | undefined;
209
209
  }, {
@@ -212,8 +212,8 @@ declare const AGIIncResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
212
212
  error: string;
213
213
  ok: boolean;
214
214
  status?: "error" | "completed" | "initializing" | "ready" | "running" | "paused" | "terminated" | undefined;
215
- session_id?: string | undefined;
216
215
  created_at?: string | undefined;
216
+ session_id?: string | undefined;
217
217
  vnc_url?: string | undefined;
218
218
  agent_name?: string | undefined;
219
219
  }>, z.ZodObject<{
@@ -227,14 +227,14 @@ declare const AGIIncResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
227
227
  created_at: z.ZodString;
228
228
  }, "strip", z.ZodTypeAny, {
229
229
  status: "error" | "completed" | "initializing" | "ready" | "running" | "paused" | "terminated";
230
- session_id: string;
231
230
  created_at: string;
231
+ session_id: string;
232
232
  agent_name: string;
233
233
  vnc_url?: string | undefined;
234
234
  }, {
235
235
  status: "error" | "completed" | "initializing" | "ready" | "running" | "paused" | "terminated";
236
- session_id: string;
237
236
  created_at: string;
237
+ session_id: string;
238
238
  agent_name: string;
239
239
  vnc_url?: string | undefined;
240
240
  }>, "many">>;
@@ -247,8 +247,8 @@ declare const AGIIncResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
247
247
  ok: boolean;
248
248
  sessions?: {
249
249
  status: "error" | "completed" | "initializing" | "ready" | "running" | "paused" | "terminated";
250
- session_id: string;
251
250
  created_at: string;
251
+ session_id: string;
252
252
  agent_name: string;
253
253
  vnc_url?: string | undefined;
254
254
  }[] | undefined;
@@ -259,8 +259,8 @@ declare const AGIIncResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
259
259
  ok: boolean;
260
260
  sessions?: {
261
261
  status: "error" | "completed" | "initializing" | "ready" | "running" | "paused" | "terminated";
262
- session_id: string;
263
262
  created_at: string;
263
+ session_id: string;
264
264
  agent_name: string;
265
265
  vnc_url?: string | undefined;
266
266
  }[] | undefined;
@@ -275,14 +275,14 @@ declare const AGIIncResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
275
275
  created_at: z.ZodString;
276
276
  }, "strip", z.ZodTypeAny, {
277
277
  status: "error" | "completed" | "initializing" | "ready" | "running" | "paused" | "terminated";
278
- session_id: string;
279
278
  created_at: string;
279
+ session_id: string;
280
280
  agent_name: string;
281
281
  vnc_url?: string | undefined;
282
282
  }, {
283
283
  status: "error" | "completed" | "initializing" | "ready" | "running" | "paused" | "terminated";
284
- session_id: string;
285
284
  created_at: string;
285
+ session_id: string;
286
286
  agent_name: string;
287
287
  vnc_url?: string | undefined;
288
288
  }>>;
@@ -295,8 +295,8 @@ declare const AGIIncResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
295
295
  ok: boolean;
296
296
  session?: {
297
297
  status: "error" | "completed" | "initializing" | "ready" | "running" | "paused" | "terminated";
298
- session_id: string;
299
298
  created_at: string;
299
+ session_id: string;
300
300
  agent_name: string;
301
301
  vnc_url?: string | undefined;
302
302
  } | undefined;
@@ -307,8 +307,8 @@ declare const AGIIncResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
307
307
  ok: boolean;
308
308
  session?: {
309
309
  status: "error" | "completed" | "initializing" | "ready" | "running" | "paused" | "terminated";
310
- session_id: string;
311
310
  created_at: string;
311
+ session_id: string;
312
312
  agent_name: string;
313
313
  vnc_url?: string | undefined;
314
314
  } | undefined;
@@ -567,15 +567,15 @@ export declare class AGIIncBubble<T extends AGIIncParams = AGIIncParams> extends
567
567
  operation: "create_session";
568
568
  agent_name: "agi-0" | "agi-0-fast";
569
569
  enable_memory_snapshot: boolean;
570
- credentials?: Partial<Record<CredentialType, string>> | undefined;
571
570
  webhook_url?: string | undefined;
571
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
572
572
  restore_from_session_id?: string | undefined;
573
573
  restore_default_environment_from_user_id?: string | undefined;
574
574
  }, {
575
575
  operation: "create_session";
576
+ webhook_url?: string | undefined;
576
577
  credentials?: Partial<Record<CredentialType, string>> | undefined;
577
578
  agent_name?: "agi-0" | "agi-0-fast" | undefined;
578
- webhook_url?: string | undefined;
579
579
  restore_from_session_id?: string | undefined;
580
580
  restore_default_environment_from_user_id?: string | undefined;
581
581
  enable_memory_snapshot?: boolean | undefined;
@@ -755,8 +755,8 @@ export declare class AGIIncBubble<T extends AGIIncParams = AGIIncParams> extends
755
755
  error: string;
756
756
  ok: boolean;
757
757
  status?: "error" | "completed" | "initializing" | "ready" | "running" | "paused" | "terminated" | undefined;
758
- session_id?: string | undefined;
759
758
  created_at?: string | undefined;
759
+ session_id?: string | undefined;
760
760
  vnc_url?: string | undefined;
761
761
  agent_name?: string | undefined;
762
762
  }, {
@@ -765,8 +765,8 @@ export declare class AGIIncBubble<T extends AGIIncParams = AGIIncParams> extends
765
765
  error: string;
766
766
  ok: boolean;
767
767
  status?: "error" | "completed" | "initializing" | "ready" | "running" | "paused" | "terminated" | undefined;
768
- session_id?: string | undefined;
769
768
  created_at?: string | undefined;
769
+ session_id?: string | undefined;
770
770
  vnc_url?: string | undefined;
771
771
  agent_name?: string | undefined;
772
772
  }>, z.ZodObject<{
@@ -780,14 +780,14 @@ export declare class AGIIncBubble<T extends AGIIncParams = AGIIncParams> extends
780
780
  created_at: z.ZodString;
781
781
  }, "strip", z.ZodTypeAny, {
782
782
  status: "error" | "completed" | "initializing" | "ready" | "running" | "paused" | "terminated";
783
- session_id: string;
784
783
  created_at: string;
784
+ session_id: string;
785
785
  agent_name: string;
786
786
  vnc_url?: string | undefined;
787
787
  }, {
788
788
  status: "error" | "completed" | "initializing" | "ready" | "running" | "paused" | "terminated";
789
- session_id: string;
790
789
  created_at: string;
790
+ session_id: string;
791
791
  agent_name: string;
792
792
  vnc_url?: string | undefined;
793
793
  }>, "many">>;
@@ -800,8 +800,8 @@ export declare class AGIIncBubble<T extends AGIIncParams = AGIIncParams> extends
800
800
  ok: boolean;
801
801
  sessions?: {
802
802
  status: "error" | "completed" | "initializing" | "ready" | "running" | "paused" | "terminated";
803
- session_id: string;
804
803
  created_at: string;
804
+ session_id: string;
805
805
  agent_name: string;
806
806
  vnc_url?: string | undefined;
807
807
  }[] | undefined;
@@ -812,8 +812,8 @@ export declare class AGIIncBubble<T extends AGIIncParams = AGIIncParams> extends
812
812
  ok: boolean;
813
813
  sessions?: {
814
814
  status: "error" | "completed" | "initializing" | "ready" | "running" | "paused" | "terminated";
815
- session_id: string;
816
815
  created_at: string;
816
+ session_id: string;
817
817
  agent_name: string;
818
818
  vnc_url?: string | undefined;
819
819
  }[] | undefined;
@@ -828,14 +828,14 @@ export declare class AGIIncBubble<T extends AGIIncParams = AGIIncParams> extends
828
828
  created_at: z.ZodString;
829
829
  }, "strip", z.ZodTypeAny, {
830
830
  status: "error" | "completed" | "initializing" | "ready" | "running" | "paused" | "terminated";
831
- session_id: string;
832
831
  created_at: string;
832
+ session_id: string;
833
833
  agent_name: string;
834
834
  vnc_url?: string | undefined;
835
835
  }, {
836
836
  status: "error" | "completed" | "initializing" | "ready" | "running" | "paused" | "terminated";
837
- session_id: string;
838
837
  created_at: string;
838
+ session_id: string;
839
839
  agent_name: string;
840
840
  vnc_url?: string | undefined;
841
841
  }>>;
@@ -848,8 +848,8 @@ export declare class AGIIncBubble<T extends AGIIncParams = AGIIncParams> extends
848
848
  ok: boolean;
849
849
  session?: {
850
850
  status: "error" | "completed" | "initializing" | "ready" | "running" | "paused" | "terminated";
851
- session_id: string;
852
851
  created_at: string;
852
+ session_id: string;
853
853
  agent_name: string;
854
854
  vnc_url?: string | undefined;
855
855
  } | undefined;
@@ -860,8 +860,8 @@ export declare class AGIIncBubble<T extends AGIIncParams = AGIIncParams> extends
860
860
  ok: boolean;
861
861
  session?: {
862
862
  status: "error" | "completed" | "initializing" | "ready" | "running" | "paused" | "terminated";
863
- session_id: string;
864
863
  created_at: string;
864
+ session_id: string;
865
865
  agent_name: string;
866
866
  vnc_url?: string | undefined;
867
867
  } | undefined;
@@ -191,6 +191,12 @@ declare const AIAgentParamsSchema: z.ZodObject<{
191
191
  maxRetries?: number | undefined;
192
192
  } | undefined;
193
193
  };
194
+ streaming: boolean;
195
+ tools: {
196
+ name: "get-bubble-details-tool" | "get-trigger-detail-tool" | "list-bubbles-tool" | "sql-query-tool" | "chart-js-tool" | "web-search-tool" | "web-scrape-tool" | "web-crawl-tool" | "web-extract-tool" | "research-agent-tool" | "reddit-scrape-tool" | "bubbleflow-validation-tool" | "code-edit-tool" | "instagram-tool" | "linkedin-tool" | "tiktok-tool" | "twitter-tool" | "google-maps-tool" | "youtube-tool" | "amazon-shopping-tool" | "people-search-tool";
197
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
198
+ config?: Record<string, unknown> | undefined;
199
+ }[];
194
200
  images: ({
195
201
  type: "base64";
196
202
  data: string;
@@ -202,13 +208,7 @@ declare const AIAgentParamsSchema: z.ZodObject<{
202
208
  description?: string | undefined;
203
209
  })[];
204
210
  systemPrompt: string;
205
- tools: {
206
- name: "get-bubble-details-tool" | "get-trigger-detail-tool" | "list-bubbles-tool" | "sql-query-tool" | "chart-js-tool" | "web-search-tool" | "web-scrape-tool" | "web-crawl-tool" | "web-extract-tool" | "research-agent-tool" | "reddit-scrape-tool" | "bubbleflow-validation-tool" | "code-edit-tool" | "instagram-tool" | "linkedin-tool" | "tiktok-tool" | "twitter-tool" | "google-maps-tool" | "youtube-tool" | "amazon-shopping-tool" | "people-search-tool";
207
- credentials?: Partial<Record<CredentialType, string>> | undefined;
208
- config?: Record<string, unknown> | undefined;
209
- }[];
210
211
  maxIterations: number;
211
- streaming: boolean;
212
212
  name?: string | undefined;
213
213
  credentials?: Partial<Record<CredentialType, string>> | undefined;
214
214
  conversationHistory?: {
@@ -244,6 +244,12 @@ declare const AIAgentParamsSchema: z.ZodObject<{
244
244
  maxRetries?: number | undefined;
245
245
  } | undefined;
246
246
  } | undefined;
247
+ streaming?: boolean | undefined;
248
+ tools?: {
249
+ name: "get-bubble-details-tool" | "get-trigger-detail-tool" | "list-bubbles-tool" | "sql-query-tool" | "chart-js-tool" | "web-search-tool" | "web-scrape-tool" | "web-crawl-tool" | "web-extract-tool" | "research-agent-tool" | "reddit-scrape-tool" | "bubbleflow-validation-tool" | "code-edit-tool" | "instagram-tool" | "linkedin-tool" | "tiktok-tool" | "twitter-tool" | "google-maps-tool" | "youtube-tool" | "amazon-shopping-tool" | "people-search-tool";
250
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
251
+ config?: Record<string, unknown> | undefined;
252
+ }[] | undefined;
247
253
  images?: ({
248
254
  data: string;
249
255
  type?: "base64" | undefined;
@@ -261,11 +267,6 @@ declare const AIAgentParamsSchema: z.ZodObject<{
261
267
  name?: string | undefined;
262
268
  }[] | undefined;
263
269
  systemPrompt?: string | undefined;
264
- tools?: {
265
- name: "get-bubble-details-tool" | "get-trigger-detail-tool" | "list-bubbles-tool" | "sql-query-tool" | "chart-js-tool" | "web-search-tool" | "web-scrape-tool" | "web-crawl-tool" | "web-extract-tool" | "research-agent-tool" | "reddit-scrape-tool" | "bubbleflow-validation-tool" | "code-edit-tool" | "instagram-tool" | "linkedin-tool" | "tiktok-tool" | "twitter-tool" | "google-maps-tool" | "youtube-tool" | "amazon-shopping-tool" | "people-search-tool";
266
- credentials?: Partial<Record<CredentialType, string>> | undefined;
267
- config?: Record<string, unknown> | undefined;
268
- }[] | undefined;
269
270
  customTools?: {
270
271
  description: string;
271
272
  name: string;
@@ -273,7 +274,6 @@ declare const AIAgentParamsSchema: z.ZodObject<{
273
274
  func: (args_0: Record<string, unknown>, ...args: unknown[]) => Promise<unknown>;
274
275
  }[] | undefined;
275
276
  maxIterations?: number | undefined;
276
- streaming?: boolean | undefined;
277
277
  expectedOutputSchema?: string | z.ZodTypeAny | undefined;
278
278
  }>;
279
279
  declare const AIAgentResultSchema: z.ZodObject<{
@@ -490,6 +490,12 @@ export declare class AIAgentBubble extends ServiceBubble<AIAgentParamsParsed, AI
490
490
  maxRetries?: number | undefined;
491
491
  } | undefined;
492
492
  };
493
+ streaming: boolean;
494
+ tools: {
495
+ name: "get-bubble-details-tool" | "get-trigger-detail-tool" | "list-bubbles-tool" | "sql-query-tool" | "chart-js-tool" | "web-search-tool" | "web-scrape-tool" | "web-crawl-tool" | "web-extract-tool" | "research-agent-tool" | "reddit-scrape-tool" | "bubbleflow-validation-tool" | "code-edit-tool" | "instagram-tool" | "linkedin-tool" | "tiktok-tool" | "twitter-tool" | "google-maps-tool" | "youtube-tool" | "amazon-shopping-tool" | "people-search-tool";
496
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
497
+ config?: Record<string, unknown> | undefined;
498
+ }[];
493
499
  images: ({
494
500
  type: "base64";
495
501
  data: string;
@@ -501,13 +507,7 @@ export declare class AIAgentBubble extends ServiceBubble<AIAgentParamsParsed, AI
501
507
  description?: string | undefined;
502
508
  })[];
503
509
  systemPrompt: string;
504
- tools: {
505
- name: "get-bubble-details-tool" | "get-trigger-detail-tool" | "list-bubbles-tool" | "sql-query-tool" | "chart-js-tool" | "web-search-tool" | "web-scrape-tool" | "web-crawl-tool" | "web-extract-tool" | "research-agent-tool" | "reddit-scrape-tool" | "bubbleflow-validation-tool" | "code-edit-tool" | "instagram-tool" | "linkedin-tool" | "tiktok-tool" | "twitter-tool" | "google-maps-tool" | "youtube-tool" | "amazon-shopping-tool" | "people-search-tool";
506
- credentials?: Partial<Record<CredentialType, string>> | undefined;
507
- config?: Record<string, unknown> | undefined;
508
- }[];
509
510
  maxIterations: number;
510
- streaming: boolean;
511
511
  name?: string | undefined;
512
512
  credentials?: Partial<Record<CredentialType, string>> | undefined;
513
513
  conversationHistory?: {
@@ -543,6 +543,12 @@ export declare class AIAgentBubble extends ServiceBubble<AIAgentParamsParsed, AI
543
543
  maxRetries?: number | undefined;
544
544
  } | undefined;
545
545
  } | undefined;
546
+ streaming?: boolean | undefined;
547
+ tools?: {
548
+ name: "get-bubble-details-tool" | "get-trigger-detail-tool" | "list-bubbles-tool" | "sql-query-tool" | "chart-js-tool" | "web-search-tool" | "web-scrape-tool" | "web-crawl-tool" | "web-extract-tool" | "research-agent-tool" | "reddit-scrape-tool" | "bubbleflow-validation-tool" | "code-edit-tool" | "instagram-tool" | "linkedin-tool" | "tiktok-tool" | "twitter-tool" | "google-maps-tool" | "youtube-tool" | "amazon-shopping-tool" | "people-search-tool";
549
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
550
+ config?: Record<string, unknown> | undefined;
551
+ }[] | undefined;
546
552
  images?: ({
547
553
  data: string;
548
554
  type?: "base64" | undefined;
@@ -560,11 +566,6 @@ export declare class AIAgentBubble extends ServiceBubble<AIAgentParamsParsed, AI
560
566
  name?: string | undefined;
561
567
  }[] | undefined;
562
568
  systemPrompt?: string | undefined;
563
- tools?: {
564
- name: "get-bubble-details-tool" | "get-trigger-detail-tool" | "list-bubbles-tool" | "sql-query-tool" | "chart-js-tool" | "web-search-tool" | "web-scrape-tool" | "web-crawl-tool" | "web-extract-tool" | "research-agent-tool" | "reddit-scrape-tool" | "bubbleflow-validation-tool" | "code-edit-tool" | "instagram-tool" | "linkedin-tool" | "tiktok-tool" | "twitter-tool" | "google-maps-tool" | "youtube-tool" | "amazon-shopping-tool" | "people-search-tool";
565
- credentials?: Partial<Record<CredentialType, string>> | undefined;
566
- config?: Record<string, unknown> | undefined;
567
- }[] | undefined;
568
569
  customTools?: {
569
570
  description: string;
570
571
  name: string;
@@ -572,7 +573,6 @@ export declare class AIAgentBubble extends ServiceBubble<AIAgentParamsParsed, AI
572
573
  func: (args_0: Record<string, unknown>, ...args: unknown[]) => Promise<unknown>;
573
574
  }[] | undefined;
574
575
  maxIterations?: number | undefined;
575
- streaming?: boolean | undefined;
576
576
  expectedOutputSchema?: string | z.ZodTypeAny | undefined;
577
577
  }>;
578
578
  static readonly resultSchema: z.ZodObject<{
@@ -23,17 +23,17 @@ declare const ApifyParamsSchema: z.ZodObject<{
23
23
  timeout: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
24
24
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
25
25
  }, "strip", z.ZodTypeAny, {
26
- timeout: number;
27
26
  input: Record<string, unknown>;
27
+ timeout: number;
28
28
  limit: number;
29
29
  waitForFinish: boolean;
30
- credentials?: Partial<Record<CredentialType, string>> | undefined;
31
30
  search?: string | undefined;
31
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
32
32
  actorId?: string | undefined;
33
33
  }, {
34
34
  input: Record<string, unknown>;
35
- credentials?: Partial<Record<CredentialType, string>> | undefined;
36
35
  search?: string | undefined;
36
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
37
37
  timeout?: number | undefined;
38
38
  limit?: number | undefined;
39
39
  actorId?: string | undefined;
@@ -70,22 +70,22 @@ declare const ApifyResultSchema: z.ZodObject<{
70
70
  id: string;
71
71
  inputSchemaUrl: string;
72
72
  description?: string | null | undefined;
73
- stars?: number | null | undefined;
74
73
  usage?: {
75
74
  totalRuns?: number | undefined;
76
75
  usersCount?: number | undefined;
77
76
  } | null | undefined;
77
+ stars?: number | null | undefined;
78
78
  requiresRental?: boolean | undefined;
79
79
  }, {
80
80
  name: string;
81
81
  id: string;
82
82
  inputSchemaUrl: string;
83
83
  description?: string | null | undefined;
84
- stars?: number | null | undefined;
85
84
  usage?: {
86
85
  totalRuns?: number | undefined;
87
86
  usersCount?: number | undefined;
88
87
  } | null | undefined;
88
+ stars?: number | null | undefined;
89
89
  requiresRental?: boolean | undefined;
90
90
  }>, "many">>;
91
91
  }, "strip", z.ZodTypeAny, {
@@ -102,11 +102,11 @@ declare const ApifyResultSchema: z.ZodObject<{
102
102
  id: string;
103
103
  inputSchemaUrl: string;
104
104
  description?: string | null | undefined;
105
- stars?: number | null | undefined;
106
105
  usage?: {
107
106
  totalRuns?: number | undefined;
108
107
  usersCount?: number | undefined;
109
108
  } | null | undefined;
109
+ stars?: number | null | undefined;
110
110
  requiresRental?: boolean | undefined;
111
111
  }[] | undefined;
112
112
  }, {
@@ -123,11 +123,11 @@ declare const ApifyResultSchema: z.ZodObject<{
123
123
  id: string;
124
124
  inputSchemaUrl: string;
125
125
  description?: string | null | undefined;
126
- stars?: number | null | undefined;
127
126
  usage?: {
128
127
  totalRuns?: number | undefined;
129
128
  usersCount?: number | undefined;
130
129
  } | null | undefined;
130
+ stars?: number | null | undefined;
131
131
  requiresRental?: boolean | undefined;
132
132
  }[] | undefined;
133
133
  }>;
@@ -159,17 +159,17 @@ export declare class ApifyBubble<T extends string = string> extends ServiceBubbl
159
159
  timeout: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
160
160
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
161
161
  }, "strip", z.ZodTypeAny, {
162
- timeout: number;
163
162
  input: Record<string, unknown>;
163
+ timeout: number;
164
164
  limit: number;
165
165
  waitForFinish: boolean;
166
- credentials?: Partial<Record<CredentialType, string>> | undefined;
167
166
  search?: string | undefined;
167
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
168
168
  actorId?: string | undefined;
169
169
  }, {
170
170
  input: Record<string, unknown>;
171
- credentials?: Partial<Record<CredentialType, string>> | undefined;
172
171
  search?: string | undefined;
172
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
173
173
  timeout?: number | undefined;
174
174
  limit?: number | undefined;
175
175
  actorId?: string | undefined;
@@ -206,22 +206,22 @@ export declare class ApifyBubble<T extends string = string> extends ServiceBubbl
206
206
  id: string;
207
207
  inputSchemaUrl: string;
208
208
  description?: string | null | undefined;
209
- stars?: number | null | undefined;
210
209
  usage?: {
211
210
  totalRuns?: number | undefined;
212
211
  usersCount?: number | undefined;
213
212
  } | null | undefined;
213
+ stars?: number | null | undefined;
214
214
  requiresRental?: boolean | undefined;
215
215
  }, {
216
216
  name: string;
217
217
  id: string;
218
218
  inputSchemaUrl: string;
219
219
  description?: string | null | undefined;
220
- stars?: number | null | undefined;
221
220
  usage?: {
222
221
  totalRuns?: number | undefined;
223
222
  usersCount?: number | undefined;
224
223
  } | null | undefined;
224
+ stars?: number | null | undefined;
225
225
  requiresRental?: boolean | undefined;
226
226
  }>, "many">>;
227
227
  }, "strip", z.ZodTypeAny, {
@@ -238,11 +238,11 @@ export declare class ApifyBubble<T extends string = string> extends ServiceBubbl
238
238
  id: string;
239
239
  inputSchemaUrl: string;
240
240
  description?: string | null | undefined;
241
- stars?: number | null | undefined;
242
241
  usage?: {
243
242
  totalRuns?: number | undefined;
244
243
  usersCount?: number | undefined;
245
244
  } | null | undefined;
245
+ stars?: number | null | undefined;
246
246
  requiresRental?: boolean | undefined;
247
247
  }[] | undefined;
248
248
  }, {
@@ -259,11 +259,11 @@ export declare class ApifyBubble<T extends string = string> extends ServiceBubbl
259
259
  id: string;
260
260
  inputSchemaUrl: string;
261
261
  description?: string | null | undefined;
262
- stars?: number | null | undefined;
263
262
  usage?: {
264
263
  totalRuns?: number | undefined;
265
264
  usersCount?: number | undefined;
266
265
  } | null | undefined;
266
+ stars?: number | null | undefined;
267
267
  requiresRental?: boolean | undefined;
268
268
  }[] | undefined;
269
269
  }>;