@meertrack/mcp 1.1.0 → 1.1.2

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/types.d.ts CHANGED
@@ -1,8 +1,8 @@
1
1
  import { z } from "zod";
2
- export declare const SECTION_SLUGS: readonly ["blog-posts", "press-posts", "job-listings", "pricing", "case-studies", "linkedin-posts", "youtube-videos", "events", "messaging", "metrics-claimed", "logos", "sitemap-urls"];
2
+ export declare const SECTION_SLUGS: readonly ["blog-posts", "press-posts", "job-listings", "ads", "pricing", "case-studies", "linkedin-posts", "x-posts", "reviews", "youtube-videos", "events", "messaging", "metrics-claimed", "logos", "sitemap-urls"];
3
3
  export declare const CHANGE_TYPES: readonly ["added", "updated", "removed"];
4
4
  export declare const API_ERROR_CODES: readonly ["invalid_parameter", "invalid_cursor", "unauthorized", "competitor_inactive", "forbidden_competitor", "not_found", "rate_limited", "internal_error"];
5
- export declare const SectionSlug: z.ZodEnum<["blog-posts", "press-posts", "job-listings", "pricing", "case-studies", "linkedin-posts", "youtube-videos", "events", "messaging", "metrics-claimed", "logos", "sitemap-urls"]>;
5
+ export declare const SectionSlug: z.ZodEnum<["blog-posts", "press-posts", "job-listings", "ads", "pricing", "case-studies", "linkedin-posts", "x-posts", "reviews", "youtube-videos", "events", "messaging", "metrics-claimed", "logos", "sitemap-urls"]>;
6
6
  export type SectionSlug = z.infer<typeof SectionSlug>;
7
7
  export declare const ChangeType: z.ZodEnum<["added", "updated", "removed"]>;
8
8
  export type ChangeType = z.infer<typeof ChangeType>;
