@meertrack/mcp 1.1.1 → 2.0.0
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/README.md +3 -3
- package/dist/auth.d.ts +8 -1
- package/dist/auth.d.ts.map +1 -1
- package/dist/auth.js +29 -7
- package/dist/auth.js.map +1 -1
- package/dist/client.d.ts +2 -1
- package/dist/client.d.ts.map +1 -1
- package/dist/client.js +5 -0
- package/dist/client.js.map +1 -1
- package/dist/server.d.ts +1 -0
- package/dist/server.d.ts.map +1 -1
- package/dist/server.js +2 -0
- package/dist/server.js.map +1 -1
- package/dist/tools/get_activity_items.d.ts +6 -0
- package/dist/tools/get_activity_items.d.ts.map +1 -0
- package/dist/tools/get_activity_items.js +40 -0
- package/dist/tools/get_activity_items.js.map +1 -0
- package/dist/tools/get_competitor.js +2 -2
- package/dist/tools/get_competitor.js.map +1 -1
- package/dist/tools/index.d.ts +3 -3
- package/dist/tools/index.d.ts.map +1 -1
- package/dist/tools/index.js +4 -4
- package/dist/tools/index.js.map +1 -1
- package/dist/tools/list_activities.d.ts.map +1 -1
- package/dist/tools/list_activities.js +9 -4
- package/dist/tools/list_activities.js.map +1 -1
- package/dist/tools/whoami.js +1 -1
- package/dist/tools/whoami.js.map +1 -1
- package/dist/transports/http.d.ts.map +1 -1
- package/dist/transports/http.js +10 -4
- package/dist/transports/http.js.map +1 -1
- package/dist/types.d.ts +1032 -2065
- package/dist/types.d.ts.map +1 -1
- package/dist/types.js +79 -11
- package/dist/types.js.map +1 -1
- package/package.json +2 -1
- package/dist/tools/get_activity_item.d.ts +0 -6
- package/dist/tools/get_activity_item.d.ts.map +0 -1
- package/dist/tools/get_activity_item.js +0 -33
- package/dist/tools/get_activity_item.js.map +0 -1
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,11 +847,132 @@ 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
|
-
* Union of every section item shape
|
|
852
|
-
*
|
|
853
|
-
*
|
|
854
|
-
*
|
|
968
|
+
* Union of every section item shape, kept for documentation/reference of the per-section
|
|
969
|
+
* fields. The active branch is selected by the envelope's `section` value.
|
|
970
|
+
*
|
|
971
|
+
* NOTE: do NOT use this union to validate a wire `data`/`payload`. Several branches overlap
|
|
972
|
+
* on `title`/`url`/`posted_date`, and the MCP SDK re-parses tool output against the declared
|
|
973
|
+
* output schema and returns the PARSED value — so a non-discriminated union resolves to its
|
|
974
|
+
* first matching branch and silently strips every field not on that branch (e.g. a pricing or
|
|
975
|
+
* job row loses `is_live`/`category`/`location`). Use `SectionItemData` for the wire shape.
|
|
855
976
|
*/
|
|
856
977
|
export declare const SectionItem: z.ZodUnion<[z.ZodObject<{
|
|
857
978
|
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -868,9 +989,9 @@ export declare const SectionItem: z.ZodUnion<[z.ZodObject<{
|
|
|
868
989
|
competitor: string;
|
|
869
990
|
tags: string[];
|
|
870
991
|
discovered_at: string | null;
|
|
992
|
+
description?: string | null | undefined;
|
|
871
993
|
title?: string | null | undefined;
|
|
872
994
|
url?: string | null | undefined;
|
|
873
|
-
description?: string | null | undefined;
|
|
874
995
|
key_points?: string | null | undefined;
|
|
875
996
|
image_url?: string | null | undefined;
|
|
876
997
|
posted_date?: string | null | undefined;
|
|
@@ -879,9 +1000,9 @@ export declare const SectionItem: z.ZodUnion<[z.ZodObject<{
|
|
|
879
1000
|
competitor: string;
|
|
880
1001
|
tags: string[];
|
|
881
1002
|
discovered_at: string | null;
|
|
1003
|
+
description?: string | null | undefined;
|
|
882
1004
|
title?: string | null | undefined;
|
|
883
1005
|
url?: string | null | undefined;
|
|
884
|
-
description?: string | null | undefined;
|
|
885
1006
|
key_points?: string | null | undefined;
|
|
886
1007
|
image_url?: string | null | undefined;
|
|
887
1008
|
posted_date?: string | null | undefined;
|
|
@@ -989,18 +1110,18 @@ export declare const SectionItem: z.ZodUnion<[z.ZodObject<{
|
|
|
989
1110
|
competitor: string;
|
|
990
1111
|
tags: string[];
|
|
991
1112
|
discovered_at: string | null;
|
|
1113
|
+
description?: string | null | undefined;
|
|
992
1114
|
title?: string | null | undefined;
|
|
993
1115
|
url?: string | null | undefined;
|
|
994
|
-
description?: string | null | undefined;
|
|
995
1116
|
posted_date?: string | null | undefined;
|
|
996
1117
|
initial_run?: boolean | null | undefined;
|
|
997
1118
|
}, {
|
|
998
1119
|
competitor: string;
|
|
999
1120
|
tags: string[];
|
|
1000
1121
|
discovered_at: string | null;
|
|
1122
|
+
description?: string | null | undefined;
|
|
1001
1123
|
title?: string | null | undefined;
|
|
1002
1124
|
url?: string | null | undefined;
|
|
1003
|
-
description?: string | null | undefined;
|
|
1004
1125
|
posted_date?: string | null | undefined;
|
|
1005
1126
|
initial_run?: boolean | null | undefined;
|
|
1006
1127
|
}>, z.ZodObject<{
|
|
@@ -1020,9 +1141,9 @@ export declare const SectionItem: z.ZodUnion<[z.ZodObject<{
|
|
|
1020
1141
|
competitor: string;
|
|
1021
1142
|
tags: string[];
|
|
1022
1143
|
discovered_at: string | null;
|
|
1144
|
+
description?: string | null | undefined;
|
|
1023
1145
|
title?: string | null | undefined;
|
|
1024
1146
|
url?: string | null | undefined;
|
|
1025
|
-
description?: string | null | undefined;
|
|
1026
1147
|
image_url?: string | null | undefined;
|
|
1027
1148
|
initial_run?: boolean | null | undefined;
|
|
1028
1149
|
location?: string | null | undefined;
|
|
@@ -1033,9 +1154,9 @@ export declare const SectionItem: z.ZodUnion<[z.ZodObject<{
|
|
|
1033
1154
|
competitor: string;
|
|
1034
1155
|
tags: string[];
|
|
1035
1156
|
discovered_at: string | null;
|
|
1157
|
+
description?: string | null | undefined;
|
|
1036
1158
|
title?: string | null | undefined;
|
|
1037
1159
|
url?: string | null | undefined;
|
|
1038
|
-
description?: string | null | undefined;
|
|
1039
1160
|
image_url?: string | null | undefined;
|
|
1040
1161
|
initial_run?: boolean | null | undefined;
|
|
1041
1162
|
location?: string | null | undefined;
|
|
@@ -1156,8 +1277,126 @@ export declare const SectionItem: z.ZodUnion<[z.ZodObject<{
|
|
|
1156
1277
|
discovered_at: string | null;
|
|
1157
1278
|
url?: string | null | undefined;
|
|
1158
1279
|
initial_run?: boolean | null | undefined;
|
|
1280
|
+
}>, z.ZodObject<{
|
|
1281
|
+
post_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1282
|
+
url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1283
|
+
content: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1284
|
+
name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1285
|
+
external_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1286
|
+
posted_date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1287
|
+
competitor: z.ZodString;
|
|
1288
|
+
tags: z.ZodArray<z.ZodString, "many">;
|
|
1289
|
+
discovered_at: z.ZodNullable<z.ZodString>;
|
|
1290
|
+
initial_run: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
1291
|
+
}, "strip", z.ZodTypeAny, {
|
|
1292
|
+
competitor: string;
|
|
1293
|
+
tags: string[];
|
|
1294
|
+
discovered_at: string | null;
|
|
1295
|
+
name?: string | null | undefined;
|
|
1296
|
+
url?: string | null | undefined;
|
|
1297
|
+
posted_date?: string | null | undefined;
|
|
1298
|
+
initial_run?: boolean | null | undefined;
|
|
1299
|
+
content?: string | null | undefined;
|
|
1300
|
+
post_id?: string | null | undefined;
|
|
1301
|
+
external_url?: string | null | undefined;
|
|
1302
|
+
}, {
|
|
1303
|
+
competitor: string;
|
|
1304
|
+
tags: string[];
|
|
1305
|
+
discovered_at: string | null;
|
|
1306
|
+
name?: string | null | undefined;
|
|
1307
|
+
url?: string | null | undefined;
|
|
1308
|
+
posted_date?: string | null | undefined;
|
|
1309
|
+
initial_run?: boolean | null | undefined;
|
|
1310
|
+
content?: string | null | undefined;
|
|
1311
|
+
post_id?: string | null | undefined;
|
|
1312
|
+
external_url?: string | null | undefined;
|
|
1313
|
+
}>, z.ZodObject<{
|
|
1314
|
+
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1315
|
+
rating: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1316
|
+
sentiment: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1317
|
+
url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1318
|
+
excerpt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1319
|
+
source: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1320
|
+
name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1321
|
+
external_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1322
|
+
posted_date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1323
|
+
competitor: z.ZodString;
|
|
1324
|
+
tags: z.ZodArray<z.ZodString, "many">;
|
|
1325
|
+
discovered_at: z.ZodNullable<z.ZodString>;
|
|
1326
|
+
initial_run: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
1327
|
+
}, "strip", z.ZodTypeAny, {
|
|
1328
|
+
competitor: string;
|
|
1329
|
+
tags: string[];
|
|
1330
|
+
discovered_at: string | null;
|
|
1331
|
+
source?: string | null | undefined;
|
|
1332
|
+
name?: string | null | undefined;
|
|
1333
|
+
title?: string | null | undefined;
|
|
1334
|
+
url?: string | null | undefined;
|
|
1335
|
+
posted_date?: string | null | undefined;
|
|
1336
|
+
initial_run?: boolean | null | undefined;
|
|
1337
|
+
rating?: string | null | undefined;
|
|
1338
|
+
sentiment?: string | null | undefined;
|
|
1339
|
+
excerpt?: string | null | undefined;
|
|
1340
|
+
external_id?: string | null | undefined;
|
|
1341
|
+
}, {
|
|
1342
|
+
competitor: string;
|
|
1343
|
+
tags: string[];
|
|
1344
|
+
discovered_at: string | null;
|
|
1345
|
+
source?: string | null | undefined;
|
|
1346
|
+
name?: string | null | undefined;
|
|
1347
|
+
title?: string | null | undefined;
|
|
1348
|
+
url?: string | null | undefined;
|
|
1349
|
+
posted_date?: string | null | undefined;
|
|
1350
|
+
initial_run?: boolean | null | undefined;
|
|
1351
|
+
rating?: string | null | undefined;
|
|
1352
|
+
sentiment?: string | null | undefined;
|
|
1353
|
+
excerpt?: string | null | undefined;
|
|
1354
|
+
external_id?: string | null | undefined;
|
|
1355
|
+
}>, z.ZodObject<{
|
|
1356
|
+
platform: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1357
|
+
ad_format: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1358
|
+
content: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1359
|
+
image_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1360
|
+
is_live: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
1361
|
+
added_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1362
|
+
removed_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1363
|
+
competitor: z.ZodString;
|
|
1364
|
+
tags: z.ZodArray<z.ZodString, "many">;
|
|
1365
|
+
discovered_at: z.ZodNullable<z.ZodString>;
|
|
1366
|
+
initial_run: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
1367
|
+
}, "strip", z.ZodTypeAny, {
|
|
1368
|
+
competitor: string;
|
|
1369
|
+
tags: string[];
|
|
1370
|
+
discovered_at: string | null;
|
|
1371
|
+
image_url?: string | null | undefined;
|
|
1372
|
+
initial_run?: boolean | null | undefined;
|
|
1373
|
+
is_live?: boolean | null | undefined;
|
|
1374
|
+
added_at?: string | null | undefined;
|
|
1375
|
+
removed_at?: string | null | undefined;
|
|
1376
|
+
content?: string | null | undefined;
|
|
1377
|
+
platform?: string | null | undefined;
|
|
1378
|
+
ad_format?: string | null | undefined;
|
|
1379
|
+
}, {
|
|
1380
|
+
competitor: string;
|
|
1381
|
+
tags: string[];
|
|
1382
|
+
discovered_at: string | null;
|
|
1383
|
+
image_url?: string | null | undefined;
|
|
1384
|
+
initial_run?: boolean | null | undefined;
|
|
1385
|
+
is_live?: boolean | null | undefined;
|
|
1386
|
+
added_at?: string | null | undefined;
|
|
1387
|
+
removed_at?: string | null | undefined;
|
|
1388
|
+
content?: string | null | undefined;
|
|
1389
|
+
platform?: string | null | undefined;
|
|
1390
|
+
ad_format?: string | null | undefined;
|
|
1159
1391
|
}>]>;
|
|
1160
1392
|
export type SectionItem = z.infer<typeof SectionItem>;
|
|
1393
|
+
/**
|
|
1394
|
+
* Lossless wire shape for a section row. A plain record of arbitrary keys, so every field the
|
|
1395
|
+
* API returns survives the SDK's output re-parse (see the note on SectionItem). The per-section
|
|
1396
|
+
* fields are documented by the union branches above.
|
|
1397
|
+
*/
|
|
1398
|
+
export declare const SectionItemData: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
1399
|
+
export type SectionItemData = z.infer<typeof SectionItemData>;
|
|
1161
1400
|
export declare const CompetitorOverviewItems: z.ZodObject<{
|
|
1162
1401
|
"blog-posts": z.ZodArray<z.ZodObject<{
|
|
1163
1402
|
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -1174,9 +1413,9 @@ export declare const CompetitorOverviewItems: z.ZodObject<{
|
|
|
1174
1413
|
competitor: string;
|
|
1175
1414
|
tags: string[];
|
|
1176
1415
|
discovered_at: string | null;
|
|
1416
|
+
description?: string | null | undefined;
|
|
1177
1417
|
title?: string | null | undefined;
|
|
1178
1418
|
url?: string | null | undefined;
|
|
1179
|
-
description?: string | null | undefined;
|
|
1180
1419
|
key_points?: string | null | undefined;
|
|
1181
1420
|
image_url?: string | null | undefined;
|
|
1182
1421
|
posted_date?: string | null | undefined;
|
|
@@ -1185,9 +1424,9 @@ export declare const CompetitorOverviewItems: z.ZodObject<{
|
|
|
1185
1424
|
competitor: string;
|
|
1186
1425
|
tags: string[];
|
|
1187
1426
|
discovered_at: string | null;
|
|
1427
|
+
description?: string | null | undefined;
|
|
1188
1428
|
title?: string | null | undefined;
|
|
1189
1429
|
url?: string | null | undefined;
|
|
1190
|
-
description?: string | null | undefined;
|
|
1191
1430
|
key_points?: string | null | undefined;
|
|
1192
1431
|
image_url?: string | null | undefined;
|
|
1193
1432
|
posted_date?: string | null | undefined;
|
|
@@ -1208,9 +1447,9 @@ export declare const CompetitorOverviewItems: z.ZodObject<{
|
|
|
1208
1447
|
competitor: string;
|
|
1209
1448
|
tags: string[];
|
|
1210
1449
|
discovered_at: string | null;
|
|
1450
|
+
description?: string | null | undefined;
|
|
1211
1451
|
title?: string | null | undefined;
|
|
1212
1452
|
url?: string | null | undefined;
|
|
1213
|
-
description?: string | null | undefined;
|
|
1214
1453
|
key_points?: string | null | undefined;
|
|
1215
1454
|
image_url?: string | null | undefined;
|
|
1216
1455
|
posted_date?: string | null | undefined;
|
|
@@ -1219,9 +1458,9 @@ export declare const CompetitorOverviewItems: z.ZodObject<{
|
|
|
1219
1458
|
competitor: string;
|
|
1220
1459
|
tags: string[];
|
|
1221
1460
|
discovered_at: string | null;
|
|
1461
|
+
description?: string | null | undefined;
|
|
1222
1462
|
title?: string | null | undefined;
|
|
1223
1463
|
url?: string | null | undefined;
|
|
1224
|
-
description?: string | null | undefined;
|
|
1225
1464
|
key_points?: string | null | undefined;
|
|
1226
1465
|
image_url?: string | null | undefined;
|
|
1227
1466
|
posted_date?: string | null | undefined;
|
|
@@ -1242,9 +1481,9 @@ export declare const CompetitorOverviewItems: z.ZodObject<{
|
|
|
1242
1481
|
competitor: string;
|
|
1243
1482
|
tags: string[];
|
|
1244
1483
|
discovered_at: string | null;
|
|
1484
|
+
description?: string | null | undefined;
|
|
1245
1485
|
title?: string | null | undefined;
|
|
1246
1486
|
url?: string | null | undefined;
|
|
1247
|
-
description?: string | null | undefined;
|
|
1248
1487
|
key_points?: string | null | undefined;
|
|
1249
1488
|
image_url?: string | null | undefined;
|
|
1250
1489
|
posted_date?: string | null | undefined;
|
|
@@ -1253,9 +1492,9 @@ export declare const CompetitorOverviewItems: z.ZodObject<{
|
|
|
1253
1492
|
competitor: string;
|
|
1254
1493
|
tags: string[];
|
|
1255
1494
|
discovered_at: string | null;
|
|
1495
|
+
description?: string | null | undefined;
|
|
1256
1496
|
title?: string | null | undefined;
|
|
1257
1497
|
url?: string | null | undefined;
|
|
1258
|
-
description?: string | null | undefined;
|
|
1259
1498
|
key_points?: string | null | undefined;
|
|
1260
1499
|
image_url?: string | null | undefined;
|
|
1261
1500
|
posted_date?: string | null | undefined;
|
|
@@ -1301,6 +1540,43 @@ export declare const CompetitorOverviewItems: z.ZodObject<{
|
|
|
1301
1540
|
added_at?: string | null | undefined;
|
|
1302
1541
|
removed_at?: string | null | undefined;
|
|
1303
1542
|
}>, "many">;
|
|
1543
|
+
ads: z.ZodArray<z.ZodObject<{
|
|
1544
|
+
platform: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1545
|
+
ad_format: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1546
|
+
content: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1547
|
+
image_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1548
|
+
is_live: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
1549
|
+
added_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1550
|
+
removed_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1551
|
+
competitor: z.ZodString;
|
|
1552
|
+
tags: z.ZodArray<z.ZodString, "many">;
|
|
1553
|
+
discovered_at: z.ZodNullable<z.ZodString>;
|
|
1554
|
+
initial_run: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
1555
|
+
}, "strip", z.ZodTypeAny, {
|
|
1556
|
+
competitor: string;
|
|
1557
|
+
tags: string[];
|
|
1558
|
+
discovered_at: string | null;
|
|
1559
|
+
image_url?: string | null | undefined;
|
|
1560
|
+
initial_run?: boolean | null | undefined;
|
|
1561
|
+
is_live?: boolean | null | undefined;
|
|
1562
|
+
added_at?: string | null | undefined;
|
|
1563
|
+
removed_at?: string | null | undefined;
|
|
1564
|
+
content?: string | null | undefined;
|
|
1565
|
+
platform?: string | null | undefined;
|
|
1566
|
+
ad_format?: string | null | undefined;
|
|
1567
|
+
}, {
|
|
1568
|
+
competitor: string;
|
|
1569
|
+
tags: string[];
|
|
1570
|
+
discovered_at: string | null;
|
|
1571
|
+
image_url?: string | null | undefined;
|
|
1572
|
+
initial_run?: boolean | null | undefined;
|
|
1573
|
+
is_live?: boolean | null | undefined;
|
|
1574
|
+
added_at?: string | null | undefined;
|
|
1575
|
+
removed_at?: string | null | undefined;
|
|
1576
|
+
content?: string | null | undefined;
|
|
1577
|
+
platform?: string | null | undefined;
|
|
1578
|
+
ad_format?: string | null | undefined;
|
|
1579
|
+
}>, "many">;
|
|
1304
1580
|
pricing: z.ZodArray<z.ZodObject<{
|
|
1305
1581
|
pricing_data: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodRecord<z.ZodString, z.ZodUnknown>, z.ZodArray<z.ZodUnknown, "many">]>>>;
|
|
1306
1582
|
changes: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -1453,10 +1729,12 @@ export declare const CompetitorOverviewItems: z.ZodObject<{
|
|
|
1453
1729
|
initial_run?: boolean | null | undefined;
|
|
1454
1730
|
content?: string | null | undefined;
|
|
1455
1731
|
}>, "many">;
|
|
1456
|
-
"
|
|
1457
|
-
|
|
1732
|
+
"x-posts": z.ZodArray<z.ZodObject<{
|
|
1733
|
+
post_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1458
1734
|
url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1459
|
-
|
|
1735
|
+
content: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1736
|
+
name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1737
|
+
external_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1460
1738
|
posted_date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1461
1739
|
competitor: z.ZodString;
|
|
1462
1740
|
tags: z.ZodArray<z.ZodString, "many">;
|
|
@@ -1466,18 +1744,93 @@ export declare const CompetitorOverviewItems: z.ZodObject<{
|
|
|
1466
1744
|
competitor: string;
|
|
1467
1745
|
tags: string[];
|
|
1468
1746
|
discovered_at: string | null;
|
|
1469
|
-
|
|
1747
|
+
name?: string | null | undefined;
|
|
1470
1748
|
url?: string | null | undefined;
|
|
1471
|
-
description?: string | null | undefined;
|
|
1472
1749
|
posted_date?: string | null | undefined;
|
|
1473
1750
|
initial_run?: boolean | null | undefined;
|
|
1751
|
+
content?: string | null | undefined;
|
|
1752
|
+
post_id?: string | null | undefined;
|
|
1753
|
+
external_url?: string | null | undefined;
|
|
1474
1754
|
}, {
|
|
1475
1755
|
competitor: string;
|
|
1476
1756
|
tags: string[];
|
|
1477
1757
|
discovered_at: string | null;
|
|
1478
|
-
|
|
1758
|
+
name?: string | null | undefined;
|
|
1759
|
+
url?: string | null | undefined;
|
|
1760
|
+
posted_date?: string | null | undefined;
|
|
1761
|
+
initial_run?: boolean | null | undefined;
|
|
1762
|
+
content?: string | null | undefined;
|
|
1763
|
+
post_id?: string | null | undefined;
|
|
1764
|
+
external_url?: string | null | undefined;
|
|
1765
|
+
}>, "many">;
|
|
1766
|
+
reviews: z.ZodArray<z.ZodObject<{
|
|
1767
|
+
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1768
|
+
rating: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1769
|
+
sentiment: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1770
|
+
url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1771
|
+
excerpt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1772
|
+
source: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1773
|
+
name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1774
|
+
external_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1775
|
+
posted_date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1776
|
+
competitor: z.ZodString;
|
|
1777
|
+
tags: z.ZodArray<z.ZodString, "many">;
|
|
1778
|
+
discovered_at: z.ZodNullable<z.ZodString>;
|
|
1779
|
+
initial_run: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
1780
|
+
}, "strip", z.ZodTypeAny, {
|
|
1781
|
+
competitor: string;
|
|
1782
|
+
tags: string[];
|
|
1783
|
+
discovered_at: string | null;
|
|
1784
|
+
source?: string | null | undefined;
|
|
1785
|
+
name?: string | null | undefined;
|
|
1786
|
+
title?: string | null | undefined;
|
|
1787
|
+
url?: string | null | undefined;
|
|
1788
|
+
posted_date?: string | null | undefined;
|
|
1789
|
+
initial_run?: boolean | null | undefined;
|
|
1790
|
+
rating?: string | null | undefined;
|
|
1791
|
+
sentiment?: string | null | undefined;
|
|
1792
|
+
excerpt?: string | null | undefined;
|
|
1793
|
+
external_id?: string | null | undefined;
|
|
1794
|
+
}, {
|
|
1795
|
+
competitor: string;
|
|
1796
|
+
tags: string[];
|
|
1797
|
+
discovered_at: string | null;
|
|
1798
|
+
source?: string | null | undefined;
|
|
1799
|
+
name?: string | null | undefined;
|
|
1800
|
+
title?: string | null | undefined;
|
|
1801
|
+
url?: string | null | undefined;
|
|
1802
|
+
posted_date?: string | null | undefined;
|
|
1803
|
+
initial_run?: boolean | null | undefined;
|
|
1804
|
+
rating?: string | null | undefined;
|
|
1805
|
+
sentiment?: string | null | undefined;
|
|
1806
|
+
excerpt?: string | null | undefined;
|
|
1807
|
+
external_id?: string | null | undefined;
|
|
1808
|
+
}>, "many">;
|
|
1809
|
+
"youtube-videos": z.ZodArray<z.ZodObject<{
|
|
1810
|
+
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1811
|
+
url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1812
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1813
|
+
posted_date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1814
|
+
competitor: z.ZodString;
|
|
1815
|
+
tags: z.ZodArray<z.ZodString, "many">;
|
|
1816
|
+
discovered_at: z.ZodNullable<z.ZodString>;
|
|
1817
|
+
initial_run: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
1818
|
+
}, "strip", z.ZodTypeAny, {
|
|
1819
|
+
competitor: string;
|
|
1820
|
+
tags: string[];
|
|
1821
|
+
discovered_at: string | null;
|
|
1822
|
+
description?: string | null | undefined;
|
|
1823
|
+
title?: string | null | undefined;
|
|
1824
|
+
url?: string | null | undefined;
|
|
1825
|
+
posted_date?: string | null | undefined;
|
|
1826
|
+
initial_run?: boolean | null | undefined;
|
|
1827
|
+
}, {
|
|
1828
|
+
competitor: string;
|
|
1829
|
+
tags: string[];
|
|
1830
|
+
discovered_at: string | null;
|
|
1831
|
+
description?: string | null | undefined;
|
|
1832
|
+
title?: string | null | undefined;
|
|
1479
1833
|
url?: string | null | undefined;
|
|
1480
|
-
description?: string | null | undefined;
|
|
1481
1834
|
posted_date?: string | null | undefined;
|
|
1482
1835
|
initial_run?: boolean | null | undefined;
|
|
1483
1836
|
}>, "many">;
|
|
@@ -1498,9 +1851,9 @@ export declare const CompetitorOverviewItems: z.ZodObject<{
|
|
|
1498
1851
|
competitor: string;
|
|
1499
1852
|
tags: string[];
|
|
1500
1853
|
discovered_at: string | null;
|
|
1854
|
+
description?: string | null | undefined;
|
|
1501
1855
|
title?: string | null | undefined;
|
|
1502
1856
|
url?: string | null | undefined;
|
|
1503
|
-
description?: string | null | undefined;
|
|
1504
1857
|
image_url?: string | null | undefined;
|
|
1505
1858
|
initial_run?: boolean | null | undefined;
|
|
1506
1859
|
location?: string | null | undefined;
|
|
@@ -1511,9 +1864,9 @@ export declare const CompetitorOverviewItems: z.ZodObject<{
|
|
|
1511
1864
|
competitor: string;
|
|
1512
1865
|
tags: string[];
|
|
1513
1866
|
discovered_at: string | null;
|
|
1867
|
+
description?: string | null | undefined;
|
|
1514
1868
|
title?: string | null | undefined;
|
|
1515
1869
|
url?: string | null | undefined;
|
|
1516
|
-
description?: string | null | undefined;
|
|
1517
1870
|
image_url?: string | null | undefined;
|
|
1518
1871
|
initial_run?: boolean | null | undefined;
|
|
1519
1872
|
location?: string | null | undefined;
|
|
@@ -1526,9 +1879,9 @@ export declare const CompetitorOverviewItems: z.ZodObject<{
|
|
|
1526
1879
|
competitor: string;
|
|
1527
1880
|
tags: string[];
|
|
1528
1881
|
discovered_at: string | null;
|
|
1882
|
+
description?: string | null | undefined;
|
|
1529
1883
|
title?: string | null | undefined;
|
|
1530
1884
|
url?: string | null | undefined;
|
|
1531
|
-
description?: string | null | undefined;
|
|
1532
1885
|
key_points?: string | null | undefined;
|
|
1533
1886
|
image_url?: string | null | undefined;
|
|
1534
1887
|
posted_date?: string | null | undefined;
|
|
@@ -1538,9 +1891,9 @@ export declare const CompetitorOverviewItems: z.ZodObject<{
|
|
|
1538
1891
|
competitor: string;
|
|
1539
1892
|
tags: string[];
|
|
1540
1893
|
discovered_at: string | null;
|
|
1894
|
+
description?: string | null | undefined;
|
|
1541
1895
|
title?: string | null | undefined;
|
|
1542
1896
|
url?: string | null | undefined;
|
|
1543
|
-
description?: string | null | undefined;
|
|
1544
1897
|
key_points?: string | null | undefined;
|
|
1545
1898
|
image_url?: string | null | undefined;
|
|
1546
1899
|
posted_date?: string | null | undefined;
|
|
@@ -1560,6 +1913,19 @@ export declare const CompetitorOverviewItems: z.ZodObject<{
|
|
|
1560
1913
|
added_at?: string | null | undefined;
|
|
1561
1914
|
removed_at?: string | null | undefined;
|
|
1562
1915
|
}[];
|
|
1916
|
+
ads: {
|
|
1917
|
+
competitor: string;
|
|
1918
|
+
tags: string[];
|
|
1919
|
+
discovered_at: string | null;
|
|
1920
|
+
image_url?: string | null | undefined;
|
|
1921
|
+
initial_run?: boolean | null | undefined;
|
|
1922
|
+
is_live?: boolean | null | undefined;
|
|
1923
|
+
added_at?: string | null | undefined;
|
|
1924
|
+
removed_at?: string | null | undefined;
|
|
1925
|
+
content?: string | null | undefined;
|
|
1926
|
+
platform?: string | null | undefined;
|
|
1927
|
+
ad_format?: string | null | undefined;
|
|
1928
|
+
}[];
|
|
1563
1929
|
pricing: {
|
|
1564
1930
|
competitor: string;
|
|
1565
1931
|
tags: string[];
|
|
@@ -1574,9 +1940,9 @@ export declare const CompetitorOverviewItems: z.ZodObject<{
|
|
|
1574
1940
|
competitor: string;
|
|
1575
1941
|
tags: string[];
|
|
1576
1942
|
discovered_at: string | null;
|
|
1943
|
+
description?: string | null | undefined;
|
|
1577
1944
|
title?: string | null | undefined;
|
|
1578
1945
|
url?: string | null | undefined;
|
|
1579
|
-
description?: string | null | undefined;
|
|
1580
1946
|
key_points?: string | null | undefined;
|
|
1581
1947
|
image_url?: string | null | undefined;
|
|
1582
1948
|
posted_date?: string | null | undefined;
|
|
@@ -1591,13 +1957,40 @@ export declare const CompetitorOverviewItems: z.ZodObject<{
|
|
|
1591
1957
|
initial_run?: boolean | null | undefined;
|
|
1592
1958
|
content?: string | null | undefined;
|
|
1593
1959
|
}[];
|
|
1594
|
-
"
|
|
1960
|
+
"x-posts": {
|
|
1961
|
+
competitor: string;
|
|
1962
|
+
tags: string[];
|
|
1963
|
+
discovered_at: string | null;
|
|
1964
|
+
name?: string | null | undefined;
|
|
1965
|
+
url?: string | null | undefined;
|
|
1966
|
+
posted_date?: string | null | undefined;
|
|
1967
|
+
initial_run?: boolean | null | undefined;
|
|
1968
|
+
content?: string | null | undefined;
|
|
1969
|
+
post_id?: string | null | undefined;
|
|
1970
|
+
external_url?: string | null | undefined;
|
|
1971
|
+
}[];
|
|
1972
|
+
reviews: {
|
|
1595
1973
|
competitor: string;
|
|
1596
1974
|
tags: string[];
|
|
1597
1975
|
discovered_at: string | null;
|
|
1976
|
+
source?: string | null | undefined;
|
|
1977
|
+
name?: string | null | undefined;
|
|
1598
1978
|
title?: string | null | undefined;
|
|
1599
1979
|
url?: string | null | undefined;
|
|
1980
|
+
posted_date?: string | null | undefined;
|
|
1981
|
+
initial_run?: boolean | null | undefined;
|
|
1982
|
+
rating?: string | null | undefined;
|
|
1983
|
+
sentiment?: string | null | undefined;
|
|
1984
|
+
excerpt?: string | null | undefined;
|
|
1985
|
+
external_id?: string | null | undefined;
|
|
1986
|
+
}[];
|
|
1987
|
+
"youtube-videos": {
|
|
1988
|
+
competitor: string;
|
|
1989
|
+
tags: string[];
|
|
1990
|
+
discovered_at: string | null;
|
|
1600
1991
|
description?: string | null | undefined;
|
|
1992
|
+
title?: string | null | undefined;
|
|
1993
|
+
url?: string | null | undefined;
|
|
1601
1994
|
posted_date?: string | null | undefined;
|
|
1602
1995
|
initial_run?: boolean | null | undefined;
|
|
1603
1996
|
}[];
|
|
@@ -1605,9 +1998,9 @@ export declare const CompetitorOverviewItems: z.ZodObject<{
|
|
|
1605
1998
|
competitor: string;
|
|
1606
1999
|
tags: string[];
|
|
1607
2000
|
discovered_at: string | null;
|
|
2001
|
+
description?: string | null | undefined;
|
|
1608
2002
|
title?: string | null | undefined;
|
|
1609
2003
|
url?: string | null | undefined;
|
|
1610
|
-
description?: string | null | undefined;
|
|
1611
2004
|
image_url?: string | null | undefined;
|
|
1612
2005
|
initial_run?: boolean | null | undefined;
|
|
1613
2006
|
location?: string | null | undefined;
|
|
@@ -1655,9 +2048,9 @@ export declare const CompetitorOverviewItems: z.ZodObject<{
|
|
|
1655
2048
|
competitor: string;
|
|
1656
2049
|
tags: string[];
|
|
1657
2050
|
discovered_at: string | null;
|
|
2051
|
+
description?: string | null | undefined;
|
|
1658
2052
|
title?: string | null | undefined;
|
|
1659
2053
|
url?: string | null | undefined;
|
|
1660
|
-
description?: string | null | undefined;
|
|
1661
2054
|
key_points?: string | null | undefined;
|
|
1662
2055
|
image_url?: string | null | undefined;
|
|
1663
2056
|
posted_date?: string | null | undefined;
|
|
@@ -1667,9 +2060,9 @@ export declare const CompetitorOverviewItems: z.ZodObject<{
|
|
|
1667
2060
|
competitor: string;
|
|
1668
2061
|
tags: string[];
|
|
1669
2062
|
discovered_at: string | null;
|
|
2063
|
+
description?: string | null | undefined;
|
|
1670
2064
|
title?: string | null | undefined;
|
|
1671
2065
|
url?: string | null | undefined;
|
|
1672
|
-
description?: string | null | undefined;
|
|
1673
2066
|
key_points?: string | null | undefined;
|
|
1674
2067
|
image_url?: string | null | undefined;
|
|
1675
2068
|
posted_date?: string | null | undefined;
|
|
@@ -1689,6 +2082,19 @@ export declare const CompetitorOverviewItems: z.ZodObject<{
|
|
|
1689
2082
|
added_at?: string | null | undefined;
|
|
1690
2083
|
removed_at?: string | null | undefined;
|
|
1691
2084
|
}[];
|
|
2085
|
+
ads: {
|
|
2086
|
+
competitor: string;
|
|
2087
|
+
tags: string[];
|
|
2088
|
+
discovered_at: string | null;
|
|
2089
|
+
image_url?: string | null | undefined;
|
|
2090
|
+
initial_run?: boolean | null | undefined;
|
|
2091
|
+
is_live?: boolean | null | undefined;
|
|
2092
|
+
added_at?: string | null | undefined;
|
|
2093
|
+
removed_at?: string | null | undefined;
|
|
2094
|
+
content?: string | null | undefined;
|
|
2095
|
+
platform?: string | null | undefined;
|
|
2096
|
+
ad_format?: string | null | undefined;
|
|
2097
|
+
}[];
|
|
1692
2098
|
pricing: {
|
|
1693
2099
|
competitor: string;
|
|
1694
2100
|
tags: string[];
|
|
@@ -1703,9 +2109,9 @@ export declare const CompetitorOverviewItems: z.ZodObject<{
|
|
|
1703
2109
|
competitor: string;
|
|
1704
2110
|
tags: string[];
|
|
1705
2111
|
discovered_at: string | null;
|
|
2112
|
+
description?: string | null | undefined;
|
|
1706
2113
|
title?: string | null | undefined;
|
|
1707
2114
|
url?: string | null | undefined;
|
|
1708
|
-
description?: string | null | undefined;
|
|
1709
2115
|
key_points?: string | null | undefined;
|
|
1710
2116
|
image_url?: string | null | undefined;
|
|
1711
2117
|
posted_date?: string | null | undefined;
|
|
@@ -1720,13 +2126,40 @@ export declare const CompetitorOverviewItems: z.ZodObject<{
|
|
|
1720
2126
|
initial_run?: boolean | null | undefined;
|
|
1721
2127
|
content?: string | null | undefined;
|
|
1722
2128
|
}[];
|
|
1723
|
-
"
|
|
2129
|
+
"x-posts": {
|
|
2130
|
+
competitor: string;
|
|
2131
|
+
tags: string[];
|
|
2132
|
+
discovered_at: string | null;
|
|
2133
|
+
name?: string | null | undefined;
|
|
2134
|
+
url?: string | null | undefined;
|
|
2135
|
+
posted_date?: string | null | undefined;
|
|
2136
|
+
initial_run?: boolean | null | undefined;
|
|
2137
|
+
content?: string | null | undefined;
|
|
2138
|
+
post_id?: string | null | undefined;
|
|
2139
|
+
external_url?: string | null | undefined;
|
|
2140
|
+
}[];
|
|
2141
|
+
reviews: {
|
|
1724
2142
|
competitor: string;
|
|
1725
2143
|
tags: string[];
|
|
1726
2144
|
discovered_at: string | null;
|
|
2145
|
+
source?: string | null | undefined;
|
|
2146
|
+
name?: string | null | undefined;
|
|
1727
2147
|
title?: string | null | undefined;
|
|
1728
2148
|
url?: string | null | undefined;
|
|
2149
|
+
posted_date?: string | null | undefined;
|
|
2150
|
+
initial_run?: boolean | null | undefined;
|
|
2151
|
+
rating?: string | null | undefined;
|
|
2152
|
+
sentiment?: string | null | undefined;
|
|
2153
|
+
excerpt?: string | null | undefined;
|
|
2154
|
+
external_id?: string | null | undefined;
|
|
2155
|
+
}[];
|
|
2156
|
+
"youtube-videos": {
|
|
2157
|
+
competitor: string;
|
|
2158
|
+
tags: string[];
|
|
2159
|
+
discovered_at: string | null;
|
|
1729
2160
|
description?: string | null | undefined;
|
|
2161
|
+
title?: string | null | undefined;
|
|
2162
|
+
url?: string | null | undefined;
|
|
1730
2163
|
posted_date?: string | null | undefined;
|
|
1731
2164
|
initial_run?: boolean | null | undefined;
|
|
1732
2165
|
}[];
|
|
@@ -1734,9 +2167,9 @@ export declare const CompetitorOverviewItems: z.ZodObject<{
|
|
|
1734
2167
|
competitor: string;
|
|
1735
2168
|
tags: string[];
|
|
1736
2169
|
discovered_at: string | null;
|
|
2170
|
+
description?: string | null | undefined;
|
|
1737
2171
|
title?: string | null | undefined;
|
|
1738
2172
|
url?: string | null | undefined;
|
|
1739
|
-
description?: string | null | undefined;
|
|
1740
2173
|
image_url?: string | null | undefined;
|
|
1741
2174
|
initial_run?: boolean | null | undefined;
|
|
1742
2175
|
location?: string | null | undefined;
|
|
@@ -1855,9 +2288,9 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
|
|
|
1855
2288
|
competitor: string;
|
|
1856
2289
|
tags: string[];
|
|
1857
2290
|
discovered_at: string | null;
|
|
2291
|
+
description?: string | null | undefined;
|
|
1858
2292
|
title?: string | null | undefined;
|
|
1859
2293
|
url?: string | null | undefined;
|
|
1860
|
-
description?: string | null | undefined;
|
|
1861
2294
|
key_points?: string | null | undefined;
|
|
1862
2295
|
image_url?: string | null | undefined;
|
|
1863
2296
|
posted_date?: string | null | undefined;
|
|
@@ -1866,9 +2299,9 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
|
|
|
1866
2299
|
competitor: string;
|
|
1867
2300
|
tags: string[];
|
|
1868
2301
|
discovered_at: string | null;
|
|
2302
|
+
description?: string | null | undefined;
|
|
1869
2303
|
title?: string | null | undefined;
|
|
1870
2304
|
url?: string | null | undefined;
|
|
1871
|
-
description?: string | null | undefined;
|
|
1872
2305
|
key_points?: string | null | undefined;
|
|
1873
2306
|
image_url?: string | null | undefined;
|
|
1874
2307
|
posted_date?: string | null | undefined;
|
|
@@ -1889,9 +2322,9 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
|
|
|
1889
2322
|
competitor: string;
|
|
1890
2323
|
tags: string[];
|
|
1891
2324
|
discovered_at: string | null;
|
|
2325
|
+
description?: string | null | undefined;
|
|
1892
2326
|
title?: string | null | undefined;
|
|
1893
2327
|
url?: string | null | undefined;
|
|
1894
|
-
description?: string | null | undefined;
|
|
1895
2328
|
key_points?: string | null | undefined;
|
|
1896
2329
|
image_url?: string | null | undefined;
|
|
1897
2330
|
posted_date?: string | null | undefined;
|
|
@@ -1900,9 +2333,9 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
|
|
|
1900
2333
|
competitor: string;
|
|
1901
2334
|
tags: string[];
|
|
1902
2335
|
discovered_at: string | null;
|
|
2336
|
+
description?: string | null | undefined;
|
|
1903
2337
|
title?: string | null | undefined;
|
|
1904
2338
|
url?: string | null | undefined;
|
|
1905
|
-
description?: string | null | undefined;
|
|
1906
2339
|
key_points?: string | null | undefined;
|
|
1907
2340
|
image_url?: string | null | undefined;
|
|
1908
2341
|
posted_date?: string | null | undefined;
|
|
@@ -1923,9 +2356,9 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
|
|
|
1923
2356
|
competitor: string;
|
|
1924
2357
|
tags: string[];
|
|
1925
2358
|
discovered_at: string | null;
|
|
2359
|
+
description?: string | null | undefined;
|
|
1926
2360
|
title?: string | null | undefined;
|
|
1927
2361
|
url?: string | null | undefined;
|
|
1928
|
-
description?: string | null | undefined;
|
|
1929
2362
|
key_points?: string | null | undefined;
|
|
1930
2363
|
image_url?: string | null | undefined;
|
|
1931
2364
|
posted_date?: string | null | undefined;
|
|
@@ -1934,9 +2367,9 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
|
|
|
1934
2367
|
competitor: string;
|
|
1935
2368
|
tags: string[];
|
|
1936
2369
|
discovered_at: string | null;
|
|
2370
|
+
description?: string | null | undefined;
|
|
1937
2371
|
title?: string | null | undefined;
|
|
1938
2372
|
url?: string | null | undefined;
|
|
1939
|
-
description?: string | null | undefined;
|
|
1940
2373
|
key_points?: string | null | undefined;
|
|
1941
2374
|
image_url?: string | null | undefined;
|
|
1942
2375
|
posted_date?: string | null | undefined;
|
|
@@ -1982,6 +2415,43 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
|
|
|
1982
2415
|
added_at?: string | null | undefined;
|
|
1983
2416
|
removed_at?: string | null | undefined;
|
|
1984
2417
|
}>, "many">;
|
|
2418
|
+
ads: z.ZodArray<z.ZodObject<{
|
|
2419
|
+
platform: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2420
|
+
ad_format: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2421
|
+
content: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2422
|
+
image_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2423
|
+
is_live: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
2424
|
+
added_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2425
|
+
removed_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2426
|
+
competitor: z.ZodString;
|
|
2427
|
+
tags: z.ZodArray<z.ZodString, "many">;
|
|
2428
|
+
discovered_at: z.ZodNullable<z.ZodString>;
|
|
2429
|
+
initial_run: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
2430
|
+
}, "strip", z.ZodTypeAny, {
|
|
2431
|
+
competitor: string;
|
|
2432
|
+
tags: string[];
|
|
2433
|
+
discovered_at: string | null;
|
|
2434
|
+
image_url?: string | null | undefined;
|
|
2435
|
+
initial_run?: boolean | null | undefined;
|
|
2436
|
+
is_live?: boolean | null | undefined;
|
|
2437
|
+
added_at?: string | null | undefined;
|
|
2438
|
+
removed_at?: string | null | undefined;
|
|
2439
|
+
content?: string | null | undefined;
|
|
2440
|
+
platform?: string | null | undefined;
|
|
2441
|
+
ad_format?: string | null | undefined;
|
|
2442
|
+
}, {
|
|
2443
|
+
competitor: string;
|
|
2444
|
+
tags: string[];
|
|
2445
|
+
discovered_at: string | null;
|
|
2446
|
+
image_url?: string | null | undefined;
|
|
2447
|
+
initial_run?: boolean | null | undefined;
|
|
2448
|
+
is_live?: boolean | null | undefined;
|
|
2449
|
+
added_at?: string | null | undefined;
|
|
2450
|
+
removed_at?: string | null | undefined;
|
|
2451
|
+
content?: string | null | undefined;
|
|
2452
|
+
platform?: string | null | undefined;
|
|
2453
|
+
ad_format?: string | null | undefined;
|
|
2454
|
+
}>, "many">;
|
|
1985
2455
|
pricing: z.ZodArray<z.ZodObject<{
|
|
1986
2456
|
pricing_data: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodRecord<z.ZodString, z.ZodUnknown>, z.ZodArray<z.ZodUnknown, "many">]>>>;
|
|
1987
2457
|
changes: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -2134,6 +2604,83 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
|
|
|
2134
2604
|
initial_run?: boolean | null | undefined;
|
|
2135
2605
|
content?: string | null | undefined;
|
|
2136
2606
|
}>, "many">;
|
|
2607
|
+
"x-posts": z.ZodArray<z.ZodObject<{
|
|
2608
|
+
post_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2609
|
+
url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2610
|
+
content: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2611
|
+
name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2612
|
+
external_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2613
|
+
posted_date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2614
|
+
competitor: z.ZodString;
|
|
2615
|
+
tags: z.ZodArray<z.ZodString, "many">;
|
|
2616
|
+
discovered_at: z.ZodNullable<z.ZodString>;
|
|
2617
|
+
initial_run: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
2618
|
+
}, "strip", z.ZodTypeAny, {
|
|
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
|
+
}, {
|
|
2630
|
+
competitor: string;
|
|
2631
|
+
tags: string[];
|
|
2632
|
+
discovered_at: string | null;
|
|
2633
|
+
name?: string | null | undefined;
|
|
2634
|
+
url?: string | null | undefined;
|
|
2635
|
+
posted_date?: string | null | undefined;
|
|
2636
|
+
initial_run?: boolean | null | undefined;
|
|
2637
|
+
content?: string | null | undefined;
|
|
2638
|
+
post_id?: string | null | undefined;
|
|
2639
|
+
external_url?: string | null | undefined;
|
|
2640
|
+
}>, "many">;
|
|
2641
|
+
reviews: z.ZodArray<z.ZodObject<{
|
|
2642
|
+
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2643
|
+
rating: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2644
|
+
sentiment: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2645
|
+
url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2646
|
+
excerpt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2647
|
+
source: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2648
|
+
name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2649
|
+
external_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2650
|
+
posted_date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2651
|
+
competitor: z.ZodString;
|
|
2652
|
+
tags: z.ZodArray<z.ZodString, "many">;
|
|
2653
|
+
discovered_at: z.ZodNullable<z.ZodString>;
|
|
2654
|
+
initial_run: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
2655
|
+
}, "strip", z.ZodTypeAny, {
|
|
2656
|
+
competitor: string;
|
|
2657
|
+
tags: string[];
|
|
2658
|
+
discovered_at: string | null;
|
|
2659
|
+
source?: string | null | undefined;
|
|
2660
|
+
name?: string | null | undefined;
|
|
2661
|
+
title?: string | null | undefined;
|
|
2662
|
+
url?: string | null | undefined;
|
|
2663
|
+
posted_date?: string | null | undefined;
|
|
2664
|
+
initial_run?: boolean | null | undefined;
|
|
2665
|
+
rating?: string | null | undefined;
|
|
2666
|
+
sentiment?: string | null | undefined;
|
|
2667
|
+
excerpt?: string | null | undefined;
|
|
2668
|
+
external_id?: string | null | undefined;
|
|
2669
|
+
}, {
|
|
2670
|
+
competitor: string;
|
|
2671
|
+
tags: string[];
|
|
2672
|
+
discovered_at: string | null;
|
|
2673
|
+
source?: string | null | undefined;
|
|
2674
|
+
name?: string | null | undefined;
|
|
2675
|
+
title?: string | null | undefined;
|
|
2676
|
+
url?: string | null | undefined;
|
|
2677
|
+
posted_date?: string | null | undefined;
|
|
2678
|
+
initial_run?: boolean | null | undefined;
|
|
2679
|
+
rating?: string | null | undefined;
|
|
2680
|
+
sentiment?: string | null | undefined;
|
|
2681
|
+
excerpt?: string | null | undefined;
|
|
2682
|
+
external_id?: string | null | undefined;
|
|
2683
|
+
}>, "many">;
|
|
2137
2684
|
"youtube-videos": z.ZodArray<z.ZodObject<{
|
|
2138
2685
|
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2139
2686
|
url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -2147,18 +2694,18 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
|
|
|
2147
2694
|
competitor: string;
|
|
2148
2695
|
tags: string[];
|
|
2149
2696
|
discovered_at: string | null;
|
|
2697
|
+
description?: string | null | undefined;
|
|
2150
2698
|
title?: string | null | undefined;
|
|
2151
2699
|
url?: string | null | undefined;
|
|
2152
|
-
description?: string | null | undefined;
|
|
2153
2700
|
posted_date?: string | null | undefined;
|
|
2154
2701
|
initial_run?: boolean | null | undefined;
|
|
2155
2702
|
}, {
|
|
2156
2703
|
competitor: string;
|
|
2157
2704
|
tags: string[];
|
|
2158
2705
|
discovered_at: string | null;
|
|
2706
|
+
description?: string | null | undefined;
|
|
2159
2707
|
title?: string | null | undefined;
|
|
2160
2708
|
url?: string | null | undefined;
|
|
2161
|
-
description?: string | null | undefined;
|
|
2162
2709
|
posted_date?: string | null | undefined;
|
|
2163
2710
|
initial_run?: boolean | null | undefined;
|
|
2164
2711
|
}>, "many">;
|
|
@@ -2179,9 +2726,9 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
|
|
|
2179
2726
|
competitor: string;
|
|
2180
2727
|
tags: string[];
|
|
2181
2728
|
discovered_at: string | null;
|
|
2729
|
+
description?: string | null | undefined;
|
|
2182
2730
|
title?: string | null | undefined;
|
|
2183
2731
|
url?: string | null | undefined;
|
|
2184
|
-
description?: string | null | undefined;
|
|
2185
2732
|
image_url?: string | null | undefined;
|
|
2186
2733
|
initial_run?: boolean | null | undefined;
|
|
2187
2734
|
location?: string | null | undefined;
|
|
@@ -2192,9 +2739,9 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
|
|
|
2192
2739
|
competitor: string;
|
|
2193
2740
|
tags: string[];
|
|
2194
2741
|
discovered_at: string | null;
|
|
2742
|
+
description?: string | null | undefined;
|
|
2195
2743
|
title?: string | null | undefined;
|
|
2196
2744
|
url?: string | null | undefined;
|
|
2197
|
-
description?: string | null | undefined;
|
|
2198
2745
|
image_url?: string | null | undefined;
|
|
2199
2746
|
initial_run?: boolean | null | undefined;
|
|
2200
2747
|
location?: string | null | undefined;
|
|
@@ -2207,9 +2754,9 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
|
|
|
2207
2754
|
competitor: string;
|
|
2208
2755
|
tags: string[];
|
|
2209
2756
|
discovered_at: string | null;
|
|
2757
|
+
description?: string | null | undefined;
|
|
2210
2758
|
title?: string | null | undefined;
|
|
2211
2759
|
url?: string | null | undefined;
|
|
2212
|
-
description?: string | null | undefined;
|
|
2213
2760
|
key_points?: string | null | undefined;
|
|
2214
2761
|
image_url?: string | null | undefined;
|
|
2215
2762
|
posted_date?: string | null | undefined;
|
|
@@ -2219,9 +2766,9 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
|
|
|
2219
2766
|
competitor: string;
|
|
2220
2767
|
tags: string[];
|
|
2221
2768
|
discovered_at: string | null;
|
|
2769
|
+
description?: string | null | undefined;
|
|
2222
2770
|
title?: string | null | undefined;
|
|
2223
2771
|
url?: string | null | undefined;
|
|
2224
|
-
description?: string | null | undefined;
|
|
2225
2772
|
key_points?: string | null | undefined;
|
|
2226
2773
|
image_url?: string | null | undefined;
|
|
2227
2774
|
posted_date?: string | null | undefined;
|
|
@@ -2241,6 +2788,19 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
|
|
|
2241
2788
|
added_at?: string | null | undefined;
|
|
2242
2789
|
removed_at?: string | null | undefined;
|
|
2243
2790
|
}[];
|
|
2791
|
+
ads: {
|
|
2792
|
+
competitor: string;
|
|
2793
|
+
tags: string[];
|
|
2794
|
+
discovered_at: string | null;
|
|
2795
|
+
image_url?: string | null | undefined;
|
|
2796
|
+
initial_run?: boolean | null | undefined;
|
|
2797
|
+
is_live?: boolean | null | undefined;
|
|
2798
|
+
added_at?: string | null | undefined;
|
|
2799
|
+
removed_at?: string | null | undefined;
|
|
2800
|
+
content?: string | null | undefined;
|
|
2801
|
+
platform?: string | null | undefined;
|
|
2802
|
+
ad_format?: string | null | undefined;
|
|
2803
|
+
}[];
|
|
2244
2804
|
pricing: {
|
|
2245
2805
|
competitor: string;
|
|
2246
2806
|
tags: string[];
|
|
@@ -2255,9 +2815,9 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
|
|
|
2255
2815
|
competitor: string;
|
|
2256
2816
|
tags: string[];
|
|
2257
2817
|
discovered_at: string | null;
|
|
2818
|
+
description?: string | null | undefined;
|
|
2258
2819
|
title?: string | null | undefined;
|
|
2259
2820
|
url?: string | null | undefined;
|
|
2260
|
-
description?: string | null | undefined;
|
|
2261
2821
|
key_points?: string | null | undefined;
|
|
2262
2822
|
image_url?: string | null | undefined;
|
|
2263
2823
|
posted_date?: string | null | undefined;
|
|
@@ -2272,13 +2832,40 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
|
|
|
2272
2832
|
initial_run?: boolean | null | undefined;
|
|
2273
2833
|
content?: string | null | undefined;
|
|
2274
2834
|
}[];
|
|
2275
|
-
"
|
|
2835
|
+
"x-posts": {
|
|
2836
|
+
competitor: string;
|
|
2837
|
+
tags: string[];
|
|
2838
|
+
discovered_at: string | null;
|
|
2839
|
+
name?: string | null | undefined;
|
|
2840
|
+
url?: string | null | undefined;
|
|
2841
|
+
posted_date?: string | null | undefined;
|
|
2842
|
+
initial_run?: boolean | null | undefined;
|
|
2843
|
+
content?: string | null | undefined;
|
|
2844
|
+
post_id?: string | null | undefined;
|
|
2845
|
+
external_url?: string | null | undefined;
|
|
2846
|
+
}[];
|
|
2847
|
+
reviews: {
|
|
2276
2848
|
competitor: string;
|
|
2277
2849
|
tags: string[];
|
|
2278
2850
|
discovered_at: string | null;
|
|
2851
|
+
source?: string | null | undefined;
|
|
2852
|
+
name?: string | null | undefined;
|
|
2279
2853
|
title?: string | null | undefined;
|
|
2280
2854
|
url?: string | null | undefined;
|
|
2855
|
+
posted_date?: string | null | undefined;
|
|
2856
|
+
initial_run?: boolean | null | undefined;
|
|
2857
|
+
rating?: string | null | undefined;
|
|
2858
|
+
sentiment?: string | null | undefined;
|
|
2859
|
+
excerpt?: string | null | undefined;
|
|
2860
|
+
external_id?: string | null | undefined;
|
|
2861
|
+
}[];
|
|
2862
|
+
"youtube-videos": {
|
|
2863
|
+
competitor: string;
|
|
2864
|
+
tags: string[];
|
|
2865
|
+
discovered_at: string | null;
|
|
2281
2866
|
description?: string | null | undefined;
|
|
2867
|
+
title?: string | null | undefined;
|
|
2868
|
+
url?: string | null | undefined;
|
|
2282
2869
|
posted_date?: string | null | undefined;
|
|
2283
2870
|
initial_run?: boolean | null | undefined;
|
|
2284
2871
|
}[];
|
|
@@ -2286,9 +2873,9 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
|
|
|
2286
2873
|
competitor: string;
|
|
2287
2874
|
tags: string[];
|
|
2288
2875
|
discovered_at: string | null;
|
|
2876
|
+
description?: string | null | undefined;
|
|
2289
2877
|
title?: string | null | undefined;
|
|
2290
2878
|
url?: string | null | undefined;
|
|
2291
|
-
description?: string | null | undefined;
|
|
2292
2879
|
image_url?: string | null | undefined;
|
|
2293
2880
|
initial_run?: boolean | null | undefined;
|
|
2294
2881
|
location?: string | null | undefined;
|
|
@@ -2336,9 +2923,9 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
|
|
|
2336
2923
|
competitor: string;
|
|
2337
2924
|
tags: string[];
|
|
2338
2925
|
discovered_at: string | null;
|
|
2926
|
+
description?: string | null | undefined;
|
|
2339
2927
|
title?: string | null | undefined;
|
|
2340
2928
|
url?: string | null | undefined;
|
|
2341
|
-
description?: string | null | undefined;
|
|
2342
2929
|
key_points?: string | null | undefined;
|
|
2343
2930
|
image_url?: string | null | undefined;
|
|
2344
2931
|
posted_date?: string | null | undefined;
|
|
@@ -2348,9 +2935,9 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
|
|
|
2348
2935
|
competitor: string;
|
|
2349
2936
|
tags: string[];
|
|
2350
2937
|
discovered_at: string | null;
|
|
2938
|
+
description?: string | null | undefined;
|
|
2351
2939
|
title?: string | null | undefined;
|
|
2352
2940
|
url?: string | null | undefined;
|
|
2353
|
-
description?: string | null | undefined;
|
|
2354
2941
|
key_points?: string | null | undefined;
|
|
2355
2942
|
image_url?: string | null | undefined;
|
|
2356
2943
|
posted_date?: string | null | undefined;
|
|
@@ -2370,6 +2957,19 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
|
|
|
2370
2957
|
added_at?: string | null | undefined;
|
|
2371
2958
|
removed_at?: string | null | undefined;
|
|
2372
2959
|
}[];
|
|
2960
|
+
ads: {
|
|
2961
|
+
competitor: string;
|
|
2962
|
+
tags: string[];
|
|
2963
|
+
discovered_at: string | null;
|
|
2964
|
+
image_url?: string | null | undefined;
|
|
2965
|
+
initial_run?: boolean | null | undefined;
|
|
2966
|
+
is_live?: boolean | null | undefined;
|
|
2967
|
+
added_at?: string | null | undefined;
|
|
2968
|
+
removed_at?: string | null | undefined;
|
|
2969
|
+
content?: string | null | undefined;
|
|
2970
|
+
platform?: string | null | undefined;
|
|
2971
|
+
ad_format?: string | null | undefined;
|
|
2972
|
+
}[];
|
|
2373
2973
|
pricing: {
|
|
2374
2974
|
competitor: string;
|
|
2375
2975
|
tags: string[];
|
|
@@ -2384,9 +2984,9 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
|
|
|
2384
2984
|
competitor: string;
|
|
2385
2985
|
tags: string[];
|
|
2386
2986
|
discovered_at: string | null;
|
|
2987
|
+
description?: string | null | undefined;
|
|
2387
2988
|
title?: string | null | undefined;
|
|
2388
2989
|
url?: string | null | undefined;
|
|
2389
|
-
description?: string | null | undefined;
|
|
2390
2990
|
key_points?: string | null | undefined;
|
|
2391
2991
|
image_url?: string | null | undefined;
|
|
2392
2992
|
posted_date?: string | null | undefined;
|
|
@@ -2401,13 +3001,40 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
|
|
|
2401
3001
|
initial_run?: boolean | null | undefined;
|
|
2402
3002
|
content?: string | null | undefined;
|
|
2403
3003
|
}[];
|
|
2404
|
-
"
|
|
3004
|
+
"x-posts": {
|
|
3005
|
+
competitor: string;
|
|
3006
|
+
tags: string[];
|
|
3007
|
+
discovered_at: string | null;
|
|
3008
|
+
name?: string | null | undefined;
|
|
3009
|
+
url?: string | null | undefined;
|
|
3010
|
+
posted_date?: string | null | undefined;
|
|
3011
|
+
initial_run?: boolean | null | undefined;
|
|
3012
|
+
content?: string | null | undefined;
|
|
3013
|
+
post_id?: string | null | undefined;
|
|
3014
|
+
external_url?: string | null | undefined;
|
|
3015
|
+
}[];
|
|
3016
|
+
reviews: {
|
|
2405
3017
|
competitor: string;
|
|
2406
3018
|
tags: string[];
|
|
2407
3019
|
discovered_at: string | null;
|
|
3020
|
+
source?: string | null | undefined;
|
|
3021
|
+
name?: string | null | undefined;
|
|
2408
3022
|
title?: string | null | undefined;
|
|
2409
3023
|
url?: string | null | undefined;
|
|
3024
|
+
posted_date?: string | null | undefined;
|
|
3025
|
+
initial_run?: boolean | null | undefined;
|
|
3026
|
+
rating?: string | null | undefined;
|
|
3027
|
+
sentiment?: string | null | undefined;
|
|
3028
|
+
excerpt?: string | null | undefined;
|
|
3029
|
+
external_id?: string | null | undefined;
|
|
3030
|
+
}[];
|
|
3031
|
+
"youtube-videos": {
|
|
3032
|
+
competitor: string;
|
|
3033
|
+
tags: string[];
|
|
3034
|
+
discovered_at: string | null;
|
|
2410
3035
|
description?: string | null | undefined;
|
|
3036
|
+
title?: string | null | undefined;
|
|
3037
|
+
url?: string | null | undefined;
|
|
2411
3038
|
posted_date?: string | null | undefined;
|
|
2412
3039
|
initial_run?: boolean | null | undefined;
|
|
2413
3040
|
}[];
|
|
@@ -2415,9 +3042,9 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
|
|
|
2415
3042
|
competitor: string;
|
|
2416
3043
|
tags: string[];
|
|
2417
3044
|
discovered_at: string | null;
|
|
3045
|
+
description?: string | null | undefined;
|
|
2418
3046
|
title?: string | null | undefined;
|
|
2419
3047
|
url?: string | null | undefined;
|
|
2420
|
-
description?: string | null | undefined;
|
|
2421
3048
|
image_url?: string | null | undefined;
|
|
2422
3049
|
initial_run?: boolean | null | undefined;
|
|
2423
3050
|
location?: string | null | undefined;
|
|
@@ -2491,9 +3118,9 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
|
|
|
2491
3118
|
competitor: string;
|
|
2492
3119
|
tags: string[];
|
|
2493
3120
|
discovered_at: string | null;
|
|
3121
|
+
description?: string | null | undefined;
|
|
2494
3122
|
title?: string | null | undefined;
|
|
2495
3123
|
url?: string | null | undefined;
|
|
2496
|
-
description?: string | null | undefined;
|
|
2497
3124
|
key_points?: string | null | undefined;
|
|
2498
3125
|
image_url?: string | null | undefined;
|
|
2499
3126
|
posted_date?: string | null | undefined;
|
|
@@ -2503,9 +3130,9 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
|
|
|
2503
3130
|
competitor: string;
|
|
2504
3131
|
tags: string[];
|
|
2505
3132
|
discovered_at: string | null;
|
|
3133
|
+
description?: string | null | undefined;
|
|
2506
3134
|
title?: string | null | undefined;
|
|
2507
3135
|
url?: string | null | undefined;
|
|
2508
|
-
description?: string | null | undefined;
|
|
2509
3136
|
key_points?: string | null | undefined;
|
|
2510
3137
|
image_url?: string | null | undefined;
|
|
2511
3138
|
posted_date?: string | null | undefined;
|
|
@@ -2525,6 +3152,19 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
|
|
|
2525
3152
|
added_at?: string | null | undefined;
|
|
2526
3153
|
removed_at?: string | null | undefined;
|
|
2527
3154
|
}[];
|
|
3155
|
+
ads: {
|
|
3156
|
+
competitor: string;
|
|
3157
|
+
tags: string[];
|
|
3158
|
+
discovered_at: string | null;
|
|
3159
|
+
image_url?: string | null | undefined;
|
|
3160
|
+
initial_run?: boolean | null | undefined;
|
|
3161
|
+
is_live?: boolean | null | undefined;
|
|
3162
|
+
added_at?: string | null | undefined;
|
|
3163
|
+
removed_at?: string | null | undefined;
|
|
3164
|
+
content?: string | null | undefined;
|
|
3165
|
+
platform?: string | null | undefined;
|
|
3166
|
+
ad_format?: string | null | undefined;
|
|
3167
|
+
}[];
|
|
2528
3168
|
pricing: {
|
|
2529
3169
|
competitor: string;
|
|
2530
3170
|
tags: string[];
|
|
@@ -2539,9 +3179,9 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
|
|
|
2539
3179
|
competitor: string;
|
|
2540
3180
|
tags: string[];
|
|
2541
3181
|
discovered_at: string | null;
|
|
3182
|
+
description?: string | null | undefined;
|
|
2542
3183
|
title?: string | null | undefined;
|
|
2543
3184
|
url?: string | null | undefined;
|
|
2544
|
-
description?: string | null | undefined;
|
|
2545
3185
|
key_points?: string | null | undefined;
|
|
2546
3186
|
image_url?: string | null | undefined;
|
|
2547
3187
|
posted_date?: string | null | undefined;
|
|
@@ -2556,13 +3196,40 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
|
|
|
2556
3196
|
initial_run?: boolean | null | undefined;
|
|
2557
3197
|
content?: string | null | undefined;
|
|
2558
3198
|
}[];
|
|
2559
|
-
"
|
|
3199
|
+
"x-posts": {
|
|
3200
|
+
competitor: string;
|
|
3201
|
+
tags: string[];
|
|
3202
|
+
discovered_at: string | null;
|
|
3203
|
+
name?: string | null | undefined;
|
|
3204
|
+
url?: string | null | undefined;
|
|
3205
|
+
posted_date?: string | null | undefined;
|
|
3206
|
+
initial_run?: boolean | null | undefined;
|
|
3207
|
+
content?: string | null | undefined;
|
|
3208
|
+
post_id?: string | null | undefined;
|
|
3209
|
+
external_url?: string | null | undefined;
|
|
3210
|
+
}[];
|
|
3211
|
+
reviews: {
|
|
2560
3212
|
competitor: string;
|
|
2561
3213
|
tags: string[];
|
|
2562
3214
|
discovered_at: string | null;
|
|
3215
|
+
source?: string | null | undefined;
|
|
3216
|
+
name?: string | null | undefined;
|
|
2563
3217
|
title?: string | null | undefined;
|
|
2564
3218
|
url?: string | null | undefined;
|
|
3219
|
+
posted_date?: string | null | undefined;
|
|
3220
|
+
initial_run?: boolean | null | undefined;
|
|
3221
|
+
rating?: string | null | undefined;
|
|
3222
|
+
sentiment?: string | null | undefined;
|
|
3223
|
+
excerpt?: string | null | undefined;
|
|
3224
|
+
external_id?: string | null | undefined;
|
|
3225
|
+
}[];
|
|
3226
|
+
"youtube-videos": {
|
|
3227
|
+
competitor: string;
|
|
3228
|
+
tags: string[];
|
|
3229
|
+
discovered_at: string | null;
|
|
2565
3230
|
description?: string | null | undefined;
|
|
3231
|
+
title?: string | null | undefined;
|
|
3232
|
+
url?: string | null | undefined;
|
|
2566
3233
|
posted_date?: string | null | undefined;
|
|
2567
3234
|
initial_run?: boolean | null | undefined;
|
|
2568
3235
|
}[];
|
|
@@ -2570,9 +3237,9 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
|
|
|
2570
3237
|
competitor: string;
|
|
2571
3238
|
tags: string[];
|
|
2572
3239
|
discovered_at: string | null;
|
|
3240
|
+
description?: string | null | undefined;
|
|
2573
3241
|
title?: string | null | undefined;
|
|
2574
3242
|
url?: string | null | undefined;
|
|
2575
|
-
description?: string | null | undefined;
|
|
2576
3243
|
image_url?: string | null | undefined;
|
|
2577
3244
|
initial_run?: boolean | null | undefined;
|
|
2578
3245
|
location?: string | null | undefined;
|
|
@@ -2646,9 +3313,9 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
|
|
|
2646
3313
|
competitor: string;
|
|
2647
3314
|
tags: string[];
|
|
2648
3315
|
discovered_at: string | null;
|
|
3316
|
+
description?: string | null | undefined;
|
|
2649
3317
|
title?: string | null | undefined;
|
|
2650
3318
|
url?: string | null | undefined;
|
|
2651
|
-
description?: string | null | undefined;
|
|
2652
3319
|
key_points?: string | null | undefined;
|
|
2653
3320
|
image_url?: string | null | undefined;
|
|
2654
3321
|
posted_date?: string | null | undefined;
|
|
@@ -2658,9 +3325,9 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
|
|
|
2658
3325
|
competitor: string;
|
|
2659
3326
|
tags: string[];
|
|
2660
3327
|
discovered_at: string | null;
|
|
3328
|
+
description?: string | null | undefined;
|
|
2661
3329
|
title?: string | null | undefined;
|
|
2662
3330
|
url?: string | null | undefined;
|
|
2663
|
-
description?: string | null | undefined;
|
|
2664
3331
|
key_points?: string | null | undefined;
|
|
2665
3332
|
image_url?: string | null | undefined;
|
|
2666
3333
|
posted_date?: string | null | undefined;
|
|
@@ -2680,6 +3347,19 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
|
|
|
2680
3347
|
added_at?: string | null | undefined;
|
|
2681
3348
|
removed_at?: string | null | undefined;
|
|
2682
3349
|
}[];
|
|
3350
|
+
ads: {
|
|
3351
|
+
competitor: string;
|
|
3352
|
+
tags: string[];
|
|
3353
|
+
discovered_at: string | null;
|
|
3354
|
+
image_url?: string | null | undefined;
|
|
3355
|
+
initial_run?: boolean | null | undefined;
|
|
3356
|
+
is_live?: boolean | null | undefined;
|
|
3357
|
+
added_at?: string | null | undefined;
|
|
3358
|
+
removed_at?: string | null | undefined;
|
|
3359
|
+
content?: string | null | undefined;
|
|
3360
|
+
platform?: string | null | undefined;
|
|
3361
|
+
ad_format?: string | null | undefined;
|
|
3362
|
+
}[];
|
|
2683
3363
|
pricing: {
|
|
2684
3364
|
competitor: string;
|
|
2685
3365
|
tags: string[];
|
|
@@ -2694,9 +3374,9 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
|
|
|
2694
3374
|
competitor: string;
|
|
2695
3375
|
tags: string[];
|
|
2696
3376
|
discovered_at: string | null;
|
|
3377
|
+
description?: string | null | undefined;
|
|
2697
3378
|
title?: string | null | undefined;
|
|
2698
3379
|
url?: string | null | undefined;
|
|
2699
|
-
description?: string | null | undefined;
|
|
2700
3380
|
key_points?: string | null | undefined;
|
|
2701
3381
|
image_url?: string | null | undefined;
|
|
2702
3382
|
posted_date?: string | null | undefined;
|
|
@@ -2711,13 +3391,40 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
|
|
|
2711
3391
|
initial_run?: boolean | null | undefined;
|
|
2712
3392
|
content?: string | null | undefined;
|
|
2713
3393
|
}[];
|
|
2714
|
-
"
|
|
3394
|
+
"x-posts": {
|
|
3395
|
+
competitor: string;
|
|
3396
|
+
tags: string[];
|
|
3397
|
+
discovered_at: string | null;
|
|
3398
|
+
name?: string | null | undefined;
|
|
3399
|
+
url?: string | null | undefined;
|
|
3400
|
+
posted_date?: string | null | undefined;
|
|
3401
|
+
initial_run?: boolean | null | undefined;
|
|
3402
|
+
content?: string | null | undefined;
|
|
3403
|
+
post_id?: string | null | undefined;
|
|
3404
|
+
external_url?: string | null | undefined;
|
|
3405
|
+
}[];
|
|
3406
|
+
reviews: {
|
|
2715
3407
|
competitor: string;
|
|
2716
3408
|
tags: string[];
|
|
2717
3409
|
discovered_at: string | null;
|
|
3410
|
+
source?: string | null | undefined;
|
|
3411
|
+
name?: string | null | undefined;
|
|
2718
3412
|
title?: string | null | undefined;
|
|
2719
3413
|
url?: string | null | undefined;
|
|
3414
|
+
posted_date?: string | null | undefined;
|
|
3415
|
+
initial_run?: boolean | null | undefined;
|
|
3416
|
+
rating?: string | null | undefined;
|
|
3417
|
+
sentiment?: string | null | undefined;
|
|
3418
|
+
excerpt?: string | null | undefined;
|
|
3419
|
+
external_id?: string | null | undefined;
|
|
3420
|
+
}[];
|
|
3421
|
+
"youtube-videos": {
|
|
3422
|
+
competitor: string;
|
|
3423
|
+
tags: string[];
|
|
3424
|
+
discovered_at: string | null;
|
|
2720
3425
|
description?: string | null | undefined;
|
|
3426
|
+
title?: string | null | undefined;
|
|
3427
|
+
url?: string | null | undefined;
|
|
2721
3428
|
posted_date?: string | null | undefined;
|
|
2722
3429
|
initial_run?: boolean | null | undefined;
|
|
2723
3430
|
}[];
|
|
@@ -2725,9 +3432,9 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
|
|
|
2725
3432
|
competitor: string;
|
|
2726
3433
|
tags: string[];
|
|
2727
3434
|
discovered_at: string | null;
|
|
3435
|
+
description?: string | null | undefined;
|
|
2728
3436
|
title?: string | null | undefined;
|
|
2729
3437
|
url?: string | null | undefined;
|
|
2730
|
-
description?: string | null | undefined;
|
|
2731
3438
|
image_url?: string | null | undefined;
|
|
2732
3439
|
initial_run?: boolean | null | undefined;
|
|
2733
3440
|
location?: string | null | undefined;
|
|
@@ -2803,9 +3510,9 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
|
|
|
2803
3510
|
competitor: string;
|
|
2804
3511
|
tags: string[];
|
|
2805
3512
|
discovered_at: string | null;
|
|
3513
|
+
description?: string | null | undefined;
|
|
2806
3514
|
title?: string | null | undefined;
|
|
2807
3515
|
url?: string | null | undefined;
|
|
2808
|
-
description?: string | null | undefined;
|
|
2809
3516
|
key_points?: string | null | undefined;
|
|
2810
3517
|
image_url?: string | null | undefined;
|
|
2811
3518
|
posted_date?: string | null | undefined;
|
|
@@ -2815,9 +3522,9 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
|
|
|
2815
3522
|
competitor: string;
|
|
2816
3523
|
tags: string[];
|
|
2817
3524
|
discovered_at: string | null;
|
|
3525
|
+
description?: string | null | undefined;
|
|
2818
3526
|
title?: string | null | undefined;
|
|
2819
3527
|
url?: string | null | undefined;
|
|
2820
|
-
description?: string | null | undefined;
|
|
2821
3528
|
key_points?: string | null | undefined;
|
|
2822
3529
|
image_url?: string | null | undefined;
|
|
2823
3530
|
posted_date?: string | null | undefined;
|
|
@@ -2837,6 +3544,19 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
|
|
|
2837
3544
|
added_at?: string | null | undefined;
|
|
2838
3545
|
removed_at?: string | null | undefined;
|
|
2839
3546
|
}[];
|
|
3547
|
+
ads: {
|
|
3548
|
+
competitor: string;
|
|
3549
|
+
tags: string[];
|
|
3550
|
+
discovered_at: string | null;
|
|
3551
|
+
image_url?: string | null | undefined;
|
|
3552
|
+
initial_run?: boolean | null | undefined;
|
|
3553
|
+
is_live?: boolean | null | undefined;
|
|
3554
|
+
added_at?: string | null | undefined;
|
|
3555
|
+
removed_at?: string | null | undefined;
|
|
3556
|
+
content?: string | null | undefined;
|
|
3557
|
+
platform?: string | null | undefined;
|
|
3558
|
+
ad_format?: string | null | undefined;
|
|
3559
|
+
}[];
|
|
2840
3560
|
pricing: {
|
|
2841
3561
|
competitor: string;
|
|
2842
3562
|
tags: string[];
|
|
@@ -2851,9 +3571,9 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
|
|
|
2851
3571
|
competitor: string;
|
|
2852
3572
|
tags: string[];
|
|
2853
3573
|
discovered_at: string | null;
|
|
3574
|
+
description?: string | null | undefined;
|
|
2854
3575
|
title?: string | null | undefined;
|
|
2855
3576
|
url?: string | null | undefined;
|
|
2856
|
-
description?: string | null | undefined;
|
|
2857
3577
|
key_points?: string | null | undefined;
|
|
2858
3578
|
image_url?: string | null | undefined;
|
|
2859
3579
|
posted_date?: string | null | undefined;
|
|
@@ -2868,13 +3588,40 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
|
|
|
2868
3588
|
initial_run?: boolean | null | undefined;
|
|
2869
3589
|
content?: string | null | undefined;
|
|
2870
3590
|
}[];
|
|
2871
|
-
"
|
|
3591
|
+
"x-posts": {
|
|
3592
|
+
competitor: string;
|
|
3593
|
+
tags: string[];
|
|
3594
|
+
discovered_at: string | null;
|
|
3595
|
+
name?: string | null | undefined;
|
|
3596
|
+
url?: string | null | undefined;
|
|
3597
|
+
posted_date?: string | null | undefined;
|
|
3598
|
+
initial_run?: boolean | null | undefined;
|
|
3599
|
+
content?: string | null | undefined;
|
|
3600
|
+
post_id?: string | null | undefined;
|
|
3601
|
+
external_url?: string | null | undefined;
|
|
3602
|
+
}[];
|
|
3603
|
+
reviews: {
|
|
2872
3604
|
competitor: string;
|
|
2873
3605
|
tags: string[];
|
|
2874
3606
|
discovered_at: string | null;
|
|
3607
|
+
source?: string | null | undefined;
|
|
3608
|
+
name?: string | null | undefined;
|
|
2875
3609
|
title?: string | null | undefined;
|
|
2876
3610
|
url?: string | null | undefined;
|
|
3611
|
+
posted_date?: string | null | undefined;
|
|
3612
|
+
initial_run?: boolean | null | undefined;
|
|
3613
|
+
rating?: string | null | undefined;
|
|
3614
|
+
sentiment?: string | null | undefined;
|
|
3615
|
+
excerpt?: string | null | undefined;
|
|
3616
|
+
external_id?: string | null | undefined;
|
|
3617
|
+
}[];
|
|
3618
|
+
"youtube-videos": {
|
|
3619
|
+
competitor: string;
|
|
3620
|
+
tags: string[];
|
|
3621
|
+
discovered_at: string | null;
|
|
2877
3622
|
description?: string | null | undefined;
|
|
3623
|
+
title?: string | null | undefined;
|
|
3624
|
+
url?: string | null | undefined;
|
|
2878
3625
|
posted_date?: string | null | undefined;
|
|
2879
3626
|
initial_run?: boolean | null | undefined;
|
|
2880
3627
|
}[];
|
|
@@ -2882,9 +3629,9 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
|
|
|
2882
3629
|
competitor: string;
|
|
2883
3630
|
tags: string[];
|
|
2884
3631
|
discovered_at: string | null;
|
|
3632
|
+
description?: string | null | undefined;
|
|
2885
3633
|
title?: string | null | undefined;
|
|
2886
3634
|
url?: string | null | undefined;
|
|
2887
|
-
description?: string | null | undefined;
|
|
2888
3635
|
image_url?: string | null | undefined;
|
|
2889
3636
|
initial_run?: boolean | null | undefined;
|
|
2890
3637
|
location?: string | null | undefined;
|
|
@@ -2960,9 +3707,9 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
|
|
|
2960
3707
|
competitor: string;
|
|
2961
3708
|
tags: string[];
|
|
2962
3709
|
discovered_at: string | null;
|
|
3710
|
+
description?: string | null | undefined;
|
|
2963
3711
|
title?: string | null | undefined;
|
|
2964
3712
|
url?: string | null | undefined;
|
|
2965
|
-
description?: string | null | undefined;
|
|
2966
3713
|
key_points?: string | null | undefined;
|
|
2967
3714
|
image_url?: string | null | undefined;
|
|
2968
3715
|
posted_date?: string | null | undefined;
|
|
@@ -2972,9 +3719,9 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
|
|
|
2972
3719
|
competitor: string;
|
|
2973
3720
|
tags: string[];
|
|
2974
3721
|
discovered_at: string | null;
|
|
3722
|
+
description?: string | null | undefined;
|
|
2975
3723
|
title?: string | null | undefined;
|
|
2976
3724
|
url?: string | null | undefined;
|
|
2977
|
-
description?: string | null | undefined;
|
|
2978
3725
|
key_points?: string | null | undefined;
|
|
2979
3726
|
image_url?: string | null | undefined;
|
|
2980
3727
|
posted_date?: string | null | undefined;
|
|
@@ -2994,6 +3741,19 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
|
|
|
2994
3741
|
added_at?: string | null | undefined;
|
|
2995
3742
|
removed_at?: string | null | undefined;
|
|
2996
3743
|
}[];
|
|
3744
|
+
ads: {
|
|
3745
|
+
competitor: string;
|
|
3746
|
+
tags: string[];
|
|
3747
|
+
discovered_at: string | null;
|
|
3748
|
+
image_url?: string | null | undefined;
|
|
3749
|
+
initial_run?: boolean | null | undefined;
|
|
3750
|
+
is_live?: boolean | null | undefined;
|
|
3751
|
+
added_at?: string | null | undefined;
|
|
3752
|
+
removed_at?: string | null | undefined;
|
|
3753
|
+
content?: string | null | undefined;
|
|
3754
|
+
platform?: string | null | undefined;
|
|
3755
|
+
ad_format?: string | null | undefined;
|
|
3756
|
+
}[];
|
|
2997
3757
|
pricing: {
|
|
2998
3758
|
competitor: string;
|
|
2999
3759
|
tags: string[];
|
|
@@ -3008,9 +3768,9 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
|
|
|
3008
3768
|
competitor: string;
|
|
3009
3769
|
tags: string[];
|
|
3010
3770
|
discovered_at: string | null;
|
|
3771
|
+
description?: string | null | undefined;
|
|
3011
3772
|
title?: string | null | undefined;
|
|
3012
3773
|
url?: string | null | undefined;
|
|
3013
|
-
description?: string | null | undefined;
|
|
3014
3774
|
key_points?: string | null | undefined;
|
|
3015
3775
|
image_url?: string | null | undefined;
|
|
3016
3776
|
posted_date?: string | null | undefined;
|
|
@@ -3025,13 +3785,40 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
|
|
|
3025
3785
|
initial_run?: boolean | null | undefined;
|
|
3026
3786
|
content?: string | null | undefined;
|
|
3027
3787
|
}[];
|
|
3028
|
-
"
|
|
3788
|
+
"x-posts": {
|
|
3789
|
+
competitor: string;
|
|
3790
|
+
tags: string[];
|
|
3791
|
+
discovered_at: string | null;
|
|
3792
|
+
name?: string | null | undefined;
|
|
3793
|
+
url?: string | null | undefined;
|
|
3794
|
+
posted_date?: string | null | undefined;
|
|
3795
|
+
initial_run?: boolean | null | undefined;
|
|
3796
|
+
content?: string | null | undefined;
|
|
3797
|
+
post_id?: string | null | undefined;
|
|
3798
|
+
external_url?: string | null | undefined;
|
|
3799
|
+
}[];
|
|
3800
|
+
reviews: {
|
|
3029
3801
|
competitor: string;
|
|
3030
3802
|
tags: string[];
|
|
3031
3803
|
discovered_at: string | null;
|
|
3804
|
+
source?: string | null | undefined;
|
|
3805
|
+
name?: string | null | undefined;
|
|
3032
3806
|
title?: string | null | undefined;
|
|
3033
3807
|
url?: string | null | undefined;
|
|
3808
|
+
posted_date?: string | null | undefined;
|
|
3809
|
+
initial_run?: boolean | null | undefined;
|
|
3810
|
+
rating?: string | null | undefined;
|
|
3811
|
+
sentiment?: string | null | undefined;
|
|
3812
|
+
excerpt?: string | null | undefined;
|
|
3813
|
+
external_id?: string | null | undefined;
|
|
3814
|
+
}[];
|
|
3815
|
+
"youtube-videos": {
|
|
3816
|
+
competitor: string;
|
|
3817
|
+
tags: string[];
|
|
3818
|
+
discovered_at: string | null;
|
|
3034
3819
|
description?: string | null | undefined;
|
|
3820
|
+
title?: string | null | undefined;
|
|
3821
|
+
url?: string | null | undefined;
|
|
3035
3822
|
posted_date?: string | null | undefined;
|
|
3036
3823
|
initial_run?: boolean | null | undefined;
|
|
3037
3824
|
}[];
|
|
@@ -3039,9 +3826,9 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
|
|
|
3039
3826
|
competitor: string;
|
|
3040
3827
|
tags: string[];
|
|
3041
3828
|
discovered_at: string | null;
|
|
3829
|
+
description?: string | null | undefined;
|
|
3042
3830
|
title?: string | null | undefined;
|
|
3043
3831
|
url?: string | null | undefined;
|
|
3044
|
-
description?: string | null | undefined;
|
|
3045
3832
|
image_url?: string | null | undefined;
|
|
3046
3833
|
initial_run?: boolean | null | undefined;
|
|
3047
3834
|
location?: string | null | undefined;
|
|
@@ -3101,7 +3888,7 @@ export declare const CompetitorRef: z.ZodObject<{
|
|
|
3101
3888
|
export type CompetitorRef = z.infer<typeof CompetitorRef>;
|
|
3102
3889
|
export declare const ActivityItem: z.ZodObject<{
|
|
3103
3890
|
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"]>;
|
|
3891
|
+
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
3892
|
change_type: z.ZodEnum<["added", "updated", "removed"]>;
|
|
3106
3893
|
change_date: z.ZodString;
|
|
3107
3894
|
competitor: z.ZodObject<{
|
|
@@ -3114,1074 +3901,64 @@ export declare const ActivityItem: z.ZodObject<{
|
|
|
3114
3901
|
id: string;
|
|
3115
3902
|
name: string | null;
|
|
3116
3903
|
}>;
|
|
3117
|
-
data: z.
|
|
3118
|
-
|
|
3119
|
-
|
|
3120
|
-
|
|
3121
|
-
|
|
3122
|
-
|
|
3123
|
-
|
|
3124
|
-
|
|
3125
|
-
|
|
3126
|
-
|
|
3127
|
-
|
|
3128
|
-
|
|
3129
|
-
|
|
3130
|
-
|
|
3131
|
-
|
|
3132
|
-
|
|
3133
|
-
|
|
3134
|
-
|
|
3135
|
-
|
|
3136
|
-
|
|
3137
|
-
|
|
3138
|
-
|
|
3139
|
-
|
|
3140
|
-
|
|
3141
|
-
|
|
3142
|
-
|
|
3143
|
-
|
|
3144
|
-
|
|
3145
|
-
|
|
3146
|
-
|
|
3147
|
-
|
|
3148
|
-
|
|
3149
|
-
|
|
3150
|
-
|
|
3151
|
-
|
|
3152
|
-
|
|
3153
|
-
|
|
3154
|
-
|
|
3155
|
-
|
|
3156
|
-
|
|
3157
|
-
added_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3158
|
-
removed_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3159
|
-
competitor: z.ZodString;
|
|
3160
|
-
tags: z.ZodArray<z.ZodString, "many">;
|
|
3161
|
-
discovered_at: z.ZodNullable<z.ZodString>;
|
|
3162
|
-
initial_run: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
3163
|
-
}, "strip", z.ZodTypeAny, {
|
|
3164
|
-
competitor: string;
|
|
3165
|
-
tags: string[];
|
|
3166
|
-
discovered_at: string | null;
|
|
3167
|
-
category?: string | null | undefined;
|
|
3168
|
-
title?: string | null | undefined;
|
|
3169
|
-
url?: string | null | undefined;
|
|
3170
|
-
posted_date?: string | null | undefined;
|
|
3171
|
-
initial_run?: boolean | null | undefined;
|
|
3172
|
-
location?: string | null | undefined;
|
|
3173
|
-
is_live?: boolean | null | undefined;
|
|
3174
|
-
added_at?: string | null | undefined;
|
|
3175
|
-
removed_at?: string | null | undefined;
|
|
3176
|
-
}, {
|
|
3177
|
-
competitor: string;
|
|
3178
|
-
tags: string[];
|
|
3179
|
-
discovered_at: string | null;
|
|
3180
|
-
category?: string | null | undefined;
|
|
3181
|
-
title?: string | null | undefined;
|
|
3182
|
-
url?: string | null | undefined;
|
|
3183
|
-
posted_date?: string | null | undefined;
|
|
3184
|
-
initial_run?: boolean | null | undefined;
|
|
3185
|
-
location?: string | null | undefined;
|
|
3186
|
-
is_live?: boolean | null | undefined;
|
|
3187
|
-
added_at?: string | null | undefined;
|
|
3188
|
-
removed_at?: string | null | undefined;
|
|
3189
|
-
}>, z.ZodObject<{
|
|
3190
|
-
pricing_data: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodRecord<z.ZodString, z.ZodUnknown>, z.ZodArray<z.ZodUnknown, "many">]>>>;
|
|
3191
|
-
changes: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3192
|
-
is_live: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
3193
|
-
last_updated_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3194
|
-
competitor: z.ZodString;
|
|
3195
|
-
tags: z.ZodArray<z.ZodString, "many">;
|
|
3196
|
-
discovered_at: z.ZodNullable<z.ZodString>;
|
|
3197
|
-
initial_run: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
3198
|
-
}, "strip", z.ZodTypeAny, {
|
|
3199
|
-
competitor: string;
|
|
3200
|
-
tags: string[];
|
|
3201
|
-
discovered_at: string | null;
|
|
3202
|
-
initial_run?: boolean | null | undefined;
|
|
3203
|
-
is_live?: boolean | null | undefined;
|
|
3204
|
-
pricing_data?: unknown[] | Record<string, unknown> | null | undefined;
|
|
3205
|
-
changes?: string | null | undefined;
|
|
3206
|
-
last_updated_at?: string | null | undefined;
|
|
3207
|
-
}, {
|
|
3208
|
-
competitor: string;
|
|
3209
|
-
tags: string[];
|
|
3210
|
-
discovered_at: string | null;
|
|
3211
|
-
initial_run?: boolean | null | undefined;
|
|
3212
|
-
is_live?: boolean | null | undefined;
|
|
3213
|
-
pricing_data?: unknown[] | Record<string, unknown> | null | undefined;
|
|
3214
|
-
changes?: string | null | undefined;
|
|
3215
|
-
last_updated_at?: string | null | undefined;
|
|
3216
|
-
}>, z.ZodObject<{
|
|
3217
|
-
url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3218
|
-
content: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3219
|
-
posted_date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3220
|
-
competitor: z.ZodString;
|
|
3221
|
-
tags: z.ZodArray<z.ZodString, "many">;
|
|
3222
|
-
discovered_at: z.ZodNullable<z.ZodString>;
|
|
3223
|
-
initial_run: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
3224
|
-
}, "strip", z.ZodTypeAny, {
|
|
3225
|
-
competitor: string;
|
|
3226
|
-
tags: string[];
|
|
3227
|
-
discovered_at: string | null;
|
|
3228
|
-
url?: string | null | undefined;
|
|
3229
|
-
posted_date?: string | null | undefined;
|
|
3230
|
-
initial_run?: boolean | null | undefined;
|
|
3231
|
-
content?: string | null | undefined;
|
|
3232
|
-
}, {
|
|
3233
|
-
competitor: string;
|
|
3234
|
-
tags: string[];
|
|
3235
|
-
discovered_at: string | null;
|
|
3236
|
-
url?: string | null | undefined;
|
|
3237
|
-
posted_date?: string | null | undefined;
|
|
3238
|
-
initial_run?: boolean | null | undefined;
|
|
3239
|
-
content?: string | null | undefined;
|
|
3240
|
-
}>, z.ZodObject<{
|
|
3241
|
-
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3242
|
-
url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3243
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3244
|
-
posted_date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3245
|
-
competitor: z.ZodString;
|
|
3246
|
-
tags: z.ZodArray<z.ZodString, "many">;
|
|
3247
|
-
discovered_at: z.ZodNullable<z.ZodString>;
|
|
3248
|
-
initial_run: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
3249
|
-
}, "strip", z.ZodTypeAny, {
|
|
3250
|
-
competitor: string;
|
|
3251
|
-
tags: string[];
|
|
3252
|
-
discovered_at: string | null;
|
|
3253
|
-
title?: string | null | undefined;
|
|
3254
|
-
url?: string | null | undefined;
|
|
3255
|
-
description?: string | null | undefined;
|
|
3256
|
-
posted_date?: string | null | undefined;
|
|
3257
|
-
initial_run?: boolean | null | undefined;
|
|
3258
|
-
}, {
|
|
3259
|
-
competitor: string;
|
|
3260
|
-
tags: string[];
|
|
3261
|
-
discovered_at: string | null;
|
|
3262
|
-
title?: string | null | undefined;
|
|
3263
|
-
url?: string | null | undefined;
|
|
3264
|
-
description?: string | null | undefined;
|
|
3265
|
-
posted_date?: string | null | undefined;
|
|
3266
|
-
initial_run?: boolean | null | undefined;
|
|
3267
|
-
}>, z.ZodObject<{
|
|
3268
|
-
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3269
|
-
url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3270
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3271
|
-
image_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3272
|
-
event_type: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3273
|
-
location: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3274
|
-
is_virtual: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
3275
|
-
event_date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3276
|
-
competitor: z.ZodString;
|
|
3277
|
-
tags: z.ZodArray<z.ZodString, "many">;
|
|
3278
|
-
discovered_at: z.ZodNullable<z.ZodString>;
|
|
3279
|
-
initial_run: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
3280
|
-
}, "strip", z.ZodTypeAny, {
|
|
3281
|
-
competitor: string;
|
|
3282
|
-
tags: string[];
|
|
3283
|
-
discovered_at: string | null;
|
|
3284
|
-
title?: string | null | undefined;
|
|
3285
|
-
url?: string | null | undefined;
|
|
3286
|
-
description?: string | null | undefined;
|
|
3287
|
-
image_url?: string | null | undefined;
|
|
3288
|
-
initial_run?: boolean | null | undefined;
|
|
3289
|
-
location?: string | null | undefined;
|
|
3290
|
-
event_type?: string | null | undefined;
|
|
3291
|
-
is_virtual?: boolean | null | undefined;
|
|
3292
|
-
event_date?: string | null | undefined;
|
|
3293
|
-
}, {
|
|
3294
|
-
competitor: string;
|
|
3295
|
-
tags: string[];
|
|
3296
|
-
discovered_at: string | null;
|
|
3297
|
-
title?: string | null | undefined;
|
|
3298
|
-
url?: string | null | undefined;
|
|
3299
|
-
description?: string | null | undefined;
|
|
3300
|
-
image_url?: string | null | undefined;
|
|
3301
|
-
initial_run?: boolean | null | undefined;
|
|
3302
|
-
location?: string | null | undefined;
|
|
3303
|
-
event_type?: string | null | undefined;
|
|
3304
|
-
is_virtual?: boolean | null | undefined;
|
|
3305
|
-
event_date?: string | null | undefined;
|
|
3306
|
-
}>, z.ZodObject<{
|
|
3307
|
-
message_text: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3308
|
-
message_level: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3309
|
-
order_on_page: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
3310
|
-
is_live: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
3311
|
-
added_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3312
|
-
removed_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3313
|
-
competitor: z.ZodString;
|
|
3314
|
-
tags: z.ZodArray<z.ZodString, "many">;
|
|
3315
|
-
discovered_at: z.ZodNullable<z.ZodString>;
|
|
3316
|
-
initial_run: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
3317
|
-
}, "strip", z.ZodTypeAny, {
|
|
3318
|
-
competitor: string;
|
|
3319
|
-
tags: string[];
|
|
3320
|
-
discovered_at: string | null;
|
|
3321
|
-
initial_run?: boolean | null | undefined;
|
|
3322
|
-
is_live?: boolean | null | undefined;
|
|
3323
|
-
added_at?: string | null | undefined;
|
|
3324
|
-
removed_at?: string | null | undefined;
|
|
3325
|
-
message_text?: string | null | undefined;
|
|
3326
|
-
message_level?: string | null | undefined;
|
|
3327
|
-
order_on_page?: number | null | undefined;
|
|
3328
|
-
}, {
|
|
3329
|
-
competitor: string;
|
|
3330
|
-
tags: string[];
|
|
3331
|
-
discovered_at: string | null;
|
|
3332
|
-
initial_run?: boolean | null | undefined;
|
|
3333
|
-
is_live?: boolean | null | undefined;
|
|
3334
|
-
added_at?: string | null | undefined;
|
|
3335
|
-
removed_at?: string | null | undefined;
|
|
3336
|
-
message_text?: string | null | undefined;
|
|
3337
|
-
message_level?: string | null | undefined;
|
|
3338
|
-
order_on_page?: number | null | undefined;
|
|
3339
|
-
}>, z.ZodObject<{
|
|
3340
|
-
metric: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3341
|
-
context_brand: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3342
|
-
is_live: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
3343
|
-
added_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3344
|
-
removed_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3345
|
-
competitor: z.ZodString;
|
|
3346
|
-
tags: z.ZodArray<z.ZodString, "many">;
|
|
3347
|
-
discovered_at: z.ZodNullable<z.ZodString>;
|
|
3348
|
-
initial_run: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
3349
|
-
}, "strip", z.ZodTypeAny, {
|
|
3350
|
-
competitor: string;
|
|
3351
|
-
tags: string[];
|
|
3352
|
-
discovered_at: string | null;
|
|
3353
|
-
initial_run?: boolean | null | undefined;
|
|
3354
|
-
is_live?: boolean | null | undefined;
|
|
3355
|
-
added_at?: string | null | undefined;
|
|
3356
|
-
removed_at?: string | null | undefined;
|
|
3357
|
-
metric?: string | null | undefined;
|
|
3358
|
-
context_brand?: string | null | undefined;
|
|
3359
|
-
}, {
|
|
3360
|
-
competitor: string;
|
|
3361
|
-
tags: string[];
|
|
3362
|
-
discovered_at: string | null;
|
|
3363
|
-
initial_run?: boolean | null | undefined;
|
|
3364
|
-
is_live?: boolean | null | undefined;
|
|
3365
|
-
added_at?: string | null | undefined;
|
|
3366
|
-
removed_at?: string | null | undefined;
|
|
3367
|
-
metric?: string | null | undefined;
|
|
3368
|
-
context_brand?: string | null | undefined;
|
|
3369
|
-
}>, z.ZodObject<{
|
|
3370
|
-
name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3371
|
-
logo_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3372
|
-
image_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3373
|
-
is_live: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
3374
|
-
added_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3375
|
-
removed_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3376
|
-
competitor: z.ZodString;
|
|
3377
|
-
tags: z.ZodArray<z.ZodString, "many">;
|
|
3378
|
-
discovered_at: z.ZodNullable<z.ZodString>;
|
|
3379
|
-
initial_run: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
3380
|
-
}, "strip", z.ZodTypeAny, {
|
|
3381
|
-
competitor: string;
|
|
3382
|
-
tags: string[];
|
|
3383
|
-
discovered_at: string | null;
|
|
3384
|
-
name?: string | null | undefined;
|
|
3385
|
-
image_url?: string | null | undefined;
|
|
3386
|
-
initial_run?: boolean | null | undefined;
|
|
3387
|
-
is_live?: boolean | null | undefined;
|
|
3388
|
-
added_at?: string | null | undefined;
|
|
3389
|
-
removed_at?: string | null | undefined;
|
|
3390
|
-
logo_url?: string | null | undefined;
|
|
3391
|
-
}, {
|
|
3392
|
-
competitor: string;
|
|
3393
|
-
tags: string[];
|
|
3394
|
-
discovered_at: string | null;
|
|
3395
|
-
name?: string | null | undefined;
|
|
3396
|
-
image_url?: string | null | undefined;
|
|
3397
|
-
initial_run?: boolean | null | undefined;
|
|
3398
|
-
is_live?: boolean | null | undefined;
|
|
3399
|
-
added_at?: string | null | undefined;
|
|
3400
|
-
removed_at?: string | null | undefined;
|
|
3401
|
-
logo_url?: string | null | undefined;
|
|
3402
|
-
}>, z.ZodObject<{
|
|
3403
|
-
url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3404
|
-
competitor: z.ZodString;
|
|
3405
|
-
tags: z.ZodArray<z.ZodString, "many">;
|
|
3406
|
-
discovered_at: z.ZodNullable<z.ZodString>;
|
|
3407
|
-
initial_run: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
3408
|
-
}, "strip", z.ZodTypeAny, {
|
|
3409
|
-
competitor: string;
|
|
3410
|
-
tags: string[];
|
|
3411
|
-
discovered_at: string | null;
|
|
3412
|
-
url?: string | null | undefined;
|
|
3413
|
-
initial_run?: boolean | null | undefined;
|
|
3414
|
-
}, {
|
|
3415
|
-
competitor: string;
|
|
3416
|
-
tags: string[];
|
|
3417
|
-
discovered_at: string | null;
|
|
3418
|
-
url?: string | null | undefined;
|
|
3419
|
-
initial_run?: boolean | null | undefined;
|
|
3420
|
-
}>]>;
|
|
3421
|
-
}, "strip", z.ZodTypeAny, {
|
|
3422
|
-
id: string;
|
|
3423
|
-
data: {
|
|
3424
|
-
competitor: string;
|
|
3425
|
-
tags: string[];
|
|
3426
|
-
discovered_at: string | null;
|
|
3427
|
-
title?: string | null | undefined;
|
|
3428
|
-
url?: string | null | undefined;
|
|
3429
|
-
description?: string | null | undefined;
|
|
3430
|
-
key_points?: string | null | undefined;
|
|
3431
|
-
image_url?: string | null | undefined;
|
|
3432
|
-
posted_date?: string | null | undefined;
|
|
3433
|
-
initial_run?: boolean | null | undefined;
|
|
3434
|
-
} | {
|
|
3435
|
-
competitor: string;
|
|
3436
|
-
tags: string[];
|
|
3437
|
-
discovered_at: string | null;
|
|
3438
|
-
category?: string | null | undefined;
|
|
3439
|
-
title?: string | null | undefined;
|
|
3440
|
-
url?: string | null | undefined;
|
|
3441
|
-
posted_date?: string | null | undefined;
|
|
3442
|
-
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[];
|
|
3450
|
-
discovered_at: string | null;
|
|
3451
|
-
initial_run?: boolean | null | undefined;
|
|
3452
|
-
is_live?: boolean | null | undefined;
|
|
3453
|
-
pricing_data?: unknown[] | Record<string, unknown> | null | undefined;
|
|
3454
|
-
changes?: string | null | undefined;
|
|
3455
|
-
last_updated_at?: string | null | undefined;
|
|
3456
|
-
} | {
|
|
3457
|
-
competitor: string;
|
|
3458
|
-
tags: string[];
|
|
3459
|
-
discovered_at: string | null;
|
|
3460
|
-
url?: string | null | undefined;
|
|
3461
|
-
posted_date?: string | null | undefined;
|
|
3462
|
-
initial_run?: boolean | null | undefined;
|
|
3463
|
-
content?: string | null | undefined;
|
|
3464
|
-
} | {
|
|
3465
|
-
competitor: string;
|
|
3466
|
-
tags: string[];
|
|
3467
|
-
discovered_at: string | null;
|
|
3468
|
-
title?: string | null | undefined;
|
|
3469
|
-
url?: string | null | undefined;
|
|
3470
|
-
description?: string | null | undefined;
|
|
3471
|
-
posted_date?: string | null | undefined;
|
|
3472
|
-
initial_run?: boolean | null | undefined;
|
|
3473
|
-
} | {
|
|
3474
|
-
competitor: string;
|
|
3475
|
-
tags: string[];
|
|
3476
|
-
discovered_at: string | null;
|
|
3477
|
-
title?: string | null | undefined;
|
|
3478
|
-
url?: string | null | undefined;
|
|
3479
|
-
description?: string | null | undefined;
|
|
3480
|
-
image_url?: string | null | undefined;
|
|
3481
|
-
initial_run?: boolean | null | undefined;
|
|
3482
|
-
location?: string | null | undefined;
|
|
3483
|
-
event_type?: string | null | undefined;
|
|
3484
|
-
is_virtual?: boolean | null | undefined;
|
|
3485
|
-
event_date?: string | null | undefined;
|
|
3486
|
-
} | {
|
|
3487
|
-
competitor: string;
|
|
3488
|
-
tags: string[];
|
|
3489
|
-
discovered_at: string | null;
|
|
3490
|
-
initial_run?: boolean | null | undefined;
|
|
3491
|
-
is_live?: boolean | null | undefined;
|
|
3492
|
-
added_at?: string | null | undefined;
|
|
3493
|
-
removed_at?: string | null | undefined;
|
|
3494
|
-
message_text?: string | null | undefined;
|
|
3495
|
-
message_level?: string | null | undefined;
|
|
3496
|
-
order_on_page?: number | null | undefined;
|
|
3497
|
-
} | {
|
|
3498
|
-
competitor: string;
|
|
3499
|
-
tags: string[];
|
|
3500
|
-
discovered_at: string | null;
|
|
3501
|
-
initial_run?: boolean | null | undefined;
|
|
3502
|
-
is_live?: boolean | null | undefined;
|
|
3503
|
-
added_at?: string | null | undefined;
|
|
3504
|
-
removed_at?: string | null | undefined;
|
|
3505
|
-
metric?: string | null | undefined;
|
|
3506
|
-
context_brand?: string | null | undefined;
|
|
3507
|
-
} | {
|
|
3508
|
-
competitor: string;
|
|
3509
|
-
tags: string[];
|
|
3510
|
-
discovered_at: string | null;
|
|
3511
|
-
name?: string | null | undefined;
|
|
3512
|
-
image_url?: string | null | undefined;
|
|
3513
|
-
initial_run?: boolean | null | undefined;
|
|
3514
|
-
is_live?: boolean | null | undefined;
|
|
3515
|
-
added_at?: string | null | undefined;
|
|
3516
|
-
removed_at?: string | null | undefined;
|
|
3517
|
-
logo_url?: string | null | undefined;
|
|
3518
|
-
} | {
|
|
3519
|
-
competitor: string;
|
|
3520
|
-
tags: string[];
|
|
3521
|
-
discovered_at: string | null;
|
|
3522
|
-
url?: string | null | undefined;
|
|
3523
|
-
initial_run?: boolean | null | undefined;
|
|
3524
|
-
};
|
|
3525
|
-
competitor: {
|
|
3526
|
-
id: string;
|
|
3527
|
-
name: string | null;
|
|
3528
|
-
};
|
|
3529
|
-
section: "blog-posts" | "press-posts" | "job-listings" | "pricing" | "case-studies" | "linkedin-posts" | "youtube-videos" | "events" | "messaging" | "metrics-claimed" | "logos" | "sitemap-urls";
|
|
3530
|
-
change_type: "added" | "updated" | "removed";
|
|
3531
|
-
change_date: string;
|
|
3532
|
-
}, {
|
|
3533
|
-
id: string;
|
|
3534
|
-
data: {
|
|
3535
|
-
competitor: string;
|
|
3536
|
-
tags: string[];
|
|
3537
|
-
discovered_at: string | null;
|
|
3538
|
-
title?: string | null | undefined;
|
|
3539
|
-
url?: string | null | undefined;
|
|
3540
|
-
description?: string | null | undefined;
|
|
3541
|
-
key_points?: string | null | undefined;
|
|
3542
|
-
image_url?: string | null | undefined;
|
|
3543
|
-
posted_date?: string | null | undefined;
|
|
3544
|
-
initial_run?: boolean | null | undefined;
|
|
3545
|
-
} | {
|
|
3546
|
-
competitor: string;
|
|
3547
|
-
tags: string[];
|
|
3548
|
-
discovered_at: string | null;
|
|
3549
|
-
category?: string | null | undefined;
|
|
3550
|
-
title?: string | null | undefined;
|
|
3551
|
-
url?: string | null | undefined;
|
|
3552
|
-
posted_date?: string | null | undefined;
|
|
3553
|
-
initial_run?: boolean | null | undefined;
|
|
3554
|
-
location?: string | null | undefined;
|
|
3555
|
-
is_live?: boolean | null | undefined;
|
|
3556
|
-
added_at?: string | null | undefined;
|
|
3557
|
-
removed_at?: string | null | undefined;
|
|
3558
|
-
} | {
|
|
3559
|
-
competitor: string;
|
|
3560
|
-
tags: string[];
|
|
3561
|
-
discovered_at: string | null;
|
|
3562
|
-
initial_run?: boolean | null | undefined;
|
|
3563
|
-
is_live?: boolean | null | undefined;
|
|
3564
|
-
pricing_data?: unknown[] | Record<string, unknown> | null | undefined;
|
|
3565
|
-
changes?: string | null | undefined;
|
|
3566
|
-
last_updated_at?: string | null | undefined;
|
|
3567
|
-
} | {
|
|
3568
|
-
competitor: string;
|
|
3569
|
-
tags: string[];
|
|
3570
|
-
discovered_at: string | null;
|
|
3571
|
-
url?: string | null | undefined;
|
|
3572
|
-
posted_date?: string | null | undefined;
|
|
3573
|
-
initial_run?: boolean | null | undefined;
|
|
3574
|
-
content?: string | null | undefined;
|
|
3575
|
-
} | {
|
|
3576
|
-
competitor: string;
|
|
3577
|
-
tags: string[];
|
|
3578
|
-
discovered_at: string | null;
|
|
3579
|
-
title?: string | null | undefined;
|
|
3580
|
-
url?: string | null | undefined;
|
|
3581
|
-
description?: string | null | undefined;
|
|
3582
|
-
posted_date?: string | null | undefined;
|
|
3583
|
-
initial_run?: boolean | null | undefined;
|
|
3584
|
-
} | {
|
|
3585
|
-
competitor: string;
|
|
3586
|
-
tags: string[];
|
|
3587
|
-
discovered_at: string | null;
|
|
3588
|
-
title?: string | null | undefined;
|
|
3589
|
-
url?: string | null | undefined;
|
|
3590
|
-
description?: string | null | undefined;
|
|
3591
|
-
image_url?: string | null | undefined;
|
|
3592
|
-
initial_run?: boolean | null | undefined;
|
|
3593
|
-
location?: string | null | undefined;
|
|
3594
|
-
event_type?: string | null | undefined;
|
|
3595
|
-
is_virtual?: boolean | null | undefined;
|
|
3596
|
-
event_date?: string | null | undefined;
|
|
3597
|
-
} | {
|
|
3598
|
-
competitor: string;
|
|
3599
|
-
tags: string[];
|
|
3600
|
-
discovered_at: string | null;
|
|
3601
|
-
initial_run?: boolean | null | undefined;
|
|
3602
|
-
is_live?: boolean | null | undefined;
|
|
3603
|
-
added_at?: string | null | undefined;
|
|
3604
|
-
removed_at?: string | null | undefined;
|
|
3605
|
-
message_text?: string | null | undefined;
|
|
3606
|
-
message_level?: string | null | undefined;
|
|
3607
|
-
order_on_page?: number | null | undefined;
|
|
3608
|
-
} | {
|
|
3609
|
-
competitor: string;
|
|
3610
|
-
tags: string[];
|
|
3611
|
-
discovered_at: string | null;
|
|
3612
|
-
initial_run?: boolean | null | undefined;
|
|
3613
|
-
is_live?: boolean | null | undefined;
|
|
3614
|
-
added_at?: string | null | undefined;
|
|
3615
|
-
removed_at?: string | null | undefined;
|
|
3616
|
-
metric?: string | null | undefined;
|
|
3617
|
-
context_brand?: string | null | undefined;
|
|
3618
|
-
} | {
|
|
3619
|
-
competitor: string;
|
|
3620
|
-
tags: string[];
|
|
3621
|
-
discovered_at: string | null;
|
|
3622
|
-
name?: string | null | undefined;
|
|
3623
|
-
image_url?: string | null | undefined;
|
|
3624
|
-
initial_run?: boolean | null | undefined;
|
|
3625
|
-
is_live?: boolean | null | undefined;
|
|
3626
|
-
added_at?: string | null | undefined;
|
|
3627
|
-
removed_at?: string | null | undefined;
|
|
3628
|
-
logo_url?: string | null | undefined;
|
|
3629
|
-
} | {
|
|
3630
|
-
competitor: string;
|
|
3631
|
-
tags: string[];
|
|
3632
|
-
discovered_at: string | null;
|
|
3633
|
-
url?: string | null | undefined;
|
|
3634
|
-
initial_run?: boolean | null | undefined;
|
|
3635
|
-
};
|
|
3636
|
-
competitor: {
|
|
3637
|
-
id: string;
|
|
3638
|
-
name: string | null;
|
|
3639
|
-
};
|
|
3640
|
-
section: "blog-posts" | "press-posts" | "job-listings" | "pricing" | "case-studies" | "linkedin-posts" | "youtube-videos" | "events" | "messaging" | "metrics-claimed" | "logos" | "sitemap-urls";
|
|
3641
|
-
change_type: "added" | "updated" | "removed";
|
|
3642
|
-
change_date: string;
|
|
3643
|
-
}>;
|
|
3644
|
-
export type ActivityItem = z.infer<typeof ActivityItem>;
|
|
3645
|
-
export declare const ActivityListResponse: z.ZodObject<{
|
|
3646
|
-
data: z.ZodArray<z.ZodObject<{
|
|
3647
|
-
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"]>;
|
|
3649
|
-
change_type: z.ZodEnum<["added", "updated", "removed"]>;
|
|
3650
|
-
change_date: z.ZodString;
|
|
3651
|
-
competitor: z.ZodObject<{
|
|
3652
|
-
id: z.ZodString;
|
|
3653
|
-
name: z.ZodNullable<z.ZodString>;
|
|
3654
|
-
}, "strip", z.ZodTypeAny, {
|
|
3655
|
-
id: string;
|
|
3656
|
-
name: string | null;
|
|
3657
|
-
}, {
|
|
3658
|
-
id: string;
|
|
3659
|
-
name: string | null;
|
|
3660
|
-
}>;
|
|
3661
|
-
data: z.ZodUnion<[z.ZodObject<{
|
|
3662
|
-
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3663
|
-
url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3664
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3665
|
-
key_points: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3666
|
-
image_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3667
|
-
posted_date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3668
|
-
competitor: z.ZodString;
|
|
3669
|
-
tags: z.ZodArray<z.ZodString, "many">;
|
|
3670
|
-
discovered_at: z.ZodNullable<z.ZodString>;
|
|
3671
|
-
initial_run: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
3672
|
-
}, "strip", z.ZodTypeAny, {
|
|
3673
|
-
competitor: string;
|
|
3674
|
-
tags: string[];
|
|
3675
|
-
discovered_at: string | null;
|
|
3676
|
-
title?: string | null | undefined;
|
|
3677
|
-
url?: string | null | undefined;
|
|
3678
|
-
description?: string | null | undefined;
|
|
3679
|
-
key_points?: string | null | undefined;
|
|
3680
|
-
image_url?: string | null | undefined;
|
|
3681
|
-
posted_date?: string | null | undefined;
|
|
3682
|
-
initial_run?: boolean | null | undefined;
|
|
3683
|
-
}, {
|
|
3684
|
-
competitor: string;
|
|
3685
|
-
tags: string[];
|
|
3686
|
-
discovered_at: string | null;
|
|
3687
|
-
title?: string | null | undefined;
|
|
3688
|
-
url?: string | null | undefined;
|
|
3689
|
-
description?: string | null | undefined;
|
|
3690
|
-
key_points?: string | null | undefined;
|
|
3691
|
-
image_url?: string | null | undefined;
|
|
3692
|
-
posted_date?: string | null | undefined;
|
|
3693
|
-
initial_run?: boolean | null | undefined;
|
|
3694
|
-
}>, z.ZodObject<{
|
|
3695
|
-
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3696
|
-
url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3697
|
-
category: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3698
|
-
location: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3699
|
-
posted_date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3700
|
-
is_live: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
3701
|
-
added_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3702
|
-
removed_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3703
|
-
competitor: z.ZodString;
|
|
3704
|
-
tags: z.ZodArray<z.ZodString, "many">;
|
|
3705
|
-
discovered_at: z.ZodNullable<z.ZodString>;
|
|
3706
|
-
initial_run: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
3707
|
-
}, "strip", z.ZodTypeAny, {
|
|
3708
|
-
competitor: string;
|
|
3709
|
-
tags: string[];
|
|
3710
|
-
discovered_at: string | null;
|
|
3711
|
-
category?: string | null | undefined;
|
|
3712
|
-
title?: string | null | undefined;
|
|
3713
|
-
url?: string | null | undefined;
|
|
3714
|
-
posted_date?: string | null | undefined;
|
|
3715
|
-
initial_run?: boolean | null | undefined;
|
|
3716
|
-
location?: string | null | undefined;
|
|
3717
|
-
is_live?: boolean | null | undefined;
|
|
3718
|
-
added_at?: string | null | undefined;
|
|
3719
|
-
removed_at?: string | null | undefined;
|
|
3720
|
-
}, {
|
|
3721
|
-
competitor: string;
|
|
3722
|
-
tags: string[];
|
|
3723
|
-
discovered_at: string | null;
|
|
3724
|
-
category?: string | null | undefined;
|
|
3725
|
-
title?: string | null | undefined;
|
|
3726
|
-
url?: string | null | undefined;
|
|
3727
|
-
posted_date?: string | null | undefined;
|
|
3728
|
-
initial_run?: boolean | null | undefined;
|
|
3729
|
-
location?: string | null | undefined;
|
|
3730
|
-
is_live?: boolean | null | undefined;
|
|
3731
|
-
added_at?: string | null | undefined;
|
|
3732
|
-
removed_at?: string | null | undefined;
|
|
3733
|
-
}>, z.ZodObject<{
|
|
3734
|
-
pricing_data: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodRecord<z.ZodString, z.ZodUnknown>, z.ZodArray<z.ZodUnknown, "many">]>>>;
|
|
3735
|
-
changes: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3736
|
-
is_live: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
3737
|
-
last_updated_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3738
|
-
competitor: z.ZodString;
|
|
3739
|
-
tags: z.ZodArray<z.ZodString, "many">;
|
|
3740
|
-
discovered_at: z.ZodNullable<z.ZodString>;
|
|
3741
|
-
initial_run: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
3742
|
-
}, "strip", z.ZodTypeAny, {
|
|
3743
|
-
competitor: string;
|
|
3744
|
-
tags: string[];
|
|
3745
|
-
discovered_at: string | null;
|
|
3746
|
-
initial_run?: boolean | null | undefined;
|
|
3747
|
-
is_live?: boolean | null | undefined;
|
|
3748
|
-
pricing_data?: unknown[] | Record<string, unknown> | null | undefined;
|
|
3749
|
-
changes?: string | null | undefined;
|
|
3750
|
-
last_updated_at?: string | null | undefined;
|
|
3751
|
-
}, {
|
|
3752
|
-
competitor: string;
|
|
3753
|
-
tags: string[];
|
|
3754
|
-
discovered_at: string | null;
|
|
3755
|
-
initial_run?: boolean | null | undefined;
|
|
3756
|
-
is_live?: boolean | null | undefined;
|
|
3757
|
-
pricing_data?: unknown[] | Record<string, unknown> | null | undefined;
|
|
3758
|
-
changes?: string | null | undefined;
|
|
3759
|
-
last_updated_at?: string | null | undefined;
|
|
3760
|
-
}>, z.ZodObject<{
|
|
3761
|
-
url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3762
|
-
content: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3763
|
-
posted_date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3764
|
-
competitor: z.ZodString;
|
|
3765
|
-
tags: z.ZodArray<z.ZodString, "many">;
|
|
3766
|
-
discovered_at: z.ZodNullable<z.ZodString>;
|
|
3767
|
-
initial_run: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
3768
|
-
}, "strip", z.ZodTypeAny, {
|
|
3769
|
-
competitor: string;
|
|
3770
|
-
tags: string[];
|
|
3771
|
-
discovered_at: string | null;
|
|
3772
|
-
url?: string | null | undefined;
|
|
3773
|
-
posted_date?: string | null | undefined;
|
|
3774
|
-
initial_run?: boolean | null | undefined;
|
|
3775
|
-
content?: string | null | undefined;
|
|
3776
|
-
}, {
|
|
3777
|
-
competitor: string;
|
|
3778
|
-
tags: string[];
|
|
3779
|
-
discovered_at: string | null;
|
|
3780
|
-
url?: string | null | undefined;
|
|
3781
|
-
posted_date?: string | null | undefined;
|
|
3782
|
-
initial_run?: boolean | null | undefined;
|
|
3783
|
-
content?: string | null | undefined;
|
|
3784
|
-
}>, z.ZodObject<{
|
|
3785
|
-
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3786
|
-
url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3787
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3788
|
-
posted_date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3789
|
-
competitor: z.ZodString;
|
|
3790
|
-
tags: z.ZodArray<z.ZodString, "many">;
|
|
3791
|
-
discovered_at: z.ZodNullable<z.ZodString>;
|
|
3792
|
-
initial_run: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
3793
|
-
}, "strip", z.ZodTypeAny, {
|
|
3794
|
-
competitor: string;
|
|
3795
|
-
tags: string[];
|
|
3796
|
-
discovered_at: string | null;
|
|
3797
|
-
title?: string | null | undefined;
|
|
3798
|
-
url?: string | null | undefined;
|
|
3799
|
-
description?: string | null | undefined;
|
|
3800
|
-
posted_date?: string | null | undefined;
|
|
3801
|
-
initial_run?: boolean | null | undefined;
|
|
3802
|
-
}, {
|
|
3803
|
-
competitor: string;
|
|
3804
|
-
tags: string[];
|
|
3805
|
-
discovered_at: string | null;
|
|
3806
|
-
title?: string | null | undefined;
|
|
3807
|
-
url?: string | null | undefined;
|
|
3808
|
-
description?: string | null | undefined;
|
|
3809
|
-
posted_date?: string | null | undefined;
|
|
3810
|
-
initial_run?: boolean | null | undefined;
|
|
3811
|
-
}>, z.ZodObject<{
|
|
3812
|
-
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3813
|
-
url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3814
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3815
|
-
image_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3816
|
-
event_type: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3817
|
-
location: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3818
|
-
is_virtual: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
3819
|
-
event_date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3820
|
-
competitor: z.ZodString;
|
|
3821
|
-
tags: z.ZodArray<z.ZodString, "many">;
|
|
3822
|
-
discovered_at: z.ZodNullable<z.ZodString>;
|
|
3823
|
-
initial_run: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
3824
|
-
}, "strip", z.ZodTypeAny, {
|
|
3825
|
-
competitor: string;
|
|
3826
|
-
tags: string[];
|
|
3827
|
-
discovered_at: string | null;
|
|
3828
|
-
title?: string | null | undefined;
|
|
3829
|
-
url?: string | null | undefined;
|
|
3830
|
-
description?: string | null | undefined;
|
|
3831
|
-
image_url?: string | null | undefined;
|
|
3832
|
-
initial_run?: boolean | null | undefined;
|
|
3833
|
-
location?: string | null | undefined;
|
|
3834
|
-
event_type?: string | null | undefined;
|
|
3835
|
-
is_virtual?: boolean | null | undefined;
|
|
3836
|
-
event_date?: string | null | undefined;
|
|
3837
|
-
}, {
|
|
3838
|
-
competitor: string;
|
|
3839
|
-
tags: string[];
|
|
3840
|
-
discovered_at: string | null;
|
|
3841
|
-
title?: string | null | undefined;
|
|
3842
|
-
url?: string | null | undefined;
|
|
3843
|
-
description?: string | null | undefined;
|
|
3844
|
-
image_url?: string | null | undefined;
|
|
3845
|
-
initial_run?: boolean | null | undefined;
|
|
3846
|
-
location?: string | null | undefined;
|
|
3847
|
-
event_type?: string | null | undefined;
|
|
3848
|
-
is_virtual?: boolean | null | undefined;
|
|
3849
|
-
event_date?: string | null | undefined;
|
|
3850
|
-
}>, z.ZodObject<{
|
|
3851
|
-
message_text: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3852
|
-
message_level: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3853
|
-
order_on_page: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
3854
|
-
is_live: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
3855
|
-
added_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3856
|
-
removed_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3857
|
-
competitor: z.ZodString;
|
|
3858
|
-
tags: z.ZodArray<z.ZodString, "many">;
|
|
3859
|
-
discovered_at: z.ZodNullable<z.ZodString>;
|
|
3860
|
-
initial_run: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
3861
|
-
}, "strip", z.ZodTypeAny, {
|
|
3862
|
-
competitor: string;
|
|
3863
|
-
tags: string[];
|
|
3864
|
-
discovered_at: string | null;
|
|
3865
|
-
initial_run?: boolean | null | undefined;
|
|
3866
|
-
is_live?: boolean | null | undefined;
|
|
3867
|
-
added_at?: string | null | undefined;
|
|
3868
|
-
removed_at?: string | null | undefined;
|
|
3869
|
-
message_text?: string | null | undefined;
|
|
3870
|
-
message_level?: string | null | undefined;
|
|
3871
|
-
order_on_page?: number | null | undefined;
|
|
3872
|
-
}, {
|
|
3873
|
-
competitor: string;
|
|
3874
|
-
tags: string[];
|
|
3875
|
-
discovered_at: string | null;
|
|
3876
|
-
initial_run?: boolean | null | undefined;
|
|
3877
|
-
is_live?: boolean | null | undefined;
|
|
3878
|
-
added_at?: string | null | undefined;
|
|
3879
|
-
removed_at?: string | null | undefined;
|
|
3880
|
-
message_text?: string | null | undefined;
|
|
3881
|
-
message_level?: string | null | undefined;
|
|
3882
|
-
order_on_page?: number | null | undefined;
|
|
3883
|
-
}>, z.ZodObject<{
|
|
3884
|
-
metric: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3885
|
-
context_brand: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3886
|
-
is_live: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
3887
|
-
added_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3888
|
-
removed_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3889
|
-
competitor: z.ZodString;
|
|
3890
|
-
tags: z.ZodArray<z.ZodString, "many">;
|
|
3891
|
-
discovered_at: z.ZodNullable<z.ZodString>;
|
|
3892
|
-
initial_run: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
3893
|
-
}, "strip", z.ZodTypeAny, {
|
|
3894
|
-
competitor: string;
|
|
3895
|
-
tags: string[];
|
|
3896
|
-
discovered_at: string | null;
|
|
3897
|
-
initial_run?: boolean | null | undefined;
|
|
3898
|
-
is_live?: boolean | null | undefined;
|
|
3899
|
-
added_at?: string | null | undefined;
|
|
3900
|
-
removed_at?: string | null | undefined;
|
|
3901
|
-
metric?: string | null | undefined;
|
|
3902
|
-
context_brand?: string | null | undefined;
|
|
3903
|
-
}, {
|
|
3904
|
-
competitor: string;
|
|
3905
|
-
tags: string[];
|
|
3906
|
-
discovered_at: string | null;
|
|
3907
|
-
initial_run?: boolean | null | undefined;
|
|
3908
|
-
is_live?: boolean | null | undefined;
|
|
3909
|
-
added_at?: string | null | undefined;
|
|
3910
|
-
removed_at?: string | null | undefined;
|
|
3911
|
-
metric?: string | null | undefined;
|
|
3912
|
-
context_brand?: string | null | undefined;
|
|
3913
|
-
}>, z.ZodObject<{
|
|
3914
|
-
name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3915
|
-
logo_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3916
|
-
image_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3917
|
-
is_live: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
3918
|
-
added_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3919
|
-
removed_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3920
|
-
competitor: z.ZodString;
|
|
3921
|
-
tags: z.ZodArray<z.ZodString, "many">;
|
|
3922
|
-
discovered_at: z.ZodNullable<z.ZodString>;
|
|
3923
|
-
initial_run: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
3924
|
-
}, "strip", z.ZodTypeAny, {
|
|
3925
|
-
competitor: string;
|
|
3926
|
-
tags: string[];
|
|
3927
|
-
discovered_at: string | null;
|
|
3928
|
-
name?: string | null | undefined;
|
|
3929
|
-
image_url?: string | null | undefined;
|
|
3930
|
-
initial_run?: boolean | null | undefined;
|
|
3931
|
-
is_live?: boolean | null | undefined;
|
|
3932
|
-
added_at?: string | null | undefined;
|
|
3933
|
-
removed_at?: string | null | undefined;
|
|
3934
|
-
logo_url?: string | null | undefined;
|
|
3935
|
-
}, {
|
|
3936
|
-
competitor: string;
|
|
3937
|
-
tags: string[];
|
|
3938
|
-
discovered_at: string | null;
|
|
3939
|
-
name?: string | null | undefined;
|
|
3940
|
-
image_url?: string | null | undefined;
|
|
3941
|
-
initial_run?: boolean | null | undefined;
|
|
3942
|
-
is_live?: boolean | null | undefined;
|
|
3943
|
-
added_at?: string | null | undefined;
|
|
3944
|
-
removed_at?: string | null | undefined;
|
|
3945
|
-
logo_url?: string | null | undefined;
|
|
3946
|
-
}>, z.ZodObject<{
|
|
3947
|
-
url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3948
|
-
competitor: z.ZodString;
|
|
3949
|
-
tags: z.ZodArray<z.ZodString, "many">;
|
|
3950
|
-
discovered_at: z.ZodNullable<z.ZodString>;
|
|
3951
|
-
initial_run: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
3952
|
-
}, "strip", z.ZodTypeAny, {
|
|
3953
|
-
competitor: string;
|
|
3954
|
-
tags: string[];
|
|
3955
|
-
discovered_at: string | null;
|
|
3956
|
-
url?: string | null | undefined;
|
|
3957
|
-
initial_run?: boolean | null | undefined;
|
|
3958
|
-
}, {
|
|
3959
|
-
competitor: string;
|
|
3960
|
-
tags: string[];
|
|
3961
|
-
discovered_at: string | null;
|
|
3962
|
-
url?: string | null | undefined;
|
|
3963
|
-
initial_run?: boolean | null | undefined;
|
|
3964
|
-
}>]>;
|
|
3904
|
+
data: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
3905
|
+
}, "strip", z.ZodTypeAny, {
|
|
3906
|
+
id: string;
|
|
3907
|
+
data: Record<string, unknown>;
|
|
3908
|
+
competitor: {
|
|
3909
|
+
id: string;
|
|
3910
|
+
name: string | null;
|
|
3911
|
+
};
|
|
3912
|
+
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";
|
|
3913
|
+
change_type: "added" | "updated" | "removed";
|
|
3914
|
+
change_date: string;
|
|
3915
|
+
}, {
|
|
3916
|
+
id: string;
|
|
3917
|
+
data: Record<string, unknown>;
|
|
3918
|
+
competitor: {
|
|
3919
|
+
id: string;
|
|
3920
|
+
name: string | null;
|
|
3921
|
+
};
|
|
3922
|
+
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";
|
|
3923
|
+
change_type: "added" | "updated" | "removed";
|
|
3924
|
+
change_date: string;
|
|
3925
|
+
}>;
|
|
3926
|
+
export type ActivityItem = z.infer<typeof ActivityItem>;
|
|
3927
|
+
export declare const ActivityListResponse: z.ZodObject<{
|
|
3928
|
+
data: z.ZodArray<z.ZodObject<{
|
|
3929
|
+
id: z.ZodString;
|
|
3930
|
+
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"]>;
|
|
3931
|
+
change_type: z.ZodEnum<["added", "updated", "removed"]>;
|
|
3932
|
+
change_date: z.ZodString;
|
|
3933
|
+
competitor: z.ZodObject<{
|
|
3934
|
+
id: z.ZodString;
|
|
3935
|
+
name: z.ZodNullable<z.ZodString>;
|
|
3936
|
+
}, "strip", z.ZodTypeAny, {
|
|
3937
|
+
id: string;
|
|
3938
|
+
name: string | null;
|
|
3939
|
+
}, {
|
|
3940
|
+
id: string;
|
|
3941
|
+
name: string | null;
|
|
3942
|
+
}>;
|
|
3943
|
+
data: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
3965
3944
|
}, "strip", z.ZodTypeAny, {
|
|
3966
3945
|
id: string;
|
|
3967
|
-
data:
|
|
3968
|
-
competitor: string;
|
|
3969
|
-
tags: string[];
|
|
3970
|
-
discovered_at: string | null;
|
|
3971
|
-
title?: string | null | undefined;
|
|
3972
|
-
url?: string | null | undefined;
|
|
3973
|
-
description?: string | null | undefined;
|
|
3974
|
-
key_points?: string | null | undefined;
|
|
3975
|
-
image_url?: string | null | undefined;
|
|
3976
|
-
posted_date?: string | null | undefined;
|
|
3977
|
-
initial_run?: boolean | null | undefined;
|
|
3978
|
-
} | {
|
|
3979
|
-
competitor: string;
|
|
3980
|
-
tags: string[];
|
|
3981
|
-
discovered_at: string | null;
|
|
3982
|
-
category?: string | null | undefined;
|
|
3983
|
-
title?: string | null | undefined;
|
|
3984
|
-
url?: string | null | undefined;
|
|
3985
|
-
posted_date?: string | null | undefined;
|
|
3986
|
-
initial_run?: boolean | null | undefined;
|
|
3987
|
-
location?: string | null | undefined;
|
|
3988
|
-
is_live?: boolean | null | undefined;
|
|
3989
|
-
added_at?: string | null | undefined;
|
|
3990
|
-
removed_at?: string | null | undefined;
|
|
3991
|
-
} | {
|
|
3992
|
-
competitor: string;
|
|
3993
|
-
tags: string[];
|
|
3994
|
-
discovered_at: string | null;
|
|
3995
|
-
initial_run?: boolean | null | undefined;
|
|
3996
|
-
is_live?: boolean | null | undefined;
|
|
3997
|
-
pricing_data?: unknown[] | Record<string, unknown> | null | undefined;
|
|
3998
|
-
changes?: string | null | undefined;
|
|
3999
|
-
last_updated_at?: string | null | undefined;
|
|
4000
|
-
} | {
|
|
4001
|
-
competitor: string;
|
|
4002
|
-
tags: string[];
|
|
4003
|
-
discovered_at: string | null;
|
|
4004
|
-
url?: string | null | undefined;
|
|
4005
|
-
posted_date?: string | null | undefined;
|
|
4006
|
-
initial_run?: boolean | null | undefined;
|
|
4007
|
-
content?: string | null | undefined;
|
|
4008
|
-
} | {
|
|
4009
|
-
competitor: string;
|
|
4010
|
-
tags: string[];
|
|
4011
|
-
discovered_at: string | null;
|
|
4012
|
-
title?: string | null | undefined;
|
|
4013
|
-
url?: string | null | undefined;
|
|
4014
|
-
description?: string | null | undefined;
|
|
4015
|
-
posted_date?: string | null | undefined;
|
|
4016
|
-
initial_run?: boolean | null | undefined;
|
|
4017
|
-
} | {
|
|
4018
|
-
competitor: string;
|
|
4019
|
-
tags: string[];
|
|
4020
|
-
discovered_at: string | null;
|
|
4021
|
-
title?: string | null | undefined;
|
|
4022
|
-
url?: string | null | undefined;
|
|
4023
|
-
description?: string | null | undefined;
|
|
4024
|
-
image_url?: string | null | undefined;
|
|
4025
|
-
initial_run?: boolean | null | undefined;
|
|
4026
|
-
location?: string | null | undefined;
|
|
4027
|
-
event_type?: string | null | undefined;
|
|
4028
|
-
is_virtual?: boolean | null | undefined;
|
|
4029
|
-
event_date?: string | null | undefined;
|
|
4030
|
-
} | {
|
|
4031
|
-
competitor: string;
|
|
4032
|
-
tags: string[];
|
|
4033
|
-
discovered_at: string | null;
|
|
4034
|
-
initial_run?: boolean | null | undefined;
|
|
4035
|
-
is_live?: boolean | null | undefined;
|
|
4036
|
-
added_at?: string | null | undefined;
|
|
4037
|
-
removed_at?: string | null | undefined;
|
|
4038
|
-
message_text?: string | null | undefined;
|
|
4039
|
-
message_level?: string | null | undefined;
|
|
4040
|
-
order_on_page?: number | null | undefined;
|
|
4041
|
-
} | {
|
|
4042
|
-
competitor: string;
|
|
4043
|
-
tags: string[];
|
|
4044
|
-
discovered_at: string | null;
|
|
4045
|
-
initial_run?: boolean | null | undefined;
|
|
4046
|
-
is_live?: boolean | null | undefined;
|
|
4047
|
-
added_at?: string | null | undefined;
|
|
4048
|
-
removed_at?: string | null | undefined;
|
|
4049
|
-
metric?: string | null | undefined;
|
|
4050
|
-
context_brand?: string | null | undefined;
|
|
4051
|
-
} | {
|
|
4052
|
-
competitor: string;
|
|
4053
|
-
tags: string[];
|
|
4054
|
-
discovered_at: string | null;
|
|
4055
|
-
name?: string | null | undefined;
|
|
4056
|
-
image_url?: string | null | undefined;
|
|
4057
|
-
initial_run?: boolean | null | undefined;
|
|
4058
|
-
is_live?: boolean | null | undefined;
|
|
4059
|
-
added_at?: string | null | undefined;
|
|
4060
|
-
removed_at?: string | null | undefined;
|
|
4061
|
-
logo_url?: string | null | undefined;
|
|
4062
|
-
} | {
|
|
4063
|
-
competitor: string;
|
|
4064
|
-
tags: string[];
|
|
4065
|
-
discovered_at: string | null;
|
|
4066
|
-
url?: string | null | undefined;
|
|
4067
|
-
initial_run?: boolean | null | undefined;
|
|
4068
|
-
};
|
|
3946
|
+
data: Record<string, unknown>;
|
|
4069
3947
|
competitor: {
|
|
4070
3948
|
id: string;
|
|
4071
3949
|
name: string | null;
|
|
4072
3950
|
};
|
|
4073
|
-
section: "blog-posts" | "press-posts" | "job-listings" | "pricing" | "case-studies" | "linkedin-posts" | "youtube-videos" | "events" | "messaging" | "metrics-claimed" | "logos" | "sitemap-urls";
|
|
3951
|
+
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
3952
|
change_type: "added" | "updated" | "removed";
|
|
4075
3953
|
change_date: string;
|
|
4076
3954
|
}, {
|
|
4077
3955
|
id: string;
|
|
4078
|
-
data:
|
|
4079
|
-
competitor: string;
|
|
4080
|
-
tags: string[];
|
|
4081
|
-
discovered_at: string | null;
|
|
4082
|
-
title?: string | null | undefined;
|
|
4083
|
-
url?: string | null | undefined;
|
|
4084
|
-
description?: string | null | undefined;
|
|
4085
|
-
key_points?: string | null | undefined;
|
|
4086
|
-
image_url?: string | null | undefined;
|
|
4087
|
-
posted_date?: string | null | undefined;
|
|
4088
|
-
initial_run?: boolean | null | undefined;
|
|
4089
|
-
} | {
|
|
4090
|
-
competitor: string;
|
|
4091
|
-
tags: string[];
|
|
4092
|
-
discovered_at: string | null;
|
|
4093
|
-
category?: string | null | undefined;
|
|
4094
|
-
title?: string | null | undefined;
|
|
4095
|
-
url?: string | null | undefined;
|
|
4096
|
-
posted_date?: string | null | undefined;
|
|
4097
|
-
initial_run?: boolean | null | undefined;
|
|
4098
|
-
location?: string | null | undefined;
|
|
4099
|
-
is_live?: boolean | null | undefined;
|
|
4100
|
-
added_at?: string | null | undefined;
|
|
4101
|
-
removed_at?: string | null | undefined;
|
|
4102
|
-
} | {
|
|
4103
|
-
competitor: string;
|
|
4104
|
-
tags: string[];
|
|
4105
|
-
discovered_at: string | null;
|
|
4106
|
-
initial_run?: boolean | null | undefined;
|
|
4107
|
-
is_live?: boolean | null | undefined;
|
|
4108
|
-
pricing_data?: unknown[] | Record<string, unknown> | null | undefined;
|
|
4109
|
-
changes?: string | null | undefined;
|
|
4110
|
-
last_updated_at?: string | null | undefined;
|
|
4111
|
-
} | {
|
|
4112
|
-
competitor: string;
|
|
4113
|
-
tags: string[];
|
|
4114
|
-
discovered_at: string | null;
|
|
4115
|
-
url?: string | null | undefined;
|
|
4116
|
-
posted_date?: string | null | undefined;
|
|
4117
|
-
initial_run?: boolean | null | undefined;
|
|
4118
|
-
content?: string | null | undefined;
|
|
4119
|
-
} | {
|
|
4120
|
-
competitor: string;
|
|
4121
|
-
tags: string[];
|
|
4122
|
-
discovered_at: string | null;
|
|
4123
|
-
title?: string | null | undefined;
|
|
4124
|
-
url?: string | null | undefined;
|
|
4125
|
-
description?: string | null | undefined;
|
|
4126
|
-
posted_date?: string | null | undefined;
|
|
4127
|
-
initial_run?: boolean | null | undefined;
|
|
4128
|
-
} | {
|
|
4129
|
-
competitor: string;
|
|
4130
|
-
tags: string[];
|
|
4131
|
-
discovered_at: string | null;
|
|
4132
|
-
title?: string | null | undefined;
|
|
4133
|
-
url?: string | null | undefined;
|
|
4134
|
-
description?: string | null | undefined;
|
|
4135
|
-
image_url?: string | null | undefined;
|
|
4136
|
-
initial_run?: boolean | null | undefined;
|
|
4137
|
-
location?: string | null | undefined;
|
|
4138
|
-
event_type?: string | null | undefined;
|
|
4139
|
-
is_virtual?: boolean | null | undefined;
|
|
4140
|
-
event_date?: string | null | undefined;
|
|
4141
|
-
} | {
|
|
4142
|
-
competitor: string;
|
|
4143
|
-
tags: string[];
|
|
4144
|
-
discovered_at: string | null;
|
|
4145
|
-
initial_run?: boolean | null | undefined;
|
|
4146
|
-
is_live?: boolean | null | undefined;
|
|
4147
|
-
added_at?: string | null | undefined;
|
|
4148
|
-
removed_at?: string | null | undefined;
|
|
4149
|
-
message_text?: string | null | undefined;
|
|
4150
|
-
message_level?: string | null | undefined;
|
|
4151
|
-
order_on_page?: number | null | undefined;
|
|
4152
|
-
} | {
|
|
4153
|
-
competitor: string;
|
|
4154
|
-
tags: string[];
|
|
4155
|
-
discovered_at: string | null;
|
|
4156
|
-
initial_run?: boolean | null | undefined;
|
|
4157
|
-
is_live?: boolean | null | undefined;
|
|
4158
|
-
added_at?: string | null | undefined;
|
|
4159
|
-
removed_at?: string | null | undefined;
|
|
4160
|
-
metric?: string | null | undefined;
|
|
4161
|
-
context_brand?: string | null | undefined;
|
|
4162
|
-
} | {
|
|
4163
|
-
competitor: string;
|
|
4164
|
-
tags: string[];
|
|
4165
|
-
discovered_at: string | null;
|
|
4166
|
-
name?: string | null | undefined;
|
|
4167
|
-
image_url?: string | null | undefined;
|
|
4168
|
-
initial_run?: boolean | null | undefined;
|
|
4169
|
-
is_live?: boolean | null | undefined;
|
|
4170
|
-
added_at?: string | null | undefined;
|
|
4171
|
-
removed_at?: string | null | undefined;
|
|
4172
|
-
logo_url?: string | null | undefined;
|
|
4173
|
-
} | {
|
|
4174
|
-
competitor: string;
|
|
4175
|
-
tags: string[];
|
|
4176
|
-
discovered_at: string | null;
|
|
4177
|
-
url?: string | null | undefined;
|
|
4178
|
-
initial_run?: boolean | null | undefined;
|
|
4179
|
-
};
|
|
3956
|
+
data: Record<string, unknown>;
|
|
4180
3957
|
competitor: {
|
|
4181
3958
|
id: string;
|
|
4182
3959
|
name: string | null;
|
|
4183
3960
|
};
|
|
4184
|
-
section: "blog-posts" | "press-posts" | "job-listings" | "pricing" | "case-studies" | "linkedin-posts" | "youtube-videos" | "events" | "messaging" | "metrics-claimed" | "logos" | "sitemap-urls";
|
|
3961
|
+
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
3962
|
change_type: "added" | "updated" | "removed";
|
|
4186
3963
|
change_date: string;
|
|
4187
3964
|
}>, "many">;
|
|
@@ -4202,113 +3979,12 @@ export declare const ActivityListResponse: z.ZodObject<{
|
|
|
4202
3979
|
}, "strip", z.ZodTypeAny, {
|
|
4203
3980
|
data: {
|
|
4204
3981
|
id: string;
|
|
4205
|
-
data:
|
|
4206
|
-
competitor: string;
|
|
4207
|
-
tags: string[];
|
|
4208
|
-
discovered_at: string | null;
|
|
4209
|
-
title?: string | null | undefined;
|
|
4210
|
-
url?: string | null | undefined;
|
|
4211
|
-
description?: string | null | undefined;
|
|
4212
|
-
key_points?: string | null | undefined;
|
|
4213
|
-
image_url?: string | null | undefined;
|
|
4214
|
-
posted_date?: string | null | undefined;
|
|
4215
|
-
initial_run?: boolean | null | undefined;
|
|
4216
|
-
} | {
|
|
4217
|
-
competitor: string;
|
|
4218
|
-
tags: string[];
|
|
4219
|
-
discovered_at: string | null;
|
|
4220
|
-
category?: string | null | undefined;
|
|
4221
|
-
title?: string | null | undefined;
|
|
4222
|
-
url?: string | null | undefined;
|
|
4223
|
-
posted_date?: string | null | undefined;
|
|
4224
|
-
initial_run?: boolean | null | undefined;
|
|
4225
|
-
location?: string | null | undefined;
|
|
4226
|
-
is_live?: boolean | null | undefined;
|
|
4227
|
-
added_at?: string | null | undefined;
|
|
4228
|
-
removed_at?: string | null | undefined;
|
|
4229
|
-
} | {
|
|
4230
|
-
competitor: string;
|
|
4231
|
-
tags: string[];
|
|
4232
|
-
discovered_at: string | null;
|
|
4233
|
-
initial_run?: boolean | null | undefined;
|
|
4234
|
-
is_live?: boolean | null | undefined;
|
|
4235
|
-
pricing_data?: unknown[] | Record<string, unknown> | null | undefined;
|
|
4236
|
-
changes?: string | null | undefined;
|
|
4237
|
-
last_updated_at?: string | null | undefined;
|
|
4238
|
-
} | {
|
|
4239
|
-
competitor: string;
|
|
4240
|
-
tags: string[];
|
|
4241
|
-
discovered_at: string | null;
|
|
4242
|
-
url?: string | null | undefined;
|
|
4243
|
-
posted_date?: string | null | undefined;
|
|
4244
|
-
initial_run?: boolean | null | undefined;
|
|
4245
|
-
content?: string | null | undefined;
|
|
4246
|
-
} | {
|
|
4247
|
-
competitor: string;
|
|
4248
|
-
tags: string[];
|
|
4249
|
-
discovered_at: string | null;
|
|
4250
|
-
title?: string | null | undefined;
|
|
4251
|
-
url?: string | null | undefined;
|
|
4252
|
-
description?: string | null | undefined;
|
|
4253
|
-
posted_date?: string | null | undefined;
|
|
4254
|
-
initial_run?: boolean | null | undefined;
|
|
4255
|
-
} | {
|
|
4256
|
-
competitor: string;
|
|
4257
|
-
tags: string[];
|
|
4258
|
-
discovered_at: string | null;
|
|
4259
|
-
title?: string | null | undefined;
|
|
4260
|
-
url?: string | null | undefined;
|
|
4261
|
-
description?: string | null | undefined;
|
|
4262
|
-
image_url?: string | null | undefined;
|
|
4263
|
-
initial_run?: boolean | null | undefined;
|
|
4264
|
-
location?: string | null | undefined;
|
|
4265
|
-
event_type?: string | null | undefined;
|
|
4266
|
-
is_virtual?: boolean | null | undefined;
|
|
4267
|
-
event_date?: string | null | undefined;
|
|
4268
|
-
} | {
|
|
4269
|
-
competitor: string;
|
|
4270
|
-
tags: string[];
|
|
4271
|
-
discovered_at: string | null;
|
|
4272
|
-
initial_run?: boolean | null | undefined;
|
|
4273
|
-
is_live?: boolean | null | undefined;
|
|
4274
|
-
added_at?: string | null | undefined;
|
|
4275
|
-
removed_at?: string | null | undefined;
|
|
4276
|
-
message_text?: string | null | undefined;
|
|
4277
|
-
message_level?: string | null | undefined;
|
|
4278
|
-
order_on_page?: number | null | undefined;
|
|
4279
|
-
} | {
|
|
4280
|
-
competitor: string;
|
|
4281
|
-
tags: string[];
|
|
4282
|
-
discovered_at: string | null;
|
|
4283
|
-
initial_run?: boolean | null | undefined;
|
|
4284
|
-
is_live?: boolean | null | undefined;
|
|
4285
|
-
added_at?: string | null | undefined;
|
|
4286
|
-
removed_at?: string | null | undefined;
|
|
4287
|
-
metric?: string | null | undefined;
|
|
4288
|
-
context_brand?: string | null | undefined;
|
|
4289
|
-
} | {
|
|
4290
|
-
competitor: string;
|
|
4291
|
-
tags: string[];
|
|
4292
|
-
discovered_at: string | null;
|
|
4293
|
-
name?: string | null | undefined;
|
|
4294
|
-
image_url?: string | null | undefined;
|
|
4295
|
-
initial_run?: boolean | null | undefined;
|
|
4296
|
-
is_live?: boolean | null | undefined;
|
|
4297
|
-
added_at?: string | null | undefined;
|
|
4298
|
-
removed_at?: string | null | undefined;
|
|
4299
|
-
logo_url?: string | null | undefined;
|
|
4300
|
-
} | {
|
|
4301
|
-
competitor: string;
|
|
4302
|
-
tags: string[];
|
|
4303
|
-
discovered_at: string | null;
|
|
4304
|
-
url?: string | null | undefined;
|
|
4305
|
-
initial_run?: boolean | null | undefined;
|
|
4306
|
-
};
|
|
3982
|
+
data: Record<string, unknown>;
|
|
4307
3983
|
competitor: {
|
|
4308
3984
|
id: string;
|
|
4309
3985
|
name: string | null;
|
|
4310
3986
|
};
|
|
4311
|
-
section: "blog-posts" | "press-posts" | "job-listings" | "pricing" | "case-studies" | "linkedin-posts" | "youtube-videos" | "events" | "messaging" | "metrics-claimed" | "logos" | "sitemap-urls";
|
|
3987
|
+
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
3988
|
change_type: "added" | "updated" | "removed";
|
|
4313
3989
|
change_date: string;
|
|
4314
3990
|
}[];
|
|
@@ -4320,113 +3996,12 @@ export declare const ActivityListResponse: z.ZodObject<{
|
|
|
4320
3996
|
}, {
|
|
4321
3997
|
data: {
|
|
4322
3998
|
id: string;
|
|
4323
|
-
data:
|
|
4324
|
-
competitor: string;
|
|
4325
|
-
tags: string[];
|
|
4326
|
-
discovered_at: string | null;
|
|
4327
|
-
title?: string | null | undefined;
|
|
4328
|
-
url?: string | null | undefined;
|
|
4329
|
-
description?: string | null | undefined;
|
|
4330
|
-
key_points?: string | null | undefined;
|
|
4331
|
-
image_url?: string | null | undefined;
|
|
4332
|
-
posted_date?: string | null | undefined;
|
|
4333
|
-
initial_run?: boolean | null | undefined;
|
|
4334
|
-
} | {
|
|
4335
|
-
competitor: string;
|
|
4336
|
-
tags: string[];
|
|
4337
|
-
discovered_at: string | null;
|
|
4338
|
-
category?: string | null | undefined;
|
|
4339
|
-
title?: string | null | undefined;
|
|
4340
|
-
url?: string | null | undefined;
|
|
4341
|
-
posted_date?: string | null | undefined;
|
|
4342
|
-
initial_run?: boolean | null | undefined;
|
|
4343
|
-
location?: string | null | undefined;
|
|
4344
|
-
is_live?: boolean | null | undefined;
|
|
4345
|
-
added_at?: string | null | undefined;
|
|
4346
|
-
removed_at?: string | null | undefined;
|
|
4347
|
-
} | {
|
|
4348
|
-
competitor: string;
|
|
4349
|
-
tags: string[];
|
|
4350
|
-
discovered_at: string | null;
|
|
4351
|
-
initial_run?: boolean | null | undefined;
|
|
4352
|
-
is_live?: boolean | null | undefined;
|
|
4353
|
-
pricing_data?: unknown[] | Record<string, unknown> | null | undefined;
|
|
4354
|
-
changes?: string | null | undefined;
|
|
4355
|
-
last_updated_at?: string | null | undefined;
|
|
4356
|
-
} | {
|
|
4357
|
-
competitor: string;
|
|
4358
|
-
tags: string[];
|
|
4359
|
-
discovered_at: string | null;
|
|
4360
|
-
url?: string | null | undefined;
|
|
4361
|
-
posted_date?: string | null | undefined;
|
|
4362
|
-
initial_run?: boolean | null | undefined;
|
|
4363
|
-
content?: string | null | undefined;
|
|
4364
|
-
} | {
|
|
4365
|
-
competitor: string;
|
|
4366
|
-
tags: string[];
|
|
4367
|
-
discovered_at: string | null;
|
|
4368
|
-
title?: string | null | undefined;
|
|
4369
|
-
url?: string | null | undefined;
|
|
4370
|
-
description?: string | null | undefined;
|
|
4371
|
-
posted_date?: string | null | undefined;
|
|
4372
|
-
initial_run?: boolean | null | undefined;
|
|
4373
|
-
} | {
|
|
4374
|
-
competitor: string;
|
|
4375
|
-
tags: string[];
|
|
4376
|
-
discovered_at: string | null;
|
|
4377
|
-
title?: string | null | undefined;
|
|
4378
|
-
url?: string | null | undefined;
|
|
4379
|
-
description?: string | null | undefined;
|
|
4380
|
-
image_url?: string | null | undefined;
|
|
4381
|
-
initial_run?: boolean | null | undefined;
|
|
4382
|
-
location?: string | null | undefined;
|
|
4383
|
-
event_type?: string | null | undefined;
|
|
4384
|
-
is_virtual?: boolean | null | undefined;
|
|
4385
|
-
event_date?: string | null | undefined;
|
|
4386
|
-
} | {
|
|
4387
|
-
competitor: string;
|
|
4388
|
-
tags: string[];
|
|
4389
|
-
discovered_at: string | null;
|
|
4390
|
-
initial_run?: boolean | null | undefined;
|
|
4391
|
-
is_live?: boolean | null | undefined;
|
|
4392
|
-
added_at?: string | null | undefined;
|
|
4393
|
-
removed_at?: string | null | undefined;
|
|
4394
|
-
message_text?: string | null | undefined;
|
|
4395
|
-
message_level?: string | null | undefined;
|
|
4396
|
-
order_on_page?: number | null | undefined;
|
|
4397
|
-
} | {
|
|
4398
|
-
competitor: string;
|
|
4399
|
-
tags: string[];
|
|
4400
|
-
discovered_at: string | null;
|
|
4401
|
-
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;
|
|
4407
|
-
} | {
|
|
4408
|
-
competitor: string;
|
|
4409
|
-
tags: string[];
|
|
4410
|
-
discovered_at: string | null;
|
|
4411
|
-
name?: string | null | undefined;
|
|
4412
|
-
image_url?: string | null | undefined;
|
|
4413
|
-
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;
|
|
4418
|
-
} | {
|
|
4419
|
-
competitor: string;
|
|
4420
|
-
tags: string[];
|
|
4421
|
-
discovered_at: string | null;
|
|
4422
|
-
url?: string | null | undefined;
|
|
4423
|
-
initial_run?: boolean | null | undefined;
|
|
4424
|
-
};
|
|
3999
|
+
data: Record<string, unknown>;
|
|
4425
4000
|
competitor: {
|
|
4426
4001
|
id: string;
|
|
4427
4002
|
name: string | null;
|
|
4428
4003
|
};
|
|
4429
|
-
section: "blog-posts" | "press-posts" | "job-listings" | "pricing" | "case-studies" | "linkedin-posts" | "youtube-videos" | "events" | "messaging" | "metrics-claimed" | "logos" | "sitemap-urls";
|
|
4004
|
+
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
4005
|
change_type: "added" | "updated" | "removed";
|
|
4431
4006
|
change_date: string;
|
|
4432
4007
|
}[];
|
|
@@ -4437,10 +4012,42 @@ export declare const ActivityListResponse: z.ZodObject<{
|
|
|
4437
4012
|
};
|
|
4438
4013
|
}>;
|
|
4439
4014
|
export type ActivityListResponse = z.infer<typeof ActivityListResponse>;
|
|
4015
|
+
export declare const ActivityDetailItem: z.ZodObject<{
|
|
4016
|
+
id: z.ZodString;
|
|
4017
|
+
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"]>;
|
|
4018
|
+
competitor: z.ZodObject<{
|
|
4019
|
+
id: z.ZodString;
|
|
4020
|
+
name: z.ZodNullable<z.ZodString>;
|
|
4021
|
+
}, "strip", z.ZodTypeAny, {
|
|
4022
|
+
id: string;
|
|
4023
|
+
name: string | null;
|
|
4024
|
+
}, {
|
|
4025
|
+
id: string;
|
|
4026
|
+
name: string | null;
|
|
4027
|
+
}>;
|
|
4028
|
+
payload: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
4029
|
+
}, "strip", z.ZodTypeAny, {
|
|
4030
|
+
payload: Record<string, unknown>;
|
|
4031
|
+
id: string;
|
|
4032
|
+
competitor: {
|
|
4033
|
+
id: string;
|
|
4034
|
+
name: string | null;
|
|
4035
|
+
};
|
|
4036
|
+
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";
|
|
4037
|
+
}, {
|
|
4038
|
+
payload: Record<string, unknown>;
|
|
4039
|
+
id: string;
|
|
4040
|
+
competitor: {
|
|
4041
|
+
id: string;
|
|
4042
|
+
name: string | null;
|
|
4043
|
+
};
|
|
4044
|
+
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";
|
|
4045
|
+
}>;
|
|
4046
|
+
export type ActivityDetailItem = z.infer<typeof ActivityDetailItem>;
|
|
4440
4047
|
export declare const ActivityDetailResponse: z.ZodObject<{
|
|
4441
4048
|
data: z.ZodObject<{
|
|
4442
4049
|
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"]>;
|
|
4050
|
+
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
4051
|
competitor: z.ZodObject<{
|
|
4445
4052
|
id: z.ZodString;
|
|
4446
4053
|
name: z.ZodNullable<z.ZodString>;
|
|
@@ -4451,753 +4058,103 @@ export declare const ActivityDetailResponse: z.ZodObject<{
|
|
|
4451
4058
|
id: string;
|
|
4452
4059
|
name: string | null;
|
|
4453
4060
|
}>;
|
|
4454
|
-
payload: z.
|
|
4455
|
-
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4456
|
-
url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4457
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4458
|
-
key_points: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4459
|
-
image_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4460
|
-
posted_date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4461
|
-
competitor: z.ZodString;
|
|
4462
|
-
tags: z.ZodArray<z.ZodString, "many">;
|
|
4463
|
-
discovered_at: z.ZodNullable<z.ZodString>;
|
|
4464
|
-
initial_run: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
4465
|
-
}, "strip", z.ZodTypeAny, {
|
|
4466
|
-
competitor: string;
|
|
4467
|
-
tags: string[];
|
|
4468
|
-
discovered_at: string | null;
|
|
4469
|
-
title?: string | null | undefined;
|
|
4470
|
-
url?: string | null | undefined;
|
|
4471
|
-
description?: string | null | undefined;
|
|
4472
|
-
key_points?: string | null | undefined;
|
|
4473
|
-
image_url?: string | null | undefined;
|
|
4474
|
-
posted_date?: string | null | undefined;
|
|
4475
|
-
initial_run?: boolean | null | undefined;
|
|
4476
|
-
}, {
|
|
4477
|
-
competitor: string;
|
|
4478
|
-
tags: string[];
|
|
4479
|
-
discovered_at: string | null;
|
|
4480
|
-
title?: string | null | undefined;
|
|
4481
|
-
url?: string | null | undefined;
|
|
4482
|
-
description?: string | null | undefined;
|
|
4483
|
-
key_points?: string | null | undefined;
|
|
4484
|
-
image_url?: string | null | undefined;
|
|
4485
|
-
posted_date?: string | null | undefined;
|
|
4486
|
-
initial_run?: boolean | null | undefined;
|
|
4487
|
-
}>, z.ZodObject<{
|
|
4488
|
-
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4489
|
-
url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4490
|
-
category: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4491
|
-
location: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4492
|
-
posted_date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4493
|
-
is_live: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
4494
|
-
added_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4495
|
-
removed_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4496
|
-
competitor: z.ZodString;
|
|
4497
|
-
tags: z.ZodArray<z.ZodString, "many">;
|
|
4498
|
-
discovered_at: z.ZodNullable<z.ZodString>;
|
|
4499
|
-
initial_run: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
4500
|
-
}, "strip", z.ZodTypeAny, {
|
|
4501
|
-
competitor: string;
|
|
4502
|
-
tags: string[];
|
|
4503
|
-
discovered_at: string | null;
|
|
4504
|
-
category?: string | null | undefined;
|
|
4505
|
-
title?: string | null | undefined;
|
|
4506
|
-
url?: string | null | undefined;
|
|
4507
|
-
posted_date?: string | null | undefined;
|
|
4508
|
-
initial_run?: boolean | null | undefined;
|
|
4509
|
-
location?: string | null | undefined;
|
|
4510
|
-
is_live?: boolean | null | undefined;
|
|
4511
|
-
added_at?: string | null | undefined;
|
|
4512
|
-
removed_at?: string | null | undefined;
|
|
4513
|
-
}, {
|
|
4514
|
-
competitor: string;
|
|
4515
|
-
tags: string[];
|
|
4516
|
-
discovered_at: string | null;
|
|
4517
|
-
category?: string | null | undefined;
|
|
4518
|
-
title?: string | null | undefined;
|
|
4519
|
-
url?: string | null | undefined;
|
|
4520
|
-
posted_date?: string | null | undefined;
|
|
4521
|
-
initial_run?: boolean | null | undefined;
|
|
4522
|
-
location?: string | null | undefined;
|
|
4523
|
-
is_live?: boolean | null | undefined;
|
|
4524
|
-
added_at?: string | null | undefined;
|
|
4525
|
-
removed_at?: string | null | undefined;
|
|
4526
|
-
}>, z.ZodObject<{
|
|
4527
|
-
pricing_data: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodRecord<z.ZodString, z.ZodUnknown>, z.ZodArray<z.ZodUnknown, "many">]>>>;
|
|
4528
|
-
changes: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4529
|
-
is_live: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
4530
|
-
last_updated_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4531
|
-
competitor: z.ZodString;
|
|
4532
|
-
tags: z.ZodArray<z.ZodString, "many">;
|
|
4533
|
-
discovered_at: z.ZodNullable<z.ZodString>;
|
|
4534
|
-
initial_run: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
4535
|
-
}, "strip", z.ZodTypeAny, {
|
|
4536
|
-
competitor: string;
|
|
4537
|
-
tags: string[];
|
|
4538
|
-
discovered_at: string | null;
|
|
4539
|
-
initial_run?: boolean | null | undefined;
|
|
4540
|
-
is_live?: boolean | null | undefined;
|
|
4541
|
-
pricing_data?: unknown[] | Record<string, unknown> | null | undefined;
|
|
4542
|
-
changes?: string | null | undefined;
|
|
4543
|
-
last_updated_at?: string | null | undefined;
|
|
4544
|
-
}, {
|
|
4545
|
-
competitor: string;
|
|
4546
|
-
tags: string[];
|
|
4547
|
-
discovered_at: string | null;
|
|
4548
|
-
initial_run?: boolean | null | undefined;
|
|
4549
|
-
is_live?: boolean | null | undefined;
|
|
4550
|
-
pricing_data?: unknown[] | Record<string, unknown> | null | undefined;
|
|
4551
|
-
changes?: string | null | undefined;
|
|
4552
|
-
last_updated_at?: string | null | undefined;
|
|
4553
|
-
}>, z.ZodObject<{
|
|
4554
|
-
url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4555
|
-
content: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4556
|
-
posted_date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4557
|
-
competitor: z.ZodString;
|
|
4558
|
-
tags: z.ZodArray<z.ZodString, "many">;
|
|
4559
|
-
discovered_at: z.ZodNullable<z.ZodString>;
|
|
4560
|
-
initial_run: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
4561
|
-
}, "strip", z.ZodTypeAny, {
|
|
4562
|
-
competitor: string;
|
|
4563
|
-
tags: string[];
|
|
4564
|
-
discovered_at: string | null;
|
|
4565
|
-
url?: string | null | undefined;
|
|
4566
|
-
posted_date?: string | null | undefined;
|
|
4567
|
-
initial_run?: boolean | null | undefined;
|
|
4568
|
-
content?: string | null | undefined;
|
|
4569
|
-
}, {
|
|
4570
|
-
competitor: string;
|
|
4571
|
-
tags: string[];
|
|
4572
|
-
discovered_at: string | null;
|
|
4573
|
-
url?: string | null | undefined;
|
|
4574
|
-
posted_date?: string | null | undefined;
|
|
4575
|
-
initial_run?: boolean | null | undefined;
|
|
4576
|
-
content?: string | null | undefined;
|
|
4577
|
-
}>, z.ZodObject<{
|
|
4578
|
-
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4579
|
-
url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4580
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4581
|
-
posted_date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4582
|
-
competitor: z.ZodString;
|
|
4583
|
-
tags: z.ZodArray<z.ZodString, "many">;
|
|
4584
|
-
discovered_at: z.ZodNullable<z.ZodString>;
|
|
4585
|
-
initial_run: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
4586
|
-
}, "strip", z.ZodTypeAny, {
|
|
4587
|
-
competitor: string;
|
|
4588
|
-
tags: string[];
|
|
4589
|
-
discovered_at: string | null;
|
|
4590
|
-
title?: string | null | undefined;
|
|
4591
|
-
url?: string | null | undefined;
|
|
4592
|
-
description?: string | null | undefined;
|
|
4593
|
-
posted_date?: string | null | undefined;
|
|
4594
|
-
initial_run?: boolean | null | undefined;
|
|
4595
|
-
}, {
|
|
4596
|
-
competitor: string;
|
|
4597
|
-
tags: string[];
|
|
4598
|
-
discovered_at: string | null;
|
|
4599
|
-
title?: string | null | undefined;
|
|
4600
|
-
url?: string | null | undefined;
|
|
4601
|
-
description?: string | null | undefined;
|
|
4602
|
-
posted_date?: string | null | undefined;
|
|
4603
|
-
initial_run?: boolean | null | undefined;
|
|
4604
|
-
}>, z.ZodObject<{
|
|
4605
|
-
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4606
|
-
url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4607
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4608
|
-
image_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4609
|
-
event_type: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4610
|
-
location: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4611
|
-
is_virtual: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
4612
|
-
event_date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4613
|
-
competitor: z.ZodString;
|
|
4614
|
-
tags: z.ZodArray<z.ZodString, "many">;
|
|
4615
|
-
discovered_at: z.ZodNullable<z.ZodString>;
|
|
4616
|
-
initial_run: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
4617
|
-
}, "strip", z.ZodTypeAny, {
|
|
4618
|
-
competitor: string;
|
|
4619
|
-
tags: string[];
|
|
4620
|
-
discovered_at: string | null;
|
|
4621
|
-
title?: string | null | undefined;
|
|
4622
|
-
url?: string | null | undefined;
|
|
4623
|
-
description?: string | null | undefined;
|
|
4624
|
-
image_url?: string | null | undefined;
|
|
4625
|
-
initial_run?: boolean | null | undefined;
|
|
4626
|
-
location?: string | null | undefined;
|
|
4627
|
-
event_type?: string | null | undefined;
|
|
4628
|
-
is_virtual?: boolean | null | undefined;
|
|
4629
|
-
event_date?: string | null | undefined;
|
|
4630
|
-
}, {
|
|
4631
|
-
competitor: string;
|
|
4632
|
-
tags: string[];
|
|
4633
|
-
discovered_at: string | null;
|
|
4634
|
-
title?: string | null | undefined;
|
|
4635
|
-
url?: string | null | undefined;
|
|
4636
|
-
description?: string | null | undefined;
|
|
4637
|
-
image_url?: string | null | undefined;
|
|
4638
|
-
initial_run?: boolean | null | undefined;
|
|
4639
|
-
location?: string | null | undefined;
|
|
4640
|
-
event_type?: string | null | undefined;
|
|
4641
|
-
is_virtual?: boolean | null | undefined;
|
|
4642
|
-
event_date?: string | null | undefined;
|
|
4643
|
-
}>, z.ZodObject<{
|
|
4644
|
-
message_text: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4645
|
-
message_level: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4646
|
-
order_on_page: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4647
|
-
is_live: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
4648
|
-
added_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4649
|
-
removed_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4650
|
-
competitor: z.ZodString;
|
|
4651
|
-
tags: z.ZodArray<z.ZodString, "many">;
|
|
4652
|
-
discovered_at: z.ZodNullable<z.ZodString>;
|
|
4653
|
-
initial_run: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
4654
|
-
}, "strip", z.ZodTypeAny, {
|
|
4655
|
-
competitor: string;
|
|
4656
|
-
tags: string[];
|
|
4657
|
-
discovered_at: string | null;
|
|
4658
|
-
initial_run?: boolean | null | undefined;
|
|
4659
|
-
is_live?: boolean | null | undefined;
|
|
4660
|
-
added_at?: string | null | undefined;
|
|
4661
|
-
removed_at?: string | null | undefined;
|
|
4662
|
-
message_text?: string | null | undefined;
|
|
4663
|
-
message_level?: string | null | undefined;
|
|
4664
|
-
order_on_page?: number | null | undefined;
|
|
4665
|
-
}, {
|
|
4666
|
-
competitor: string;
|
|
4667
|
-
tags: string[];
|
|
4668
|
-
discovered_at: string | null;
|
|
4669
|
-
initial_run?: boolean | null | undefined;
|
|
4670
|
-
is_live?: boolean | null | undefined;
|
|
4671
|
-
added_at?: string | null | undefined;
|
|
4672
|
-
removed_at?: string | null | undefined;
|
|
4673
|
-
message_text?: string | null | undefined;
|
|
4674
|
-
message_level?: string | null | undefined;
|
|
4675
|
-
order_on_page?: number | null | undefined;
|
|
4676
|
-
}>, z.ZodObject<{
|
|
4677
|
-
metric: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4678
|
-
context_brand: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4679
|
-
is_live: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
4680
|
-
added_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4681
|
-
removed_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4682
|
-
competitor: z.ZodString;
|
|
4683
|
-
tags: z.ZodArray<z.ZodString, "many">;
|
|
4684
|
-
discovered_at: z.ZodNullable<z.ZodString>;
|
|
4685
|
-
initial_run: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
4686
|
-
}, "strip", z.ZodTypeAny, {
|
|
4687
|
-
competitor: string;
|
|
4688
|
-
tags: string[];
|
|
4689
|
-
discovered_at: string | null;
|
|
4690
|
-
initial_run?: boolean | null | undefined;
|
|
4691
|
-
is_live?: boolean | null | undefined;
|
|
4692
|
-
added_at?: string | null | undefined;
|
|
4693
|
-
removed_at?: string | null | undefined;
|
|
4694
|
-
metric?: string | null | undefined;
|
|
4695
|
-
context_brand?: string | null | undefined;
|
|
4696
|
-
}, {
|
|
4697
|
-
competitor: string;
|
|
4698
|
-
tags: string[];
|
|
4699
|
-
discovered_at: string | null;
|
|
4700
|
-
initial_run?: boolean | null | undefined;
|
|
4701
|
-
is_live?: boolean | null | undefined;
|
|
4702
|
-
added_at?: string | null | undefined;
|
|
4703
|
-
removed_at?: string | null | undefined;
|
|
4704
|
-
metric?: string | null | undefined;
|
|
4705
|
-
context_brand?: string | null | undefined;
|
|
4706
|
-
}>, z.ZodObject<{
|
|
4707
|
-
name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4708
|
-
logo_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4709
|
-
image_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4710
|
-
is_live: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
4711
|
-
added_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4712
|
-
removed_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4713
|
-
competitor: z.ZodString;
|
|
4714
|
-
tags: z.ZodArray<z.ZodString, "many">;
|
|
4715
|
-
discovered_at: z.ZodNullable<z.ZodString>;
|
|
4716
|
-
initial_run: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
4717
|
-
}, "strip", z.ZodTypeAny, {
|
|
4718
|
-
competitor: string;
|
|
4719
|
-
tags: string[];
|
|
4720
|
-
discovered_at: string | null;
|
|
4721
|
-
name?: string | null | undefined;
|
|
4722
|
-
image_url?: string | null | undefined;
|
|
4723
|
-
initial_run?: boolean | null | undefined;
|
|
4724
|
-
is_live?: boolean | null | undefined;
|
|
4725
|
-
added_at?: string | null | undefined;
|
|
4726
|
-
removed_at?: string | null | undefined;
|
|
4727
|
-
logo_url?: string | null | undefined;
|
|
4728
|
-
}, {
|
|
4729
|
-
competitor: string;
|
|
4730
|
-
tags: string[];
|
|
4731
|
-
discovered_at: string | null;
|
|
4732
|
-
name?: string | null | undefined;
|
|
4733
|
-
image_url?: string | null | undefined;
|
|
4734
|
-
initial_run?: boolean | null | undefined;
|
|
4735
|
-
is_live?: boolean | null | undefined;
|
|
4736
|
-
added_at?: string | null | undefined;
|
|
4737
|
-
removed_at?: string | null | undefined;
|
|
4738
|
-
logo_url?: string | null | undefined;
|
|
4739
|
-
}>, z.ZodObject<{
|
|
4740
|
-
url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4741
|
-
competitor: z.ZodString;
|
|
4742
|
-
tags: z.ZodArray<z.ZodString, "many">;
|
|
4743
|
-
discovered_at: z.ZodNullable<z.ZodString>;
|
|
4744
|
-
initial_run: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
4745
|
-
}, "strip", z.ZodTypeAny, {
|
|
4746
|
-
competitor: string;
|
|
4747
|
-
tags: string[];
|
|
4748
|
-
discovered_at: string | null;
|
|
4749
|
-
url?: string | null | undefined;
|
|
4750
|
-
initial_run?: boolean | null | undefined;
|
|
4751
|
-
}, {
|
|
4752
|
-
competitor: string;
|
|
4753
|
-
tags: string[];
|
|
4754
|
-
discovered_at: string | null;
|
|
4755
|
-
url?: string | null | undefined;
|
|
4756
|
-
initial_run?: boolean | null | undefined;
|
|
4757
|
-
}>]>;
|
|
4061
|
+
payload: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
4758
4062
|
}, "strip", z.ZodTypeAny, {
|
|
4759
|
-
payload:
|
|
4760
|
-
competitor: string;
|
|
4761
|
-
tags: string[];
|
|
4762
|
-
discovered_at: string | null;
|
|
4763
|
-
title?: string | null | undefined;
|
|
4764
|
-
url?: string | null | undefined;
|
|
4765
|
-
description?: string | null | undefined;
|
|
4766
|
-
key_points?: string | null | undefined;
|
|
4767
|
-
image_url?: string | null | undefined;
|
|
4768
|
-
posted_date?: string | null | undefined;
|
|
4769
|
-
initial_run?: boolean | null | undefined;
|
|
4770
|
-
} | {
|
|
4771
|
-
competitor: string;
|
|
4772
|
-
tags: string[];
|
|
4773
|
-
discovered_at: string | null;
|
|
4774
|
-
category?: string | null | undefined;
|
|
4775
|
-
title?: string | null | undefined;
|
|
4776
|
-
url?: string | null | undefined;
|
|
4777
|
-
posted_date?: string | null | undefined;
|
|
4778
|
-
initial_run?: boolean | null | undefined;
|
|
4779
|
-
location?: string | null | undefined;
|
|
4780
|
-
is_live?: boolean | null | undefined;
|
|
4781
|
-
added_at?: string | null | undefined;
|
|
4782
|
-
removed_at?: string | null | undefined;
|
|
4783
|
-
} | {
|
|
4784
|
-
competitor: string;
|
|
4785
|
-
tags: string[];
|
|
4786
|
-
discovered_at: string | null;
|
|
4787
|
-
initial_run?: boolean | null | undefined;
|
|
4788
|
-
is_live?: boolean | null | undefined;
|
|
4789
|
-
pricing_data?: unknown[] | Record<string, unknown> | null | undefined;
|
|
4790
|
-
changes?: string | null | undefined;
|
|
4791
|
-
last_updated_at?: string | null | undefined;
|
|
4792
|
-
} | {
|
|
4793
|
-
competitor: string;
|
|
4794
|
-
tags: string[];
|
|
4795
|
-
discovered_at: string | null;
|
|
4796
|
-
url?: string | null | undefined;
|
|
4797
|
-
posted_date?: string | null | undefined;
|
|
4798
|
-
initial_run?: boolean | null | undefined;
|
|
4799
|
-
content?: string | null | undefined;
|
|
4800
|
-
} | {
|
|
4801
|
-
competitor: string;
|
|
4802
|
-
tags: string[];
|
|
4803
|
-
discovered_at: string | null;
|
|
4804
|
-
title?: string | null | undefined;
|
|
4805
|
-
url?: string | null | undefined;
|
|
4806
|
-
description?: string | null | undefined;
|
|
4807
|
-
posted_date?: string | null | undefined;
|
|
4808
|
-
initial_run?: boolean | null | undefined;
|
|
4809
|
-
} | {
|
|
4810
|
-
competitor: string;
|
|
4811
|
-
tags: string[];
|
|
4812
|
-
discovered_at: string | null;
|
|
4813
|
-
title?: string | null | undefined;
|
|
4814
|
-
url?: string | null | undefined;
|
|
4815
|
-
description?: string | null | undefined;
|
|
4816
|
-
image_url?: string | null | undefined;
|
|
4817
|
-
initial_run?: boolean | null | undefined;
|
|
4818
|
-
location?: string | null | undefined;
|
|
4819
|
-
event_type?: string | null | undefined;
|
|
4820
|
-
is_virtual?: boolean | null | undefined;
|
|
4821
|
-
event_date?: string | null | undefined;
|
|
4822
|
-
} | {
|
|
4823
|
-
competitor: string;
|
|
4824
|
-
tags: string[];
|
|
4825
|
-
discovered_at: string | null;
|
|
4826
|
-
initial_run?: boolean | null | undefined;
|
|
4827
|
-
is_live?: boolean | null | undefined;
|
|
4828
|
-
added_at?: string | null | undefined;
|
|
4829
|
-
removed_at?: string | null | undefined;
|
|
4830
|
-
message_text?: string | null | undefined;
|
|
4831
|
-
message_level?: string | null | undefined;
|
|
4832
|
-
order_on_page?: number | null | undefined;
|
|
4833
|
-
} | {
|
|
4834
|
-
competitor: string;
|
|
4835
|
-
tags: string[];
|
|
4836
|
-
discovered_at: string | null;
|
|
4837
|
-
initial_run?: boolean | null | undefined;
|
|
4838
|
-
is_live?: boolean | null | undefined;
|
|
4839
|
-
added_at?: string | null | undefined;
|
|
4840
|
-
removed_at?: string | null | undefined;
|
|
4841
|
-
metric?: string | null | undefined;
|
|
4842
|
-
context_brand?: string | null | undefined;
|
|
4843
|
-
} | {
|
|
4844
|
-
competitor: string;
|
|
4845
|
-
tags: string[];
|
|
4846
|
-
discovered_at: string | null;
|
|
4847
|
-
name?: string | null | undefined;
|
|
4848
|
-
image_url?: string | null | undefined;
|
|
4849
|
-
initial_run?: boolean | null | undefined;
|
|
4850
|
-
is_live?: boolean | null | undefined;
|
|
4851
|
-
added_at?: string | null | undefined;
|
|
4852
|
-
removed_at?: string | null | undefined;
|
|
4853
|
-
logo_url?: string | null | undefined;
|
|
4854
|
-
} | {
|
|
4855
|
-
competitor: string;
|
|
4856
|
-
tags: string[];
|
|
4857
|
-
discovered_at: string | null;
|
|
4858
|
-
url?: string | null | undefined;
|
|
4859
|
-
initial_run?: boolean | null | undefined;
|
|
4860
|
-
};
|
|
4063
|
+
payload: Record<string, unknown>;
|
|
4861
4064
|
id: string;
|
|
4862
4065
|
competitor: {
|
|
4863
4066
|
id: string;
|
|
4864
4067
|
name: string | null;
|
|
4865
4068
|
};
|
|
4866
|
-
section: "blog-posts" | "press-posts" | "job-listings" | "pricing" | "case-studies" | "linkedin-posts" | "youtube-videos" | "events" | "messaging" | "metrics-claimed" | "logos" | "sitemap-urls";
|
|
4069
|
+
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
4070
|
}, {
|
|
4868
|
-
payload:
|
|
4869
|
-
competitor: string;
|
|
4870
|
-
tags: string[];
|
|
4871
|
-
discovered_at: string | null;
|
|
4872
|
-
title?: string | null | undefined;
|
|
4873
|
-
url?: string | null | undefined;
|
|
4874
|
-
description?: string | null | undefined;
|
|
4875
|
-
key_points?: string | null | undefined;
|
|
4876
|
-
image_url?: string | null | undefined;
|
|
4877
|
-
posted_date?: string | null | undefined;
|
|
4878
|
-
initial_run?: boolean | null | undefined;
|
|
4879
|
-
} | {
|
|
4880
|
-
competitor: string;
|
|
4881
|
-
tags: string[];
|
|
4882
|
-
discovered_at: string | null;
|
|
4883
|
-
category?: string | null | undefined;
|
|
4884
|
-
title?: string | null | undefined;
|
|
4885
|
-
url?: string | null | undefined;
|
|
4886
|
-
posted_date?: string | null | undefined;
|
|
4887
|
-
initial_run?: boolean | null | undefined;
|
|
4888
|
-
location?: string | null | undefined;
|
|
4889
|
-
is_live?: boolean | null | undefined;
|
|
4890
|
-
added_at?: string | null | undefined;
|
|
4891
|
-
removed_at?: string | null | undefined;
|
|
4892
|
-
} | {
|
|
4893
|
-
competitor: string;
|
|
4894
|
-
tags: string[];
|
|
4895
|
-
discovered_at: string | null;
|
|
4896
|
-
initial_run?: boolean | null | undefined;
|
|
4897
|
-
is_live?: boolean | null | undefined;
|
|
4898
|
-
pricing_data?: unknown[] | Record<string, unknown> | null | undefined;
|
|
4899
|
-
changes?: string | null | undefined;
|
|
4900
|
-
last_updated_at?: string | null | undefined;
|
|
4901
|
-
} | {
|
|
4902
|
-
competitor: string;
|
|
4903
|
-
tags: string[];
|
|
4904
|
-
discovered_at: string | null;
|
|
4905
|
-
url?: string | null | undefined;
|
|
4906
|
-
posted_date?: string | null | undefined;
|
|
4907
|
-
initial_run?: boolean | null | undefined;
|
|
4908
|
-
content?: string | null | undefined;
|
|
4909
|
-
} | {
|
|
4910
|
-
competitor: string;
|
|
4911
|
-
tags: string[];
|
|
4912
|
-
discovered_at: string | null;
|
|
4913
|
-
title?: string | null | undefined;
|
|
4914
|
-
url?: string | null | undefined;
|
|
4915
|
-
description?: string | null | undefined;
|
|
4916
|
-
posted_date?: string | null | undefined;
|
|
4917
|
-
initial_run?: boolean | null | undefined;
|
|
4918
|
-
} | {
|
|
4919
|
-
competitor: string;
|
|
4920
|
-
tags: string[];
|
|
4921
|
-
discovered_at: string | null;
|
|
4922
|
-
title?: string | null | undefined;
|
|
4923
|
-
url?: string | null | undefined;
|
|
4924
|
-
description?: string | null | undefined;
|
|
4925
|
-
image_url?: string | null | undefined;
|
|
4926
|
-
initial_run?: boolean | null | undefined;
|
|
4927
|
-
location?: string | null | undefined;
|
|
4928
|
-
event_type?: string | null | undefined;
|
|
4929
|
-
is_virtual?: boolean | null | undefined;
|
|
4930
|
-
event_date?: string | null | undefined;
|
|
4931
|
-
} | {
|
|
4932
|
-
competitor: string;
|
|
4933
|
-
tags: string[];
|
|
4934
|
-
discovered_at: string | null;
|
|
4935
|
-
initial_run?: boolean | null | undefined;
|
|
4936
|
-
is_live?: boolean | null | undefined;
|
|
4937
|
-
added_at?: string | null | undefined;
|
|
4938
|
-
removed_at?: string | null | undefined;
|
|
4939
|
-
message_text?: string | null | undefined;
|
|
4940
|
-
message_level?: string | null | undefined;
|
|
4941
|
-
order_on_page?: number | null | undefined;
|
|
4942
|
-
} | {
|
|
4943
|
-
competitor: string;
|
|
4944
|
-
tags: string[];
|
|
4945
|
-
discovered_at: string | null;
|
|
4946
|
-
initial_run?: boolean | null | undefined;
|
|
4947
|
-
is_live?: boolean | null | undefined;
|
|
4948
|
-
added_at?: string | null | undefined;
|
|
4949
|
-
removed_at?: string | null | undefined;
|
|
4950
|
-
metric?: string | null | undefined;
|
|
4951
|
-
context_brand?: string | null | undefined;
|
|
4952
|
-
} | {
|
|
4953
|
-
competitor: string;
|
|
4954
|
-
tags: string[];
|
|
4955
|
-
discovered_at: string | null;
|
|
4956
|
-
name?: string | null | undefined;
|
|
4957
|
-
image_url?: string | null | undefined;
|
|
4958
|
-
initial_run?: boolean | null | undefined;
|
|
4959
|
-
is_live?: boolean | null | undefined;
|
|
4960
|
-
added_at?: string | null | undefined;
|
|
4961
|
-
removed_at?: string | null | undefined;
|
|
4962
|
-
logo_url?: string | null | undefined;
|
|
4963
|
-
} | {
|
|
4964
|
-
competitor: string;
|
|
4965
|
-
tags: string[];
|
|
4966
|
-
discovered_at: string | null;
|
|
4967
|
-
url?: string | null | undefined;
|
|
4968
|
-
initial_run?: boolean | null | undefined;
|
|
4969
|
-
};
|
|
4071
|
+
payload: Record<string, unknown>;
|
|
4970
4072
|
id: string;
|
|
4971
4073
|
competitor: {
|
|
4972
4074
|
id: string;
|
|
4973
4075
|
name: string | null;
|
|
4974
4076
|
};
|
|
4975
|
-
section: "blog-posts" | "press-posts" | "job-listings" | "pricing" | "case-studies" | "linkedin-posts" | "youtube-videos" | "events" | "messaging" | "metrics-claimed" | "logos" | "sitemap-urls";
|
|
4077
|
+
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
4078
|
}>;
|
|
4977
4079
|
}, "strip", z.ZodTypeAny, {
|
|
4978
4080
|
data: {
|
|
4979
|
-
payload:
|
|
4980
|
-
competitor: string;
|
|
4981
|
-
tags: string[];
|
|
4982
|
-
discovered_at: string | null;
|
|
4983
|
-
title?: string | null | undefined;
|
|
4984
|
-
url?: string | null | undefined;
|
|
4985
|
-
description?: string | null | undefined;
|
|
4986
|
-
key_points?: string | null | undefined;
|
|
4987
|
-
image_url?: string | null | undefined;
|
|
4988
|
-
posted_date?: string | null | undefined;
|
|
4989
|
-
initial_run?: boolean | null | undefined;
|
|
4990
|
-
} | {
|
|
4991
|
-
competitor: string;
|
|
4992
|
-
tags: string[];
|
|
4993
|
-
discovered_at: string | null;
|
|
4994
|
-
category?: string | null | undefined;
|
|
4995
|
-
title?: string | null | undefined;
|
|
4996
|
-
url?: string | null | undefined;
|
|
4997
|
-
posted_date?: string | null | undefined;
|
|
4998
|
-
initial_run?: boolean | null | undefined;
|
|
4999
|
-
location?: string | null | undefined;
|
|
5000
|
-
is_live?: boolean | null | undefined;
|
|
5001
|
-
added_at?: string | null | undefined;
|
|
5002
|
-
removed_at?: string | null | undefined;
|
|
5003
|
-
} | {
|
|
5004
|
-
competitor: string;
|
|
5005
|
-
tags: string[];
|
|
5006
|
-
discovered_at: string | null;
|
|
5007
|
-
initial_run?: boolean | null | undefined;
|
|
5008
|
-
is_live?: boolean | null | undefined;
|
|
5009
|
-
pricing_data?: unknown[] | Record<string, unknown> | null | undefined;
|
|
5010
|
-
changes?: string | null | undefined;
|
|
5011
|
-
last_updated_at?: string | null | undefined;
|
|
5012
|
-
} | {
|
|
5013
|
-
competitor: string;
|
|
5014
|
-
tags: string[];
|
|
5015
|
-
discovered_at: string | null;
|
|
5016
|
-
url?: string | null | undefined;
|
|
5017
|
-
posted_date?: string | null | undefined;
|
|
5018
|
-
initial_run?: boolean | null | undefined;
|
|
5019
|
-
content?: string | null | undefined;
|
|
5020
|
-
} | {
|
|
5021
|
-
competitor: string;
|
|
5022
|
-
tags: string[];
|
|
5023
|
-
discovered_at: string | null;
|
|
5024
|
-
title?: string | null | undefined;
|
|
5025
|
-
url?: string | null | undefined;
|
|
5026
|
-
description?: string | null | undefined;
|
|
5027
|
-
posted_date?: string | null | undefined;
|
|
5028
|
-
initial_run?: boolean | null | undefined;
|
|
5029
|
-
} | {
|
|
5030
|
-
competitor: string;
|
|
5031
|
-
tags: string[];
|
|
5032
|
-
discovered_at: string | null;
|
|
5033
|
-
title?: string | null | undefined;
|
|
5034
|
-
url?: string | null | undefined;
|
|
5035
|
-
description?: string | null | undefined;
|
|
5036
|
-
image_url?: string | null | undefined;
|
|
5037
|
-
initial_run?: boolean | null | undefined;
|
|
5038
|
-
location?: string | null | undefined;
|
|
5039
|
-
event_type?: string | null | undefined;
|
|
5040
|
-
is_virtual?: boolean | null | undefined;
|
|
5041
|
-
event_date?: string | null | undefined;
|
|
5042
|
-
} | {
|
|
5043
|
-
competitor: string;
|
|
5044
|
-
tags: string[];
|
|
5045
|
-
discovered_at: string | null;
|
|
5046
|
-
initial_run?: boolean | null | undefined;
|
|
5047
|
-
is_live?: boolean | null | undefined;
|
|
5048
|
-
added_at?: string | null | undefined;
|
|
5049
|
-
removed_at?: string | null | undefined;
|
|
5050
|
-
message_text?: string | null | undefined;
|
|
5051
|
-
message_level?: string | null | undefined;
|
|
5052
|
-
order_on_page?: number | null | undefined;
|
|
5053
|
-
} | {
|
|
5054
|
-
competitor: string;
|
|
5055
|
-
tags: string[];
|
|
5056
|
-
discovered_at: string | null;
|
|
5057
|
-
initial_run?: boolean | null | undefined;
|
|
5058
|
-
is_live?: boolean | null | undefined;
|
|
5059
|
-
added_at?: string | null | undefined;
|
|
5060
|
-
removed_at?: string | null | undefined;
|
|
5061
|
-
metric?: string | null | undefined;
|
|
5062
|
-
context_brand?: string | null | undefined;
|
|
5063
|
-
} | {
|
|
5064
|
-
competitor: string;
|
|
5065
|
-
tags: string[];
|
|
5066
|
-
discovered_at: string | null;
|
|
5067
|
-
name?: string | null | undefined;
|
|
5068
|
-
image_url?: string | null | undefined;
|
|
5069
|
-
initial_run?: boolean | null | undefined;
|
|
5070
|
-
is_live?: boolean | null | undefined;
|
|
5071
|
-
added_at?: string | null | undefined;
|
|
5072
|
-
removed_at?: string | null | undefined;
|
|
5073
|
-
logo_url?: string | null | undefined;
|
|
5074
|
-
} | {
|
|
5075
|
-
competitor: string;
|
|
5076
|
-
tags: string[];
|
|
5077
|
-
discovered_at: string | null;
|
|
5078
|
-
url?: string | null | undefined;
|
|
5079
|
-
initial_run?: boolean | null | undefined;
|
|
5080
|
-
};
|
|
4081
|
+
payload: Record<string, unknown>;
|
|
5081
4082
|
id: string;
|
|
5082
4083
|
competitor: {
|
|
5083
4084
|
id: string;
|
|
5084
4085
|
name: string | null;
|
|
5085
4086
|
};
|
|
5086
|
-
section: "blog-posts" | "press-posts" | "job-listings" | "pricing" | "case-studies" | "linkedin-posts" | "youtube-videos" | "events" | "messaging" | "metrics-claimed" | "logos" | "sitemap-urls";
|
|
4087
|
+
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
4088
|
};
|
|
5088
4089
|
}, {
|
|
5089
4090
|
data: {
|
|
5090
|
-
payload:
|
|
5091
|
-
competitor: string;
|
|
5092
|
-
tags: string[];
|
|
5093
|
-
discovered_at: string | null;
|
|
5094
|
-
title?: string | null | undefined;
|
|
5095
|
-
url?: string | null | undefined;
|
|
5096
|
-
description?: string | null | undefined;
|
|
5097
|
-
key_points?: string | null | undefined;
|
|
5098
|
-
image_url?: string | null | undefined;
|
|
5099
|
-
posted_date?: string | null | undefined;
|
|
5100
|
-
initial_run?: boolean | null | undefined;
|
|
5101
|
-
} | {
|
|
5102
|
-
competitor: string;
|
|
5103
|
-
tags: string[];
|
|
5104
|
-
discovered_at: string | null;
|
|
5105
|
-
category?: string | null | undefined;
|
|
5106
|
-
title?: string | null | undefined;
|
|
5107
|
-
url?: string | null | undefined;
|
|
5108
|
-
posted_date?: string | null | undefined;
|
|
5109
|
-
initial_run?: boolean | null | undefined;
|
|
5110
|
-
location?: string | null | undefined;
|
|
5111
|
-
is_live?: boolean | null | undefined;
|
|
5112
|
-
added_at?: string | null | undefined;
|
|
5113
|
-
removed_at?: string | null | undefined;
|
|
5114
|
-
} | {
|
|
5115
|
-
competitor: string;
|
|
5116
|
-
tags: string[];
|
|
5117
|
-
discovered_at: string | null;
|
|
5118
|
-
initial_run?: boolean | null | undefined;
|
|
5119
|
-
is_live?: boolean | null | undefined;
|
|
5120
|
-
pricing_data?: unknown[] | Record<string, unknown> | null | undefined;
|
|
5121
|
-
changes?: string | null | undefined;
|
|
5122
|
-
last_updated_at?: string | null | undefined;
|
|
5123
|
-
} | {
|
|
5124
|
-
competitor: string;
|
|
5125
|
-
tags: string[];
|
|
5126
|
-
discovered_at: string | null;
|
|
5127
|
-
url?: string | null | undefined;
|
|
5128
|
-
posted_date?: string | null | undefined;
|
|
5129
|
-
initial_run?: boolean | null | undefined;
|
|
5130
|
-
content?: string | null | undefined;
|
|
5131
|
-
} | {
|
|
5132
|
-
competitor: string;
|
|
5133
|
-
tags: string[];
|
|
5134
|
-
discovered_at: string | null;
|
|
5135
|
-
title?: string | null | undefined;
|
|
5136
|
-
url?: string | null | undefined;
|
|
5137
|
-
description?: string | null | undefined;
|
|
5138
|
-
posted_date?: string | null | undefined;
|
|
5139
|
-
initial_run?: boolean | null | undefined;
|
|
5140
|
-
} | {
|
|
5141
|
-
competitor: string;
|
|
5142
|
-
tags: string[];
|
|
5143
|
-
discovered_at: string | null;
|
|
5144
|
-
title?: string | null | undefined;
|
|
5145
|
-
url?: string | null | undefined;
|
|
5146
|
-
description?: string | null | undefined;
|
|
5147
|
-
image_url?: string | null | undefined;
|
|
5148
|
-
initial_run?: boolean | null | undefined;
|
|
5149
|
-
location?: string | null | undefined;
|
|
5150
|
-
event_type?: string | null | undefined;
|
|
5151
|
-
is_virtual?: boolean | null | undefined;
|
|
5152
|
-
event_date?: string | null | undefined;
|
|
5153
|
-
} | {
|
|
5154
|
-
competitor: string;
|
|
5155
|
-
tags: string[];
|
|
5156
|
-
discovered_at: string | null;
|
|
5157
|
-
initial_run?: boolean | null | undefined;
|
|
5158
|
-
is_live?: boolean | null | undefined;
|
|
5159
|
-
added_at?: string | null | undefined;
|
|
5160
|
-
removed_at?: string | null | undefined;
|
|
5161
|
-
message_text?: string | null | undefined;
|
|
5162
|
-
message_level?: string | null | undefined;
|
|
5163
|
-
order_on_page?: number | null | undefined;
|
|
5164
|
-
} | {
|
|
5165
|
-
competitor: string;
|
|
5166
|
-
tags: string[];
|
|
5167
|
-
discovered_at: string | null;
|
|
5168
|
-
initial_run?: boolean | null | undefined;
|
|
5169
|
-
is_live?: boolean | null | undefined;
|
|
5170
|
-
added_at?: string | null | undefined;
|
|
5171
|
-
removed_at?: string | null | undefined;
|
|
5172
|
-
metric?: string | null | undefined;
|
|
5173
|
-
context_brand?: string | null | undefined;
|
|
5174
|
-
} | {
|
|
5175
|
-
competitor: string;
|
|
5176
|
-
tags: string[];
|
|
5177
|
-
discovered_at: string | null;
|
|
5178
|
-
name?: string | null | undefined;
|
|
5179
|
-
image_url?: string | null | undefined;
|
|
5180
|
-
initial_run?: boolean | null | undefined;
|
|
5181
|
-
is_live?: boolean | null | undefined;
|
|
5182
|
-
added_at?: string | null | undefined;
|
|
5183
|
-
removed_at?: string | null | undefined;
|
|
5184
|
-
logo_url?: string | null | undefined;
|
|
5185
|
-
} | {
|
|
5186
|
-
competitor: string;
|
|
5187
|
-
tags: string[];
|
|
5188
|
-
discovered_at: string | null;
|
|
5189
|
-
url?: string | null | undefined;
|
|
5190
|
-
initial_run?: boolean | null | undefined;
|
|
5191
|
-
};
|
|
4091
|
+
payload: Record<string, unknown>;
|
|
5192
4092
|
id: string;
|
|
5193
4093
|
competitor: {
|
|
5194
4094
|
id: string;
|
|
5195
4095
|
name: string | null;
|
|
5196
4096
|
};
|
|
5197
|
-
section: "blog-posts" | "press-posts" | "job-listings" | "pricing" | "case-studies" | "linkedin-posts" | "youtube-videos" | "events" | "messaging" | "metrics-claimed" | "logos" | "sitemap-urls";
|
|
4097
|
+
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
4098
|
};
|
|
5199
4099
|
}>;
|
|
5200
4100
|
export type ActivityDetailResponse = z.infer<typeof ActivityDetailResponse>;
|
|
4101
|
+
export declare const ActivityItemsResponse: z.ZodObject<{
|
|
4102
|
+
data: z.ZodArray<z.ZodObject<{
|
|
4103
|
+
id: z.ZodString;
|
|
4104
|
+
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"]>;
|
|
4105
|
+
competitor: z.ZodObject<{
|
|
4106
|
+
id: z.ZodString;
|
|
4107
|
+
name: z.ZodNullable<z.ZodString>;
|
|
4108
|
+
}, "strip", z.ZodTypeAny, {
|
|
4109
|
+
id: string;
|
|
4110
|
+
name: string | null;
|
|
4111
|
+
}, {
|
|
4112
|
+
id: string;
|
|
4113
|
+
name: string | null;
|
|
4114
|
+
}>;
|
|
4115
|
+
payload: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
4116
|
+
}, "strip", z.ZodTypeAny, {
|
|
4117
|
+
payload: Record<string, unknown>;
|
|
4118
|
+
id: string;
|
|
4119
|
+
competitor: {
|
|
4120
|
+
id: string;
|
|
4121
|
+
name: string | null;
|
|
4122
|
+
};
|
|
4123
|
+
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";
|
|
4124
|
+
}, {
|
|
4125
|
+
payload: Record<string, unknown>;
|
|
4126
|
+
id: string;
|
|
4127
|
+
competitor: {
|
|
4128
|
+
id: string;
|
|
4129
|
+
name: string | null;
|
|
4130
|
+
};
|
|
4131
|
+
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";
|
|
4132
|
+
}>, "many">;
|
|
4133
|
+
not_found: z.ZodArray<z.ZodString, "many">;
|
|
4134
|
+
}, "strip", z.ZodTypeAny, {
|
|
4135
|
+
not_found: string[];
|
|
4136
|
+
data: {
|
|
4137
|
+
payload: Record<string, unknown>;
|
|
4138
|
+
id: string;
|
|
4139
|
+
competitor: {
|
|
4140
|
+
id: string;
|
|
4141
|
+
name: string | null;
|
|
4142
|
+
};
|
|
4143
|
+
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";
|
|
4144
|
+
}[];
|
|
4145
|
+
}, {
|
|
4146
|
+
not_found: string[];
|
|
4147
|
+
data: {
|
|
4148
|
+
payload: Record<string, unknown>;
|
|
4149
|
+
id: string;
|
|
4150
|
+
competitor: {
|
|
4151
|
+
id: string;
|
|
4152
|
+
name: string | null;
|
|
4153
|
+
};
|
|
4154
|
+
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";
|
|
4155
|
+
}[];
|
|
4156
|
+
}>;
|
|
4157
|
+
export type ActivityItemsResponse = z.infer<typeof ActivityItemsResponse>;
|
|
5201
4158
|
export declare const DigestSummary: z.ZodObject<{
|
|
5202
4159
|
executive_summary: z.ZodOptional<z.ZodString>;
|
|
5203
4160
|
themes: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -5981,6 +4938,8 @@ export declare const Workspace: z.ZodObject<{
|
|
|
5981
4938
|
export type Workspace = z.infer<typeof Workspace>;
|
|
5982
4939
|
export declare const MeResponse: z.ZodObject<{
|
|
5983
4940
|
data: z.ZodObject<{
|
|
4941
|
+
auth_type: z.ZodOptional<z.ZodEnum<["api_key", "oauth"]>>;
|
|
4942
|
+
subject: z.ZodOptional<z.ZodString>;
|
|
5984
4943
|
key: z.ZodNullable<z.ZodObject<{
|
|
5985
4944
|
id: z.ZodString;
|
|
5986
4945
|
name: z.ZodNullable<z.ZodString>;
|
|
@@ -6110,6 +5069,8 @@ export declare const MeResponse: z.ZodObject<{
|
|
|
6110
5069
|
reset_at: string;
|
|
6111
5070
|
};
|
|
6112
5071
|
} | null;
|
|
5072
|
+
auth_type?: "api_key" | "oauth" | undefined;
|
|
5073
|
+
subject?: string | undefined;
|
|
6113
5074
|
}, {
|
|
6114
5075
|
key: {
|
|
6115
5076
|
id: string;
|
|
@@ -6138,6 +5099,8 @@ export declare const MeResponse: z.ZodObject<{
|
|
|
6138
5099
|
reset_at: string;
|
|
6139
5100
|
};
|
|
6140
5101
|
} | null;
|
|
5102
|
+
auth_type?: "api_key" | "oauth" | undefined;
|
|
5103
|
+
subject?: string | undefined;
|
|
6141
5104
|
}>;
|
|
6142
5105
|
}, "strip", z.ZodTypeAny, {
|
|
6143
5106
|
data: {
|
|
@@ -6168,6 +5131,8 @@ export declare const MeResponse: z.ZodObject<{
|
|
|
6168
5131
|
reset_at: string;
|
|
6169
5132
|
};
|
|
6170
5133
|
} | null;
|
|
5134
|
+
auth_type?: "api_key" | "oauth" | undefined;
|
|
5135
|
+
subject?: string | undefined;
|
|
6171
5136
|
};
|
|
6172
5137
|
}, {
|
|
6173
5138
|
data: {
|
|
@@ -6198,6 +5163,8 @@ export declare const MeResponse: z.ZodObject<{
|
|
|
6198
5163
|
reset_at: string;
|
|
6199
5164
|
};
|
|
6200
5165
|
} | null;
|
|
5166
|
+
auth_type?: "api_key" | "oauth" | undefined;
|
|
5167
|
+
subject?: string | undefined;
|
|
6201
5168
|
};
|
|
6202
5169
|
}>;
|
|
6203
5170
|
export type MeResponse = z.infer<typeof MeResponse>;
|