@meertrack/mcp 1.0.2 → 1.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +27 -7
- package/dist/auth.d.ts +74 -15
- package/dist/auth.d.ts.map +1 -1
- package/dist/auth.js +139 -15
- package/dist/auth.js.map +1 -1
- package/dist/client.d.ts.map +1 -1
- package/dist/client.js +13 -3
- package/dist/client.js.map +1 -1
- package/dist/index.js +15 -0
- package/dist/index.js.map +1 -1
- package/dist/tools/get_competitor.d.ts.map +1 -1
- package/dist/tools/get_competitor.js +6 -4
- package/dist/tools/get_competitor.js.map +1 -1
- package/dist/transports/http.d.ts +8 -1
- package/dist/transports/http.d.ts.map +1 -1
- package/dist/transports/http.js +43 -5
- package/dist/transports/http.js.map +1 -1
- package/dist/types.d.ts +179 -179
- package/dist/types.d.ts.map +1 -1
- package/dist/types.js +45 -36
- package/dist/types.js.map +1 -1
- package/package.json +2 -1
package/dist/types.d.ts
CHANGED
|
@@ -141,10 +141,10 @@ export declare const CompetitorDetail: z.ZodObject<{
|
|
|
141
141
|
name: z.ZodString;
|
|
142
142
|
website: z.ZodString;
|
|
143
143
|
category: z.ZodNullable<z.ZodString>;
|
|
144
|
-
image_icon: z.ZodNullable<z.ZodString
|
|
145
|
-
created_at: z.ZodString
|
|
144
|
+
image_icon: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
145
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
146
146
|
active: z.ZodBoolean;
|
|
147
|
-
social: z.ZodObject<{
|
|
147
|
+
social: z.ZodOptional<z.ZodObject<{
|
|
148
148
|
linkedin: z.ZodNullable<z.ZodString>;
|
|
149
149
|
twitter: z.ZodNullable<z.ZodString>;
|
|
150
150
|
facebook: z.ZodNullable<z.ZodString>;
|
|
@@ -165,8 +165,8 @@ export declare const CompetitorDetail: z.ZodObject<{
|
|
|
165
165
|
instagram: string | null;
|
|
166
166
|
youtube: string | null;
|
|
167
167
|
tiktok: string | null;
|
|
168
|
-
}
|
|
169
|
-
pages: z.ZodObject<{
|
|
168
|
+
}>>;
|
|
169
|
+
pages: z.ZodOptional<z.ZodObject<{
|
|
170
170
|
pricing: z.ZodNullable<z.ZodString>;
|
|
171
171
|
case_studies: z.ZodNullable<z.ZodString>;
|
|
172
172
|
blog: z.ZodNullable<z.ZodString>;
|
|
@@ -193,24 +193,24 @@ export declare const CompetitorDetail: z.ZodObject<{
|
|
|
193
193
|
release_notes: string | null;
|
|
194
194
|
job_listings: string | null;
|
|
195
195
|
shopify: string | null;
|
|
196
|
-
}
|
|
196
|
+
}>>;
|
|
197
197
|
}, "strip", z.ZodTypeAny, {
|
|
198
198
|
id: string;
|
|
199
199
|
name: string;
|
|
200
200
|
website: string;
|
|
201
201
|
category: string | null;
|
|
202
202
|
active: boolean;
|
|
203
|
-
image_icon
|
|
204
|
-
created_at
|
|
205
|
-
social
|
|
203
|
+
image_icon?: string | null | undefined;
|
|
204
|
+
created_at?: string | undefined;
|
|
205
|
+
social?: {
|
|
206
206
|
linkedin: string | null;
|
|
207
207
|
twitter: string | null;
|
|
208
208
|
facebook: string | null;
|
|
209
209
|
instagram: string | null;
|
|
210
210
|
youtube: string | null;
|
|
211
211
|
tiktok: string | null;
|
|
212
|
-
};
|
|
213
|
-
pages
|
|
212
|
+
} | undefined;
|
|
213
|
+
pages?: {
|
|
214
214
|
pricing: string | null;
|
|
215
215
|
events: string | null;
|
|
216
216
|
case_studies: string | null;
|
|
@@ -219,24 +219,24 @@ export declare const CompetitorDetail: z.ZodObject<{
|
|
|
219
219
|
release_notes: string | null;
|
|
220
220
|
job_listings: string | null;
|
|
221
221
|
shopify: string | null;
|
|
222
|
-
};
|
|
222
|
+
} | undefined;
|
|
223
223
|
}, {
|
|
224
224
|
id: string;
|
|
225
225
|
name: string;
|
|
226
226
|
website: string;
|
|
227
227
|
category: string | null;
|
|
228
228
|
active: boolean;
|
|
229
|
-
image_icon
|
|
230
|
-
created_at
|
|
231
|
-
social
|
|
229
|
+
image_icon?: string | null | undefined;
|
|
230
|
+
created_at?: string | undefined;
|
|
231
|
+
social?: {
|
|
232
232
|
linkedin: string | null;
|
|
233
233
|
twitter: string | null;
|
|
234
234
|
facebook: string | null;
|
|
235
235
|
instagram: string | null;
|
|
236
236
|
youtube: string | null;
|
|
237
237
|
tiktok: string | null;
|
|
238
|
-
};
|
|
239
|
-
pages
|
|
238
|
+
} | undefined;
|
|
239
|
+
pages?: {
|
|
240
240
|
pricing: string | null;
|
|
241
241
|
events: string | null;
|
|
242
242
|
case_studies: string | null;
|
|
@@ -245,7 +245,7 @@ export declare const CompetitorDetail: z.ZodObject<{
|
|
|
245
245
|
release_notes: string | null;
|
|
246
246
|
job_listings: string | null;
|
|
247
247
|
shopify: string | null;
|
|
248
|
-
};
|
|
248
|
+
} | undefined;
|
|
249
249
|
}>;
|
|
250
250
|
export type CompetitorDetail = z.infer<typeof CompetitorDetail>;
|
|
251
251
|
export declare const CompetitorListResponse: z.ZodObject<{
|
|
@@ -292,10 +292,10 @@ export declare const CompetitorDetailListResponse: z.ZodObject<{
|
|
|
292
292
|
name: z.ZodString;
|
|
293
293
|
website: z.ZodString;
|
|
294
294
|
category: z.ZodNullable<z.ZodString>;
|
|
295
|
-
image_icon: z.ZodNullable<z.ZodString
|
|
296
|
-
created_at: z.ZodString
|
|
295
|
+
image_icon: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
296
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
297
297
|
active: z.ZodBoolean;
|
|
298
|
-
social: z.ZodObject<{
|
|
298
|
+
social: z.ZodOptional<z.ZodObject<{
|
|
299
299
|
linkedin: z.ZodNullable<z.ZodString>;
|
|
300
300
|
twitter: z.ZodNullable<z.ZodString>;
|
|
301
301
|
facebook: z.ZodNullable<z.ZodString>;
|
|
@@ -316,8 +316,8 @@ export declare const CompetitorDetailListResponse: z.ZodObject<{
|
|
|
316
316
|
instagram: string | null;
|
|
317
317
|
youtube: string | null;
|
|
318
318
|
tiktok: string | null;
|
|
319
|
-
}
|
|
320
|
-
pages: z.ZodObject<{
|
|
319
|
+
}>>;
|
|
320
|
+
pages: z.ZodOptional<z.ZodObject<{
|
|
321
321
|
pricing: z.ZodNullable<z.ZodString>;
|
|
322
322
|
case_studies: z.ZodNullable<z.ZodString>;
|
|
323
323
|
blog: z.ZodNullable<z.ZodString>;
|
|
@@ -344,24 +344,24 @@ export declare const CompetitorDetailListResponse: z.ZodObject<{
|
|
|
344
344
|
release_notes: string | null;
|
|
345
345
|
job_listings: string | null;
|
|
346
346
|
shopify: string | null;
|
|
347
|
-
}
|
|
347
|
+
}>>;
|
|
348
348
|
}, "strip", z.ZodTypeAny, {
|
|
349
349
|
id: string;
|
|
350
350
|
name: string;
|
|
351
351
|
website: string;
|
|
352
352
|
category: string | null;
|
|
353
353
|
active: boolean;
|
|
354
|
-
image_icon
|
|
355
|
-
created_at
|
|
356
|
-
social
|
|
354
|
+
image_icon?: string | null | undefined;
|
|
355
|
+
created_at?: string | undefined;
|
|
356
|
+
social?: {
|
|
357
357
|
linkedin: string | null;
|
|
358
358
|
twitter: string | null;
|
|
359
359
|
facebook: string | null;
|
|
360
360
|
instagram: string | null;
|
|
361
361
|
youtube: string | null;
|
|
362
362
|
tiktok: string | null;
|
|
363
|
-
};
|
|
364
|
-
pages
|
|
363
|
+
} | undefined;
|
|
364
|
+
pages?: {
|
|
365
365
|
pricing: string | null;
|
|
366
366
|
events: string | null;
|
|
367
367
|
case_studies: string | null;
|
|
@@ -370,24 +370,24 @@ export declare const CompetitorDetailListResponse: z.ZodObject<{
|
|
|
370
370
|
release_notes: string | null;
|
|
371
371
|
job_listings: string | null;
|
|
372
372
|
shopify: string | null;
|
|
373
|
-
};
|
|
373
|
+
} | undefined;
|
|
374
374
|
}, {
|
|
375
375
|
id: string;
|
|
376
376
|
name: string;
|
|
377
377
|
website: string;
|
|
378
378
|
category: string | null;
|
|
379
379
|
active: boolean;
|
|
380
|
-
image_icon
|
|
381
|
-
created_at
|
|
382
|
-
social
|
|
380
|
+
image_icon?: string | null | undefined;
|
|
381
|
+
created_at?: string | undefined;
|
|
382
|
+
social?: {
|
|
383
383
|
linkedin: string | null;
|
|
384
384
|
twitter: string | null;
|
|
385
385
|
facebook: string | null;
|
|
386
386
|
instagram: string | null;
|
|
387
387
|
youtube: string | null;
|
|
388
388
|
tiktok: string | null;
|
|
389
|
-
};
|
|
390
|
-
pages
|
|
389
|
+
} | undefined;
|
|
390
|
+
pages?: {
|
|
391
391
|
pricing: string | null;
|
|
392
392
|
events: string | null;
|
|
393
393
|
case_studies: string | null;
|
|
@@ -396,7 +396,7 @@ export declare const CompetitorDetailListResponse: z.ZodObject<{
|
|
|
396
396
|
release_notes: string | null;
|
|
397
397
|
job_listings: string | null;
|
|
398
398
|
shopify: string | null;
|
|
399
|
-
};
|
|
399
|
+
} | undefined;
|
|
400
400
|
}>, "many">;
|
|
401
401
|
}, "strip", z.ZodTypeAny, {
|
|
402
402
|
data: {
|
|
@@ -405,17 +405,17 @@ export declare const CompetitorDetailListResponse: z.ZodObject<{
|
|
|
405
405
|
website: string;
|
|
406
406
|
category: string | null;
|
|
407
407
|
active: boolean;
|
|
408
|
-
image_icon
|
|
409
|
-
created_at
|
|
410
|
-
social
|
|
408
|
+
image_icon?: string | null | undefined;
|
|
409
|
+
created_at?: string | undefined;
|
|
410
|
+
social?: {
|
|
411
411
|
linkedin: string | null;
|
|
412
412
|
twitter: string | null;
|
|
413
413
|
facebook: string | null;
|
|
414
414
|
instagram: string | null;
|
|
415
415
|
youtube: string | null;
|
|
416
416
|
tiktok: string | null;
|
|
417
|
-
};
|
|
418
|
-
pages
|
|
417
|
+
} | undefined;
|
|
418
|
+
pages?: {
|
|
419
419
|
pricing: string | null;
|
|
420
420
|
events: string | null;
|
|
421
421
|
case_studies: string | null;
|
|
@@ -424,7 +424,7 @@ export declare const CompetitorDetailListResponse: z.ZodObject<{
|
|
|
424
424
|
release_notes: string | null;
|
|
425
425
|
job_listings: string | null;
|
|
426
426
|
shopify: string | null;
|
|
427
|
-
};
|
|
427
|
+
} | undefined;
|
|
428
428
|
}[];
|
|
429
429
|
}, {
|
|
430
430
|
data: {
|
|
@@ -433,17 +433,17 @@ export declare const CompetitorDetailListResponse: z.ZodObject<{
|
|
|
433
433
|
website: string;
|
|
434
434
|
category: string | null;
|
|
435
435
|
active: boolean;
|
|
436
|
-
image_icon
|
|
437
|
-
created_at
|
|
438
|
-
social
|
|
436
|
+
image_icon?: string | null | undefined;
|
|
437
|
+
created_at?: string | undefined;
|
|
438
|
+
social?: {
|
|
439
439
|
linkedin: string | null;
|
|
440
440
|
twitter: string | null;
|
|
441
441
|
facebook: string | null;
|
|
442
442
|
instagram: string | null;
|
|
443
443
|
youtube: string | null;
|
|
444
444
|
tiktok: string | null;
|
|
445
|
-
};
|
|
446
|
-
pages
|
|
445
|
+
} | undefined;
|
|
446
|
+
pages?: {
|
|
447
447
|
pricing: string | null;
|
|
448
448
|
events: string | null;
|
|
449
449
|
case_studies: string | null;
|
|
@@ -452,7 +452,7 @@ export declare const CompetitorDetailListResponse: z.ZodObject<{
|
|
|
452
452
|
release_notes: string | null;
|
|
453
453
|
job_listings: string | null;
|
|
454
454
|
shopify: string | null;
|
|
455
|
-
};
|
|
455
|
+
} | undefined;
|
|
456
456
|
}[];
|
|
457
457
|
}>;
|
|
458
458
|
export type CompetitorDetailListResponse = z.infer<typeof CompetitorDetailListResponse>;
|
|
@@ -460,7 +460,7 @@ export declare const BlogPostItem: z.ZodObject<{
|
|
|
460
460
|
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
461
461
|
url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
462
462
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
463
|
-
key_points: z.ZodOptional<z.ZodNullable<z.
|
|
463
|
+
key_points: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
464
464
|
image_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
465
465
|
posted_date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
466
466
|
competitor: z.ZodString;
|
|
@@ -474,7 +474,7 @@ export declare const BlogPostItem: z.ZodObject<{
|
|
|
474
474
|
title?: string | null | undefined;
|
|
475
475
|
url?: string | null | undefined;
|
|
476
476
|
description?: string | null | undefined;
|
|
477
|
-
key_points?: string
|
|
477
|
+
key_points?: string | null | undefined;
|
|
478
478
|
image_url?: string | null | undefined;
|
|
479
479
|
posted_date?: string | null | undefined;
|
|
480
480
|
initial_run?: boolean | null | undefined;
|
|
@@ -485,7 +485,7 @@ export declare const BlogPostItem: z.ZodObject<{
|
|
|
485
485
|
title?: string | null | undefined;
|
|
486
486
|
url?: string | null | undefined;
|
|
487
487
|
description?: string | null | undefined;
|
|
488
|
-
key_points?: string
|
|
488
|
+
key_points?: string | null | undefined;
|
|
489
489
|
image_url?: string | null | undefined;
|
|
490
490
|
posted_date?: string | null | undefined;
|
|
491
491
|
initial_run?: boolean | null | undefined;
|
|
@@ -495,7 +495,7 @@ export declare const PressPostItem: z.ZodObject<{
|
|
|
495
495
|
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
496
496
|
url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
497
497
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
498
|
-
key_points: z.ZodOptional<z.ZodNullable<z.
|
|
498
|
+
key_points: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
499
499
|
image_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
500
500
|
posted_date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
501
501
|
competitor: z.ZodString;
|
|
@@ -509,7 +509,7 @@ export declare const PressPostItem: z.ZodObject<{
|
|
|
509
509
|
title?: string | null | undefined;
|
|
510
510
|
url?: string | null | undefined;
|
|
511
511
|
description?: string | null | undefined;
|
|
512
|
-
key_points?: string
|
|
512
|
+
key_points?: string | null | undefined;
|
|
513
513
|
image_url?: string | null | undefined;
|
|
514
514
|
posted_date?: string | null | undefined;
|
|
515
515
|
initial_run?: boolean | null | undefined;
|
|
@@ -520,7 +520,7 @@ export declare const PressPostItem: z.ZodObject<{
|
|
|
520
520
|
title?: string | null | undefined;
|
|
521
521
|
url?: string | null | undefined;
|
|
522
522
|
description?: string | null | undefined;
|
|
523
|
-
key_points?: string
|
|
523
|
+
key_points?: string | null | undefined;
|
|
524
524
|
image_url?: string | null | undefined;
|
|
525
525
|
posted_date?: string | null | undefined;
|
|
526
526
|
initial_run?: boolean | null | undefined;
|
|
@@ -529,7 +529,7 @@ export declare const CaseStudyItem: z.ZodObject<{
|
|
|
529
529
|
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
530
530
|
url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
531
531
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
532
|
-
key_points: z.ZodOptional<z.ZodNullable<z.
|
|
532
|
+
key_points: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
533
533
|
image_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
534
534
|
posted_date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
535
535
|
competitor: z.ZodString;
|
|
@@ -543,7 +543,7 @@ export declare const CaseStudyItem: z.ZodObject<{
|
|
|
543
543
|
title?: string | null | undefined;
|
|
544
544
|
url?: string | null | undefined;
|
|
545
545
|
description?: string | null | undefined;
|
|
546
|
-
key_points?: string
|
|
546
|
+
key_points?: string | null | undefined;
|
|
547
547
|
image_url?: string | null | undefined;
|
|
548
548
|
posted_date?: string | null | undefined;
|
|
549
549
|
initial_run?: boolean | null | undefined;
|
|
@@ -554,7 +554,7 @@ export declare const CaseStudyItem: z.ZodObject<{
|
|
|
554
554
|
title?: string | null | undefined;
|
|
555
555
|
url?: string | null | undefined;
|
|
556
556
|
description?: string | null | undefined;
|
|
557
|
-
key_points?: string
|
|
557
|
+
key_points?: string | null | undefined;
|
|
558
558
|
image_url?: string | null | undefined;
|
|
559
559
|
posted_date?: string | null | undefined;
|
|
560
560
|
initial_run?: boolean | null | undefined;
|
|
@@ -601,7 +601,7 @@ export declare const JobListingItem: z.ZodObject<{
|
|
|
601
601
|
}>;
|
|
602
602
|
export type JobListingItem = z.infer<typeof JobListingItem>;
|
|
603
603
|
export declare const PricingItem: z.ZodObject<{
|
|
604
|
-
pricing_data: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
604
|
+
pricing_data: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodRecord<z.ZodString, z.ZodUnknown>, z.ZodArray<z.ZodUnknown, "many">]>>>;
|
|
605
605
|
changes: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
606
606
|
is_live: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
607
607
|
last_updated_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -615,7 +615,7 @@ export declare const PricingItem: z.ZodObject<{
|
|
|
615
615
|
discovered_at: string | null;
|
|
616
616
|
initial_run?: boolean | null | undefined;
|
|
617
617
|
is_live?: boolean | null | undefined;
|
|
618
|
-
pricing_data?: Record<string, unknown> | null | undefined;
|
|
618
|
+
pricing_data?: unknown[] | Record<string, unknown> | null | undefined;
|
|
619
619
|
changes?: string | null | undefined;
|
|
620
620
|
last_updated_at?: string | null | undefined;
|
|
621
621
|
}, {
|
|
@@ -624,7 +624,7 @@ export declare const PricingItem: z.ZodObject<{
|
|
|
624
624
|
discovered_at: string | null;
|
|
625
625
|
initial_run?: boolean | null | undefined;
|
|
626
626
|
is_live?: boolean | null | undefined;
|
|
627
|
-
pricing_data?: Record<string, unknown> | null | undefined;
|
|
627
|
+
pricing_data?: unknown[] | Record<string, unknown> | null | undefined;
|
|
628
628
|
changes?: string | null | undefined;
|
|
629
629
|
last_updated_at?: string | null | undefined;
|
|
630
630
|
}>;
|
|
@@ -857,7 +857,7 @@ export declare const SectionItem: z.ZodUnion<[z.ZodObject<{
|
|
|
857
857
|
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
858
858
|
url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
859
859
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
860
|
-
key_points: z.ZodOptional<z.ZodNullable<z.
|
|
860
|
+
key_points: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
861
861
|
image_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
862
862
|
posted_date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
863
863
|
competitor: z.ZodString;
|
|
@@ -871,7 +871,7 @@ export declare const SectionItem: z.ZodUnion<[z.ZodObject<{
|
|
|
871
871
|
title?: string | null | undefined;
|
|
872
872
|
url?: string | null | undefined;
|
|
873
873
|
description?: string | null | undefined;
|
|
874
|
-
key_points?: string
|
|
874
|
+
key_points?: string | null | undefined;
|
|
875
875
|
image_url?: string | null | undefined;
|
|
876
876
|
posted_date?: string | null | undefined;
|
|
877
877
|
initial_run?: boolean | null | undefined;
|
|
@@ -882,7 +882,7 @@ export declare const SectionItem: z.ZodUnion<[z.ZodObject<{
|
|
|
882
882
|
title?: string | null | undefined;
|
|
883
883
|
url?: string | null | undefined;
|
|
884
884
|
description?: string | null | undefined;
|
|
885
|
-
key_points?: string
|
|
885
|
+
key_points?: string | null | undefined;
|
|
886
886
|
image_url?: string | null | undefined;
|
|
887
887
|
posted_date?: string | null | undefined;
|
|
888
888
|
initial_run?: boolean | null | undefined;
|
|
@@ -926,7 +926,7 @@ export declare const SectionItem: z.ZodUnion<[z.ZodObject<{
|
|
|
926
926
|
added_at?: string | null | undefined;
|
|
927
927
|
removed_at?: string | null | undefined;
|
|
928
928
|
}>, z.ZodObject<{
|
|
929
|
-
pricing_data: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
929
|
+
pricing_data: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodRecord<z.ZodString, z.ZodUnknown>, z.ZodArray<z.ZodUnknown, "many">]>>>;
|
|
930
930
|
changes: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
931
931
|
is_live: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
932
932
|
last_updated_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -940,7 +940,7 @@ export declare const SectionItem: z.ZodUnion<[z.ZodObject<{
|
|
|
940
940
|
discovered_at: string | null;
|
|
941
941
|
initial_run?: boolean | null | undefined;
|
|
942
942
|
is_live?: boolean | null | undefined;
|
|
943
|
-
pricing_data?: Record<string, unknown> | null | undefined;
|
|
943
|
+
pricing_data?: unknown[] | Record<string, unknown> | null | undefined;
|
|
944
944
|
changes?: string | null | undefined;
|
|
945
945
|
last_updated_at?: string | null | undefined;
|
|
946
946
|
}, {
|
|
@@ -949,7 +949,7 @@ export declare const SectionItem: z.ZodUnion<[z.ZodObject<{
|
|
|
949
949
|
discovered_at: string | null;
|
|
950
950
|
initial_run?: boolean | null | undefined;
|
|
951
951
|
is_live?: boolean | null | undefined;
|
|
952
|
-
pricing_data?: Record<string, unknown> | null | undefined;
|
|
952
|
+
pricing_data?: unknown[] | Record<string, unknown> | null | undefined;
|
|
953
953
|
changes?: string | null | undefined;
|
|
954
954
|
last_updated_at?: string | null | undefined;
|
|
955
955
|
}>, z.ZodObject<{
|
|
@@ -1163,7 +1163,7 @@ export declare const CompetitorOverviewItems: z.ZodObject<{
|
|
|
1163
1163
|
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1164
1164
|
url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1165
1165
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1166
|
-
key_points: z.ZodOptional<z.ZodNullable<z.
|
|
1166
|
+
key_points: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1167
1167
|
image_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1168
1168
|
posted_date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1169
1169
|
competitor: z.ZodString;
|
|
@@ -1177,7 +1177,7 @@ export declare const CompetitorOverviewItems: z.ZodObject<{
|
|
|
1177
1177
|
title?: string | null | undefined;
|
|
1178
1178
|
url?: string | null | undefined;
|
|
1179
1179
|
description?: string | null | undefined;
|
|
1180
|
-
key_points?: string
|
|
1180
|
+
key_points?: string | null | undefined;
|
|
1181
1181
|
image_url?: string | null | undefined;
|
|
1182
1182
|
posted_date?: string | null | undefined;
|
|
1183
1183
|
initial_run?: boolean | null | undefined;
|
|
@@ -1188,7 +1188,7 @@ export declare const CompetitorOverviewItems: z.ZodObject<{
|
|
|
1188
1188
|
title?: string | null | undefined;
|
|
1189
1189
|
url?: string | null | undefined;
|
|
1190
1190
|
description?: string | null | undefined;
|
|
1191
|
-
key_points?: string
|
|
1191
|
+
key_points?: string | null | undefined;
|
|
1192
1192
|
image_url?: string | null | undefined;
|
|
1193
1193
|
posted_date?: string | null | undefined;
|
|
1194
1194
|
initial_run?: boolean | null | undefined;
|
|
@@ -1197,7 +1197,7 @@ export declare const CompetitorOverviewItems: z.ZodObject<{
|
|
|
1197
1197
|
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1198
1198
|
url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1199
1199
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1200
|
-
key_points: z.ZodOptional<z.ZodNullable<z.
|
|
1200
|
+
key_points: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1201
1201
|
image_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1202
1202
|
posted_date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1203
1203
|
competitor: z.ZodString;
|
|
@@ -1211,7 +1211,7 @@ export declare const CompetitorOverviewItems: z.ZodObject<{
|
|
|
1211
1211
|
title?: string | null | undefined;
|
|
1212
1212
|
url?: string | null | undefined;
|
|
1213
1213
|
description?: string | null | undefined;
|
|
1214
|
-
key_points?: string
|
|
1214
|
+
key_points?: string | null | undefined;
|
|
1215
1215
|
image_url?: string | null | undefined;
|
|
1216
1216
|
posted_date?: string | null | undefined;
|
|
1217
1217
|
initial_run?: boolean | null | undefined;
|
|
@@ -1222,7 +1222,7 @@ export declare const CompetitorOverviewItems: z.ZodObject<{
|
|
|
1222
1222
|
title?: string | null | undefined;
|
|
1223
1223
|
url?: string | null | undefined;
|
|
1224
1224
|
description?: string | null | undefined;
|
|
1225
|
-
key_points?: string
|
|
1225
|
+
key_points?: string | null | undefined;
|
|
1226
1226
|
image_url?: string | null | undefined;
|
|
1227
1227
|
posted_date?: string | null | undefined;
|
|
1228
1228
|
initial_run?: boolean | null | undefined;
|
|
@@ -1231,7 +1231,7 @@ export declare const CompetitorOverviewItems: z.ZodObject<{
|
|
|
1231
1231
|
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1232
1232
|
url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1233
1233
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1234
|
-
key_points: z.ZodOptional<z.ZodNullable<z.
|
|
1234
|
+
key_points: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1235
1235
|
image_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1236
1236
|
posted_date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1237
1237
|
competitor: z.ZodString;
|
|
@@ -1245,7 +1245,7 @@ export declare const CompetitorOverviewItems: z.ZodObject<{
|
|
|
1245
1245
|
title?: string | null | undefined;
|
|
1246
1246
|
url?: string | null | undefined;
|
|
1247
1247
|
description?: string | null | undefined;
|
|
1248
|
-
key_points?: string
|
|
1248
|
+
key_points?: string | null | undefined;
|
|
1249
1249
|
image_url?: string | null | undefined;
|
|
1250
1250
|
posted_date?: string | null | undefined;
|
|
1251
1251
|
initial_run?: boolean | null | undefined;
|
|
@@ -1256,7 +1256,7 @@ export declare const CompetitorOverviewItems: z.ZodObject<{
|
|
|
1256
1256
|
title?: string | null | undefined;
|
|
1257
1257
|
url?: string | null | undefined;
|
|
1258
1258
|
description?: string | null | undefined;
|
|
1259
|
-
key_points?: string
|
|
1259
|
+
key_points?: string | null | undefined;
|
|
1260
1260
|
image_url?: string | null | undefined;
|
|
1261
1261
|
posted_date?: string | null | undefined;
|
|
1262
1262
|
initial_run?: boolean | null | undefined;
|
|
@@ -1302,7 +1302,7 @@ export declare const CompetitorOverviewItems: z.ZodObject<{
|
|
|
1302
1302
|
removed_at?: string | null | undefined;
|
|
1303
1303
|
}>, "many">;
|
|
1304
1304
|
pricing: z.ZodArray<z.ZodObject<{
|
|
1305
|
-
pricing_data: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
1305
|
+
pricing_data: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodRecord<z.ZodString, z.ZodUnknown>, z.ZodArray<z.ZodUnknown, "many">]>>>;
|
|
1306
1306
|
changes: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1307
1307
|
is_live: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
1308
1308
|
last_updated_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -1316,7 +1316,7 @@ export declare const CompetitorOverviewItems: z.ZodObject<{
|
|
|
1316
1316
|
discovered_at: string | null;
|
|
1317
1317
|
initial_run?: boolean | null | undefined;
|
|
1318
1318
|
is_live?: boolean | null | undefined;
|
|
1319
|
-
pricing_data?: Record<string, unknown> | null | undefined;
|
|
1319
|
+
pricing_data?: unknown[] | Record<string, unknown> | null | undefined;
|
|
1320
1320
|
changes?: string | null | undefined;
|
|
1321
1321
|
last_updated_at?: string | null | undefined;
|
|
1322
1322
|
}, {
|
|
@@ -1325,7 +1325,7 @@ export declare const CompetitorOverviewItems: z.ZodObject<{
|
|
|
1325
1325
|
discovered_at: string | null;
|
|
1326
1326
|
initial_run?: boolean | null | undefined;
|
|
1327
1327
|
is_live?: boolean | null | undefined;
|
|
1328
|
-
pricing_data?: Record<string, unknown> | null | undefined;
|
|
1328
|
+
pricing_data?: unknown[] | Record<string, unknown> | null | undefined;
|
|
1329
1329
|
changes?: string | null | undefined;
|
|
1330
1330
|
last_updated_at?: string | null | undefined;
|
|
1331
1331
|
}>, "many">;
|
|
@@ -1529,7 +1529,7 @@ export declare const CompetitorOverviewItems: z.ZodObject<{
|
|
|
1529
1529
|
title?: string | null | undefined;
|
|
1530
1530
|
url?: string | null | undefined;
|
|
1531
1531
|
description?: string | null | undefined;
|
|
1532
|
-
key_points?: string
|
|
1532
|
+
key_points?: string | null | undefined;
|
|
1533
1533
|
image_url?: string | null | undefined;
|
|
1534
1534
|
posted_date?: string | null | undefined;
|
|
1535
1535
|
initial_run?: boolean | null | undefined;
|
|
@@ -1541,7 +1541,7 @@ export declare const CompetitorOverviewItems: z.ZodObject<{
|
|
|
1541
1541
|
title?: string | null | undefined;
|
|
1542
1542
|
url?: string | null | undefined;
|
|
1543
1543
|
description?: string | null | undefined;
|
|
1544
|
-
key_points?: string
|
|
1544
|
+
key_points?: string | null | undefined;
|
|
1545
1545
|
image_url?: string | null | undefined;
|
|
1546
1546
|
posted_date?: string | null | undefined;
|
|
1547
1547
|
initial_run?: boolean | null | undefined;
|
|
@@ -1566,7 +1566,7 @@ export declare const CompetitorOverviewItems: z.ZodObject<{
|
|
|
1566
1566
|
discovered_at: string | null;
|
|
1567
1567
|
initial_run?: boolean | null | undefined;
|
|
1568
1568
|
is_live?: boolean | null | undefined;
|
|
1569
|
-
pricing_data?: Record<string, unknown> | null | undefined;
|
|
1569
|
+
pricing_data?: unknown[] | Record<string, unknown> | null | undefined;
|
|
1570
1570
|
changes?: string | null | undefined;
|
|
1571
1571
|
last_updated_at?: string | null | undefined;
|
|
1572
1572
|
}[];
|
|
@@ -1577,7 +1577,7 @@ export declare const CompetitorOverviewItems: z.ZodObject<{
|
|
|
1577
1577
|
title?: string | null | undefined;
|
|
1578
1578
|
url?: string | null | undefined;
|
|
1579
1579
|
description?: string | null | undefined;
|
|
1580
|
-
key_points?: string
|
|
1580
|
+
key_points?: string | null | undefined;
|
|
1581
1581
|
image_url?: string | null | undefined;
|
|
1582
1582
|
posted_date?: string | null | undefined;
|
|
1583
1583
|
initial_run?: boolean | null | undefined;
|
|
@@ -1658,7 +1658,7 @@ export declare const CompetitorOverviewItems: z.ZodObject<{
|
|
|
1658
1658
|
title?: string | null | undefined;
|
|
1659
1659
|
url?: string | null | undefined;
|
|
1660
1660
|
description?: string | null | undefined;
|
|
1661
|
-
key_points?: string
|
|
1661
|
+
key_points?: string | null | undefined;
|
|
1662
1662
|
image_url?: string | null | undefined;
|
|
1663
1663
|
posted_date?: string | null | undefined;
|
|
1664
1664
|
initial_run?: boolean | null | undefined;
|
|
@@ -1670,7 +1670,7 @@ export declare const CompetitorOverviewItems: z.ZodObject<{
|
|
|
1670
1670
|
title?: string | null | undefined;
|
|
1671
1671
|
url?: string | null | undefined;
|
|
1672
1672
|
description?: string | null | undefined;
|
|
1673
|
-
key_points?: string
|
|
1673
|
+
key_points?: string | null | undefined;
|
|
1674
1674
|
image_url?: string | null | undefined;
|
|
1675
1675
|
posted_date?: string | null | undefined;
|
|
1676
1676
|
initial_run?: boolean | null | undefined;
|
|
@@ -1695,7 +1695,7 @@ export declare const CompetitorOverviewItems: z.ZodObject<{
|
|
|
1695
1695
|
discovered_at: string | null;
|
|
1696
1696
|
initial_run?: boolean | null | undefined;
|
|
1697
1697
|
is_live?: boolean | null | undefined;
|
|
1698
|
-
pricing_data?: Record<string, unknown> | null | undefined;
|
|
1698
|
+
pricing_data?: unknown[] | Record<string, unknown> | null | undefined;
|
|
1699
1699
|
changes?: string | null | undefined;
|
|
1700
1700
|
last_updated_at?: string | null | undefined;
|
|
1701
1701
|
}[];
|
|
@@ -1706,7 +1706,7 @@ export declare const CompetitorOverviewItems: z.ZodObject<{
|
|
|
1706
1706
|
title?: string | null | undefined;
|
|
1707
1707
|
url?: string | null | undefined;
|
|
1708
1708
|
description?: string | null | undefined;
|
|
1709
|
-
key_points?: string
|
|
1709
|
+
key_points?: string | null | undefined;
|
|
1710
1710
|
image_url?: string | null | undefined;
|
|
1711
1711
|
posted_date?: string | null | undefined;
|
|
1712
1712
|
initial_run?: boolean | null | undefined;
|
|
@@ -1844,7 +1844,7 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
|
|
|
1844
1844
|
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1845
1845
|
url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1846
1846
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1847
|
-
key_points: z.ZodOptional<z.ZodNullable<z.
|
|
1847
|
+
key_points: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1848
1848
|
image_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1849
1849
|
posted_date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1850
1850
|
competitor: z.ZodString;
|
|
@@ -1858,7 +1858,7 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
|
|
|
1858
1858
|
title?: string | null | undefined;
|
|
1859
1859
|
url?: string | null | undefined;
|
|
1860
1860
|
description?: string | null | undefined;
|
|
1861
|
-
key_points?: string
|
|
1861
|
+
key_points?: string | null | undefined;
|
|
1862
1862
|
image_url?: string | null | undefined;
|
|
1863
1863
|
posted_date?: string | null | undefined;
|
|
1864
1864
|
initial_run?: boolean | null | undefined;
|
|
@@ -1869,7 +1869,7 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
|
|
|
1869
1869
|
title?: string | null | undefined;
|
|
1870
1870
|
url?: string | null | undefined;
|
|
1871
1871
|
description?: string | null | undefined;
|
|
1872
|
-
key_points?: string
|
|
1872
|
+
key_points?: string | null | undefined;
|
|
1873
1873
|
image_url?: string | null | undefined;
|
|
1874
1874
|
posted_date?: string | null | undefined;
|
|
1875
1875
|
initial_run?: boolean | null | undefined;
|
|
@@ -1878,7 +1878,7 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
|
|
|
1878
1878
|
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1879
1879
|
url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1880
1880
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1881
|
-
key_points: z.ZodOptional<z.ZodNullable<z.
|
|
1881
|
+
key_points: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1882
1882
|
image_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1883
1883
|
posted_date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1884
1884
|
competitor: z.ZodString;
|
|
@@ -1892,7 +1892,7 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
|
|
|
1892
1892
|
title?: string | null | undefined;
|
|
1893
1893
|
url?: string | null | undefined;
|
|
1894
1894
|
description?: string | null | undefined;
|
|
1895
|
-
key_points?: string
|
|
1895
|
+
key_points?: string | null | undefined;
|
|
1896
1896
|
image_url?: string | null | undefined;
|
|
1897
1897
|
posted_date?: string | null | undefined;
|
|
1898
1898
|
initial_run?: boolean | null | undefined;
|
|
@@ -1903,7 +1903,7 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
|
|
|
1903
1903
|
title?: string | null | undefined;
|
|
1904
1904
|
url?: string | null | undefined;
|
|
1905
1905
|
description?: string | null | undefined;
|
|
1906
|
-
key_points?: string
|
|
1906
|
+
key_points?: string | null | undefined;
|
|
1907
1907
|
image_url?: string | null | undefined;
|
|
1908
1908
|
posted_date?: string | null | undefined;
|
|
1909
1909
|
initial_run?: boolean | null | undefined;
|
|
@@ -1912,7 +1912,7 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
|
|
|
1912
1912
|
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1913
1913
|
url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1914
1914
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1915
|
-
key_points: z.ZodOptional<z.ZodNullable<z.
|
|
1915
|
+
key_points: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1916
1916
|
image_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1917
1917
|
posted_date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1918
1918
|
competitor: z.ZodString;
|
|
@@ -1926,7 +1926,7 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
|
|
|
1926
1926
|
title?: string | null | undefined;
|
|
1927
1927
|
url?: string | null | undefined;
|
|
1928
1928
|
description?: string | null | undefined;
|
|
1929
|
-
key_points?: string
|
|
1929
|
+
key_points?: string | null | undefined;
|
|
1930
1930
|
image_url?: string | null | undefined;
|
|
1931
1931
|
posted_date?: string | null | undefined;
|
|
1932
1932
|
initial_run?: boolean | null | undefined;
|
|
@@ -1937,7 +1937,7 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
|
|
|
1937
1937
|
title?: string | null | undefined;
|
|
1938
1938
|
url?: string | null | undefined;
|
|
1939
1939
|
description?: string | null | undefined;
|
|
1940
|
-
key_points?: string
|
|
1940
|
+
key_points?: string | null | undefined;
|
|
1941
1941
|
image_url?: string | null | undefined;
|
|
1942
1942
|
posted_date?: string | null | undefined;
|
|
1943
1943
|
initial_run?: boolean | null | undefined;
|
|
@@ -1983,7 +1983,7 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
|
|
|
1983
1983
|
removed_at?: string | null | undefined;
|
|
1984
1984
|
}>, "many">;
|
|
1985
1985
|
pricing: z.ZodArray<z.ZodObject<{
|
|
1986
|
-
pricing_data: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
1986
|
+
pricing_data: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodRecord<z.ZodString, z.ZodUnknown>, z.ZodArray<z.ZodUnknown, "many">]>>>;
|
|
1987
1987
|
changes: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1988
1988
|
is_live: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
1989
1989
|
last_updated_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -1997,7 +1997,7 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
|
|
|
1997
1997
|
discovered_at: string | null;
|
|
1998
1998
|
initial_run?: boolean | null | undefined;
|
|
1999
1999
|
is_live?: boolean | null | undefined;
|
|
2000
|
-
pricing_data?: Record<string, unknown> | null | undefined;
|
|
2000
|
+
pricing_data?: unknown[] | Record<string, unknown> | null | undefined;
|
|
2001
2001
|
changes?: string | null | undefined;
|
|
2002
2002
|
last_updated_at?: string | null | undefined;
|
|
2003
2003
|
}, {
|
|
@@ -2006,7 +2006,7 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
|
|
|
2006
2006
|
discovered_at: string | null;
|
|
2007
2007
|
initial_run?: boolean | null | undefined;
|
|
2008
2008
|
is_live?: boolean | null | undefined;
|
|
2009
|
-
pricing_data?: Record<string, unknown> | null | undefined;
|
|
2009
|
+
pricing_data?: unknown[] | Record<string, unknown> | null | undefined;
|
|
2010
2010
|
changes?: string | null | undefined;
|
|
2011
2011
|
last_updated_at?: string | null | undefined;
|
|
2012
2012
|
}>, "many">;
|
|
@@ -2210,7 +2210,7 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
|
|
|
2210
2210
|
title?: string | null | undefined;
|
|
2211
2211
|
url?: string | null | undefined;
|
|
2212
2212
|
description?: string | null | undefined;
|
|
2213
|
-
key_points?: string
|
|
2213
|
+
key_points?: string | null | undefined;
|
|
2214
2214
|
image_url?: string | null | undefined;
|
|
2215
2215
|
posted_date?: string | null | undefined;
|
|
2216
2216
|
initial_run?: boolean | null | undefined;
|
|
@@ -2222,7 +2222,7 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
|
|
|
2222
2222
|
title?: string | null | undefined;
|
|
2223
2223
|
url?: string | null | undefined;
|
|
2224
2224
|
description?: string | null | undefined;
|
|
2225
|
-
key_points?: string
|
|
2225
|
+
key_points?: string | null | undefined;
|
|
2226
2226
|
image_url?: string | null | undefined;
|
|
2227
2227
|
posted_date?: string | null | undefined;
|
|
2228
2228
|
initial_run?: boolean | null | undefined;
|
|
@@ -2247,7 +2247,7 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
|
|
|
2247
2247
|
discovered_at: string | null;
|
|
2248
2248
|
initial_run?: boolean | null | undefined;
|
|
2249
2249
|
is_live?: boolean | null | undefined;
|
|
2250
|
-
pricing_data?: Record<string, unknown> | null | undefined;
|
|
2250
|
+
pricing_data?: unknown[] | Record<string, unknown> | null | undefined;
|
|
2251
2251
|
changes?: string | null | undefined;
|
|
2252
2252
|
last_updated_at?: string | null | undefined;
|
|
2253
2253
|
}[];
|
|
@@ -2258,7 +2258,7 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
|
|
|
2258
2258
|
title?: string | null | undefined;
|
|
2259
2259
|
url?: string | null | undefined;
|
|
2260
2260
|
description?: string | null | undefined;
|
|
2261
|
-
key_points?: string
|
|
2261
|
+
key_points?: string | null | undefined;
|
|
2262
2262
|
image_url?: string | null | undefined;
|
|
2263
2263
|
posted_date?: string | null | undefined;
|
|
2264
2264
|
initial_run?: boolean | null | undefined;
|
|
@@ -2339,7 +2339,7 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
|
|
|
2339
2339
|
title?: string | null | undefined;
|
|
2340
2340
|
url?: string | null | undefined;
|
|
2341
2341
|
description?: string | null | undefined;
|
|
2342
|
-
key_points?: string
|
|
2342
|
+
key_points?: string | null | undefined;
|
|
2343
2343
|
image_url?: string | null | undefined;
|
|
2344
2344
|
posted_date?: string | null | undefined;
|
|
2345
2345
|
initial_run?: boolean | null | undefined;
|
|
@@ -2351,7 +2351,7 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
|
|
|
2351
2351
|
title?: string | null | undefined;
|
|
2352
2352
|
url?: string | null | undefined;
|
|
2353
2353
|
description?: string | null | undefined;
|
|
2354
|
-
key_points?: string
|
|
2354
|
+
key_points?: string | null | undefined;
|
|
2355
2355
|
image_url?: string | null | undefined;
|
|
2356
2356
|
posted_date?: string | null | undefined;
|
|
2357
2357
|
initial_run?: boolean | null | undefined;
|
|
@@ -2376,7 +2376,7 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
|
|
|
2376
2376
|
discovered_at: string | null;
|
|
2377
2377
|
initial_run?: boolean | null | undefined;
|
|
2378
2378
|
is_live?: boolean | null | undefined;
|
|
2379
|
-
pricing_data?: Record<string, unknown> | null | undefined;
|
|
2379
|
+
pricing_data?: unknown[] | Record<string, unknown> | null | undefined;
|
|
2380
2380
|
changes?: string | null | undefined;
|
|
2381
2381
|
last_updated_at?: string | null | undefined;
|
|
2382
2382
|
}[];
|
|
@@ -2387,7 +2387,7 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
|
|
|
2387
2387
|
title?: string | null | undefined;
|
|
2388
2388
|
url?: string | null | undefined;
|
|
2389
2389
|
description?: string | null | undefined;
|
|
2390
|
-
key_points?: string
|
|
2390
|
+
key_points?: string | null | undefined;
|
|
2391
2391
|
image_url?: string | null | undefined;
|
|
2392
2392
|
posted_date?: string | null | undefined;
|
|
2393
2393
|
initial_run?: boolean | null | undefined;
|
|
@@ -2494,7 +2494,7 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
|
|
|
2494
2494
|
title?: string | null | undefined;
|
|
2495
2495
|
url?: string | null | undefined;
|
|
2496
2496
|
description?: string | null | undefined;
|
|
2497
|
-
key_points?: string
|
|
2497
|
+
key_points?: string | null | undefined;
|
|
2498
2498
|
image_url?: string | null | undefined;
|
|
2499
2499
|
posted_date?: string | null | undefined;
|
|
2500
2500
|
initial_run?: boolean | null | undefined;
|
|
@@ -2506,7 +2506,7 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
|
|
|
2506
2506
|
title?: string | null | undefined;
|
|
2507
2507
|
url?: string | null | undefined;
|
|
2508
2508
|
description?: string | null | undefined;
|
|
2509
|
-
key_points?: string
|
|
2509
|
+
key_points?: string | null | undefined;
|
|
2510
2510
|
image_url?: string | null | undefined;
|
|
2511
2511
|
posted_date?: string | null | undefined;
|
|
2512
2512
|
initial_run?: boolean | null | undefined;
|
|
@@ -2531,7 +2531,7 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
|
|
|
2531
2531
|
discovered_at: string | null;
|
|
2532
2532
|
initial_run?: boolean | null | undefined;
|
|
2533
2533
|
is_live?: boolean | null | undefined;
|
|
2534
|
-
pricing_data?: Record<string, unknown> | null | undefined;
|
|
2534
|
+
pricing_data?: unknown[] | Record<string, unknown> | null | undefined;
|
|
2535
2535
|
changes?: string | null | undefined;
|
|
2536
2536
|
last_updated_at?: string | null | undefined;
|
|
2537
2537
|
}[];
|
|
@@ -2542,7 +2542,7 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
|
|
|
2542
2542
|
title?: string | null | undefined;
|
|
2543
2543
|
url?: string | null | undefined;
|
|
2544
2544
|
description?: string | null | undefined;
|
|
2545
|
-
key_points?: string
|
|
2545
|
+
key_points?: string | null | undefined;
|
|
2546
2546
|
image_url?: string | null | undefined;
|
|
2547
2547
|
posted_date?: string | null | undefined;
|
|
2548
2548
|
initial_run?: boolean | null | undefined;
|
|
@@ -2649,7 +2649,7 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
|
|
|
2649
2649
|
title?: string | null | undefined;
|
|
2650
2650
|
url?: string | null | undefined;
|
|
2651
2651
|
description?: string | null | undefined;
|
|
2652
|
-
key_points?: string
|
|
2652
|
+
key_points?: string | null | undefined;
|
|
2653
2653
|
image_url?: string | null | undefined;
|
|
2654
2654
|
posted_date?: string | null | undefined;
|
|
2655
2655
|
initial_run?: boolean | null | undefined;
|
|
@@ -2661,7 +2661,7 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
|
|
|
2661
2661
|
title?: string | null | undefined;
|
|
2662
2662
|
url?: string | null | undefined;
|
|
2663
2663
|
description?: string | null | undefined;
|
|
2664
|
-
key_points?: string
|
|
2664
|
+
key_points?: string | null | undefined;
|
|
2665
2665
|
image_url?: string | null | undefined;
|
|
2666
2666
|
posted_date?: string | null | undefined;
|
|
2667
2667
|
initial_run?: boolean | null | undefined;
|
|
@@ -2686,7 +2686,7 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
|
|
|
2686
2686
|
discovered_at: string | null;
|
|
2687
2687
|
initial_run?: boolean | null | undefined;
|
|
2688
2688
|
is_live?: boolean | null | undefined;
|
|
2689
|
-
pricing_data?: Record<string, unknown> | null | undefined;
|
|
2689
|
+
pricing_data?: unknown[] | Record<string, unknown> | null | undefined;
|
|
2690
2690
|
changes?: string | null | undefined;
|
|
2691
2691
|
last_updated_at?: string | null | undefined;
|
|
2692
2692
|
}[];
|
|
@@ -2697,7 +2697,7 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
|
|
|
2697
2697
|
title?: string | null | undefined;
|
|
2698
2698
|
url?: string | null | undefined;
|
|
2699
2699
|
description?: string | null | undefined;
|
|
2700
|
-
key_points?: string
|
|
2700
|
+
key_points?: string | null | undefined;
|
|
2701
2701
|
image_url?: string | null | undefined;
|
|
2702
2702
|
posted_date?: string | null | undefined;
|
|
2703
2703
|
initial_run?: boolean | null | undefined;
|
|
@@ -2806,7 +2806,7 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
|
|
|
2806
2806
|
title?: string | null | undefined;
|
|
2807
2807
|
url?: string | null | undefined;
|
|
2808
2808
|
description?: string | null | undefined;
|
|
2809
|
-
key_points?: string
|
|
2809
|
+
key_points?: string | null | undefined;
|
|
2810
2810
|
image_url?: string | null | undefined;
|
|
2811
2811
|
posted_date?: string | null | undefined;
|
|
2812
2812
|
initial_run?: boolean | null | undefined;
|
|
@@ -2818,7 +2818,7 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
|
|
|
2818
2818
|
title?: string | null | undefined;
|
|
2819
2819
|
url?: string | null | undefined;
|
|
2820
2820
|
description?: string | null | undefined;
|
|
2821
|
-
key_points?: string
|
|
2821
|
+
key_points?: string | null | undefined;
|
|
2822
2822
|
image_url?: string | null | undefined;
|
|
2823
2823
|
posted_date?: string | null | undefined;
|
|
2824
2824
|
initial_run?: boolean | null | undefined;
|
|
@@ -2843,7 +2843,7 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
|
|
|
2843
2843
|
discovered_at: string | null;
|
|
2844
2844
|
initial_run?: boolean | null | undefined;
|
|
2845
2845
|
is_live?: boolean | null | undefined;
|
|
2846
|
-
pricing_data?: Record<string, unknown> | null | undefined;
|
|
2846
|
+
pricing_data?: unknown[] | Record<string, unknown> | null | undefined;
|
|
2847
2847
|
changes?: string | null | undefined;
|
|
2848
2848
|
last_updated_at?: string | null | undefined;
|
|
2849
2849
|
}[];
|
|
@@ -2854,7 +2854,7 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
|
|
|
2854
2854
|
title?: string | null | undefined;
|
|
2855
2855
|
url?: string | null | undefined;
|
|
2856
2856
|
description?: string | null | undefined;
|
|
2857
|
-
key_points?: string
|
|
2857
|
+
key_points?: string | null | undefined;
|
|
2858
2858
|
image_url?: string | null | undefined;
|
|
2859
2859
|
posted_date?: string | null | undefined;
|
|
2860
2860
|
initial_run?: boolean | null | undefined;
|
|
@@ -2963,7 +2963,7 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
|
|
|
2963
2963
|
title?: string | null | undefined;
|
|
2964
2964
|
url?: string | null | undefined;
|
|
2965
2965
|
description?: string | null | undefined;
|
|
2966
|
-
key_points?: string
|
|
2966
|
+
key_points?: string | null | undefined;
|
|
2967
2967
|
image_url?: string | null | undefined;
|
|
2968
2968
|
posted_date?: string | null | undefined;
|
|
2969
2969
|
initial_run?: boolean | null | undefined;
|
|
@@ -2975,7 +2975,7 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
|
|
|
2975
2975
|
title?: string | null | undefined;
|
|
2976
2976
|
url?: string | null | undefined;
|
|
2977
2977
|
description?: string | null | undefined;
|
|
2978
|
-
key_points?: string
|
|
2978
|
+
key_points?: string | null | undefined;
|
|
2979
2979
|
image_url?: string | null | undefined;
|
|
2980
2980
|
posted_date?: string | null | undefined;
|
|
2981
2981
|
initial_run?: boolean | null | undefined;
|
|
@@ -3000,7 +3000,7 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
|
|
|
3000
3000
|
discovered_at: string | null;
|
|
3001
3001
|
initial_run?: boolean | null | undefined;
|
|
3002
3002
|
is_live?: boolean | null | undefined;
|
|
3003
|
-
pricing_data?: Record<string, unknown> | null | undefined;
|
|
3003
|
+
pricing_data?: unknown[] | Record<string, unknown> | null | undefined;
|
|
3004
3004
|
changes?: string | null | undefined;
|
|
3005
3005
|
last_updated_at?: string | null | undefined;
|
|
3006
3006
|
}[];
|
|
@@ -3011,7 +3011,7 @@ export declare const CompetitorOverviewResponse: z.ZodObject<{
|
|
|
3011
3011
|
title?: string | null | undefined;
|
|
3012
3012
|
url?: string | null | undefined;
|
|
3013
3013
|
description?: string | null | undefined;
|
|
3014
|
-
key_points?: string
|
|
3014
|
+
key_points?: string | null | undefined;
|
|
3015
3015
|
image_url?: string | null | undefined;
|
|
3016
3016
|
posted_date?: string | null | undefined;
|
|
3017
3017
|
initial_run?: boolean | null | undefined;
|
|
@@ -3118,7 +3118,7 @@ export declare const ActivityItem: z.ZodObject<{
|
|
|
3118
3118
|
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3119
3119
|
url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3120
3120
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3121
|
-
key_points: z.ZodOptional<z.ZodNullable<z.
|
|
3121
|
+
key_points: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3122
3122
|
image_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3123
3123
|
posted_date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3124
3124
|
competitor: z.ZodString;
|
|
@@ -3132,7 +3132,7 @@ export declare const ActivityItem: z.ZodObject<{
|
|
|
3132
3132
|
title?: string | null | undefined;
|
|
3133
3133
|
url?: string | null | undefined;
|
|
3134
3134
|
description?: string | null | undefined;
|
|
3135
|
-
key_points?: string
|
|
3135
|
+
key_points?: string | null | undefined;
|
|
3136
3136
|
image_url?: string | null | undefined;
|
|
3137
3137
|
posted_date?: string | null | undefined;
|
|
3138
3138
|
initial_run?: boolean | null | undefined;
|
|
@@ -3143,7 +3143,7 @@ export declare const ActivityItem: z.ZodObject<{
|
|
|
3143
3143
|
title?: string | null | undefined;
|
|
3144
3144
|
url?: string | null | undefined;
|
|
3145
3145
|
description?: string | null | undefined;
|
|
3146
|
-
key_points?: string
|
|
3146
|
+
key_points?: string | null | undefined;
|
|
3147
3147
|
image_url?: string | null | undefined;
|
|
3148
3148
|
posted_date?: string | null | undefined;
|
|
3149
3149
|
initial_run?: boolean | null | undefined;
|
|
@@ -3187,7 +3187,7 @@ export declare const ActivityItem: z.ZodObject<{
|
|
|
3187
3187
|
added_at?: string | null | undefined;
|
|
3188
3188
|
removed_at?: string | null | undefined;
|
|
3189
3189
|
}>, z.ZodObject<{
|
|
3190
|
-
pricing_data: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
3190
|
+
pricing_data: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodRecord<z.ZodString, z.ZodUnknown>, z.ZodArray<z.ZodUnknown, "many">]>>>;
|
|
3191
3191
|
changes: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3192
3192
|
is_live: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
3193
3193
|
last_updated_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -3201,7 +3201,7 @@ export declare const ActivityItem: z.ZodObject<{
|
|
|
3201
3201
|
discovered_at: string | null;
|
|
3202
3202
|
initial_run?: boolean | null | undefined;
|
|
3203
3203
|
is_live?: boolean | null | undefined;
|
|
3204
|
-
pricing_data?: Record<string, unknown> | null | undefined;
|
|
3204
|
+
pricing_data?: unknown[] | Record<string, unknown> | null | undefined;
|
|
3205
3205
|
changes?: string | null | undefined;
|
|
3206
3206
|
last_updated_at?: string | null | undefined;
|
|
3207
3207
|
}, {
|
|
@@ -3210,7 +3210,7 @@ export declare const ActivityItem: z.ZodObject<{
|
|
|
3210
3210
|
discovered_at: string | null;
|
|
3211
3211
|
initial_run?: boolean | null | undefined;
|
|
3212
3212
|
is_live?: boolean | null | undefined;
|
|
3213
|
-
pricing_data?: Record<string, unknown> | null | undefined;
|
|
3213
|
+
pricing_data?: unknown[] | Record<string, unknown> | null | undefined;
|
|
3214
3214
|
changes?: string | null | undefined;
|
|
3215
3215
|
last_updated_at?: string | null | undefined;
|
|
3216
3216
|
}>, z.ZodObject<{
|
|
@@ -3427,7 +3427,7 @@ export declare const ActivityItem: z.ZodObject<{
|
|
|
3427
3427
|
title?: string | null | undefined;
|
|
3428
3428
|
url?: string | null | undefined;
|
|
3429
3429
|
description?: string | null | undefined;
|
|
3430
|
-
key_points?: string
|
|
3430
|
+
key_points?: string | null | undefined;
|
|
3431
3431
|
image_url?: string | null | undefined;
|
|
3432
3432
|
posted_date?: string | null | undefined;
|
|
3433
3433
|
initial_run?: boolean | null | undefined;
|
|
@@ -3450,7 +3450,7 @@ export declare const ActivityItem: z.ZodObject<{
|
|
|
3450
3450
|
discovered_at: string | null;
|
|
3451
3451
|
initial_run?: boolean | null | undefined;
|
|
3452
3452
|
is_live?: boolean | null | undefined;
|
|
3453
|
-
pricing_data?: Record<string, unknown> | null | undefined;
|
|
3453
|
+
pricing_data?: unknown[] | Record<string, unknown> | null | undefined;
|
|
3454
3454
|
changes?: string | null | undefined;
|
|
3455
3455
|
last_updated_at?: string | null | undefined;
|
|
3456
3456
|
} | {
|
|
@@ -3538,7 +3538,7 @@ export declare const ActivityItem: z.ZodObject<{
|
|
|
3538
3538
|
title?: string | null | undefined;
|
|
3539
3539
|
url?: string | null | undefined;
|
|
3540
3540
|
description?: string | null | undefined;
|
|
3541
|
-
key_points?: string
|
|
3541
|
+
key_points?: string | null | undefined;
|
|
3542
3542
|
image_url?: string | null | undefined;
|
|
3543
3543
|
posted_date?: string | null | undefined;
|
|
3544
3544
|
initial_run?: boolean | null | undefined;
|
|
@@ -3561,7 +3561,7 @@ export declare const ActivityItem: z.ZodObject<{
|
|
|
3561
3561
|
discovered_at: string | null;
|
|
3562
3562
|
initial_run?: boolean | null | undefined;
|
|
3563
3563
|
is_live?: boolean | null | undefined;
|
|
3564
|
-
pricing_data?: Record<string, unknown> | null | undefined;
|
|
3564
|
+
pricing_data?: unknown[] | Record<string, unknown> | null | undefined;
|
|
3565
3565
|
changes?: string | null | undefined;
|
|
3566
3566
|
last_updated_at?: string | null | undefined;
|
|
3567
3567
|
} | {
|
|
@@ -3662,7 +3662,7 @@ export declare const ActivityListResponse: z.ZodObject<{
|
|
|
3662
3662
|
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3663
3663
|
url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3664
3664
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3665
|
-
key_points: z.ZodOptional<z.ZodNullable<z.
|
|
3665
|
+
key_points: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3666
3666
|
image_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3667
3667
|
posted_date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3668
3668
|
competitor: z.ZodString;
|
|
@@ -3676,7 +3676,7 @@ export declare const ActivityListResponse: z.ZodObject<{
|
|
|
3676
3676
|
title?: string | null | undefined;
|
|
3677
3677
|
url?: string | null | undefined;
|
|
3678
3678
|
description?: string | null | undefined;
|
|
3679
|
-
key_points?: string
|
|
3679
|
+
key_points?: string | null | undefined;
|
|
3680
3680
|
image_url?: string | null | undefined;
|
|
3681
3681
|
posted_date?: string | null | undefined;
|
|
3682
3682
|
initial_run?: boolean | null | undefined;
|
|
@@ -3687,7 +3687,7 @@ export declare const ActivityListResponse: z.ZodObject<{
|
|
|
3687
3687
|
title?: string | null | undefined;
|
|
3688
3688
|
url?: string | null | undefined;
|
|
3689
3689
|
description?: string | null | undefined;
|
|
3690
|
-
key_points?: string
|
|
3690
|
+
key_points?: string | null | undefined;
|
|
3691
3691
|
image_url?: string | null | undefined;
|
|
3692
3692
|
posted_date?: string | null | undefined;
|
|
3693
3693
|
initial_run?: boolean | null | undefined;
|
|
@@ -3731,7 +3731,7 @@ export declare const ActivityListResponse: z.ZodObject<{
|
|
|
3731
3731
|
added_at?: string | null | undefined;
|
|
3732
3732
|
removed_at?: string | null | undefined;
|
|
3733
3733
|
}>, z.ZodObject<{
|
|
3734
|
-
pricing_data: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
3734
|
+
pricing_data: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodRecord<z.ZodString, z.ZodUnknown>, z.ZodArray<z.ZodUnknown, "many">]>>>;
|
|
3735
3735
|
changes: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3736
3736
|
is_live: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
3737
3737
|
last_updated_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -3745,7 +3745,7 @@ export declare const ActivityListResponse: z.ZodObject<{
|
|
|
3745
3745
|
discovered_at: string | null;
|
|
3746
3746
|
initial_run?: boolean | null | undefined;
|
|
3747
3747
|
is_live?: boolean | null | undefined;
|
|
3748
|
-
pricing_data?: Record<string, unknown> | null | undefined;
|
|
3748
|
+
pricing_data?: unknown[] | Record<string, unknown> | null | undefined;
|
|
3749
3749
|
changes?: string | null | undefined;
|
|
3750
3750
|
last_updated_at?: string | null | undefined;
|
|
3751
3751
|
}, {
|
|
@@ -3754,7 +3754,7 @@ export declare const ActivityListResponse: z.ZodObject<{
|
|
|
3754
3754
|
discovered_at: string | null;
|
|
3755
3755
|
initial_run?: boolean | null | undefined;
|
|
3756
3756
|
is_live?: boolean | null | undefined;
|
|
3757
|
-
pricing_data?: Record<string, unknown> | null | undefined;
|
|
3757
|
+
pricing_data?: unknown[] | Record<string, unknown> | null | undefined;
|
|
3758
3758
|
changes?: string | null | undefined;
|
|
3759
3759
|
last_updated_at?: string | null | undefined;
|
|
3760
3760
|
}>, z.ZodObject<{
|
|
@@ -3971,7 +3971,7 @@ export declare const ActivityListResponse: z.ZodObject<{
|
|
|
3971
3971
|
title?: string | null | undefined;
|
|
3972
3972
|
url?: string | null | undefined;
|
|
3973
3973
|
description?: string | null | undefined;
|
|
3974
|
-
key_points?: string
|
|
3974
|
+
key_points?: string | null | undefined;
|
|
3975
3975
|
image_url?: string | null | undefined;
|
|
3976
3976
|
posted_date?: string | null | undefined;
|
|
3977
3977
|
initial_run?: boolean | null | undefined;
|
|
@@ -3994,7 +3994,7 @@ export declare const ActivityListResponse: z.ZodObject<{
|
|
|
3994
3994
|
discovered_at: string | null;
|
|
3995
3995
|
initial_run?: boolean | null | undefined;
|
|
3996
3996
|
is_live?: boolean | null | undefined;
|
|
3997
|
-
pricing_data?: Record<string, unknown> | null | undefined;
|
|
3997
|
+
pricing_data?: unknown[] | Record<string, unknown> | null | undefined;
|
|
3998
3998
|
changes?: string | null | undefined;
|
|
3999
3999
|
last_updated_at?: string | null | undefined;
|
|
4000
4000
|
} | {
|
|
@@ -4082,7 +4082,7 @@ export declare const ActivityListResponse: z.ZodObject<{
|
|
|
4082
4082
|
title?: string | null | undefined;
|
|
4083
4083
|
url?: string | null | undefined;
|
|
4084
4084
|
description?: string | null | undefined;
|
|
4085
|
-
key_points?: string
|
|
4085
|
+
key_points?: string | null | undefined;
|
|
4086
4086
|
image_url?: string | null | undefined;
|
|
4087
4087
|
posted_date?: string | null | undefined;
|
|
4088
4088
|
initial_run?: boolean | null | undefined;
|
|
@@ -4105,7 +4105,7 @@ export declare const ActivityListResponse: z.ZodObject<{
|
|
|
4105
4105
|
discovered_at: string | null;
|
|
4106
4106
|
initial_run?: boolean | null | undefined;
|
|
4107
4107
|
is_live?: boolean | null | undefined;
|
|
4108
|
-
pricing_data?: Record<string, unknown> | null | undefined;
|
|
4108
|
+
pricing_data?: unknown[] | Record<string, unknown> | null | undefined;
|
|
4109
4109
|
changes?: string | null | undefined;
|
|
4110
4110
|
last_updated_at?: string | null | undefined;
|
|
4111
4111
|
} | {
|
|
@@ -4209,7 +4209,7 @@ export declare const ActivityListResponse: z.ZodObject<{
|
|
|
4209
4209
|
title?: string | null | undefined;
|
|
4210
4210
|
url?: string | null | undefined;
|
|
4211
4211
|
description?: string | null | undefined;
|
|
4212
|
-
key_points?: string
|
|
4212
|
+
key_points?: string | null | undefined;
|
|
4213
4213
|
image_url?: string | null | undefined;
|
|
4214
4214
|
posted_date?: string | null | undefined;
|
|
4215
4215
|
initial_run?: boolean | null | undefined;
|
|
@@ -4232,7 +4232,7 @@ export declare const ActivityListResponse: z.ZodObject<{
|
|
|
4232
4232
|
discovered_at: string | null;
|
|
4233
4233
|
initial_run?: boolean | null | undefined;
|
|
4234
4234
|
is_live?: boolean | null | undefined;
|
|
4235
|
-
pricing_data?: Record<string, unknown> | null | undefined;
|
|
4235
|
+
pricing_data?: unknown[] | Record<string, unknown> | null | undefined;
|
|
4236
4236
|
changes?: string | null | undefined;
|
|
4237
4237
|
last_updated_at?: string | null | undefined;
|
|
4238
4238
|
} | {
|
|
@@ -4327,7 +4327,7 @@ export declare const ActivityListResponse: z.ZodObject<{
|
|
|
4327
4327
|
title?: string | null | undefined;
|
|
4328
4328
|
url?: string | null | undefined;
|
|
4329
4329
|
description?: string | null | undefined;
|
|
4330
|
-
key_points?: string
|
|
4330
|
+
key_points?: string | null | undefined;
|
|
4331
4331
|
image_url?: string | null | undefined;
|
|
4332
4332
|
posted_date?: string | null | undefined;
|
|
4333
4333
|
initial_run?: boolean | null | undefined;
|
|
@@ -4350,7 +4350,7 @@ export declare const ActivityListResponse: z.ZodObject<{
|
|
|
4350
4350
|
discovered_at: string | null;
|
|
4351
4351
|
initial_run?: boolean | null | undefined;
|
|
4352
4352
|
is_live?: boolean | null | undefined;
|
|
4353
|
-
pricing_data?: Record<string, unknown> | null | undefined;
|
|
4353
|
+
pricing_data?: unknown[] | Record<string, unknown> | null | undefined;
|
|
4354
4354
|
changes?: string | null | undefined;
|
|
4355
4355
|
last_updated_at?: string | null | undefined;
|
|
4356
4356
|
} | {
|
|
@@ -4455,7 +4455,7 @@ export declare const ActivityDetailResponse: z.ZodObject<{
|
|
|
4455
4455
|
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4456
4456
|
url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4457
4457
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4458
|
-
key_points: z.ZodOptional<z.ZodNullable<z.
|
|
4458
|
+
key_points: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4459
4459
|
image_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4460
4460
|
posted_date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4461
4461
|
competitor: z.ZodString;
|
|
@@ -4469,7 +4469,7 @@ export declare const ActivityDetailResponse: z.ZodObject<{
|
|
|
4469
4469
|
title?: string | null | undefined;
|
|
4470
4470
|
url?: string | null | undefined;
|
|
4471
4471
|
description?: string | null | undefined;
|
|
4472
|
-
key_points?: string
|
|
4472
|
+
key_points?: string | null | undefined;
|
|
4473
4473
|
image_url?: string | null | undefined;
|
|
4474
4474
|
posted_date?: string | null | undefined;
|
|
4475
4475
|
initial_run?: boolean | null | undefined;
|
|
@@ -4480,7 +4480,7 @@ export declare const ActivityDetailResponse: z.ZodObject<{
|
|
|
4480
4480
|
title?: string | null | undefined;
|
|
4481
4481
|
url?: string | null | undefined;
|
|
4482
4482
|
description?: string | null | undefined;
|
|
4483
|
-
key_points?: string
|
|
4483
|
+
key_points?: string | null | undefined;
|
|
4484
4484
|
image_url?: string | null | undefined;
|
|
4485
4485
|
posted_date?: string | null | undefined;
|
|
4486
4486
|
initial_run?: boolean | null | undefined;
|
|
@@ -4524,7 +4524,7 @@ export declare const ActivityDetailResponse: z.ZodObject<{
|
|
|
4524
4524
|
added_at?: string | null | undefined;
|
|
4525
4525
|
removed_at?: string | null | undefined;
|
|
4526
4526
|
}>, z.ZodObject<{
|
|
4527
|
-
pricing_data: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
4527
|
+
pricing_data: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodRecord<z.ZodString, z.ZodUnknown>, z.ZodArray<z.ZodUnknown, "many">]>>>;
|
|
4528
4528
|
changes: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4529
4529
|
is_live: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
4530
4530
|
last_updated_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -4538,7 +4538,7 @@ export declare const ActivityDetailResponse: z.ZodObject<{
|
|
|
4538
4538
|
discovered_at: string | null;
|
|
4539
4539
|
initial_run?: boolean | null | undefined;
|
|
4540
4540
|
is_live?: boolean | null | undefined;
|
|
4541
|
-
pricing_data?: Record<string, unknown> | null | undefined;
|
|
4541
|
+
pricing_data?: unknown[] | Record<string, unknown> | null | undefined;
|
|
4542
4542
|
changes?: string | null | undefined;
|
|
4543
4543
|
last_updated_at?: string | null | undefined;
|
|
4544
4544
|
}, {
|
|
@@ -4547,7 +4547,7 @@ export declare const ActivityDetailResponse: z.ZodObject<{
|
|
|
4547
4547
|
discovered_at: string | null;
|
|
4548
4548
|
initial_run?: boolean | null | undefined;
|
|
4549
4549
|
is_live?: boolean | null | undefined;
|
|
4550
|
-
pricing_data?: Record<string, unknown> | null | undefined;
|
|
4550
|
+
pricing_data?: unknown[] | Record<string, unknown> | null | undefined;
|
|
4551
4551
|
changes?: string | null | undefined;
|
|
4552
4552
|
last_updated_at?: string | null | undefined;
|
|
4553
4553
|
}>, z.ZodObject<{
|
|
@@ -4756,12 +4756,6 @@ export declare const ActivityDetailResponse: z.ZodObject<{
|
|
|
4756
4756
|
initial_run?: boolean | null | undefined;
|
|
4757
4757
|
}>]>;
|
|
4758
4758
|
}, "strip", z.ZodTypeAny, {
|
|
4759
|
-
id: string;
|
|
4760
|
-
competitor: {
|
|
4761
|
-
id: string;
|
|
4762
|
-
name: string | null;
|
|
4763
|
-
};
|
|
4764
|
-
section: "blog-posts" | "press-posts" | "job-listings" | "pricing" | "case-studies" | "linkedin-posts" | "youtube-videos" | "events" | "messaging" | "metrics-claimed" | "logos" | "sitemap-urls";
|
|
4765
4759
|
payload: {
|
|
4766
4760
|
competitor: string;
|
|
4767
4761
|
tags: string[];
|
|
@@ -4769,7 +4763,7 @@ export declare const ActivityDetailResponse: z.ZodObject<{
|
|
|
4769
4763
|
title?: string | null | undefined;
|
|
4770
4764
|
url?: string | null | undefined;
|
|
4771
4765
|
description?: string | null | undefined;
|
|
4772
|
-
key_points?: string
|
|
4766
|
+
key_points?: string | null | undefined;
|
|
4773
4767
|
image_url?: string | null | undefined;
|
|
4774
4768
|
posted_date?: string | null | undefined;
|
|
4775
4769
|
initial_run?: boolean | null | undefined;
|
|
@@ -4792,7 +4786,7 @@ export declare const ActivityDetailResponse: z.ZodObject<{
|
|
|
4792
4786
|
discovered_at: string | null;
|
|
4793
4787
|
initial_run?: boolean | null | undefined;
|
|
4794
4788
|
is_live?: boolean | null | undefined;
|
|
4795
|
-
pricing_data?: Record<string, unknown> | null | undefined;
|
|
4789
|
+
pricing_data?: unknown[] | Record<string, unknown> | null | undefined;
|
|
4796
4790
|
changes?: string | null | undefined;
|
|
4797
4791
|
last_updated_at?: string | null | undefined;
|
|
4798
4792
|
} | {
|
|
@@ -4864,13 +4858,13 @@ export declare const ActivityDetailResponse: z.ZodObject<{
|
|
|
4864
4858
|
url?: string | null | undefined;
|
|
4865
4859
|
initial_run?: boolean | null | undefined;
|
|
4866
4860
|
};
|
|
4867
|
-
}, {
|
|
4868
4861
|
id: string;
|
|
4869
4862
|
competitor: {
|
|
4870
4863
|
id: string;
|
|
4871
4864
|
name: string | null;
|
|
4872
4865
|
};
|
|
4873
4866
|
section: "blog-posts" | "press-posts" | "job-listings" | "pricing" | "case-studies" | "linkedin-posts" | "youtube-videos" | "events" | "messaging" | "metrics-claimed" | "logos" | "sitemap-urls";
|
|
4867
|
+
}, {
|
|
4874
4868
|
payload: {
|
|
4875
4869
|
competitor: string;
|
|
4876
4870
|
tags: string[];
|
|
@@ -4878,7 +4872,7 @@ export declare const ActivityDetailResponse: z.ZodObject<{
|
|
|
4878
4872
|
title?: string | null | undefined;
|
|
4879
4873
|
url?: string | null | undefined;
|
|
4880
4874
|
description?: string | null | undefined;
|
|
4881
|
-
key_points?: string
|
|
4875
|
+
key_points?: string | null | undefined;
|
|
4882
4876
|
image_url?: string | null | undefined;
|
|
4883
4877
|
posted_date?: string | null | undefined;
|
|
4884
4878
|
initial_run?: boolean | null | undefined;
|
|
@@ -4901,7 +4895,7 @@ export declare const ActivityDetailResponse: z.ZodObject<{
|
|
|
4901
4895
|
discovered_at: string | null;
|
|
4902
4896
|
initial_run?: boolean | null | undefined;
|
|
4903
4897
|
is_live?: boolean | null | undefined;
|
|
4904
|
-
pricing_data?: Record<string, unknown> | null | undefined;
|
|
4898
|
+
pricing_data?: unknown[] | Record<string, unknown> | null | undefined;
|
|
4905
4899
|
changes?: string | null | undefined;
|
|
4906
4900
|
last_updated_at?: string | null | undefined;
|
|
4907
4901
|
} | {
|
|
@@ -4973,15 +4967,15 @@ export declare const ActivityDetailResponse: z.ZodObject<{
|
|
|
4973
4967
|
url?: string | null | undefined;
|
|
4974
4968
|
initial_run?: boolean | null | undefined;
|
|
4975
4969
|
};
|
|
4976
|
-
}>;
|
|
4977
|
-
}, "strip", z.ZodTypeAny, {
|
|
4978
|
-
data: {
|
|
4979
4970
|
id: string;
|
|
4980
4971
|
competitor: {
|
|
4981
4972
|
id: string;
|
|
4982
4973
|
name: string | null;
|
|
4983
4974
|
};
|
|
4984
4975
|
section: "blog-posts" | "press-posts" | "job-listings" | "pricing" | "case-studies" | "linkedin-posts" | "youtube-videos" | "events" | "messaging" | "metrics-claimed" | "logos" | "sitemap-urls";
|
|
4976
|
+
}>;
|
|
4977
|
+
}, "strip", z.ZodTypeAny, {
|
|
4978
|
+
data: {
|
|
4985
4979
|
payload: {
|
|
4986
4980
|
competitor: string;
|
|
4987
4981
|
tags: string[];
|
|
@@ -4989,7 +4983,7 @@ export declare const ActivityDetailResponse: z.ZodObject<{
|
|
|
4989
4983
|
title?: string | null | undefined;
|
|
4990
4984
|
url?: string | null | undefined;
|
|
4991
4985
|
description?: string | null | undefined;
|
|
4992
|
-
key_points?: string
|
|
4986
|
+
key_points?: string | null | undefined;
|
|
4993
4987
|
image_url?: string | null | undefined;
|
|
4994
4988
|
posted_date?: string | null | undefined;
|
|
4995
4989
|
initial_run?: boolean | null | undefined;
|
|
@@ -5012,7 +5006,7 @@ export declare const ActivityDetailResponse: z.ZodObject<{
|
|
|
5012
5006
|
discovered_at: string | null;
|
|
5013
5007
|
initial_run?: boolean | null | undefined;
|
|
5014
5008
|
is_live?: boolean | null | undefined;
|
|
5015
|
-
pricing_data?: Record<string, unknown> | null | undefined;
|
|
5009
|
+
pricing_data?: unknown[] | Record<string, unknown> | null | undefined;
|
|
5016
5010
|
changes?: string | null | undefined;
|
|
5017
5011
|
last_updated_at?: string | null | undefined;
|
|
5018
5012
|
} | {
|
|
@@ -5084,15 +5078,15 @@ export declare const ActivityDetailResponse: z.ZodObject<{
|
|
|
5084
5078
|
url?: string | null | undefined;
|
|
5085
5079
|
initial_run?: boolean | null | undefined;
|
|
5086
5080
|
};
|
|
5087
|
-
};
|
|
5088
|
-
}, {
|
|
5089
|
-
data: {
|
|
5090
5081
|
id: string;
|
|
5091
5082
|
competitor: {
|
|
5092
5083
|
id: string;
|
|
5093
5084
|
name: string | null;
|
|
5094
5085
|
};
|
|
5095
5086
|
section: "blog-posts" | "press-posts" | "job-listings" | "pricing" | "case-studies" | "linkedin-posts" | "youtube-videos" | "events" | "messaging" | "metrics-claimed" | "logos" | "sitemap-urls";
|
|
5087
|
+
};
|
|
5088
|
+
}, {
|
|
5089
|
+
data: {
|
|
5096
5090
|
payload: {
|
|
5097
5091
|
competitor: string;
|
|
5098
5092
|
tags: string[];
|
|
@@ -5100,7 +5094,7 @@ export declare const ActivityDetailResponse: z.ZodObject<{
|
|
|
5100
5094
|
title?: string | null | undefined;
|
|
5101
5095
|
url?: string | null | undefined;
|
|
5102
5096
|
description?: string | null | undefined;
|
|
5103
|
-
key_points?: string
|
|
5097
|
+
key_points?: string | null | undefined;
|
|
5104
5098
|
image_url?: string | null | undefined;
|
|
5105
5099
|
posted_date?: string | null | undefined;
|
|
5106
5100
|
initial_run?: boolean | null | undefined;
|
|
@@ -5123,7 +5117,7 @@ export declare const ActivityDetailResponse: z.ZodObject<{
|
|
|
5123
5117
|
discovered_at: string | null;
|
|
5124
5118
|
initial_run?: boolean | null | undefined;
|
|
5125
5119
|
is_live?: boolean | null | undefined;
|
|
5126
|
-
pricing_data?: Record<string, unknown> | null | undefined;
|
|
5120
|
+
pricing_data?: unknown[] | Record<string, unknown> | null | undefined;
|
|
5127
5121
|
changes?: string | null | undefined;
|
|
5128
5122
|
last_updated_at?: string | null | undefined;
|
|
5129
5123
|
} | {
|
|
@@ -5195,6 +5189,12 @@ export declare const ActivityDetailResponse: z.ZodObject<{
|
|
|
5195
5189
|
url?: string | null | undefined;
|
|
5196
5190
|
initial_run?: boolean | null | undefined;
|
|
5197
5191
|
};
|
|
5192
|
+
id: string;
|
|
5193
|
+
competitor: {
|
|
5194
|
+
id: string;
|
|
5195
|
+
name: string | null;
|
|
5196
|
+
};
|
|
5197
|
+
section: "blog-posts" | "press-posts" | "job-listings" | "pricing" | "case-studies" | "linkedin-posts" | "youtube-videos" | "events" | "messaging" | "metrics-claimed" | "logos" | "sitemap-urls";
|
|
5198
5198
|
};
|
|
5199
5199
|
}>;
|
|
5200
5200
|
export type ActivityDetailResponse = z.infer<typeof ActivityDetailResponse>;
|
|
@@ -5981,7 +5981,7 @@ export declare const Workspace: z.ZodObject<{
|
|
|
5981
5981
|
export type Workspace = z.infer<typeof Workspace>;
|
|
5982
5982
|
export declare const MeResponse: z.ZodObject<{
|
|
5983
5983
|
data: z.ZodObject<{
|
|
5984
|
-
key: z.ZodObject<{
|
|
5984
|
+
key: z.ZodNullable<z.ZodObject<{
|
|
5985
5985
|
id: z.ZodString;
|
|
5986
5986
|
name: z.ZodNullable<z.ZodString>;
|
|
5987
5987
|
key_prefix: z.ZodNullable<z.ZodString>;
|
|
@@ -6002,7 +6002,7 @@ export declare const MeResponse: z.ZodObject<{
|
|
|
6002
6002
|
key_prefix: string | null;
|
|
6003
6003
|
scopes: string[];
|
|
6004
6004
|
last_used_at: string | null;
|
|
6005
|
-
}
|
|
6005
|
+
}>>;
|
|
6006
6006
|
workspace: z.ZodNullable<z.ZodObject<{
|
|
6007
6007
|
id: z.ZodString;
|
|
6008
6008
|
name: z.ZodString;
|
|
@@ -6090,7 +6090,7 @@ export declare const MeResponse: z.ZodObject<{
|
|
|
6090
6090
|
key_prefix: string | null;
|
|
6091
6091
|
scopes: string[];
|
|
6092
6092
|
last_used_at: string | null;
|
|
6093
|
-
};
|
|
6093
|
+
} | null;
|
|
6094
6094
|
workspace: {
|
|
6095
6095
|
id: string;
|
|
6096
6096
|
name: string;
|
|
@@ -6118,7 +6118,7 @@ export declare const MeResponse: z.ZodObject<{
|
|
|
6118
6118
|
key_prefix: string | null;
|
|
6119
6119
|
scopes: string[];
|
|
6120
6120
|
last_used_at: string | null;
|
|
6121
|
-
};
|
|
6121
|
+
} | null;
|
|
6122
6122
|
workspace: {
|
|
6123
6123
|
id: string;
|
|
6124
6124
|
name: string;
|
|
@@ -6148,7 +6148,7 @@ export declare const MeResponse: z.ZodObject<{
|
|
|
6148
6148
|
key_prefix: string | null;
|
|
6149
6149
|
scopes: string[];
|
|
6150
6150
|
last_used_at: string | null;
|
|
6151
|
-
};
|
|
6151
|
+
} | null;
|
|
6152
6152
|
workspace: {
|
|
6153
6153
|
id: string;
|
|
6154
6154
|
name: string;
|
|
@@ -6178,7 +6178,7 @@ export declare const MeResponse: z.ZodObject<{
|
|
|
6178
6178
|
key_prefix: string | null;
|
|
6179
6179
|
scopes: string[];
|
|
6180
6180
|
last_used_at: string | null;
|
|
6181
|
-
};
|
|
6181
|
+
} | null;
|
|
6182
6182
|
workspace: {
|
|
6183
6183
|
id: string;
|
|
6184
6184
|
name: string;
|