@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
@@ -5,12 +5,12 @@ import { CredentialType, type BubbleName } from '@bubblelab/shared-schemas';
5
5
  declare const ResearchAgentToolParamsSchema: z.ZodObject<{
6
6
  task: z.ZodString;
7
7
  expectedResultSchema: z.ZodUnion<[z.ZodType<z.ZodTypeAny, z.ZodTypeDef, z.ZodTypeAny>, z.ZodString]>;
8
- model: z.ZodDefault<z.ZodEnum<["openai/gpt-5", "openai/gpt-5-mini", "openai/gpt-5.1", "openai/gpt-5.2", "google/gemini-2.5-pro", "google/gemini-2.5-flash", "google/gemini-2.5-flash-lite", "google/gemini-2.5-flash-image-preview", "google/gemini-3-pro-preview", "google/gemini-3-pro-image-preview", "google/gemini-3-flash-preview", "anthropic/claude-sonnet-4-5", "anthropic/claude-opus-4-5", "anthropic/claude-opus-4-6", "anthropic/claude-haiku-4-5", "openrouter/x-ai/grok-code-fast-1", "openrouter/z-ai/glm-4.6", "openrouter/z-ai/glm-4.7", "openrouter/anthropic/claude-sonnet-4.5", "openrouter/anthropic/claude-opus-4.5", "openrouter/anthropic/claude-opus-4.6", "openrouter/google/gemini-3-pro-preview", "openrouter/morph/morph-v3-large", "openrouter/openai/gpt-oss-120b", "openrouter/openai/o3-deep-research", "openrouter/openai/o4-mini-deep-research"]>>;
8
+ model: z.ZodDefault<z.ZodEnum<["openai/gpt-5", "openai/gpt-5-mini", "openai/gpt-5.1", "openai/gpt-5.2", "google/gemini-2.5-pro", "google/gemini-2.5-flash", "google/gemini-2.5-flash-lite", "google/gemini-2.5-flash-image-preview", "google/gemini-3-pro-preview", "google/gemini-3-pro-image-preview", "google/gemini-3-flash-preview", "anthropic/claude-sonnet-4-5", "anthropic/claude-sonnet-4-6", "anthropic/claude-opus-4-5", "anthropic/claude-opus-4-6", "anthropic/claude-haiku-4-5", "openrouter/x-ai/grok-code-fast-1", "openrouter/z-ai/glm-4.6", "openrouter/z-ai/glm-4.7", "openrouter/anthropic/claude-sonnet-4.5", "openrouter/anthropic/claude-opus-4.5", "openrouter/anthropic/claude-opus-4.6", "openrouter/google/gemini-3-pro-preview", "openrouter/morph/morph-v3-large", "openrouter/openai/gpt-oss-120b", "openrouter/openai/o3-deep-research", "openrouter/openai/o4-mini-deep-research"]>>;
9
9
  maxTokens: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
10
10
  maxIterations: z.ZodDefault<z.ZodNumber>;
11
11
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
12
12
  }, "strip", z.ZodTypeAny, {
13
- model: "openai/gpt-5" | "openai/gpt-5-mini" | "openai/gpt-5.1" | "openai/gpt-5.2" | "google/gemini-2.5-pro" | "google/gemini-2.5-flash" | "google/gemini-2.5-flash-lite" | "google/gemini-2.5-flash-image-preview" | "google/gemini-3-pro-preview" | "google/gemini-3-pro-image-preview" | "google/gemini-3-flash-preview" | "anthropic/claude-sonnet-4-5" | "anthropic/claude-opus-4-5" | "anthropic/claude-opus-4-6" | "anthropic/claude-haiku-4-5" | "openrouter/x-ai/grok-code-fast-1" | "openrouter/z-ai/glm-4.6" | "openrouter/z-ai/glm-4.7" | "openrouter/anthropic/claude-sonnet-4.5" | "openrouter/anthropic/claude-opus-4.5" | "openrouter/anthropic/claude-opus-4.6" | "openrouter/google/gemini-3-pro-preview" | "openrouter/morph/morph-v3-large" | "openrouter/openai/gpt-oss-120b" | "openrouter/openai/o3-deep-research" | "openrouter/openai/o4-mini-deep-research";
13
+ model: "openai/gpt-5" | "openai/gpt-5-mini" | "openai/gpt-5.1" | "openai/gpt-5.2" | "google/gemini-2.5-pro" | "google/gemini-2.5-flash" | "google/gemini-2.5-flash-lite" | "google/gemini-2.5-flash-image-preview" | "google/gemini-3-pro-preview" | "google/gemini-3-pro-image-preview" | "google/gemini-3-flash-preview" | "anthropic/claude-sonnet-4-5" | "anthropic/claude-sonnet-4-6" | "anthropic/claude-opus-4-5" | "anthropic/claude-opus-4-6" | "anthropic/claude-haiku-4-5" | "openrouter/x-ai/grok-code-fast-1" | "openrouter/z-ai/glm-4.6" | "openrouter/z-ai/glm-4.7" | "openrouter/anthropic/claude-sonnet-4.5" | "openrouter/anthropic/claude-opus-4.5" | "openrouter/anthropic/claude-opus-4.6" | "openrouter/google/gemini-3-pro-preview" | "openrouter/morph/morph-v3-large" | "openrouter/openai/gpt-oss-120b" | "openrouter/openai/o3-deep-research" | "openrouter/openai/o4-mini-deep-research";
14
14
  maxIterations: number;
15
15
  task: string;
16
16
  expectedResultSchema: string | z.ZodTypeAny;
@@ -19,7 +19,7 @@ declare const ResearchAgentToolParamsSchema: z.ZodObject<{
19
19
  }, {
20
20
  task: string;
21
21
  expectedResultSchema: string | z.ZodTypeAny;
22
- model?: "openai/gpt-5" | "openai/gpt-5-mini" | "openai/gpt-5.1" | "openai/gpt-5.2" | "google/gemini-2.5-pro" | "google/gemini-2.5-flash" | "google/gemini-2.5-flash-lite" | "google/gemini-2.5-flash-image-preview" | "google/gemini-3-pro-preview" | "google/gemini-3-pro-image-preview" | "google/gemini-3-flash-preview" | "anthropic/claude-sonnet-4-5" | "anthropic/claude-opus-4-5" | "anthropic/claude-opus-4-6" | "anthropic/claude-haiku-4-5" | "openrouter/x-ai/grok-code-fast-1" | "openrouter/z-ai/glm-4.6" | "openrouter/z-ai/glm-4.7" | "openrouter/anthropic/claude-sonnet-4.5" | "openrouter/anthropic/claude-opus-4.5" | "openrouter/anthropic/claude-opus-4.6" | "openrouter/google/gemini-3-pro-preview" | "openrouter/morph/morph-v3-large" | "openrouter/openai/gpt-oss-120b" | "openrouter/openai/o3-deep-research" | "openrouter/openai/o4-mini-deep-research" | undefined;
22
+ model?: "openai/gpt-5" | "openai/gpt-5-mini" | "openai/gpt-5.1" | "openai/gpt-5.2" | "google/gemini-2.5-pro" | "google/gemini-2.5-flash" | "google/gemini-2.5-flash-lite" | "google/gemini-2.5-flash-image-preview" | "google/gemini-3-pro-preview" | "google/gemini-3-pro-image-preview" | "google/gemini-3-flash-preview" | "anthropic/claude-sonnet-4-5" | "anthropic/claude-sonnet-4-6" | "anthropic/claude-opus-4-5" | "anthropic/claude-opus-4-6" | "anthropic/claude-haiku-4-5" | "openrouter/x-ai/grok-code-fast-1" | "openrouter/z-ai/glm-4.6" | "openrouter/z-ai/glm-4.7" | "openrouter/anthropic/claude-sonnet-4.5" | "openrouter/anthropic/claude-opus-4.5" | "openrouter/anthropic/claude-opus-4.6" | "openrouter/google/gemini-3-pro-preview" | "openrouter/morph/morph-v3-large" | "openrouter/openai/gpt-oss-120b" | "openrouter/openai/o3-deep-research" | "openrouter/openai/o4-mini-deep-research" | undefined;
23
23
  maxTokens?: number | undefined;
24
24
  credentials?: Partial<Record<CredentialType, string>> | undefined;
25
25
  maxIterations?: number | undefined;
@@ -54,12 +54,12 @@ export declare class ResearchAgentTool extends ToolBubble<ResearchAgentToolParam
54
54
  static readonly schema: z.ZodObject<{
55
55
  task: z.ZodString;
56
56
  expectedResultSchema: z.ZodUnion<[z.ZodType<z.ZodTypeAny, z.ZodTypeDef, z.ZodTypeAny>, z.ZodString]>;
57
- model: z.ZodDefault<z.ZodEnum<["openai/gpt-5", "openai/gpt-5-mini", "openai/gpt-5.1", "openai/gpt-5.2", "google/gemini-2.5-pro", "google/gemini-2.5-flash", "google/gemini-2.5-flash-lite", "google/gemini-2.5-flash-image-preview", "google/gemini-3-pro-preview", "google/gemini-3-pro-image-preview", "google/gemini-3-flash-preview", "anthropic/claude-sonnet-4-5", "anthropic/claude-opus-4-5", "anthropic/claude-opus-4-6", "anthropic/claude-haiku-4-5", "openrouter/x-ai/grok-code-fast-1", "openrouter/z-ai/glm-4.6", "openrouter/z-ai/glm-4.7", "openrouter/anthropic/claude-sonnet-4.5", "openrouter/anthropic/claude-opus-4.5", "openrouter/anthropic/claude-opus-4.6", "openrouter/google/gemini-3-pro-preview", "openrouter/morph/morph-v3-large", "openrouter/openai/gpt-oss-120b", "openrouter/openai/o3-deep-research", "openrouter/openai/o4-mini-deep-research"]>>;
57
+ model: z.ZodDefault<z.ZodEnum<["openai/gpt-5", "openai/gpt-5-mini", "openai/gpt-5.1", "openai/gpt-5.2", "google/gemini-2.5-pro", "google/gemini-2.5-flash", "google/gemini-2.5-flash-lite", "google/gemini-2.5-flash-image-preview", "google/gemini-3-pro-preview", "google/gemini-3-pro-image-preview", "google/gemini-3-flash-preview", "anthropic/claude-sonnet-4-5", "anthropic/claude-sonnet-4-6", "anthropic/claude-opus-4-5", "anthropic/claude-opus-4-6", "anthropic/claude-haiku-4-5", "openrouter/x-ai/grok-code-fast-1", "openrouter/z-ai/glm-4.6", "openrouter/z-ai/glm-4.7", "openrouter/anthropic/claude-sonnet-4.5", "openrouter/anthropic/claude-opus-4.5", "openrouter/anthropic/claude-opus-4.6", "openrouter/google/gemini-3-pro-preview", "openrouter/morph/morph-v3-large", "openrouter/openai/gpt-oss-120b", "openrouter/openai/o3-deep-research", "openrouter/openai/o4-mini-deep-research"]>>;
58
58
  maxTokens: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
59
59
  maxIterations: z.ZodDefault<z.ZodNumber>;
60
60
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
61
61
  }, "strip", z.ZodTypeAny, {
62
- model: "openai/gpt-5" | "openai/gpt-5-mini" | "openai/gpt-5.1" | "openai/gpt-5.2" | "google/gemini-2.5-pro" | "google/gemini-2.5-flash" | "google/gemini-2.5-flash-lite" | "google/gemini-2.5-flash-image-preview" | "google/gemini-3-pro-preview" | "google/gemini-3-pro-image-preview" | "google/gemini-3-flash-preview" | "anthropic/claude-sonnet-4-5" | "anthropic/claude-opus-4-5" | "anthropic/claude-opus-4-6" | "anthropic/claude-haiku-4-5" | "openrouter/x-ai/grok-code-fast-1" | "openrouter/z-ai/glm-4.6" | "openrouter/z-ai/glm-4.7" | "openrouter/anthropic/claude-sonnet-4.5" | "openrouter/anthropic/claude-opus-4.5" | "openrouter/anthropic/claude-opus-4.6" | "openrouter/google/gemini-3-pro-preview" | "openrouter/morph/morph-v3-large" | "openrouter/openai/gpt-oss-120b" | "openrouter/openai/o3-deep-research" | "openrouter/openai/o4-mini-deep-research";
62
+ model: "openai/gpt-5" | "openai/gpt-5-mini" | "openai/gpt-5.1" | "openai/gpt-5.2" | "google/gemini-2.5-pro" | "google/gemini-2.5-flash" | "google/gemini-2.5-flash-lite" | "google/gemini-2.5-flash-image-preview" | "google/gemini-3-pro-preview" | "google/gemini-3-pro-image-preview" | "google/gemini-3-flash-preview" | "anthropic/claude-sonnet-4-5" | "anthropic/claude-sonnet-4-6" | "anthropic/claude-opus-4-5" | "anthropic/claude-opus-4-6" | "anthropic/claude-haiku-4-5" | "openrouter/x-ai/grok-code-fast-1" | "openrouter/z-ai/glm-4.6" | "openrouter/z-ai/glm-4.7" | "openrouter/anthropic/claude-sonnet-4.5" | "openrouter/anthropic/claude-opus-4.5" | "openrouter/anthropic/claude-opus-4.6" | "openrouter/google/gemini-3-pro-preview" | "openrouter/morph/morph-v3-large" | "openrouter/openai/gpt-oss-120b" | "openrouter/openai/o3-deep-research" | "openrouter/openai/o4-mini-deep-research";
63
63
  maxIterations: number;
64
64
  task: string;
65
65
  expectedResultSchema: string | z.ZodTypeAny;
@@ -68,7 +68,7 @@ export declare class ResearchAgentTool extends ToolBubble<ResearchAgentToolParam
68
68
  }, {
69
69
  task: string;
70
70
  expectedResultSchema: string | z.ZodTypeAny;
71
- model?: "openai/gpt-5" | "openai/gpt-5-mini" | "openai/gpt-5.1" | "openai/gpt-5.2" | "google/gemini-2.5-pro" | "google/gemini-2.5-flash" | "google/gemini-2.5-flash-lite" | "google/gemini-2.5-flash-image-preview" | "google/gemini-3-pro-preview" | "google/gemini-3-pro-image-preview" | "google/gemini-3-flash-preview" | "anthropic/claude-sonnet-4-5" | "anthropic/claude-opus-4-5" | "anthropic/claude-opus-4-6" | "anthropic/claude-haiku-4-5" | "openrouter/x-ai/grok-code-fast-1" | "openrouter/z-ai/glm-4.6" | "openrouter/z-ai/glm-4.7" | "openrouter/anthropic/claude-sonnet-4.5" | "openrouter/anthropic/claude-opus-4.5" | "openrouter/anthropic/claude-opus-4.6" | "openrouter/google/gemini-3-pro-preview" | "openrouter/morph/morph-v3-large" | "openrouter/openai/gpt-oss-120b" | "openrouter/openai/o3-deep-research" | "openrouter/openai/o4-mini-deep-research" | undefined;
71
+ model?: "openai/gpt-5" | "openai/gpt-5-mini" | "openai/gpt-5.1" | "openai/gpt-5.2" | "google/gemini-2.5-pro" | "google/gemini-2.5-flash" | "google/gemini-2.5-flash-lite" | "google/gemini-2.5-flash-image-preview" | "google/gemini-3-pro-preview" | "google/gemini-3-pro-image-preview" | "google/gemini-3-flash-preview" | "anthropic/claude-sonnet-4-5" | "anthropic/claude-sonnet-4-6" | "anthropic/claude-opus-4-5" | "anthropic/claude-opus-4-6" | "anthropic/claude-haiku-4-5" | "openrouter/x-ai/grok-code-fast-1" | "openrouter/z-ai/glm-4.6" | "openrouter/z-ai/glm-4.7" | "openrouter/anthropic/claude-sonnet-4.5" | "openrouter/anthropic/claude-opus-4.5" | "openrouter/anthropic/claude-opus-4.6" | "openrouter/google/gemini-3-pro-preview" | "openrouter/morph/morph-v3-large" | "openrouter/openai/gpt-oss-120b" | "openrouter/openai/o3-deep-research" | "openrouter/openai/o4-mini-deep-research" | undefined;
72
72
  maxTokens?: number | undefined;
73
73
  credentials?: Partial<Record<CredentialType, string>> | undefined;
74
74
  maxIterations?: number | undefined;
@@ -40,8 +40,8 @@ declare const SQLQueryToolResultSchema: z.ZodObject<{
40
40
  }, "strip", z.ZodTypeAny, {
41
41
  error: string;
42
42
  success: boolean;
43
- rowCount: number;
44
43
  executionTime: number;
44
+ rowCount: number;
45
45
  rows?: Record<string, unknown>[] | undefined;
46
46
  fields?: {
47
47
  name: string;
@@ -50,8 +50,8 @@ declare const SQLQueryToolResultSchema: z.ZodObject<{
50
50
  }, {
51
51
  error: string;
52
52
  success: boolean;
53
- rowCount: number;
54
53
  executionTime: number;
54
+ rowCount: number;
55
55
  rows?: Record<string, unknown>[] | undefined;
56
56
  fields?: {
57
57
  name: string;
@@ -103,8 +103,8 @@ export declare class SQLQueryTool extends ToolBubble<SQLQueryToolParams, SQLQuer
103
103
  }, "strip", z.ZodTypeAny, {
104
104
  error: string;
105
105
  success: boolean;
106
- rowCount: number;
107
106
  executionTime: number;
107
+ rowCount: number;
108
108
  rows?: Record<string, unknown>[] | undefined;
109
109
  fields?: {
110
110
  name: string;
@@ -113,8 +113,8 @@ export declare class SQLQueryTool extends ToolBubble<SQLQueryToolParams, SQLQuer
113
113
  }, {
114
114
  error: string;
115
115
  success: boolean;
116
- rowCount: number;
117
116
  executionTime: number;
117
+ rowCount: number;
118
118
  rows?: Record<string, unknown>[] | undefined;
119
119
  fields?: {
120
120
  name: string;
@@ -99,6 +99,13 @@ declare const TikTokToolResultSchema: z.ZodObject<{
99
99
  }>, "many">>;
100
100
  }, "strip", z.ZodTypeAny, {
101
101
  id: string | null;
102
+ stats: {
103
+ collectCount: number | null;
104
+ commentCount: number | null;
105
+ diggCount: number | null;
106
+ playCount: number | null;
107
+ shareCount: number | null;
108
+ } | null;
102
109
  text: string | null;
103
110
  hashtags: {
104
111
  name: string | null;
@@ -116,6 +123,12 @@ declare const TikTokToolResultSchema: z.ZodObject<{
116
123
  videoCount: number | null;
117
124
  heartCount: number | null;
118
125
  } | null;
126
+ createTime: number | null;
127
+ createTimeISO: string | null;
128
+ webVideoUrl: string | null;
129
+ covers: string[] | null;
130
+ }, {
131
+ id: string | null;
119
132
  stats: {
120
133
  collectCount: number | null;
121
134
  commentCount: number | null;
@@ -123,12 +136,6 @@ declare const TikTokToolResultSchema: z.ZodObject<{
123
136
  playCount: number | null;
124
137
  shareCount: number | null;
125
138
  } | null;
126
- createTime: number | null;
127
- createTimeISO: string | null;
128
- webVideoUrl: string | null;
129
- covers: string[] | null;
130
- }, {
131
- id: string | null;
132
139
  text: string | null;
133
140
  hashtags: {
134
141
  name: string | null;
@@ -146,13 +153,6 @@ declare const TikTokToolResultSchema: z.ZodObject<{
146
153
  videoCount: number | null;
147
154
  heartCount: number | null;
148
155
  } | null;
149
- stats: {
150
- collectCount: number | null;
151
- commentCount: number | null;
152
- diggCount: number | null;
153
- playCount: number | null;
154
- shareCount: number | null;
155
- } | null;
156
156
  createTime: number | null;
157
157
  createTimeISO: string | null;
158
158
  webVideoUrl: string | null;
@@ -167,6 +167,13 @@ declare const TikTokToolResultSchema: z.ZodObject<{
167
167
  operation: "scrapeProfile" | "scrapeHashtag" | "scrapeVideo";
168
168
  videos: {
169
169
  id: string | null;
170
+ stats: {
171
+ collectCount: number | null;
172
+ commentCount: number | null;
173
+ diggCount: number | null;
174
+ playCount: number | null;
175
+ shareCount: number | null;
176
+ } | null;
170
177
  text: string | null;
171
178
  hashtags: {
172
179
  name: string | null;
@@ -184,13 +191,6 @@ declare const TikTokToolResultSchema: z.ZodObject<{
184
191
  videoCount: number | null;
185
192
  heartCount: number | null;
186
193
  } | null;
187
- stats: {
188
- collectCount: number | null;
189
- commentCount: number | null;
190
- diggCount: number | null;
191
- playCount: number | null;
192
- shareCount: number | null;
193
- } | null;
194
194
  createTime: number | null;
195
195
  createTimeISO: string | null;
196
196
  webVideoUrl: string | null;
@@ -203,6 +203,13 @@ declare const TikTokToolResultSchema: z.ZodObject<{
203
203
  operation: "scrapeProfile" | "scrapeHashtag" | "scrapeVideo";
204
204
  videos: {
205
205
  id: string | null;
206
+ stats: {
207
+ collectCount: number | null;
208
+ commentCount: number | null;
209
+ diggCount: number | null;
210
+ playCount: number | null;
211
+ shareCount: number | null;
212
+ } | null;
206
213
  text: string | null;
207
214
  hashtags: {
208
215
  name: string | null;
@@ -220,13 +227,6 @@ declare const TikTokToolResultSchema: z.ZodObject<{
220
227
  videoCount: number | null;
221
228
  heartCount: number | null;
222
229
  } | null;
223
- stats: {
224
- collectCount: number | null;
225
- commentCount: number | null;
226
- diggCount: number | null;
227
- playCount: number | null;
228
- shareCount: number | null;
229
- } | null;
230
230
  createTime: number | null;
231
231
  createTimeISO: string | null;
232
232
  webVideoUrl: string | null;
@@ -336,6 +336,13 @@ export declare class TikTokTool extends ToolBubble<TikTokToolParams, TikTokToolR
336
336
  }>, "many">>;
337
337
  }, "strip", z.ZodTypeAny, {
338
338
  id: string | null;
339
+ stats: {
340
+ collectCount: number | null;
341
+ commentCount: number | null;
342
+ diggCount: number | null;
343
+ playCount: number | null;
344
+ shareCount: number | null;
345
+ } | null;
339
346
  text: string | null;
340
347
  hashtags: {
341
348
  name: string | null;
@@ -353,6 +360,12 @@ export declare class TikTokTool extends ToolBubble<TikTokToolParams, TikTokToolR
353
360
  videoCount: number | null;
354
361
  heartCount: number | null;
355
362
  } | null;
363
+ createTime: number | null;
364
+ createTimeISO: string | null;
365
+ webVideoUrl: string | null;
366
+ covers: string[] | null;
367
+ }, {
368
+ id: string | null;
356
369
  stats: {
357
370
  collectCount: number | null;
358
371
  commentCount: number | null;
@@ -360,12 +373,6 @@ export declare class TikTokTool extends ToolBubble<TikTokToolParams, TikTokToolR
360
373
  playCount: number | null;
361
374
  shareCount: number | null;
362
375
  } | null;
363
- createTime: number | null;
364
- createTimeISO: string | null;
365
- webVideoUrl: string | null;
366
- covers: string[] | null;
367
- }, {
368
- id: string | null;
369
376
  text: string | null;
370
377
  hashtags: {
371
378
  name: string | null;
@@ -383,13 +390,6 @@ export declare class TikTokTool extends ToolBubble<TikTokToolParams, TikTokToolR
383
390
  videoCount: number | null;
384
391
  heartCount: number | null;
385
392
  } | null;
386
- stats: {
387
- collectCount: number | null;
388
- commentCount: number | null;
389
- diggCount: number | null;
390
- playCount: number | null;
391
- shareCount: number | null;
392
- } | null;
393
393
  createTime: number | null;
394
394
  createTimeISO: string | null;
395
395
  webVideoUrl: string | null;
@@ -404,6 +404,13 @@ export declare class TikTokTool extends ToolBubble<TikTokToolParams, TikTokToolR
404
404
  operation: "scrapeProfile" | "scrapeHashtag" | "scrapeVideo";
405
405
  videos: {
406
406
  id: string | null;
407
+ stats: {
408
+ collectCount: number | null;
409
+ commentCount: number | null;
410
+ diggCount: number | null;
411
+ playCount: number | null;
412
+ shareCount: number | null;
413
+ } | null;
407
414
  text: string | null;
408
415
  hashtags: {
409
416
  name: string | null;
@@ -421,13 +428,6 @@ export declare class TikTokTool extends ToolBubble<TikTokToolParams, TikTokToolR
421
428
  videoCount: number | null;
422
429
  heartCount: number | null;
423
430
  } | null;
424
- stats: {
425
- collectCount: number | null;
426
- commentCount: number | null;
427
- diggCount: number | null;
428
- playCount: number | null;
429
- shareCount: number | null;
430
- } | null;
431
431
  createTime: number | null;
432
432
  createTimeISO: string | null;
433
433
  webVideoUrl: string | null;
@@ -440,6 +440,13 @@ export declare class TikTokTool extends ToolBubble<TikTokToolParams, TikTokToolR
440
440
  operation: "scrapeProfile" | "scrapeHashtag" | "scrapeVideo";
441
441
  videos: {
442
442
  id: string | null;
443
+ stats: {
444
+ collectCount: number | null;
445
+ commentCount: number | null;
446
+ diggCount: number | null;
447
+ playCount: number | null;
448
+ shareCount: number | null;
449
+ } | null;
443
450
  text: string | null;
444
451
  hashtags: {
445
452
  name: string | null;
@@ -457,13 +464,6 @@ export declare class TikTokTool extends ToolBubble<TikTokToolParams, TikTokToolR
457
464
  videoCount: number | null;
458
465
  heartCount: number | null;
459
466
  } | null;
460
- stats: {
461
- collectCount: number | null;
462
- commentCount: number | null;
463
- diggCount: number | null;
464
- playCount: number | null;
465
- shareCount: number | null;
466
- } | null;
467
467
  createTime: number | null;
468
468
  createTimeISO: string | null;
469
469
  webVideoUrl: string | null;
@@ -148,6 +148,14 @@ declare const TwitterTweetSchema: z.ZodObject<{
148
148
  }, "strip", z.ZodTypeAny, {
149
149
  url: string | null;
150
150
  id: string | null;
151
+ stats: {
152
+ viewCount: number | null;
153
+ retweetCount: number | null;
154
+ replyCount: number | null;
155
+ likeCount: number | null;
156
+ quoteCount: number | null;
157
+ bookmarkCount: number | null;
158
+ } | null;
151
159
  text: string | null;
152
160
  entities: {
153
161
  hashtags: string[] | null;
@@ -168,14 +176,6 @@ declare const TwitterTweetSchema: z.ZodObject<{
168
176
  tweetsCount: number | null;
169
177
  createdAt: string | null;
170
178
  } | null;
171
- stats: {
172
- viewCount: number | null;
173
- retweetCount: number | null;
174
- replyCount: number | null;
175
- likeCount: number | null;
176
- quoteCount: number | null;
177
- bookmarkCount: number | null;
178
- } | null;
179
179
  media: {
180
180
  type: string | null;
181
181
  url: string | null;
@@ -191,6 +191,14 @@ declare const TwitterTweetSchema: z.ZodObject<{
191
191
  }, {
192
192
  url: string | null;
193
193
  id: string | null;
194
+ stats: {
195
+ viewCount: number | null;
196
+ retweetCount: number | null;
197
+ replyCount: number | null;
198
+ likeCount: number | null;
199
+ quoteCount: number | null;
200
+ bookmarkCount: number | null;
201
+ } | null;
194
202
  text: string | null;
195
203
  entities: {
196
204
  hashtags: string[] | null;
@@ -211,14 +219,6 @@ declare const TwitterTweetSchema: z.ZodObject<{
211
219
  tweetsCount: number | null;
212
220
  createdAt: string | null;
213
221
  } | null;
214
- stats: {
215
- viewCount: number | null;
216
- retweetCount: number | null;
217
- replyCount: number | null;
218
- likeCount: number | null;
219
- quoteCount: number | null;
220
- bookmarkCount: number | null;
221
- } | null;
222
222
  media: {
223
223
  type: string | null;
224
224
  url: string | null;
@@ -368,6 +368,14 @@ declare const TwitterToolResultSchema: z.ZodObject<{
368
368
  }, "strip", z.ZodTypeAny, {
369
369
  url: string | null;
370
370
  id: string | null;
371
+ stats: {
372
+ viewCount: number | null;
373
+ retweetCount: number | null;
374
+ replyCount: number | null;
375
+ likeCount: number | null;
376
+ quoteCount: number | null;
377
+ bookmarkCount: number | null;
378
+ } | null;
371
379
  text: string | null;
372
380
  entities: {
373
381
  hashtags: string[] | null;
@@ -388,14 +396,6 @@ declare const TwitterToolResultSchema: z.ZodObject<{
388
396
  tweetsCount: number | null;
389
397
  createdAt: string | null;
390
398
  } | null;
391
- stats: {
392
- viewCount: number | null;
393
- retweetCount: number | null;
394
- replyCount: number | null;
395
- likeCount: number | null;
396
- quoteCount: number | null;
397
- bookmarkCount: number | null;
398
- } | null;
399
399
  media: {
400
400
  type: string | null;
401
401
  url: string | null;
@@ -411,6 +411,14 @@ declare const TwitterToolResultSchema: z.ZodObject<{
411
411
  }, {
412
412
  url: string | null;
413
413
  id: string | null;
414
+ stats: {
415
+ viewCount: number | null;
416
+ retweetCount: number | null;
417
+ replyCount: number | null;
418
+ likeCount: number | null;
419
+ quoteCount: number | null;
420
+ bookmarkCount: number | null;
421
+ } | null;
414
422
  text: string | null;
415
423
  entities: {
416
424
  hashtags: string[] | null;
@@ -431,14 +439,6 @@ declare const TwitterToolResultSchema: z.ZodObject<{
431
439
  tweetsCount: number | null;
432
440
  createdAt: string | null;
433
441
  } | null;
434
- stats: {
435
- viewCount: number | null;
436
- retweetCount: number | null;
437
- replyCount: number | null;
438
- likeCount: number | null;
439
- quoteCount: number | null;
440
- bookmarkCount: number | null;
441
- } | null;
442
442
  media: {
443
443
  type: string | null;
444
444
  url: string | null;
@@ -462,6 +462,14 @@ declare const TwitterToolResultSchema: z.ZodObject<{
462
462
  tweets: {
463
463
  url: string | null;
464
464
  id: string | null;
465
+ stats: {
466
+ viewCount: number | null;
467
+ retweetCount: number | null;
468
+ replyCount: number | null;
469
+ likeCount: number | null;
470
+ quoteCount: number | null;
471
+ bookmarkCount: number | null;
472
+ } | null;
465
473
  text: string | null;
466
474
  entities: {
467
475
  hashtags: string[] | null;
@@ -482,14 +490,6 @@ declare const TwitterToolResultSchema: z.ZodObject<{
482
490
  tweetsCount: number | null;
483
491
  createdAt: string | null;
484
492
  } | null;
485
- stats: {
486
- viewCount: number | null;
487
- retweetCount: number | null;
488
- replyCount: number | null;
489
- likeCount: number | null;
490
- quoteCount: number | null;
491
- bookmarkCount: number | null;
492
- } | null;
493
493
  media: {
494
494
  type: string | null;
495
495
  url: string | null;
@@ -511,6 +511,14 @@ declare const TwitterToolResultSchema: z.ZodObject<{
511
511
  tweets: {
512
512
  url: string | null;
513
513
  id: string | null;
514
+ stats: {
515
+ viewCount: number | null;
516
+ retweetCount: number | null;
517
+ replyCount: number | null;
518
+ likeCount: number | null;
519
+ quoteCount: number | null;
520
+ bookmarkCount: number | null;
521
+ } | null;
514
522
  text: string | null;
515
523
  entities: {
516
524
  hashtags: string[] | null;
@@ -531,14 +539,6 @@ declare const TwitterToolResultSchema: z.ZodObject<{
531
539
  tweetsCount: number | null;
532
540
  createdAt: string | null;
533
541
  } | null;
534
- stats: {
535
- viewCount: number | null;
536
- retweetCount: number | null;
537
- replyCount: number | null;
538
- likeCount: number | null;
539
- quoteCount: number | null;
540
- bookmarkCount: number | null;
541
- } | null;
542
542
  media: {
543
543
  type: string | null;
544
544
  url: string | null;
@@ -714,6 +714,14 @@ export declare class TwitterTool extends ToolBubble<TwitterToolParams, TwitterTo
714
714
  }, "strip", z.ZodTypeAny, {
715
715
  url: string | null;
716
716
  id: string | null;
717
+ stats: {
718
+ viewCount: number | null;
719
+ retweetCount: number | null;
720
+ replyCount: number | null;
721
+ likeCount: number | null;
722
+ quoteCount: number | null;
723
+ bookmarkCount: number | null;
724
+ } | null;
717
725
  text: string | null;
718
726
  entities: {
719
727
  hashtags: string[] | null;
@@ -734,14 +742,6 @@ export declare class TwitterTool extends ToolBubble<TwitterToolParams, TwitterTo
734
742
  tweetsCount: number | null;
735
743
  createdAt: string | null;
736
744
  } | null;
737
- stats: {
738
- viewCount: number | null;
739
- retweetCount: number | null;
740
- replyCount: number | null;
741
- likeCount: number | null;
742
- quoteCount: number | null;
743
- bookmarkCount: number | null;
744
- } | null;
745
745
  media: {
746
746
  type: string | null;
747
747
  url: string | null;
@@ -757,6 +757,14 @@ export declare class TwitterTool extends ToolBubble<TwitterToolParams, TwitterTo
757
757
  }, {
758
758
  url: string | null;
759
759
  id: string | null;
760
+ stats: {
761
+ viewCount: number | null;
762
+ retweetCount: number | null;
763
+ replyCount: number | null;
764
+ likeCount: number | null;
765
+ quoteCount: number | null;
766
+ bookmarkCount: number | null;
767
+ } | null;
760
768
  text: string | null;
761
769
  entities: {
762
770
  hashtags: string[] | null;
@@ -777,14 +785,6 @@ export declare class TwitterTool extends ToolBubble<TwitterToolParams, TwitterTo
777
785
  tweetsCount: number | null;
778
786
  createdAt: string | null;
779
787
  } | null;
780
- stats: {
781
- viewCount: number | null;
782
- retweetCount: number | null;
783
- replyCount: number | null;
784
- likeCount: number | null;
785
- quoteCount: number | null;
786
- bookmarkCount: number | null;
787
- } | null;
788
788
  media: {
789
789
  type: string | null;
790
790
  url: string | null;
@@ -808,6 +808,14 @@ export declare class TwitterTool extends ToolBubble<TwitterToolParams, TwitterTo
808
808
  tweets: {
809
809
  url: string | null;
810
810
  id: string | null;
811
+ stats: {
812
+ viewCount: number | null;
813
+ retweetCount: number | null;
814
+ replyCount: number | null;
815
+ likeCount: number | null;
816
+ quoteCount: number | null;
817
+ bookmarkCount: number | null;
818
+ } | null;
811
819
  text: string | null;
812
820
  entities: {
813
821
  hashtags: string[] | null;
@@ -828,14 +836,6 @@ export declare class TwitterTool extends ToolBubble<TwitterToolParams, TwitterTo
828
836
  tweetsCount: number | null;
829
837
  createdAt: string | null;
830
838
  } | null;
831
- stats: {
832
- viewCount: number | null;
833
- retweetCount: number | null;
834
- replyCount: number | null;
835
- likeCount: number | null;
836
- quoteCount: number | null;
837
- bookmarkCount: number | null;
838
- } | null;
839
839
  media: {
840
840
  type: string | null;
841
841
  url: string | null;
@@ -857,6 +857,14 @@ export declare class TwitterTool extends ToolBubble<TwitterToolParams, TwitterTo
857
857
  tweets: {
858
858
  url: string | null;
859
859
  id: string | null;
860
+ stats: {
861
+ viewCount: number | null;
862
+ retweetCount: number | null;
863
+ replyCount: number | null;
864
+ likeCount: number | null;
865
+ quoteCount: number | null;
866
+ bookmarkCount: number | null;
867
+ } | null;
860
868
  text: string | null;
861
869
  entities: {
862
870
  hashtags: string[] | null;
@@ -877,14 +885,6 @@ export declare class TwitterTool extends ToolBubble<TwitterToolParams, TwitterTo
877
885
  tweetsCount: number | null;
878
886
  createdAt: string | null;
879
887
  } | null;
880
- stats: {
881
- viewCount: number | null;
882
- retweetCount: number | null;
883
- replyCount: number | null;
884
- likeCount: number | null;
885
- quoteCount: number | null;
886
- bookmarkCount: number | null;
887
- } | null;
888
888
  media: {
889
889
  type: string | null;
890
890
  url: string | null;