@bubblelab/bubble-core 0.1.69 → 0.1.71
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.
- package/dist/bubble-bundle.d.ts +78 -78
- package/dist/bubbles/service-bubble/agi-inc.d.ts +20 -20
- package/dist/bubbles/service-bubble/ai-agent.d.ts +24 -24
- package/dist/bubbles/service-bubble/airtable.d.ts +24 -24
- package/dist/bubbles/service-bubble/apify/apify.d.ts +14 -14
- package/dist/bubbles/service-bubble/ashby/ashby.d.ts +72 -72
- package/dist/bubbles/service-bubble/ashby/ashby.schema.d.ts +38 -38
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +31 -31
- package/dist/bubbles/service-bubble/browserbase/browserbase.schema.d.ts +78 -78
- package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +92 -92
- package/dist/bubbles/service-bubble/crustdata/crustdata.schema.d.ts +42 -42
- package/dist/bubbles/service-bubble/eleven-labs.d.ts +4 -4
- package/dist/bubbles/service-bubble/firecrawl.d.ts +346 -346
- package/dist/bubbles/service-bubble/followupboss.d.ts +320 -320
- package/dist/bubbles/service-bubble/fullenrich/fullenrich.d.ts +76 -76
- package/dist/bubbles/service-bubble/fullenrich/fullenrich.schema.d.ts +58 -58
- package/dist/bubbles/service-bubble/github.d.ts +36 -36
- package/dist/bubbles/service-bubble/gmail.d.ts +88 -88
- package/dist/bubbles/service-bubble/google-drive.d.ts +63 -2
- package/dist/bubbles/service-bubble/google-drive.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/google-drive.js +74 -4
- package/dist/bubbles/service-bubble/google-drive.js.map +1 -1
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.schema.d.ts +74 -74
- package/dist/bubbles/service-bubble/http.d.ts +8 -8
- package/dist/bubbles/service-bubble/insforge-db.d.ts +8 -8
- package/dist/bubbles/service-bubble/jira/jira.d.ts +9 -9
- package/dist/bubbles/service-bubble/jira/jira.schema.d.ts +62 -62
- package/dist/bubbles/service-bubble/notion/notion.d.ts +20 -20
- package/dist/bubbles/service-bubble/postgresql.d.ts +8 -8
- package/dist/bubbles/service-bubble/resend.d.ts +4 -4
- package/dist/bubbles/service-bubble/slack/slack.d.ts +114 -114
- package/dist/bubbles/service-bubble/stripe/stripe.d.ts +11 -11
- package/dist/bubbles/service-bubble/stripe/stripe.schema.d.ts +78 -78
- package/dist/bubbles/service-bubble/telegram.d.ts +2 -2
- package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.schema.d.ts +28 -28
- package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +20 -20
- package/dist/bubbles/tool-bubble/google-maps-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +305 -305
- package/dist/bubbles/tool-bubble/people-search-tool.d.ts +28 -28
- package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +56 -56
- package/dist/bubbles/tool-bubble/twitter-tool.d.ts +108 -108
- package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +24 -24
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +32 -32
- package/dist/bubbles.json +69 -4
- package/package.json +2 -2
|
@@ -110,11 +110,11 @@ declare const PersonResultSchema: z.ZodObject<{
|
|
|
110
110
|
title: string | null;
|
|
111
111
|
name: string | null;
|
|
112
112
|
location: string | null;
|
|
113
|
-
emails: string[] | null;
|
|
114
|
-
linkedinUrl: string | null;
|
|
115
113
|
headline: string | null;
|
|
116
114
|
summary: string | null;
|
|
117
115
|
seniorityLevel: string | null;
|
|
116
|
+
emails: string[] | null;
|
|
117
|
+
linkedinUrl: string | null;
|
|
118
118
|
languages: string[] | null;
|
|
119
119
|
skills: string[] | null;
|
|
120
120
|
education: {
|
|
@@ -162,11 +162,11 @@ declare const PersonResultSchema: z.ZodObject<{
|
|
|
162
162
|
title: string | null;
|
|
163
163
|
name: string | null;
|
|
164
164
|
location: string | null;
|
|
165
|
-
emails: string[] | null;
|
|
166
|
-
linkedinUrl: string | null;
|
|
167
165
|
headline: string | null;
|
|
168
166
|
summary: string | null;
|
|
169
167
|
seniorityLevel: string | null;
|
|
168
|
+
emails: string[] | null;
|
|
169
|
+
linkedinUrl: string | null;
|
|
170
170
|
languages: string[] | null;
|
|
171
171
|
skills: string[] | null;
|
|
172
172
|
education: {
|
|
@@ -256,12 +256,12 @@ declare const PeopleSearchToolParamsSchema: z.ZodObject<{
|
|
|
256
256
|
includePersonalEmails: boolean;
|
|
257
257
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
258
258
|
location?: string | undefined;
|
|
259
|
+
city?: string | undefined;
|
|
260
|
+
country?: string | undefined;
|
|
259
261
|
limit?: number | undefined;
|
|
260
262
|
cursor?: string | undefined;
|
|
261
263
|
companyName?: string | undefined;
|
|
262
264
|
companyLinkedinUrl?: string | undefined;
|
|
263
|
-
city?: string | undefined;
|
|
264
|
-
country?: string | undefined;
|
|
265
265
|
languages?: string[] | undefined;
|
|
266
266
|
skills?: string[] | undefined;
|
|
267
267
|
recentlyChangedJobs?: boolean | undefined;
|
|
@@ -288,12 +288,12 @@ declare const PeopleSearchToolParamsSchema: z.ZodObject<{
|
|
|
288
288
|
}, {
|
|
289
289
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
290
290
|
location?: string | undefined;
|
|
291
|
+
city?: string | undefined;
|
|
292
|
+
country?: string | undefined;
|
|
291
293
|
limit?: number | undefined;
|
|
292
294
|
cursor?: string | undefined;
|
|
293
295
|
companyName?: string | undefined;
|
|
294
296
|
companyLinkedinUrl?: string | undefined;
|
|
295
|
-
city?: string | undefined;
|
|
296
|
-
country?: string | undefined;
|
|
297
297
|
languages?: string[] | undefined;
|
|
298
298
|
skills?: string[] | undefined;
|
|
299
299
|
recentlyChangedJobs?: boolean | undefined;
|
|
@@ -429,11 +429,11 @@ declare const PeopleSearchToolResultSchema: z.ZodObject<{
|
|
|
429
429
|
title: string | null;
|
|
430
430
|
name: string | null;
|
|
431
431
|
location: string | null;
|
|
432
|
-
emails: string[] | null;
|
|
433
|
-
linkedinUrl: string | null;
|
|
434
432
|
headline: string | null;
|
|
435
433
|
summary: string | null;
|
|
436
434
|
seniorityLevel: string | null;
|
|
435
|
+
emails: string[] | null;
|
|
436
|
+
linkedinUrl: string | null;
|
|
437
437
|
languages: string[] | null;
|
|
438
438
|
skills: string[] | null;
|
|
439
439
|
education: {
|
|
@@ -481,11 +481,11 @@ declare const PeopleSearchToolResultSchema: z.ZodObject<{
|
|
|
481
481
|
title: string | null;
|
|
482
482
|
name: string | null;
|
|
483
483
|
location: string | null;
|
|
484
|
-
emails: string[] | null;
|
|
485
|
-
linkedinUrl: string | null;
|
|
486
484
|
headline: string | null;
|
|
487
485
|
summary: string | null;
|
|
488
486
|
seniorityLevel: string | null;
|
|
487
|
+
emails: string[] | null;
|
|
488
|
+
linkedinUrl: string | null;
|
|
489
489
|
languages: string[] | null;
|
|
490
490
|
skills: string[] | null;
|
|
491
491
|
education: {
|
|
@@ -541,11 +541,11 @@ declare const PeopleSearchToolResultSchema: z.ZodObject<{
|
|
|
541
541
|
title: string | null;
|
|
542
542
|
name: string | null;
|
|
543
543
|
location: string | null;
|
|
544
|
-
emails: string[] | null;
|
|
545
|
-
linkedinUrl: string | null;
|
|
546
544
|
headline: string | null;
|
|
547
545
|
summary: string | null;
|
|
548
546
|
seniorityLevel: string | null;
|
|
547
|
+
emails: string[] | null;
|
|
548
|
+
linkedinUrl: string | null;
|
|
549
549
|
languages: string[] | null;
|
|
550
550
|
skills: string[] | null;
|
|
551
551
|
education: {
|
|
@@ -599,11 +599,11 @@ declare const PeopleSearchToolResultSchema: z.ZodObject<{
|
|
|
599
599
|
title: string | null;
|
|
600
600
|
name: string | null;
|
|
601
601
|
location: string | null;
|
|
602
|
-
emails: string[] | null;
|
|
603
|
-
linkedinUrl: string | null;
|
|
604
602
|
headline: string | null;
|
|
605
603
|
summary: string | null;
|
|
606
604
|
seniorityLevel: string | null;
|
|
605
|
+
emails: string[] | null;
|
|
606
|
+
linkedinUrl: string | null;
|
|
607
607
|
languages: string[] | null;
|
|
608
608
|
skills: string[] | null;
|
|
609
609
|
education: {
|
|
@@ -725,12 +725,12 @@ export declare class PeopleSearchTool extends ToolBubble<PeopleSearchToolParams,
|
|
|
725
725
|
includePersonalEmails: boolean;
|
|
726
726
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
727
727
|
location?: string | undefined;
|
|
728
|
+
city?: string | undefined;
|
|
729
|
+
country?: string | undefined;
|
|
728
730
|
limit?: number | undefined;
|
|
729
731
|
cursor?: string | undefined;
|
|
730
732
|
companyName?: string | undefined;
|
|
731
733
|
companyLinkedinUrl?: string | undefined;
|
|
732
|
-
city?: string | undefined;
|
|
733
|
-
country?: string | undefined;
|
|
734
734
|
languages?: string[] | undefined;
|
|
735
735
|
skills?: string[] | undefined;
|
|
736
736
|
recentlyChangedJobs?: boolean | undefined;
|
|
@@ -757,12 +757,12 @@ export declare class PeopleSearchTool extends ToolBubble<PeopleSearchToolParams,
|
|
|
757
757
|
}, {
|
|
758
758
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
759
759
|
location?: string | undefined;
|
|
760
|
+
city?: string | undefined;
|
|
761
|
+
country?: string | undefined;
|
|
760
762
|
limit?: number | undefined;
|
|
761
763
|
cursor?: string | undefined;
|
|
762
764
|
companyName?: string | undefined;
|
|
763
765
|
companyLinkedinUrl?: string | undefined;
|
|
764
|
-
city?: string | undefined;
|
|
765
|
-
country?: string | undefined;
|
|
766
766
|
languages?: string[] | undefined;
|
|
767
767
|
skills?: string[] | undefined;
|
|
768
768
|
recentlyChangedJobs?: boolean | undefined;
|
|
@@ -898,11 +898,11 @@ export declare class PeopleSearchTool extends ToolBubble<PeopleSearchToolParams,
|
|
|
898
898
|
title: string | null;
|
|
899
899
|
name: string | null;
|
|
900
900
|
location: string | null;
|
|
901
|
-
emails: string[] | null;
|
|
902
|
-
linkedinUrl: string | null;
|
|
903
901
|
headline: string | null;
|
|
904
902
|
summary: string | null;
|
|
905
903
|
seniorityLevel: string | null;
|
|
904
|
+
emails: string[] | null;
|
|
905
|
+
linkedinUrl: string | null;
|
|
906
906
|
languages: string[] | null;
|
|
907
907
|
skills: string[] | null;
|
|
908
908
|
education: {
|
|
@@ -950,11 +950,11 @@ export declare class PeopleSearchTool extends ToolBubble<PeopleSearchToolParams,
|
|
|
950
950
|
title: string | null;
|
|
951
951
|
name: string | null;
|
|
952
952
|
location: string | null;
|
|
953
|
-
emails: string[] | null;
|
|
954
|
-
linkedinUrl: string | null;
|
|
955
953
|
headline: string | null;
|
|
956
954
|
summary: string | null;
|
|
957
955
|
seniorityLevel: string | null;
|
|
956
|
+
emails: string[] | null;
|
|
957
|
+
linkedinUrl: string | null;
|
|
958
958
|
languages: string[] | null;
|
|
959
959
|
skills: string[] | null;
|
|
960
960
|
education: {
|
|
@@ -1010,11 +1010,11 @@ export declare class PeopleSearchTool extends ToolBubble<PeopleSearchToolParams,
|
|
|
1010
1010
|
title: string | null;
|
|
1011
1011
|
name: string | null;
|
|
1012
1012
|
location: string | null;
|
|
1013
|
-
emails: string[] | null;
|
|
1014
|
-
linkedinUrl: string | null;
|
|
1015
1013
|
headline: string | null;
|
|
1016
1014
|
summary: string | null;
|
|
1017
1015
|
seniorityLevel: string | null;
|
|
1016
|
+
emails: string[] | null;
|
|
1017
|
+
linkedinUrl: string | null;
|
|
1018
1018
|
languages: string[] | null;
|
|
1019
1019
|
skills: string[] | null;
|
|
1020
1020
|
education: {
|
|
@@ -1068,11 +1068,11 @@ export declare class PeopleSearchTool extends ToolBubble<PeopleSearchToolParams,
|
|
|
1068
1068
|
title: string | null;
|
|
1069
1069
|
name: string | null;
|
|
1070
1070
|
location: string | null;
|
|
1071
|
-
emails: string[] | null;
|
|
1072
|
-
linkedinUrl: string | null;
|
|
1073
1071
|
headline: string | null;
|
|
1074
1072
|
summary: string | null;
|
|
1075
1073
|
seniorityLevel: string | null;
|
|
1074
|
+
emails: string[] | null;
|
|
1075
|
+
linkedinUrl: string | null;
|
|
1076
1076
|
languages: string[] | null;
|
|
1077
1077
|
skills: string[] | null;
|
|
1078
1078
|
education: {
|
|
@@ -40,8 +40,8 @@ declare const SQLQueryToolResultSchema: z.ZodObject<{
|
|
|
40
40
|
}, "strip", z.ZodTypeAny, {
|
|
41
41
|
success: boolean;
|
|
42
42
|
error: string;
|
|
43
|
-
rowCount: number;
|
|
44
43
|
executionTime: number;
|
|
44
|
+
rowCount: number;
|
|
45
45
|
fields?: {
|
|
46
46
|
name: string;
|
|
47
47
|
dataTypeID?: number | undefined;
|
|
@@ -50,8 +50,8 @@ declare const SQLQueryToolResultSchema: z.ZodObject<{
|
|
|
50
50
|
}, {
|
|
51
51
|
success: boolean;
|
|
52
52
|
error: string;
|
|
53
|
-
rowCount: number;
|
|
54
53
|
executionTime: number;
|
|
54
|
+
rowCount: number;
|
|
55
55
|
fields?: {
|
|
56
56
|
name: string;
|
|
57
57
|
dataTypeID?: number | undefined;
|
|
@@ -103,8 +103,8 @@ export declare class SQLQueryTool extends ToolBubble<SQLQueryToolParams, SQLQuer
|
|
|
103
103
|
}, "strip", z.ZodTypeAny, {
|
|
104
104
|
success: boolean;
|
|
105
105
|
error: string;
|
|
106
|
-
rowCount: number;
|
|
107
106
|
executionTime: number;
|
|
107
|
+
rowCount: number;
|
|
108
108
|
fields?: {
|
|
109
109
|
name: string;
|
|
110
110
|
dataTypeID?: number | undefined;
|
|
@@ -113,8 +113,8 @@ export declare class SQLQueryTool extends ToolBubble<SQLQueryToolParams, SQLQuer
|
|
|
113
113
|
}, {
|
|
114
114
|
success: boolean;
|
|
115
115
|
error: string;
|
|
116
|
-
rowCount: number;
|
|
117
116
|
executionTime: number;
|
|
117
|
+
rowCount: number;
|
|
118
118
|
fields?: {
|
|
119
119
|
name: string;
|
|
120
120
|
dataTypeID?: number | undefined;
|
|
@@ -100,6 +100,13 @@ declare const TikTokToolResultSchema: z.ZodObject<{
|
|
|
100
100
|
}, "strip", z.ZodTypeAny, {
|
|
101
101
|
id: string | null;
|
|
102
102
|
text: string | null;
|
|
103
|
+
stats: {
|
|
104
|
+
collectCount: number | null;
|
|
105
|
+
commentCount: number | null;
|
|
106
|
+
diggCount: number | null;
|
|
107
|
+
playCount: number | null;
|
|
108
|
+
shareCount: number | null;
|
|
109
|
+
} | null;
|
|
103
110
|
hashtags: {
|
|
104
111
|
name: string | null;
|
|
105
112
|
}[] | null;
|
|
@@ -116,13 +123,6 @@ declare const TikTokToolResultSchema: z.ZodObject<{
|
|
|
116
123
|
videoCount: number | null;
|
|
117
124
|
heartCount: number | null;
|
|
118
125
|
} | null;
|
|
119
|
-
stats: {
|
|
120
|
-
collectCount: number | null;
|
|
121
|
-
commentCount: number | null;
|
|
122
|
-
diggCount: number | null;
|
|
123
|
-
playCount: number | null;
|
|
124
|
-
shareCount: number | null;
|
|
125
|
-
} | null;
|
|
126
126
|
createTime: number | null;
|
|
127
127
|
createTimeISO: string | null;
|
|
128
128
|
webVideoUrl: string | null;
|
|
@@ -130,6 +130,13 @@ declare const TikTokToolResultSchema: z.ZodObject<{
|
|
|
130
130
|
}, {
|
|
131
131
|
id: string | null;
|
|
132
132
|
text: string | null;
|
|
133
|
+
stats: {
|
|
134
|
+
collectCount: number | null;
|
|
135
|
+
commentCount: number | null;
|
|
136
|
+
diggCount: number | null;
|
|
137
|
+
playCount: number | null;
|
|
138
|
+
shareCount: number | null;
|
|
139
|
+
} | null;
|
|
133
140
|
hashtags: {
|
|
134
141
|
name: string | null;
|
|
135
142
|
}[] | 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;
|
|
@@ -168,6 +168,13 @@ declare const TikTokToolResultSchema: z.ZodObject<{
|
|
|
168
168
|
videos: {
|
|
169
169
|
id: string | null;
|
|
170
170
|
text: string | null;
|
|
171
|
+
stats: {
|
|
172
|
+
collectCount: number | null;
|
|
173
|
+
commentCount: number | null;
|
|
174
|
+
diggCount: number | null;
|
|
175
|
+
playCount: number | null;
|
|
176
|
+
shareCount: number | null;
|
|
177
|
+
} | null;
|
|
171
178
|
hashtags: {
|
|
172
179
|
name: string | null;
|
|
173
180
|
}[] | 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;
|
|
@@ -204,6 +204,13 @@ declare const TikTokToolResultSchema: z.ZodObject<{
|
|
|
204
204
|
videos: {
|
|
205
205
|
id: string | null;
|
|
206
206
|
text: string | null;
|
|
207
|
+
stats: {
|
|
208
|
+
collectCount: number | null;
|
|
209
|
+
commentCount: number | null;
|
|
210
|
+
diggCount: number | null;
|
|
211
|
+
playCount: number | null;
|
|
212
|
+
shareCount: number | null;
|
|
213
|
+
} | null;
|
|
207
214
|
hashtags: {
|
|
208
215
|
name: string | null;
|
|
209
216
|
}[] | 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;
|
|
@@ -337,6 +337,13 @@ export declare class TikTokTool extends ToolBubble<TikTokToolParams, TikTokToolR
|
|
|
337
337
|
}, "strip", z.ZodTypeAny, {
|
|
338
338
|
id: string | null;
|
|
339
339
|
text: string | null;
|
|
340
|
+
stats: {
|
|
341
|
+
collectCount: number | null;
|
|
342
|
+
commentCount: number | null;
|
|
343
|
+
diggCount: number | null;
|
|
344
|
+
playCount: number | null;
|
|
345
|
+
shareCount: number | null;
|
|
346
|
+
} | null;
|
|
340
347
|
hashtags: {
|
|
341
348
|
name: string | null;
|
|
342
349
|
}[] | null;
|
|
@@ -353,13 +360,6 @@ export declare class TikTokTool extends ToolBubble<TikTokToolParams, TikTokToolR
|
|
|
353
360
|
videoCount: number | null;
|
|
354
361
|
heartCount: number | null;
|
|
355
362
|
} | null;
|
|
356
|
-
stats: {
|
|
357
|
-
collectCount: number | null;
|
|
358
|
-
commentCount: number | null;
|
|
359
|
-
diggCount: number | null;
|
|
360
|
-
playCount: number | null;
|
|
361
|
-
shareCount: number | null;
|
|
362
|
-
} | null;
|
|
363
363
|
createTime: number | null;
|
|
364
364
|
createTimeISO: string | null;
|
|
365
365
|
webVideoUrl: string | null;
|
|
@@ -367,6 +367,13 @@ export declare class TikTokTool extends ToolBubble<TikTokToolParams, TikTokToolR
|
|
|
367
367
|
}, {
|
|
368
368
|
id: string | null;
|
|
369
369
|
text: string | null;
|
|
370
|
+
stats: {
|
|
371
|
+
collectCount: number | null;
|
|
372
|
+
commentCount: number | null;
|
|
373
|
+
diggCount: number | null;
|
|
374
|
+
playCount: number | null;
|
|
375
|
+
shareCount: number | null;
|
|
376
|
+
} | null;
|
|
370
377
|
hashtags: {
|
|
371
378
|
name: string | null;
|
|
372
379
|
}[] | 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;
|
|
@@ -405,6 +405,13 @@ export declare class TikTokTool extends ToolBubble<TikTokToolParams, TikTokToolR
|
|
|
405
405
|
videos: {
|
|
406
406
|
id: string | null;
|
|
407
407
|
text: string | null;
|
|
408
|
+
stats: {
|
|
409
|
+
collectCount: number | null;
|
|
410
|
+
commentCount: number | null;
|
|
411
|
+
diggCount: number | null;
|
|
412
|
+
playCount: number | null;
|
|
413
|
+
shareCount: number | null;
|
|
414
|
+
} | null;
|
|
408
415
|
hashtags: {
|
|
409
416
|
name: string | null;
|
|
410
417
|
}[] | 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;
|
|
@@ -441,6 +441,13 @@ export declare class TikTokTool extends ToolBubble<TikTokToolParams, TikTokToolR
|
|
|
441
441
|
videos: {
|
|
442
442
|
id: string | null;
|
|
443
443
|
text: string | null;
|
|
444
|
+
stats: {
|
|
445
|
+
collectCount: number | null;
|
|
446
|
+
commentCount: number | null;
|
|
447
|
+
diggCount: number | null;
|
|
448
|
+
playCount: number | null;
|
|
449
|
+
shareCount: number | null;
|
|
450
|
+
} | null;
|
|
444
451
|
hashtags: {
|
|
445
452
|
name: string | null;
|
|
446
453
|
}[] | 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;
|