@bubblelab/bubble-core 0.1.31 → 0.1.32

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 (37) hide show
  1. package/dist/bubble-bundle.d.ts +50 -50
  2. package/dist/bubbles/service-bubble/agi-inc.d.ts +12 -12
  3. package/dist/bubbles/service-bubble/airtable.d.ts +156 -156
  4. package/dist/bubbles/service-bubble/apify/apify.d.ts +8 -8
  5. package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +1 -1
  6. package/dist/bubbles/service-bubble/eleven-labs.d.ts +4 -4
  7. package/dist/bubbles/service-bubble/firecrawl.d.ts +8 -8
  8. package/dist/bubbles/service-bubble/followupboss.d.ts +78 -78
  9. package/dist/bubbles/service-bubble/github.d.ts +98 -98
  10. package/dist/bubbles/service-bubble/gmail.d.ts +30 -30
  11. package/dist/bubbles/service-bubble/google-calendar.d.ts +88 -88
  12. package/dist/bubbles/service-bubble/google-drive.d.ts +50 -50
  13. package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +8 -8
  14. package/dist/bubbles/service-bubble/http.d.ts +4 -4
  15. package/dist/bubbles/service-bubble/insforge-db.d.ts +2 -2
  16. package/dist/bubbles/service-bubble/jira/jira.d.ts +503 -493
  17. package/dist/bubbles/service-bubble/jira/jira.d.ts.map +1 -1
  18. package/dist/bubbles/service-bubble/jira/jira.js +47 -10
  19. package/dist/bubbles/service-bubble/jira/jira.js.map +1 -1
  20. package/dist/bubbles/service-bubble/jira/jira.schema.d.ts +6 -6
  21. package/dist/bubbles/service-bubble/jira/jira.schema.d.ts.map +1 -1
  22. package/dist/bubbles/service-bubble/jira/jira.schema.js +4 -3
  23. package/dist/bubbles/service-bubble/jira/jira.schema.js.map +1 -1
  24. package/dist/bubbles/service-bubble/notion/notion.d.ts +148 -148
  25. package/dist/bubbles/service-bubble/postgresql.d.ts +2 -2
  26. package/dist/bubbles/service-bubble/resend.d.ts +4 -4
  27. package/dist/bubbles/service-bubble/slack/slack.d.ts +60 -60
  28. package/dist/bubbles/service-bubble/storage.d.ts +20 -20
  29. package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +36 -36
  30. package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +10 -10
  31. package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +4 -4
  32. package/dist/bubbles/tool-bubble/twitter-tool.d.ts +28 -28
  33. package/dist/bubbles/tool-bubble/youtube-tool.d.ts +20 -20
  34. package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +30 -30
  35. package/dist/bubbles/workflow-bubble/slack-data-assistant.workflow.d.ts +4 -4
  36. package/dist/bubbles.json +4 -16
  37. package/package.json +2 -2
@@ -18,16 +18,16 @@ declare const StorageParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodOb
18
18
  fileName: string;
19
19
  region: string;
20
20
  expirationMinutes: number;
21
- credentials?: Partial<Record<CredentialType, string>> | undefined;
22
21
  accountId?: string | undefined;
22
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
23
23
  contentType?: string | undefined;
24
24
  userId?: string | undefined;
