@meertrack/mcp 1.1.2 → 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/dist/types.d.ts CHANGED
@@ -965,10 +965,14 @@ export declare const AdItem: z.ZodObject<{
965
965
  }>;
966
966
  export type AdItem = z.infer<typeof AdItem>;
967
967
  /**
968
- * Union of every section item shape. The active branch is selected by the
969
- * envelope's `section` value not by inspecting properties (several branches
970
- * overlap on `title`/`url`/`posted_date`). Treated as a permissive union so
971
- * consumers can round-trip without a discriminator.
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.
972
976
  */
973
977
  export declare const SectionItem: z.ZodUnion<[z.ZodObject<{
974
978
  title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -1386,6 +1390,13 @@ export declare const SectionItem: z.ZodUnion<[z.ZodObject<{
1386
1390
  ad_format?: string | null | undefined;
1387
1391
  }>]>;
1388
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>;
1389
1400
  export declare const CompetitorOverviewItems: z.ZodObject<{
1390
1401
  "blog-posts": z.ZodArray<z.ZodObject<{
1391
1402
  title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -3890,1775 +3901,205 @@ export declare const ActivityItem: z.ZodObject<{
3890
3901
  id: string;
3891
3902
  name: string | null;
3892
3903
  }>;
3893
- data: z.ZodUnion<[z.ZodObject<{
3894
- title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3895
- url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3896
- description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3897
- key_points: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3898
- image_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3899
- posted_date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3900
- competitor: z.ZodString;
3901
- tags: z.ZodArray<z.ZodString, "many">;
3902
- discovered_at: z.ZodNullable<z.ZodString>;
3903
- initial_run: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
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>;
3904
3944
  }, "strip", z.ZodTypeAny, {
3905
- competitor: string;
3906
- tags: string[];
3907
- discovered_at: string | null;
3908
- description?: string | null | undefined;
3909
- title?: string | null | undefined;
3910
- url?: string | null | undefined;
3911
- key_points?: string | null | undefined;
3912
- image_url?: string | null | undefined;
3913
- posted_date?: string | null | undefined;
3914
- initial_run?: boolean | null | undefined;
3945
+ id: string;
3946
+ data: Record<string, unknown>;
3947
+ competitor: {
3948
+ id: string;
3949
+ name: string | null;
3950
+ };
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";
3952
+ change_type: "added" | "updated" | "removed";
3953
+ change_date: string;
3915
3954
  }, {
3916
- competitor: string;
3917
- tags: string[];
3918
- discovered_at: string | null;
3919
- description?: string | null | undefined;
3920
- title?: string | null | undefined;
3921
- url?: string | null | undefined;
3922
- key_points?: string | null | undefined;
3923
- image_url?: string | null | undefined;
3924
- posted_date?: string | null | undefined;
3925
- initial_run?: boolean | null | undefined;
3926
- }>, z.ZodObject<{
3927
- title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3928
- url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3929
- category: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3930
- location: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3931
- posted_date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3932
- is_live: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
3933
- added_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3934
- removed_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3935
- competitor: z.ZodString;
3936
- tags: z.ZodArray<z.ZodString, "many">;
3937
- discovered_at: z.ZodNullable<z.ZodString>;
3938
- initial_run: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
3955
+ id: string;
3956
+ data: Record<string, unknown>;
3957
+ competitor: {
3958
+ id: string;
3959
+ name: string | null;
3960
+ };
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";
3962
+ change_type: "added" | "updated" | "removed";
3963
+ change_date: string;
3964
+ }>, "many">;
3965
+ pagination: z.ZodObject<{
3966
+ next_cursor: z.ZodNullable<z.ZodString>;
3967
+ has_more: z.ZodBoolean;
3968
+ } & {
3969
+ total: z.ZodNumber;
3939
3970
  }, "strip", z.ZodTypeAny, {
3940
- competitor: string;
3941
- tags: string[];
3942
- discovered_at: string | null;
3943
- category?: string | null | undefined;
3944
- title?: string | null | undefined;
3945
- url?: string | null | undefined;
3946
- posted_date?: string | null | undefined;
3947
- initial_run?: boolean | null | undefined;
3948
- location?: string | null | undefined;
3949
- is_live?: boolean | null | undefined;
3950
- added_at?: string | null | undefined;
3951
- removed_at?: string | null | undefined;
3971
+ next_cursor: string | null;
3972
+ has_more: boolean;
3973
+ total: number;
3952
3974
  }, {
3953
- competitor: string;
3954
- tags: string[];
3955
- discovered_at: string | null;
3956
- category?: string | null | undefined;
3957
- title?: string | null | undefined;
3958
- url?: string | null | undefined;
3959
- posted_date?: string | null | undefined;
3960
- initial_run?: boolean | null | undefined;
3961
- location?: string | null | undefined;
3962
- is_live?: boolean | null | undefined;
3963
- added_at?: string | null | undefined;
3964
- removed_at?: string | null | undefined;
3965
- }>, z.ZodObject<{
3966
- pricing_data: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodRecord<z.ZodString, z.ZodUnknown>, z.ZodArray<z.ZodUnknown, "many">]>>>;
3967
- changes: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3968
- is_live: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
3969
- last_updated_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3970
- competitor: z.ZodString;
3971
- tags: z.ZodArray<z.ZodString, "many">;
3972
- discovered_at: z.ZodNullable<z.ZodString>;
3973
- initial_run: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
3975
+ next_cursor: string | null;
3976
+ has_more: boolean;
3977
+ total: number;
3978
+ }>;
3979
+ }, "strip", z.ZodTypeAny, {
3980
+ data: {
3981
+ id: string;
3982
+ data: Record<string, unknown>;
3983
+ competitor: {
3984
+ id: string;
3985
+ name: string | null;
3986
+ };
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";
3988
+ change_type: "added" | "updated" | "removed";
3989
+ change_date: string;
3990
+ }[];
3991
+ pagination: {
3992
+ next_cursor: string | null;
3993
+ has_more: boolean;
3994
+ total: number;
3995
+ };
3996
+ }, {
3997
+ data: {
3998
+ id: string;
3999
+ data: Record<string, unknown>;
4000
+ competitor: {
4001
+ id: string;
4002
+ name: string | null;
4003
+ };
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";
4005
+ change_type: "added" | "updated" | "removed";
4006
+ change_date: string;
4007
+ }[];
4008
+ pagination: {
4009
+ next_cursor: string | null;
4010
+ has_more: boolean;
4011
+ total: number;
4012
+ };
4013
+ }>;
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>;
3974
4021
  }, "strip", z.ZodTypeAny, {
3975
- competitor: string;
3976
- tags: string[];
3977
- discovered_at: string | null;
3978
- initial_run?: boolean | null | undefined;
3979
- is_live?: boolean | null | undefined;
3980
- pricing_data?: unknown[] | Record<string, unknown> | null | undefined;
3981
- changes?: string | null | undefined;
3982
- last_updated_at?: string | null | undefined;
4022
+ id: string;
4023
+ name: string | null;
3983
4024
  }, {
3984
- competitor: string;
3985
- tags: string[];
3986
- discovered_at: string | null;
3987
- initial_run?: boolean | null | undefined;
3988
- is_live?: boolean | null | undefined;
3989
- pricing_data?: unknown[] | Record<string, unknown> | null | undefined;
3990
- changes?: string | null | undefined;
3991
- last_updated_at?: string | null | undefined;
3992
- }>, z.ZodObject<{
3993
- url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3994
- content: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3995
- posted_date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3996
- competitor: z.ZodString;
3997
- tags: z.ZodArray<z.ZodString, "many">;
3998
- discovered_at: z.ZodNullable<z.ZodString>;
3999
- initial_run: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
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>;
4047
+ export declare const ActivityDetailResponse: z.ZodObject<{
4048
+ data: z.ZodObject<{
4049
+ id: z.ZodString;
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"]>;
4051
+ competitor: z.ZodObject<{
4052
+ id: z.ZodString;
4053
+ name: z.ZodNullable<z.ZodString>;
4054
+ }, "strip", z.ZodTypeAny, {
4055
+ id: string;
4056
+ name: string | null;
4057
+ }, {
4058
+ id: string;
4059
+ name: string | null;
4060
+ }>;
4061
+ payload: z.ZodRecord<z.ZodString, z.ZodUnknown>;
4000
4062
  }, "strip", z.ZodTypeAny, {
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
- url?: string | null | undefined;
4013
- posted_date?: string | null | undefined;
4014
- initial_run?: boolean | null | undefined;
4015
- content?: string | null | undefined;
4016
- }>, z.ZodObject<{
4017
- title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4018
- url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4019
- description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4020
- posted_date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4021
- competitor: z.ZodString;
4022
- tags: z.ZodArray<z.ZodString, "many">;
4023
- discovered_at: z.ZodNullable<z.ZodString>;
4024
- initial_run: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
4025
- }, "strip", z.ZodTypeAny, {
4026
- competitor: string;
4027
- tags: string[];
4028
- discovered_at: string | null;
4029
- description?: string | null | undefined;
4030
- title?: string | null | undefined;
4031
- url?: string | null | undefined;
4032
- posted_date?: string | null | undefined;
4033
- initial_run?: boolean | null | undefined;
4034
- }, {
4035
- competitor: string;
4036
- tags: string[];
4037
- discovered_at: string | null;
4038
- description?: string | null | undefined;
4039
- title?: string | null | undefined;
4040
- url?: string | null | undefined;
4041
- posted_date?: string | null | undefined;
4042
- initial_run?: boolean | null | undefined;
4043
- }>, z.ZodObject<{
4044
- title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4045
- url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4046
- description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4047
- image_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4048
- event_type: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4049
- location: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4050
- is_virtual: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
4051
- event_date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4052
- competitor: z.ZodString;
4053
- tags: z.ZodArray<z.ZodString, "many">;
4054
- discovered_at: z.ZodNullable<z.ZodString>;
4055
- initial_run: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
4056
- }, "strip", z.ZodTypeAny, {
4057
- competitor: string;
4058
- tags: string[];
4059
- discovered_at: string | null;
4060
- description?: string | null | undefined;
4061
- title?: string | null | undefined;
4062
- url?: string | null | undefined;
4063
- image_url?: string | null | undefined;
4064
- initial_run?: boolean | null | undefined;
4065
- location?: string | null | undefined;
4066
- event_type?: string | null | undefined;
4067
- is_virtual?: boolean | null | undefined;
4068
- event_date?: string | null | undefined;
4069
- }, {
4070
- competitor: string;
4071
- tags: string[];
4072
- discovered_at: string | null;
4073
- description?: string | null | undefined;
4074
- title?: string | null | undefined;
4075
- url?: string | null | undefined;
4076
- image_url?: string | null | undefined;
4077
- initial_run?: boolean | null | undefined;
4078
- location?: string | null | undefined;
4079
- event_type?: string | null | undefined;
4080
- is_virtual?: boolean | null | undefined;
4081
- event_date?: string | null | undefined;
4082
- }>, z.ZodObject<{
4083
- message_text: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4084
- message_level: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4085
- order_on_page: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4086
- is_live: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
4087
- added_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4088
- removed_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4089
- competitor: z.ZodString;
4090
- tags: z.ZodArray<z.ZodString, "many">;
4091
- discovered_at: z.ZodNullable<z.ZodString>;
4092
- initial_run: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
4093
- }, "strip", z.ZodTypeAny, {
4094
- competitor: string;
4095
- tags: string[];
4096
- discovered_at: string | null;
4097
- initial_run?: boolean | null | undefined;
4098
- is_live?: boolean | null | undefined;
4099
- added_at?: string | null | undefined;
4100
- removed_at?: string | null | undefined;
4101
- message_text?: string | null | undefined;
4102
- message_level?: string | null | undefined;
4103
- order_on_page?: number | null | undefined;
4104
- }, {
4105
- competitor: string;
4106
- tags: string[];
4107
- discovered_at: string | null;
4108
- initial_run?: boolean | null | undefined;
4109
- is_live?: boolean | null | undefined;
4110
- added_at?: string | null | undefined;
4111
- removed_at?: string | null | undefined;
4112
- message_text?: string | null | undefined;
4113
- message_level?: string | null | undefined;
4114
- order_on_page?: number | null | undefined;
4115
- }>, z.ZodObject<{
4116
- metric: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4117
- context_brand: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4118
- is_live: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
4119
- added_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4120
- removed_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4121
- competitor: z.ZodString;
4122
- tags: z.ZodArray<z.ZodString, "many">;
4123
- discovered_at: z.ZodNullable<z.ZodString>;
4124
- initial_run: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
4125
- }, "strip", z.ZodTypeAny, {
4126
- competitor: string;
4127
- tags: string[];
4128
- discovered_at: string | null;
4129
- initial_run?: boolean | null | undefined;
4130
- is_live?: boolean | null | undefined;
4131
- added_at?: string | null | undefined;
4132
- removed_at?: string | null | undefined;
4133
- metric?: string | null | undefined;
4134
- context_brand?: string | null | undefined;
4135
- }, {
4136
- competitor: string;
4137
- tags: string[];
4138
- discovered_at: string | null;
4139
- initial_run?: boolean | null | undefined;
4140
- is_live?: boolean | null | undefined;
4141
- added_at?: string | null | undefined;
4142
- removed_at?: string | null | undefined;
4143
- metric?: string | null | undefined;
4144
- context_brand?: string | null | undefined;
4145
- }>, z.ZodObject<{
4146
- name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4147
- logo_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4148
- image_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4149
- is_live: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
4150
- added_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4151
- removed_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4152
- competitor: z.ZodString;
4153
- tags: z.ZodArray<z.ZodString, "many">;
4154
- discovered_at: z.ZodNullable<z.ZodString>;
4155
- initial_run: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
4156
- }, "strip", z.ZodTypeAny, {
4157
- competitor: string;
4158
- tags: string[];
4159
- discovered_at: string | null;
4160
- name?: string | null | undefined;
4161
- image_url?: string | null | undefined;
4162
- initial_run?: boolean | null | undefined;
4163
- is_live?: boolean | null | undefined;
4164
- added_at?: string | null | undefined;
4165
- removed_at?: string | null | undefined;
4166
- logo_url?: string | null | undefined;
4167
- }, {
4168
- competitor: string;
4169
- tags: string[];
4170
- discovered_at: string | null;
4171
- name?: string | null | undefined;
4172
- image_url?: string | null | undefined;
4173
- initial_run?: boolean | null | undefined;
4174
- is_live?: boolean | null | undefined;
4175
- added_at?: string | null | undefined;
4176
- removed_at?: string | null | undefined;
4177
- logo_url?: string | null | undefined;
4178
- }>, z.ZodObject<{
4179
- url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4180
- competitor: z.ZodString;
4181
- tags: z.ZodArray<z.ZodString, "many">;
4182
- discovered_at: z.ZodNullable<z.ZodString>;
4183
- initial_run: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
4184
- }, "strip", z.ZodTypeAny, {
4185
- competitor: string;
4186
- tags: string[];
4187
- discovered_at: string | null;
4188
- url?: string | null | undefined;
4189
- initial_run?: boolean | null | undefined;
4190
- }, {
4191
- competitor: string;
4192
- tags: string[];
4193
- discovered_at: string | null;
4194
- url?: string | null | undefined;
4195
- initial_run?: boolean | null | undefined;
4196
- }>, z.ZodObject<{
4197
- post_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4198
- url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4199
- content: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4200
- name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4201
- external_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4202
- posted_date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4203
- competitor: z.ZodString;
4204
- tags: z.ZodArray<z.ZodString, "many">;
4205
- discovered_at: z.ZodNullable<z.ZodString>;
4206
- initial_run: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
4207
- }, "strip", z.ZodTypeAny, {
4208
- competitor: string;
4209
- tags: string[];
4210
- discovered_at: string | null;
4211
- name?: string | null | undefined;
4212
- url?: string | null | undefined;
4213
- posted_date?: string | null | undefined;
4214
- initial_run?: boolean | null | undefined;
4215
- content?: string | null | undefined;
4216
- post_id?: string | null | undefined;
4217
- external_url?: string | null | undefined;
4218
- }, {
4219
- competitor: string;
4220
- tags: string[];
4221
- discovered_at: string | null;
4222
- name?: string | null | undefined;
4223
- url?: string | null | undefined;
4224
- posted_date?: string | null | undefined;
4225
- initial_run?: boolean | null | undefined;
4226
- content?: string | null | undefined;
4227
- post_id?: string | null | undefined;
4228
- external_url?: string | null | undefined;
4229
- }>, z.ZodObject<{
4230
- title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4231
- rating: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4232
- sentiment: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4233
- url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4234
- excerpt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4235
- source: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4236
- name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4237
- external_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4238
- posted_date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4239
- competitor: z.ZodString;
4240
- tags: z.ZodArray<z.ZodString, "many">;
4241
- discovered_at: z.ZodNullable<z.ZodString>;
4242
- initial_run: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
4243
- }, "strip", z.ZodTypeAny, {
4244
- competitor: string;
4245
- tags: string[];
4246
- discovered_at: string | null;
4247
- source?: string | null | undefined;
4248
- name?: string | null | undefined;
4249
- title?: string | null | undefined;
4250
- url?: string | null | undefined;
4251
- posted_date?: string | null | undefined;
4252
- initial_run?: boolean | null | undefined;
4253
- rating?: string | null | undefined;
4254
- sentiment?: string | null | undefined;
4255
- excerpt?: string | null | undefined;
4256
- external_id?: string | null | undefined;
4257
- }, {
4258
- competitor: string;
4259
- tags: string[];
4260
- discovered_at: string | null;
4261
- source?: string | null | undefined;
4262
- name?: string | null | undefined;
4263
- title?: string | null | undefined;
4264
- url?: string | null | undefined;
4265
- posted_date?: string | null | undefined;
4266
- initial_run?: boolean | null | undefined;
4267
- rating?: string | null | undefined;
4268
- sentiment?: string | null | undefined;
4269
- excerpt?: string | null | undefined;
4270
- external_id?: string | null | undefined;
4271
- }>, z.ZodObject<{
4272
- platform: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4273
- ad_format: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4274
- content: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4275
- image_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4276
- is_live: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
4277
- added_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4278
- removed_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4279
- competitor: z.ZodString;
4280
- tags: z.ZodArray<z.ZodString, "many">;
4281
- discovered_at: z.ZodNullable<z.ZodString>;
4282
- initial_run: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
4283
- }, "strip", z.ZodTypeAny, {
4284
- competitor: string;
4285
- tags: string[];
4286
- discovered_at: string | null;
4287
- image_url?: string | null | undefined;
4288
- initial_run?: boolean | null | undefined;
4289
- is_live?: boolean | null | undefined;
4290
- added_at?: string | null | undefined;
4291
- removed_at?: string | null | undefined;
4292
- content?: string | null | undefined;
4293
- platform?: string | null | undefined;
4294
- ad_format?: string | null | undefined;
4295
- }, {
4296
- competitor: string;
4297
- tags: string[];
4298
- discovered_at: string | null;
4299
- image_url?: string | null | undefined;
4300
- initial_run?: boolean | null | undefined;
4301
- is_live?: boolean | null | undefined;
4302
- added_at?: string | null | undefined;
4303
- removed_at?: string | null | undefined;
4304
- content?: string | null | undefined;
4305
- platform?: string | null | undefined;
4306
- ad_format?: string | null | undefined;
4307
- }>]>;
4308
- }, "strip", z.ZodTypeAny, {
4309
- id: string;
4310
- data: {
4311
- competitor: string;
4312
- tags: string[];
4313
- discovered_at: string | null;
4314
- description?: string | null | undefined;
4315
- title?: string | null | undefined;
4316
- url?: string | null | undefined;
4317
- key_points?: string | null | undefined;
4318
- image_url?: string | null | undefined;
4319
- posted_date?: string | null | undefined;
4320
- initial_run?: boolean | null | undefined;
4321
- } | {
4322
- competitor: string;
4323
- tags: string[];
4324
- discovered_at: string | null;
4325
- category?: string | null | undefined;
4326
- title?: string | null | undefined;
4327
- url?: string | null | undefined;
4328
- posted_date?: string | null | undefined;
4329
- initial_run?: boolean | null | undefined;
4330
- location?: string | null | undefined;
4331
- is_live?: boolean | null | undefined;
4332
- added_at?: string | null | undefined;
4333
- removed_at?: string | null | undefined;
4334
- } | {
4335
- competitor: string;
4336
- tags: string[];
4337
- discovered_at: string | null;
4338
- initial_run?: boolean | null | undefined;
4339
- is_live?: boolean | null | undefined;
4340
- pricing_data?: unknown[] | Record<string, unknown> | null | undefined;
4341
- changes?: string | null | undefined;
4342
- last_updated_at?: string | null | undefined;
4343
- } | {
4344
- competitor: string;
4345
- tags: string[];
4346
- discovered_at: string | null;
4347
- url?: string | null | undefined;
4348
- posted_date?: string | null | undefined;
4349
- initial_run?: boolean | null | undefined;
4350
- content?: string | null | undefined;
4351
- } | {
4352
- competitor: string;
4353
- tags: string[];
4354
- discovered_at: string | null;
4355
- description?: string | null | undefined;
4356
- title?: string | null | undefined;
4357
- url?: string | null | undefined;
4358
- posted_date?: string | null | undefined;
4359
- initial_run?: boolean | null | undefined;
4360
- } | {
4361
- competitor: string;
4362
- tags: string[];
4363
- discovered_at: string | null;
4364
- description?: string | null | undefined;
4365
- title?: string | null | undefined;
4366
- url?: string | null | undefined;
4367
- image_url?: string | null | undefined;
4368
- initial_run?: boolean | null | undefined;
4369
- location?: string | null | undefined;
4370
- event_type?: string | null | undefined;
4371
- is_virtual?: boolean | null | undefined;
4372
- event_date?: string | null | undefined;
4373
- } | {
4374
- competitor: string;
4375
- tags: string[];
4376
- discovered_at: string | null;
4377
- initial_run?: boolean | null | undefined;
4378
- is_live?: boolean | null | undefined;
4379
- added_at?: string | null | undefined;
4380
- removed_at?: string | null | undefined;
4381
- message_text?: string | null | undefined;
4382
- message_level?: string | null | undefined;
4383
- order_on_page?: number | null | undefined;
4384
- } | {
4385
- competitor: string;
4386
- tags: string[];
4387
- discovered_at: string | null;
4388
- initial_run?: boolean | null | undefined;
4389
- is_live?: boolean | null | undefined;
4390
- added_at?: string | null | undefined;
4391
- removed_at?: string | null | undefined;
4392
- metric?: string | null | undefined;
4393
- context_brand?: string | null | undefined;
4394
- } | {
4395
- competitor: string;
4396
- tags: string[];
4397
- discovered_at: string | null;
4398
- name?: string | null | undefined;
4399
- image_url?: string | null | undefined;
4400
- initial_run?: boolean | null | undefined;
4401
- is_live?: boolean | null | undefined;
4402
- added_at?: string | null | undefined;
4403
- removed_at?: string | null | undefined;
4404
- logo_url?: string | null | undefined;
4405
- } | {
4406
- competitor: string;
4407
- tags: string[];
4408
- discovered_at: string | null;
4409
- url?: string | null | undefined;
4410
- initial_run?: boolean | null | undefined;
4411
- } | {
4412
- competitor: string;
4413
- tags: string[];
4414
- discovered_at: string | null;
4415
- name?: string | null | undefined;
4416
- url?: string | null | undefined;
4417
- posted_date?: string | null | undefined;
4418
- initial_run?: boolean | null | undefined;
4419
- content?: string | null | undefined;
4420
- post_id?: string | null | undefined;
4421
- external_url?: string | null | undefined;
4422
- } | {
4423
- competitor: string;
4424
- tags: string[];
4425
- discovered_at: string | null;
4426
- source?: string | null | undefined;
4427
- name?: string | null | undefined;
4428
- title?: string | null | undefined;
4429
- url?: string | null | undefined;
4430
- posted_date?: string | null | undefined;
4431
- initial_run?: boolean | null | undefined;
4432
- rating?: string | null | undefined;
4433
- sentiment?: string | null | undefined;
4434
- excerpt?: string | null | undefined;
4435
- external_id?: string | null | undefined;
4436
- } | {
4437
- competitor: string;
4438
- tags: string[];
4439
- discovered_at: string | null;
4440
- image_url?: string | null | undefined;
4441
- initial_run?: boolean | null | undefined;
4442
- is_live?: boolean | null | undefined;
4443
- added_at?: string | null | undefined;
4444
- removed_at?: string | null | undefined;
4445
- content?: string | null | undefined;
4446
- platform?: string | null | undefined;
4447
- ad_format?: string | null | undefined;
4448
- };
4449
- competitor: {
4450
- id: string;
4451
- name: string | null;
4452
- };
4453
- section: "blog-posts" | "press-posts" | "job-listings" | "ads" | "pricing" | "case-studies" | "linkedin-posts" | "x-posts" | "reviews" | "youtube-videos" | "events" | "messaging" | "metrics-claimed" | "logos" | "sitemap-urls";
4454
- change_type: "added" | "updated" | "removed";
4455
- change_date: string;
4456
- }, {
4457
- id: string;
4458
- data: {
4459
- competitor: string;
4460
- tags: string[];
4461
- discovered_at: string | null;
4462
- description?: string | null | undefined;
4463
- title?: string | null | undefined;
4464
- url?: string | null | undefined;
4465
- key_points?: string | null | undefined;
4466
- image_url?: string | null | undefined;
4467
- posted_date?: string | null | undefined;
4468
- initial_run?: boolean | null | undefined;
4469
- } | {
4470
- competitor: string;
4471
- tags: string[];
4472
- discovered_at: string | null;
4473
- category?: string | null | undefined;
4474
- title?: string | null | undefined;
4475
- url?: string | null | undefined;
4476
- posted_date?: string | null | undefined;
4477
- initial_run?: boolean | null | undefined;
4478
- location?: string | null | undefined;
4479
- is_live?: boolean | null | undefined;
4480
- added_at?: string | null | undefined;
4481
- removed_at?: string | null | undefined;
4482
- } | {
4483
- competitor: string;
4484
- tags: string[];
4485
- discovered_at: string | null;
4486
- initial_run?: boolean | null | undefined;
4487
- is_live?: boolean | null | undefined;
4488
- pricing_data?: unknown[] | Record<string, unknown> | null | undefined;
4489
- changes?: string | null | undefined;
4490
- last_updated_at?: string | null | undefined;
4491
- } | {
4492
- competitor: string;
4493
- tags: string[];
4494
- discovered_at: string | null;
4495
- url?: string | null | undefined;
4496
- posted_date?: string | null | undefined;
4497
- initial_run?: boolean | null | undefined;
4498
- content?: string | null | undefined;
4499
- } | {
4500
- competitor: string;
4501
- tags: string[];
4502
- discovered_at: string | null;
4503
- description?: string | null | undefined;
4504
- title?: string | null | undefined;
4505
- url?: string | null | undefined;
4506
- posted_date?: string | null | undefined;
4507
- initial_run?: boolean | null | undefined;
4508
- } | {
4509
- competitor: string;
4510
- tags: string[];
4511
- discovered_at: string | null;
4512
- description?: string | null | undefined;
4513
- title?: string | null | undefined;
4514
- url?: string | null | undefined;
4515
- image_url?: string | null | undefined;
4516
- initial_run?: boolean | null | undefined;
4517
- location?: string | null | undefined;
4518
- event_type?: string | null | undefined;
4519
- is_virtual?: boolean | null | undefined;
4520
- event_date?: string | null | undefined;
4521
- } | {
4522
- competitor: string;
4523
- tags: string[];
4524
- discovered_at: string | null;
4525
- initial_run?: boolean | null | undefined;
4526
- is_live?: boolean | null | undefined;
4527
- added_at?: string | null | undefined;
4528
- removed_at?: string | null | undefined;
4529
- message_text?: string | null | undefined;
4530
- message_level?: string | null | undefined;
4531
- order_on_page?: number | null | undefined;
4532
- } | {
4533
- competitor: string;
4534
- tags: string[];
4535
- discovered_at: string | null;
4536
- initial_run?: boolean | null | undefined;
4537
- is_live?: boolean | null | undefined;
4538
- added_at?: string | null | undefined;
4539
- removed_at?: string | null | undefined;
4540
- metric?: string | null | undefined;
4541
- context_brand?: string | null | undefined;
4542
- } | {
4543
- competitor: string;
4544
- tags: string[];
4545
- discovered_at: string | null;
4546
- name?: string | null | undefined;
4547
- image_url?: string | null | undefined;
4548
- initial_run?: boolean | null | undefined;
4549
- is_live?: boolean | null | undefined;
4550
- added_at?: string | null | undefined;
4551
- removed_at?: string | null | undefined;
4552
- logo_url?: string | null | undefined;
4553
- } | {
4554
- competitor: string;
4555
- tags: string[];
4556
- discovered_at: string | null;
4557
- url?: string | null | undefined;
4558
- initial_run?: boolean | null | undefined;
4559
- } | {
4560
- competitor: string;
4561
- tags: string[];
4562
- discovered_at: string | null;
4563
- name?: string | null | undefined;
4564
- url?: string | null | undefined;
4565
- posted_date?: string | null | undefined;
4566
- initial_run?: boolean | null | undefined;
4567
- content?: string | null | undefined;
4568
- post_id?: string | null | undefined;
4569
- external_url?: string | null | undefined;
4570
- } | {
4571
- competitor: string;
4572
- tags: string[];
4573
- discovered_at: string | null;
4574
- source?: string | null | undefined;
4575
- name?: string | null | undefined;
4576
- title?: string | null | undefined;
4577
- url?: string | null | undefined;
4578
- posted_date?: string | null | undefined;
4579
- initial_run?: boolean | null | undefined;
4580
- rating?: string | null | undefined;
4581
- sentiment?: string | null | undefined;
4582
- excerpt?: string | null | undefined;
4583
- external_id?: string | null | undefined;
4584
- } | {
4585
- competitor: string;
4586
- tags: string[];
4587
- discovered_at: string | null;
4588
- image_url?: string | null | undefined;
4589
- initial_run?: boolean | null | undefined;
4590
- is_live?: boolean | null | undefined;
4591
- added_at?: string | null | undefined;
4592
- removed_at?: string | null | undefined;
4593
- content?: string | null | undefined;
4594
- platform?: string | null | undefined;
4595
- ad_format?: string | null | undefined;
4596
- };
4597
- competitor: {
4598
- id: string;
4599
- name: string | null;
4600
- };
4601
- section: "blog-posts" | "press-posts" | "job-listings" | "ads" | "pricing" | "case-studies" | "linkedin-posts" | "x-posts" | "reviews" | "youtube-videos" | "events" | "messaging" | "metrics-claimed" | "logos" | "sitemap-urls";
4602
- change_type: "added" | "updated" | "removed";
4603
- change_date: string;
4604
- }>;
4605
- export type ActivityItem = z.infer<typeof ActivityItem>;
4606
- export declare const ActivityListResponse: z.ZodObject<{
4607
- data: z.ZodArray<z.ZodObject<{
4608
- id: z.ZodString;
4609
- section: z.ZodEnum<["blog-posts", "press-posts", "job-listings", "ads", "pricing", "case-studies", "linkedin-posts", "x-posts", "reviews", "youtube-videos", "events", "messaging", "metrics-claimed", "logos", "sitemap-urls"]>;
4610
- change_type: z.ZodEnum<["added", "updated", "removed"]>;
4611
- change_date: z.ZodString;
4612
- competitor: z.ZodObject<{
4613
- id: z.ZodString;
4614
- name: z.ZodNullable<z.ZodString>;
4615
- }, "strip", z.ZodTypeAny, {
4616
- id: string;
4617
- name: string | null;
4618
- }, {
4619
- id: string;
4620
- name: string | null;
4621
- }>;
4622
- data: z.ZodUnion<[z.ZodObject<{
4623
- title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4624
- url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4625
- description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4626
- key_points: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4627
- image_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4628
- posted_date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4629
- competitor: z.ZodString;
4630
- tags: z.ZodArray<z.ZodString, "many">;
4631
- discovered_at: z.ZodNullable<z.ZodString>;
4632
- initial_run: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
4633
- }, "strip", z.ZodTypeAny, {
4634
- competitor: string;
4635
- tags: string[];
4636
- discovered_at: string | null;
4637
- description?: string | null | undefined;
4638
- title?: string | null | undefined;
4639
- url?: string | null | undefined;
4640
- key_points?: string | null | undefined;
4641
- image_url?: string | null | undefined;
4642
- posted_date?: string | null | undefined;
4643
- initial_run?: boolean | null | undefined;
4644
- }, {
4645
- competitor: string;
4646
- tags: string[];
4647
- discovered_at: string | null;
4648
- description?: string | null | undefined;
4649
- title?: string | null | undefined;
4650
- url?: string | null | undefined;
4651
- key_points?: string | null | undefined;
4652
- image_url?: string | null | undefined;
4653
- posted_date?: string | null | undefined;
4654
- initial_run?: boolean | null | undefined;
4655
- }>, z.ZodObject<{
4656
- title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4657
- url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4658
- category: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4659
- location: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4660
- posted_date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4661
- is_live: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
4662
- added_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4663
- removed_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4664
- competitor: z.ZodString;
4665
- tags: z.ZodArray<z.ZodString, "many">;
4666
- discovered_at: z.ZodNullable<z.ZodString>;
4667
- initial_run: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
4668
- }, "strip", z.ZodTypeAny, {
4669
- competitor: string;
4670
- tags: string[];
4671
- discovered_at: string | null;
4672
- category?: string | null | undefined;
4673
- title?: string | null | undefined;
4674
- url?: string | null | undefined;
4675
- posted_date?: string | null | undefined;
4676
- initial_run?: boolean | null | undefined;
4677
- location?: string | null | undefined;
4678
- is_live?: boolean | null | undefined;
4679
- added_at?: string | null | undefined;
4680
- removed_at?: string | null | undefined;
4681
- }, {
4682
- competitor: string;
4683
- tags: string[];
4684
- discovered_at: string | null;
4685
- category?: string | null | undefined;
4686
- title?: string | null | undefined;
4687
- url?: string | null | undefined;
4688
- posted_date?: string | null | undefined;
4689
- initial_run?: boolean | null | undefined;
4690
- location?: string | null | undefined;
4691
- is_live?: boolean | null | undefined;
4692
- added_at?: string | null | undefined;
4693
- removed_at?: string | null | undefined;
4694
- }>, z.ZodObject<{
4695
- pricing_data: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodRecord<z.ZodString, z.ZodUnknown>, z.ZodArray<z.ZodUnknown, "many">]>>>;
4696
- changes: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4697
- is_live: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
4698
- last_updated_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4699
- competitor: z.ZodString;
4700
- tags: z.ZodArray<z.ZodString, "many">;
4701
- discovered_at: z.ZodNullable<z.ZodString>;
4702
- initial_run: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
4703
- }, "strip", z.ZodTypeAny, {
4704
- competitor: string;
4705
- tags: string[];
4706
- discovered_at: string | null;
4707
- initial_run?: boolean | null | undefined;
4708
- is_live?: boolean | null | undefined;
4709
- pricing_data?: unknown[] | Record<string, unknown> | null | undefined;
4710
- changes?: string | null | undefined;
4711
- last_updated_at?: string | null | undefined;
4712
- }, {
4713
- competitor: string;
4714
- tags: string[];
4715
- discovered_at: string | null;
4716
- initial_run?: boolean | null | undefined;
4717
- is_live?: boolean | null | undefined;
4718
- pricing_data?: unknown[] | Record<string, unknown> | null | undefined;
4719
- changes?: string | null | undefined;
4720
- last_updated_at?: string | null | undefined;
4721
- }>, z.ZodObject<{
4722
- url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4723
- content: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4724
- posted_date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4725
- competitor: z.ZodString;
4726
- tags: z.ZodArray<z.ZodString, "many">;
4727
- discovered_at: z.ZodNullable<z.ZodString>;
4728
- initial_run: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
4729
- }, "strip", z.ZodTypeAny, {
4730
- competitor: string;
4731
- tags: string[];
4732
- discovered_at: string | null;
4733
- url?: string | null | undefined;
4734
- posted_date?: string | null | undefined;
4735
- initial_run?: boolean | null | undefined;
4736
- content?: string | null | undefined;
4737
- }, {
4738
- competitor: string;
4739
- tags: string[];
4740
- discovered_at: string | null;
4741
- url?: string | null | undefined;
4742
- posted_date?: string | null | undefined;
4743
- initial_run?: boolean | null | undefined;
4744
- content?: string | null | undefined;
4745
- }>, z.ZodObject<{
4746
- title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4747
- url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4748
- description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4749
- posted_date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4750
- competitor: z.ZodString;
4751
- tags: z.ZodArray<z.ZodString, "many">;
4752
- discovered_at: z.ZodNullable<z.ZodString>;
4753
- initial_run: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
4754
- }, "strip", z.ZodTypeAny, {
4755
- competitor: string;
4756
- tags: string[];
4757
- discovered_at: string | null;
4758
- description?: string | null | undefined;
4759
- title?: string | null | undefined;
4760
- url?: string | null | undefined;
4761
- posted_date?: string | null | undefined;
4762
- initial_run?: boolean | null | undefined;
4763
- }, {
4764
- competitor: string;
4765
- tags: string[];
4766
- discovered_at: string | null;
4767
- description?: string | null | undefined;
4768
- title?: string | null | undefined;
4769
- url?: string | null | undefined;
4770
- posted_date?: string | null | undefined;
4771
- initial_run?: boolean | null | undefined;
4772
- }>, z.ZodObject<{
4773
- title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4774
- url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4775
- description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4776
- image_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4777
- event_type: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4778
- location: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4779
- is_virtual: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
4780
- event_date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4781
- competitor: z.ZodString;
4782
- tags: z.ZodArray<z.ZodString, "many">;
4783
- discovered_at: z.ZodNullable<z.ZodString>;
4784
- initial_run: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
4785
- }, "strip", z.ZodTypeAny, {
4786
- competitor: string;
4787
- tags: string[];
4788
- discovered_at: string | null;
4789
- description?: string | null | undefined;
4790
- title?: string | null | undefined;
4791
- url?: string | null | undefined;
4792
- image_url?: string | null | undefined;
4793
- initial_run?: boolean | null | undefined;
4794
- location?: string | null | undefined;
4795
- event_type?: string | null | undefined;
4796
- is_virtual?: boolean | null | undefined;
4797
- event_date?: string | null | undefined;
4798
- }, {
4799
- competitor: string;
4800
- tags: string[];
4801
- discovered_at: string | null;
4802
- description?: string | null | undefined;
4803
- title?: string | null | undefined;
4804
- url?: string | null | undefined;
4805
- image_url?: string | null | undefined;
4806
- initial_run?: boolean | null | undefined;
4807
- location?: string | null | undefined;
4808
- event_type?: string | null | undefined;
4809
- is_virtual?: boolean | null | undefined;
4810
- event_date?: string | null | undefined;
4811
- }>, z.ZodObject<{
4812
- message_text: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4813
- message_level: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4814
- order_on_page: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4815
- is_live: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
4816
- added_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4817
- removed_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4818
- competitor: z.ZodString;
4819
- tags: z.ZodArray<z.ZodString, "many">;
4820
- discovered_at: z.ZodNullable<z.ZodString>;
4821
- initial_run: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
4822
- }, "strip", z.ZodTypeAny, {
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
- message_text?: string | null | undefined;
4842
- message_level?: string | null | undefined;
4843
- order_on_page?: number | null | undefined;
4844
- }>, z.ZodObject<{
4845
- metric: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4846
- context_brand: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4847
- is_live: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
4848
- added_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4849
- removed_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4850
- competitor: z.ZodString;
4851
- tags: z.ZodArray<z.ZodString, "many">;
4852
- discovered_at: z.ZodNullable<z.ZodString>;
4853
- initial_run: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
4854
- }, "strip", z.ZodTypeAny, {
4855
- competitor: string;
4856
- tags: string[];
4857
- discovered_at: string | null;
4858
- initial_run?: boolean | null | undefined;
4859
- is_live?: boolean | null | undefined;
4860
- added_at?: string | null | undefined;
4861
- removed_at?: string | null | undefined;
4862
- metric?: string | null | undefined;
4863
- context_brand?: string | null | undefined;
4864
- }, {
4865
- competitor: string;
4866
- tags: string[];
4867
- discovered_at: string | null;
4868
- initial_run?: boolean | null | undefined;
4869
- is_live?: boolean | null | undefined;
4870
- added_at?: string | null | undefined;
4871
- removed_at?: string | null | undefined;
4872
- metric?: string | null | undefined;
4873
- context_brand?: string | null | undefined;
4874
- }>, z.ZodObject<{
4875
- name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4876
- logo_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4877
- image_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4878
- is_live: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
4879
- added_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4880
- removed_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4881
- competitor: z.ZodString;
4882
- tags: z.ZodArray<z.ZodString, "many">;
4883
- discovered_at: z.ZodNullable<z.ZodString>;
4884
- initial_run: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
4885
- }, "strip", z.ZodTypeAny, {
4886
- competitor: string;
4887
- tags: string[];
4888
- discovered_at: string | null;
4889
- name?: string | null | undefined;
4890
- image_url?: string | null | undefined;
4891
- initial_run?: boolean | null | undefined;
4892
- is_live?: boolean | null | undefined;
4893
- added_at?: string | null | undefined;
4894
- removed_at?: string | null | undefined;
4895
- logo_url?: string | null | undefined;
4896
- }, {
4897
- competitor: string;
4898
- tags: string[];
4899
- discovered_at: string | null;
4900
- name?: string | null | undefined;
4901
- image_url?: string | null | undefined;
4902
- initial_run?: boolean | null | undefined;
4903
- is_live?: boolean | null | undefined;
4904
- added_at?: string | null | undefined;
4905
- removed_at?: string | null | undefined;
4906
- logo_url?: string | null | undefined;
4907
- }>, z.ZodObject<{
4908
- url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4909
- competitor: z.ZodString;
4910
- tags: z.ZodArray<z.ZodString, "many">;
4911
- discovered_at: z.ZodNullable<z.ZodString>;
4912
- initial_run: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
4913
- }, "strip", z.ZodTypeAny, {
4914
- competitor: string;
4915
- tags: string[];
4916
- discovered_at: string | null;
4917
- url?: string | null | undefined;
4918
- initial_run?: boolean | null | undefined;
4919
- }, {
4920
- competitor: string;
4921
- tags: string[];
4922
- discovered_at: string | null;
4923
- url?: string | null | undefined;
4924
- initial_run?: boolean | null | undefined;
4925
- }>, z.ZodObject<{
4926
- post_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4927
- url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4928
- content: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4929
- name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4930
- external_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4931
- posted_date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4932
- competitor: z.ZodString;
4933
- tags: z.ZodArray<z.ZodString, "many">;
4934
- discovered_at: z.ZodNullable<z.ZodString>;
4935
- initial_run: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
4936
- }, "strip", z.ZodTypeAny, {
4937
- competitor: string;
4938
- tags: string[];
4939
- discovered_at: string | null;
4940
- name?: string | null | undefined;
4941
- url?: string | null | undefined;
4942
- posted_date?: string | null | undefined;
4943
- initial_run?: boolean | null | undefined;
4944
- content?: string | null | undefined;
4945
- post_id?: string | null | undefined;
4946
- external_url?: string | null | undefined;
4947
- }, {
4948
- competitor: string;
4949
- tags: string[];
4950
- discovered_at: string | null;
4951
- name?: string | null | undefined;
4952
- url?: string | null | undefined;
4953
- posted_date?: string | null | undefined;
4954
- initial_run?: boolean | null | undefined;
4955
- content?: string | null | undefined;
4956
- post_id?: string | null | undefined;
4957
- external_url?: string | null | undefined;
4958
- }>, z.ZodObject<{
4959
- title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4960
- rating: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4961
- sentiment: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4962
- url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4963
- excerpt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4964
- source: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4965
- name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4966
- external_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4967
- posted_date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4968
- competitor: z.ZodString;
4969
- tags: z.ZodArray<z.ZodString, "many">;
4970
- discovered_at: z.ZodNullable<z.ZodString>;
4971
- initial_run: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
4972
- }, "strip", z.ZodTypeAny, {
4973
- competitor: string;
4974
- tags: string[];
4975
- discovered_at: string | null;
4976
- source?: string | null | undefined;
4977
- name?: string | null | undefined;
4978
- title?: string | null | undefined;
4979
- url?: string | null | undefined;
4980
- posted_date?: string | null | undefined;
4981
- initial_run?: boolean | null | undefined;
4982
- rating?: string | null | undefined;
4983
- sentiment?: string | null | undefined;
4984
- excerpt?: string | null | undefined;
4985
- external_id?: string | null | undefined;
4986
- }, {
4987
- competitor: string;
4988
- tags: string[];
4989
- discovered_at: string | null;
4990
- source?: string | null | undefined;
4991
- name?: string | null | undefined;
4992
- title?: string | null | undefined;
4993
- url?: string | null | undefined;
4994
- posted_date?: string | null | undefined;
4995
- initial_run?: boolean | null | undefined;
4996
- rating?: string | null | undefined;
4997
- sentiment?: string | null | undefined;
4998
- excerpt?: string | null | undefined;
4999
- external_id?: string | null | undefined;
5000
- }>, z.ZodObject<{
5001
- platform: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5002
- ad_format: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5003
- content: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5004
- image_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5005
- is_live: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
5006
- added_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5007
- removed_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5008
- competitor: z.ZodString;
5009
- tags: z.ZodArray<z.ZodString, "many">;
5010
- discovered_at: z.ZodNullable<z.ZodString>;
5011
- initial_run: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
5012
- }, "strip", z.ZodTypeAny, {
5013
- competitor: string;
5014
- tags: string[];
5015
- discovered_at: string | null;
5016
- image_url?: string | null | undefined;
5017
- initial_run?: boolean | null | undefined;
5018
- is_live?: boolean | null | undefined;
5019
- added_at?: string | null | undefined;
5020
- removed_at?: string | null | undefined;
5021
- content?: string | null | undefined;
5022
- platform?: string | null | undefined;
5023
- ad_format?: string | null | undefined;
5024
- }, {
5025
- competitor: string;
5026
- tags: string[];
5027
- discovered_at: string | null;
5028
- image_url?: string | null | undefined;
5029
- initial_run?: boolean | null | undefined;
5030
- is_live?: boolean | null | undefined;
5031
- added_at?: string | null | undefined;
5032
- removed_at?: string | null | undefined;
5033
- content?: string | null | undefined;
5034
- platform?: string | null | undefined;
5035
- ad_format?: string | null | undefined;
5036
- }>]>;
5037
- }, "strip", z.ZodTypeAny, {
5038
- id: string;
5039
- data: {
5040
- competitor: string;
5041
- tags: string[];
5042
- discovered_at: string | null;
5043
- description?: string | null | undefined;
5044
- title?: string | null | undefined;
5045
- url?: string | null | undefined;
5046
- key_points?: string | null | undefined;
5047
- image_url?: string | null | undefined;
5048
- posted_date?: string | null | undefined;
5049
- initial_run?: boolean | null | undefined;
5050
- } | {
5051
- competitor: string;
5052
- tags: string[];
5053
- discovered_at: string | null;
5054
- category?: string | null | undefined;
5055
- title?: string | null | undefined;
5056
- url?: string | null | undefined;
5057
- posted_date?: string | null | undefined;
5058
- initial_run?: boolean | null | undefined;
5059
- location?: string | null | undefined;
5060
- is_live?: boolean | null | undefined;
5061
- added_at?: string | null | undefined;
5062
- removed_at?: string | null | undefined;
5063
- } | {
5064
- competitor: string;
5065
- tags: string[];
5066
- discovered_at: string | null;
5067
- initial_run?: boolean | null | undefined;
5068
- is_live?: boolean | null | undefined;
5069
- pricing_data?: unknown[] | Record<string, unknown> | null | undefined;
5070
- changes?: string | null | undefined;
5071
- last_updated_at?: string | null | undefined;
5072
- } | {
5073
- competitor: string;
5074
- tags: string[];
5075
- discovered_at: string | null;
5076
- url?: string | null | undefined;
5077
- posted_date?: string | null | undefined;
5078
- initial_run?: boolean | null | undefined;
5079
- content?: string | null | undefined;
5080
- } | {
5081
- competitor: string;
5082
- tags: string[];
5083
- discovered_at: string | null;
5084
- description?: string | null | undefined;
5085
- title?: string | null | undefined;
5086
- url?: string | null | undefined;
5087
- posted_date?: string | null | undefined;
5088
- initial_run?: boolean | null | undefined;
5089
- } | {
5090
- competitor: string;
5091
- tags: string[];
5092
- discovered_at: string | null;
5093
- description?: string | null | undefined;
5094
- title?: string | null | undefined;
5095
- url?: string | null | undefined;
5096
- image_url?: string | null | undefined;
5097
- initial_run?: boolean | null | undefined;
5098
- location?: string | null | undefined;
5099
- event_type?: string | null | undefined;
5100
- is_virtual?: boolean | null | undefined;
5101
- event_date?: string | null | undefined;
5102
- } | {
5103
- competitor: string;
5104
- tags: string[];
5105
- discovered_at: string | null;
5106
- initial_run?: boolean | null | undefined;
5107
- is_live?: boolean | null | undefined;
5108
- added_at?: string | null | undefined;
5109
- removed_at?: string | null | undefined;
5110
- message_text?: string | null | undefined;
5111
- message_level?: string | null | undefined;
5112
- order_on_page?: number | null | undefined;
5113
- } | {
5114
- competitor: string;
5115
- tags: string[];
5116
- discovered_at: string | null;
5117
- initial_run?: boolean | null | undefined;
5118
- is_live?: boolean | null | undefined;
5119
- added_at?: string | null | undefined;
5120
- removed_at?: string | null | undefined;
5121
- metric?: string | null | undefined;
5122
- context_brand?: string | null | undefined;
5123
- } | {
5124
- competitor: string;
5125
- tags: string[];
5126
- discovered_at: string | null;
5127
- name?: string | null | undefined;
5128
- image_url?: string | null | undefined;
5129
- initial_run?: boolean | null | undefined;
5130
- is_live?: boolean | null | undefined;
5131
- added_at?: string | null | undefined;
5132
- removed_at?: string | null | undefined;
5133
- logo_url?: string | null | undefined;
5134
- } | {
5135
- competitor: string;
5136
- tags: string[];
5137
- discovered_at: string | null;
5138
- url?: string | null | undefined;
5139
- initial_run?: boolean | null | undefined;
5140
- } | {
5141
- competitor: string;
5142
- tags: string[];
5143
- discovered_at: string | null;
5144
- name?: string | null | undefined;
5145
- url?: string | null | undefined;
5146
- posted_date?: string | null | undefined;
5147
- initial_run?: boolean | null | undefined;
5148
- content?: string | null | undefined;
5149
- post_id?: string | null | undefined;
5150
- external_url?: string | null | undefined;
5151
- } | {
5152
- competitor: string;
5153
- tags: string[];
5154
- discovered_at: string | null;
5155
- source?: string | null | undefined;
5156
- name?: string | null | undefined;
5157
- title?: string | null | undefined;
5158
- url?: string | null | undefined;
5159
- posted_date?: string | null | undefined;
5160
- initial_run?: boolean | null | undefined;
5161
- rating?: string | null | undefined;
5162
- sentiment?: string | null | undefined;
5163
- excerpt?: string | null | undefined;
5164
- external_id?: string | null | undefined;
5165
- } | {
5166
- competitor: string;
5167
- tags: string[];
5168
- discovered_at: string | null;
5169
- image_url?: string | null | undefined;
5170
- initial_run?: boolean | null | undefined;
5171
- is_live?: boolean | null | undefined;
5172
- added_at?: string | null | undefined;
5173
- removed_at?: string | null | undefined;
5174
- content?: string | null | undefined;
5175
- platform?: string | null | undefined;
5176
- ad_format?: string | null | undefined;
5177
- };
5178
- competitor: {
5179
- id: string;
5180
- name: string | null;
5181
- };
5182
- section: "blog-posts" | "press-posts" | "job-listings" | "ads" | "pricing" | "case-studies" | "linkedin-posts" | "x-posts" | "reviews" | "youtube-videos" | "events" | "messaging" | "metrics-claimed" | "logos" | "sitemap-urls";
5183
- change_type: "added" | "updated" | "removed";
5184
- change_date: string;
4063
+ payload: Record<string, unknown>;
4064
+ id: string;
4065
+ competitor: {
4066
+ id: string;
4067
+ name: string | null;
4068
+ };
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";
5185
4070
  }, {
4071
+ payload: Record<string, unknown>;
5186
4072
  id: string;
5187
- data: {
5188
- competitor: string;
5189
- tags: string[];
5190
- discovered_at: string | null;
5191
- description?: string | null | undefined;
5192
- title?: string | null | undefined;
5193
- url?: string | null | undefined;
5194
- key_points?: string | null | undefined;
5195
- image_url?: string | null | undefined;
5196
- posted_date?: string | null | undefined;
5197
- initial_run?: boolean | null | undefined;
5198
- } | {
5199
- competitor: string;
5200
- tags: string[];
5201
- discovered_at: string | null;
5202
- category?: string | null | undefined;
5203
- title?: string | null | undefined;
5204
- url?: string | null | undefined;
5205
- posted_date?: string | null | undefined;
5206
- initial_run?: boolean | null | undefined;
5207
- location?: string | null | undefined;
5208
- is_live?: boolean | null | undefined;
5209
- added_at?: string | null | undefined;
5210
- removed_at?: string | null | undefined;
5211
- } | {
5212
- competitor: string;
5213
- tags: string[];
5214
- discovered_at: string | null;
5215
- initial_run?: boolean | null | undefined;
5216
- is_live?: boolean | null | undefined;
5217
- pricing_data?: unknown[] | Record<string, unknown> | null | undefined;
5218
- changes?: string | null | undefined;
5219
- last_updated_at?: string | null | undefined;
5220
- } | {
5221
- competitor: string;
5222
- tags: string[];
5223
- discovered_at: string | null;
5224
- url?: string | null | undefined;
5225
- posted_date?: string | null | undefined;
5226
- initial_run?: boolean | null | undefined;
5227
- content?: string | null | undefined;
5228
- } | {
5229
- competitor: string;
5230
- tags: string[];
5231
- discovered_at: string | null;
5232
- description?: string | null | undefined;
5233
- title?: string | null | undefined;
5234
- url?: string | null | undefined;
5235
- posted_date?: string | null | undefined;
5236
- initial_run?: boolean | null | undefined;
5237
- } | {
5238
- competitor: string;
5239
- tags: string[];
5240
- discovered_at: string | null;
5241
- description?: string | null | undefined;
5242
- title?: string | null | undefined;
5243
- url?: string | null | undefined;
5244
- image_url?: string | null | undefined;
5245
- initial_run?: boolean | null | undefined;
5246
- location?: string | null | undefined;
5247
- event_type?: string | null | undefined;
5248
- is_virtual?: boolean | null | undefined;
5249
- event_date?: string | null | undefined;
5250
- } | {
5251
- competitor: string;
5252
- tags: string[];
5253
- discovered_at: string | null;
5254
- initial_run?: boolean | null | undefined;
5255
- is_live?: boolean | null | undefined;
5256
- added_at?: string | null | undefined;
5257
- removed_at?: string | null | undefined;
5258
- message_text?: string | null | undefined;
5259
- message_level?: string | null | undefined;
5260
- order_on_page?: number | null | undefined;
5261
- } | {
5262
- competitor: string;
5263
- tags: string[];
5264
- discovered_at: string | null;
5265
- initial_run?: boolean | null | undefined;
5266
- is_live?: boolean | null | undefined;
5267
- added_at?: string | null | undefined;
5268
- removed_at?: string | null | undefined;
5269
- metric?: string | null | undefined;
5270
- context_brand?: string | null | undefined;
5271
- } | {
5272
- competitor: string;
5273
- tags: string[];
5274
- discovered_at: string | null;
5275
- name?: string | null | undefined;
5276
- image_url?: string | null | undefined;
5277
- initial_run?: boolean | null | undefined;
5278
- is_live?: boolean | null | undefined;
5279
- added_at?: string | null | undefined;
5280
- removed_at?: string | null | undefined;
5281
- logo_url?: string | null | undefined;
5282
- } | {
5283
- competitor: string;
5284
- tags: string[];
5285
- discovered_at: string | null;
5286
- url?: string | null | undefined;
5287
- initial_run?: boolean | null | undefined;
5288
- } | {
5289
- competitor: string;
5290
- tags: string[];
5291
- discovered_at: string | null;
5292
- name?: string | null | undefined;
5293
- url?: string | null | undefined;
5294
- posted_date?: string | null | undefined;
5295
- initial_run?: boolean | null | undefined;
5296
- content?: string | null | undefined;
5297
- post_id?: string | null | undefined;
5298
- external_url?: string | null | undefined;
5299
- } | {
5300
- competitor: string;
5301
- tags: string[];
5302
- discovered_at: string | null;
5303
- source?: string | null | undefined;
5304
- name?: string | null | undefined;
5305
- title?: string | null | undefined;
5306
- url?: string | null | undefined;
5307
- posted_date?: string | null | undefined;
5308
- initial_run?: boolean | null | undefined;
5309
- rating?: string | null | undefined;
5310
- sentiment?: string | null | undefined;
5311
- excerpt?: string | null | undefined;
5312
- external_id?: string | null | undefined;
5313
- } | {
5314
- competitor: string;
5315
- tags: string[];
5316
- discovered_at: string | null;
5317
- image_url?: string | null | undefined;
5318
- initial_run?: boolean | null | undefined;
5319
- is_live?: boolean | null | undefined;
5320
- added_at?: string | null | undefined;
5321
- removed_at?: string | null | undefined;
5322
- content?: string | null | undefined;
5323
- platform?: string | null | undefined;
5324
- ad_format?: string | null | undefined;
5325
- };
5326
4073
  competitor: {
5327
4074
  id: string;
5328
4075
  name: string | null;
5329
4076
  };
5330
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";
5331
- change_type: "added" | "updated" | "removed";
5332
- change_date: string;
5333
- }>, "many">;
5334
- pagination: z.ZodObject<{
5335
- next_cursor: z.ZodNullable<z.ZodString>;
5336
- has_more: z.ZodBoolean;
5337
- } & {
5338
- total: z.ZodNumber;
5339
- }, "strip", z.ZodTypeAny, {
5340
- next_cursor: string | null;
5341
- has_more: boolean;
5342
- total: number;
5343
- }, {
5344
- next_cursor: string | null;
5345
- has_more: boolean;
5346
- total: number;
5347
4078
  }>;
5348
4079
  }, "strip", z.ZodTypeAny, {
5349
4080
  data: {
4081
+ payload: Record<string, unknown>;
5350
4082
  id: string;
5351
- data: {
5352
- competitor: string;
5353
- tags: string[];
5354
- discovered_at: string | null;
5355
- description?: string | null | undefined;
5356
- title?: string | null | undefined;
5357
- url?: string | null | undefined;
5358
- key_points?: string | null | undefined;
5359
- image_url?: string | null | undefined;
5360
- posted_date?: string | null | undefined;
5361
- initial_run?: boolean | null | undefined;
5362
- } | {
5363
- competitor: string;
5364
- tags: string[];
5365
- discovered_at: string | null;
5366
- category?: string | null | undefined;
5367
- title?: string | null | undefined;
5368
- url?: string | null | undefined;
5369
- posted_date?: string | null | undefined;
5370
- initial_run?: boolean | null | undefined;
5371
- location?: string | null | undefined;
5372
- is_live?: boolean | null | undefined;
5373
- added_at?: string | null | undefined;
5374
- removed_at?: string | null | undefined;
5375
- } | {
5376
- competitor: string;
5377
- tags: string[];
5378
- discovered_at: string | null;
5379
- initial_run?: boolean | null | undefined;
5380
- is_live?: boolean | null | undefined;
5381
- pricing_data?: unknown[] | Record<string, unknown> | null | undefined;
5382
- changes?: string | null | undefined;
5383
- last_updated_at?: string | null | undefined;
5384
- } | {
5385
- competitor: string;
5386
- tags: string[];
5387
- discovered_at: string | null;
5388
- url?: string | null | undefined;
5389
- posted_date?: string | null | undefined;
5390
- initial_run?: boolean | null | undefined;
5391
- content?: string | null | undefined;
5392
- } | {
5393
- competitor: string;
5394
- tags: string[];
5395
- discovered_at: string | null;
5396
- description?: string | null | undefined;
5397
- title?: string | null | undefined;
5398
- url?: string | null | undefined;
5399
- posted_date?: string | null | undefined;
5400
- initial_run?: boolean | null | undefined;
5401
- } | {
5402
- competitor: string;
5403
- tags: string[];
5404
- discovered_at: string | null;
5405
- description?: string | null | undefined;
5406
- title?: string | null | undefined;
5407
- url?: string | null | undefined;
5408
- image_url?: string | null | undefined;
5409
- initial_run?: boolean | null | undefined;
5410
- location?: string | null | undefined;
5411
- event_type?: string | null | undefined;
5412
- is_virtual?: boolean | null | undefined;
5413
- event_date?: string | null | undefined;
5414
- } | {
5415
- competitor: string;
5416
- tags: string[];
5417
- discovered_at: string | null;
5418
- initial_run?: boolean | null | undefined;
5419
- is_live?: boolean | null | undefined;
5420
- added_at?: string | null | undefined;
5421
- removed_at?: string | null | undefined;
5422
- message_text?: string | null | undefined;
5423
- message_level?: string | null | undefined;
5424
- order_on_page?: number | null | undefined;
5425
- } | {
5426
- competitor: string;
5427
- tags: string[];
5428
- discovered_at: string | null;
5429
- initial_run?: boolean | null | undefined;
5430
- is_live?: boolean | null | undefined;
5431
- added_at?: string | null | undefined;
5432
- removed_at?: string | null | undefined;
5433
- metric?: string | null | undefined;
5434
- context_brand?: string | null | undefined;
5435
- } | {
5436
- competitor: string;
5437
- tags: string[];
5438
- discovered_at: string | null;
5439
- name?: string | null | undefined;
5440
- image_url?: string | null | undefined;
5441
- initial_run?: boolean | null | undefined;
5442
- is_live?: boolean | null | undefined;
5443
- added_at?: string | null | undefined;
5444
- removed_at?: string | null | undefined;
5445
- logo_url?: string | null | undefined;
5446
- } | {
5447
- competitor: string;
5448
- tags: string[];
5449
- discovered_at: string | null;
5450
- url?: string | null | undefined;
5451
- initial_run?: boolean | null | undefined;
5452
- } | {
5453
- competitor: string;
5454
- tags: string[];
5455
- discovered_at: string | null;
5456
- name?: string | null | undefined;
5457
- url?: string | null | undefined;
5458
- posted_date?: string | null | undefined;
5459
- initial_run?: boolean | null | undefined;
5460
- content?: string | null | undefined;
5461
- post_id?: string | null | undefined;
5462
- external_url?: string | null | undefined;
5463
- } | {
5464
- competitor: string;
5465
- tags: string[];
5466
- discovered_at: string | null;
5467
- source?: string | null | undefined;
5468
- name?: string | null | undefined;
5469
- title?: string | null | undefined;
5470
- url?: string | null | undefined;
5471
- posted_date?: string | null | undefined;
5472
- initial_run?: boolean | null | undefined;
5473
- rating?: string | null | undefined;
5474
- sentiment?: string | null | undefined;
5475
- excerpt?: string | null | undefined;
5476
- external_id?: string | null | undefined;
5477
- } | {
5478
- competitor: string;
5479
- tags: string[];
5480
- discovered_at: string | null;
5481
- image_url?: string | null | undefined;
5482
- initial_run?: boolean | null | undefined;
5483
- is_live?: boolean | null | undefined;
5484
- added_at?: string | null | undefined;
5485
- removed_at?: string | null | undefined;
5486
- content?: string | null | undefined;
5487
- platform?: string | null | undefined;
5488
- ad_format?: string | null | undefined;
5489
- };
5490
4083
  competitor: {
5491
4084
  id: string;
5492
4085
  name: string | null;
5493
4086
  };
5494
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";
5495
- change_type: "added" | "updated" | "removed";
5496
- change_date: string;
5497
- }[];
5498
- pagination: {
5499
- next_cursor: string | null;
5500
- has_more: boolean;
5501
- total: number;
5502
4088
  };
5503
4089
  }, {
5504
4090
  data: {
4091
+ payload: Record<string, unknown>;
5505
4092
  id: string;
5506
- data: {
5507
- competitor: string;
5508
- tags: string[];
5509
- discovered_at: string | null;
5510
- description?: string | null | undefined;
5511
- title?: string | null | undefined;
5512
- url?: string | null | undefined;
5513
- key_points?: string | null | undefined;
5514
- image_url?: string | null | undefined;
5515
- posted_date?: string | null | undefined;
5516
- initial_run?: boolean | null | undefined;
5517
- } | {
5518
- competitor: string;
5519
- tags: string[];
5520
- discovered_at: string | null;
5521
- category?: string | null | undefined;
5522
- title?: string | null | undefined;
5523
- url?: string | null | undefined;
5524
- posted_date?: string | null | undefined;
5525
- initial_run?: boolean | null | undefined;
5526
- location?: string | null | undefined;
5527
- is_live?: boolean | null | undefined;
5528
- added_at?: string | null | undefined;
5529
- removed_at?: string | null | undefined;
5530
- } | {
5531
- competitor: string;
5532
- tags: string[];
5533
- discovered_at: string | null;
5534
- initial_run?: boolean | null | undefined;
5535
- is_live?: boolean | null | undefined;
5536
- pricing_data?: unknown[] | Record<string, unknown> | null | undefined;
5537
- changes?: string | null | undefined;
5538
- last_updated_at?: string | null | undefined;
5539
- } | {
5540
- competitor: string;
5541
- tags: string[];
5542
- discovered_at: string | null;
5543
- url?: string | null | undefined;
5544
- posted_date?: string | null | undefined;
5545
- initial_run?: boolean | null | undefined;
5546
- content?: string | null | undefined;
5547
- } | {
5548
- competitor: string;
5549
- tags: string[];
5550
- discovered_at: string | null;
5551
- description?: string | null | undefined;
5552
- title?: string | null | undefined;
5553
- url?: string | null | undefined;
5554
- posted_date?: string | null | undefined;
5555
- initial_run?: boolean | null | undefined;
5556
- } | {
5557
- competitor: string;
5558
- tags: string[];
5559
- discovered_at: string | null;
5560
- description?: string | null | undefined;
5561
- title?: string | null | undefined;
5562
- url?: string | null | undefined;
5563
- image_url?: string | null | undefined;
5564
- initial_run?: boolean | null | undefined;
5565
- location?: string | null | undefined;
5566
- event_type?: string | null | undefined;
5567
- is_virtual?: boolean | null | undefined;
5568
- event_date?: string | null | undefined;
5569
- } | {
5570
- competitor: string;
5571
- tags: string[];
5572
- discovered_at: string | null;
5573
- initial_run?: boolean | null | undefined;
5574
- is_live?: boolean | null | undefined;
5575
- added_at?: string | null | undefined;
5576
- removed_at?: string | null | undefined;
5577
- message_text?: string | null | undefined;
5578
- message_level?: string | null | undefined;
5579
- order_on_page?: number | null | undefined;
5580
- } | {
5581
- competitor: string;
5582
- tags: string[];
5583
- discovered_at: string | null;
5584
- initial_run?: boolean | null | undefined;
5585
- is_live?: boolean | null | undefined;
5586
- added_at?: string | null | undefined;
5587
- removed_at?: string | null | undefined;
5588
- metric?: string | null | undefined;
5589
- context_brand?: string | null | undefined;
5590
- } | {
5591
- competitor: string;
5592
- tags: string[];
5593
- discovered_at: string | null;
5594
- name?: string | null | undefined;
5595
- image_url?: string | null | undefined;
5596
- initial_run?: boolean | null | undefined;
5597
- is_live?: boolean | null | undefined;
5598
- added_at?: string | null | undefined;
5599
- removed_at?: string | null | undefined;
5600
- logo_url?: string | null | undefined;
5601
- } | {
5602
- competitor: string;
5603
- tags: string[];
5604
- discovered_at: string | null;
5605
- url?: string | null | undefined;
5606
- initial_run?: boolean | null | undefined;
5607
- } | {
5608
- competitor: string;
5609
- tags: string[];
5610
- discovered_at: string | null;
5611
- name?: string | null | undefined;
5612
- url?: string | null | undefined;
5613
- posted_date?: string | null | undefined;
5614
- initial_run?: boolean | null | undefined;
5615
- content?: string | null | undefined;
5616
- post_id?: string | null | undefined;
5617
- external_url?: string | null | undefined;
5618
- } | {
5619
- competitor: string;
5620
- tags: string[];
5621
- discovered_at: string | null;
5622
- source?: string | null | undefined;
5623
- name?: string | null | undefined;
5624
- title?: string | null | undefined;
5625
- url?: string | null | undefined;
5626
- posted_date?: string | null | undefined;
5627
- initial_run?: boolean | null | undefined;
5628
- rating?: string | null | undefined;
5629
- sentiment?: string | null | undefined;
5630
- excerpt?: string | null | undefined;
5631
- external_id?: string | null | undefined;
5632
- } | {
5633
- competitor: string;
5634
- tags: string[];
5635
- discovered_at: string | null;
5636
- image_url?: string | null | undefined;
5637
- initial_run?: boolean | null | undefined;
5638
- is_live?: boolean | null | undefined;
5639
- added_at?: string | null | undefined;
5640
- removed_at?: string | null | undefined;
5641
- content?: string | null | undefined;
5642
- platform?: string | null | undefined;
5643
- ad_format?: string | null | undefined;
5644
- };
5645
4093
  competitor: {
5646
4094
  id: string;
5647
4095
  name: string | null;
5648
4096
  };
5649
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";
5650
- change_type: "added" | "updated" | "removed";
5651
- change_date: string;
5652
- }[];
5653
- pagination: {
5654
- next_cursor: string | null;
5655
- has_more: boolean;
5656
- total: number;
5657
4098
  };
5658
4099
  }>;
5659
- export type ActivityListResponse = z.infer<typeof ActivityListResponse>;
5660
- export declare const ActivityDetailResponse: z.ZodObject<{
5661
- data: z.ZodObject<{
4100
+ export type ActivityDetailResponse = z.infer<typeof ActivityDetailResponse>;
4101
+ export declare const ActivityItemsResponse: z.ZodObject<{
4102
+ data: z.ZodArray<z.ZodObject<{
5662
4103
  id: z.ZodString;
5663
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"]>;
5664
4105
  competitor: z.ZodObject<{
@@ -5671,561 +4112,9 @@ export declare const ActivityDetailResponse: z.ZodObject<{
5671
4112
  id: string;
5672
4113
  name: string | null;
5673
4114
  }>;
5674
- payload: z.ZodUnion<[z.ZodObject<{
5675
- title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5676
- url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5677
- description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5678
- key_points: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5679
- image_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5680
- posted_date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5681
- competitor: z.ZodString;
5682
- tags: z.ZodArray<z.ZodString, "many">;
5683
- discovered_at: z.ZodNullable<z.ZodString>;
5684
- initial_run: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
5685
- }, "strip", z.ZodTypeAny, {
5686
- competitor: string;
5687
- tags: string[];
5688
- discovered_at: string | null;
5689
- description?: string | null | undefined;
5690
- title?: string | null | undefined;
5691
- url?: string | null | undefined;
5692
- key_points?: string | null | undefined;
5693
- image_url?: string | null | undefined;
5694
- posted_date?: string | null | undefined;
5695
- initial_run?: boolean | null | undefined;
5696
- }, {
5697
- competitor: string;
5698
- tags: string[];
5699
- discovered_at: string | null;
5700
- description?: string | null | undefined;
5701
- title?: string | null | undefined;
5702
- url?: string | null | undefined;
5703
- key_points?: string | null | undefined;
5704
- image_url?: string | null | undefined;
5705
- posted_date?: string | null | undefined;
5706
- initial_run?: boolean | null | undefined;
5707
- }>, z.ZodObject<{
5708
- title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5709
- url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5710
- category: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5711
- location: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5712
- posted_date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5713
- is_live: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
5714
- added_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5715
- removed_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5716
- competitor: z.ZodString;
5717
- tags: z.ZodArray<z.ZodString, "many">;
5718
- discovered_at: z.ZodNullable<z.ZodString>;
5719
- initial_run: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
5720
- }, "strip", z.ZodTypeAny, {
5721
- competitor: string;
5722
- tags: string[];
5723
- discovered_at: string | null;
5724
- category?: string | null | undefined;
5725
- title?: string | null | undefined;
5726
- url?: string | null | undefined;
5727
- posted_date?: string | null | undefined;
5728
- initial_run?: boolean | null | undefined;
5729
- location?: string | null | undefined;
5730
- is_live?: boolean | null | undefined;
5731
- added_at?: string | null | undefined;
5732
- removed_at?: string | null | undefined;
5733
- }, {
5734
- competitor: string;
5735
- tags: string[];
5736
- discovered_at: string | null;
5737
- category?: string | null | undefined;
5738
- title?: string | null | undefined;
5739
- url?: string | null | undefined;
5740
- posted_date?: string | null | undefined;
5741
- initial_run?: boolean | null | undefined;
5742
- location?: string | null | undefined;
5743
- is_live?: boolean | null | undefined;
5744
- added_at?: string | null | undefined;
5745
- removed_at?: string | null | undefined;
5746
- }>, z.ZodObject<{
5747
- pricing_data: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodRecord<z.ZodString, z.ZodUnknown>, z.ZodArray<z.ZodUnknown, "many">]>>>;
5748
- changes: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5749
- is_live: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
5750
- last_updated_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5751
- competitor: z.ZodString;
5752
- tags: z.ZodArray<z.ZodString, "many">;
5753
- discovered_at: z.ZodNullable<z.ZodString>;
5754
- initial_run: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
5755
- }, "strip", z.ZodTypeAny, {
5756
- competitor: string;
5757
- tags: string[];
5758
- discovered_at: string | null;
5759
- initial_run?: boolean | null | undefined;
5760
- is_live?: boolean | null | undefined;
5761
- pricing_data?: unknown[] | Record<string, unknown> | null | undefined;
5762
- changes?: string | null | undefined;
5763
- last_updated_at?: string | null | undefined;
5764
- }, {
5765
- competitor: string;
5766
- tags: string[];
5767
- discovered_at: string | null;
5768
- initial_run?: boolean | null | undefined;
5769
- is_live?: boolean | null | undefined;
5770
- pricing_data?: unknown[] | Record<string, unknown> | null | undefined;
5771
- changes?: string | null | undefined;
5772
- last_updated_at?: string | null | undefined;
5773
- }>, z.ZodObject<{
5774
- url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5775
- content: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5776
- posted_date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5777
- competitor: z.ZodString;
5778
- tags: z.ZodArray<z.ZodString, "many">;
5779
- discovered_at: z.ZodNullable<z.ZodString>;
5780
- initial_run: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
5781
- }, "strip", z.ZodTypeAny, {
5782
- competitor: string;
5783
- tags: string[];
5784
- discovered_at: string | null;
5785
- url?: string | null | undefined;
5786
- posted_date?: string | null | undefined;
5787
- initial_run?: boolean | null | undefined;
5788
- content?: string | null | undefined;
5789
- }, {
5790
- competitor: string;
5791
- tags: string[];
5792
- discovered_at: string | null;
5793
- url?: string | null | undefined;
5794
- posted_date?: string | null | undefined;
5795
- initial_run?: boolean | null | undefined;
5796
- content?: string | null | undefined;
5797
- }>, z.ZodObject<{
5798
- title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5799
- url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5800
- description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5801
- posted_date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5802
- competitor: z.ZodString;
5803
- tags: z.ZodArray<z.ZodString, "many">;
5804
- discovered_at: z.ZodNullable<z.ZodString>;
5805
- initial_run: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
5806
- }, "strip", z.ZodTypeAny, {
5807
- competitor: string;
5808
- tags: string[];
5809
- discovered_at: string | null;
5810
- description?: string | null | undefined;
5811
- title?: string | null | undefined;
5812
- url?: string | null | undefined;
5813
- posted_date?: string | null | undefined;
5814
- initial_run?: boolean | null | undefined;
5815
- }, {
5816
- competitor: string;
5817
- tags: string[];
5818
- discovered_at: string | null;
5819
- description?: string | null | undefined;
5820
- title?: string | null | undefined;
5821
- url?: string | null | undefined;
5822
- posted_date?: string | null | undefined;
5823
- initial_run?: boolean | null | undefined;
5824
- }>, z.ZodObject<{
5825
- title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5826
- url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5827
- description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5828
- image_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5829
- event_type: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5830
- location: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5831
- is_virtual: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
5832
- event_date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5833
- competitor: z.ZodString;
5834
- tags: z.ZodArray<z.ZodString, "many">;
5835
- discovered_at: z.ZodNullable<z.ZodString>;
5836
- initial_run: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
5837
- }, "strip", z.ZodTypeAny, {
5838
- competitor: string;
5839
- tags: string[];
5840
- discovered_at: string | null;
5841
- description?: string | null | undefined;
5842
- title?: string | null | undefined;
5843
- url?: string | null | undefined;
5844
- image_url?: string | null | undefined;
5845
- initial_run?: boolean | null | undefined;
5846
- location?: string | null | undefined;
5847
- event_type?: string | null | undefined;
5848
- is_virtual?: boolean | null | undefined;
5849
- event_date?: string | null | undefined;
5850
- }, {
5851
- competitor: string;
5852
- tags: string[];
5853
- discovered_at: string | null;
5854
- description?: string | null | undefined;
5855
- title?: string | null | undefined;
5856
- url?: string | null | undefined;
5857
- image_url?: string | null | undefined;
5858
- initial_run?: boolean | null | undefined;
5859
- location?: string | null | undefined;
5860
- event_type?: string | null | undefined;
5861
- is_virtual?: boolean | null | undefined;
5862
- event_date?: string | null | undefined;
5863
- }>, z.ZodObject<{
5864
- message_text: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5865
- message_level: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5866
- order_on_page: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
5867
- is_live: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
5868
- added_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5869
- removed_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5870
- competitor: z.ZodString;
5871
- tags: z.ZodArray<z.ZodString, "many">;
5872
- discovered_at: z.ZodNullable<z.ZodString>;
5873
- initial_run: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
5874
- }, "strip", z.ZodTypeAny, {
5875
- competitor: string;
5876
- tags: string[];
5877
- discovered_at: string | null;
5878
- initial_run?: boolean | null | undefined;
5879
- is_live?: boolean | null | undefined;
5880
- added_at?: string | null | undefined;
5881
- removed_at?: string | null | undefined;
5882
- message_text?: string | null | undefined;
5883
- message_level?: string | null | undefined;
5884
- order_on_page?: number | null | undefined;
5885
- }, {
5886
- competitor: string;
5887
- tags: string[];
5888
- discovered_at: string | null;
5889
- initial_run?: boolean | null | undefined;
5890
- is_live?: boolean | null | undefined;
5891
- added_at?: string | null | undefined;
5892
- removed_at?: string | null | undefined;
5893
- message_text?: string | null | undefined;
5894
- message_level?: string | null | undefined;
5895
- order_on_page?: number | null | undefined;
5896
- }>, z.ZodObject<{
5897
- metric: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5898
- context_brand: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5899
- is_live: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
5900
- added_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5901
- removed_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5902
- competitor: z.ZodString;
5903
- tags: z.ZodArray<z.ZodString, "many">;
5904
- discovered_at: z.ZodNullable<z.ZodString>;
5905
- initial_run: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
5906
- }, "strip", z.ZodTypeAny, {
5907
- competitor: string;
5908
- tags: string[];
5909
- discovered_at: string | null;
5910
- initial_run?: boolean | null | undefined;
5911
- is_live?: boolean | null | undefined;
5912
- added_at?: string | null | undefined;
5913
- removed_at?: string | null | undefined;
5914
- metric?: string | null | undefined;
5915
- context_brand?: string | null | undefined;
5916
- }, {
5917
- competitor: string;
5918
- tags: string[];
5919
- discovered_at: string | null;
5920
- initial_run?: boolean | null | undefined;
5921
- is_live?: boolean | null | undefined;
5922
- added_at?: string | null | undefined;
5923
- removed_at?: string | null | undefined;
5924
- metric?: string | null | undefined;
5925
- context_brand?: string | null | undefined;
5926
- }>, z.ZodObject<{
5927
- name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5928
- logo_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5929
- image_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5930
- is_live: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
5931
- added_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5932
- removed_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5933
- competitor: z.ZodString;
5934
- tags: z.ZodArray<z.ZodString, "many">;
5935
- discovered_at: z.ZodNullable<z.ZodString>;
5936
- initial_run: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
5937
- }, "strip", z.ZodTypeAny, {
5938
- competitor: string;
5939
- tags: string[];
5940
- discovered_at: string | null;
5941
- name?: string | null | undefined;
5942
- image_url?: string | null | undefined;
5943
- initial_run?: boolean | null | undefined;
5944
- is_live?: boolean | null | undefined;
5945
- added_at?: string | null | undefined;
5946
- removed_at?: string | null | undefined;
5947
- logo_url?: string | null | undefined;
5948
- }, {
5949
- competitor: string;
5950
- tags: string[];
5951
- discovered_at: string | null;
5952
- name?: string | null | undefined;
5953
- image_url?: string | null | undefined;
5954
- initial_run?: boolean | null | undefined;
5955
- is_live?: boolean | null | undefined;
5956
- added_at?: string | null | undefined;
5957
- removed_at?: string | null | undefined;
5958
- logo_url?: string | null | undefined;
5959
- }>, z.ZodObject<{
5960
- url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5961
- competitor: z.ZodString;
5962
- tags: z.ZodArray<z.ZodString, "many">;
5963
- discovered_at: z.ZodNullable<z.ZodString>;
5964
- initial_run: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
5965
- }, "strip", z.ZodTypeAny, {
5966
- competitor: string;
5967
- tags: string[];
5968
- discovered_at: string | null;
5969
- url?: string | null | undefined;
5970
- initial_run?: boolean | null | undefined;
5971
- }, {
5972
- competitor: string;
5973
- tags: string[];
5974
- discovered_at: string | null;
5975
- url?: string | null | undefined;
5976
- initial_run?: boolean | null | undefined;
5977
- }>, z.ZodObject<{
5978
- post_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5979
- url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5980
- content: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5981
- name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5982
- external_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5983
- posted_date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5984
- competitor: z.ZodString;
5985
- tags: z.ZodArray<z.ZodString, "many">;
5986
- discovered_at: z.ZodNullable<z.ZodString>;
5987
- initial_run: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
5988
- }, "strip", z.ZodTypeAny, {
5989
- competitor: string;
5990
- tags: string[];
5991
- discovered_at: string | null;
5992
- name?: string | null | undefined;
5993
- url?: string | null | undefined;
5994
- posted_date?: string | null | undefined;
5995
- initial_run?: boolean | null | undefined;
5996
- content?: string | null | undefined;
5997
- post_id?: string | null | undefined;
5998
- external_url?: string | null | undefined;
5999
- }, {
6000
- competitor: string;
6001
- tags: string[];
6002
- discovered_at: string | null;
6003
- name?: string | null | undefined;
6004
- url?: string | null | undefined;
6005
- posted_date?: string | null | undefined;
6006
- initial_run?: boolean | null | undefined;
6007
- content?: string | null | undefined;
6008
- post_id?: string | null | undefined;
6009
- external_url?: string | null | undefined;
6010
- }>, z.ZodObject<{
6011
- title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6012
- rating: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6013
- sentiment: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6014
- url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6015
- excerpt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6016
- source: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6017
- name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6018
- external_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6019
- posted_date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6020
- competitor: z.ZodString;
6021
- tags: z.ZodArray<z.ZodString, "many">;
6022
- discovered_at: z.ZodNullable<z.ZodString>;
6023
- initial_run: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
6024
- }, "strip", z.ZodTypeAny, {
6025
- competitor: string;
6026
- tags: string[];
6027
- discovered_at: string | null;
6028
- source?: string | null | undefined;
6029
- name?: string | null | undefined;
6030
- title?: string | null | undefined;
6031
- url?: string | null | undefined;
6032
- posted_date?: string | null | undefined;
6033
- initial_run?: boolean | null | undefined;
6034
- rating?: string | null | undefined;
6035
- sentiment?: string | null | undefined;
6036
- excerpt?: string | null | undefined;
6037
- external_id?: string | null | undefined;
6038
- }, {
6039
- competitor: string;
6040
- tags: string[];
6041
- discovered_at: string | null;
6042
- source?: string | null | undefined;
6043
- name?: string | null | undefined;
6044
- title?: string | null | undefined;
6045
- url?: string | null | undefined;
6046
- posted_date?: string | null | undefined;
6047
- initial_run?: boolean | null | undefined;
6048
- rating?: string | null | undefined;
6049
- sentiment?: string | null | undefined;
6050
- excerpt?: string | null | undefined;
6051
- external_id?: string | null | undefined;
6052
- }>, z.ZodObject<{
6053
- platform: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6054
- ad_format: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6055
- content: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6056
- image_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6057
- is_live: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
6058
- added_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6059
- removed_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6060
- competitor: z.ZodString;
6061
- tags: z.ZodArray<z.ZodString, "many">;
6062
- discovered_at: z.ZodNullable<z.ZodString>;
6063
- initial_run: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
6064
- }, "strip", z.ZodTypeAny, {
6065
- competitor: string;
6066
- tags: string[];
6067
- discovered_at: string | null;
6068
- image_url?: string | null | undefined;
6069
- initial_run?: boolean | null | undefined;
6070
- is_live?: boolean | null | undefined;
6071
- added_at?: string | null | undefined;
6072
- removed_at?: string | null | undefined;
6073
- content?: string | null | undefined;
6074
- platform?: string | null | undefined;
6075
- ad_format?: string | null | undefined;
6076
- }, {
6077
- competitor: string;
6078
- tags: string[];
6079
- discovered_at: string | null;
6080
- image_url?: string | null | undefined;
6081
- initial_run?: boolean | null | undefined;
6082
- is_live?: boolean | null | undefined;
6083
- added_at?: string | null | undefined;
6084
- removed_at?: string | null | undefined;
6085
- content?: string | null | undefined;
6086
- platform?: string | null | undefined;
6087
- ad_format?: string | null | undefined;
6088
- }>]>;
4115
+ payload: z.ZodRecord<z.ZodString, z.ZodUnknown>;
6089
4116
  }, "strip", z.ZodTypeAny, {
6090
- payload: {
6091
- competitor: string;
6092
- tags: string[];
6093
- discovered_at: string | null;
6094
- description?: string | null | undefined;
6095
- title?: string | null | undefined;
6096
- url?: string | null | undefined;
6097
- key_points?: string | null | undefined;
6098
- image_url?: string | null | undefined;
6099
- posted_date?: string | null | undefined;
6100
- initial_run?: boolean | null | undefined;
6101
- } | {
6102
- competitor: string;
6103
- tags: string[];
6104
- discovered_at: string | null;
6105
- category?: string | null | undefined;
6106
- title?: string | null | undefined;
6107
- url?: string | null | undefined;
6108
- posted_date?: string | null | undefined;
6109
- initial_run?: boolean | null | undefined;
6110
- location?: string | null | undefined;
6111
- is_live?: boolean | null | undefined;
6112
- added_at?: string | null | undefined;
6113
- removed_at?: string | null | undefined;
6114
- } | {
6115
- competitor: string;
6116
- tags: string[];
6117
- discovered_at: string | null;
6118
- initial_run?: boolean | null | undefined;
6119
- is_live?: boolean | null | undefined;
6120
- pricing_data?: unknown[] | Record<string, unknown> | null | undefined;
6121
- changes?: string | null | undefined;
6122
- last_updated_at?: string | null | undefined;
6123
- } | {
6124
- competitor: string;
6125
- tags: string[];
6126
- discovered_at: string | null;
6127
- url?: string | null | undefined;
6128
- posted_date?: string | null | undefined;
6129
- initial_run?: boolean | null | undefined;
6130
- content?: string | null | undefined;
6131
- } | {
6132
- competitor: string;
6133
- tags: string[];
6134
- discovered_at: string | null;
6135
- description?: string | null | undefined;
6136
- title?: string | null | undefined;
6137
- url?: string | null | undefined;
6138
- posted_date?: string | null | undefined;
6139
- initial_run?: boolean | null | undefined;
6140
- } | {
6141
- competitor: string;
6142
- tags: string[];
6143
- discovered_at: string | null;
6144
- description?: string | null | undefined;
6145
- title?: string | null | undefined;
6146
- url?: string | null | undefined;
6147
- image_url?: string | null | undefined;
6148
- initial_run?: boolean | null | undefined;
6149
- location?: string | null | undefined;
6150
- event_type?: string | null | undefined;
6151
- is_virtual?: boolean | null | undefined;
6152
- event_date?: string | null | undefined;
6153
- } | {
6154
- competitor: string;
6155
- tags: string[];
6156
- discovered_at: string | null;
6157
- initial_run?: boolean | null | undefined;
6158
- is_live?: boolean | null | undefined;
6159
- added_at?: string | null | undefined;
6160
- removed_at?: string | null | undefined;
6161
- message_text?: string | null | undefined;
6162
- message_level?: string | null | undefined;
6163
- order_on_page?: number | null | undefined;
6164
- } | {
6165
- competitor: string;
6166
- tags: string[];
6167
- discovered_at: string | null;
6168
- initial_run?: boolean | null | undefined;
6169
- is_live?: boolean | null | undefined;
6170
- added_at?: string | null | undefined;
6171
- removed_at?: string | null | undefined;
6172
- metric?: string | null | undefined;
6173
- context_brand?: string | null | undefined;
6174
- } | {
6175
- competitor: string;
6176
- tags: string[];
6177
- discovered_at: string | null;
6178
- name?: string | null | undefined;
6179
- image_url?: string | null | undefined;
6180
- initial_run?: boolean | null | undefined;
6181
- is_live?: boolean | null | undefined;
6182
- added_at?: string | null | undefined;
6183
- removed_at?: string | null | undefined;
6184
- logo_url?: string | null | undefined;
6185
- } | {
6186
- competitor: string;
6187
- tags: string[];
6188
- discovered_at: string | null;
6189
- url?: string | null | undefined;
6190
- initial_run?: boolean | null | undefined;
6191
- } | {
6192
- competitor: string;
6193
- tags: string[];
6194
- discovered_at: string | null;
6195
- name?: string | null | undefined;
6196
- url?: string | null | undefined;
6197
- posted_date?: string | null | undefined;
6198
- initial_run?: boolean | null | undefined;
6199
- content?: string | null | undefined;
6200
- post_id?: string | null | undefined;
6201
- external_url?: string | null | undefined;
6202
- } | {
6203
- competitor: string;
6204
- tags: string[];
6205
- discovered_at: string | null;
6206
- source?: string | null | undefined;
6207
- name?: string | null | undefined;
6208
- title?: string | null | undefined;
6209
- url?: string | null | undefined;
6210
- posted_date?: string | null | undefined;
6211
- initial_run?: boolean | null | undefined;
6212
- rating?: string | null | undefined;
6213
- sentiment?: string | null | undefined;
6214
- excerpt?: string | null | undefined;
6215
- external_id?: string | null | undefined;
6216
- } | {
6217
- competitor: string;
6218
- tags: string[];
6219
- discovered_at: string | null;
6220
- image_url?: string | null | undefined;
6221
- initial_run?: boolean | null | undefined;
6222
- is_live?: boolean | null | undefined;
6223
- added_at?: string | null | undefined;
6224
- removed_at?: string | null | undefined;
6225
- content?: string | null | undefined;
6226
- platform?: string | null | undefined;
6227
- ad_format?: string | null | undefined;
6228
- };
4117
+ payload: Record<string, unknown>;
6229
4118
  id: string;
6230
4119
  competitor: {
6231
4120
  id: string;
@@ -6233,450 +4122,39 @@ export declare const ActivityDetailResponse: z.ZodObject<{
6233
4122
  };
6234
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";
6235
4124
  }, {
6236
- payload: {
6237
- competitor: string;
6238
- tags: string[];
6239
- discovered_at: string | null;
6240
- description?: string | null | undefined;
6241
- title?: string | null | undefined;
6242
- url?: string | null | undefined;
6243
- key_points?: string | null | undefined;
6244
- image_url?: string | null | undefined;
6245
- posted_date?: string | null | undefined;
6246
- initial_run?: boolean | null | undefined;
6247
- } | {
6248
- competitor: string;
6249
- tags: string[];
6250
- discovered_at: string | null;
6251
- category?: string | null | undefined;
6252
- title?: string | null | undefined;
6253
- url?: string | null | undefined;
6254
- posted_date?: string | null | undefined;
6255
- initial_run?: boolean | null | undefined;
6256
- location?: string | null | undefined;
6257
- is_live?: boolean | null | undefined;
6258
- added_at?: string | null | undefined;
6259
- removed_at?: string | null | undefined;
6260
- } | {
6261
- competitor: string;
6262
- tags: string[];
6263
- discovered_at: string | null;
6264
- initial_run?: boolean | null | undefined;
6265
- is_live?: boolean | null | undefined;
6266
- pricing_data?: unknown[] | Record<string, unknown> | null | undefined;
6267
- changes?: string | null | undefined;
6268
- last_updated_at?: string | null | undefined;
6269
- } | {
6270
- competitor: string;
6271
- tags: string[];
6272
- discovered_at: string | null;
6273
- url?: string | null | undefined;
6274
- posted_date?: string | null | undefined;
6275
- initial_run?: boolean | null | undefined;
6276
- content?: string | null | undefined;
6277
- } | {
6278
- competitor: string;
6279
- tags: string[];
6280
- discovered_at: string | null;
6281
- description?: string | null | undefined;
6282
- title?: string | null | undefined;
6283
- url?: string | null | undefined;
6284
- posted_date?: string | null | undefined;
6285
- initial_run?: boolean | null | undefined;
6286
- } | {
6287
- competitor: string;
6288
- tags: string[];
6289
- discovered_at: string | null;
6290
- description?: string | null | undefined;
6291
- title?: string | null | undefined;
6292
- url?: string | null | undefined;
6293
- image_url?: string | null | undefined;
6294
- initial_run?: boolean | null | undefined;
6295
- location?: string | null | undefined;
6296
- event_type?: string | null | undefined;
6297
- is_virtual?: boolean | null | undefined;
6298
- event_date?: string | null | undefined;
6299
- } | {
6300
- competitor: string;
6301
- tags: string[];
6302
- discovered_at: string | null;
6303
- initial_run?: boolean | null | undefined;
6304
- is_live?: boolean | null | undefined;
6305
- added_at?: string | null | undefined;
6306
- removed_at?: string | null | undefined;
6307
- message_text?: string | null | undefined;
6308
- message_level?: string | null | undefined;
6309
- order_on_page?: number | null | undefined;
6310
- } | {
6311
- competitor: string;
6312
- tags: string[];
6313
- discovered_at: string | null;
6314
- initial_run?: boolean | null | undefined;
6315
- is_live?: boolean | null | undefined;
6316
- added_at?: string | null | undefined;
6317
- removed_at?: string | null | undefined;
6318
- metric?: string | null | undefined;
6319
- context_brand?: string | null | undefined;
6320
- } | {
6321
- competitor: string;
6322
- tags: string[];
6323
- discovered_at: string | null;
6324
- name?: string | null | undefined;
6325
- image_url?: string | null | undefined;
6326
- initial_run?: boolean | null | undefined;
6327
- is_live?: boolean | null | undefined;
6328
- added_at?: string | null | undefined;
6329
- removed_at?: string | null | undefined;
6330
- logo_url?: string | null | undefined;
6331
- } | {
6332
- competitor: string;
6333
- tags: string[];
6334
- discovered_at: string | null;
6335
- url?: string | null | undefined;
6336
- initial_run?: boolean | null | undefined;
6337
- } | {
6338
- competitor: string;
6339
- tags: string[];
6340
- discovered_at: string | null;
6341
- name?: string | null | undefined;
6342
- url?: string | null | undefined;
6343
- posted_date?: string | null | undefined;
6344
- initial_run?: boolean | null | undefined;
6345
- content?: string | null | undefined;
6346
- post_id?: string | null | undefined;
6347
- external_url?: string | null | undefined;
6348
- } | {
6349
- competitor: string;
6350
- tags: string[];
6351
- discovered_at: string | null;
6352
- source?: string | null | undefined;
6353
- name?: string | null | undefined;
6354
- title?: string | null | undefined;
6355
- url?: string | null | undefined;
6356
- posted_date?: string | null | undefined;
6357
- initial_run?: boolean | null | undefined;
6358
- rating?: string | null | undefined;
6359
- sentiment?: string | null | undefined;
6360
- excerpt?: string | null | undefined;
6361
- external_id?: string | null | undefined;
6362
- } | {
6363
- competitor: string;
6364
- tags: string[];
6365
- discovered_at: string | null;
6366
- image_url?: string | null | undefined;
6367
- initial_run?: boolean | null | undefined;
6368
- is_live?: boolean | null | undefined;
6369
- added_at?: string | null | undefined;
6370
- removed_at?: string | null | undefined;
6371
- content?: string | null | undefined;
6372
- platform?: string | null | undefined;
6373
- ad_format?: string | null | undefined;
6374
- };
4125
+ payload: Record<string, unknown>;
6375
4126
  id: string;
6376
4127
  competitor: {
6377
4128
  id: string;
6378
4129
  name: string | null;
6379
4130
  };
6380
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";
6381
- }>;
4132
+ }>, "many">;
4133
+ not_found: z.ZodArray<z.ZodString, "many">;
6382
4134
  }, "strip", z.ZodTypeAny, {
4135
+ not_found: string[];
6383
4136
  data: {
6384
- payload: {
6385
- competitor: string;
6386
- tags: string[];
6387
- discovered_at: string | null;
6388
- description?: string | null | undefined;
6389
- title?: string | null | undefined;
6390
- url?: string | null | undefined;
6391
- key_points?: string | null | undefined;
6392
- image_url?: string | null | undefined;
6393
- posted_date?: string | null | undefined;
6394
- initial_run?: boolean | null | undefined;
6395
- } | {
6396
- competitor: string;
6397
- tags: string[];
6398
- discovered_at: string | null;
6399
- category?: string | null | undefined;
6400
- title?: string | null | undefined;
6401
- url?: string | null | undefined;
6402
- posted_date?: string | null | undefined;
6403
- initial_run?: boolean | null | undefined;
6404
- location?: string | null | undefined;
6405
- is_live?: boolean | null | undefined;
6406
- added_at?: string | null | undefined;
6407
- removed_at?: string | null | undefined;
6408
- } | {
6409
- competitor: string;
6410
- tags: string[];
6411
- discovered_at: string | null;
6412
- initial_run?: boolean | null | undefined;
6413
- is_live?: boolean | null | undefined;
6414
- pricing_data?: unknown[] | Record<string, unknown> | null | undefined;
6415
- changes?: string | null | undefined;
6416
- last_updated_at?: string | null | undefined;
6417
- } | {
6418
- competitor: string;
6419
- tags: string[];
6420
- discovered_at: string | null;
6421
- url?: string | null | undefined;
6422
- posted_date?: string | null | undefined;
6423
- initial_run?: boolean | null | undefined;
6424
- content?: string | null | undefined;
6425
- } | {
6426
- competitor: string;
6427
- tags: string[];
6428
- discovered_at: string | null;
6429
- description?: string | null | undefined;
6430
- title?: string | null | undefined;
6431
- url?: string | null | undefined;
6432
- posted_date?: string | null | undefined;
6433
- initial_run?: boolean | null | undefined;
6434
- } | {
6435
- competitor: string;
6436
- tags: string[];
6437
- discovered_at: string | null;
6438
- description?: string | null | undefined;
6439
- title?: string | null | undefined;
6440
- url?: string | null | undefined;
6441
- image_url?: string | null | undefined;
6442
- initial_run?: boolean | null | undefined;
6443
- location?: string | null | undefined;
6444
- event_type?: string | null | undefined;
6445
- is_virtual?: boolean | null | undefined;
6446
- event_date?: string | null | undefined;
6447
- } | {
6448
- competitor: string;
6449
- tags: string[];
6450
- discovered_at: string | null;
6451
- initial_run?: boolean | null | undefined;
6452
- is_live?: boolean | null | undefined;
6453
- added_at?: string | null | undefined;
6454
- removed_at?: string | null | undefined;
6455
- message_text?: string | null | undefined;
6456
- message_level?: string | null | undefined;
6457
- order_on_page?: number | null | undefined;
6458
- } | {
6459
- competitor: string;
6460
- tags: string[];
6461
- discovered_at: string | null;
6462
- initial_run?: boolean | null | undefined;
6463
- is_live?: boolean | null | undefined;
6464
- added_at?: string | null | undefined;
6465
- removed_at?: string | null | undefined;
6466
- metric?: string | null | undefined;
6467
- context_brand?: string | null | undefined;
6468
- } | {
6469
- competitor: string;
6470
- tags: string[];
6471
- discovered_at: string | null;
6472
- name?: string | null | undefined;
6473
- image_url?: string | null | undefined;
6474
- initial_run?: boolean | null | undefined;
6475
- is_live?: boolean | null | undefined;
6476
- added_at?: string | null | undefined;
6477
- removed_at?: string | null | undefined;
6478
- logo_url?: string | null | undefined;
6479
- } | {
6480
- competitor: string;
6481
- tags: string[];
6482
- discovered_at: string | null;
6483
- url?: string | null | undefined;
6484
- initial_run?: boolean | null | undefined;
6485
- } | {
6486
- competitor: string;
6487
- tags: string[];
6488
- discovered_at: string | null;
6489
- name?: string | null | undefined;
6490
- url?: string | null | undefined;
6491
- posted_date?: string | null | undefined;
6492
- initial_run?: boolean | null | undefined;
6493
- content?: string | null | undefined;
6494
- post_id?: string | null | undefined;
6495
- external_url?: string | null | undefined;
6496
- } | {
6497
- competitor: string;
6498
- tags: string[];
6499
- discovered_at: string | null;
6500
- source?: string | null | undefined;
6501
- name?: string | null | undefined;
6502
- title?: string | null | undefined;
6503
- url?: string | null | undefined;
6504
- posted_date?: string | null | undefined;
6505
- initial_run?: boolean | null | undefined;
6506
- rating?: string | null | undefined;
6507
- sentiment?: string | null | undefined;
6508
- excerpt?: string | null | undefined;
6509
- external_id?: string | null | undefined;
6510
- } | {
6511
- competitor: string;
6512
- tags: string[];
6513
- discovered_at: string | null;
6514
- image_url?: string | null | undefined;
6515
- initial_run?: boolean | null | undefined;
6516
- is_live?: boolean | null | undefined;
6517
- added_at?: string | null | undefined;
6518
- removed_at?: string | null | undefined;
6519
- content?: string | null | undefined;
6520
- platform?: string | null | undefined;
6521
- ad_format?: string | null | undefined;
6522
- };
4137
+ payload: Record<string, unknown>;
6523
4138
  id: string;
6524
4139
  competitor: {
6525
4140
  id: string;
6526
4141
  name: string | null;
6527
4142
  };
6528
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";
6529
- };
4144
+ }[];
6530
4145
  }, {
4146
+ not_found: string[];
6531
4147
  data: {
6532
- payload: {
6533
- competitor: string;
6534
- tags: string[];
6535
- discovered_at: string | null;
6536
- description?: string | null | undefined;
6537
- title?: string | null | undefined;
6538
- url?: string | null | undefined;
6539
- key_points?: string | null | undefined;
6540
- image_url?: string | null | undefined;
6541
- posted_date?: string | null | undefined;
6542
- initial_run?: boolean | null | undefined;
6543
- } | {
6544
- competitor: string;
6545
- tags: string[];
6546
- discovered_at: string | null;
6547
- category?: string | null | undefined;
6548
- title?: string | null | undefined;
6549
- url?: string | null | undefined;
6550
- posted_date?: string | null | undefined;
6551
- initial_run?: boolean | null | undefined;
6552
- location?: string | null | undefined;
6553
- is_live?: boolean | null | undefined;
6554
- added_at?: string | null | undefined;
6555
- removed_at?: string | null | undefined;
6556
- } | {
6557
- competitor: string;
6558
- tags: string[];
6559
- discovered_at: string | null;
6560
- initial_run?: boolean | null | undefined;
6561
- is_live?: boolean | null | undefined;
6562
- pricing_data?: unknown[] | Record<string, unknown> | null | undefined;
6563
- changes?: string | null | undefined;
6564
- last_updated_at?: string | null | undefined;
6565
- } | {
6566
- competitor: string;
6567
- tags: string[];
6568
- discovered_at: string | null;
6569
- url?: string | null | undefined;
6570
- posted_date?: string | null | undefined;
6571
- initial_run?: boolean | null | undefined;
6572
- content?: string | null | undefined;
6573
- } | {
6574
- competitor: string;
6575
- tags: string[];
6576
- discovered_at: string | null;
6577
- description?: string | null | undefined;
6578
- title?: string | null | undefined;
6579
- url?: string | null | undefined;
6580
- posted_date?: string | null | undefined;
6581
- initial_run?: boolean | null | undefined;
6582
- } | {
6583
- competitor: string;
6584
- tags: string[];
6585
- discovered_at: string | null;
6586
- description?: string | null | undefined;
6587
- title?: string | null | undefined;
6588
- url?: string | null | undefined;
6589
- image_url?: string | null | undefined;
6590
- initial_run?: boolean | null | undefined;
6591
- location?: string | null | undefined;
6592
- event_type?: string | null | undefined;
6593
- is_virtual?: boolean | null | undefined;
6594
- event_date?: string | null | undefined;
6595
- } | {
6596
- competitor: string;
6597
- tags: string[];
6598
- discovered_at: string | null;
6599
- initial_run?: boolean | null | undefined;
6600
- is_live?: boolean | null | undefined;
6601
- added_at?: string | null | undefined;
6602
- removed_at?: string | null | undefined;
6603
- message_text?: string | null | undefined;
6604
- message_level?: string | null | undefined;
6605
- order_on_page?: number | null | undefined;
6606
- } | {
6607
- competitor: string;
6608
- tags: string[];
6609
- discovered_at: string | null;
6610
- initial_run?: boolean | null | undefined;
6611
- is_live?: boolean | null | undefined;
6612
- added_at?: string | null | undefined;
6613
- removed_at?: string | null | undefined;
6614
- metric?: string | null | undefined;
6615
- context_brand?: string | null | undefined;
6616
- } | {
6617
- competitor: string;
6618
- tags: string[];
6619
- discovered_at: string | null;
6620
- name?: string | null | undefined;
6621
- image_url?: string | null | undefined;
6622
- initial_run?: boolean | null | undefined;
6623
- is_live?: boolean | null | undefined;
6624
- added_at?: string | null | undefined;
6625
- removed_at?: string | null | undefined;
6626
- logo_url?: string | null | undefined;
6627
- } | {
6628
- competitor: string;
6629
- tags: string[];
6630
- discovered_at: string | null;
6631
- url?: string | null | undefined;
6632
- initial_run?: boolean | null | undefined;
6633
- } | {
6634
- competitor: string;
6635
- tags: string[];
6636
- discovered_at: string | null;
6637
- name?: string | null | undefined;
6638
- url?: string | null | undefined;
6639
- posted_date?: string | null | undefined;
6640
- initial_run?: boolean | null | undefined;
6641
- content?: string | null | undefined;
6642
- post_id?: string | null | undefined;
6643
- external_url?: string | null | undefined;
6644
- } | {
6645
- competitor: string;
6646
- tags: string[];
6647
- discovered_at: string | null;
6648
- source?: string | null | undefined;
6649
- name?: string | null | undefined;
6650
- title?: string | null | undefined;
6651
- url?: string | null | undefined;
6652
- posted_date?: string | null | undefined;
6653
- initial_run?: boolean | null | undefined;
6654
- rating?: string | null | undefined;
6655
- sentiment?: string | null | undefined;
6656
- excerpt?: string | null | undefined;
6657
- external_id?: string | null | undefined;
6658
- } | {
6659
- competitor: string;
6660
- tags: string[];
6661
- discovered_at: string | null;
6662
- image_url?: string | null | undefined;
6663
- initial_run?: boolean | null | undefined;
6664
- is_live?: boolean | null | undefined;
6665
- added_at?: string | null | undefined;
6666
- removed_at?: string | null | undefined;
6667
- content?: string | null | undefined;
6668
- platform?: string | null | undefined;
6669
- ad_format?: string | null | undefined;
6670
- };
4148
+ payload: Record<string, unknown>;
6671
4149
  id: string;
6672
4150
  competitor: {
6673
4151
  id: string;
6674
4152
  name: string | null;
6675
4153
  };
6676
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";
6677
- };
4155
+ }[];
6678
4156
  }>;
6679
- export type ActivityDetailResponse = z.infer<typeof ActivityDetailResponse>;
4157
+ export type ActivityItemsResponse = z.infer<typeof ActivityItemsResponse>;
6680
4158
  export declare const DigestSummary: z.ZodObject<{
6681
4159
  executive_summary: z.ZodOptional<z.ZodString>;
6682
4160
  themes: z.ZodOptional<z.ZodArray<z.ZodObject<{