@@ -471,9 +471,9 @@ export declare const BlogPostItem: z.ZodObject<{
471
471
  competitor: string;
472
472
  tags: string[];
473
473
  discovered_at: string | null;
474
+ description?: string | null | undefined;
474
475
  title?: string | null | undefined;
475
476
  url?: string | null | undefined;
476
- description?: string | null | undefined;
477
477
  key_points?: string | null | undefined;
478
478
  image_url?: string | null | undefined;
479
479
  posted_date?: string | null | undefined;
@@ -482,9 +482,9 @@ export declare const BlogPostItem: z.ZodObject<{
482
482
  competitor: string;
483
483
  tags: string[];
484
484
  discovered_at: string | null;
485
+ description?: string | null | undefined;
485
486
  title?: string | null | undefined;
486
487
  url?: string | null | undefined;
487
- description?: string | null | undefined;
488
488
  key_points?: string | null | undefined;
489
489
  image_url?: string | null | undefined;
490
490
  posted_date?: string | null | undefined;
@@ -506,9 +506,9 @@ export declare const PressPostItem: z.ZodObject<{
506
506
  competitor: string;
507
507
  tags: string[];
508
508
  discovered_at: string | null;
509
+ description?: string | null | undefined;
509
510
  title?: string | null | undefined;
510
511
  url?: string | null | undefined;
511
- description?: string | null | undefined;
512
512
  key_points?: string | null | undefined;
513
513
  image_url?: string | null | undefined;
514
514
  posted_date?: string | null | undefined;
@@ -517,9 +517,9 @@ export declare const PressPostItem: z.ZodObject<{
517
517
  competitor: string;
518
518
  tags: string[];
519
519
  discovered_at: string | null;
520
+ description?: string | null | undefined;
520
521
  title?: string | null | undefined;
521
522
  url?: string | null | undefined;
522
- description?: string | null | undefined;
523
523
  key_points?: string | null | undefined;
524
524
  image_url?: string | null | undefined;
525
525
  posted_date?: string | null | undefined;
@@ -540,9 +540,9 @@ export declare const CaseStudyItem: z.ZodObject<{
540
540
  competitor: string;
541
541
  tags: string[];
542
542
  discovered_at: string | null;
543
+ description?: string | null | undefined;
543
544
  title?: string | null | undefined;
544
545
  url?: string | null | undefined;
545
- description?: string | null | undefined;
546
546
  key_points?: string | null | undefined;
547
547
  image_url?: string | null | undefined;
548
548
  posted_date?: string | null | undefined;
@@ -551,9 +551,9 @@ export declare const CaseStudyItem: z.ZodObject<{
551
551
  competitor: string;
552
552
  tags: string[];
553
553
  discovered_at: string | null;
554
+ description?: string | null | undefined;
554
555
  title?: string | null | undefined;
555
556
  url?: string | null | undefined;
556
- description?: string | null | undefined;
557
557
  key_points?: string | null | undefined;
558
558
  image_url?: string | null | undefined;
559
559
  posted_date?: string | null | undefined;
@@ -668,18 +668,18 @@ export declare const YouTubeVideoItem: z.ZodObject<{
668
668
  competitor: string;
669
669
  tags: string[];
670
670
  discovered_at: string | null;
671
+ description?: string | null | undefined;
671
672
  title?: string | null | undefined;
672
673
  url?: string | null | undefined;
673
- description?: string | null | undefined;
674
674
  posted_date?: string | null | undefined;
675
675
  initial_run?: boolean | null | undefined;
676
676
  }, {
677
677
  competitor: string;
678
678
  tags: string[];
679
679
  discovered_at: string | null;
680
+ description?: string | null | undefined;
680
681
  title?: string | null | undefined;
681
682
  url?: string | null | undefined;
682
- description?: string | null | undefined;
683
683
  posted_date?: string | null | undefined;
684
684
  initial_run?: boolean | null | undefined;
685
685
  }>;
@@ -701,9 +701,9 @@ export declare const EventItem: z.ZodObject<{
701
701
  competitor: string;
702
702
  tags: string[];
703
703
  discovered_at: string | null;
704
+ description?: string | null | undefined;
704
705
  title?: string | null | undefined;
705
706
  url?: string | null | undefined;
706
- description?: string | null | undefined;
707
707
  image_url?: string | null | undefined;
708
708
  initial_run?: boolean | null | undefined;
709
709
  location?: string | null | undefined;
@@ -714,9 +714,9 @@ export declare const EventItem: z.ZodObject<{
714
714
  competitor: string;
715
715
  tags: string[];
716
716
  discovered_at: string | null;
717
+ description?: string | null | undefined;
717
718
  title?: string | null | undefined;
718
719
  url?: string | null | undefined;
719
- description?: string | null | undefined;
720
720
  image_url?: string | null | undefined;
721
721
  initial_run?: boolean | null | undefined;
722
722
  location?: string | null | undefined;
@@ -847,6 +847,123 @@ export declare const SitemapUrlItem: z.ZodObject<{
847
847
  initial_run?: boolean | null | undefined;
848
848
  }>;
849
849
  export type SitemapUrlItem = z.infer<typeof SitemapUrlItem>;
850
+ export declare const XPostItem: z.ZodObject<{
851
+ post_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
852
+ url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
853
+ content: z.ZodOptional<z.ZodNullable<z.ZodString>>;
854
+ name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
855
+ external_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
856
+ posted_date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
857
+ competitor: z.ZodString;
858
+ tags: z.ZodArray<z.ZodString, "many">;
859
+ discovered_at: z.ZodNullable<z.ZodString>;
860
+ initial_run: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
861
+ }, "strip", z.ZodTypeAny, {
862
+ competitor: string;
863
+ tags: string[];
864
+ discovered_at: string | null;
865
+ name?: string | null | undefined;
866
+ url?: string | null | undefined;
867
+ posted_date?: string | null | undefined;
868
+ initial_run?: boolean | null | undefined;
869
+ content?: string | null | undefined;
870
+ post_id?: string | null | undefined;
871
+ external_url?: string | null | undefined;
872
+ }, {
873
+ competitor: string;
874
+ tags: string[];
875
+ discovered_at: string | null;
876
+ name?: string | null | undefined;
877
+ url?: string | null | undefined;
878
+ posted_date?: string | null | undefined;
879
+ initial_run?: boolean | null | undefined;
880
+ content?: string | null | undefined;
881
+ post_id?: string | null | undefined;
882
+ external_url?: string | null | undefined;
883
+ }>;
884
+ export type XPostItem = z.infer<typeof XPostItem>;
885
+ export declare const ReviewItem: z.ZodObject<{
886
+ title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
887
+ rating: z.ZodOptional<z.ZodNullable<z.ZodString>>;
888
+ sentiment: z.ZodOptional<z.ZodNullable<z.ZodString>>;
889
+ url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
890
+ excerpt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
891
+ source: z.ZodOptional<z.ZodNullable<z.ZodString>>;
892
+ name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
893
+ external_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
894
+ posted_date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
895
+ competitor: z.ZodString;
896
+ tags: z.ZodArray<z.ZodString, "many">;
897
+ discovered_at: z.ZodNullable<z.ZodString>;
898
+ initial_run: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
899
+ }, "strip", z.ZodTypeAny, {
900
+ competitor: string;
901
+ tags: string[];
902
+ discovered_at: string | null;
903
+ source?: string | null | undefined;
904
+ name?: string | null | undefined;
905
+ title?: string | null | undefined;
906
+ url?: string | null | undefined;
907
+ posted_date?: string | null | undefined;
908
+ initial_run?: boolean | null | undefined;
909
+ rating?: string | null | undefined;
910
+ sentiment?: string | null | undefined;
911
+ excerpt?: string | null | undefined;
912
+ external_id?: string | null | undefined;
913
+ }, {
914
+ competitor: string;
915
+ tags: string[];
916
+ discovered_at: string | null;
917
+ source?: string | null | undefined;
918
+ name?: string | null | undefined;
919
+ title?: string | null | undefined;
920
+ url?: string | null | undefined;
921
+ posted_date?: string | null | undefined;
922
+ initial_run?: boolean | null | undefined;
923
+ rating?: string | null | undefined;
924
+ sentiment?: string | null | undefined;
925
+ excerpt?: string | null | undefined;
926
+ external_id?: string | null | undefined;
927
+ }>;
928
+ export type ReviewItem = z.infer<typeof ReviewItem>;
929
+ export declare const AdItem: z.ZodObject<{
930
+ platform: z.ZodOptional<z.ZodNullable<z.ZodString>>;
931
+ ad_format: z.ZodOptional<z.ZodNullable<z.ZodString>>;
932
+ content: z.ZodOptional<z.ZodNullable<z.ZodString>>;
933
+ image_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
934
+ is_live: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
935
+ added_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
936
+ removed_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
937
+ competitor: z.ZodString;
938
+ tags: z.ZodArray<z.ZodString, "many">;
939
+ discovered_at: z.ZodNullable<z.ZodString>;
940
+ initial_run: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
941
+ }, "strip", z.ZodTypeAny, {
942
+ competitor: string;
943
+ tags: string[];
944
+ discovered_at: string | null;
945
+ image_url?: string | null | undefined;
946
+ initial_run?: boolean | null | undefined;
947
+ is_live?: boolean | null | undefined;
948
+ added_at?: string | null | undefined;
949
+ removed_at?: string | null | undefined;
950
+ content?: string | null | undefined;
951
+ platform?: string | null | undefined;
952
+ ad_format?: string | null | undefined;
953
+ }, {
954
+ competitor: string;
955
+ tags: string[];
956
+ discovered_at: string | null;
957
+ image_url?: string | null | undefined;
958
+ initial_run?: boolean | null | undefined;
959
+ is_live?: boolean | null | undefined;
960
+ added_at?: string | null | undefined;
961
+ removed_at?: string | null | undefined;
962
+ content?: string | null | undefined;
963
+ platform?: string | null | undefined;
964
+ ad_format?: string | null | undefined;
965
+ }>;
966
+ export type AdItem = z.infer<typeof AdItem>;
850
967
  /**
851
968
  * Union of every section item shape. The active branch is selected by the
852
969
  * envelope's `section` value — not by inspecting properties (several branches
@@ -868,9 +985,9 @@ export declare const SectionItem: z.ZodUnion<[z.ZodObject<{
868
985
  competitor: string;
869
986
  tags: string[];
870
987
  discovered_at: string | null;
988
+ description?: string | null | undefined;
871
989
  title?: string | null | undefined;
872
990
  url?: string | null | undefined;
873
- description?: string | null | undefined;
874
991
  key_points?: string | null | undefined;
875
992
  image_url?: string | null | undefined;
876
993
  posted_date?: string | null | undefined;
@@ -879,9 +996,9 @@ export declare const SectionItem: z.ZodUnion<[z.ZodObject<{
879
996
  competitor: string;
880
997
  tags: string[];
881
998
  discovered_at: string | null;
999
+ description?: string | null | undefined;
882
1000
  title?: string | null | undefined;
883
1001
  url?: string | null | undefined;
884
- description?: string | null | undefined;
885
1002
  key_points?: string | null | undefined;
886
1003
  image_url?: string | null | undefined;
887
1004
  posted_date?: string | null | undefined;
@@ -989,18 +1106,18 @@ export declare const SectionItem: z.ZodUnion<[z.ZodObject<{
989
1106
  competitor: string;
990
1107
  tags: string[];
991
1108
  discovered_at: string | null;
1109
+ description?: string | null | undefined;
992
1110
  title?: string | null | undefined;
993
1111
  url?: string | null | undefined;
994
- description?: string | null | undefined;
995
1112
  posted_date?: string | null | undefined;
996
1113
  initial_run?: boolean | null | undefined;
997
1114
  }, {
998
1115
  competitor: string;
999
1116
  tags: string[];
1000
1117
  discovered_at: string | null;
1118
+ description?: string | null | undefined;
1001
1119
  title?: string | null | undefined;
1002
1120
  url?: string | null | undefined;
1003
- description?: string | null | undefined;
1004
1121
  posted_date?: string | null | undefined;
1005
1122
  initial_run?: boolean | null | undefined;
1006
1123
  }>, z.ZodObject<{
@@ -1020,9 +1137,9 @@ export declare const SectionItem: z.ZodUnion<[z.ZodObject<{
1020
1137
  competitor: string;
1021
1138
  tags: string[];
1022
1139
  discovered_at: string | null;
1140
+ description?: string | null | undefined;
1023
1141
  title?: string | null | undefined;
1024
1142
  url?: string | null | undefined;
1025
- description?: string | null | undefined;
1026
1143
  image_url?: string | null | undefined;
1027
1144
  initial_run?: boolean | null | undefined;
1028
1145
  location?: string | null | undefined;
@@ -1033,9 +1150,9 @@ export declare const SectionItem: z.ZodUnion<[z.ZodObject<{
1033
1150
  competitor: string;
1034
1151
  tags: string[];
1035
1152
  discovered_at: string | null;
1153
+ description?: string | null | undefined;
1036
1154
  title?: string | null | undefined;
1037
1155
  url?: string | null | undefined;
1038
- description?: string | null | undefined;
1039
1156
  image_url?: string | null | undefined;
1040
1157
  initial_run?: boolean | null | undefined;
1041
1158
  location?: string | null | undefined;
@@ -1156,6 +1273,117 @@ export declare const SectionItem: z.ZodUnion<[z.ZodObject<{
1156
1273
  discovered_at: string | null;
1157
1274
  url?: string | null | undefined;
1158
1275
  initial_run?: boolean | null | undefined;
1276
+ }>, z.ZodObject<{
1277
+ post_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1278
+ url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1279
+ content: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1280
+ name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1281
+ external_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1282
+ posted_date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1283
+ competitor: z.ZodString;
1284
+ tags: z.ZodArray<z.ZodString, "many">;
1285
+ discovered_at: z.ZodNullable<z.ZodString>;
1286
+ initial_run: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
1287
+ }, "strip", z.ZodTypeAny, {
1288
+ competitor: string;
1289
+ tags: string[];
1290
+ discovered_at: string | null;
1291
+ name?: string | null | undefined;
1292
+ url?: string | null | undefined;
1293
+ posted_date?: string | null | undefined;
1294
+ initial_run?: boolean | null | undefined;
1295
+ content?: string | null | undefined;
1296
+ post_id?: string | null | undefined;
1297
+ external_url?: string | null | undefined;
1298
+ }, {
1299
+ competitor: string;
1300
+ tags: string[];
1301
+ discovered_at: string | null;
1302
+ name?: string | null | undefined;
1303
+ url?: string | null | undefined;
1304
+ posted_date?: string | null | undefined;
1305
+ initial_run?: boolean | null | undefined;
1306
+ content?: string | null | undefined;
1307
+ post_id?: string | null | undefined;
1308
+ external_url?: string | null | undefined;
1309
+ }>, z.ZodObject<{
1310
+ title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1311
+ rating: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1312
+ sentiment: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1313
+ url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1314
+ excerpt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1315
+ source: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1316
+ name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1317
+ external_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1318
+ posted_date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1319
+ competitor: z.ZodString;
1320
+ tags: z.ZodArray<z.ZodString, "many">;
1321
+ discovered_at: z.ZodNullable<z.ZodString>;
1322
+ initial_run: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
1323
+ }, "strip", z.ZodTypeAny, {
1324
+ competitor: string;
1325
+ tags: string[];
1326
+ discovered_at: string | null;
1327
+ source?: string | null | undefined;
1328
+ name?: string | null | undefined;
1329
+ title?: string | null | undefined;
1330
+ url?: string | null | undefined;
1331
+ posted_date?: string | null | undefined;
1332
+ initial_run?: boolean | null | undefined;
1333
+ rating?: string | null | undefined;
1334
+ sentiment?: string | null | undefined;
1335
+ excerpt?: string | null | undefined;
1336
+ external_id?: string | null | undefined;
1337
+ }, {
1338
+ competitor: string;
1339
+ tags: string[];
1340
+ discovered_at: string | null;
1341
+ source?: string | null | undefined;
1342
+ name?: string | null | undefined;
1343
+ title?: string | null | undefined;
1344
+ url?: string | null | undefined;
1345
+ posted_date?: string | null | undefined;
1346
+ initial_run?: boolean | null | undefined;
1347
+ rating?: string | null | undefined;
1348
+ sentiment?: string | null | undefined;
1349
+ excerpt?: string | null | undefined;
1350
+ external_id?: string | null | undefined;
1351
+ }>, z.ZodObject<{
1352
+ platform: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1353
+ ad_format: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1354
+ content: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1355
+ image_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1356
+ is_live: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
1357
+ added_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1358
+ removed_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1359
+ competitor: z.ZodString;
1360
+ tags: z.ZodArray<z.ZodString, "many">;
1361
+ discovered_at: z.ZodNullable<z.ZodString>;
1362
+ initial_run: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
1363
+ }, "strip", z.ZodTypeAny, {
1364
+ competitor: string;
1365
+ tags: string[];
1366
+ discovered_at: string | null;
1367
+ image_url?: string | null | undefined;
1368
+ initial_run?: boolean | null | undefined;
1369
+ is_live?: boolean | null | undefined;
1370
+ added_at?: string | null | undefined;
1371
+ removed_at?: string | null | undefined;
1372
+ content?: string | null | undefined;
1373
+ platform?: string | null | undefined;
1374
+ ad_format?: string | null | undefined;
1375
+ }, {
1376
+ competitor: string;
1377
+ tags: string[];
1378
+ discovered_at: string | null;
1379
+ image_url?: string | null | undefined;
1380
+ initial_run?: boolean | null | undefined;
1381
+ is_live?: boolean | null | undefined;
1382
+ added_at?: string | null | undefined;
1383
+ removed_at?: string | null | undefined;
1384
+ content?: string | null | undefined;
1385
+ platform?: string | null | undefined;
1386
+ ad_format?: string | null | undefined;
1159
1387
  }>]>;
1160
1388
  export type SectionItem = z.infer<typeof SectionItem>;
1161
1389
  export declare const CompetitorOverviewItems: z.ZodObject<{
@@ -1174,9 +1402,9 @@ export declare const CompetitorOverviewItems: z.ZodObject<{
1174
1402
  competitor: string;
1175
1403
  tags: string[];
1176
1404
  discovered_at: string | null;
1405
+ description?: string | null | undefined;
1177
1406
  title?: string | null | undefined;
1178
1407
  url?: string | null | undefined;
1179
- description?: string | null | undefined;
1180
1408
  key_points?: string | null | undefined;
1181
1409
  image_url?: string | null | undefined;
1182
1410
  posted_date?: string | null | undefined;
@@ -1185,9 +1413,9 @@ export declare const CompetitorOverviewItems: z.ZodObject<{
1185
1413
  competitor: string;
1186
1414
  tags: string[];
1187
1415
  discovered_at: string | null;
1416
+ description?: string | null | undefined;
1188
1417
  title?: string | null | undefined;
1189
1418
  url?: string | null | undefined;
1190
- description?: string | null | undefined;
1191
1419
  key_points?: string | null | undefined;
1192
1420
  image_url?: string | null | undefined;
1193
1421
  posted_date?: string | null | undefined;
@@ -1208,9 +1436,9 @@ export declare const CompetitorOverviewItems: z.ZodObject<{
1208
1436
  competitor: string;
1209
1437
  tags: string[];
1210
1438
  discovered_at: string | null;
1439
+ description?: string | null | undefined;
1211
1440
  title?: string | null | undefined;
1212
1441
  url?: string | null | undefined;
1213
- description?: string | null | undefined;
1214
1442
  key_points?: string | null | undefined;
1215
1443
  image_url?: string | null | undefined;
1216
1444
  posted_date?: string | null | undefined;
@@ -1219,9 +1447,9 @@ export declare const CompetitorOverviewItems: z.ZodObject<{
1219
1447
  competitor: string;
1220
1448
  tags: string[];
1221
1449
  discovered_at: string | null;
1450
+ description?: string | null | undefined;
1222
1451
  title?: string | null | undefined;
1223
1452
  url?: string | null | undefined;
1224
- description?: string | null | undefined;
1225
1453
  key_points?: string | null | undefined;
1226
1454
  image_url?: string | null | undefined;
1227
1455
  posted_date?: string | null | undefined;
@@ -1242,9 +1470,9 @@ export declare const CompetitorOverviewItems: z.ZodObject<{
1242
1470
  competitor: string;
1243
1471
  tags: string[];
1244
1472
  discovered_at: string | null;
1473
+ description?: string | null | undefined;
1245
1474
  title?: string | null | undefined;
1246
1475
  url?: string | null | undefined;
1247
- description?: string | null | undefined;
1248
1476
  key_points?: string | null | undefined;
1249
1477
  image_url?: string | null | undefined;
1250
1478
  posted_date?: string | null | undefined;
@@ -1253,9 +1481,9 @@ export declare const CompetitorOverviewItems: z.ZodObject<{
1253
1481
  competitor: string;
1254
1482
  tags: string[];
1255
1483
  discovered_at: string | null;
1484
+ description?: string | null | undefined;
1256
1485
  title?: string | null | undefined;
1257
1486
  url?: string | null | undefined;
1258
- description?: string | null | undefined;
1259
1487
  key_points?: string | null | undefined;
1260
1488
  image_url?: string | null | undefined;
1261
1489
  posted_date?: string | null | undefined;
@@ -1301,6 +1529,43 @@ export declare const CompetitorOverviewItems: z.ZodObject<{
1301
1529
  added_at?: string | null | undefined;
1302
1530
  removed_at?: string | null | undefined;
1303
1531
  }>, "many">;
1532
+ ads: z.ZodArray<z.ZodObject<{
1533
+ platform: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1534
+ ad_format: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1535
+ content: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1536
+ image_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1537
+ is_live: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
1538
+ added_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1539
+ removed_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1540
+ competitor: z.ZodString;
1541
+ tags: z.ZodArray<z.ZodString, "many">;
1542
+ discovered_at: z.ZodNullable<z.ZodString>;
1543
+ initial_run: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
1544
+ }, "strip", z.ZodTypeAny, {
1545
+ competitor: string;
1546
+ tags: string[];
1547
+ discovered_at: string | null;
1548
+ image_url?: string | null | undefined;
1549
+ initial_run?: boolean | null | undefined;
1550
+ is_live?: boolean | null | undefined;
1551
+ added_at?: string | null | undefined;
1552
+ removed_at?: string | null | undefined;
1553
+ content?: string | null | undefined;
1554
+ platform?: string | null | undefined;
1555
+ ad_format?: string | null | undefined;
1556
+ }, {
1557
+ competitor: string;
1558
+ tags: string[];
1559
+ discovered_at: string | null;
1560
+ image_url?: string | null | undefined;
1561
+ initial_run?: boolean | null | undefined;
1562
+ is_live?: boolean | null | undefined;
1563
+ added_at?: string | null | undefined;
1564
+ removed_at?: string | null | undefined;
1565
+ content?: string | null | undefined;
1566
+ platform?: string | null | undefined;
1567
+ ad_format?: string | null | undefined;
1568
+ }>, "many">;
1304
1569
  pricing: z.ZodArray<z.ZodObject<{
1305
1570
  pricing_data: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodRecord<z.ZodString, z.ZodUnknown>, z.ZodArray<z.ZodUnknown, "many">]>>>;
1306
1571
  changes: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -1453,10 +1718,12 @@ export declare const CompetitorOverviewItems: z.ZodObject<{
1453
1718
  initial_run?: boolean | null | undefined;
1454
1719
  content?: string | null | undefined;
1455
1720
  }>, "many">;
1456
- "youtube-videos": z.ZodArray<z.ZodObject<{
1457
- title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1721
+ "x-posts": z.ZodArray<z.ZodObject<{
1722
+ post_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1458
1723
  url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1459
- description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1724
+ content: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1725
+ name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1726
+ external_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1460
1727
  posted_date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1461
1728
  competitor: z.ZodString;
1462
1729
  tags: z.ZodArray<z.ZodString, "many">;
@@ -1466,22 +1733,97 @@ export declare const CompetitorOverviewItems: z.ZodObject<{
1466
1733
  competitor: string;
1467
1734
  tags: string[];
1468
1735
  discovered_at: string | null;
1469
- title?: string | null | undefined;
1736
+ name?: string | null | undefined;
1470
1737
  url?: string | null | undefined;
1471
- description?: string | null | undefined;
1472
1738
  posted_date?: string | null | undefined;
1473
1739
  initial_run?: boolean | null | undefined;
1740
+ content?: string | null | undefined;
1741
+ post_id?: string | null | undefined;
1742
+ external_url?: string | null | undefined;
1474
1743
  }, {
1475
1744
  competitor: string;
1476
1745
  tags: string[];
1477
1746
  discovered_at: string | null;
1478
- title?: string | null | undefined;
1747
+ name?: string | null | undefined;
1479
1748
  url?: string | null | undefined;
1480
- description?: string | null | undefined;
1481
1749
  posted_date?: string | null | undefined;
1482
1750
  initial_run?: boolean | null | undefined;
1751
+ content?: string | null | undefined;
1752
+ post_id?: string | null | undefined;
1753
+ external_url?: string | null | undefined;
1483
1754
  }>, "many">;
1484
- events: z.ZodArray<z.ZodObject<{
1755
+ reviews: z.ZodArray<z.ZodObject<{
1756
+ title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1757
+ rating: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1758
+ sentiment: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1759
+ url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1760
+ excerpt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1761
+ source: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1762
+ name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1763
+ external_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1764
+ posted_date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1765
+ competitor: z.ZodString;
1766
+ tags: z.ZodArray<z.ZodString, "many">;
1767
+ discovered_at: z.ZodNullable<z.ZodString>;
1768
+ initial_run: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
1769
+ }, "strip", z.ZodTypeAny, {
1770
+ competitor: string;
1771
+ tags: string[];
1772
+ discovered_at: string | null;
1773
+ source?: string | null | undefined;
1774
+ name?: string | null | undefined;
1775
+ title?: string | null | undefined;
1776
+ url?: string | null | undefined;
1777
+ posted_date?: string | null | undefined;
1778
+ initial_run?: boolean | null | undefined;
1779
+ rating?: string | null | undefined;
1780
+ sentiment?: string | null | undefined;
1781
+ excerpt?: string | null | undefined;
1782
+ external_id?: string | null | undefined;
1783
+ }, {
1784
+ competitor: string;
1785
+ tags: string[];
1786
+ discovered_at: string | null;
1787
+ source?: string | null | undefined;
1788
+ name?: string | null | undefined;
1789
+ title?: string | null | undefined;
1790
+ url?: string | null | undefined;
1791
+ posted_date?: string | null | undefined;
1792
+ initial_run?: boolean | null | undefined;
1793
+ rating?: string | null | undefined;
1794
+ sentiment?: string | null | undefined;
1795
+ excerpt?: string | null | undefined;
1796
+ external_id?: string | null | undefined;
1797
+ }>, "many">;
1798
+ "youtube-videos": z.ZodArray<z.ZodObject<{
1799
+ title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1800
+ url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1801
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1802
+ posted_date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1803
+ competitor: z.ZodString;
1804
+ tags: z.ZodArray<z.ZodString, "many">;
1805
+ discovered_at: z.ZodNullable<z.ZodString>;
1806
+ initial_run: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
1807
+ }, "strip", z.ZodTypeAny, {
1808
+ competitor: string;
1809
+ tags: string[];
1810
+ discovered_at: string | null;
1811
+ description?: string | null | undefined;
1812
+ title?: string | null | undefined;
1813
+ url?: string | null | undefined;
1814
+ posted_date?: string | null | undefined;
1815
+ initial_run?: boolean | null | undefined;
1816
+ }, {
1817
+ competitor: string;
1818
+ tags: string[];
1819
+ discovered_at: string | null;
1820
+ description?: string | null | undefined;
1821
+ title?: string | null | undefined;
1822
+ url?: string | null | undefined;
1823
+ posted_date?: string | null | undefined;
1824
+ initial_run?: boolean | null | undefined;
1825
+ }>, "many">;
1826
+ events: z.ZodArray<z.ZodObject<{
1485
1827
  title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1486
1828
  url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1487
1829
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -1498,9 +1840,9 @@ export declare const CompetitorOverviewItems: z.ZodObject<{
1498
1840
  competitor: string;
1499
1841
  tags: string[];
1500
1842
  discovered_at: string | null;
1843
+ description?: string | null | undefined;
1501
1844
  title?: string | null | undefined;
1502
1845
  url?: string | null | undefined;
1503
- description?: string | null | undefined;
1504
1846
  image_url?: string | null | undefined;
1505
1847
  initial_run?: boolean | null | undefined;
1506
1848
  location?: string | null | undefined;
@@ -1511,9 +1853,9 @@ export declare const CompetitorOverviewItems: z.ZodObject<{
1511
1853
  competitor: string;
1512
1854
  tags: string[];
1513
1855
  discovered_at: string | null;
1856
+ description?: string | null | undefined;
1514
1857
  title?: string | null | undefined;
1515
1858
  url?: string | null | undefined;
1516
- description?: string | null | undefined;
1517
1859
  image_url?: string | null | undefined;
1518
1860
  initial_run?: boolean | null | undefined;
1519
1861
  location?: string | null | undefined;
@@ -1526,9 +1868,9 @@ export declare const CompetitorOverviewItems: z.ZodObject<{
1526
1868
  competitor: string;
1527
1869
  tags: string[];
1528
1870
  discovered_at: string | null;
1871
+ description?: string | null | undefined;
1529
1872
  title?: string | null | undefined;
1530
1873
  url?: string | null | undefined;
1531
- description?: string | null | undefined;
1532
1874
  key_points?: string | null | undefined;
1533
1875
  image_url?: string | null | undefined;
1534
1876
  posted_date?: string | null | undefined;
@@ -1538,9 +1880,9 @@ export declare const CompetitorOverviewItems: z.ZodObject<{
1538
1880
  competitor: string;
1539
1881
  tags: string[];
1540
1882
  discovered_at: string | null;
1883
+ description?: string | null | undefined;
1541
1884
  title?: string | null | undefined;
1542
1885
  url?: string | null | undefined;
1543
- description?: string | null | undefined;
1544
1886
  key_points?: string | null | undefined;
1545
1887
  image_url?: string | null | undefined;
1546
1888
  posted_date?: string | null | undefined;
@@ -1560,6 +1902,19 @@ export declare const CompetitorOverviewItems: z.ZodObject<{
1560
1902
  added_at?: string | null | undefined;
1561
1903
  removed_at?: string | null | undefined;
1562
1904
  }[];
1905
+ ads: {
1906
+ competitor: string;
1907
+ tags: string[];
1908
+ discovered_at: string | null;
1909
+ image_url?: string | null | undefined;
1910
+ initial_run?: boolean | null | undefined;
1911
+ is_live?: boolean | null | undefined;
1912
+ added_at?: string | null | undefined;
1913
+ removed_at?: string | null | undefined;
1914
+ content?: string | null | undefined;
1915
+ platform?: string | null | undefined;
1916
+ ad_format?: string | null | undefined;
1917
+ }[];
1563
1918
  pricing: {
1564
1919
  competitor: string;
1565
1920
  tags: string[];
@@ -1574,9 +1929,9 @@ export declare const CompetitorOverviewItems: z.ZodObject<{
1574
1929
  competitor: string;
1575
1930
  tags: string[];
1576
1931
  discovered_at: string | null;
1932
+ description?: string | null | undefined;
1577
1933
  title?: string | null | undefined;
1578
1934
  url?: string | null | undefined;
1579
- description?: string | null | undefined;
1580
1935
  key_points?: string | null | undefined;
1581
1936
  image_url?: string | null | undefined;
1582
1937
  posted_date?: string | null | undefined;
@@ -1591,13 +1946,40 @@ export declare const CompetitorOverviewItems: z.ZodObject<{
1591
1946
  initial_run?: boolean | null | undefined;
1592
1947
  content?: string | null | undefined;
1593
1948
  }[];
1594
- "youtube-videos": {
1949
+ "x-posts": {
1950
+ competitor: string;
1951
+ tags: string[];
1952
+ discovered_at: string | null;
1953
+ name?: string | null | undefined;
1954
+ url?: string | null | undefined;
1955
+ posted_date?: string | null | undefined;
1956
+ initial_run?: boolean | null | undefined;
1957
+ content?: string | null | undefined;
1958
+ post_id?: string | null | undefined;
1959
+ external_url?: string | null | undefined;
1960
+ }[];
1961
+ reviews: {
1595
1962
  competitor: string;
1596
1963
  tags: string[];
1597
1964
  discovered_at: string | null;
1965
+ source?: string | null | undefined;
1966
+ name?: string | null | undefined;
1598
1967
  title?: string | null | undefined;
1599
1968
  url?: string | null | undefined;
1969
+ posted_date?: string | null | undefined;
1970
+ initial_run?: boolean | null | undefined;
1971
+ rating?: string | null | undefined;
1972
+ sentiment?: string | null | undefined;
1973
+ excerpt?: string | null | undefined;
1974
+ external_id?: string | null | undefined;
1975
+ }[];
1976
+ "youtube-videos": {
1977
+ competitor: string;
1978
+ tags: string[];
1979
+ discovered_at: string | null;
1600
1980
  description?: string | null | undefined;
1981
+ title?: string | null | undefined;
1982
+ url?: string | null | undefined;
1601
1983
  posted_date?: string | null | undefined;
1602
1984
  initial_run?: boolean | null | undefined;
1603
1985
  }[];
@@ -1605,9 +1987,9 @@ export declare const CompetitorOverviewItems: z.ZodObject<{
1605
1987
  competitor: string;
1606
1988
  tags: string[];
1607
1989
  discovered_at: string | null;
1990
+ description?: string | null | undefined;
1608
1991
  title?: string | null | undefined;
1609
1992
  url?: string | null | undefined;
1610
- description?: string | null | undefined;
1611
1993
  image_url?: string | null | undefined;
1612
1994
  initial_run?: boolean | null | undefined;
1613
1995
  location?: string | null | undefined;
@@ -1655,9 +2037,9 @@ export declare const CompetitorOverviewItems: z.ZodObject<{
1655
2037
  competitor: string;
1656
2038
  tags: string[];
1657
2039
  discovered_at: string | null;
2040
+ description?: string | null | undefined;
1658
2041
  title?: string | null | undefined;
1659
2042
  url?: string | null | undefined;
1660
- description?: string | null | undefined;
1661
2043
  key_points?: string | null | undefined;
1662
2044
  image_url?: string | null | undefined;
1663
2045
  posted_date?: string | null | undefined;
@@ -1667,9 +2049,9 @@ export declare const CompetitorOverviewItems: z.ZodObject<{
1667
2049
  competitor: string;
1668
2050
  tags: string[];
1669
2051
  discovered_at: string | null;
2052
+ description?: string | null | undefined;
1670
2053
  title?: string | null | undefined;
1671
2054
  url?: string | null | undefined;
1672
- description?: string | null | undefined;
1673
2055
  key_points?: string | null | undefined;
1674
2056
  image_url?: string | null | undefined;
1675
2057
  posted_date?: string | null | undefined;
@@ -1689,6 +2071,19 @@ export declare const CompetitorOverviewItems: z.ZodObject<{
1689
2071
  added_at?: string | null | undefined;
1690
2072
  removed_at?: string | null | undefined;
1691
2073
  }[];
2074
+ ads: {
2075
+ competitor: string;
2076
+ tags: string[];
2077
+ discovered_at: string | null;
2078
+ image_url?: string | null | undefined;
2079
+ initial_run?: boolean | null | undefined;
2080
+ is_live?: boolean | null | undefined;
2081
+ added_at?: string | null | undefined;
2082
+ removed_at?: string | null | undefined;
2083
+ content?: string | null | undefined;
2084
+ platform?: string | null | undefined;
2085
+ ad_format?: string | null | undefined;
2086
+ }[];
1692
2087
  pricing: {
1693
2088
  competitor: string;
1694
2089
  tags: string[];
@@ -1703,9 +2098,9 @@ export declare const CompetitorOverviewItems: z.ZodObject<{
1703
2098
  competitor: string;
1704
2099
  tags: string[];
1705
2100
  discovered_at: string | null;
2101
+ description?: string | null | undefined;
1706
2102
  title?: string | null | undefined;
1707
2103
  url?: string | null | undefined;
1708
- description?: string | null | undefined;
1709
2104
  key_points?: string | null | undefined;
1710
2105
  image_url?: string | null | undefined;
1711
2106
  posted_date?: string | null | undefined;
@@ -1720,13 +2115,40 @@ export declare const CompetitorOverviewItems: z.ZodObject<{
1720
2115
  initial_run?: boolean | null | undefined;
1721
2116
  content?: string | null | undefined;
1722
2117
  }[];
1723
- "youtube-videos": {
2118
+ "x-posts": {
2119
+ competitor: string;
2120
+ tags: string[];
2121
+ discovered_at: string | null;
2122
+ name?: string | null | undefined;
2123
+ url?: string | null | undefined;
2124
+ posted_date?: string | null | undefined;
2125
+ initial_run?: boolean | null | undefined;
2126
+ content?: string | null | undefined;
2127
+ post_id?: string | null | undefined;
2128
+ external_url?: string | null | undefined;
2129
+ }[];
2130
+ reviews: {
1724
2131
  competitor: string;
1725
2132
  tags: string[];
1726
2133
  discovered_at: string | null;
2134
+ source?: string | null | undefined;
2135
+ name?: string | null | undefined;
1727
2136
  title?: string | null | undefined;
1728
2137
  url?: string | null | undefined;
2138
+ posted_date?: string | null | undefined;
2139
+ initial_run?: boolean | null | undefined;
2140
+ rating?: string | null | undefined;
2141
+ sentiment?: string | null | undefined;
2142
+ excerpt?: string | null | undefined;
2143
+ external_id?: string | null | undefined;
2144
+ }[];
2145
+ "youtube-videos": {
2146
+ competitor: string;
2147
+ tags: string[];
2148
+ discovered_at: string | null;
1729
2149
  description?: string | null | undefined;
2150
+ title?: string | null | undefined;
2151
+ url?: string | null | undefined;
1730
2152
  posted_date?: string | null | undefined;
1731
2153
  initial_run?: boolean | null | undefined;
1732
2154
  }[];
@@ -1734,9 +2156,9 @@ export declare const CompetitorOverviewItems: z.ZodObject<{
1734
2156
  competitor: string;
1735
2157
  tags: string[];
1736
2158
  discovered_at: string | null;
2159
+ description?: string | null | undefined;
1737
2160
  title?: string | null | undefined;
1738
2161
  url?: string | null | undefined;
1739
- description?: string | null | undefined;
1740
2162
  image_url?: string | null | undefined;
1741
2163
  initial_run?: boolean | null | undefined;
1742
2164
  location?: string | null | undefined;
@@ -1855,9 +2277,9 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
1855
2277
  competitor: string;
1856
2278
  tags: string[];
1857
2279
  discovered_at: string | null;
2280
+ description?: string | null | undefined;
1858
2281
  title?: string | null | undefined;
1859
2282
  url?: string | null | undefined;
1860
- description?: string | null | undefined;
1861
2283
  key_points?: string | null | undefined;
1862
2284
  image_url?: string | null | undefined;
1863
2285
  posted_date?: string | null | undefined;
@@ -1866,9 +2288,9 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
1866
2288
  competitor: string;
1867
2289
  tags: string[];
1868
2290
  discovered_at: string | null;
2291
+ description?: string | null | undefined;
1869
2292
  title?: string | null | undefined;
1870
2293
  url?: string | null | undefined;
1871
- description?: string | null | undefined;
1872
2294
  key_points?: string | null | undefined;
1873
2295
  image_url?: string | null | undefined;
1874
2296
  posted_date?: string | null | undefined;
@@ -1889,9 +2311,9 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
1889
2311
  competitor: string;
1890
2312
  tags: string[];
1891
2313
  discovered_at: string | null;
2314
+ description?: string | null | undefined;
1892
2315
  title?: string | null | undefined;
1893
2316
  url?: string | null | undefined;
1894
- description?: string | null | undefined;
1895
2317
  key_points?: string | null | undefined;
1896
2318
  image_url?: string | null | undefined;
1897
2319
  posted_date?: string | null | undefined;
@@ -1900,9 +2322,9 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
1900
2322
  competitor: string;
1901
2323
  tags: string[];
1902
2324
  discovered_at: string | null;
2325
+ description?: string | null | undefined;
1903
2326
  title?: string | null | undefined;
1904
2327
  url?: string | null | undefined;
1905
- description?: string | null | undefined;
1906
2328
  key_points?: string | null | undefined;
1907
2329
  image_url?: string | null | undefined;
1908
2330
  posted_date?: string | null | undefined;
@@ -1923,9 +2345,9 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
1923
2345
  competitor: string;
1924
2346
  tags: string[];
1925
2347
  discovered_at: string | null;
2348
+ description?: string | null | undefined;
1926
2349
  title?: string | null | undefined;
1927
2350
  url?: string | null | undefined;
1928
- description?: string | null | undefined;
1929
2351
  key_points?: string | null | undefined;
1930
2352
  image_url?: string | null | undefined;
1931
2353
  posted_date?: string | null | undefined;
@@ -1934,9 +2356,9 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
1934
2356
  competitor: string;
1935
2357
  tags: string[];
1936
2358
  discovered_at: string | null;
2359
+ description?: string | null | undefined;
1937
2360
  title?: string | null | undefined;
1938
2361
  url?: string | null | undefined;
1939
- description?: string | null | undefined;
1940
2362
  key_points?: string | null | undefined;
1941
2363
  image_url?: string | null | undefined;
1942
2364
  posted_date?: string | null | undefined;
@@ -1982,6 +2404,43 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
1982
2404
  added_at?: string | null | undefined;
1983
2405
  removed_at?: string | null | undefined;
1984
2406
  }>, "many">;
2407
+ ads: z.ZodArray<z.ZodObject<{
2408
+ platform: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2409
+ ad_format: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2410
+ content: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2411
+ image_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2412
+ is_live: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
2413
+ added_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2414
+ removed_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2415
+ competitor: z.ZodString;
2416
+ tags: z.ZodArray<z.ZodString, "many">;
2417
+ discovered_at: z.ZodNullable<z.ZodString>;
2418
+ initial_run: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
2419
+ }, "strip", z.ZodTypeAny, {
2420
+ competitor: string;
2421
+ tags: string[];
2422
+ discovered_at: string | null;
2423
+ image_url?: string | null | undefined;
2424
+ initial_run?: boolean | null | undefined;
2425
+ is_live?: boolean | null | undefined;
2426
+ added_at?: string | null | undefined;
2427
+ removed_at?: string | null | undefined;
2428
+ content?: string | null | undefined;
2429
+ platform?: string | null | undefined;
2430
+ ad_format?: string | null | undefined;
2431
+ }, {
2432
+ competitor: string;
2433
+ tags: string[];
2434
+ discovered_at: string | null;
2435
+ image_url?: string | null | undefined;
2436
+ initial_run?: boolean | null | undefined;
2437
+ is_live?: boolean | null | undefined;
2438
+ added_at?: string | null | undefined;
2439
+ removed_at?: string | null | undefined;
2440
+ content?: string | null | undefined;
2441
+ platform?: string | null | undefined;
2442
+ ad_format?: string | null | undefined;
2443
+ }>, "many">;
1985
2444
  pricing: z.ZodArray<z.ZodObject<{
1986
2445
  pricing_data: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodRecord<z.ZodString, z.ZodUnknown>, z.ZodArray<z.ZodUnknown, "many">]>>>;
1987
2446
  changes: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -2134,6 +2593,83 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
2134
2593
  initial_run?: boolean | null | undefined;
2135
2594
  content?: string | null | undefined;
2136
2595
  }>, "many">;
2596
+ "x-posts": z.ZodArray<z.ZodObject<{
2597
+ post_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2598
+ url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2599
+ content: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2600
+ name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2601
+ external_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2602
+ posted_date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2603
+ competitor: z.ZodString;
2604
+ tags: z.ZodArray<z.ZodString, "many">;
2605
+ discovered_at: z.ZodNullable<z.ZodString>;
2606
+ initial_run: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
2607
+ }, "strip", z.ZodTypeAny, {
2608
+ competitor: string;
2609
+ tags: string[];
2610
+ discovered_at: string | null;
2611
+ name?: string | null | undefined;
2612
+ url?: string | null | undefined;
2613
+ posted_date?: string | null | undefined;
2614
+ initial_run?: boolean | null | undefined;
2615
+ content?: string | null | undefined;
2616
+ post_id?: string | null | undefined;
2617
+ external_url?: string | null | undefined;
2618
+ }, {
2619
+ competitor: string;
2620
+ tags: string[];
2621
+ discovered_at: string | null;
2622
+ name?: string | null | undefined;
2623
+ url?: string | null | undefined;
2624
+ posted_date?: string | null | undefined;
2625
+ initial_run?: boolean | null | undefined;
2626
+ content?: string | null | undefined;
2627
+ post_id?: string | null | undefined;
2628
+ external_url?: string | null | undefined;
2629
+ }>, "many">;
2630
+ reviews: z.ZodArray<z.ZodObject<{
2631
+ title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2632
+ rating: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2633
+ sentiment: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2634
+ url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2635
+ excerpt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2636
+ source: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2637
+ name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2638
+ external_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2639
+ posted_date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2640
+ competitor: z.ZodString;
2641
+ tags: z.ZodArray<z.ZodString, "many">;
2642
+ discovered_at: z.ZodNullable<z.ZodString>;
2643
+ initial_run: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
2644
+ }, "strip", z.ZodTypeAny, {
2645
+ competitor: string;
2646
+ tags: string[];
2647
+ discovered_at: string | null;
2648
+ source?: string | null | undefined;
2649
+ name?: string | null | undefined;
2650
+ title?: string | null | undefined;
2651
+ url?: string | null | undefined;
2652
+ posted_date?: string | null | undefined;
2653
+ initial_run?: boolean | null | undefined;
2654
+ rating?: string | null | undefined;
2655
+ sentiment?: string | null | undefined;
2656
+ excerpt?: string | null | undefined;
2657
+ external_id?: string | null | undefined;
2658
+ }, {
2659
+ competitor: string;
2660
+ tags: string[];
2661
+ discovered_at: string | null;
2662
+ source?: string | null | undefined;
2663
+ name?: string | null | undefined;
2664
+ title?: string | null | undefined;
2665
+ url?: string | null | undefined;
2666
+ posted_date?: string | null | undefined;
2667
+ initial_run?: boolean | null | undefined;
2668
+ rating?: string | null | undefined;
2669
+ sentiment?: string | null | undefined;
2670
+ excerpt?: string | null | undefined;
2671
+ external_id?: string | null | undefined;
2672
+ }>, "many">;
2137
2673
  "youtube-videos": z.ZodArray<z.ZodObject<{
2138
2674
  title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2139
2675
  url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -2147,18 +2683,18 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
2147
2683
  competitor: string;
2148
2684
  tags: string[];
2149
2685
  discovered_at: string | null;
2686
+ description?: string | null | undefined;
2150
2687
  title?: string | null | undefined;
2151
2688
  url?: string | null | undefined;
2152
- description?: string | null | undefined;
2153
2689
  posted_date?: string | null | undefined;
2154
2690
  initial_run?: boolean | null | undefined;
2155
2691
  }, {
2156
2692
  competitor: string;
2157
2693
  tags: string[];
2158
2694
  discovered_at: string | null;
2695
+ description?: string | null | undefined;
2159
2696
  title?: string | null | undefined;
2160
2697
  url?: string | null | undefined;
2161
- description?: string | null | undefined;
2162
2698
  posted_date?: string | null | undefined;
2163
2699
  initial_run?: boolean | null | undefined;
2164
2700
  }>, "many">;
@@ -2179,9 +2715,9 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
2179
2715
  competitor: string;
2180
2716
  tags: string[];
2181
2717
  discovered_at: string | null;
2718
+ description?: string | null | undefined;
2182
2719
  title?: string | null | undefined;
2183
2720
  url?: string | null | undefined;
2184
- description?: string | null | undefined;
2185
2721
  image_url?: string | null | undefined;
2186
2722
  initial_run?: boolean | null | undefined;
2187
2723
  location?: string | null | undefined;
@@ -2192,9 +2728,9 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
2192
2728
  competitor: string;
2193
2729
  tags: string[];
2194
2730
  discovered_at: string | null;
2731
+ description?: string | null | undefined;
2195
2732
  title?: string | null | undefined;
2196
2733
  url?: string | null | undefined;
2197
- description?: string | null | undefined;
2198
2734
  image_url?: string | null | undefined;
2199
2735
  initial_run?: boolean | null | undefined;
2200
2736
  location?: string | null | undefined;
@@ -2207,9 +2743,9 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
2207
2743
  competitor: string;
2208
2744
  tags: string[];
2209
2745
  discovered_at: string | null;
2746
+ description?: string | null | undefined;
2210
2747
  title?: string | null | undefined;
2211
2748
  url?: string | null | undefined;
2212
- description?: string | null | undefined;
2213
2749
  key_points?: string | null | undefined;
2214
2750
  image_url?: string | null | undefined;
2215
2751
  posted_date?: string | null | undefined;
@@ -2219,9 +2755,9 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
2219
2755
  competitor: string;
2220
2756
  tags: string[];
2221
2757
  discovered_at: string | null;
2758
+ description?: string | null | undefined;
2222
2759
  title?: string | null | undefined;
2223
2760
  url?: string | null | undefined;
2224
- description?: string | null | undefined;
2225
2761
  key_points?: string | null | undefined;
2226
2762
  image_url?: string | null | undefined;
2227
2763
  posted_date?: string | null | undefined;
@@ -2241,6 +2777,19 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
2241
2777
  added_at?: string | null | undefined;
2242
2778
  removed_at?: string | null | undefined;
2243
2779
  }[];
2780
+ ads: {
2781
+ competitor: string;
2782
+ tags: string[];
2783
+ discovered_at: string | null;
2784
+ image_url?: string | null | undefined;
2785
+ initial_run?: boolean | null | undefined;
2786
+ is_live?: boolean | null | undefined;
2787
+ added_at?: string | null | undefined;
2788
+ removed_at?: string | null | undefined;
2789
+ content?: string | null | undefined;
2790
+ platform?: string | null | undefined;
2791
+ ad_format?: string | null | undefined;
2792
+ }[];
2244
2793
  pricing: {
2245
2794
  competitor: string;
2246
2795
  tags: string[];
@@ -2255,9 +2804,9 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
2255
2804
  competitor: string;
2256
2805
  tags: string[];
2257
2806
  discovered_at: string | null;
2807
+ description?: string | null | undefined;
2258
2808
  title?: string | null | undefined;
2259
2809
  url?: string | null | undefined;
2260
- description?: string | null | undefined;
2261
2810
  key_points?: string | null | undefined;
2262
2811
  image_url?: string | null | undefined;
2263
2812
  posted_date?: string | null | undefined;
@@ -2272,13 +2821,40 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
2272
2821
  initial_run?: boolean | null | undefined;
2273
2822
  content?: string | null | undefined;
2274
2823
  }[];
2275
- "youtube-videos": {
2824
+ "x-posts": {
2825
+ competitor: string;
2826
+ tags: string[];
2827
+ discovered_at: string | null;
2828
+ name?: string | null | undefined;
2829
+ url?: string | null | undefined;
2830
+ posted_date?: string | null | undefined;
2831
+ initial_run?: boolean | null | undefined;
2832
+ content?: string | null | undefined;
2833
+ post_id?: string | null | undefined;
2834
+ external_url?: string | null | undefined;
2835
+ }[];
2836
+ reviews: {
2276
2837
  competitor: string;
2277
2838
  tags: string[];
2278
2839
  discovered_at: string | null;
2840
+ source?: string | null | undefined;
2841
+ name?: string | null | undefined;
2279
2842
  title?: string | null | undefined;
2280
2843
  url?: string | null | undefined;
2844
+ posted_date?: string | null | undefined;
2845
+ initial_run?: boolean | null | undefined;
2846
+ rating?: string | null | undefined;
2847
+ sentiment?: string | null | undefined;
2848
+ excerpt?: string | null | undefined;
2849
+ external_id?: string | null | undefined;
2850
+ }[];
2851
+ "youtube-videos": {
2852
+ competitor: string;
2853
+ tags: string[];
2854
+ discovered_at: string | null;
2281
2855
  description?: string | null | undefined;
2856
+ title?: string | null | undefined;
2857
+ url?: string | null | undefined;
2282
2858
  posted_date?: string | null | undefined;
2283
2859
  initial_run?: boolean | null | undefined;
2284
2860
  }[];
@@ -2286,9 +2862,9 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
2286
2862
  competitor: string;
2287
2863
  tags: string[];
2288
2864
  discovered_at: string | null;
2865
+ description?: string | null | undefined;
2289
2866
  title?: string | null | undefined;
2290
2867
  url?: string | null | undefined;
2291
- description?: string | null | undefined;
2292
2868
  image_url?: string | null | undefined;
2293
2869
  initial_run?: boolean | null | undefined;
2294
2870
  location?: string | null | undefined;
@@ -2336,9 +2912,9 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
2336
2912
  competitor: string;
2337
2913
  tags: string[];
2338
2914
  discovered_at: string | null;
2915
+ description?: string | null | undefined;
2339
2916
  title?: string | null | undefined;
2340
2917
  url?: string | null | undefined;
2341
- description?: string | null | undefined;
2342
2918
  key_points?: string | null | undefined;
2343
2919
  image_url?: string | null | undefined;
2344
2920
  posted_date?: string | null | undefined;
@@ -2348,9 +2924,9 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
2348
2924
  competitor: string;
2349
2925
  tags: string[];
2350
2926
  discovered_at: string | null;
2927
+ description?: string | null | undefined;
2351
2928
  title?: string | null | undefined;
2352
2929
  url?: string | null | undefined;
2353
- description?: string | null | undefined;
2354
2930
  key_points?: string | null | undefined;
2355
2931
  image_url?: string | null | undefined;
2356
2932
  posted_date?: string | null | undefined;
@@ -2370,6 +2946,19 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
2370
2946
  added_at?: string | null | undefined;
2371
2947
  removed_at?: string | null | undefined;
2372
2948
  }[];
2949
+ ads: {
2950
+ competitor: string;
2951
+ tags: string[];
2952
+ discovered_at: string | null;
2953
+ image_url?: string | null | undefined;
2954
+ initial_run?: boolean | null | undefined;
2955
+ is_live?: boolean | null | undefined;
2956
+ added_at?: string | null | undefined;
2957
+ removed_at?: string | null | undefined;
2958
+ content?: string | null | undefined;
2959
+ platform?: string | null | undefined;
2960
+ ad_format?: string | null | undefined;
2961
+ }[];
2373
2962
  pricing: {
2374
2963
  competitor: string;
2375
2964
  tags: string[];
@@ -2384,9 +2973,9 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
2384
2973
  competitor: string;
2385
2974
  tags: string[];
2386
2975
  discovered_at: string | null;
2976
+ description?: string | null | undefined;
2387
2977
  title?: string | null | undefined;
2388
2978
  url?: string | null | undefined;
2389
- description?: string | null | undefined;
2390
2979
  key_points?: string | null | undefined;
2391
2980
  image_url?: string | null | undefined;
2392
2981
  posted_date?: string | null | undefined;
@@ -2401,13 +2990,40 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
2401
2990
  initial_run?: boolean | null | undefined;
2402
2991
  content?: string | null | undefined;
2403
2992
  }[];
2404
- "youtube-videos": {
2993
+ "x-posts": {
2994
+ competitor: string;
2995
+ tags: string[];
2996
+ discovered_at: string | null;
2997
+ name?: string | null | undefined;
2998
+ url?: string | null | undefined;
2999
+ posted_date?: string | null | undefined;
3000
+ initial_run?: boolean | null | undefined;
3001
+ content?: string | null | undefined;
3002
+ post_id?: string | null | undefined;
3003
+ external_url?: string | null | undefined;
3004
+ }[];
3005
+ reviews: {
2405
3006
  competitor: string;
2406
3007
  tags: string[];
2407
3008
  discovered_at: string | null;
3009
+ source?: string | null | undefined;
3010
+ name?: string | null | undefined;
2408
3011
  title?: string | null | undefined;
2409
3012
  url?: string | null | undefined;
3013
+ posted_date?: string | null | undefined;
3014
+ initial_run?: boolean | null | undefined;
3015
+ rating?: string | null | undefined;
3016
+ sentiment?: string | null | undefined;
3017
+ excerpt?: string | null | undefined;
3018
+ external_id?: string | null | undefined;
3019
+ }[];
3020
+ "youtube-videos": {
3021
+ competitor: string;
3022
+ tags: string[];
3023
+ discovered_at: string | null;
2410
3024
  description?: string | null | undefined;
3025
+ title?: string | null | undefined;
3026
+ url?: string | null | undefined;
2411
3027
  posted_date?: string | null | undefined;
2412
3028
  initial_run?: boolean | null | undefined;
2413
3029
  }[];
@@ -2415,9 +3031,9 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
2415
3031
  competitor: string;
2416
3032
  tags: string[];
2417
3033
  discovered_at: string | null;
3034
+ description?: string | null | undefined;
2418
3035
  title?: string | null | undefined;
2419
3036
  url?: string | null | undefined;
2420
- description?: string | null | undefined;
2421
3037
  image_url?: string | null | undefined;
2422
3038
  initial_run?: boolean | null | undefined;
2423
3039
  location?: string | null | undefined;
@@ -2491,9 +3107,9 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
2491
3107
  competitor: string;
2492
3108
  tags: string[];
2493
3109
  discovered_at: string | null;
3110
+ description?: string | null | undefined;
2494
3111
  title?: string | null | undefined;
2495
3112
  url?: string | null | undefined;
2496
- description?: string | null | undefined;
2497
3113
  key_points?: string | null | undefined;
2498
3114
  image_url?: string | null | undefined;
2499
3115
  posted_date?: string | null | undefined;
@@ -2503,9 +3119,9 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
2503
3119
  competitor: string;
2504
3120
  tags: string[];
2505
3121
  discovered_at: string | null;
3122
+ description?: string | null | undefined;
2506
3123
  title?: string | null | undefined;
2507
3124
  url?: string | null | undefined;
2508
- description?: string | null | undefined;
2509
3125
  key_points?: string | null | undefined;
2510
3126
  image_url?: string | null | undefined;
2511
3127
  posted_date?: string | null | undefined;
@@ -2525,6 +3141,19 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
2525
3141
  added_at?: string | null | undefined;
2526
3142
  removed_at?: string | null | undefined;
2527
3143
  }[];
3144
+ ads: {
3145
+ competitor: string;
3146
+ tags: string[];
3147
+ discovered_at: string | null;
3148
+ image_url?: string | null | undefined;
3149
+ initial_run?: boolean | null | undefined;
3150
+ is_live?: boolean | null | undefined;
3151
+ added_at?: string | null | undefined;
3152
+ removed_at?: string | null | undefined;
3153
+ content?: string | null | undefined;
3154
+ platform?: string | null | undefined;
3155
+ ad_format?: string | null | undefined;
3156
+ }[];
2528
3157
  pricing: {
2529
3158
  competitor: string;
2530
3159
  tags: string[];
@@ -2539,9 +3168,9 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
2539
3168
  competitor: string;
2540
3169
  tags: string[];
2541
3170
  discovered_at: string | null;
3171
+ description?: string | null | undefined;
2542
3172
  title?: string | null | undefined;
2543
3173
  url?: string | null | undefined;
2544
- description?: string | null | undefined;
2545
3174
  key_points?: string | null | undefined;
2546
3175
  image_url?: string | null | undefined;
2547
3176
  posted_date?: string | null | undefined;
@@ -2556,13 +3185,40 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
2556
3185
  initial_run?: boolean | null | undefined;
2557
3186
  content?: string | null | undefined;
2558
3187
  }[];
2559
- "youtube-videos": {
3188
+ "x-posts": {
3189
+ competitor: string;
3190
+ tags: string[];
3191
+ discovered_at: string | null;
3192
+ name?: string | null | undefined;
3193
+ url?: string | null | undefined;
3194
+ posted_date?: string | null | undefined;
3195
+ initial_run?: boolean | null | undefined;
3196
+ content?: string | null | undefined;
3197
+ post_id?: string | null | undefined;
3198
+ external_url?: string | null | undefined;
3199
+ }[];
3200
+ reviews: {
2560
3201
  competitor: string;
2561
3202
  tags: string[];
2562
3203
  discovered_at: string | null;
3204
+ source?: string | null | undefined;
3205
+ name?: string | null | undefined;
2563
3206
  title?: string | null | undefined;
2564
3207
  url?: string | null | undefined;
3208
+ posted_date?: string | null | undefined;
3209
+ initial_run?: boolean | null | undefined;
3210
+ rating?: string | null | undefined;
3211
+ sentiment?: string | null | undefined;
3212
+ excerpt?: string | null | undefined;
3213
+ external_id?: string | null | undefined;
3214
+ }[];
3215
+ "youtube-videos": {
3216
+ competitor: string;
3217
+ tags: string[];
3218
+ discovered_at: string | null;
2565
3219
  description?: string | null | undefined;
3220
+ title?: string | null | undefined;
3221
+ url?: string | null | undefined;
2566
3222
  posted_date?: string | null | undefined;
2567
3223
  initial_run?: boolean | null | undefined;
2568
3224
  }[];
@@ -2570,9 +3226,9 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
2570
3226
  competitor: string;
2571
3227
  tags: string[];
2572
3228
  discovered_at: string | null;
3229
+ description?: string | null | undefined;
2573
3230
  title?: string | null | undefined;
2574
3231
  url?: string | null | undefined;
2575
- description?: string | null | undefined;
2576
3232
  image_url?: string | null | undefined;
2577
3233
  initial_run?: boolean | null | undefined;
2578
3234
  location?: string | null | undefined;
@@ -2646,9 +3302,9 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
2646
3302
  competitor: string;
2647
3303
  tags: string[];
2648
3304
  discovered_at: string | null;
3305
+ description?: string | null | undefined;
2649
3306
  title?: string | null | undefined;
2650
3307
  url?: string | null | undefined;
2651
- description?: string | null | undefined;
2652
3308
  key_points?: string | null | undefined;
2653
3309
  image_url?: string | null | undefined;
2654
3310
  posted_date?: string | null | undefined;
@@ -2658,9 +3314,9 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
2658
3314
  competitor: string;
2659
3315
  tags: string[];
2660
3316
  discovered_at: string | null;
3317
+ description?: string | null | undefined;
2661
3318
  title?: string | null | undefined;
2662
3319
  url?: string | null | undefined;
2663
- description?: string | null | undefined;
2664
3320
  key_points?: string | null | undefined;
2665
3321
  image_url?: string | null | undefined;
2666
3322
  posted_date?: string | null | undefined;
@@ -2680,6 +3336,19 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
2680
3336
  added_at?: string | null | undefined;
2681
3337
  removed_at?: string | null | undefined;
2682
3338
  }[];
3339
+ ads: {
3340
+ competitor: string;
3341
+ tags: string[];
3342
+ discovered_at: string | null;
3343
+ image_url?: string | null | undefined;
3344
+ initial_run?: boolean | null | undefined;
3345
+ is_live?: boolean | null | undefined;
3346
+ added_at?: string | null | undefined;
3347
+ removed_at?: string | null | undefined;
3348
+ content?: string | null | undefined;
3349
+ platform?: string | null | undefined;
3350
+ ad_format?: string | null | undefined;
3351
+ }[];
2683
3352
  pricing: {
2684
3353
  competitor: string;
2685
3354
  tags: string[];
@@ -2694,9 +3363,9 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
2694
3363
  competitor: string;
2695
3364
  tags: string[];
2696
3365
  discovered_at: string | null;
3366
+ description?: string | null | undefined;
2697
3367
  title?: string | null | undefined;
2698
3368
  url?: string | null | undefined;
2699
- description?: string | null | undefined;
2700
3369
  key_points?: string | null | undefined;
2701
3370
  image_url?: string | null | undefined;
2702
3371
  posted_date?: string | null | undefined;
@@ -2711,13 +3380,40 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
2711
3380
  initial_run?: boolean | null | undefined;
2712
3381
  content?: string | null | undefined;
2713
3382
  }[];
2714
- "youtube-videos": {
3383
+ "x-posts": {
3384
+ competitor: string;
3385
+ tags: string[];
3386
+ discovered_at: string | null;
3387
+ name?: string | null | undefined;
3388
+ url?: string | null | undefined;
3389
+ posted_date?: string | null | undefined;
3390
+ initial_run?: boolean | null | undefined;
3391
+ content?: string | null | undefined;
3392
+ post_id?: string | null | undefined;
3393
+ external_url?: string | null | undefined;
3394
+ }[];
3395
+ reviews: {
2715
3396
  competitor: string;
2716
3397
  tags: string[];
2717
3398
  discovered_at: string | null;
3399
+ source?: string | null | undefined;
3400
+ name?: string | null | undefined;
2718
3401
  title?: string | null | undefined;
2719
3402
  url?: string | null | undefined;
3403
+ posted_date?: string | null | undefined;
3404
+ initial_run?: boolean | null | undefined;
3405
+ rating?: string | null | undefined;
3406
+ sentiment?: string | null | undefined;
3407
+ excerpt?: string | null | undefined;
3408
+ external_id?: string | null | undefined;
3409
+ }[];
3410
+ "youtube-videos": {
3411
+ competitor: string;
3412
+ tags: string[];
3413
+ discovered_at: string | null;
2720
3414
  description?: string | null | undefined;
3415
+ title?: string | null | undefined;
3416
+ url?: string | null | undefined;
2721
3417
  posted_date?: string | null | undefined;
2722
3418
  initial_run?: boolean | null | undefined;
2723
3419
  }[];
@@ -2725,9 +3421,9 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
2725
3421
  competitor: string;
2726
3422
  tags: string[];
2727
3423
  discovered_at: string | null;
3424
+ description?: string | null | undefined;
2728
3425
  title?: string | null | undefined;
2729
3426
  url?: string | null | undefined;
2730
- description?: string | null | undefined;
2731
3427
  image_url?: string | null | undefined;
2732
3428
  initial_run?: boolean | null | undefined;
2733
3429
  location?: string | null | undefined;
@@ -2803,9 +3499,9 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
2803
3499
  competitor: string;
2804
3500
  tags: string[];
2805
3501
  discovered_at: string | null;
3502
+ description?: string | null | undefined;
2806
3503
  title?: string | null | undefined;
2807
3504
  url?: string | null | undefined;
2808
- description?: string | null | undefined;
2809
3505
  key_points?: string | null | undefined;
2810
3506
  image_url?: string | null | undefined;
2811
3507
  posted_date?: string | null | undefined;
@@ -2815,9 +3511,9 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
2815
3511
  competitor: string;
2816
3512
  tags: string[];
2817
3513
  discovered_at: string | null;
3514
+ description?: string | null | undefined;
2818
3515
  title?: string | null | undefined;
2819
3516
  url?: string | null | undefined;
2820
- description?: string | null | undefined;
2821
3517
  key_points?: string | null | undefined;
2822
3518
  image_url?: string | null | undefined;
2823
3519
  posted_date?: string | null | undefined;
@@ -2837,6 +3533,19 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
2837
3533
  added_at?: string | null | undefined;
2838
3534
  removed_at?: string | null | undefined;
2839
3535
  }[];
3536
+ ads: {
3537
+ competitor: string;
3538
+ tags: string[];
3539
+ discovered_at: string | null;
3540
+ image_url?: string | null | undefined;
3541
+ initial_run?: boolean | null | undefined;
3542
+ is_live?: boolean | null | undefined;
3543
+ added_at?: string | null | undefined;
3544
+ removed_at?: string | null | undefined;
3545
+ content?: string | null | undefined;
3546
+ platform?: string | null | undefined;
3547
+ ad_format?: string | null | undefined;
3548
+ }[];
2840
3549
  pricing: {
2841
3550
  competitor: string;
2842
3551
  tags: string[];
@@ -2851,9 +3560,9 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
2851
3560
  competitor: string;
2852
3561
  tags: string[];
2853
3562
  discovered_at: string | null;
3563
+ description?: string | null | undefined;
2854
3564
  title?: string | null | undefined;
2855
3565
  url?: string | null | undefined;
2856
- description?: string | null | undefined;
2857
3566
  key_points?: string | null | undefined;
2858
3567
  image_url?: string | null | undefined;
2859
3568
  posted_date?: string | null | undefined;
@@ -2868,13 +3577,40 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
2868
3577
  initial_run?: boolean | null | undefined;
2869
3578
  content?: string | null | undefined;
2870
3579
  }[];
2871
- "youtube-videos": {
3580
+ "x-posts": {
3581
+ competitor: string;
3582
+ tags: string[];
3583
+ discovered_at: string | null;
3584
+ name?: string | null | undefined;
3585
+ url?: string | null | undefined;
3586
+ posted_date?: string | null | undefined;
3587
+ initial_run?: boolean | null | undefined;
3588
+ content?: string | null | undefined;
3589
+ post_id?: string | null | undefined;
3590
+ external_url?: string | null | undefined;
3591
+ }[];
3592
+ reviews: {
2872
3593
  competitor: string;
2873
3594
  tags: string[];
2874
3595
  discovered_at: string | null;
3596
+ source?: string | null | undefined;
3597
+ name?: string | null | undefined;
2875
3598
  title?: string | null | undefined;
2876
3599
  url?: string | null | undefined;
3600
+ posted_date?: string | null | undefined;
3601
+ initial_run?: boolean | null | undefined;
3602
+ rating?: string | null | undefined;
3603
+ sentiment?: string | null | undefined;
3604
+ excerpt?: string | null | undefined;
3605
+ external_id?: string | null | undefined;
3606
+ }[];
3607
+ "youtube-videos": {
3608
+ competitor: string;
3609
+ tags: string[];
3610
+ discovered_at: string | null;
2877
3611
  description?: string | null | undefined;
3612
+ title?: string | null | undefined;
3613
+ url?: string | null | undefined;
2878
3614
  posted_date?: string | null | undefined;
2879
3615
  initial_run?: boolean | null | undefined;
2880
3616
  }[];
@@ -2882,9 +3618,9 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
2882
3618
  competitor: string;
2883
3619
  tags: string[];
2884
3620
  discovered_at: string | null;
3621
+ description?: string | null | undefined;
2885
3622
  title?: string | null | undefined;
2886
3623
  url?: string | null | undefined;
2887
- description?: string | null | undefined;
2888
3624
  image_url?: string | null | undefined;
2889
3625
  initial_run?: boolean | null | undefined;
2890
3626
  location?: string | null | undefined;
@@ -2960,9 +3696,9 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
2960
3696
  competitor: string;
2961
3697
  tags: string[];
2962
3698
  discovered_at: string | null;
3699
+ description?: string | null | undefined;
2963
3700
  title?: string | null | undefined;
2964
3701
  url?: string | null | undefined;
2965
- description?: string | null | undefined;
2966
3702
  key_points?: string | null | undefined;
2967
3703
  image_url?: string | null | undefined;
2968
3704
  posted_date?: string | null | undefined;
@@ -2972,9 +3708,9 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
2972
3708
  competitor: string;
2973
3709
  tags: string[];
2974
3710
  discovered_at: string | null;
3711
+ description?: string | null | undefined;
2975
3712
  title?: string | null | undefined;
2976
3713
  url?: string | null | undefined;
2977
- description?: string | null | undefined;
2978
3714
  key_points?: string | null | undefined;
2979
3715
  image_url?: string | null | undefined;
2980
3716
  posted_date?: string | null | undefined;
@@ -2994,6 +3730,19 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
2994
3730
  added_at?: string | null | undefined;
2995
3731
  removed_at?: string | null | undefined;
2996
3732
  }[];
3733
+ ads: {
3734
+ competitor: string;
3735
+ tags: string[];
3736
+ discovered_at: string | null;
3737
+ image_url?: string | null | undefined;
3738
+ initial_run?: boolean | null | undefined;
3739
+ is_live?: boolean | null | undefined;
3740
+ added_at?: string | null | undefined;
3741
+ removed_at?: string | null | undefined;
3742
+ content?: string | null | undefined;
3743
+ platform?: string | null | undefined;
3744
+ ad_format?: string | null | undefined;
3745
+ }[];
2997
3746
  pricing: {
2998
3747
  competitor: string;
2999
3748
  tags: string[];
@@ -3008,9 +3757,9 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
3008
3757
  competitor: string;
3009
3758
  tags: string[];
3010
3759
  discovered_at: string | null;
3760
+ description?: string | null | undefined;
3011
3761
  title?: string | null | undefined;
3012
3762
  url?: string | null | undefined;
3013
- description?: string | null | undefined;
3014
3763
  key_points?: string | null | undefined;
3015
3764
  image_url?: string | null | undefined;
3016
3765
  posted_date?: string | null | undefined;
@@ -3025,13 +3774,40 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
3025
3774
  initial_run?: boolean | null | undefined;
3026
3775
  content?: string | null | undefined;
3027
3776
  }[];
3028
- "youtube-videos": {
3777
+ "x-posts": {
3778
+ competitor: string;
3779
+ tags: string[];
3780
+ discovered_at: string | null;
3781
+ name?: string | null | undefined;
3782
+ url?: string | null | undefined;
3783
+ posted_date?: string | null | undefined;
3784
+ initial_run?: boolean | null | undefined;
3785
+ content?: string | null | undefined;
3786
+ post_id?: string | null | undefined;
3787
+ external_url?: string | null | undefined;
3788
+ }[];
3789
+ reviews: {
3029
3790
  competitor: string;
3030
3791
  tags: string[];
3031
3792
  discovered_at: string | null;
3793
+ source?: string | null | undefined;
3794
+ name?: string | null | undefined;
3032
3795
  title?: string | null | undefined;
3033
3796
  url?: string | null | undefined;
3797
+ posted_date?: string | null | undefined;
3798
+ initial_run?: boolean | null | undefined;
3799
+ rating?: string | null | undefined;
3800
+ sentiment?: string | null | undefined;
3801
+ excerpt?: string | null | undefined;
3802
+ external_id?: string | null | undefined;
3803
+ }[];
3804
+ "youtube-videos": {
3805
+ competitor: string;
3806
+ tags: string[];
3807
+ discovered_at: string | null;
3034
3808
  description?: string | null | undefined;
3809
+ title?: string | null | undefined;
3810
+ url?: string | null | undefined;
3035
3811
  posted_date?: string | null | undefined;
3036
3812
  initial_run?: boolean | null | undefined;
3037
3813
  }[];
@@ -3039,9 +3815,9 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
3039
3815
  competitor: string;
3040
3816
  tags: string[];
3041
3817
  discovered_at: string | null;
3818
+ description?: string | null | undefined;
3042
3819
  title?: string | null | undefined;
3043
3820
  url?: string | null | undefined;
3044
- description?: string | null | undefined;
3045
3821
  image_url?: string | null | undefined;
3046
3822
  initial_run?: boolean | null | undefined;
3047
3823
  location?: string | null | undefined;
@@ -3101,7 +3877,7 @@ export declare const CompetitorRef: z.ZodObject<{
3101
3877
  export type CompetitorRef = z.infer<typeof CompetitorRef>;
3102
3878
  export declare const ActivityItem: z.ZodObject<{
3103
3879
  id: z.ZodString;
3104
- section: z.ZodEnum<["blog-posts", "press-posts", "job-listings", "pricing", "case-studies", "linkedin-posts", "youtube-videos", "events", "messaging", "metrics-claimed", "logos", "sitemap-urls"]>;
3880
+ section: z.ZodEnum<["blog-posts", "press-posts", "job-listings", "ads", "pricing", "case-studies", "linkedin-posts", "x-posts", "reviews", "youtube-videos", "events", "messaging", "metrics-claimed", "logos", "sitemap-urls"]>;
3105
3881
  change_type: z.ZodEnum<["added", "updated", "removed"]>;
3106
3882
  change_date: z.ZodString;
3107
3883
  competitor: z.ZodObject<{
@@ -3129,9 +3905,9 @@ export declare const ActivityItem: z.ZodObject<{
3129
3905
  competitor: string;
3130
3906
  tags: string[];
3131
3907
  discovered_at: string | null;
3908
+ description?: string | null | undefined;
3132
3909
  title?: string | null | undefined;
3133
3910
  url?: string | null | undefined;
3134
- description?: string | null | undefined;
3135
3911
  key_points?: string | null | undefined;
3136
3912
  image_url?: string | null | undefined;
3137
3913
  posted_date?: string | null | undefined;
@@ -3140,9 +3916,9 @@ export declare const ActivityItem: z.ZodObject<{
3140
3916
  competitor: string;
3141
3917
  tags: string[];
3142
3918
  discovered_at: string | null;
3919
+ description?: string | null | undefined;
3143
3920
  title?: string | null | undefined;
3144
3921
  url?: string | null | undefined;
3145
- description?: string | null | undefined;
3146
3922
  key_points?: string | null | undefined;
3147
3923
  image_url?: string | null | undefined;
3148
3924
  posted_date?: string | null | undefined;
@@ -3250,18 +4026,18 @@ export declare const ActivityItem: z.ZodObject<{
3250
4026
  competitor: string;
3251
4027
  tags: string[];
3252
4028
  discovered_at: string | null;
4029
+ description?: string | null | undefined;
3253
4030
  title?: string | null | undefined;
3254
4031
  url?: string | null | undefined;
3255
- description?: string | null | undefined;
3256
4032
  posted_date?: string | null | undefined;
3257
4033
  initial_run?: boolean | null | undefined;
3258
4034
  }, {
3259
4035
  competitor: string;
3260
4036
  tags: string[];
3261
4037
  discovered_at: string | null;
4038
+ description?: string | null | undefined;
3262
4039
  title?: string | null | undefined;
3263
4040
  url?: string | null | undefined;
3264
- description?: string | null | undefined;
3265
4041
  posted_date?: string | null | undefined;
3266
4042
  initial_run?: boolean | null | undefined;
3267
4043
  }>, z.ZodObject<{
@@ -3281,9 +4057,9 @@ export declare const ActivityItem: z.ZodObject<{
3281
4057
  competitor: string;
3282
4058
  tags: string[];
3283
4059
  discovered_at: string | null;
4060
+ description?: string | null | undefined;
3284
4061
  title?: string | null | undefined;
3285
4062
  url?: string | null | undefined;
3286
- description?: string | null | undefined;
3287
4063
  image_url?: string | null | undefined;
3288
4064
  initial_run?: boolean | null | undefined;
3289
4065
  location?: string | null | undefined;
@@ -3294,9 +4070,9 @@ export declare const ActivityItem: z.ZodObject<{
3294
4070
  competitor: string;
3295
4071
  tags: string[];
3296
4072
  discovered_at: string | null;
4073
+ description?: string | null | undefined;
3297
4074
  title?: string | null | undefined;
3298
4075
  url?: string | null | undefined;
3299
- description?: string | null | undefined;
3300
4076
  image_url?: string | null | undefined;
3301
4077
  initial_run?: boolean | null | undefined;
3302
4078
  location?: string | null | undefined;
@@ -3417,36 +4193,147 @@ export declare const ActivityItem: z.ZodObject<{
3417
4193
  discovered_at: string | null;
3418
4194
  url?: string | null | undefined;
3419
4195
  initial_run?: boolean | null | undefined;
3420
- }>]>;
3421
- }, "strip", z.ZodTypeAny, {
3422
- id: string;
3423
- data: {
4196
+ }>, z.ZodObject<{
4197
+ post_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4198
+ url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4199
+ content: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4200
+ name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4201
+ external_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4202
+ posted_date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4203
+ competitor: z.ZodString;
4204
+ tags: z.ZodArray<z.ZodString, "many">;
4205
+ discovered_at: z.ZodNullable<z.ZodString>;
4206
+ initial_run: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
4207
+ }, "strip", z.ZodTypeAny, {
3424
4208
  competitor: string;
3425
4209
  tags: string[];
3426
4210
  discovered_at: string | null;
3427
- title?: string | null | undefined;
4211
+ name?: string | null | undefined;
3428
4212
  url?: string | null | undefined;
3429
- description?: string | null | undefined;
3430
- key_points?: string | null | undefined;
3431
- image_url?: string | null | undefined;
3432
4213
  posted_date?: string | null | undefined;
3433
4214
  initial_run?: boolean | null | undefined;
3434
- } | {
4215
+ content?: string | null | undefined;
4216
+ post_id?: string | null | undefined;
4217
+ external_url?: string | null | undefined;
4218
+ }, {
3435
4219
  competitor: string;
3436
4220
  tags: string[];
3437
4221
  discovered_at: string | null;
3438
- category?: string | null | undefined;
3439
- title?: string | null | undefined;
4222
+ name?: string | null | undefined;
3440
4223
  url?: string | null | undefined;
3441
4224
  posted_date?: string | null | undefined;
3442
4225
  initial_run?: boolean | null | undefined;
3443
- location?: string | null | undefined;
3444
- is_live?: boolean | null | undefined;
3445
- added_at?: string | null | undefined;
3446
- removed_at?: string | null | undefined;
3447
- } | {
3448
- competitor: string;
3449
- tags: string[];
4226
+ content?: string | null | undefined;
4227
+ post_id?: string | null | undefined;
4228
+ external_url?: string | null | undefined;
4229
+ }>, z.ZodObject<{
4230
+ title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4231
+ rating: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4232
+ sentiment: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4233
+ url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4234
+ excerpt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4235
+ source: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4236
+ name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4237
+ external_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4238
+ posted_date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4239
+ competitor: z.ZodString;
4240
+ tags: z.ZodArray<z.ZodString, "many">;
4241
+ discovered_at: z.ZodNullable<z.ZodString>;
4242
+ initial_run: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
4243
+ }, "strip", z.ZodTypeAny, {
4244
+ competitor: string;
4245
+ tags: string[];
4246
+ discovered_at: string | null;
4247
+ source?: string | null | undefined;
4248
+ name?: string | null | undefined;
4249
+ title?: string | null | undefined;
4250
+ url?: string | null | undefined;
4251
+ posted_date?: string | null | undefined;
4252
+ initial_run?: boolean | null | undefined;
4253
+ rating?: string | null | undefined;
4254
+ sentiment?: string | null | undefined;
4255
+ excerpt?: string | null | undefined;
4256
+ external_id?: string | null | undefined;
4257
+ }, {
4258
+ competitor: string;
4259
+ tags: string[];
4260
+ discovered_at: string | null;
4261
+ source?: string | null | undefined;
4262
+ name?: string | null | undefined;
4263
+ title?: string | null | undefined;
4264
+ url?: string | null | undefined;
4265
+ posted_date?: string | null | undefined;
4266
+ initial_run?: boolean | null | undefined;
4267
+ rating?: string | null | undefined;
4268
+ sentiment?: string | null | undefined;
4269
+ excerpt?: string | null | undefined;
4270
+ external_id?: string | null | undefined;
4271
+ }>, z.ZodObject<{
4272
+ platform: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4273
+ ad_format: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4274
+ content: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4275
+ image_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4276
+ is_live: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
4277
+ added_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4278
+ removed_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4279
+ competitor: z.ZodString;
4280
+ tags: z.ZodArray<z.ZodString, "many">;
4281
+ discovered_at: z.ZodNullable<z.ZodString>;
4282
+ initial_run: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
4283
+ }, "strip", z.ZodTypeAny, {
4284
+ competitor: string;
4285
+ tags: string[];
4286
+ discovered_at: string | null;
4287
+ image_url?: string | null | undefined;
4288
+ initial_run?: boolean | null | undefined;
4289
+ is_live?: boolean | null | undefined;
4290
+ added_at?: string | null | undefined;
4291
+ removed_at?: string | null | undefined;
4292
+ content?: string | null | undefined;
4293
+ platform?: string | null | undefined;
4294
+ ad_format?: string | null | undefined;
4295
+ }, {
4296
+ competitor: string;
4297
+ tags: string[];
4298
+ discovered_at: string | null;
4299
+ image_url?: string | null | undefined;
4300
+ initial_run?: boolean | null | undefined;
4301
+ is_live?: boolean | null | undefined;
4302
+ added_at?: string | null | undefined;
4303
+ removed_at?: string | null | undefined;
4304
+ content?: string | null | undefined;
4305
+ platform?: string | null | undefined;
4306
+ ad_format?: string | null | undefined;
4307
+ }>]>;
4308
+ }, "strip", z.ZodTypeAny, {
4309
+ id: string;
4310
+ data: {
4311
+ competitor: string;
4312
+ tags: string[];
4313
+ discovered_at: string | null;
4314
+ description?: string | null | undefined;
4315
+ title?: string | null | undefined;
4316
+ url?: string | null | undefined;
4317
+ key_points?: string | null | undefined;
4318
+ image_url?: string | null | undefined;
4319
+ posted_date?: string | null | undefined;
4320
+ initial_run?: boolean | null | undefined;
4321
+ } | {
4322
+ competitor: string;
4323
+ tags: string[];
4324
+ discovered_at: string | null;
4325
+ category?: string | null | undefined;
4326
+ title?: string | null | undefined;
4327
+ url?: string | null | undefined;
4328
+ posted_date?: string | null | undefined;
4329
+ initial_run?: boolean | null | undefined;
4330
+ location?: string | null | undefined;
4331
+ is_live?: boolean | null | undefined;
4332
+ added_at?: string | null | undefined;
4333
+ removed_at?: string | null | undefined;
4334
+ } | {
4335
+ competitor: string;
4336
+ tags: string[];
3450
4337
  discovered_at: string | null;
3451
4338
  initial_run?: boolean | null | undefined;
3452
4339
  is_live?: boolean | null | undefined;
@@ -3465,18 +4352,18 @@ export declare const ActivityItem: z.ZodObject<{
3465
4352
  competitor: string;
3466
4353
  tags: string[];
3467
4354
  discovered_at: string | null;
4355
+ description?: string | null | undefined;
3468
4356
  title?: string | null | undefined;
3469
4357
  url?: string | null | undefined;
3470
- description?: string | null | undefined;
3471
4358
  posted_date?: string | null | undefined;
3472
4359
  initial_run?: boolean | null | undefined;
3473
4360
  } | {
3474
4361
  competitor: string;
3475
4362
  tags: string[];
3476
4363
  discovered_at: string | null;
4364
+ description?: string | null | undefined;
3477
4365
  title?: string | null | undefined;
3478
4366
  url?: string | null | undefined;
3479
- description?: string | null | undefined;
3480
4367
  image_url?: string | null | undefined;
3481
4368
  initial_run?: boolean | null | undefined;
3482
4369
  location?: string | null | undefined;
@@ -3521,12 +4408,49 @@ export declare const ActivityItem: z.ZodObject<{
3521
4408
  discovered_at: string | null;
3522
4409
  url?: string | null | undefined;
3523
4410
  initial_run?: boolean | null | undefined;
4411
+ } | {
4412
+ competitor: string;
4413
+ tags: string[];
4414
+ discovered_at: string | null;
4415
+ name?: string | null | undefined;
4416
+ url?: string | null | undefined;
4417
+ posted_date?: string | null | undefined;
4418
+ initial_run?: boolean | null | undefined;
4419
+ content?: string | null | undefined;
4420
+ post_id?: string | null | undefined;
4421
+ external_url?: string | null | undefined;
4422
+ } | {
4423
+ competitor: string;
4424
+ tags: string[];
4425
+ discovered_at: string | null;
4426
+ source?: string | null | undefined;
4427
+ name?: string | null | undefined;
4428
+ title?: string | null | undefined;
4429
+ url?: string | null | undefined;
4430
+ posted_date?: string | null | undefined;
4431
+ initial_run?: boolean | null | undefined;
4432
+ rating?: string | null | undefined;
4433
+ sentiment?: string | null | undefined;
4434
+ excerpt?: string | null | undefined;
4435
+ external_id?: string | null | undefined;
4436
+ } | {
4437
+ competitor: string;
4438
+ tags: string[];
4439
+ discovered_at: string | null;
4440
+ image_url?: string | null | undefined;
4441
+ initial_run?: boolean | null | undefined;
4442
+ is_live?: boolean | null | undefined;
4443
+ added_at?: string | null | undefined;
4444
+ removed_at?: string | null | undefined;
4445
+ content?: string | null | undefined;
4446
+ platform?: string | null | undefined;
4447
+ ad_format?: string | null | undefined;
3524
4448
  };
3525
4449
  competitor: {
3526
4450
  id: string;
3527
4451
  name: string | null;
3528
4452
  };
3529
- section: "blog-posts" | "press-posts" | "job-listings" | "pricing" | "case-studies" | "linkedin-posts" | "youtube-videos" | "events" | "messaging" | "metrics-claimed" | "logos" | "sitemap-urls";
4453
+ section: "blog-posts" | "press-posts" | "job-listings" | "ads" | "pricing" | "case-studies" | "linkedin-posts" | "x-posts" | "reviews" | "youtube-videos" | "events" | "messaging" | "metrics-claimed" | "logos" | "sitemap-urls";
3530
4454
  change_type: "added" | "updated" | "removed";
3531
4455
  change_date: string;
3532
4456
  }, {
@@ -3535,9 +4459,9 @@ export declare const ActivityItem: z.ZodObject<{
3535
4459
  competitor: string;
3536
4460
  tags: string[];
3537
4461
  discovered_at: string | null;
4462
+ description?: string | null | undefined;
3538
4463
  title?: string | null | undefined;
3539
4464
  url?: string | null | undefined;
3540
- description?: string | null | undefined;
3541
4465
  key_points?: string | null | undefined;
3542
4466
  image_url?: string | null | undefined;
3543
4467
  posted_date?: string | null | undefined;
@@ -3576,18 +4500,18 @@ export declare const ActivityItem: z.ZodObject<{
3576
4500
  competitor: string;
3577
4501
  tags: string[];
3578
4502
  discovered_at: string | null;
4503
+ description?: string | null | undefined;
3579
4504
  title?: string | null | undefined;
3580
4505
  url?: string | null | undefined;
3581
- description?: string | null | undefined;
3582
4506
  posted_date?: string | null | undefined;
3583
4507
  initial_run?: boolean | null | undefined;
3584
4508
  } | {
3585
4509
  competitor: string;
3586
4510
  tags: string[];
3587
4511
  discovered_at: string | null;
4512
+ description?: string | null | undefined;
3588
4513
  title?: string | null | undefined;
3589
4514
  url?: string | null | undefined;
3590
- description?: string | null | undefined;
3591
4515
  image_url?: string | null | undefined;
3592
4516
  initial_run?: boolean | null | undefined;
3593
4517
  location?: string | null | undefined;
@@ -3632,12 +4556,49 @@ export declare const ActivityItem: z.ZodObject<{
3632
4556
  discovered_at: string | null;
3633
4557
  url?: string | null | undefined;
3634
4558
  initial_run?: boolean | null | undefined;
4559
+ } | {
4560
+ competitor: string;
4561
+ tags: string[];
4562
+ discovered_at: string | null;
4563
+ name?: string | null | undefined;
4564
+ url?: string | null | undefined;
4565
+ posted_date?: string | null | undefined;
4566
+ initial_run?: boolean | null | undefined;
4567
+ content?: string | null | undefined;
4568
+ post_id?: string | null | undefined;
4569
+ external_url?: string | null | undefined;
4570
+ } | {
4571
+ competitor: string;
4572
+ tags: string[];
4573
+ discovered_at: string | null;
4574
+ source?: string | null | undefined;
4575
+ name?: string | null | undefined;
4576
+ title?: string | null | undefined;
4577
+ url?: string | null | undefined;
4578
+ posted_date?: string | null | undefined;
4579
+ initial_run?: boolean | null | undefined;
4580
+ rating?: string | null | undefined;
4581
+ sentiment?: string | null | undefined;
4582
+ excerpt?: string | null | undefined;
4583
+ external_id?: string | null | undefined;
4584
+ } | {
4585
+ competitor: string;
4586
+ tags: string[];
4587
+ discovered_at: string | null;
4588
+ image_url?: string | null | undefined;
4589
+ initial_run?: boolean | null | undefined;
4590
+ is_live?: boolean | null | undefined;
4591
+ added_at?: string | null | undefined;
4592
+ removed_at?: string | null | undefined;
4593
+ content?: string | null | undefined;
4594
+ platform?: string | null | undefined;
4595
+ ad_format?: string | null | undefined;
3635
4596
  };
3636
4597
  competitor: {
3637
4598
  id: string;
3638
4599
  name: string | null;
3639
4600
  };
3640
- section: "blog-posts" | "press-posts" | "job-listings" | "pricing" | "case-studies" | "linkedin-posts" | "youtube-videos" | "events" | "messaging" | "metrics-claimed" | "logos" | "sitemap-urls";
4601
+ section: "blog-posts" | "press-posts" | "job-listings" | "ads" | "pricing" | "case-studies" | "linkedin-posts" | "x-posts" | "reviews" | "youtube-videos" | "events" | "messaging" | "metrics-claimed" | "logos" | "sitemap-urls";
3641
4602
  change_type: "added" | "updated" | "removed";
3642
4603
  change_date: string;
3643
4604
  }>;
@@ -3645,7 +4606,7 @@ export type ActivityItem = z.infer<typeof ActivityItem>;
3645
4606
  export declare const ActivityListResponse: z.ZodObject<{
3646
4607
  data: z.ZodArray<z.ZodObject<{
3647
4608
  id: z.ZodString;
3648
- section: z.ZodEnum<["blog-posts", "press-posts", "job-listings", "pricing", "case-studies", "linkedin-posts", "youtube-videos", "events", "messaging", "metrics-claimed", "logos", "sitemap-urls"]>;
4609
+ section: z.ZodEnum<["blog-posts", "press-posts", "job-listings", "ads", "pricing", "case-studies", "linkedin-posts", "x-posts", "reviews", "youtube-videos", "events", "messaging", "metrics-claimed", "logos", "sitemap-urls"]>;
3649
4610
  change_type: z.ZodEnum<["added", "updated", "removed"]>;
3650
4611
  change_date: z.ZodString;
3651
4612
  competitor: z.ZodObject<{
@@ -3673,9 +4634,9 @@ export declare const ActivityListResponse: z.ZodObject<{
3673
4634
  competitor: string;
3674
4635
  tags: string[];
3675
4636
  discovered_at: string | null;
4637
+ description?: string | null | undefined;
3676
4638
  title?: string | null | undefined;
3677
4639
  url?: string | null | undefined;
3678
- description?: string | null | undefined;
3679
4640
  key_points?: string | null | undefined;
3680
4641
  image_url?: string | null | undefined;
3681
4642
  posted_date?: string | null | undefined;
@@ -3684,9 +4645,9 @@ export declare const ActivityListResponse: z.ZodObject<{
3684
4645
  competitor: string;
3685
4646
  tags: string[];
3686
4647
  discovered_at: string | null;
4648
+ description?: string | null | undefined;
3687
4649
  title?: string | null | undefined;
3688
4650
  url?: string | null | undefined;
3689
- description?: string | null | undefined;
3690
4651
  key_points?: string | null | undefined;
3691
4652
  image_url?: string | null | undefined;
3692
4653
  posted_date?: string | null | undefined;
@@ -3794,18 +4755,18 @@ export declare const ActivityListResponse: z.ZodObject<{
3794
4755
  competitor: string;
3795
4756
  tags: string[];
3796
4757
  discovered_at: string | null;
4758
+ description?: string | null | undefined;
3797
4759
  title?: string | null | undefined;
3798
4760
  url?: string | null | undefined;
3799
- description?: string | null | undefined;
3800
4761
  posted_date?: string | null | undefined;
3801
4762
  initial_run?: boolean | null | undefined;
3802
4763
  }, {
3803
4764
  competitor: string;
3804
4765
  tags: string[];
3805
4766
  discovered_at: string | null;
4767
+ description?: string | null | undefined;
3806
4768
  title?: string | null | undefined;
3807
4769
  url?: string | null | undefined;
3808
- description?: string | null | undefined;
3809
4770
  posted_date?: string | null | undefined;
3810
4771
  initial_run?: boolean | null | undefined;
3811
4772
  }>, z.ZodObject<{
@@ -3825,9 +4786,9 @@ export declare const ActivityListResponse: z.ZodObject<{
3825
4786
  competitor: string;
3826
4787
  tags: string[];
3827
4788
  discovered_at: string | null;
4789
+ description?: string | null | undefined;
3828
4790
  title?: string | null | undefined;
3829
4791
  url?: string | null | undefined;
3830
- description?: string | null | undefined;
3831
4792
  image_url?: string | null | undefined;
3832
4793
  initial_run?: boolean | null | undefined;
3833
4794
  location?: string | null | undefined;
@@ -3838,9 +4799,9 @@ export declare const ActivityListResponse: z.ZodObject<{
3838
4799
  competitor: string;
3839
4800
  tags: string[];
3840
4801
  discovered_at: string | null;
4802
+ description?: string | null | undefined;
3841
4803
  title?: string | null | undefined;
3842
4804
  url?: string | null | undefined;
3843
- description?: string | null | undefined;
3844
4805
  image_url?: string | null | undefined;
3845
4806
  initial_run?: boolean | null | undefined;
3846
4807
  location?: string | null | undefined;
@@ -3961,6 +4922,117 @@ export declare const ActivityListResponse: z.ZodObject<{
3961
4922
  discovered_at: string | null;
3962
4923
  url?: string | null | undefined;
3963
4924
  initial_run?: boolean | null | undefined;
4925
+ }>, z.ZodObject<{
4926
+ post_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4927
+ url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4928
+ content: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4929
+ name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4930
+ external_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4931
+ posted_date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4932
+ competitor: z.ZodString;
4933
+ tags: z.ZodArray<z.ZodString, "many">;
4934
+ discovered_at: z.ZodNullable<z.ZodString>;
4935
+ initial_run: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
4936
+ }, "strip", z.ZodTypeAny, {
4937
+ competitor: string;
4938
+ tags: string[];
4939
+ discovered_at: string | null;
4940
+ name?: string | null | undefined;
4941
+ url?: string | null | undefined;
4942
+ posted_date?: string | null | undefined;
4943
+ initial_run?: boolean | null | undefined;
4944
+ content?: string | null | undefined;
4945
+ post_id?: string | null | undefined;
4946
+ external_url?: string | null | undefined;
4947
+ }, {
4948
+ competitor: string;
4949
+ tags: string[];
4950
+ discovered_at: string | null;
4951
+ name?: string | null | undefined;
4952
+ url?: string | null | undefined;
4953
+ posted_date?: string | null | undefined;
4954
+ initial_run?: boolean | null | undefined;
4955
+ content?: string | null | undefined;
4956
+ post_id?: string | null | undefined;
4957
+ external_url?: string | null | undefined;
4958
+ }>, z.ZodObject<{
4959
+ title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4960
+ rating: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4961
+ sentiment: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4962
+ url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4963
+ excerpt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4964
+ source: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4965
+ name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4966
+ external_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4967
+ posted_date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4968
+ competitor: z.ZodString;
4969
+ tags: z.ZodArray<z.ZodString, "many">;
4970
+ discovered_at: z.ZodNullable<z.ZodString>;
4971
+ initial_run: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
4972
+ }, "strip", z.ZodTypeAny, {
4973
+ competitor: string;
4974
+ tags: string[];
4975
+ discovered_at: string | null;
4976
+ source?: string | null | undefined;
4977
+ name?: string | null | undefined;
4978
+ title?: string | null | undefined;
4979
+ url?: string | null | undefined;
4980
+ posted_date?: string | null | undefined;
4981
+ initial_run?: boolean | null | undefined;
4982
+ rating?: string | null | undefined;
4983
+ sentiment?: string | null | undefined;
4984
+ excerpt?: string | null | undefined;
4985
+ external_id?: string | null | undefined;
4986
+ }, {
4987
+ competitor: string;
4988
+ tags: string[];
4989
+ discovered_at: string | null;
4990
+ source?: string | null | undefined;
4991
+ name?: string | null | undefined;
4992
+ title?: string | null | undefined;
4993
+ url?: string | null | undefined;
4994
+ posted_date?: string | null | undefined;
4995
+ initial_run?: boolean | null | undefined;
4996
+ rating?: string | null | undefined;
4997
+ sentiment?: string | null | undefined;
4998
+ excerpt?: string | null | undefined;
4999
+ external_id?: string | null | undefined;
5000
+ }>, z.ZodObject<{
5001
+ platform: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5002
+ ad_format: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5003
+ content: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5004
+ image_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5005
+ is_live: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
5006
+ added_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5007
+ removed_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5008
+ competitor: z.ZodString;
5009
+ tags: z.ZodArray<z.ZodString, "many">;
5010
+ discovered_at: z.ZodNullable<z.ZodString>;
5011
+ initial_run: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
5012
+ }, "strip", z.ZodTypeAny, {
5013
+ competitor: string;
5014
+ tags: string[];
5015
+ discovered_at: string | null;
5016
+ image_url?: string | null | undefined;
5017
+ initial_run?: boolean | null | undefined;
5018
+ is_live?: boolean | null | undefined;
5019
+ added_at?: string | null | undefined;
5020
+ removed_at?: string | null | undefined;
5021
+ content?: string | null | undefined;
5022
+ platform?: string | null | undefined;
5023
+ ad_format?: string | null | undefined;
5024
+ }, {
5025
+ competitor: string;
5026
+ tags: string[];
5027
+ discovered_at: string | null;
5028
+ image_url?: string | null | undefined;
5029
+ initial_run?: boolean | null | undefined;
5030
+ is_live?: boolean | null | undefined;
5031
+ added_at?: string | null | undefined;
5032
+ removed_at?: string | null | undefined;
5033
+ content?: string | null | undefined;
5034
+ platform?: string | null | undefined;
5035
+ ad_format?: string | null | undefined;
3964
5036
  }>]>;
3965
5037
  }, "strip", z.ZodTypeAny, {
3966
5038
  id: string;
@@ -3968,9 +5040,9 @@ export declare const ActivityListResponse: z.ZodObject<{
3968
5040
  competitor: string;
3969
5041
  tags: string[];
3970
5042
  discovered_at: string | null;
5043
+ description?: string | null | undefined;
3971
5044
  title?: string | null | undefined;
3972
5045
  url?: string | null | undefined;
3973
- description?: string | null | undefined;
3974
5046
  key_points?: string | null | undefined;
3975
5047
  image_url?: string | null | undefined;
3976
5048
  posted_date?: string | null | undefined;
@@ -4009,18 +5081,18 @@ export declare const ActivityListResponse: z.ZodObject<{
4009
5081
  competitor: string;
4010
5082
  tags: string[];
4011
5083
  discovered_at: string | null;
5084
+ description?: string | null | undefined;
4012
5085
  title?: string | null | undefined;
4013
5086
  url?: string | null | undefined;
4014
- description?: string | null | undefined;
4015
5087
  posted_date?: string | null | undefined;
4016
5088
  initial_run?: boolean | null | undefined;
4017
5089
  } | {
4018
5090
  competitor: string;
4019
5091
  tags: string[];
4020
5092
  discovered_at: string | null;
5093
+ description?: string | null | undefined;
4021
5094
  title?: string | null | undefined;
4022
5095
  url?: string | null | undefined;
4023
- description?: string | null | undefined;
4024
5096
  image_url?: string | null | undefined;
4025
5097
  initial_run?: boolean | null | undefined;
4026
5098
  location?: string | null | undefined;
@@ -4065,12 +5137,49 @@ export declare const ActivityListResponse: z.ZodObject<{
4065
5137
  discovered_at: string | null;
4066
5138
  url?: string | null | undefined;
4067
5139
  initial_run?: boolean | null | undefined;
5140
+ } | {
5141
+ competitor: string;
5142
+ tags: string[];
5143
+ discovered_at: string | null;
5144
+ name?: string | null | undefined;
5145
+ url?: string | null | undefined;
5146
+ posted_date?: string | null | undefined;
5147
+ initial_run?: boolean | null | undefined;
5148
+ content?: string | null | undefined;
5149
+ post_id?: string | null | undefined;
5150
+ external_url?: string | null | undefined;
5151
+ } | {
5152
+ competitor: string;
5153
+ tags: string[];
5154
+ discovered_at: string | null;
5155
+ source?: string | null | undefined;
5156
+ name?: string | null | undefined;
5157
+ title?: string | null | undefined;
5158
+ url?: string | null | undefined;
5159
+ posted_date?: string | null | undefined;
5160
+ initial_run?: boolean | null | undefined;
5161
+ rating?: string | null | undefined;
5162
+ sentiment?: string | null | undefined;
5163
+ excerpt?: string | null | undefined;
5164
+ external_id?: string | null | undefined;
5165
+ } | {
5166
+ competitor: string;
5167
+ tags: string[];
5168
+ discovered_at: string | null;
5169
+ image_url?: string | null | undefined;
5170
+ initial_run?: boolean | null | undefined;
5171
+ is_live?: boolean | null | undefined;
5172
+ added_at?: string | null | undefined;
5173
+ removed_at?: string | null | undefined;
5174
+ content?: string | null | undefined;
5175
+ platform?: string | null | undefined;
5176
+ ad_format?: string | null | undefined;
4068
5177
  };
4069
5178
  competitor: {
4070
5179
  id: string;
4071
5180
  name: string | null;
4072
5181
  };
4073
- section: "blog-posts" | "press-posts" | "job-listings" | "pricing" | "case-studies" | "linkedin-posts" | "youtube-videos" | "events" | "messaging" | "metrics-claimed" | "logos" | "sitemap-urls";
5182
+ section: "blog-posts" | "press-posts" | "job-listings" | "ads" | "pricing" | "case-studies" | "linkedin-posts" | "x-posts" | "reviews" | "youtube-videos" | "events" | "messaging" | "metrics-claimed" | "logos" | "sitemap-urls";
4074
5183
  change_type: "added" | "updated" | "removed";
4075
5184
  change_date: string;
4076
5185
  }, {
@@ -4079,9 +5188,9 @@ export declare const ActivityListResponse: z.ZodObject<{
4079
5188
  competitor: string;
4080
5189
  tags: string[];
4081
5190
  discovered_at: string | null;
5191
+ description?: string | null | undefined;
4082
5192
  title?: string | null | undefined;
4083
5193
  url?: string | null | undefined;
4084
- description?: string | null | undefined;
4085
5194
  key_points?: string | null | undefined;
4086
5195
  image_url?: string | null | undefined;
4087
5196
  posted_date?: string | null | undefined;
@@ -4120,18 +5229,18 @@ export declare const ActivityListResponse: z.ZodObject<{
4120
5229
  competitor: string;
4121
5230
  tags: string[];
4122
5231
  discovered_at: string | null;
5232
+ description?: string | null | undefined;
4123
5233
  title?: string | null | undefined;
4124
5234
  url?: string | null | undefined;
4125
- description?: string | null | undefined;
4126
5235
  posted_date?: string | null | undefined;
4127
5236
  initial_run?: boolean | null | undefined;
4128
5237
  } | {
4129
5238
  competitor: string;
4130
5239
  tags: string[];
4131
5240
  discovered_at: string | null;
5241
+ description?: string | null | undefined;
4132
5242
  title?: string | null | undefined;
4133
5243
  url?: string | null | undefined;
4134
- description?: string | null | undefined;
4135
5244
  image_url?: string | null | undefined;
4136
5245
  initial_run?: boolean | null | undefined;
4137
5246
  location?: string | null | undefined;
@@ -4176,12 +5285,49 @@ export declare const ActivityListResponse: z.ZodObject<{
4176
5285
  discovered_at: string | null;
4177
5286
  url?: string | null | undefined;
4178
5287
  initial_run?: boolean | null | undefined;
5288
+ } | {
5289
+ competitor: string;
5290
+ tags: string[];
5291
+ discovered_at: string | null;
5292
+ name?: string | null | undefined;
5293
+ url?: string | null | undefined;
5294
+ posted_date?: string | null | undefined;
5295
+ initial_run?: boolean | null | undefined;
5296
+ content?: string | null | undefined;
5297
+ post_id?: string | null | undefined;
5298
+ external_url?: string | null | undefined;
5299
+ } | {
5300
+ competitor: string;
5301
+ tags: string[];
5302
+ discovered_at: string | null;
5303
+ source?: string | null | undefined;
5304
+ name?: string | null | undefined;
5305
+ title?: string | null | undefined;
5306
+ url?: string | null | undefined;
5307
+ posted_date?: string | null | undefined;
5308
+ initial_run?: boolean | null | undefined;
5309
+ rating?: string | null | undefined;
5310
+ sentiment?: string | null | undefined;
5311
+ excerpt?: string | null | undefined;
5312
+ external_id?: string | null | undefined;
5313
+ } | {
5314
+ competitor: string;
5315
+ tags: string[];
5316
+ discovered_at: string | null;
5317
+ image_url?: string | null | undefined;
5318
+ initial_run?: boolean | null | undefined;
5319
+ is_live?: boolean | null | undefined;
5320
+ added_at?: string | null | undefined;
5321
+ removed_at?: string | null | undefined;
5322
+ content?: string | null | undefined;
5323
+ platform?: string | null | undefined;
5324
+ ad_format?: string | null | undefined;
4179
5325
  };
4180
5326
  competitor: {
4181
5327
  id: string;
4182
5328
  name: string | null;
4183
5329
  };
4184
- section: "blog-posts" | "press-posts" | "job-listings" | "pricing" | "case-studies" | "linkedin-posts" | "youtube-videos" | "events" | "messaging" | "metrics-claimed" | "logos" | "sitemap-urls";
5330
+ section: "blog-posts" | "press-posts" | "job-listings" | "ads" | "pricing" | "case-studies" | "linkedin-posts" | "x-posts" | "reviews" | "youtube-videos" | "events" | "messaging" | "metrics-claimed" | "logos" | "sitemap-urls";
4185
5331
  change_type: "added" | "updated" | "removed";
4186
5332
  change_date: string;
4187
5333
  }>, "many">;
@@ -4206,9 +5352,9 @@ export declare const ActivityListResponse: z.ZodObject<{
4206
5352
  competitor: string;
4207
5353
  tags: string[];
4208
5354
  discovered_at: string | null;
5355
+ description?: string | null | undefined;
4209
5356
  title?: string | null | undefined;
4210
5357
  url?: string | null | undefined;
4211
- description?: string | null | undefined;
4212
5358
  key_points?: string | null | undefined;
4213
5359
  image_url?: string | null | undefined;
4214
5360
  posted_date?: string | null | undefined;
@@ -4247,18 +5393,18 @@ export declare const ActivityListResponse: z.ZodObject<{
4247
5393
  competitor: string;
4248
5394
  tags: string[];
4249
5395
  discovered_at: string | null;
5396
+ description?: string | null | undefined;
4250
5397
  title?: string | null | undefined;
4251
5398
  url?: string | null | undefined;
4252
- description?: string | null | undefined;
4253
5399
  posted_date?: string | null | undefined;
4254
5400
  initial_run?: boolean | null | undefined;
4255
5401
  } | {
4256
5402
  competitor: string;
4257
5403
  tags: string[];
4258
5404
  discovered_at: string | null;
5405
+ description?: string | null | undefined;
4259
5406
  title?: string | null | undefined;
4260
5407
  url?: string | null | undefined;
4261
- description?: string | null | undefined;
4262
5408
  image_url?: string | null | undefined;
4263
5409
  initial_run?: boolean | null | undefined;
4264
5410
  location?: string | null | undefined;
@@ -4303,12 +5449,49 @@ export declare const ActivityListResponse: z.ZodObject<{
4303
5449
  discovered_at: string | null;
4304
5450
  url?: string | null | undefined;
4305
5451
  initial_run?: boolean | null | undefined;
5452
+ } | {
5453
+ competitor: string;
5454
+ tags: string[];
5455
+ discovered_at: string | null;
5456
+ name?: string | null | undefined;
5457
+ url?: string | null | undefined;
5458
+ posted_date?: string | null | undefined;
5459
+ initial_run?: boolean | null | undefined;
5460
+ content?: string | null | undefined;
5461
+ post_id?: string | null | undefined;
5462
+ external_url?: string | null | undefined;
5463
+ } | {
5464
+ competitor: string;
5465
+ tags: string[];
5466
+ discovered_at: string | null;
5467
+ source?: string | null | undefined;
5468
+ name?: string | null | undefined;
5469
+ title?: string | null | undefined;
5470
+ url?: string | null | undefined;
5471
+ posted_date?: string | null | undefined;
5472
+ initial_run?: boolean | null | undefined;
5473
+ rating?: string | null | undefined;
5474
+ sentiment?: string | null | undefined;
5475
+ excerpt?: string | null | undefined;
5476
+ external_id?: string | null | undefined;
5477
+ } | {
5478
+ competitor: string;
5479
+ tags: string[];
5480
+ discovered_at: string | null;
5481
+ image_url?: string | null | undefined;
5482
+ initial_run?: boolean | null | undefined;
5483
+ is_live?: boolean | null | undefined;
5484
+ added_at?: string | null | undefined;
5485
+ removed_at?: string | null | undefined;
5486
+ content?: string | null | undefined;
5487
+ platform?: string | null | undefined;
5488
+ ad_format?: string | null | undefined;
4306
5489
  };
4307
5490
  competitor: {
4308
5491
  id: string;
4309
5492
  name: string | null;
4310
5493
  };
4311
- section: "blog-posts" | "press-posts" | "job-listings" | "pricing" | "case-studies" | "linkedin-posts" | "youtube-videos" | "events" | "messaging" | "metrics-claimed" | "logos" | "sitemap-urls";
5494
+ section: "blog-posts" | "press-posts" | "job-listings" | "ads" | "pricing" | "case-studies" | "linkedin-posts" | "x-posts" | "reviews" | "youtube-videos" | "events" | "messaging" | "metrics-claimed" | "logos" | "sitemap-urls";
4312
5495
  change_type: "added" | "updated" | "removed";
4313
5496
  change_date: string;
4314
5497
  }[];
@@ -4324,9 +5507,9 @@ export declare const ActivityListResponse: z.ZodObject<{
4324
5507
  competitor: string;
4325
5508
  tags: string[];
4326
5509
  discovered_at: string | null;
5510
+ description?: string | null | undefined;
4327
5511
  title?: string | null | undefined;
4328
5512
  url?: string | null | undefined;
4329
- description?: string | null | undefined;
4330
5513
  key_points?: string | null | undefined;
4331
5514
  image_url?: string | null | undefined;
4332
5515
  posted_date?: string | null | undefined;
@@ -4365,18 +5548,18 @@ export declare const ActivityListResponse: z.ZodObject<{
4365
5548
  competitor: string;
4366
5549
  tags: string[];
4367
5550
  discovered_at: string | null;
5551
+ description?: string | null | undefined;
4368
5552
  title?: string | null | undefined;
4369
5553
  url?: string | null | undefined;
4370
- description?: string | null | undefined;
4371
5554
  posted_date?: string | null | undefined;
4372
5555
  initial_run?: boolean | null | undefined;
4373
5556
  } | {
4374
5557
  competitor: string;
4375
5558
  tags: string[];
4376
5559
  discovered_at: string | null;
5560
+ description?: string | null | undefined;
4377
5561
  title?: string | null | undefined;
4378
5562
  url?: string | null | undefined;
4379
- description?: string | null | undefined;
4380
5563
  image_url?: string | null | undefined;
4381
5564
  initial_run?: boolean | null | undefined;
4382
5565
  location?: string | null | undefined;
@@ -4399,34 +5582,71 @@ export declare const ActivityListResponse: z.ZodObject<{
4399
5582
  tags: string[];
4400
5583
  discovered_at: string | null;
4401
5584
  initial_run?: boolean | null | undefined;
4402
- is_live?: boolean | null | undefined;
4403
- added_at?: string | null | undefined;
4404
- removed_at?: string | null | undefined;
4405
- metric?: string | null | undefined;
4406
- context_brand?: string | null | undefined;
5585
+ is_live?: boolean | null | undefined;
5586
+ added_at?: string | null | undefined;
5587
+ removed_at?: string | null | undefined;
5588
+ metric?: string | null | undefined;
5589
+ context_brand?: string | null | undefined;
5590
+ } | {
5591
+ competitor: string;
5592
+ tags: string[];
5593
+ discovered_at: string | null;
5594
+ name?: string | null | undefined;
5595
+ image_url?: string | null | undefined;
5596
+ initial_run?: boolean | null | undefined;
5597
+ is_live?: boolean | null | undefined;
5598
+ added_at?: string | null | undefined;
5599
+ removed_at?: string | null | undefined;
5600
+ logo_url?: string | null | undefined;
5601
+ } | {
5602
+ competitor: string;
5603
+ tags: string[];
5604
+ discovered_at: string | null;
5605
+ url?: string | null | undefined;
5606
+ initial_run?: boolean | null | undefined;
5607
+ } | {
5608
+ competitor: string;
5609
+ tags: string[];
5610
+ discovered_at: string | null;
5611
+ name?: string | null | undefined;
5612
+ url?: string | null | undefined;
5613
+ posted_date?: string | null | undefined;
5614
+ initial_run?: boolean | null | undefined;
5615
+ content?: string | null | undefined;
5616
+ post_id?: string | null | undefined;
5617
+ external_url?: string | null | undefined;
4407
5618
  } | {
4408
5619
  competitor: string;
4409
5620
  tags: string[];
4410
5621
  discovered_at: string | null;
5622
+ source?: string | null | undefined;
4411
5623
  name?: string | null | undefined;
4412
- image_url?: string | null | undefined;
5624
+ title?: string | null | undefined;
5625
+ url?: string | null | undefined;
5626
+ posted_date?: string | null | undefined;
4413
5627
  initial_run?: boolean | null | undefined;
4414
- is_live?: boolean | null | undefined;
4415
- added_at?: string | null | undefined;
4416
- removed_at?: string | null | undefined;
4417
- logo_url?: string | null | undefined;
5628
+ rating?: string | null | undefined;
5629
+ sentiment?: string | null | undefined;
5630
+ excerpt?: string | null | undefined;
5631
+ external_id?: string | null | undefined;
4418
5632
  } | {
4419
5633
  competitor: string;
4420
5634
  tags: string[];
4421
5635
  discovered_at: string | null;
4422
- url?: string | null | undefined;
5636
+ image_url?: string | null | undefined;
4423
5637
  initial_run?: boolean | null | undefined;
5638
+ is_live?: boolean | null | undefined;
5639
+ added_at?: string | null | undefined;
5640
+ removed_at?: string | null | undefined;
5641
+ content?: string | null | undefined;
5642
+ platform?: string | null | undefined;
5643
+ ad_format?: string | null | undefined;
4424
5644
  };
4425
5645
  competitor: {
4426
5646
  id: string;
4427
5647
  name: string | null;
4428
5648
  };
4429
- section: "blog-posts" | "press-posts" | "job-listings" | "pricing" | "case-studies" | "linkedin-posts" | "youtube-videos" | "events" | "messaging" | "metrics-claimed" | "logos" | "sitemap-urls";
5649
+ section: "blog-posts" | "press-posts" | "job-listings" | "ads" | "pricing" | "case-studies" | "linkedin-posts" | "x-posts" | "reviews" | "youtube-videos" | "events" | "messaging" | "metrics-claimed" | "logos" | "sitemap-urls";
4430
5650
  change_type: "added" | "updated" | "removed";
4431
5651
  change_date: string;
4432
5652
  }[];
@@ -4440,7 +5660,7 @@ export type ActivityListResponse = z.infer<typeof ActivityListResponse>;
4440
5660
  export declare const ActivityDetailResponse: z.ZodObject<{
4441
5661
  data: z.ZodObject<{
4442
5662
  id: z.ZodString;
4443
- section: z.ZodEnum<["blog-posts", "press-posts", "job-listings", "pricing", "case-studies", "linkedin-posts", "youtube-videos", "events", "messaging", "metrics-claimed", "logos", "sitemap-urls"]>;
5663
+ section: z.ZodEnum<["blog-posts", "press-posts", "job-listings", "ads", "pricing", "case-studies", "linkedin-posts", "x-posts", "reviews", "youtube-videos", "events", "messaging", "metrics-claimed", "logos", "sitemap-urls"]>;
4444
5664
  competitor: z.ZodObject<{
4445
5665
  id: z.ZodString;
4446
5666
  name: z.ZodNullable<z.ZodString>;
@@ -4466,9 +5686,9 @@ export declare const ActivityDetailResponse: z.ZodObject<{
4466
5686
  competitor: string;
4467
5687
  tags: string[];
4468
5688
  discovered_at: string | null;
5689
+ description?: string | null | undefined;
4469
5690
  title?: string | null | undefined;
4470
5691
  url?: string | null | undefined;
4471
- description?: string | null | undefined;
4472
5692
  key_points?: string | null | undefined;
4473
5693
  image_url?: string | null | undefined;
4474
5694
  posted_date?: string | null | undefined;
@@ -4477,9 +5697,9 @@ export declare const ActivityDetailResponse: z.ZodObject<{
4477
5697
  competitor: string;
4478
5698
  tags: string[];
4479
5699
  discovered_at: string | null;
5700
+ description?: string | null | undefined;
4480
5701
  title?: string | null | undefined;
4481
5702
  url?: string | null | undefined;
4482
- description?: string | null | undefined;
4483
5703
  key_points?: string | null | undefined;
4484
5704
  image_url?: string | null | undefined;
4485
5705
  posted_date?: string | null | undefined;
@@ -4587,18 +5807,18 @@ export declare const ActivityDetailResponse: z.ZodObject<{
4587
5807
  competitor: string;
4588
5808
  tags: string[];
4589
5809
  discovered_at: string | null;
5810
+ description?: string | null | undefined;
4590
5811
  title?: string | null | undefined;
4591
5812
  url?: string | null | undefined;
4592
- description?: string | null | undefined;
4593
5813
  posted_date?: string | null | undefined;
4594
5814
  initial_run?: boolean | null | undefined;
4595
5815
  }, {
4596
5816
  competitor: string;
4597
5817
  tags: string[];
4598
5818
  discovered_at: string | null;
5819
+ description?: string | null | undefined;
4599
5820
  title?: string | null | undefined;
4600
5821
  url?: string | null | undefined;
4601
- description?: string | null | undefined;
4602
5822
  posted_date?: string | null | undefined;
4603
5823
  initial_run?: boolean | null | undefined;
4604
5824
  }>, z.ZodObject<{
@@ -4618,9 +5838,9 @@ export declare const ActivityDetailResponse: z.ZodObject<{
4618
5838
  competitor: string;
4619
5839
  tags: string[];
4620
5840
  discovered_at: string | null;
5841
+ description?: string | null | undefined;
4621
5842
  title?: string | null | undefined;
4622
5843
  url?: string | null | undefined;
4623
- description?: string | null | undefined;
4624
5844
  image_url?: string | null | undefined;
4625
5845
  initial_run?: boolean | null | undefined;
4626
5846
  location?: string | null | undefined;
@@ -4631,9 +5851,9 @@ export declare const ActivityDetailResponse: z.ZodObject<{
4631
5851
  competitor: string;
4632
5852
  tags: string[];
4633
5853
  discovered_at: string | null;
5854
+ description?: string | null | undefined;
4634
5855
  title?: string | null | undefined;
4635
5856
  url?: string | null | undefined;
4636
- description?: string | null | undefined;
4637
5857
  image_url?: string | null | undefined;
4638
5858
  initial_run?: boolean | null | undefined;
4639
5859
  location?: string | null | undefined;
@@ -4754,15 +5974,126 @@ export declare const ActivityDetailResponse: z.ZodObject<{
4754
5974
  discovered_at: string | null;
4755
5975
  url?: string | null | undefined;
4756
5976
  initial_run?: boolean | null | undefined;
5977
+ }>, z.ZodObject<{
5978
+ post_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5979
+ url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5980
+ content: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5981
+ name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5982
+ external_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5983
+ posted_date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5984
+ competitor: z.ZodString;
5985
+ tags: z.ZodArray<z.ZodString, "many">;
5986
+ discovered_at: z.ZodNullable<z.ZodString>;
5987
+ initial_run: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
5988
+ }, "strip", z.ZodTypeAny, {
5989
+ competitor: string;
5990
+ tags: string[];
5991
+ discovered_at: string | null;
5992
+ name?: string | null | undefined;
5993
+ url?: string | null | undefined;
5994
+ posted_date?: string | null | undefined;
5995
+ initial_run?: boolean | null | undefined;
5996
+ content?: string | null | undefined;
5997
+ post_id?: string | null | undefined;
5998
+ external_url?: string | null | undefined;
5999
+ }, {
6000
+ competitor: string;
6001
+ tags: string[];
6002
+ discovered_at: string | null;
6003
+ name?: string | null | undefined;
6004
+ url?: string | null | undefined;
6005
+ posted_date?: string | null | undefined;
6006
+ initial_run?: boolean | null | undefined;
6007
+ content?: string | null | undefined;
6008
+ post_id?: string | null | undefined;
6009
+ external_url?: string | null | undefined;
6010
+ }>, z.ZodObject<{
6011
+ title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6012
+ rating: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6013
+ sentiment: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6014
+ url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6015
+ excerpt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6016
+ source: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6017
+ name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6018
+ external_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6019
+ posted_date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6020
+ competitor: z.ZodString;
6021
+ tags: z.ZodArray<z.ZodString, "many">;
6022
+ discovered_at: z.ZodNullable<z.ZodString>;
6023
+ initial_run: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
6024
+ }, "strip", z.ZodTypeAny, {
6025
+ competitor: string;
6026
+ tags: string[];
6027
+ discovered_at: string | null;
6028
+ source?: string | null | undefined;
6029
+ name?: string | null | undefined;
6030
+ title?: string | null | undefined;
6031
+ url?: string | null | undefined;
6032
+ posted_date?: string | null | undefined;
6033
+ initial_run?: boolean | null | undefined;
6034
+ rating?: string | null | undefined;
6035
+ sentiment?: string | null | undefined;
6036
+ excerpt?: string | null | undefined;
6037
+ external_id?: string | null | undefined;
6038
+ }, {
6039
+ competitor: string;
6040
+ tags: string[];
6041
+ discovered_at: string | null;
6042
+ source?: string | null | undefined;
6043
+ name?: string | null | undefined;
6044
+ title?: string | null | undefined;
6045
+ url?: string | null | undefined;
6046
+ posted_date?: string | null | undefined;
6047
+ initial_run?: boolean | null | undefined;
6048
+ rating?: string | null | undefined;
6049
+ sentiment?: string | null | undefined;
6050
+ excerpt?: string | null | undefined;
6051
+ external_id?: string | null | undefined;
6052
+ }>, z.ZodObject<{
6053
+ platform: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6054
+ ad_format: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6055
+ content: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6056
+ image_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6057
+ is_live: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
6058
+ added_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6059
+ removed_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6060
+ competitor: z.ZodString;
6061
+ tags: z.ZodArray<z.ZodString, "many">;
6062
+ discovered_at: z.ZodNullable<z.ZodString>;
6063
+ initial_run: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
6064
+ }, "strip", z.ZodTypeAny, {
6065
+ competitor: string;
6066
+ tags: string[];
6067
+ discovered_at: string | null;
6068
+ image_url?: string | null | undefined;
6069
+ initial_run?: boolean | null | undefined;
6070
+ is_live?: boolean | null | undefined;
6071
+ added_at?: string | null | undefined;
6072
+ removed_at?: string | null | undefined;
6073
+ content?: string | null | undefined;
6074
+ platform?: string | null | undefined;
6075
+ ad_format?: string | null | undefined;
6076
+ }, {
6077
+ competitor: string;
6078
+ tags: string[];
6079
+ discovered_at: string | null;
6080
+ image_url?: string | null | undefined;
6081
+ initial_run?: boolean | null | undefined;
6082
+ is_live?: boolean | null | undefined;
6083
+ added_at?: string | null | undefined;
6084
+ removed_at?: string | null | undefined;
6085
+ content?: string | null | undefined;
6086
+ platform?: string | null | undefined;
6087
+ ad_format?: string | null | undefined;
4757
6088
  }>]>;
4758
6089
  }, "strip", z.ZodTypeAny, {
4759
6090
  payload: {
4760
6091
  competitor: string;
4761
6092
  tags: string[];
4762
6093
  discovered_at: string | null;
6094
+ description?: string | null | undefined;
4763
6095
  title?: string | null | undefined;
4764
6096
  url?: string | null | undefined;
4765
- description?: string | null | undefined;
4766
6097
  key_points?: string | null | undefined;
4767
6098
  image_url?: string | null | undefined;
4768
6099
  posted_date?: string | null | undefined;
@@ -4801,18 +6132,18 @@ export declare const ActivityDetailResponse: z.ZodObject<{
4801
6132
  competitor: string;
4802
6133
  tags: string[];
4803
6134
  discovered_at: string | null;
6135
+ description?: string | null | undefined;
4804
6136
  title?: string | null | undefined;
4805
6137
  url?: string | null | undefined;
4806
- description?: string | null | undefined;
4807
6138
  posted_date?: string | null | undefined;
4808
6139
  initial_run?: boolean | null | undefined;
4809
6140
  } | {
4810
6141
  competitor: string;
4811
6142
  tags: string[];
4812
6143
  discovered_at: string | null;
6144
+ description?: string | null | undefined;
4813
6145
  title?: string | null | undefined;
4814
6146
  url?: string | null | undefined;
4815
- description?: string | null | undefined;
4816
6147
  image_url?: string | null | undefined;
4817
6148
  initial_run?: boolean | null | undefined;
4818
6149
  location?: string | null | undefined;
@@ -4857,21 +6188,58 @@ export declare const ActivityDetailResponse: z.ZodObject<{
4857
6188
  discovered_at: string | null;
4858
6189
  url?: string | null | undefined;
4859
6190
  initial_run?: boolean | null | undefined;
6191
+ } | {
6192
+ competitor: string;
6193
+ tags: string[];
6194
+ discovered_at: string | null;
6195
+ name?: string | null | undefined;
6196
+ url?: string | null | undefined;
6197
+ posted_date?: string | null | undefined;
6198
+ initial_run?: boolean | null | undefined;
6199
+ content?: string | null | undefined;
6200
+ post_id?: string | null | undefined;
6201
+ external_url?: string | null | undefined;
6202
+ } | {
6203
+ competitor: string;
6204
+ tags: string[];
6205
+ discovered_at: string | null;
6206
+ source?: string | null | undefined;
6207
+ name?: string | null | undefined;
6208
+ title?: string | null | undefined;
6209
+ url?: string | null | undefined;
6210
+ posted_date?: string | null | undefined;
6211
+ initial_run?: boolean | null | undefined;
6212
+ rating?: string | null | undefined;
6213
+ sentiment?: string | null | undefined;
6214
+ excerpt?: string | null | undefined;
6215
+ external_id?: string | null | undefined;
6216
+ } | {
6217
+ competitor: string;
6218
+ tags: string[];
6219
+ discovered_at: string | null;
6220
+ image_url?: string | null | undefined;
6221
+ initial_run?: boolean | null | undefined;
6222
+ is_live?: boolean | null | undefined;
6223
+ added_at?: string | null | undefined;
6224
+ removed_at?: string | null | undefined;
6225
+ content?: string | null | undefined;
6226
+ platform?: string | null | undefined;
6227
+ ad_format?: string | null | undefined;
4860
6228
  };
4861
6229
  id: string;
4862
6230
  competitor: {
4863
6231
  id: string;
4864
6232
  name: string | null;
4865
6233
  };
4866
- section: "blog-posts" | "press-posts" | "job-listings" | "pricing" | "case-studies" | "linkedin-posts" | "youtube-videos" | "events" | "messaging" | "metrics-claimed" | "logos" | "sitemap-urls";
6234
+ section: "blog-posts" | "press-posts" | "job-listings" | "ads" | "pricing" | "case-studies" | "linkedin-posts" | "x-posts" | "reviews" | "youtube-videos" | "events" | "messaging" | "metrics-claimed" | "logos" | "sitemap-urls";
4867
6235
  }, {
4868
6236
  payload: {
4869
6237
  competitor: string;
4870
6238
  tags: string[];
4871
6239
  discovered_at: string | null;
6240
+ description?: string | null | undefined;
4872
6241
  title?: string | null | undefined;
4873
6242
  url?: string | null | undefined;
4874
- description?: string | null | undefined;
4875
6243
  key_points?: string | null | undefined;
4876
6244
  image_url?: string | null | undefined;
4877
6245
  posted_date?: string | null | undefined;
@@ -4910,18 +6278,18 @@ export declare const ActivityDetailResponse: z.ZodObject<{
4910
6278
  competitor: string;
4911
6279
  tags: string[];
4912
6280
  discovered_at: string | null;
6281
+ description?: string | null | undefined;
4913
6282
  title?: string | null | undefined;
4914
6283
  url?: string | null | undefined;
4915
- description?: string | null | undefined;
4916
6284
  posted_date?: string | null | undefined;
4917
6285
  initial_run?: boolean | null | undefined;
4918
6286
  } | {
4919
6287
  competitor: string;
4920
6288
  tags: string[];
4921
6289
  discovered_at: string | null;
6290
+ description?: string | null | undefined;
4922
6291
  title?: string | null | undefined;
4923
6292
  url?: string | null | undefined;
4924
- description?: string | null | undefined;
4925
6293
  image_url?: string | null | undefined;
4926
6294
  initial_run?: boolean | null | undefined;
4927
6295
  location?: string | null | undefined;
@@ -4966,13 +6334,50 @@ export declare const ActivityDetailResponse: z.ZodObject<{
4966
6334
  discovered_at: string | null;
4967
6335
  url?: string | null | undefined;
4968
6336
  initial_run?: boolean | null | undefined;
6337
+ } | {
6338
+ competitor: string;
6339
+ tags: string[];
6340
+ discovered_at: string | null;
6341
+ name?: string | null | undefined;
6342
+ url?: string | null | undefined;
6343
+ posted_date?: string | null | undefined;
6344
+ initial_run?: boolean | null | undefined;
6345
+ content?: string | null | undefined;
6346
+ post_id?: string | null | undefined;
6347
+ external_url?: string | null | undefined;
6348
+ } | {
6349
+ competitor: string;
6350
+ tags: string[];
6351
+ discovered_at: string | null;
6352
+ source?: string | null | undefined;
6353
+ name?: string | null | undefined;
6354
+ title?: string | null | undefined;
6355
+ url?: string | null | undefined;
6356
+ posted_date?: string | null | undefined;
6357
+ initial_run?: boolean | null | undefined;
6358
+ rating?: string | null | undefined;
6359
+ sentiment?: string | null | undefined;
6360
+ excerpt?: string | null | undefined;
6361
+ external_id?: string | null | undefined;
6362
+ } | {
6363
+ competitor: string;
6364
+ tags: string[];
6365
+ discovered_at: string | null;
6366
+ image_url?: string | null | undefined;
6367
+ initial_run?: boolean | null | undefined;
6368
+ is_live?: boolean | null | undefined;
6369
+ added_at?: string | null | undefined;
6370
+ removed_at?: string | null | undefined;
6371
+ content?: string | null | undefined;
6372
+ platform?: string | null | undefined;
6373
+ ad_format?: string | null | undefined;
4969
6374
  };
4970
6375
  id: string;
4971
6376
  competitor: {
4972
6377
  id: string;
4973
6378
  name: string | null;
4974
6379
  };
4975
- section: "blog-posts" | "press-posts" | "job-listings" | "pricing" | "case-studies" | "linkedin-posts" | "youtube-videos" | "events" | "messaging" | "metrics-claimed" | "logos" | "sitemap-urls";
6380
+ section: "blog-posts" | "press-posts" | "job-listings" | "ads" | "pricing" | "case-studies" | "linkedin-posts" | "x-posts" | "reviews" | "youtube-videos" | "events" | "messaging" | "metrics-claimed" | "logos" | "sitemap-urls";
4976
6381
  }>;
4977
6382
  }, "strip", z.ZodTypeAny, {
4978
6383
  data: {
@@ -4980,9 +6385,9 @@ export declare const ActivityDetailResponse: z.ZodObject<{
4980
6385
  competitor: string;
4981
6386
  tags: string[];
4982
6387
  discovered_at: string | null;
6388
+ description?: string | null | undefined;
4983
6389
  title?: string | null | undefined;
4984
6390
  url?: string | null | undefined;
4985
- description?: string | null | undefined;
4986
6391
  key_points?: string | null | undefined;
4987
6392
  image_url?: string | null | undefined;
4988
6393
  posted_date?: string | null | undefined;
@@ -5021,18 +6426,18 @@ export declare const ActivityDetailResponse: z.ZodObject<{
5021
6426
  competitor: string;
5022
6427
  tags: string[];
5023
6428
  discovered_at: string | null;
6429
+ description?: string | null | undefined;
5024
6430
  title?: string | null | undefined;
5025
6431
  url?: string | null | undefined;
5026
- description?: string | null | undefined;
5027
6432
  posted_date?: string | null | undefined;
5028
6433
  initial_run?: boolean | null | undefined;
5029
6434
  } | {
5030
6435
  competitor: string;
5031
6436
  tags: string[];
5032
6437
  discovered_at: string | null;
6438
+ description?: string | null | undefined;
5033
6439
  title?: string | null | undefined;
5034
6440
  url?: string | null | undefined;
5035
- description?: string | null | undefined;
5036
6441
  image_url?: string | null | undefined;
5037
6442
  initial_run?: boolean | null | undefined;
5038
6443
  location?: string | null | undefined;
@@ -5077,13 +6482,50 @@ export declare const ActivityDetailResponse: z.ZodObject<{
5077
6482
  discovered_at: string | null;
5078
6483
  url?: string | null | undefined;
5079
6484
  initial_run?: boolean | null | undefined;
6485
+ } | {
6486
+ competitor: string;
6487
+ tags: string[];
6488
+ discovered_at: string | null;
6489
+ name?: string | null | undefined;
6490
+ url?: string | null | undefined;
6491
+ posted_date?: string | null | undefined;
6492
+ initial_run?: boolean | null | undefined;
6493
+ content?: string | null | undefined;
6494
+ post_id?: string | null | undefined;
6495
+ external_url?: string | null | undefined;
6496
+ } | {
6497
+ competitor: string;
6498
+ tags: string[];
6499
+ discovered_at: string | null;
6500
+ source?: string | null | undefined;
6501
+ name?: string | null | undefined;
6502
+ title?: string | null | undefined;
6503
+ url?: string | null | undefined;
6504
+ posted_date?: string | null | undefined;
6505
+ initial_run?: boolean | null | undefined;
6506
+ rating?: string | null | undefined;
6507
+ sentiment?: string | null | undefined;
6508
+ excerpt?: string | null | undefined;
6509
+ external_id?: string | null | undefined;
6510
+ } | {
6511
+ competitor: string;
6512
+ tags: string[];
6513
+ discovered_at: string | null;
6514
+ image_url?: string | null | undefined;
6515
+ initial_run?: boolean | null | undefined;
6516
+ is_live?: boolean | null | undefined;
6517
+ added_at?: string | null | undefined;
6518
+ removed_at?: string | null | undefined;
6519
+ content?: string | null | undefined;
6520
+ platform?: string | null | undefined;
6521
+ ad_format?: string | null | undefined;
5080
6522
  };
5081
6523
  id: string;
5082
6524
  competitor: {
5083
6525
  id: string;
5084
6526
  name: string | null;
5085
6527
  };
5086
- section: "blog-posts" | "press-posts" | "job-listings" | "pricing" | "case-studies" | "linkedin-posts" | "youtube-videos" | "events" | "messaging" | "metrics-claimed" | "logos" | "sitemap-urls";
6528
+ section: "blog-posts" | "press-posts" | "job-listings" | "ads" | "pricing" | "case-studies" | "linkedin-posts" | "x-posts" | "reviews" | "youtube-videos" | "events" | "messaging" | "metrics-claimed" | "logos" | "sitemap-urls";
5087
6529
  };
5088
6530
  }, {
5089
6531
  data: {
@@ -5091,9 +6533,9 @@ export declare const ActivityDetailResponse: z.ZodObject<{
5091
6533
  competitor: string;
5092
6534
  tags: string[];
5093
6535
  discovered_at: string | null;
6536
+ description?: string | null | undefined;
5094
6537
  title?: string | null | undefined;
5095
6538
  url?: string | null | undefined;
5096
- description?: string | null | undefined;
5097
6539
  key_points?: string | null | undefined;
5098
6540
  image_url?: string | null | undefined;
5099
6541
  posted_date?: string | null | undefined;
@@ -5132,18 +6574,18 @@ export declare const ActivityDetailResponse: z.ZodObject<{
5132
6574
  competitor: string;
5133
6575
  tags: string[];
5134
6576
  discovered_at: string | null;
6577
+ description?: string | null | undefined;
5135
6578
  title?: string | null | undefined;
5136
6579
  url?: string | null | undefined;
5137
- description?: string | null | undefined;
5138
6580
  posted_date?: string | null | undefined;
5139
6581
  initial_run?: boolean | null | undefined;
5140
6582
  } | {
5141
6583
  competitor: string;
5142
6584
  tags: string[];
5143
6585
  discovered_at: string | null;
6586
+ description?: string | null | undefined;
5144
6587
  title?: string | null | undefined;
5145
6588
  url?: string | null | undefined;
5146
- description?: string | null | undefined;
5147
6589
  image_url?: string | null | undefined;
5148
6590
  initial_run?: boolean | null | undefined;
5149
6591
  location?: string | null | undefined;
@@ -5188,13 +6630,50 @@ export declare const ActivityDetailResponse: z.ZodObject<{
5188
6630
  discovered_at: string | null;
5189
6631
  url?: string | null | undefined;
5190
6632
  initial_run?: boolean | null | undefined;
6633
+ } | {
6634
+ competitor: string;
6635
+ tags: string[];
6636
+ discovered_at: string | null;
6637
+ name?: string | null | undefined;
6638
+ url?: string | null | undefined;
6639
+ posted_date?: string | null | undefined;
6640
+ initial_run?: boolean | null | undefined;
6641
+ content?: string | null | undefined;
6642
+ post_id?: string | null | undefined;
6643
+ external_url?: string | null | undefined;
6644
+ } | {
6645
+ competitor: string;
6646
+ tags: string[];
6647
+ discovered_at: string | null;
6648
+ source?: string | null | undefined;
6649
+ name?: string | null | undefined;
6650
+ title?: string | null | undefined;
6651
+ url?: string | null | undefined;
6652
+ posted_date?: string | null | undefined;
6653
+ initial_run?: boolean | null | undefined;
6654
+ rating?: string | null | undefined;
6655
+ sentiment?: string | null | undefined;
6656
+ excerpt?: string | null | undefined;
6657
+ external_id?: string | null | undefined;
6658
+ } | {
6659
+ competitor: string;
6660
+ tags: string[];
6661
+ discovered_at: string | null;
6662
+ image_url?: string | null | undefined;
6663
+ initial_run?: boolean | null | undefined;
6664
+ is_live?: boolean | null | undefined;
6665
+ added_at?: string | null | undefined;
6666
+ removed_at?: string | null | undefined;
6667
+ content?: string | null | undefined;
6668
+ platform?: string | null | undefined;
6669
+ ad_format?: string | null | undefined;
5191
6670
  };
5192
6671
  id: string;
5193
6672
  competitor: {
5194
6673
  id: string;
5195
6674
  name: string | null;
5196
6675
  };
5197
- section: "blog-posts" | "press-posts" | "job-listings" | "pricing" | "case-studies" | "linkedin-posts" | "youtube-videos" | "events" | "messaging" | "metrics-claimed" | "logos" | "sitemap-urls";
6676
+ section: "blog-posts" | "press-posts" | "job-listings" | "ads" | "pricing" | "case-studies" | "linkedin-posts" | "x-posts" | "reviews" | "youtube-videos" | "events" | "messaging" | "metrics-claimed" | "logos" | "sitemap-urls";
5198
6677
  };
5199
6678
  }>;
5200
6679
  export type ActivityDetailResponse = z.infer<typeof ActivityDetailResponse>;
@@ -5981,6 +7460,8 @@ export declare const Workspace: z.ZodObject<{
5981
7460
  export type Workspace = z.infer<typeof Workspace>;
5982
7461
  export declare const MeResponse: z.ZodObject<{
5983
7462
  data: z.ZodObject<{
7463
+ auth_type: z.ZodOptional<z.ZodEnum<["api_key", "oauth"]>>;
7464
+ subject: z.ZodOptional<z.ZodString>;
5984
7465
  key: z.ZodNullable<z.ZodObject<{
5985
7466
  id: z.ZodString;
5986
7467
  name: z.ZodNullable<z.ZodString>;
@@ -6110,6 +7591,8 @@ export declare const MeResponse: z.ZodObject<{
6110
7591
  reset_at: string;
6111
7592
  };
6112
7593
  } | null;
7594
+ auth_type?: "api_key" | "oauth" | undefined;
7595
+ subject?: string | undefined;
6113
7596
  }, {
6114
7597
  key: {
6115
7598
  id: string;
@@ -6138,6 +7621,8 @@ export declare const MeResponse: z.ZodObject<{
6138
7621
  reset_at: string;
6139
7622
  };
6140
7623
  } | null;
7624
+ auth_type?: "api_key" | "oauth" | undefined;
7625
+ subject?: string | undefined;
6141
7626
  }>;
6142
7627
  }, "strip", z.ZodTypeAny, {
6143
7628
  data: {
@@ -6168,6 +7653,8 @@ export declare const MeResponse: z.ZodObject<{
6168
7653
  reset_at: string;
6169
7654
  };
6170
7655
  } | null;
7656
+ auth_type?: "api_key" | "oauth" | undefined;
7657
+ subject?: string | undefined;
6171
7658
  };
6172
7659
  }, {
6173
7660
  data: {
@@ -6198,6 +7685,8 @@ export declare const MeResponse: z.ZodObject<{
6198
7685
  reset_at: string;
6199
7686
  };
6200
7687
  } | null;
7688
+ auth_type?: "api_key" | "oauth" | undefined;
7689
+ subject?: string | undefined;
6201
7690
  };
6202
7691
  }>;
6203
7692
  export type MeResponse = z.infer<typeof MeResponse>;