25
25
  }, {
26
26
  operation: "getUploadUrl";
27
27
  bucketName: string;
28
28
  fileName: string;
29
- credentials?: Partial<Record<CredentialType, string>> | undefined;
30
29
  accountId?: string | undefined;
30
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
31
31
  region?: string | undefined;
32
32
  expirationMinutes?: number | undefined;
33
33
  contentType?: string | undefined;
@@ -47,15 +47,15 @@ declare const StorageParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodOb
47
47
  fileName: string;
48
48
  region: string;
49
49
  expirationMinutes: number;
50
- credentials?: Partial<Record<CredentialType, string>> | undefined;
51
50
  accountId?: string | undefined;
51
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
52
52
  userId?: string | undefined;
53
53
  }, {
54
54
  operation: "getFile";
55
55
  bucketName: string;
56
56
  fileName: string;
57
- credentials?: Partial<Record<CredentialType, string>> | undefined;
58
57
  accountId?: string | undefined;
58
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
59
59
  region?: string | undefined;
60
60
  expirationMinutes?: number | undefined;
61
61
  userId?: string | undefined;
@@ -71,14 +71,14 @@ declare const StorageParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodOb
71
71
  bucketName: string;
72
72
  fileName: string;
73
73
  region: string;
74
- credentials?: Partial<Record<CredentialType, string>> | undefined;
75
74
  accountId?: string | undefined;
75
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
76
76
  }, {
77
77
  operation: "deleteFile";
78
78
  bucketName: string;
79
79
  fileName: string;
80
- credentials?: Partial<Record<CredentialType, string>> | undefined;
81
80
  accountId?: string | undefined;
81
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
82
82
  region?: string | undefined;
83
83
  }>, z.ZodObject<{
84
84
  operation: z.ZodLiteral<"updateFile">;
@@ -95,15 +95,15 @@ declare const StorageParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodOb
95
95
  fileName: string;
96
96
  region: string;
97
97
  fileContent: string;
98
- credentials?: Partial<Record<CredentialType, string>> | undefined;
99
98
  accountId?: string | undefined;
99
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
100
100
  contentType?: string | undefined;
101
101
  }, {
102
102
  operation: "updateFile";
103
103
  fileName: string;
104
104
  fileContent: string;
105
- credentials?: Partial<Record<CredentialType, string>> | undefined;
106
105
  accountId?: string | undefined;
106
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
107
107
  bucketName?: string | undefined;
108
108
  region?: string | undefined;
109
109
  contentType?: string | undefined;
@@ -124,16 +124,16 @@ declare const StorageParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodOb
124
124
  expirationMinutes: number;
125
125
  pdfFileName: string;
126
126
  pageCount: number;
127
- credentials?: Partial<Record<CredentialType, string>> | undefined;
128
127
  accountId?: string | undefined;
128
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
129
129
  userId?: string | undefined;
130
130
  }, {
131
131
  operation: "getMultipleUploadUrls";
132
132
  bucketName: string;
133
133
  pdfFileName: string;
134
134
  pageCount: number;
135
- credentials?: Partial<Record<CredentialType, string>> | undefined;
136
135
  accountId?: string | undefined;
136
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
137
137
  region?: string | undefined;
138
138
  expirationMinutes?: number | undefined;
139
139
  userId?: string | undefined;
@@ -298,16 +298,16 @@ export declare class StorageBubble<T extends StorageParams = StorageParams> exte
298
298
  fileName: string;
299
299
  region: string;
300
300
  expirationMinutes: number;
301
- credentials?: Partial<Record<CredentialType, string>> | undefined;
302
301
  accountId?: string | undefined;
302
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
303
303
  contentType?: string | undefined;
304
304
  userId?: string | undefined;
305
305
  }, {
306
306
  operation: "getUploadUrl";
307
307
  bucketName: string;
308
308
  fileName: string;
309
- credentials?: Partial<Record<CredentialType, string>> | undefined;
310
309
  accountId?: string | undefined;
310
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
311
311
  region?: string | undefined;
312
312
  expirationMinutes?: number | undefined;
313
313
  contentType?: string | undefined;
@@ -327,15 +327,15 @@ export declare class StorageBubble<T extends StorageParams = StorageParams> exte
327
327
  fileName: string;
328
328
  region: string;
329
329
  expirationMinutes: number;
330
- credentials?: Partial<Record<CredentialType, string>> | undefined;
331
330
  accountId?: string | undefined;
331
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
332
332
  userId?: string | undefined;
333
333
  }, {
334
334
  operation: "getFile";
335
335
  bucketName: string;
336
336
  fileName: string;
337
- credentials?: Partial<Record<CredentialType, string>> | undefined;
338
337
  accountId?: string | undefined;
338
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
339
339
  region?: string | undefined;
340
340
  expirationMinutes?: number | undefined;
341
341
  userId?: string | undefined;
@@ -351,14 +351,14 @@ export declare class StorageBubble<T extends StorageParams = StorageParams> exte
351
351
  bucketName: string;
352
352
  fileName: string;
353
353
  region: string;
354
- credentials?: Partial<Record<CredentialType, string>> | undefined;
355
354
  accountId?: string | undefined;
355
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
356
356
  }, {
357
357
  operation: "deleteFile";
358
358
  bucketName: string;
359
359
  fileName: string;
360
- credentials?: Partial<Record<CredentialType, string>> | undefined;
361
360
  accountId?: string | undefined;
361
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
362
362
  region?: string | undefined;
363
363
  }>, z.ZodObject<{
364
364
  operation: z.ZodLiteral<"updateFile">;
@@ -375,15 +375,15 @@ export declare class StorageBubble<T extends StorageParams = StorageParams> exte
375
375
  fileName: string;
376
376
  region: string;
377
377
  fileContent: string;
378
- credentials?: Partial<Record<CredentialType, string>> | undefined;
379
378
  accountId?: string | undefined;
379
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
380
380
  contentType?: string | undefined;
381
381
  }, {
382
382
  operation: "updateFile";
383
383
  fileName: string;
384
384
  fileContent: string;
385
- credentials?: Partial<Record<CredentialType, string>> | undefined;
386
385
  accountId?: string | undefined;
386
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
387
387
  bucketName?: string | undefined;
388
388
  region?: string | undefined;
389
389
  contentType?: string | undefined;
@@ -404,16 +404,16 @@ export declare class StorageBubble<T extends StorageParams = StorageParams> exte
404
404
  expirationMinutes: number;
405
405
  pdfFileName: string;
406
406
  pageCount: number;
407
- credentials?: Partial<Record<CredentialType, string>> | undefined;
408
407
  accountId?: string | undefined;
408
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
409
409
  userId?: string | undefined;
410
410
  }, {
411
411
  operation: "getMultipleUploadUrls";
412
412
  bucketName: string;
413
413
  pdfFileName: string;
414
414
  pageCount: number;
415
- credentials?: Partial<Record<CredentialType, string>> | undefined;
416
415
  accountId?: string | undefined;
416
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
417
417
  region?: string | undefined;
418
418
  expirationMinutes?: number | undefined;
419
419
  userId?: string | undefined;
@@ -303,7 +303,6 @@ declare const LinkedInPostSchema: z.ZodObject<{
303
303
  thumbnail: string | null;
304
304
  }>>;
305
305
  }, "strip", z.ZodTypeAny, {
306
- url: string | null;
307
306
  author: {
308
307
  username: string | null;
309
308
  headline: string | null;
@@ -312,6 +311,7 @@ declare const LinkedInPostSchema: z.ZodObject<{
312
311
  firstName: string | null;
313
312
  lastName: string | null;
314
313
  } | null;
314
+ url: string | null;
315
315
  text: string | null;
316
316
  urn: string | null;
317
317
  stats: {
@@ -342,7 +342,6 @@ declare const LinkedInPostSchema: z.ZodObject<{
342
342
  } | null;
343
343
  postType: string | null;
344
344
  }, {
345
- url: string | null;
346
345
  author: {
347
346
  username: string | null;
348
347
  headline: string | null;
@@ -351,6 +350,7 @@ declare const LinkedInPostSchema: z.ZodObject<{
351
350
  firstName: string | null;
352
351
  lastName: string | null;
353
352
  } | null;
353
+ url: string | null;
354
354
  text: string | null;
355
355
  urn: string | null;
356
356
  stats: {
@@ -382,7 +382,6 @@ declare const LinkedInPostSchema: z.ZodObject<{
382
382
  postType: string | null;
383
383
  }>>;
384
384
  }, "strip", z.ZodTypeAny, {
385
- url: string | null;
386
385
  author: {
387
386
  username: string | null;
388
387
  headline: string | null;
@@ -391,6 +390,7 @@ declare const LinkedInPostSchema: z.ZodObject<{
391
390
  firstName: string | null;
392
391
  lastName: string | null;
393
392
  } | null;
393
+ url: string | null;
394
394
  text: string | null;
395
395
  document: {
396
396
  title: string | null;
@@ -434,7 +434,6 @@ declare const LinkedInPostSchema: z.ZodObject<{
434
434
  fullUrn: string | null;
435
435
  postType: string | null;
436
436
  resharedPost: {
437
- url: string | null;
438
437
  author: {
439
438
  username: string | null;
440
439
  headline: string | null;
@@ -443,6 +442,7 @@ declare const LinkedInPostSchema: z.ZodObject<{
443
442
  firstName: string | null;
444
443
  lastName: string | null;
445
444
  } | null;
445
+ url: string | null;
446
446
  text: string | null;
447
447
  urn: string | null;
448
448
  stats: {
@@ -474,7 +474,6 @@ declare const LinkedInPostSchema: z.ZodObject<{
474
474
  postType: string | null;
475
475
  } | null;
476
476
  }, {
477
- url: string | null;
478
477
  author: {
479
478
  username: string | null;
480
479
  headline: string | null;
@@ -483,6 +482,7 @@ declare const LinkedInPostSchema: z.ZodObject<{
483
482
  firstName: string | null;
484
483
  lastName: string | null;
485
484
  } | null;
485
+ url: string | null;
486
486
  text: string | null;
487
487
  document: {
488
488
  title: string | null;
@@ -526,7 +526,6 @@ declare const LinkedInPostSchema: z.ZodObject<{
526
526
  fullUrn: string | null;
527
527
  postType: string | null;
528
528
  resharedPost: {
529
- url: string | null;
530
529
  author: {
531
530
  username: string | null;
532
531
  headline: string | null;
@@ -535,6 +534,7 @@ declare const LinkedInPostSchema: z.ZodObject<{
535
534
  firstName: string | null;
536
535
  lastName: string | null;
537
536
  } | null;
537
+ url: string | null;
538
538
  text: string | null;
539
539
  urn: string | null;
540
540
  stats: {
@@ -609,8 +609,8 @@ declare const LinkedInJobSchema: z.ZodObject<{
609
609
  }, "strip", z.ZodTypeAny, {
610
610
  description: string | null;
611
611
  title: string | null;
612
- url: string | null;
613
612
  id: string | null;
613
+ url: string | null;
614
614
  location: string | null;
615
615
  postedAt: string | null;
616
616
  applyUrl: string | null;
@@ -631,8 +631,8 @@ declare const LinkedInJobSchema: z.ZodObject<{
631
631
  }, {
632
632
  description: string | null;
633
633
  title: string | null;
634
- url: string | null;
635
634
  id: string | null;
635
+ url: string | null;
636
636
  location: string | null;
637
637
  postedAt: string | null;
638
638
  applyUrl: string | null;
@@ -736,8 +736,8 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
736
736
  }, "strip", z.ZodTypeAny, {
737
737
  description: string | null;
738
738
  title: string | null;
739
- url: string | null;
740
739
  id: string | null;
740
+ url: string | null;
741
741
  location: string | null;
742
742
  postedAt: string | null;
743
743
  applyUrl: string | null;
@@ -758,8 +758,8 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
758
758
  }, {
759
759
  description: string | null;
760
760
  title: string | null;
761
- url: string | null;
762
761
  id: string | null;
762
+ url: string | null;
763
763
  location: string | null;
764
764
  postedAt: string | null;
765
765
  applyUrl: string | null;
@@ -1026,7 +1026,6 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
1026
1026
  thumbnail: string | null;
1027
1027
  }>>;
1028
1028
  }, "strip", z.ZodTypeAny, {
1029
- url: string | null;
1030
1029
  author: {
1031
1030
  username: string | null;
1032
1031
  headline: string | null;
@@ -1035,6 +1034,7 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
1035
1034
  firstName: string | null;
1036
1035
  lastName: string | null;
1037
1036
  } | null;
1037
+ url: string | null;
1038
1038
  text: string | null;
1039
1039
  urn: string | null;
1040
1040
  stats: {
@@ -1065,7 +1065,6 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
1065
1065
  } | null;
1066
1066
  postType: string | null;
1067
1067
  }, {
1068
- url: string | null;
1069
1068
  author: {
1070
1069
  username: string | null;
1071
1070
  headline: string | null;
@@ -1074,6 +1073,7 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
1074
1073
  firstName: string | null;
1075
1074
  lastName: string | null;
1076
1075
  } | null;
1076
+ url: string | null;
1077
1077
  text: string | null;
1078
1078
  urn: string | null;
1079
1079
  stats: {
@@ -1105,7 +1105,6 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
1105
1105
  postType: string | null;
1106
1106
  }>>;
1107
1107
  }, "strip", z.ZodTypeAny, {
1108
- url: string | null;
1109
1108
  author: {
1110
1109
  username: string | null;
1111
1110
  headline: string | null;
@@ -1114,6 +1113,7 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
1114
1113
  firstName: string | null;
1115
1114
  lastName: string | null;
1116
1115
  } | null;
1116
+ url: string | null;
1117
1117
  text: string | null;
1118
1118
  document: {
1119
1119
  title: string | null;
@@ -1157,7 +1157,6 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
1157
1157
  fullUrn: string | null;
1158
1158
  postType: string | null;
1159
1159
  resharedPost: {
1160
- url: string | null;
1161
1160
  author: {
1162
1161
  username: string | null;
1163
1162
  headline: string | null;
@@ -1166,6 +1165,7 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
1166
1165
  firstName: string | null;
1167
1166
  lastName: string | null;
1168
1167
  } | null;
1168
+ url: string | null;
1169
1169
  text: string | null;
1170
1170
  urn: string | null;
1171
1171
  stats: {
@@ -1197,7 +1197,6 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
1197
1197
  postType: string | null;
1198
1198
  } | null;
1199
1199
  }, {
1200
- url: string | null;
1201
1200
  author: {
1202
1201
  username: string | null;
1203
1202
  headline: string | null;
@@ -1206,6 +1205,7 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
1206
1205
  firstName: string | null;
1207
1206
  lastName: string | null;
1208
1207
  } | null;
1208
+ url: string | null;
1209
1209
  text: string | null;
1210
1210
  document: {
1211
1211
  title: string | null;
@@ -1249,7 +1249,6 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
1249
1249
  fullUrn: string | null;
1250
1250
  postType: string | null;
1251
1251
  resharedPost: {
1252
- url: string | null;
1253
1252
  author: {
1254
1253
  username: string | null;
1255
1254
  headline: string | null;
@@ -1258,6 +1257,7 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
1258
1257
  firstName: string | null;
1259
1258
  lastName: string | null;
1260
1259
  } | null;
1260
+ url: string | null;
1261
1261
  text: string | null;
1262
1262
  urn: string | null;
1263
1263
  stats: {
@@ -1302,7 +1302,6 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
1302
1302
  success: boolean;
1303
1303
  error: string;
1304
1304
  posts: {
1305
- url: string | null;
1306
1305
  author: {
1307
1306
  username: string | null;
1308
1307
  headline: string | null;
@@ -1311,6 +1310,7 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
1311
1310
  firstName: string | null;
1312
1311
  lastName: string | null;
1313
1312
  } | null;
1313
+ url: string | null;
1314
1314
  text: string | null;
1315
1315
  document: {
1316
1316
  title: string | null;
@@ -1354,7 +1354,6 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
1354
1354
  fullUrn: string | null;
1355
1355
  postType: string | null;
1356
1356
  resharedPost: {
1357
- url: string | null;
1358
1357
  author: {
1359
1358
  username: string | null;
1360
1359
  headline: string | null;
@@ -1363,6 +1362,7 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
1363
1362
  firstName: string | null;
1364
1363
  lastName: string | null;
1365
1364
  } | null;
1365
+ url: string | null;
1366
1366
  text: string | null;
1367
1367
  urn: string | null;
1368
1368
  stats: {
@@ -1400,8 +1400,8 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
1400
1400
  jobs?: {
1401
1401
  description: string | null;
1402
1402
  title: string | null;
1403
- url: string | null;
1404
1403
  id: string | null;
1404
+ url: string | null;
1405
1405
  location: string | null;
1406
1406
  postedAt: string | null;
1407
1407
  applyUrl: string | null;
@@ -1428,7 +1428,6 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
1428
1428
  success: boolean;
1429
1429
  error: string;
1430
1430
  posts: {
1431
- url: string | null;
1432
1431
  author: {
1433
1432
  username: string | null;
1434
1433
  headline: string | null;
@@ -1437,6 +1436,7 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
1437
1436
  firstName: string | null;
1438
1437
  lastName: string | null;
1439
1438
  } | null;
1439
+ url: string | null;
1440
1440
  text: string | null;
1441
1441
  document: {
1442
1442
  title: string | null;
@@ -1480,7 +1480,6 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
1480
1480
  fullUrn: string | null;
1481
1481
  postType: string | null;
1482
1482
  resharedPost: {
1483
- url: string | null;
1484
1483
  author: {
1485
1484
  username: string | null;
1486
1485
  headline: string | null;
@@ -1489,6 +1488,7 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
1489
1488
  firstName: string | null;
1490
1489
  lastName: string | null;
1491
1490
  } | null;
1491
+ url: string | null;
1492
1492
  text: string | null;
1493
1493
  urn: string | null;
1494
1494
  stats: {
@@ -1526,8 +1526,8 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
1526
1526
  jobs?: {
1527
1527
  description: string | null;
1528
1528
  title: string | null;
1529
- url: string | null;
1530
1529
  id: string | null;
1530
+ url: string | null;
1531
1531
  location: string | null;
1532
1532
  postedAt: string | null;
1533
1533
  applyUrl: string | null;
@@ -1659,8 +1659,8 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
1659
1659
  }, "strip", z.ZodTypeAny, {
1660
1660
  description: string | null;
1661
1661
  title: string | null;
1662
- url: string | null;
1663
1662
  id: string | null;
1663
+ url: string | null;
1664
1664
  location: string | null;
1665
1665
  postedAt: string | null;
1666
1666
  applyUrl: string | null;
@@ -1681,8 +1681,8 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
1681
1681
  }, {
1682
1682
  description: string | null;
1683
1683
  title: string | null;
1684
- url: string | null;
1685
1684
  id: string | null;
1685
+ url: string | null;
1686
1686
  location: string | null;
1687
1687
  postedAt: string | null;
1688
1688
  applyUrl: string | null;
@@ -1949,7 +1949,6 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
1949
1949
  thumbnail: string | null;
1950
1950
  }>>;
1951
1951
  }, "strip", z.ZodTypeAny, {
1952
- url: string | null;
1953
1952
  author: {
1954
1953
  username: string | null;
1955
1954
  headline: string | null;
@@ -1958,6 +1957,7 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
1958
1957
  firstName: string | null;
1959
1958
  lastName: string | null;
1960
1959
  } | null;
1960
+ url: string | null;
1961
1961
  text: string | null;
1962
1962
  urn: string | null;
1963
1963
  stats: {
@@ -1988,7 +1988,6 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
1988
1988
  } | null;
1989
1989
  postType: string | null;
1990
1990
  }, {
1991
- url: string | null;
1992
1991
  author: {
1993
1992
  username: string | null;
1994
1993
  headline: string | null;
@@ -1997,6 +1996,7 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
1997
1996
  firstName: string | null;
1998
1997
  lastName: string | null;
1999
1998
  } | null;
1999
+ url: string | null;
2000
2000
  text: string | null;
2001
2001
  urn: string | null;
2002
2002
  stats: {
@@ -2028,7 +2028,6 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
2028
2028
  postType: string | null;
2029
2029
  }>>;
2030
2030
  }, "strip", z.ZodTypeAny, {
2031
- url: string | null;
2032
2031
  author: {
2033
2032
  username: string | null;
2034
2033
  headline: string | null;
@@ -2037,6 +2036,7 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
2037
2036
  firstName: string | null;
2038
2037
  lastName: string | null;
2039
2038
  } | null;
2039
+ url: string | null;
2040
2040
  text: string | null;
2041
2041
  document: {
2042
2042
  title: string | null;
@@ -2080,7 +2080,6 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
2080
2080
  fullUrn: string | null;
2081
2081
  postType: string | null;
2082
2082
  resharedPost: {
2083
- url: string | null;
2084
2083
  author: {
2085
2084
  username: string | null;
2086
2085
  headline: string | null;
@@ -2089,6 +2088,7 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
2089
2088
  firstName: string | null;
2090
2089
  lastName: string | null;
2091
2090
  } | null;
2091
+ url: string | null;
2092
2092
  text: string | null;
2093
2093
  urn: string | null;
2094
2094
  stats: {
@@ -2120,7 +2120,6 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
2120
2120
  postType: string | null;
2121
2121
  } | null;
2122
2122
  }, {
2123
- url: string | null;
2124
2123
  author: {
2125
2124
  username: string | null;
2126
2125
  headline: string | null;
@@ -2129,6 +2128,7 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
2129
2128
  firstName: string | null;
2130
2129
  lastName: string | null;
2131
2130
  } | null;
2131
+ url: string | null;
2132
2132
  text: string | null;
2133
2133
  document: {
2134
2134
  title: string | null;
@@ -2172,7 +2172,6 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
2172
2172
  fullUrn: string | null;
2173
2173
  postType: string | null;
2174
2174
  resharedPost: {
2175
- url: string | null;
2176
2175
  author: {
2177
2176
  username: string | null;
2178
2177
  headline: string | null;
@@ -2181,6 +2180,7 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
2181
2180
  firstName: string | null;
2182
2181
  lastName: string | null;
2183
2182
  } | null;
2183
+ url: string | null;
2184
2184
  text: string | null;
2185
2185
  urn: string | null;
2186
2186
  stats: {
@@ -2225,7 +2225,6 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
2225
2225
  success: boolean;
2226
2226
  error: string;
2227
2227
  posts: {
2228
- url: string | null;
2229
2228
  author: {
2230
2229
  username: string | null;
2231
2230
  headline: string | null;
@@ -2234,6 +2233,7 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
2234
2233
  firstName: string | null;
2235
2234
  lastName: string | null;
2236
2235
  } | null;
2236
+ url: string | null;
2237
2237
  text: string | null;
2238
2238
  document: {
2239
2239
  title: string | null;
@@ -2277,7 +2277,6 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
2277
2277
  fullUrn: string | null;
2278
2278
  postType: string | null;
2279
2279
  resharedPost: {
2280
- url: string | null;
2281
2280
  author: {
2282
2281
  username: string | null;
2283
2282
  headline: string | null;
@@ -2286,6 +2285,7 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
2286
2285
  firstName: string | null;
2287
2286
  lastName: string | null;
2288
2287
  } | null;
2288
+ url: string | null;
2289
2289
  text: string | null;
2290
2290
  urn: string | null;
2291
2291
  stats: {
@@ -2323,8 +2323,8 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
2323
2323
  jobs?: {
2324
2324
  description: string | null;
2325
2325
  title: string | null;
2326
- url: string | null;
2327
2326
  id: string | null;
2327
+ url: string | null;
2328
2328
  location: string | null;
2329
2329
  postedAt: string | null;
2330
2330
  applyUrl: string | null;
@@ -2351,7 +2351,6 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
2351
2351
  success: boolean;
2352
2352
  error: string;
2353
2353
  posts: {
2354
- url: string | null;
2355
2354
  author: {
2356
2355
  username: string | null;
2357
2356
  headline: string | null;
@@ -2360,6 +2359,7 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
2360
2359
  firstName: string | null;
2361
2360
  lastName: string | null;
2362
2361
  } | null;
2362
+ url: string | null;
2363
2363
  text: string | null;
2364
2364
  document: {
2365
2365
  title: string | null;
@@ -2403,7 +2403,6 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
2403
2403
  fullUrn: string | null;
2404
2404
  postType: string | null;
2405
2405
  resharedPost: {
2406
- url: string | null;
2407
2406
  author: {
2408
2407
  username: string | null;
2409
2408
  headline: string | null;
@@ -2412,6 +2411,7 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
2412
2411
  firstName: string | null;
2413
2412
  lastName: string | null;
2414
2413
  } | null;
2414
+ url: string | null;
2415
2415
  text: string | null;
2416
2416
  urn: string | null;
2417
2417
  stats: {
@@ -2449,8 +2449,8 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
2449
2449
  jobs?: {
2450
2450
  description: string | null;
2451
2451
  title: string | null;
2452
- url: string | null;
2453
2452
  id: string | null;
2453
+ url: string | null;
2454
2454
  location: string | null;
2455
2455
  postedAt: string | null;
2456
2456
  applyUrl: string | null;