nosible 0.2.20 → 0.2.21
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/index.cjs +2426 -31
- package/dist/index.cjs.map +5 -5
- package/dist/index.js +2396 -22
- package/dist/index.js.map +5 -5
- package/package.json +1 -1
- package/src/api/index.ts +20 -10
- package/src/api/schemas.ts +2381 -1
- package/src/client.test.ts +46 -0
- package/src/index.ts +61 -1
- package/src/search/search.test.ts +34 -34
- package/src/search/search.ts +41 -21
- package/src/search/searchSet.io.test.ts +16 -16
package/dist/index.cjs
CHANGED
|
@@ -4,38 +4,59 @@ var __defProp = Object.defineProperty;
|
|
|
4
4
|
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
5
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
6
6
|
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
7
|
+
function __accessProp(key) {
|
|
8
|
+
return this[key];
|
|
9
|
+
}
|
|
10
|
+
var __toESMCache_node;
|
|
11
|
+
var __toESMCache_esm;
|
|
7
12
|
var __toESM = (mod, isNodeMode, target) => {
|
|
13
|
+
var canCache = mod != null && typeof mod === "object";
|
|
14
|
+
if (canCache) {
|
|
15
|
+
var cache = isNodeMode ? __toESMCache_node ??= new WeakMap : __toESMCache_esm ??= new WeakMap;
|
|
16
|
+
var cached = cache.get(mod);
|
|
17
|
+
if (cached)
|
|
18
|
+
return cached;
|
|
19
|
+
}
|
|
8
20
|
target = mod != null ? __create(__getProtoOf(mod)) : {};
|
|
9
21
|
const to = isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target;
|
|
10
22
|
for (let key of __getOwnPropNames(mod))
|
|
11
23
|
if (!__hasOwnProp.call(to, key))
|
|
12
24
|
__defProp(to, key, {
|
|
13
|
-
get: (
|
|
25
|
+
get: __accessProp.bind(mod, key),
|
|
14
26
|
enumerable: true
|
|
15
27
|
});
|
|
28
|
+
if (canCache)
|
|
29
|
+
cache.set(mod, to);
|
|
16
30
|
return to;
|
|
17
31
|
};
|
|
18
|
-
var __moduleCache = /* @__PURE__ */ new WeakMap;
|
|
19
32
|
var __toCommonJS = (from) => {
|
|
20
|
-
var entry = __moduleCache.get(from), desc;
|
|
33
|
+
var entry = (__moduleCache ??= new WeakMap).get(from), desc;
|
|
21
34
|
if (entry)
|
|
22
35
|
return entry;
|
|
23
36
|
entry = __defProp({}, "__esModule", { value: true });
|
|
24
|
-
if (from && typeof from === "object" || typeof from === "function")
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
37
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
38
|
+
for (var key of __getOwnPropNames(from))
|
|
39
|
+
if (!__hasOwnProp.call(entry, key))
|
|
40
|
+
__defProp(entry, key, {
|
|
41
|
+
get: __accessProp.bind(from, key),
|
|
42
|
+
enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
|
|
43
|
+
});
|
|
44
|
+
}
|
|
29
45
|
__moduleCache.set(from, entry);
|
|
30
46
|
return entry;
|
|
31
47
|
};
|
|
48
|
+
var __moduleCache;
|
|
49
|
+
var __returnValue = (v) => v;
|
|
50
|
+
function __exportSetter(name, newValue) {
|
|
51
|
+
this[name] = __returnValue.bind(null, newValue);
|
|
52
|
+
}
|
|
32
53
|
var __export = (target, all) => {
|
|
33
54
|
for (var name in all)
|
|
34
55
|
__defProp(target, name, {
|
|
35
56
|
get: all[name],
|
|
36
57
|
enumerable: true,
|
|
37
58
|
configurable: true,
|
|
38
|
-
set: (
|
|
59
|
+
set: __exportSetter.bind(all, name)
|
|
39
60
|
});
|
|
40
61
|
};
|
|
41
62
|
|
|
@@ -43,9 +64,23 @@ var __export = (target, all) => {
|
|
|
43
64
|
var exports_src = {};
|
|
44
65
|
__export(exports_src, {
|
|
45
66
|
userSearchParamsSchema: () => userSearchParamsSchema,
|
|
67
|
+
subIndustryEnum: () => subIndustryEnum,
|
|
46
68
|
snippetSchema: () => snippetSchema,
|
|
69
|
+
sectorEnum: () => sectorEnum,
|
|
47
70
|
scrapeResponseSchema: () => scrapeResponseSchema,
|
|
48
71
|
scrapeFullResSchema: () => scrapeFullResSchema,
|
|
72
|
+
regionEnum: () => regionEnum,
|
|
73
|
+
languageEnum: () => languageEnum,
|
|
74
|
+
industryGroupEnum: () => industryGroupEnum,
|
|
75
|
+
industryEnum: () => industryEnum,
|
|
76
|
+
iabTier4Enum: () => iabTier4Enum,
|
|
77
|
+
iabTier3Enum: () => iabTier3Enum,
|
|
78
|
+
iabTier2Enum: () => iabTier2Enum,
|
|
79
|
+
iabTier1Enum: () => iabTier1Enum,
|
|
80
|
+
countryEnum: () => countryEnum,
|
|
81
|
+
continentEnum: () => continentEnum,
|
|
82
|
+
brandSafetyEnum: () => brandSafetyEnum,
|
|
83
|
+
algorithmEnum: () => algorithmEnum,
|
|
49
84
|
WebPageData: () => WebPageData,
|
|
50
85
|
TopicTrend: () => TopicTrend,
|
|
51
86
|
SearchSet: () => SearchSet,
|
|
@@ -284,7 +319,7 @@ var algorithmEnum = import_zod3.default.enum([
|
|
|
284
319
|
"hybrid-3",
|
|
285
320
|
"company"
|
|
286
321
|
]);
|
|
287
|
-
var brandSafetyEnum = import_zod3.default.enum(["
|
|
322
|
+
var brandSafetyEnum = import_zod3.default.enum(["Safe", "Sensitive", "Unsafe"]);
|
|
288
323
|
var continentEnum = import_zod3.default.enum([
|
|
289
324
|
"Africa",
|
|
290
325
|
"Asia",
|
|
@@ -402,6 +437,2366 @@ var limitsResponseSchema = import_zod3.default.object({
|
|
|
402
437
|
subscription_id: import_zod3.default.string(),
|
|
403
438
|
limits: import_zod3.default.array(limitItemSchema)
|
|
404
439
|
});
|
|
440
|
+
var languageEnum = import_zod3.default.enum([
|
|
441
|
+
"af",
|
|
442
|
+
"am",
|
|
443
|
+
"ar",
|
|
444
|
+
"as",
|
|
445
|
+
"az",
|
|
446
|
+
"be",
|
|
447
|
+
"bg",
|
|
448
|
+
"bn",
|
|
449
|
+
"br",
|
|
450
|
+
"bs",
|
|
451
|
+
"ca",
|
|
452
|
+
"cs",
|
|
453
|
+
"cy",
|
|
454
|
+
"da",
|
|
455
|
+
"de",
|
|
456
|
+
"el",
|
|
457
|
+
"en",
|
|
458
|
+
"eo",
|
|
459
|
+
"es",
|
|
460
|
+
"et",
|
|
461
|
+
"eu",
|
|
462
|
+
"fa",
|
|
463
|
+
"fi",
|
|
464
|
+
"fr",
|
|
465
|
+
"fy",
|
|
466
|
+
"ga",
|
|
467
|
+
"gd",
|
|
468
|
+
"gl",
|
|
469
|
+
"gu",
|
|
470
|
+
"ha",
|
|
471
|
+
"he",
|
|
472
|
+
"hi",
|
|
473
|
+
"hr",
|
|
474
|
+
"hu",
|
|
475
|
+
"hy",
|
|
476
|
+
"id",
|
|
477
|
+
"is",
|
|
478
|
+
"it",
|
|
479
|
+
"ja",
|
|
480
|
+
"jv",
|
|
481
|
+
"ka",
|
|
482
|
+
"kk",
|
|
483
|
+
"km",
|
|
484
|
+
"kn",
|
|
485
|
+
"ko",
|
|
486
|
+
"ku",
|
|
487
|
+
"ky",
|
|
488
|
+
"la",
|
|
489
|
+
"lo",
|
|
490
|
+
"lt",
|
|
491
|
+
"lv",
|
|
492
|
+
"mg",
|
|
493
|
+
"mk",
|
|
494
|
+
"ml",
|
|
495
|
+
"mn",
|
|
496
|
+
"mr",
|
|
497
|
+
"ms",
|
|
498
|
+
"my",
|
|
499
|
+
"ne",
|
|
500
|
+
"nl",
|
|
501
|
+
"no",
|
|
502
|
+
"om",
|
|
503
|
+
"or",
|
|
504
|
+
"pa",
|
|
505
|
+
"pl",
|
|
506
|
+
"ps",
|
|
507
|
+
"pt",
|
|
508
|
+
"ro",
|
|
509
|
+
"ru",
|
|
510
|
+
"sa",
|
|
511
|
+
"sd",
|
|
512
|
+
"sh",
|
|
513
|
+
"si",
|
|
514
|
+
"sk",
|
|
515
|
+
"sl",
|
|
516
|
+
"so",
|
|
517
|
+
"sq",
|
|
518
|
+
"sr",
|
|
519
|
+
"su",
|
|
520
|
+
"sv",
|
|
521
|
+
"sw",
|
|
522
|
+
"ta",
|
|
523
|
+
"te",
|
|
524
|
+
"th",
|
|
525
|
+
"tl",
|
|
526
|
+
"tr",
|
|
527
|
+
"ug",
|
|
528
|
+
"uk",
|
|
529
|
+
"ur",
|
|
530
|
+
"uz",
|
|
531
|
+
"vi",
|
|
532
|
+
"xh",
|
|
533
|
+
"yi",
|
|
534
|
+
"zh"
|
|
535
|
+
]);
|
|
536
|
+
var countryEnum = import_zod3.default.enum([
|
|
537
|
+
"Worldwide",
|
|
538
|
+
"Afghanistan",
|
|
539
|
+
"Albania",
|
|
540
|
+
"Algeria",
|
|
541
|
+
"Andorra",
|
|
542
|
+
"Angola",
|
|
543
|
+
"Antigua and Barbuda",
|
|
544
|
+
"Argentina",
|
|
545
|
+
"Armenia",
|
|
546
|
+
"Australia",
|
|
547
|
+
"Austria",
|
|
548
|
+
"Azerbaijan",
|
|
549
|
+
"Bahamas",
|
|
550
|
+
"Bahrain",
|
|
551
|
+
"Bangladesh",
|
|
552
|
+
"Barbados",
|
|
553
|
+
"Belarus",
|
|
554
|
+
"Belgium",
|
|
555
|
+
"Belize",
|
|
556
|
+
"Benin",
|
|
557
|
+
"Bhutan",
|
|
558
|
+
"Bolivia",
|
|
559
|
+
"Bosnia and Herzegovina",
|
|
560
|
+
"Botswana",
|
|
561
|
+
"Brazil",
|
|
562
|
+
"Brunei",
|
|
563
|
+
"Bulgaria",
|
|
564
|
+
"Burkina Faso",
|
|
565
|
+
"Burundi",
|
|
566
|
+
"Cabo Verde",
|
|
567
|
+
"Cambodia",
|
|
568
|
+
"Cameroon",
|
|
569
|
+
"Canada",
|
|
570
|
+
"Central African Republic",
|
|
571
|
+
"Chad",
|
|
572
|
+
"Chile",
|
|
573
|
+
"China",
|
|
574
|
+
"Colombia",
|
|
575
|
+
"Comoros",
|
|
576
|
+
"Congo (Congo-Brazzaville)",
|
|
577
|
+
"Costa Rica",
|
|
578
|
+
"Croatia",
|
|
579
|
+
"Cuba",
|
|
580
|
+
"Cyprus",
|
|
581
|
+
"Czech Republic",
|
|
582
|
+
"Democratic Republic of the Congo",
|
|
583
|
+
"Denmark",
|
|
584
|
+
"Djibouti",
|
|
585
|
+
"Dominica",
|
|
586
|
+
"Dominican Republic",
|
|
587
|
+
"Ecuador",
|
|
588
|
+
"Egypt",
|
|
589
|
+
"El Salvador",
|
|
590
|
+
"Equatorial Guinea",
|
|
591
|
+
"Eritrea",
|
|
592
|
+
"Estonia",
|
|
593
|
+
"Eswatini",
|
|
594
|
+
"Ethiopia",
|
|
595
|
+
"Fiji",
|
|
596
|
+
"Finland",
|
|
597
|
+
"France",
|
|
598
|
+
"Gabon",
|
|
599
|
+
"Gambia",
|
|
600
|
+
"Georgia",
|
|
601
|
+
"Germany",
|
|
602
|
+
"Ghana",
|
|
603
|
+
"Greece",
|
|
604
|
+
"Grenada",
|
|
605
|
+
"Guatemala",
|
|
606
|
+
"Guinea",
|
|
607
|
+
"Guinea-Bissau",
|
|
608
|
+
"Guyana",
|
|
609
|
+
"Haiti",
|
|
610
|
+
"Honduras",
|
|
611
|
+
"Hungary",
|
|
612
|
+
"Iceland",
|
|
613
|
+
"India",
|
|
614
|
+
"Indonesia",
|
|
615
|
+
"Iran",
|
|
616
|
+
"Iraq",
|
|
617
|
+
"Ireland",
|
|
618
|
+
"Israel",
|
|
619
|
+
"Italy",
|
|
620
|
+
"Jamaica",
|
|
621
|
+
"Japan",
|
|
622
|
+
"Jordan",
|
|
623
|
+
"Kazakhstan",
|
|
624
|
+
"Kenya",
|
|
625
|
+
"Kiribati",
|
|
626
|
+
"Kuwait",
|
|
627
|
+
"Kyrgyzstan",
|
|
628
|
+
"Laos",
|
|
629
|
+
"Latvia",
|
|
630
|
+
"Lebanon",
|
|
631
|
+
"Lesotho",
|
|
632
|
+
"Liberia",
|
|
633
|
+
"Libya",
|
|
634
|
+
"Liechtenstein",
|
|
635
|
+
"Lithuania",
|
|
636
|
+
"Luxembourg",
|
|
637
|
+
"Madagascar",
|
|
638
|
+
"Malawi",
|
|
639
|
+
"Malaysia",
|
|
640
|
+
"Maldives",
|
|
641
|
+
"Mali",
|
|
642
|
+
"Malta",
|
|
643
|
+
"Marshall Islands",
|
|
644
|
+
"Mauritania",
|
|
645
|
+
"Mauritius",
|
|
646
|
+
"Mexico",
|
|
647
|
+
"Micronesia",
|
|
648
|
+
"Moldova",
|
|
649
|
+
"Monaco",
|
|
650
|
+
"Mongolia",
|
|
651
|
+
"Montenegro",
|
|
652
|
+
"Morocco",
|
|
653
|
+
"Mozambique",
|
|
654
|
+
"Myanmar",
|
|
655
|
+
"Namibia",
|
|
656
|
+
"Nauru",
|
|
657
|
+
"Nepal",
|
|
658
|
+
"Netherlands",
|
|
659
|
+
"New Zealand",
|
|
660
|
+
"Nicaragua",
|
|
661
|
+
"Niger",
|
|
662
|
+
"Nigeria",
|
|
663
|
+
"North Korea",
|
|
664
|
+
"North Macedonia",
|
|
665
|
+
"Norway",
|
|
666
|
+
"Oman",
|
|
667
|
+
"Pakistan",
|
|
668
|
+
"Palau",
|
|
669
|
+
"Panama",
|
|
670
|
+
"Papua New Guinea",
|
|
671
|
+
"Paraguay",
|
|
672
|
+
"Peru",
|
|
673
|
+
"Philippines",
|
|
674
|
+
"Poland",
|
|
675
|
+
"Portugal",
|
|
676
|
+
"Qatar",
|
|
677
|
+
"Romania",
|
|
678
|
+
"Russia",
|
|
679
|
+
"Rwanda",
|
|
680
|
+
"Saint Kitts and Nevis",
|
|
681
|
+
"Saint Lucia",
|
|
682
|
+
"Saint Vincent and the Grenadines",
|
|
683
|
+
"Samoa",
|
|
684
|
+
"San Marino",
|
|
685
|
+
"Sao Tome and Principe",
|
|
686
|
+
"Saudi Arabia",
|
|
687
|
+
"Senegal",
|
|
688
|
+
"Serbia",
|
|
689
|
+
"Seychelles",
|
|
690
|
+
"Sierra Leone",
|
|
691
|
+
"Singapore",
|
|
692
|
+
"Slovakia",
|
|
693
|
+
"Slovenia",
|
|
694
|
+
"Solomon Islands",
|
|
695
|
+
"Somalia",
|
|
696
|
+
"South Africa",
|
|
697
|
+
"South Korea",
|
|
698
|
+
"South Sudan",
|
|
699
|
+
"Spain",
|
|
700
|
+
"Sri Lanka",
|
|
701
|
+
"Sudan",
|
|
702
|
+
"Suriname",
|
|
703
|
+
"Sweden",
|
|
704
|
+
"Switzerland",
|
|
705
|
+
"Syria",
|
|
706
|
+
"Taiwan",
|
|
707
|
+
"Tajikistan",
|
|
708
|
+
"Tanzania",
|
|
709
|
+
"Thailand",
|
|
710
|
+
"Timor-Leste",
|
|
711
|
+
"Togo",
|
|
712
|
+
"Tonga",
|
|
713
|
+
"Trinidad and Tobago",
|
|
714
|
+
"Tunisia",
|
|
715
|
+
"Turkey",
|
|
716
|
+
"Turkmenistan",
|
|
717
|
+
"Tuvalu",
|
|
718
|
+
"Uganda",
|
|
719
|
+
"Ukraine",
|
|
720
|
+
"United Arab Emirates",
|
|
721
|
+
"United Kingdom",
|
|
722
|
+
"United States",
|
|
723
|
+
"Uruguay",
|
|
724
|
+
"Uzbekistan",
|
|
725
|
+
"Vanuatu",
|
|
726
|
+
"Vatican City",
|
|
727
|
+
"Venezuela",
|
|
728
|
+
"Vietnam",
|
|
729
|
+
"Yemen",
|
|
730
|
+
"Zambia",
|
|
731
|
+
"Zimbabwe"
|
|
732
|
+
]);
|
|
733
|
+
var sectorEnum = import_zod3.default.enum([
|
|
734
|
+
"Other",
|
|
735
|
+
"Communication Services",
|
|
736
|
+
"Consumer Discretionary",
|
|
737
|
+
"Consumer Staples",
|
|
738
|
+
"Energy",
|
|
739
|
+
"Financials",
|
|
740
|
+
"Health Care",
|
|
741
|
+
"Industrials",
|
|
742
|
+
"Information Technology",
|
|
743
|
+
"Materials",
|
|
744
|
+
"Real Estate",
|
|
745
|
+
"Utilities"
|
|
746
|
+
]);
|
|
747
|
+
var industryGroupEnum = import_zod3.default.enum([
|
|
748
|
+
"Other",
|
|
749
|
+
"Automobiles & Components",
|
|
750
|
+
"Banks",
|
|
751
|
+
"Capital Goods",
|
|
752
|
+
"Commercial & Professional Services",
|
|
753
|
+
"Consumer Discretionary Distribution & Retail",
|
|
754
|
+
"Consumer Durables & Apparel",
|
|
755
|
+
"Consumer Services",
|
|
756
|
+
"Consumer Staples Distribution & Retail",
|
|
757
|
+
"Energy",
|
|
758
|
+
"Equity Real Estate Investment Trusts (REITs)",
|
|
759
|
+
"Financial Services",
|
|
760
|
+
"Food, Beverage & Tobacco",
|
|
761
|
+
"Health Care Equipment & Services",
|
|
762
|
+
"Household & Personal Products",
|
|
763
|
+
"Insurance",
|
|
764
|
+
"Materials",
|
|
765
|
+
"Media & Entertainment",
|
|
766
|
+
"Pharmaceuticals, Biotechnology & Life Sciences",
|
|
767
|
+
"Real Estate Management & Development",
|
|
768
|
+
"Semiconductors & Semiconductor Equipment",
|
|
769
|
+
"Software & Services",
|
|
770
|
+
"Technology Hardware & Equipment",
|
|
771
|
+
"Telecommunication Services",
|
|
772
|
+
"Transportation",
|
|
773
|
+
"Utilities"
|
|
774
|
+
]);
|
|
775
|
+
var industryEnum = import_zod3.default.enum([
|
|
776
|
+
"Other",
|
|
777
|
+
"Financial Services",
|
|
778
|
+
"Aerospace & Defense",
|
|
779
|
+
"Air Freight & Logistics",
|
|
780
|
+
"Automobile Components",
|
|
781
|
+
"Automobiles",
|
|
782
|
+
"Banks",
|
|
783
|
+
"Beverages",
|
|
784
|
+
"Biotechnology",
|
|
785
|
+
"Broadline Retail",
|
|
786
|
+
"Building Products",
|
|
787
|
+
"Capital Markets",
|
|
788
|
+
"Chemicals",
|
|
789
|
+
"Commercial Services & Supplies",
|
|
790
|
+
"Communications Equipment",
|
|
791
|
+
"Construction & Engineering",
|
|
792
|
+
"Construction Materials",
|
|
793
|
+
"Consumer Finance",
|
|
794
|
+
"Consumer Staples Distribution & Retail",
|
|
795
|
+
"Containers & Packaging",
|
|
796
|
+
"Distributors",
|
|
797
|
+
"Diversified Consumer Services",
|
|
798
|
+
"Diversified REITs",
|
|
799
|
+
"Diversified Telecommunication Services",
|
|
800
|
+
"Electric Utilities",
|
|
801
|
+
"Electrical Equipment",
|
|
802
|
+
"Electronic Equipment, Instruments & Components",
|
|
803
|
+
"Energy Equipment & Services",
|
|
804
|
+
"Entertainment",
|
|
805
|
+
"Food Products",
|
|
806
|
+
"Gas Utilities",
|
|
807
|
+
"Ground Transportation",
|
|
808
|
+
"Health Care Equipment & Supplies",
|
|
809
|
+
"Health Care Providers & Services",
|
|
810
|
+
"Health Care REITs",
|
|
811
|
+
"Health Care Technology",
|
|
812
|
+
"Hotel & Resort REITs",
|
|
813
|
+
"Hotels, Restaurants & Leisure",
|
|
814
|
+
"Household Durables",
|
|
815
|
+
"Household Products",
|
|
816
|
+
"IT Services",
|
|
817
|
+
"Independent Power and Renewable Electricity Producers",
|
|
818
|
+
"Industrial Conglomerates",
|
|
819
|
+
"Industrial REITs",
|
|
820
|
+
"Insurance",
|
|
821
|
+
"Interactive Media & Services",
|
|
822
|
+
"Leisure Products",
|
|
823
|
+
"Life Sciences Tools & Services",
|
|
824
|
+
"Machinery",
|
|
825
|
+
"Marine Transportation",
|
|
826
|
+
"Media",
|
|
827
|
+
"Metals & Mining",
|
|
828
|
+
"Mortgage Real Estate Investment Trusts (REITs)",
|
|
829
|
+
"Multi-Utilities",
|
|
830
|
+
"Office REITs",
|
|
831
|
+
"Oil, Gas & Consumable Fuels",
|
|
832
|
+
"Paper & Forest Products",
|
|
833
|
+
"Passenger Airlines",
|
|
834
|
+
"Personal Care Products",
|
|
835
|
+
"Pharmaceuticals",
|
|
836
|
+
"Professional Services",
|
|
837
|
+
"Real Estate Management & Development",
|
|
838
|
+
"Residential REITs",
|
|
839
|
+
"Retail REITs",
|
|
840
|
+
"Semiconductors & Semiconductor Equipment",
|
|
841
|
+
"Software",
|
|
842
|
+
"Specialized REITs",
|
|
843
|
+
"Specialty Retail",
|
|
844
|
+
"Technology Hardware, Storage & Peripherals",
|
|
845
|
+
"Textiles, Apparel & Luxury Goods",
|
|
846
|
+
"Tobacco",
|
|
847
|
+
"Trading Companies & Distributors",
|
|
848
|
+
"Transportation Infrastructure",
|
|
849
|
+
"Water Utilities",
|
|
850
|
+
"Wireless Telecommunication Services"
|
|
851
|
+
]);
|
|
852
|
+
var subIndustryEnum = import_zod3.default.enum([
|
|
853
|
+
"Other",
|
|
854
|
+
"Advertising",
|
|
855
|
+
"Aerospace & Defense",
|
|
856
|
+
"Agricultural & Farm Machinery",
|
|
857
|
+
"Agricultural Products & Services",
|
|
858
|
+
"Air Freight & Logistics",
|
|
859
|
+
"Airport Services",
|
|
860
|
+
"Alternative Carriers",
|
|
861
|
+
"Aluminum",
|
|
862
|
+
"Apparel Retail",
|
|
863
|
+
"Apparel, Accessories & Luxury Goods",
|
|
864
|
+
"Application Software",
|
|
865
|
+
"Asset Management & Custody Banks",
|
|
866
|
+
"Automobile Manufacturers",
|
|
867
|
+
"Automotive Parts & Equipment",
|
|
868
|
+
"Automotive Retail",
|
|
869
|
+
"Biotechnology",
|
|
870
|
+
"Brewers",
|
|
871
|
+
"Broadcasting",
|
|
872
|
+
"Broadline Retail",
|
|
873
|
+
"Building Products",
|
|
874
|
+
"Cable & Satellite",
|
|
875
|
+
"Cargo Ground Transportation",
|
|
876
|
+
"Casinos & Gaming",
|
|
877
|
+
"Coal & Consumable Fuels",
|
|
878
|
+
"Commercial & Residential Mortgage Finance",
|
|
879
|
+
"Commercial Printing",
|
|
880
|
+
"Commodity Chemicals",
|
|
881
|
+
"Communications Equipment",
|
|
882
|
+
"Computer & Electronics Retail",
|
|
883
|
+
"Construction & Engineering",
|
|
884
|
+
"Construction Machinery & Heavy Transportation Equipment",
|
|
885
|
+
"Construction Materials",
|
|
886
|
+
"Consumer Electronics",
|
|
887
|
+
"Consumer Finance",
|
|
888
|
+
"Consumer Staples Merchandise Retail",
|
|
889
|
+
"Copper",
|
|
890
|
+
"Data Center REITs*",
|
|
891
|
+
"Data Processing & Outsourced Services",
|
|
892
|
+
"Distillers & Vintners",
|
|
893
|
+
"Distributors",
|
|
894
|
+
"Diversified Banks",
|
|
895
|
+
"Diversified Capital Markets",
|
|
896
|
+
"Diversified Chemicals",
|
|
897
|
+
"Diversified Financial Services",
|
|
898
|
+
"Diversified Metals & Mining",
|
|
899
|
+
"Diversified REITs*",
|
|
900
|
+
"Diversified Real Estate Activities",
|
|
901
|
+
"Diversified Support Services",
|
|
902
|
+
"Drug Retail",
|
|
903
|
+
"Education Services",
|
|
904
|
+
"Electric Utilities",
|
|
905
|
+
"Electrical Components & Equipment",
|
|
906
|
+
"Electronic Components",
|
|
907
|
+
"Electronic Equipment & Instruments ",
|
|
908
|
+
"Electronic Manufacturing Services",
|
|
909
|
+
"Environmental & Facilities Services",
|
|
910
|
+
"Fertilizers & Agricultural Chemicals",
|
|
911
|
+
"Financial Exchanges & Data",
|
|
912
|
+
"Food Distributors",
|
|
913
|
+
"Food Retail",
|
|
914
|
+
"Footwear",
|
|
915
|
+
"Forest Products",
|
|
916
|
+
"Gas Utilities",
|
|
917
|
+
"Gold",
|
|
918
|
+
"Health Care Distributors",
|
|
919
|
+
"Health Care Equipment",
|
|
920
|
+
"Health Care Facilities",
|
|
921
|
+
"Health Care REITs*",
|
|
922
|
+
"Health Care Services",
|
|
923
|
+
"Health Care Supplies",
|
|
924
|
+
"Health Care Technology",
|
|
925
|
+
"Heavy Electrical Equipment",
|
|
926
|
+
"Highways & Railtracks",
|
|
927
|
+
"Home Furnishings",
|
|
928
|
+
"Home Improvement Retail",
|
|
929
|
+
"Homebuilding",
|
|
930
|
+
"Homefurnishing Retail",
|
|
931
|
+
"Hotel & Resort REITs*",
|
|
932
|
+
"Hotels, Resorts & Cruise Lines",
|
|
933
|
+
"Household Appliances",
|
|
934
|
+
"Household Products",
|
|
935
|
+
"Housewares & Specialties",
|
|
936
|
+
"Human Resource & Employment Services",
|
|
937
|
+
"IT Consulting & Other Services",
|
|
938
|
+
"Independent Power Producers & Energy Traders",
|
|
939
|
+
"Industrial Conglomerates",
|
|
940
|
+
"Industrial Gases",
|
|
941
|
+
"Industrial Machinery & Supplies & Components",
|
|
942
|
+
"Industrial REITs*",
|
|
943
|
+
"Insurance Brokers",
|
|
944
|
+
"Integrated Oil & Gas",
|
|
945
|
+
"Integrated Telecommunication Services",
|
|
946
|
+
"Interactive Home Entertainment",
|
|
947
|
+
"Interactive Media & Services",
|
|
948
|
+
"Internet Services & Infrastructure",
|
|
949
|
+
"Investment Banking & Brokerage",
|
|
950
|
+
"Leisure Facilities",
|
|
951
|
+
"Leisure Products",
|
|
952
|
+
"Life & Health Insurance",
|
|
953
|
+
"Life Sciences Tools & Services",
|
|
954
|
+
"Managed Health Care",
|
|
955
|
+
"Marine Ports & Services",
|
|
956
|
+
"Marine Transportation",
|
|
957
|
+
"Metal, Glass & Plastic Containers ",
|
|
958
|
+
"Mortgage REITs*",
|
|
959
|
+
"Motorcycle Manufacturers",
|
|
960
|
+
"Movies & Entertainment",
|
|
961
|
+
"Multi-Family Residential REITs*",
|
|
962
|
+
"Multi-Sector Holdings",
|
|
963
|
+
"Multi-Utilities",
|
|
964
|
+
"Multi-line Insurance",
|
|
965
|
+
"Office REITs*",
|
|
966
|
+
"Office Services & Supplies",
|
|
967
|
+
"Oil & Gas Drilling",
|
|
968
|
+
"Oil & Gas Equipment & Services",
|
|
969
|
+
"Oil & Gas Exploration & Production",
|
|
970
|
+
"Oil & Gas Refining & Marketing",
|
|
971
|
+
"Oil & Gas Storage & Transportation",
|
|
972
|
+
"Other Specialized REITs*",
|
|
973
|
+
"Other Specialty Retail",
|
|
974
|
+
"Packaged Foods & Meats",
|
|
975
|
+
"Paper & Plastic Packaging Products & Materials",
|
|
976
|
+
"Paper Products",
|
|
977
|
+
"Passenger Airlines",
|
|
978
|
+
"Passenger Ground Transportation",
|
|
979
|
+
"Personal Care Products",
|
|
980
|
+
"Pharmaceuticals",
|
|
981
|
+
"Precious Metals & Minerals",
|
|
982
|
+
"Property & Casualty Insurance",
|
|
983
|
+
"Publishing",
|
|
984
|
+
"Rail Transportation",
|
|
985
|
+
"Real Estate Development",
|
|
986
|
+
"Real Estate Operating Companies",
|
|
987
|
+
"Real Estate Services",
|
|
988
|
+
"Regional Banks",
|
|
989
|
+
"Reinsurance",
|
|
990
|
+
"Renewable Electricity",
|
|
991
|
+
"Research & Consulting Services",
|
|
992
|
+
"Restaurants",
|
|
993
|
+
"Retail REITs*",
|
|
994
|
+
"Security & Alarm Services",
|
|
995
|
+
"Self-Storage REITs*",
|
|
996
|
+
"Semiconductor Materials & Equipment",
|
|
997
|
+
"Semiconductors",
|
|
998
|
+
"Silver",
|
|
999
|
+
"Single-Family Residential REITs*",
|
|
1000
|
+
"Soft Drinks & Non-alcoholic Beverages",
|
|
1001
|
+
"Specialized Consumer Services",
|
|
1002
|
+
"Specialized Finance",
|
|
1003
|
+
"Specialty Chemicals",
|
|
1004
|
+
"Steel",
|
|
1005
|
+
"Systems Software",
|
|
1006
|
+
"Technology Distributors",
|
|
1007
|
+
"Technology Hardware, Storage & Peripherals",
|
|
1008
|
+
"Telecom Tower REITs*",
|
|
1009
|
+
"Textiles",
|
|
1010
|
+
"Timber REITs*",
|
|
1011
|
+
"Tires & Rubber",
|
|
1012
|
+
"Tobacco",
|
|
1013
|
+
"Trading Companies & Distributors",
|
|
1014
|
+
"Transaction & Payment Processing Services",
|
|
1015
|
+
"Water Utilities",
|
|
1016
|
+
"Wireless Telecommunication Services"
|
|
1017
|
+
]);
|
|
1018
|
+
var iabTier1Enum = import_zod3.default.enum([
|
|
1019
|
+
"Attractions",
|
|
1020
|
+
"Automotive",
|
|
1021
|
+
"Books and Literature",
|
|
1022
|
+
"Business and Finance",
|
|
1023
|
+
"Careers",
|
|
1024
|
+
"Communication",
|
|
1025
|
+
"Crime",
|
|
1026
|
+
"Disasters",
|
|
1027
|
+
"Education",
|
|
1028
|
+
"Entertainment",
|
|
1029
|
+
"Events",
|
|
1030
|
+
"Family and Relationships",
|
|
1031
|
+
"Fine Art",
|
|
1032
|
+
"Food & Drink",
|
|
1033
|
+
"Genres",
|
|
1034
|
+
"Healthy Living",
|
|
1035
|
+
"Hobbies & Interests",
|
|
1036
|
+
"Holidays",
|
|
1037
|
+
"Home & Garden",
|
|
1038
|
+
"Law",
|
|
1039
|
+
"Maps & Navigation",
|
|
1040
|
+
"Medical Health",
|
|
1041
|
+
"Personal Celebrations & Life Events",
|
|
1042
|
+
"Personal Finance",
|
|
1043
|
+
"Pets",
|
|
1044
|
+
"Politics",
|
|
1045
|
+
"Pop Culture",
|
|
1046
|
+
"Productivity",
|
|
1047
|
+
"Real Estate",
|
|
1048
|
+
"Religion & Spirituality",
|
|
1049
|
+
"Science",
|
|
1050
|
+
"Sensitive Topics",
|
|
1051
|
+
"Shopping",
|
|
1052
|
+
"Sports",
|
|
1053
|
+
"Style & Fashion",
|
|
1054
|
+
"Technology & Computing",
|
|
1055
|
+
"Travel",
|
|
1056
|
+
"Video Gaming",
|
|
1057
|
+
"War and Conflicts"
|
|
1058
|
+
]);
|
|
1059
|
+
var iabTier2Enum = import_zod3.default.enum([
|
|
1060
|
+
"Action/Adventure",
|
|
1061
|
+
"Adult & Explicit Sexual Content",
|
|
1062
|
+
"Adult Album Alternative",
|
|
1063
|
+
"Adult Contemporary Music",
|
|
1064
|
+
"Adult Education",
|
|
1065
|
+
"Agnosticism",
|
|
1066
|
+
"Alcoholic Beverages",
|
|
1067
|
+
"Alternative Music",
|
|
1068
|
+
"American Football",
|
|
1069
|
+
"Amusement and Theme Parks",
|
|
1070
|
+
"Animation & Anime",
|
|
1071
|
+
"Anniversary",
|
|
1072
|
+
"Antiquing and Antiques",
|
|
1073
|
+
"Apartments",
|
|
1074
|
+
"Apprenticeships",
|
|
1075
|
+
"Arms & Ammunition",
|
|
1076
|
+
"Art and Photography",
|
|
1077
|
+
"Artificial Intelligence",
|
|
1078
|
+
"Arts and Crafts",
|
|
1079
|
+
"Astrology",
|
|
1080
|
+
"Atheism",
|
|
1081
|
+
"Attractions",
|
|
1082
|
+
"Augmented Reality",
|
|
1083
|
+
"Australian Rules Football",
|
|
1084
|
+
"Auto Body Styles",
|
|
1085
|
+
"Auto Buying and Selling",
|
|
1086
|
+
"Auto Insurance",
|
|
1087
|
+
"Auto Parts",
|
|
1088
|
+
"Auto Racing",
|
|
1089
|
+
"Auto Recalls",
|
|
1090
|
+
"Auto Rentals",
|
|
1091
|
+
"Auto Repair",
|
|
1092
|
+
"Auto Safety",
|
|
1093
|
+
"Auto Shows",
|
|
1094
|
+
"Auto Technology",
|
|
1095
|
+
"Auto Type",
|
|
1096
|
+
"Automotive",
|
|
1097
|
+
"Awards Shows",
|
|
1098
|
+
"Baby Shower",
|
|
1099
|
+
"Bachelor Party",
|
|
1100
|
+
"Bachelorette Party",
|
|
1101
|
+
"Badminton",
|
|
1102
|
+
"Barbecues and Grilling",
|
|
1103
|
+
"Bars & Restaurants",
|
|
1104
|
+
"Baseball",
|
|
1105
|
+
"Basketball",
|
|
1106
|
+
"Beach Volleyball",
|
|
1107
|
+
"Beauty",
|
|
1108
|
+
"Beekeeping",
|
|
1109
|
+
"Bereavement",
|
|
1110
|
+
"Biographies",
|
|
1111
|
+
"Biological Sciences",
|
|
1112
|
+
"Birds",
|
|
1113
|
+
"Birdwatching",
|
|
1114
|
+
"Birth",
|
|
1115
|
+
"Birthday",
|
|
1116
|
+
"Blues",
|
|
1117
|
+
"Body Art",
|
|
1118
|
+
"Bodybuilding",
|
|
1119
|
+
"Books and Literature",
|
|
1120
|
+
"Bowling",
|
|
1121
|
+
"Boxing",
|
|
1122
|
+
"Buddhism",
|
|
1123
|
+
"Business",
|
|
1124
|
+
"Business Expos & Conferences",
|
|
1125
|
+
"Business and Finance",
|
|
1126
|
+
"Car Culture",
|
|
1127
|
+
"Career Advice",
|
|
1128
|
+
"Career Planning",
|
|
1129
|
+
"Careers",
|
|
1130
|
+
"Casinos & Gambling",
|
|
1131
|
+
"Cats",
|
|
1132
|
+
"Celebrity Deaths",
|
|
1133
|
+
"Celebrity Families",
|
|
1134
|
+
"Celebrity Homes",
|
|
1135
|
+
"Celebrity Pregnancy",
|
|
1136
|
+
"Celebrity Relationships",
|
|
1137
|
+
"Celebrity Scandal",
|
|
1138
|
+
"Celebrity Style",
|
|
1139
|
+
"Cheerleading",
|
|
1140
|
+
"Chemistry",
|
|
1141
|
+
"Children's Clothing",
|
|
1142
|
+
"Children's Games and Toys",
|
|
1143
|
+
"Children's Health",
|
|
1144
|
+
"Children's Music",
|
|
1145
|
+
"Christianity",
|
|
1146
|
+
"Cigars",
|
|
1147
|
+
"Civic affairs",
|
|
1148
|
+
"Classic Hits",
|
|
1149
|
+
"Classical Music",
|
|
1150
|
+
"Collecting",
|
|
1151
|
+
"College Education",
|
|
1152
|
+
"College Radio",
|
|
1153
|
+
"College Sports",
|
|
1154
|
+
"Comedy",
|
|
1155
|
+
"Comedy (Music and Audio)",
|
|
1156
|
+
"Comics and Graphic Novels",
|
|
1157
|
+
"Communication",
|
|
1158
|
+
"Computing",
|
|
1159
|
+
"Console Games",
|
|
1160
|
+
"Consumer Banking",
|
|
1161
|
+
"Consumer Electronics",
|
|
1162
|
+
"Contemporary Hits/Pop/Top 40",
|
|
1163
|
+
"Content Production",
|
|
1164
|
+
"Cooking",
|
|
1165
|
+
"Cosmetic Medical Services",
|
|
1166
|
+
"Costume",
|
|
1167
|
+
"Country Music",
|
|
1168
|
+
"Coupons and Discounts",
|
|
1169
|
+
"Cricket",
|
|
1170
|
+
"Crime",
|
|
1171
|
+
"Crime & Harmful Acts to Individuals, Society & Human Right Violations",
|
|
1172
|
+
"Cycling",
|
|
1173
|
+
"Dance",
|
|
1174
|
+
"Dance and Electronic Music",
|
|
1175
|
+
"Darts",
|
|
1176
|
+
"Dash Cam Videos",
|
|
1177
|
+
"Dating",
|
|
1178
|
+
"Death, Injury, or Military Conflict",
|
|
1179
|
+
"Debated Sensitive Social Issues",
|
|
1180
|
+
"Design",
|
|
1181
|
+
"Designer Clothing",
|
|
1182
|
+
"Desserts and Baking",
|
|
1183
|
+
"Developmental Sites",
|
|
1184
|
+
"Digital Arts",
|
|
1185
|
+
"Dining Out",
|
|
1186
|
+
"Disabled Sports",
|
|
1187
|
+
"Disasters",
|
|
1188
|
+
"Diseases and Conditions",
|
|
1189
|
+
"Diving",
|
|
1190
|
+
"Divorce",
|
|
1191
|
+
"Documentary",
|
|
1192
|
+
"Dogs",
|
|
1193
|
+
"Drama",
|
|
1194
|
+
"Early Childhood Education",
|
|
1195
|
+
"Economy",
|
|
1196
|
+
"Education",
|
|
1197
|
+
"Educational Assessment",
|
|
1198
|
+
"Eldercare",
|
|
1199
|
+
"Elections",
|
|
1200
|
+
"Entertainment",
|
|
1201
|
+
"Environment",
|
|
1202
|
+
"Equine Sports",
|
|
1203
|
+
"Events",
|
|
1204
|
+
"Extreme Sports",
|
|
1205
|
+
"Factual",
|
|
1206
|
+
"Family and Relationships",
|
|
1207
|
+
"Family/Children",
|
|
1208
|
+
"Fan Conventions",
|
|
1209
|
+
"Fantasy",
|
|
1210
|
+
"Fantasy Sports",
|
|
1211
|
+
"Fashion Trends",
|
|
1212
|
+
"Fiction",
|
|
1213
|
+
"Field Hockey",
|
|
1214
|
+
"Figure Skating",
|
|
1215
|
+
"Financial Assistance",
|
|
1216
|
+
"Financial Planning",
|
|
1217
|
+
"Fine Art",
|
|
1218
|
+
"Fine Art Photography",
|
|
1219
|
+
"Fish and Aquariums",
|
|
1220
|
+
"Fishing Sports",
|
|
1221
|
+
"Fitness and Exercise",
|
|
1222
|
+
"Flower Shopping",
|
|
1223
|
+
"Food & Drink",
|
|
1224
|
+
"Food Allergies",
|
|
1225
|
+
"Food Movements",
|
|
1226
|
+
"Frugal Living",
|
|
1227
|
+
"Funeral",
|
|
1228
|
+
"Games and Puzzles",
|
|
1229
|
+
"Gardening",
|
|
1230
|
+
"Genealogy and Ancestry",
|
|
1231
|
+
"Genetics",
|
|
1232
|
+
"Genres",
|
|
1233
|
+
"Geography",
|
|
1234
|
+
"Geology",
|
|
1235
|
+
"Gifts and Greetings Cards",
|
|
1236
|
+
"Golf",
|
|
1237
|
+
"Gospel Music",
|
|
1238
|
+
"Graduation",
|
|
1239
|
+
"Grocery Shopping",
|
|
1240
|
+
"Gymnastics",
|
|
1241
|
+
"Hate Speech and Acts of Aggression",
|
|
1242
|
+
"Healthy Cooking and Eating",
|
|
1243
|
+
"Healthy Living",
|
|
1244
|
+
"High Fashion",
|
|
1245
|
+
"Hinduism",
|
|
1246
|
+
"Hip Hop Music",
|
|
1247
|
+
"Historic Site and Landmark Tours",
|
|
1248
|
+
"History",
|
|
1249
|
+
"Hobbies & Interests",
|
|
1250
|
+
"Holiday",
|
|
1251
|
+
"Holiday Shopping",
|
|
1252
|
+
"Holidays",
|
|
1253
|
+
"Home & Garden",
|
|
1254
|
+
"Home Appliances",
|
|
1255
|
+
"Home Entertaining",
|
|
1256
|
+
"Home Improvement",
|
|
1257
|
+
"Home Security",
|
|
1258
|
+
"Home Utilities",
|
|
1259
|
+
"Homeschooling",
|
|
1260
|
+
"Homework and Study",
|
|
1261
|
+
"Horror",
|
|
1262
|
+
"Hotel Properties",
|
|
1263
|
+
"Household Supplies",
|
|
1264
|
+
"Houses",
|
|
1265
|
+
"Humor and Satire",
|
|
1266
|
+
"Hunting and Shooting",
|
|
1267
|
+
"Ice Hockey",
|
|
1268
|
+
"Illegal Drugs, Tobacco, eCigarettes, Vaping, Alcohol",
|
|
1269
|
+
"Indoor Environmental Quality",
|
|
1270
|
+
"Industrial Property",
|
|
1271
|
+
"Industries",
|
|
1272
|
+
"Inline Skating",
|
|
1273
|
+
"Inspirational/New Age Music",
|
|
1274
|
+
"Insurance",
|
|
1275
|
+
"Interior Decorating",
|
|
1276
|
+
"Islam",
|
|
1277
|
+
"Jazz",
|
|
1278
|
+
"Job Search",
|
|
1279
|
+
"Judaism",
|
|
1280
|
+
"Lacrosse",
|
|
1281
|
+
"Land and Farms",
|
|
1282
|
+
"Landscaping",
|
|
1283
|
+
"Language Learning",
|
|
1284
|
+
"Large Animals",
|
|
1285
|
+
"Law",
|
|
1286
|
+
"Lifestyle",
|
|
1287
|
+
"Lotteries and Scratchcards",
|
|
1288
|
+
"Magic and Illusion",
|
|
1289
|
+
"Malls & Shopping Centers",
|
|
1290
|
+
"Maps & Navigation",
|
|
1291
|
+
"Marriage and Civil Unions",
|
|
1292
|
+
"Martial Arts",
|
|
1293
|
+
"Medical Health",
|
|
1294
|
+
"Medical Tests",
|
|
1295
|
+
"Men's Fashion",
|
|
1296
|
+
"Men's Health",
|
|
1297
|
+
"Mobile Games",
|
|
1298
|
+
"Model Toys",
|
|
1299
|
+
"Modern Art",
|
|
1300
|
+
"Motorcycles",
|
|
1301
|
+
"Movies",
|
|
1302
|
+
"Museums & Galleries",
|
|
1303
|
+
"Music",
|
|
1304
|
+
"Music Video",
|
|
1305
|
+
"Musical",
|
|
1306
|
+
"Musical Instruments",
|
|
1307
|
+
"Mystery",
|
|
1308
|
+
"National & Civic Holidays",
|
|
1309
|
+
"Nature",
|
|
1310
|
+
"Nightclubs",
|
|
1311
|
+
"Non-Alcoholic Beverages",
|
|
1312
|
+
"Nutrition",
|
|
1313
|
+
"Obscenity and Profanity",
|
|
1314
|
+
"Office Property",
|
|
1315
|
+
"Oldies/Adult Standards",
|
|
1316
|
+
"Olympic Sports",
|
|
1317
|
+
"Online Education",
|
|
1318
|
+
"Online Piracy",
|
|
1319
|
+
"Opera",
|
|
1320
|
+
"Outdoor Activities",
|
|
1321
|
+
"Outdoor Decorating",
|
|
1322
|
+
"PC Games",
|
|
1323
|
+
"Paranormal Phenomena",
|
|
1324
|
+
"Parenting",
|
|
1325
|
+
"Parks & Nature",
|
|
1326
|
+
"Party Supplies and Decorations",
|
|
1327
|
+
"Personal Care",
|
|
1328
|
+
"Personal Celebrations & Life Events",
|
|
1329
|
+
"Personal Debt",
|
|
1330
|
+
"Personal Finance",
|
|
1331
|
+
"Personal Investing",
|
|
1332
|
+
"Personal Taxes",
|
|
1333
|
+
"Pet Adoptions",
|
|
1334
|
+
"Pet Supplies",
|
|
1335
|
+
"Pets",
|
|
1336
|
+
"Pharmaceutical Drugs",
|
|
1337
|
+
"Physics",
|
|
1338
|
+
"Poetry",
|
|
1339
|
+
"Poker and Professional Gambling",
|
|
1340
|
+
"Political Issues & policy",
|
|
1341
|
+
"Politics",
|
|
1342
|
+
"Pop Culture",
|
|
1343
|
+
"Primary Education",
|
|
1344
|
+
"Private School",
|
|
1345
|
+
"Productivity",
|
|
1346
|
+
"Prom",
|
|
1347
|
+
"R&B/Soul/Funk",
|
|
1348
|
+
"Radio Control",
|
|
1349
|
+
"Real Estate",
|
|
1350
|
+
"Real Estate Buying and Selling",
|
|
1351
|
+
"Real Estate Renting and Leasing",
|
|
1352
|
+
"Reality TV",
|
|
1353
|
+
"Reggae",
|
|
1354
|
+
"Religion & Spirituality",
|
|
1355
|
+
"Religious (Music and Audio)",
|
|
1356
|
+
"Remodeling & Construction",
|
|
1357
|
+
"Remote Working",
|
|
1358
|
+
"Reptiles",
|
|
1359
|
+
"Retail Property",
|
|
1360
|
+
"Retirement Planning",
|
|
1361
|
+
"Road-Side Assistance",
|
|
1362
|
+
"Robotics",
|
|
1363
|
+
"Rock Music",
|
|
1364
|
+
"Rodeo",
|
|
1365
|
+
"Romance",
|
|
1366
|
+
"Rowing",
|
|
1367
|
+
"Rugby",
|
|
1368
|
+
"Sailing",
|
|
1369
|
+
"Sales and Promotions",
|
|
1370
|
+
"Sci-fi and Fantasy",
|
|
1371
|
+
"Science",
|
|
1372
|
+
"Science Fiction",
|
|
1373
|
+
"Scooters",
|
|
1374
|
+
"Secondary Education",
|
|
1375
|
+
"Senior Health",
|
|
1376
|
+
"Sensitive Topics",
|
|
1377
|
+
"Shopping",
|
|
1378
|
+
"Sikhism",
|
|
1379
|
+
"Single Life",
|
|
1380
|
+
"Skiing",
|
|
1381
|
+
"Smart Home",
|
|
1382
|
+
"Snooker/Pool/Billiards",
|
|
1383
|
+
"Soap Opera",
|
|
1384
|
+
"Soccer",
|
|
1385
|
+
"Softball",
|
|
1386
|
+
"Songwriters/Folk",
|
|
1387
|
+
"Soundtracks, TV and Showtunes",
|
|
1388
|
+
"Space and Astronomy",
|
|
1389
|
+
"Spam or Harmful Content",
|
|
1390
|
+
"Special Education",
|
|
1391
|
+
"Special Interest (Indie/Art House)",
|
|
1392
|
+
"Spirituality",
|
|
1393
|
+
"Sports",
|
|
1394
|
+
"Sports Equipment",
|
|
1395
|
+
"Sports Radio",
|
|
1396
|
+
"Squash",
|
|
1397
|
+
"Street Style",
|
|
1398
|
+
"Style & Fashion",
|
|
1399
|
+
"Surgery",
|
|
1400
|
+
"Swimming",
|
|
1401
|
+
"Table Tennis",
|
|
1402
|
+
"Talk Radio",
|
|
1403
|
+
"Talk Show",
|
|
1404
|
+
"Technology & Computing",
|
|
1405
|
+
"Television",
|
|
1406
|
+
"Tennis",
|
|
1407
|
+
"Terrorism",
|
|
1408
|
+
"Theater",
|
|
1409
|
+
"Theater Venues",
|
|
1410
|
+
"Thriller",
|
|
1411
|
+
"Track and Field",
|
|
1412
|
+
"Travel",
|
|
1413
|
+
"Travel Accessories",
|
|
1414
|
+
"Travel Locations",
|
|
1415
|
+
"Travel Preparation and Advice",
|
|
1416
|
+
"Travel Type",
|
|
1417
|
+
"True Crime",
|
|
1418
|
+
"Urban Contemporary Music",
|
|
1419
|
+
"Vacation Properties",
|
|
1420
|
+
"Vaccines",
|
|
1421
|
+
"Variety (Music and Audio)",
|
|
1422
|
+
"Vegan Diets",
|
|
1423
|
+
"Vegetarian Diets",
|
|
1424
|
+
"Veterinary Medicine",
|
|
1425
|
+
"Video Game Genres",
|
|
1426
|
+
"Video Gaming",
|
|
1427
|
+
"Virtual Reality",
|
|
1428
|
+
"Vocational Training",
|
|
1429
|
+
"Volleyball",
|
|
1430
|
+
"Walking",
|
|
1431
|
+
"War and Conflicts",
|
|
1432
|
+
"Water Polo",
|
|
1433
|
+
"Weather",
|
|
1434
|
+
"Wedding",
|
|
1435
|
+
"Weight Loss",
|
|
1436
|
+
"Weightlifting",
|
|
1437
|
+
"Wellness",
|
|
1438
|
+
"Western",
|
|
1439
|
+
"Women's Fashion",
|
|
1440
|
+
"Women's Health",
|
|
1441
|
+
"Workshops and Classes",
|
|
1442
|
+
"World Cuisines",
|
|
1443
|
+
"World/International Music",
|
|
1444
|
+
"Wrestling",
|
|
1445
|
+
"Young Adult",
|
|
1446
|
+
"Zoos & Aquariums",
|
|
1447
|
+
"eSports"
|
|
1448
|
+
]);
|
|
1449
|
+
var iabTier3Enum = import_zod3.default.enum([
|
|
1450
|
+
"Action Video Games",
|
|
1451
|
+
"Action-Adventure Video Games",
|
|
1452
|
+
"Action/Adventure",
|
|
1453
|
+
"Adoption and Fostering",
|
|
1454
|
+
"Adult & Explicit Sexual Content",
|
|
1455
|
+
"Adult Album Alternative",
|
|
1456
|
+
"Adult Contemporary Music",
|
|
1457
|
+
"Adult Education",
|
|
1458
|
+
"Adult Video Games",
|
|
1459
|
+
"Adventure Travel",
|
|
1460
|
+
"Adventure Video Games",
|
|
1461
|
+
"Advertising Industry",
|
|
1462
|
+
"Africa Travel",
|
|
1463
|
+
"Agnosticism",
|
|
1464
|
+
"Agriculture",
|
|
1465
|
+
"Air Travel",
|
|
1466
|
+
"Album-oriented Rock",
|
|
1467
|
+
"Alcoholic Beverages",
|
|
1468
|
+
"Allergies",
|
|
1469
|
+
"Alternative Medicine",
|
|
1470
|
+
"Alternative Music",
|
|
1471
|
+
"Alternative Rock",
|
|
1472
|
+
"American Football",
|
|
1473
|
+
"Amusement and Theme Parks",
|
|
1474
|
+
"Animation & Anime",
|
|
1475
|
+
"Anniversary",
|
|
1476
|
+
"Antiquing and Antiques",
|
|
1477
|
+
"Apartments",
|
|
1478
|
+
"Apparel Industry",
|
|
1479
|
+
"Apprenticeships",
|
|
1480
|
+
"Arms & Ammunition",
|
|
1481
|
+
"Art and Photography",
|
|
1482
|
+
"Artificial Intelligence",
|
|
1483
|
+
"Arts and Crafts",
|
|
1484
|
+
"Asia Travel",
|
|
1485
|
+
"Astrology",
|
|
1486
|
+
"Atheism",
|
|
1487
|
+
"Attractions",
|
|
1488
|
+
"Audio Production",
|
|
1489
|
+
"Augmented Reality",
|
|
1490
|
+
"Australia and Oceania Travel",
|
|
1491
|
+
"Australian Rules Football",
|
|
1492
|
+
"Auto Body Styles",
|
|
1493
|
+
"Auto Buying and Selling",
|
|
1494
|
+
"Auto Infotainment Technologies",
|
|
1495
|
+
"Auto Insurance",
|
|
1496
|
+
"Auto Navigation Systems",
|
|
1497
|
+
"Auto Parts",
|
|
1498
|
+
"Auto Racing",
|
|
1499
|
+
"Auto Recalls",
|
|
1500
|
+
"Auto Rentals",
|
|
1501
|
+
"Auto Repair",
|
|
1502
|
+
"Auto Safety",
|
|
1503
|
+
"Auto Safety Technologies",
|
|
1504
|
+
"Auto Shows",
|
|
1505
|
+
"Auto Technology",
|
|
1506
|
+
"Auto Type",
|
|
1507
|
+
"Automotive",
|
|
1508
|
+
"Automotive Industry",
|
|
1509
|
+
"Aviation Industry",
|
|
1510
|
+
"Awards Shows",
|
|
1511
|
+
"Baby Shower",
|
|
1512
|
+
"Bachelor Party",
|
|
1513
|
+
"Bachelorette Party",
|
|
1514
|
+
"Badminton",
|
|
1515
|
+
"Barbecues and Grilling",
|
|
1516
|
+
"Bars & Restaurants",
|
|
1517
|
+
"Baseball",
|
|
1518
|
+
"Basketball",
|
|
1519
|
+
"Bath and Shower",
|
|
1520
|
+
"Beach Travel",
|
|
1521
|
+
"Beach Volleyball",
|
|
1522
|
+
"Beadwork",
|
|
1523
|
+
"Beauty",
|
|
1524
|
+
"Bed & Breakfasts",
|
|
1525
|
+
"Beekeeping",
|
|
1526
|
+
"Bereavement",
|
|
1527
|
+
"Biographies",
|
|
1528
|
+
"Biological Sciences",
|
|
1529
|
+
"Biotech and Biomedical Industry",
|
|
1530
|
+
"Birds",
|
|
1531
|
+
"Birdwatching",
|
|
1532
|
+
"Birth",
|
|
1533
|
+
"Birthday",
|
|
1534
|
+
"Blood Disorders",
|
|
1535
|
+
"Blues",
|
|
1536
|
+
"Board Games and Puzzles",
|
|
1537
|
+
"Body Art",
|
|
1538
|
+
"Bodybuilding",
|
|
1539
|
+
"Bone and Joint Conditions",
|
|
1540
|
+
"Books and Literature",
|
|
1541
|
+
"Bowling",
|
|
1542
|
+
"Boxing",
|
|
1543
|
+
"Brain and Nervous System Disorders",
|
|
1544
|
+
"Buddhism",
|
|
1545
|
+
"Budget Cars",
|
|
1546
|
+
"Budget Travel",
|
|
1547
|
+
"Business",
|
|
1548
|
+
"Business Accounting & Finance",
|
|
1549
|
+
"Business Administration",
|
|
1550
|
+
"Business Banking & Finance",
|
|
1551
|
+
"Business Expos & Conferences",
|
|
1552
|
+
"Business I.T.",
|
|
1553
|
+
"Business Operations",
|
|
1554
|
+
"Business Travel",
|
|
1555
|
+
"Business Utilities",
|
|
1556
|
+
"Business and Finance",
|
|
1557
|
+
"Cameras and Camcorders",
|
|
1558
|
+
"Camping",
|
|
1559
|
+
"Cancer",
|
|
1560
|
+
"Candle and Soap Making",
|
|
1561
|
+
"Canoeing and Kayaking",
|
|
1562
|
+
"Car Culture",
|
|
1563
|
+
"Card Games",
|
|
1564
|
+
"Career Advice",
|
|
1565
|
+
"Career Planning",
|
|
1566
|
+
"Careers",
|
|
1567
|
+
"Casino and Gambling Video Games",
|
|
1568
|
+
"Casinos & Gambling",
|
|
1569
|
+
"Casual Games",
|
|
1570
|
+
"Cats",
|
|
1571
|
+
"Celebrity Deaths",
|
|
1572
|
+
"Celebrity Families",
|
|
1573
|
+
"Celebrity Homes",
|
|
1574
|
+
"Celebrity Pregnancy",
|
|
1575
|
+
"Celebrity Relationships",
|
|
1576
|
+
"Celebrity Scandal",
|
|
1577
|
+
"Celebrity Style",
|
|
1578
|
+
"Certified Pre-Owned Cars",
|
|
1579
|
+
"Cheerleading",
|
|
1580
|
+
"Chemistry",
|
|
1581
|
+
"Children's Clothing",
|
|
1582
|
+
"Children's Games and Toys",
|
|
1583
|
+
"Children's Health",
|
|
1584
|
+
"Children's Music",
|
|
1585
|
+
"Christianity",
|
|
1586
|
+
"Cigars",
|
|
1587
|
+
"Civic affairs",
|
|
1588
|
+
"Civil Engineering Industry",
|
|
1589
|
+
"Classic Cars",
|
|
1590
|
+
"Classic Hits",
|
|
1591
|
+
"Classic Rock",
|
|
1592
|
+
"Classical Music",
|
|
1593
|
+
"Climbing",
|
|
1594
|
+
"Cold and Flu",
|
|
1595
|
+
"Collecting",
|
|
1596
|
+
"College Baseball",
|
|
1597
|
+
"College Basketball",
|
|
1598
|
+
"College Education",
|
|
1599
|
+
"College Football",
|
|
1600
|
+
"College Planning",
|
|
1601
|
+
"College Radio",
|
|
1602
|
+
"College Sports",
|
|
1603
|
+
"Comedy",
|
|
1604
|
+
"Comedy (Music and Audio)",
|
|
1605
|
+
"Comic Books",
|
|
1606
|
+
"Comics and Graphic Novels",
|
|
1607
|
+
"Commercial Trucks",
|
|
1608
|
+
"Commodities",
|
|
1609
|
+
"Communication",
|
|
1610
|
+
"Computer Networking",
|
|
1611
|
+
"Computer Peripherals",
|
|
1612
|
+
"Computer Software and Applications",
|
|
1613
|
+
"Computing",
|
|
1614
|
+
"Concept Cars",
|
|
1615
|
+
"Console Games",
|
|
1616
|
+
"Construction Industry",
|
|
1617
|
+
"Consumer Banking",
|
|
1618
|
+
"Consumer Electronics",
|
|
1619
|
+
"Consumer Issues",
|
|
1620
|
+
"Contemporary Hits/Pop/Top 40",
|
|
1621
|
+
"Content Production",
|
|
1622
|
+
"Convertible",
|
|
1623
|
+
"Cooking",
|
|
1624
|
+
"Cosmetic Medical Services",
|
|
1625
|
+
"Costume",
|
|
1626
|
+
"Country Music",
|
|
1627
|
+
"Coupe",
|
|
1628
|
+
"Coupons and Discounts",
|
|
1629
|
+
"Credit Cards",
|
|
1630
|
+
"Cricket",
|
|
1631
|
+
"Crime",
|
|
1632
|
+
"Crime & Harmful Acts to Individuals, Society & Human Right Violations",
|
|
1633
|
+
"Crossover",
|
|
1634
|
+
"Cruises",
|
|
1635
|
+
"Currencies",
|
|
1636
|
+
"Cycling",
|
|
1637
|
+
"Dance",
|
|
1638
|
+
"Dance and Electronic Music",
|
|
1639
|
+
"Darts",
|
|
1640
|
+
"Dash Cam Videos",
|
|
1641
|
+
"Data Storage and Warehousing",
|
|
1642
|
+
"Dating",
|
|
1643
|
+
"Day Trips",
|
|
1644
|
+
"Daycare and Pre-School",
|
|
1645
|
+
"Death, Injury, or Military Conflict",
|
|
1646
|
+
"Debated Sensitive Social Issues",
|
|
1647
|
+
"Defense Industry",
|
|
1648
|
+
"Dental Health",
|
|
1649
|
+
"Deodorant and Antiperspirant",
|
|
1650
|
+
"Design",
|
|
1651
|
+
"Designer Clothing",
|
|
1652
|
+
"Desktops",
|
|
1653
|
+
"Desserts and Baking",
|
|
1654
|
+
"Developmental Sites",
|
|
1655
|
+
"Diabetes",
|
|
1656
|
+
"Digestive Disorders",
|
|
1657
|
+
"Digital Arts",
|
|
1658
|
+
"Dining Out",
|
|
1659
|
+
"Disabled Sports",
|
|
1660
|
+
"Disasters",
|
|
1661
|
+
"Diseases and Conditions",
|
|
1662
|
+
"Diving",
|
|
1663
|
+
"Divorce",
|
|
1664
|
+
"Documentary",
|
|
1665
|
+
"Dogs",
|
|
1666
|
+
"Drama",
|
|
1667
|
+
"Drawing and Sketching",
|
|
1668
|
+
"Driverless Cars",
|
|
1669
|
+
"Ear, Nose and Throat Conditions",
|
|
1670
|
+
"Early Childhood Education",
|
|
1671
|
+
"Economy",
|
|
1672
|
+
"Education",
|
|
1673
|
+
"Education industry",
|
|
1674
|
+
"Educational Assessment",
|
|
1675
|
+
"Educational Video Games",
|
|
1676
|
+
"Eldercare",
|
|
1677
|
+
"Elections",
|
|
1678
|
+
"Endocrine and Metabolic Diseases",
|
|
1679
|
+
"Entertainment",
|
|
1680
|
+
"Entertainment Industry",
|
|
1681
|
+
"Environment",
|
|
1682
|
+
"Environmental Services Industry",
|
|
1683
|
+
"Equine Sports",
|
|
1684
|
+
"Europe Travel",
|
|
1685
|
+
"Events",
|
|
1686
|
+
"Executive Leadership & Management",
|
|
1687
|
+
"Exercise and Fitness Video Games",
|
|
1688
|
+
"Extreme Sports",
|
|
1689
|
+
"Eye and Vision Conditions",
|
|
1690
|
+
"Factual",
|
|
1691
|
+
"Family Travel",
|
|
1692
|
+
"Family Video Games",
|
|
1693
|
+
"Family and Relationships",
|
|
1694
|
+
"Family/Children",
|
|
1695
|
+
"Fan Conventions",
|
|
1696
|
+
"Fantasy",
|
|
1697
|
+
"Fantasy Sports",
|
|
1698
|
+
"Fashion Trends",
|
|
1699
|
+
"Fiction",
|
|
1700
|
+
"Field Hockey",
|
|
1701
|
+
"Figure Skating",
|
|
1702
|
+
"Financial Assistance",
|
|
1703
|
+
"Financial Crisis",
|
|
1704
|
+
"Financial Industry",
|
|
1705
|
+
"Financial Planning",
|
|
1706
|
+
"Financial Reform",
|
|
1707
|
+
"Financial Regulation",
|
|
1708
|
+
"Fine Art",
|
|
1709
|
+
"Fine Art Photography",
|
|
1710
|
+
"Fish and Aquariums",
|
|
1711
|
+
"Fishing Sports",
|
|
1712
|
+
"Fitness and Exercise",
|
|
1713
|
+
"Flower Shopping",
|
|
1714
|
+
"Food & Drink",
|
|
1715
|
+
"Food Allergies",
|
|
1716
|
+
"Food Industry",
|
|
1717
|
+
"Food Movements",
|
|
1718
|
+
"Foot Health",
|
|
1719
|
+
"Freelance Writing",
|
|
1720
|
+
"Frugal Living",
|
|
1721
|
+
"Funeral",
|
|
1722
|
+
"Games and Puzzles",
|
|
1723
|
+
"Gardening",
|
|
1724
|
+
"Gas and Electric",
|
|
1725
|
+
"Gasoline Prices",
|
|
1726
|
+
"Genealogy and Ancestry",
|
|
1727
|
+
"Genetics",
|
|
1728
|
+
"Genres",
|
|
1729
|
+
"Geography",
|
|
1730
|
+
"Geology",
|
|
1731
|
+
"Gifts and Greetings Cards",
|
|
1732
|
+
"Golf",
|
|
1733
|
+
"Gospel Music",
|
|
1734
|
+
"Government Business",
|
|
1735
|
+
"Government Support and Welfare",
|
|
1736
|
+
"Graduation",
|
|
1737
|
+
"Green Solutions",
|
|
1738
|
+
"Green Vehicles",
|
|
1739
|
+
"Grocery Shopping",
|
|
1740
|
+
"Gymnastics",
|
|
1741
|
+
"Hair Care",
|
|
1742
|
+
"Hard Rock",
|
|
1743
|
+
"Hatchback",
|
|
1744
|
+
"Hate Speech and Acts of Aggression",
|
|
1745
|
+
"Health Insurance",
|
|
1746
|
+
"Healthcare Industry",
|
|
1747
|
+
"Healthy Cooking and Eating",
|
|
1748
|
+
"Healthy Living",
|
|
1749
|
+
"Heart and Cardiovascular Diseases",
|
|
1750
|
+
"Hedge Funds",
|
|
1751
|
+
"High Fashion",
|
|
1752
|
+
"Hinduism",
|
|
1753
|
+
"Hip Hop Music",
|
|
1754
|
+
"Historic Site and Landmark Tours",
|
|
1755
|
+
"History",
|
|
1756
|
+
"Hobbies & Interests",
|
|
1757
|
+
"Holiday",
|
|
1758
|
+
"Holiday Shopping",
|
|
1759
|
+
"Holidays",
|
|
1760
|
+
"Home & Garden",
|
|
1761
|
+
"Home Appliances",
|
|
1762
|
+
"Home Entertaining",
|
|
1763
|
+
"Home Entertainment Systems",
|
|
1764
|
+
"Home Financing",
|
|
1765
|
+
"Home Improvement",
|
|
1766
|
+
"Home Insurance",
|
|
1767
|
+
"Home Security",
|
|
1768
|
+
"Home Utilities",
|
|
1769
|
+
"Homeschooling",
|
|
1770
|
+
"Homework and Study",
|
|
1771
|
+
"Honeymoons and Getaways",
|
|
1772
|
+
"Horror",
|
|
1773
|
+
"Horror Video Games",
|
|
1774
|
+
"Horse Racing",
|
|
1775
|
+
"Hospitality Industry",
|
|
1776
|
+
"Hotel Properties",
|
|
1777
|
+
"Hotels and Motels",
|
|
1778
|
+
"Household Supplies",
|
|
1779
|
+
"Houses",
|
|
1780
|
+
"Housing Market",
|
|
1781
|
+
"Human Resources",
|
|
1782
|
+
"Humor and Satire",
|
|
1783
|
+
"Hunting and Shooting",
|
|
1784
|
+
"Ice Hockey",
|
|
1785
|
+
"Illegal Drugs, Tobacco, eCigarettes, Vaping, Alcohol",
|
|
1786
|
+
"Indoor Environmental Quality",
|
|
1787
|
+
"Industrial Property",
|
|
1788
|
+
"Industries",
|
|
1789
|
+
"Infectious Diseases",
|
|
1790
|
+
"Information Services Industry",
|
|
1791
|
+
"Information and Network Security",
|
|
1792
|
+
"Injuries",
|
|
1793
|
+
"Inline Skating",
|
|
1794
|
+
"Inspirational/New Age Music",
|
|
1795
|
+
"Insurance",
|
|
1796
|
+
"Interest Rates",
|
|
1797
|
+
"Interior Decorating",
|
|
1798
|
+
"Internet",
|
|
1799
|
+
"Internet Safety",
|
|
1800
|
+
"Internet Service Providers",
|
|
1801
|
+
"Islam",
|
|
1802
|
+
"Jazz",
|
|
1803
|
+
"Jewelry Making",
|
|
1804
|
+
"Job Fairs",
|
|
1805
|
+
"Job Market",
|
|
1806
|
+
"Job Search",
|
|
1807
|
+
"Judaism",
|
|
1808
|
+
"Lacrosse",
|
|
1809
|
+
"Land and Farms",
|
|
1810
|
+
"Landscaping",
|
|
1811
|
+
"Language Learning",
|
|
1812
|
+
"Laptops",
|
|
1813
|
+
"Large Animals",
|
|
1814
|
+
"Large Business",
|
|
1815
|
+
"Law",
|
|
1816
|
+
"Legal Services Industry",
|
|
1817
|
+
"Life Insurance",
|
|
1818
|
+
"Lifestyle",
|
|
1819
|
+
"Logistics",
|
|
1820
|
+
"Logistics and Transportation Industry",
|
|
1821
|
+
"Lotteries and Scratchcards",
|
|
1822
|
+
"Lung and Respiratory Health",
|
|
1823
|
+
"Luxury Cars",
|
|
1824
|
+
"MMOs",
|
|
1825
|
+
"Magic and Illusion",
|
|
1826
|
+
"Makeup and Accessories",
|
|
1827
|
+
"Malls & Shopping Centers",
|
|
1828
|
+
"Management Consulting Industry",
|
|
1829
|
+
"Manufacturing Industry",
|
|
1830
|
+
"Maps & Navigation",
|
|
1831
|
+
"Marketing and Advertising",
|
|
1832
|
+
"Marriage and Civil Unions",
|
|
1833
|
+
"Martial Arts",
|
|
1834
|
+
"Mechanical and Industrial Engineering Industry",
|
|
1835
|
+
"Media Industry",
|
|
1836
|
+
"Medical Health",
|
|
1837
|
+
"Medical Tests",
|
|
1838
|
+
"Men's Accessories",
|
|
1839
|
+
"Men's Clothing",
|
|
1840
|
+
"Men's Fashion",
|
|
1841
|
+
"Men's Health",
|
|
1842
|
+
"Men's Shoes and Footwear",
|
|
1843
|
+
"Mental Health",
|
|
1844
|
+
"Metals Industry",
|
|
1845
|
+
"Microcar",
|
|
1846
|
+
"Minivan",
|
|
1847
|
+
"Mobile Games",
|
|
1848
|
+
"Model Toys",
|
|
1849
|
+
"Modern Art",
|
|
1850
|
+
"Motor Insurance",
|
|
1851
|
+
"Motorcycle Sports",
|
|
1852
|
+
"Motorcycles",
|
|
1853
|
+
"Movies",
|
|
1854
|
+
"Museums & Galleries",
|
|
1855
|
+
"Music",
|
|
1856
|
+
"Music Video",
|
|
1857
|
+
"Music and Party Video Games",
|
|
1858
|
+
"Musical Instruments",
|
|
1859
|
+
"Musicals",
|
|
1860
|
+
"Mutual Funds",
|
|
1861
|
+
"Mystery",
|
|
1862
|
+
"Nail Care",
|
|
1863
|
+
"National & Civic Holidays",
|
|
1864
|
+
"Natural and Organic Beauty",
|
|
1865
|
+
"Nature",
|
|
1866
|
+
"Needlework",
|
|
1867
|
+
"Nightclubs",
|
|
1868
|
+
"Non-Alcoholic Beverages",
|
|
1869
|
+
"Non-Profit Organizations",
|
|
1870
|
+
"North America Travel",
|
|
1871
|
+
"Nutrition",
|
|
1872
|
+
"Obscenity and Profanity",
|
|
1873
|
+
"Off-Road Vehicles",
|
|
1874
|
+
"Office Property",
|
|
1875
|
+
"Oldies/Adult Standards",
|
|
1876
|
+
"Olympic Sports",
|
|
1877
|
+
"Online Education",
|
|
1878
|
+
"Online Piracy",
|
|
1879
|
+
"Opera",
|
|
1880
|
+
"Oral care",
|
|
1881
|
+
"Outdoor Attractions",
|
|
1882
|
+
"Outdoor Decorating",
|
|
1883
|
+
"PC Games",
|
|
1884
|
+
"Paintball",
|
|
1885
|
+
"Painting",
|
|
1886
|
+
"Paranormal Phenomena",
|
|
1887
|
+
"Parenting",
|
|
1888
|
+
"Parenting Babies and Toddlers",
|
|
1889
|
+
"Parenting Children Aged 4-11",
|
|
1890
|
+
"Parenting Teens",
|
|
1891
|
+
"Parks",
|
|
1892
|
+
"Participant Sports",
|
|
1893
|
+
"Party Supplies and Decorations",
|
|
1894
|
+
"Performance Cars",
|
|
1895
|
+
"Perfume and Fragrance",
|
|
1896
|
+
"Personal Care",
|
|
1897
|
+
"Personal Celebrations & Life Events",
|
|
1898
|
+
"Personal Debt",
|
|
1899
|
+
"Personal Finance",
|
|
1900
|
+
"Personal Investing",
|
|
1901
|
+
"Personal Loans",
|
|
1902
|
+
"Personal Taxes",
|
|
1903
|
+
"Pet Adoptions",
|
|
1904
|
+
"Pet Insurance",
|
|
1905
|
+
"Pet Supplies",
|
|
1906
|
+
"Pets",
|
|
1907
|
+
"Pharmaceutical Drugs",
|
|
1908
|
+
"Pharmaceutical Industry",
|
|
1909
|
+
"Phone Services",
|
|
1910
|
+
"Photography",
|
|
1911
|
+
"Physical Therapy",
|
|
1912
|
+
"Physics",
|
|
1913
|
+
"Pickup Trucks",
|
|
1914
|
+
"Poetry",
|
|
1915
|
+
"Poker and Professional Gambling",
|
|
1916
|
+
"Polar Travel",
|
|
1917
|
+
"Political Issues & Policy",
|
|
1918
|
+
"Politics",
|
|
1919
|
+
"Pop Culture",
|
|
1920
|
+
"Postgraduate Education",
|
|
1921
|
+
"Power and Energy Industry",
|
|
1922
|
+
"Primary Education",
|
|
1923
|
+
"Private School",
|
|
1924
|
+
"Productivity",
|
|
1925
|
+
"Programming Languages",
|
|
1926
|
+
"Prom",
|
|
1927
|
+
"Public Radio",
|
|
1928
|
+
"Publishing Industry",
|
|
1929
|
+
"Puzzle Video Games",
|
|
1930
|
+
"R&B/Soul/Funk",
|
|
1931
|
+
"Racing Video Games",
|
|
1932
|
+
"Radio Control",
|
|
1933
|
+
"Rail Travel",
|
|
1934
|
+
"Real Estate",
|
|
1935
|
+
"Real Estate Buying and Selling",
|
|
1936
|
+
"Real Estate Industry",
|
|
1937
|
+
"Real Estate Renting and Leasing",
|
|
1938
|
+
"Reality TV",
|
|
1939
|
+
"Reggae",
|
|
1940
|
+
"Religion & Spirituality",
|
|
1941
|
+
"Religious (Music and Audio)",
|
|
1942
|
+
"Remodeling & Construction",
|
|
1943
|
+
"Remote Working",
|
|
1944
|
+
"Reproductive Health",
|
|
1945
|
+
"Reptiles",
|
|
1946
|
+
"Resume Writing and Advice",
|
|
1947
|
+
"Retail Industry",
|
|
1948
|
+
"Retail Property",
|
|
1949
|
+
"Retirement Planning",
|
|
1950
|
+
"Road Trips",
|
|
1951
|
+
"Road-Side Assistance",
|
|
1952
|
+
"Robotics",
|
|
1953
|
+
"Rock Music",
|
|
1954
|
+
"Rodeo",
|
|
1955
|
+
"Role-Playing Video Games",
|
|
1956
|
+
"Roleplaying Games",
|
|
1957
|
+
"Romance",
|
|
1958
|
+
"Rowing",
|
|
1959
|
+
"Rugby",
|
|
1960
|
+
"Rugby League",
|
|
1961
|
+
"Rugby Union",
|
|
1962
|
+
"Running and Jogging",
|
|
1963
|
+
"SUV",
|
|
1964
|
+
"Sailing",
|
|
1965
|
+
"Sales",
|
|
1966
|
+
"Sales and Promotions",
|
|
1967
|
+
"Sci-fi and Fantasy",
|
|
1968
|
+
"Science",
|
|
1969
|
+
"Science Fiction",
|
|
1970
|
+
"Scooters",
|
|
1971
|
+
"Scrapbooking",
|
|
1972
|
+
"Screenwriting",
|
|
1973
|
+
"Scuba Diving",
|
|
1974
|
+
"Secondary Education",
|
|
1975
|
+
"Sedan",
|
|
1976
|
+
"Senior Health",
|
|
1977
|
+
"Sensitive Topics",
|
|
1978
|
+
"Sexual Health",
|
|
1979
|
+
"Shaving",
|
|
1980
|
+
"Shopping",
|
|
1981
|
+
"Sikhism",
|
|
1982
|
+
"Simulation Video Games",
|
|
1983
|
+
"Single Life",
|
|
1984
|
+
"Skateboarding",
|
|
1985
|
+
"Skiing",
|
|
1986
|
+
"Skin Care",
|
|
1987
|
+
"Skin and Dermatology",
|
|
1988
|
+
"Sleep Disorders",
|
|
1989
|
+
"Small and Medium-sized Business",
|
|
1990
|
+
"Smart Home",
|
|
1991
|
+
"Smartphones",
|
|
1992
|
+
"Smoking Cessation",
|
|
1993
|
+
"Snooker/Pool/Billiards",
|
|
1994
|
+
"Snowboarding",
|
|
1995
|
+
"Soap Opera",
|
|
1996
|
+
"Soccer",
|
|
1997
|
+
"Soft AC Music",
|
|
1998
|
+
"Soft Rock",
|
|
1999
|
+
"Softball",
|
|
2000
|
+
"Songwriters/Folk",
|
|
2001
|
+
"Soundtracks, TV and Showtunes",
|
|
2002
|
+
"South America Travel",
|
|
2003
|
+
"Space and Astronomy",
|
|
2004
|
+
"Spam or Harmful Content",
|
|
2005
|
+
"Spas",
|
|
2006
|
+
"Special Education",
|
|
2007
|
+
"Special Interest (Indie/Art House)",
|
|
2008
|
+
"Special Needs Kids",
|
|
2009
|
+
"Spirituality",
|
|
2010
|
+
"Sports",
|
|
2011
|
+
"Sports Equipment",
|
|
2012
|
+
"Sports Radio",
|
|
2013
|
+
"Sports Video Games",
|
|
2014
|
+
"Squash",
|
|
2015
|
+
"Stamps and Coins",
|
|
2016
|
+
"Standardized Testing",
|
|
2017
|
+
"Startups",
|
|
2018
|
+
"Station Wagon",
|
|
2019
|
+
"Stocks and Bonds",
|
|
2020
|
+
"Strategy Video Games",
|
|
2021
|
+
"Street Style",
|
|
2022
|
+
"Student Financial Aid",
|
|
2023
|
+
"Student Loans",
|
|
2024
|
+
"Style & Fashion",
|
|
2025
|
+
"Substance Abuse",
|
|
2026
|
+
"Summer Olympic Sports",
|
|
2027
|
+
"Surfing and Bodyboarding",
|
|
2028
|
+
"Surgery",
|
|
2029
|
+
"Swimming",
|
|
2030
|
+
"Table Tennis",
|
|
2031
|
+
"Tablets and E-readers",
|
|
2032
|
+
"Talk Radio",
|
|
2033
|
+
"Talk Show",
|
|
2034
|
+
"Technology & Computing",
|
|
2035
|
+
"Technology Industry",
|
|
2036
|
+
"Telecommunications Industry",
|
|
2037
|
+
"Television",
|
|
2038
|
+
"Tennis",
|
|
2039
|
+
"Terrorism",
|
|
2040
|
+
"Theater",
|
|
2041
|
+
"Theater Venues",
|
|
2042
|
+
"Thriller",
|
|
2043
|
+
"Track and Field",
|
|
2044
|
+
"Travel",
|
|
2045
|
+
"Travel Accessories",
|
|
2046
|
+
"Travel Insurance",
|
|
2047
|
+
"Travel Locations",
|
|
2048
|
+
"Travel Preparation and Advice",
|
|
2049
|
+
"Travel Type",
|
|
2050
|
+
"True Crime",
|
|
2051
|
+
"Undergraduate Education",
|
|
2052
|
+
"Urban AC Music",
|
|
2053
|
+
"Urban Contemporary Music",
|
|
2054
|
+
"Vacation Properties",
|
|
2055
|
+
"Vaccines",
|
|
2056
|
+
"Van",
|
|
2057
|
+
"Variety (Music and Audio)",
|
|
2058
|
+
"Vegan Diets",
|
|
2059
|
+
"Vegetarian Diets",
|
|
2060
|
+
"Veterinary Medicine",
|
|
2061
|
+
"Video Game Genres",
|
|
2062
|
+
"Video Gaming",
|
|
2063
|
+
"Video Production",
|
|
2064
|
+
"Virtual Reality",
|
|
2065
|
+
"Vocational Training",
|
|
2066
|
+
"Volleyball",
|
|
2067
|
+
"Walking",
|
|
2068
|
+
"War and Conflicts",
|
|
2069
|
+
"Water Polo",
|
|
2070
|
+
"Water Services",
|
|
2071
|
+
"Waterskiing and Wakeboarding",
|
|
2072
|
+
"Wearable Technology",
|
|
2073
|
+
"Weather",
|
|
2074
|
+
"Wedding",
|
|
2075
|
+
"Weight Loss",
|
|
2076
|
+
"Weightlifting",
|
|
2077
|
+
"Wellness",
|
|
2078
|
+
"Western",
|
|
2079
|
+
"Winter Olympic Sports",
|
|
2080
|
+
"Women's Accessories",
|
|
2081
|
+
"Women's Clothing",
|
|
2082
|
+
"Women's Fashion",
|
|
2083
|
+
"Women's Health",
|
|
2084
|
+
"Women's Shoes and Footwear",
|
|
2085
|
+
"Woodworking",
|
|
2086
|
+
"Workshops and Classes",
|
|
2087
|
+
"World Cuisines",
|
|
2088
|
+
"World/International Music",
|
|
2089
|
+
"Wrestling",
|
|
2090
|
+
"Young Adult",
|
|
2091
|
+
"Zoos & Aquariums",
|
|
2092
|
+
"eSports"
|
|
2093
|
+
]);
|
|
2094
|
+
var iabTier4Enum = import_zod3.default.enum([
|
|
2095
|
+
"3-D Graphics",
|
|
2096
|
+
"Action Video Games",
|
|
2097
|
+
"Action-Adventure Video Games",
|
|
2098
|
+
"Action/Adventure",
|
|
2099
|
+
"Adoption and Fostering",
|
|
2100
|
+
"Adult & Explicit Sexual Content",
|
|
2101
|
+
"Adult Album Alternative",
|
|
2102
|
+
"Adult Contemporary Music",
|
|
2103
|
+
"Adult Education",
|
|
2104
|
+
"Adult Video Games",
|
|
2105
|
+
"Adventure Travel",
|
|
2106
|
+
"Adventure Video Games",
|
|
2107
|
+
"Advertising Industry",
|
|
2108
|
+
"Africa Travel",
|
|
2109
|
+
"Agnosticism",
|
|
2110
|
+
"Agriculture",
|
|
2111
|
+
"Air Travel",
|
|
2112
|
+
"Album-oriented Rock",
|
|
2113
|
+
"Alcoholic Beverages",
|
|
2114
|
+
"Allergies",
|
|
2115
|
+
"Alternative Medicine",
|
|
2116
|
+
"Alternative Music",
|
|
2117
|
+
"Alternative Rock",
|
|
2118
|
+
"American Football",
|
|
2119
|
+
"Amusement and Theme Parks",
|
|
2120
|
+
"Angel Investment",
|
|
2121
|
+
"Animation & Anime",
|
|
2122
|
+
"Anniversary",
|
|
2123
|
+
"Antiquing and Antiques",
|
|
2124
|
+
"Antivirus Software",
|
|
2125
|
+
"Apartments",
|
|
2126
|
+
"Apparel Industry",
|
|
2127
|
+
"Apprenticeships",
|
|
2128
|
+
"Arms & Ammunition",
|
|
2129
|
+
"Art and Photography",
|
|
2130
|
+
"Artificial Intelligence",
|
|
2131
|
+
"Arts and Crafts",
|
|
2132
|
+
"Asia Travel",
|
|
2133
|
+
"Astrology",
|
|
2134
|
+
"Atheism",
|
|
2135
|
+
"Attractions",
|
|
2136
|
+
"Audio Production",
|
|
2137
|
+
"Augmented Reality",
|
|
2138
|
+
"Australia and Oceania Travel",
|
|
2139
|
+
"Australian Rules Football",
|
|
2140
|
+
"Auto Body Styles",
|
|
2141
|
+
"Auto Buying and Selling",
|
|
2142
|
+
"Auto Infotainment Technologies",
|
|
2143
|
+
"Auto Insurance",
|
|
2144
|
+
"Auto Navigation Systems",
|
|
2145
|
+
"Auto Parts",
|
|
2146
|
+
"Auto Racing",
|
|
2147
|
+
"Auto Recalls",
|
|
2148
|
+
"Auto Rentals",
|
|
2149
|
+
"Auto Repair",
|
|
2150
|
+
"Auto Safety",
|
|
2151
|
+
"Auto Safety Technologies",
|
|
2152
|
+
"Auto Shows",
|
|
2153
|
+
"Auto Technology",
|
|
2154
|
+
"Auto Type",
|
|
2155
|
+
"Automotive",
|
|
2156
|
+
"Automotive Industry",
|
|
2157
|
+
"Aviation Industry",
|
|
2158
|
+
"Awards Shows",
|
|
2159
|
+
"Baby Shower",
|
|
2160
|
+
"Bachelor Party",
|
|
2161
|
+
"Bachelorette Party",
|
|
2162
|
+
"Badminton",
|
|
2163
|
+
"Bankruptcy",
|
|
2164
|
+
"Barbecues and Grilling",
|
|
2165
|
+
"Bars & Restaurants",
|
|
2166
|
+
"Baseball",
|
|
2167
|
+
"Basketball",
|
|
2168
|
+
"Bath and Shower",
|
|
2169
|
+
"Beach Travel",
|
|
2170
|
+
"Beach Volleyball",
|
|
2171
|
+
"Beadwork",
|
|
2172
|
+
"Beauty",
|
|
2173
|
+
"Bed & Breakfasts",
|
|
2174
|
+
"Beekeeping",
|
|
2175
|
+
"Bereavement",
|
|
2176
|
+
"Biographies",
|
|
2177
|
+
"Biological Sciences",
|
|
2178
|
+
"Biotech and Biomedical Industry",
|
|
2179
|
+
"Birds",
|
|
2180
|
+
"Birdwatching",
|
|
2181
|
+
"Birth",
|
|
2182
|
+
"Birth Control",
|
|
2183
|
+
"Birthday",
|
|
2184
|
+
"Blood Disorders",
|
|
2185
|
+
"Blues",
|
|
2186
|
+
"Board Games and Puzzles",
|
|
2187
|
+
"Body Art",
|
|
2188
|
+
"Bodybuilding",
|
|
2189
|
+
"Bone and Joint Conditions",
|
|
2190
|
+
"Books and Literature",
|
|
2191
|
+
"Bowling",
|
|
2192
|
+
"Boxing",
|
|
2193
|
+
"Brain and Nervous System Disorders",
|
|
2194
|
+
"Browsers",
|
|
2195
|
+
"Buddhism",
|
|
2196
|
+
"Budget Cars",
|
|
2197
|
+
"Budget Travel",
|
|
2198
|
+
"Business",
|
|
2199
|
+
"Business Accounting & Finance",
|
|
2200
|
+
"Business Administration",
|
|
2201
|
+
"Business Banking & Finance",
|
|
2202
|
+
"Business Expos & Conferences",
|
|
2203
|
+
"Business I.T.",
|
|
2204
|
+
"Business Loans",
|
|
2205
|
+
"Business Operations",
|
|
2206
|
+
"Business Travel",
|
|
2207
|
+
"Business Utilities",
|
|
2208
|
+
"Business and Finance",
|
|
2209
|
+
"Cameras and Camcorders",
|
|
2210
|
+
"Camping",
|
|
2211
|
+
"Cancer",
|
|
2212
|
+
"Candle and Soap Making",
|
|
2213
|
+
"Canoeing and Kayaking",
|
|
2214
|
+
"Car Culture",
|
|
2215
|
+
"Card Games",
|
|
2216
|
+
"Career Advice",
|
|
2217
|
+
"Career Planning",
|
|
2218
|
+
"Careers",
|
|
2219
|
+
"Casino and Gambling Video Games",
|
|
2220
|
+
"Casinos & Gambling",
|
|
2221
|
+
"Casual Games",
|
|
2222
|
+
"Cats",
|
|
2223
|
+
"Celebrity Deaths",
|
|
2224
|
+
"Celebrity Families",
|
|
2225
|
+
"Celebrity Homes",
|
|
2226
|
+
"Celebrity Pregnancy",
|
|
2227
|
+
"Celebrity Relationships",
|
|
2228
|
+
"Celebrity Scandal",
|
|
2229
|
+
"Celebrity Style",
|
|
2230
|
+
"Certified Pre-Owned Cars",
|
|
2231
|
+
"Cheerleading",
|
|
2232
|
+
"Chemistry",
|
|
2233
|
+
"Children's Clothing",
|
|
2234
|
+
"Children's Games and Toys",
|
|
2235
|
+
"Children's Health",
|
|
2236
|
+
"Children's Music",
|
|
2237
|
+
"Christianity",
|
|
2238
|
+
"Cigars",
|
|
2239
|
+
"Civic affairs",
|
|
2240
|
+
"Civil Engineering Industry",
|
|
2241
|
+
"Classic Cars",
|
|
2242
|
+
"Classic Hits",
|
|
2243
|
+
"Classic Rock",
|
|
2244
|
+
"Classical Music",
|
|
2245
|
+
"Climbing",
|
|
2246
|
+
"Cloud Computing",
|
|
2247
|
+
"Cold and Flu",
|
|
2248
|
+
"Collecting",
|
|
2249
|
+
"College Baseball",
|
|
2250
|
+
"College Basketball",
|
|
2251
|
+
"College Education",
|
|
2252
|
+
"College Football",
|
|
2253
|
+
"College Planning",
|
|
2254
|
+
"College Radio",
|
|
2255
|
+
"College Sports",
|
|
2256
|
+
"Comedy",
|
|
2257
|
+
"Comedy (Music and Audio)",
|
|
2258
|
+
"Comic Books",
|
|
2259
|
+
"Comics and Graphic Novels",
|
|
2260
|
+
"Commercial Trucks",
|
|
2261
|
+
"Commodities",
|
|
2262
|
+
"Communication",
|
|
2263
|
+
"Computer Animation",
|
|
2264
|
+
"Computer Networking",
|
|
2265
|
+
"Computer Peripherals",
|
|
2266
|
+
"Computing",
|
|
2267
|
+
"Concept Cars",
|
|
2268
|
+
"Console Games",
|
|
2269
|
+
"Construction Industry",
|
|
2270
|
+
"Consumer Banking",
|
|
2271
|
+
"Consumer Electronics",
|
|
2272
|
+
"Consumer Issues",
|
|
2273
|
+
"Contemporary Hits/Pop/Top 40",
|
|
2274
|
+
"Content Production",
|
|
2275
|
+
"Convertible",
|
|
2276
|
+
"Cooking",
|
|
2277
|
+
"Cosmetic Medical Services",
|
|
2278
|
+
"Costume",
|
|
2279
|
+
"Country Music",
|
|
2280
|
+
"Coupe",
|
|
2281
|
+
"Coupons and Discounts",
|
|
2282
|
+
"Credit Cards",
|
|
2283
|
+
"Cricket",
|
|
2284
|
+
"Crime",
|
|
2285
|
+
"Crime & Harmful Acts to Individuals, Society & Human Right Violations",
|
|
2286
|
+
"Crossover",
|
|
2287
|
+
"Cruises",
|
|
2288
|
+
"Currencies",
|
|
2289
|
+
"Cycling",
|
|
2290
|
+
"Dance",
|
|
2291
|
+
"Dance and Electronic Music",
|
|
2292
|
+
"Darts",
|
|
2293
|
+
"Dash Cam Videos",
|
|
2294
|
+
"Data Storage and Warehousing",
|
|
2295
|
+
"Databases",
|
|
2296
|
+
"Dating",
|
|
2297
|
+
"Day Trips",
|
|
2298
|
+
"Daycare and Pre-School",
|
|
2299
|
+
"Death, Injury, or Military Conflict",
|
|
2300
|
+
"Debated Sensitive Social Issues",
|
|
2301
|
+
"Debt Factoring & Invoice Discounting",
|
|
2302
|
+
"Defense Industry",
|
|
2303
|
+
"Dental Health",
|
|
2304
|
+
"Deodorant and Antiperspirant",
|
|
2305
|
+
"Design",
|
|
2306
|
+
"Designer Clothing",
|
|
2307
|
+
"Desktop Publishing",
|
|
2308
|
+
"Desktops",
|
|
2309
|
+
"Desserts and Baking",
|
|
2310
|
+
"Developmental Sites",
|
|
2311
|
+
"Diabetes",
|
|
2312
|
+
"Digestive Disorders",
|
|
2313
|
+
"Digital Arts",
|
|
2314
|
+
"Digital Audio",
|
|
2315
|
+
"Dining Out",
|
|
2316
|
+
"Disabled Sports",
|
|
2317
|
+
"Disasters",
|
|
2318
|
+
"Diseases and Conditions",
|
|
2319
|
+
"Diving",
|
|
2320
|
+
"Divorce",
|
|
2321
|
+
"Documentary",
|
|
2322
|
+
"Dogs",
|
|
2323
|
+
"Drama",
|
|
2324
|
+
"Drawing and Sketching",
|
|
2325
|
+
"Driverless Cars",
|
|
2326
|
+
"Ear, Nose and Throat Conditions",
|
|
2327
|
+
"Early Childhood Education",
|
|
2328
|
+
"Economy",
|
|
2329
|
+
"Education",
|
|
2330
|
+
"Education industry",
|
|
2331
|
+
"Educational Assessment",
|
|
2332
|
+
"Educational Video Games",
|
|
2333
|
+
"Eldercare",
|
|
2334
|
+
"Elections",
|
|
2335
|
+
"Email",
|
|
2336
|
+
"Endocrine and Metabolic Diseases",
|
|
2337
|
+
"Entertainment",
|
|
2338
|
+
"Entertainment Industry",
|
|
2339
|
+
"Environment",
|
|
2340
|
+
"Environmental Services Industry",
|
|
2341
|
+
"Equine Sports",
|
|
2342
|
+
"Europe Travel",
|
|
2343
|
+
"Events",
|
|
2344
|
+
"Executive Leadership & Management",
|
|
2345
|
+
"Exercise and Fitness Video Games",
|
|
2346
|
+
"Extreme Sports",
|
|
2347
|
+
"Eye and Vision Conditions",
|
|
2348
|
+
"Factual",
|
|
2349
|
+
"Family Travel",
|
|
2350
|
+
"Family Video Games",
|
|
2351
|
+
"Family and Relationships",
|
|
2352
|
+
"Family/Children",
|
|
2353
|
+
"Fan Conventions",
|
|
2354
|
+
"Fantasy",
|
|
2355
|
+
"Fantasy Sports",
|
|
2356
|
+
"Fashion Trends",
|
|
2357
|
+
"Fiction",
|
|
2358
|
+
"Field Hockey",
|
|
2359
|
+
"Figure Skating",
|
|
2360
|
+
"Financial Assistance",
|
|
2361
|
+
"Financial Crisis",
|
|
2362
|
+
"Financial Industry",
|
|
2363
|
+
"Financial Planning",
|
|
2364
|
+
"Financial Reform",
|
|
2365
|
+
"Financial Regulation",
|
|
2366
|
+
"Fine Art",
|
|
2367
|
+
"Fine Art Photography",
|
|
2368
|
+
"First Aid",
|
|
2369
|
+
"Fish and Aquariums",
|
|
2370
|
+
"Fishing Sports",
|
|
2371
|
+
"Fitness and Exercise",
|
|
2372
|
+
"Flower Shopping",
|
|
2373
|
+
"Food & Drink",
|
|
2374
|
+
"Food Allergies",
|
|
2375
|
+
"Food Industry",
|
|
2376
|
+
"Food Movements",
|
|
2377
|
+
"Foot Health",
|
|
2378
|
+
"Freelance Writing",
|
|
2379
|
+
"Frugal Living",
|
|
2380
|
+
"Funeral",
|
|
2381
|
+
"Games and Puzzles",
|
|
2382
|
+
"Gardening",
|
|
2383
|
+
"Gas and Electric",
|
|
2384
|
+
"Gasoline Prices",
|
|
2385
|
+
"Genealogy and Ancestry",
|
|
2386
|
+
"Genetics",
|
|
2387
|
+
"Genres",
|
|
2388
|
+
"Geography",
|
|
2389
|
+
"Geology",
|
|
2390
|
+
"Gifts and Greetings Cards",
|
|
2391
|
+
"Golf",
|
|
2392
|
+
"Gospel Music",
|
|
2393
|
+
"Government Business",
|
|
2394
|
+
"Government Support and Welfare",
|
|
2395
|
+
"Graduation",
|
|
2396
|
+
"Graphics Software",
|
|
2397
|
+
"Green Solutions",
|
|
2398
|
+
"Green Vehicles",
|
|
2399
|
+
"Grocery Shopping",
|
|
2400
|
+
"Gymnastics",
|
|
2401
|
+
"Hair Care",
|
|
2402
|
+
"Hard Rock",
|
|
2403
|
+
"Hatchback",
|
|
2404
|
+
"Hate Speech and Acts of Aggression",
|
|
2405
|
+
"Health Insurance",
|
|
2406
|
+
"Healthcare Industry",
|
|
2407
|
+
"Healthy Cooking and Eating",
|
|
2408
|
+
"Healthy Living",
|
|
2409
|
+
"Heart and Cardiovascular Diseases",
|
|
2410
|
+
"Hedge Funds",
|
|
2411
|
+
"Herbs and Supplements",
|
|
2412
|
+
"High Fashion",
|
|
2413
|
+
"Hinduism",
|
|
2414
|
+
"Hip Hop Music",
|
|
2415
|
+
"Historic Site and Landmark Tours",
|
|
2416
|
+
"History",
|
|
2417
|
+
"Hobbies & Interests",
|
|
2418
|
+
"Holiday",
|
|
2419
|
+
"Holiday Shopping",
|
|
2420
|
+
"Holidays",
|
|
2421
|
+
"Holistic Health",
|
|
2422
|
+
"Home & Garden",
|
|
2423
|
+
"Home Appliances",
|
|
2424
|
+
"Home Entertaining",
|
|
2425
|
+
"Home Entertainment Systems",
|
|
2426
|
+
"Home Financing",
|
|
2427
|
+
"Home Improvement",
|
|
2428
|
+
"Home Insurance",
|
|
2429
|
+
"Home Security",
|
|
2430
|
+
"Home Utilities",
|
|
2431
|
+
"Homeschooling",
|
|
2432
|
+
"Homework and Study",
|
|
2433
|
+
"Honeymoons and Getaways",
|
|
2434
|
+
"Hormonal Disorders",
|
|
2435
|
+
"Horror",
|
|
2436
|
+
"Horror Video Games",
|
|
2437
|
+
"Horse Racing",
|
|
2438
|
+
"Hospitality Industry",
|
|
2439
|
+
"Hotel Properties",
|
|
2440
|
+
"Hotels and Motels",
|
|
2441
|
+
"Household Supplies",
|
|
2442
|
+
"Houses",
|
|
2443
|
+
"Housing Market",
|
|
2444
|
+
"Human Resources",
|
|
2445
|
+
"Humor and Satire",
|
|
2446
|
+
"Hunting and Shooting",
|
|
2447
|
+
"IT and Internet Support",
|
|
2448
|
+
"Ice Hockey",
|
|
2449
|
+
"Illegal Drugs, Tobacco, eCigarettes, Vaping, Alcohol",
|
|
2450
|
+
"Indoor Environmental Quality",
|
|
2451
|
+
"Industrial Property",
|
|
2452
|
+
"Industries",
|
|
2453
|
+
"Infectious Diseases",
|
|
2454
|
+
"Infertility",
|
|
2455
|
+
"Information Services Industry",
|
|
2456
|
+
"Information and Network Security",
|
|
2457
|
+
"Injuries",
|
|
2458
|
+
"Inline Skating",
|
|
2459
|
+
"Inspirational/New Age Music",
|
|
2460
|
+
"Insurance",
|
|
2461
|
+
"Interest Rates",
|
|
2462
|
+
"Interior Decorating",
|
|
2463
|
+
"Internet",
|
|
2464
|
+
"Internet Safety",
|
|
2465
|
+
"Internet Service Providers",
|
|
2466
|
+
"Internet for Beginners",
|
|
2467
|
+
"Internet of Things",
|
|
2468
|
+
"Islam",
|
|
2469
|
+
"Jazz",
|
|
2470
|
+
"Jewelry Making",
|
|
2471
|
+
"Job Fairs",
|
|
2472
|
+
"Job Market",
|
|
2473
|
+
"Job Search",
|
|
2474
|
+
"Judaism",
|
|
2475
|
+
"Lacrosse",
|
|
2476
|
+
"Land and Farms",
|
|
2477
|
+
"Landscaping",
|
|
2478
|
+
"Language Learning",
|
|
2479
|
+
"Laptops",
|
|
2480
|
+
"Large Animals",
|
|
2481
|
+
"Large Business",
|
|
2482
|
+
"Law",
|
|
2483
|
+
"Legal Services Industry",
|
|
2484
|
+
"Life Insurance",
|
|
2485
|
+
"Lifestyle",
|
|
2486
|
+
"Logistics",
|
|
2487
|
+
"Logistics and Transportation Industry",
|
|
2488
|
+
"Lotteries and Scratchcards",
|
|
2489
|
+
"Lung and Respiratory Health",
|
|
2490
|
+
"Luxury Cars",
|
|
2491
|
+
"MMOs",
|
|
2492
|
+
"Magic and Illusion",
|
|
2493
|
+
"Makeup and Accessories",
|
|
2494
|
+
"Malls & Shopping Centers",
|
|
2495
|
+
"Management Consulting Industry",
|
|
2496
|
+
"Manufacturing Industry",
|
|
2497
|
+
"Maps & Navigation",
|
|
2498
|
+
"Marketing and Advertising",
|
|
2499
|
+
"Marriage and Civil Unions",
|
|
2500
|
+
"Martial Arts",
|
|
2501
|
+
"Mechanical and Industrial Engineering Industry",
|
|
2502
|
+
"Media Industry",
|
|
2503
|
+
"Medical Health",
|
|
2504
|
+
"Medical Tests",
|
|
2505
|
+
"Men's Accessories",
|
|
2506
|
+
"Men's Business Wear",
|
|
2507
|
+
"Men's Casual Wear",
|
|
2508
|
+
"Men's Clothing",
|
|
2509
|
+
"Men's Fashion",
|
|
2510
|
+
"Men's Formal Wear",
|
|
2511
|
+
"Men's Health",
|
|
2512
|
+
"Men's Jewelry and Watches",
|
|
2513
|
+
"Men's Outerwear",
|
|
2514
|
+
"Men's Shoes and Footwear",
|
|
2515
|
+
"Men's Sportswear",
|
|
2516
|
+
"Men's Underwear and Sleepwear",
|
|
2517
|
+
"Menopause",
|
|
2518
|
+
"Mental Health",
|
|
2519
|
+
"Mergers and Acquisitions",
|
|
2520
|
+
"Metals Industry",
|
|
2521
|
+
"Microcar",
|
|
2522
|
+
"Minivan",
|
|
2523
|
+
"Mobile Games",
|
|
2524
|
+
"Model Toys",
|
|
2525
|
+
"Modern Art",
|
|
2526
|
+
"Motor Insurance",
|
|
2527
|
+
"Motorcycle Sports",
|
|
2528
|
+
"Motorcycles",
|
|
2529
|
+
"Movies",
|
|
2530
|
+
"Museums & Galleries",
|
|
2531
|
+
"Music",
|
|
2532
|
+
"Music Video",
|
|
2533
|
+
"Music and Party Video Games",
|
|
2534
|
+
"Musical Instruments",
|
|
2535
|
+
"Musicals",
|
|
2536
|
+
"Mutual Funds",
|
|
2537
|
+
"Mystery",
|
|
2538
|
+
"Nail Care",
|
|
2539
|
+
"National & Civic Holidays",
|
|
2540
|
+
"Natural and Organic Beauty",
|
|
2541
|
+
"Nature",
|
|
2542
|
+
"Needlework",
|
|
2543
|
+
"Nightclubs",
|
|
2544
|
+
"Non-Alcoholic Beverages",
|
|
2545
|
+
"Non-Profit Organizations",
|
|
2546
|
+
"North America Travel",
|
|
2547
|
+
"Nutrition",
|
|
2548
|
+
"Obscenity and Profanity",
|
|
2549
|
+
"Off-Road Vehicles",
|
|
2550
|
+
"Office Property",
|
|
2551
|
+
"Oldies/Adult Standards",
|
|
2552
|
+
"Olympic Sports",
|
|
2553
|
+
"Online Education",
|
|
2554
|
+
"Online Piracy",
|
|
2555
|
+
"Opera",
|
|
2556
|
+
"Operating Systems",
|
|
2557
|
+
"Options",
|
|
2558
|
+
"Oral care",
|
|
2559
|
+
"Outdoor Attractions",
|
|
2560
|
+
"Outdoor Decorating",
|
|
2561
|
+
"PC Games",
|
|
2562
|
+
"Paintball",
|
|
2563
|
+
"Painting",
|
|
2564
|
+
"Paranormal Phenomena",
|
|
2565
|
+
"Parenting",
|
|
2566
|
+
"Parenting Babies and Toddlers",
|
|
2567
|
+
"Parenting Children Aged 4-11",
|
|
2568
|
+
"Parenting Teens",
|
|
2569
|
+
"Parks",
|
|
2570
|
+
"Participant Sports",
|
|
2571
|
+
"Party Supplies and Decorations",
|
|
2572
|
+
"Performance Cars",
|
|
2573
|
+
"Perfume and Fragrance",
|
|
2574
|
+
"Personal Care",
|
|
2575
|
+
"Personal Celebrations & Life Events",
|
|
2576
|
+
"Personal Debt",
|
|
2577
|
+
"Personal Finance",
|
|
2578
|
+
"Personal Investing",
|
|
2579
|
+
"Personal Loans",
|
|
2580
|
+
"Personal Taxes",
|
|
2581
|
+
"Pet Adoptions",
|
|
2582
|
+
"Pet Insurance",
|
|
2583
|
+
"Pet Supplies",
|
|
2584
|
+
"Pets",
|
|
2585
|
+
"Pharmaceutical Drugs",
|
|
2586
|
+
"Pharmaceutical Industry",
|
|
2587
|
+
"Phone Services",
|
|
2588
|
+
"Photo Editing Software",
|
|
2589
|
+
"Photography",
|
|
2590
|
+
"Physical Therapy",
|
|
2591
|
+
"Physics",
|
|
2592
|
+
"Pickup Trucks",
|
|
2593
|
+
"Poetry",
|
|
2594
|
+
"Poker and Professional Gambling",
|
|
2595
|
+
"Polar Travel",
|
|
2596
|
+
"Political Issues & Policy",
|
|
2597
|
+
"Politics",
|
|
2598
|
+
"Pop Culture",
|
|
2599
|
+
"Postgraduate Education",
|
|
2600
|
+
"Power and Energy Industry",
|
|
2601
|
+
"Pregnancy",
|
|
2602
|
+
"Primary Education",
|
|
2603
|
+
"Private Equity",
|
|
2604
|
+
"Private School",
|
|
2605
|
+
"Productivity",
|
|
2606
|
+
"Professional School",
|
|
2607
|
+
"Programming Languages",
|
|
2608
|
+
"Prom",
|
|
2609
|
+
"Public Radio",
|
|
2610
|
+
"Publishing Industry",
|
|
2611
|
+
"Puzzle Video Games",
|
|
2612
|
+
"R&B/Soul/Funk",
|
|
2613
|
+
"Racing Video Games",
|
|
2614
|
+
"Radio Control",
|
|
2615
|
+
"Rail Travel",
|
|
2616
|
+
"Real Estate",
|
|
2617
|
+
"Real Estate Buying and Selling",
|
|
2618
|
+
"Real Estate Industry",
|
|
2619
|
+
"Real Estate Renting and Leasing",
|
|
2620
|
+
"Reality TV",
|
|
2621
|
+
"Recalls",
|
|
2622
|
+
"Reggae",
|
|
2623
|
+
"Religion & Spirituality",
|
|
2624
|
+
"Religious (Music and Audio)",
|
|
2625
|
+
"Remodeling & Construction",
|
|
2626
|
+
"Remote Working",
|
|
2627
|
+
"Reproductive Health",
|
|
2628
|
+
"Reptiles",
|
|
2629
|
+
"Resume Writing and Advice",
|
|
2630
|
+
"Retail Industry",
|
|
2631
|
+
"Retail Property",
|
|
2632
|
+
"Retirement Planning",
|
|
2633
|
+
"Road Trips",
|
|
2634
|
+
"Road-Side Assistance",
|
|
2635
|
+
"Robotics",
|
|
2636
|
+
"Rock Music",
|
|
2637
|
+
"Rodeo",
|
|
2638
|
+
"Role-Playing Video Games",
|
|
2639
|
+
"Roleplaying Games",
|
|
2640
|
+
"Romance",
|
|
2641
|
+
"Rowing",
|
|
2642
|
+
"Rugby",
|
|
2643
|
+
"Rugby League",
|
|
2644
|
+
"Rugby Union",
|
|
2645
|
+
"Running and Jogging",
|
|
2646
|
+
"SUV",
|
|
2647
|
+
"Sailing",
|
|
2648
|
+
"Sale & Lease Back",
|
|
2649
|
+
"Sales",
|
|
2650
|
+
"Sales and Promotions",
|
|
2651
|
+
"Sci-fi and Fantasy",
|
|
2652
|
+
"Science",
|
|
2653
|
+
"Science Fiction",
|
|
2654
|
+
"Scooters",
|
|
2655
|
+
"Scrapbooking",
|
|
2656
|
+
"Screenwriting",
|
|
2657
|
+
"Scuba Diving",
|
|
2658
|
+
"Search",
|
|
2659
|
+
"Secondary Education",
|
|
2660
|
+
"Sedan",
|
|
2661
|
+
"Senior Health",
|
|
2662
|
+
"Sensitive Topics",
|
|
2663
|
+
"Sexual Conditions",
|
|
2664
|
+
"Sexual Health",
|
|
2665
|
+
"Shareware and Freeware",
|
|
2666
|
+
"Shaving",
|
|
2667
|
+
"Shopping",
|
|
2668
|
+
"Sikhism",
|
|
2669
|
+
"Simulation Video Games",
|
|
2670
|
+
"Single Life",
|
|
2671
|
+
"Skateboarding",
|
|
2672
|
+
"Skiing",
|
|
2673
|
+
"Skin Care",
|
|
2674
|
+
"Skin and Dermatology",
|
|
2675
|
+
"Sleep Disorders",
|
|
2676
|
+
"Small and Medium-sized Business",
|
|
2677
|
+
"Smart Home",
|
|
2678
|
+
"Smartphones",
|
|
2679
|
+
"Smoking Cessation",
|
|
2680
|
+
"Snooker/Pool/Billiards",
|
|
2681
|
+
"Snowboarding",
|
|
2682
|
+
"Soap Opera",
|
|
2683
|
+
"Soccer",
|
|
2684
|
+
"Social Networking",
|
|
2685
|
+
"Soft AC Music",
|
|
2686
|
+
"Soft Rock",
|
|
2687
|
+
"Softball",
|
|
2688
|
+
"Software and Applications",
|
|
2689
|
+
"Songwriters/Folk",
|
|
2690
|
+
"Soundtracks, TV and Showtunes",
|
|
2691
|
+
"South America Travel",
|
|
2692
|
+
"Space and Astronomy",
|
|
2693
|
+
"Spam or Harmful Content",
|
|
2694
|
+
"Spas",
|
|
2695
|
+
"Special Education",
|
|
2696
|
+
"Special Interest (Indie/Art House)",
|
|
2697
|
+
"Special Needs Kids",
|
|
2698
|
+
"Spirituality",
|
|
2699
|
+
"Sports",
|
|
2700
|
+
"Sports Equipment",
|
|
2701
|
+
"Sports Radio",
|
|
2702
|
+
"Sports Video Games",
|
|
2703
|
+
"Squash",
|
|
2704
|
+
"Stamps and Coins",
|
|
2705
|
+
"Standardized Testing",
|
|
2706
|
+
"Startups",
|
|
2707
|
+
"Station Wagon",
|
|
2708
|
+
"Stocks and Bonds",
|
|
2709
|
+
"Strategy Video Games",
|
|
2710
|
+
"Street Style",
|
|
2711
|
+
"Student Financial Aid",
|
|
2712
|
+
"Student Loans",
|
|
2713
|
+
"Style & Fashion",
|
|
2714
|
+
"Substance Abuse",
|
|
2715
|
+
"Summer Olympic Sports",
|
|
2716
|
+
"Surfing and Bodyboarding",
|
|
2717
|
+
"Surgery",
|
|
2718
|
+
"Swimming",
|
|
2719
|
+
"Table Tennis",
|
|
2720
|
+
"Tablets and E-readers",
|
|
2721
|
+
"Talk Radio",
|
|
2722
|
+
"Talk Show",
|
|
2723
|
+
"Technology & Computing",
|
|
2724
|
+
"Technology Industry",
|
|
2725
|
+
"Telecommunications Industry",
|
|
2726
|
+
"Television",
|
|
2727
|
+
"Tennis",
|
|
2728
|
+
"Terrorism",
|
|
2729
|
+
"Theater",
|
|
2730
|
+
"Theater Venues",
|
|
2731
|
+
"Thriller",
|
|
2732
|
+
"Thyroid Disorders",
|
|
2733
|
+
"Track and Field",
|
|
2734
|
+
"Travel",
|
|
2735
|
+
"Travel Accessories",
|
|
2736
|
+
"Travel Insurance",
|
|
2737
|
+
"Travel Locations",
|
|
2738
|
+
"Travel Preparation and Advice",
|
|
2739
|
+
"Travel Type",
|
|
2740
|
+
"True Crime",
|
|
2741
|
+
"Undergraduate Education",
|
|
2742
|
+
"Urban AC Music",
|
|
2743
|
+
"Urban Contemporary Music",
|
|
2744
|
+
"Vacation Properties",
|
|
2745
|
+
"Vaccines",
|
|
2746
|
+
"Van",
|
|
2747
|
+
"Variety (Music and Audio)",
|
|
2748
|
+
"Vegan Diets",
|
|
2749
|
+
"Vegetarian Diets",
|
|
2750
|
+
"Venture Capital",
|
|
2751
|
+
"Veterinary Medicine",
|
|
2752
|
+
"Video Game Genres",
|
|
2753
|
+
"Video Gaming",
|
|
2754
|
+
"Video Production",
|
|
2755
|
+
"Video Software",
|
|
2756
|
+
"Virtual Reality",
|
|
2757
|
+
"Vocational Training",
|
|
2758
|
+
"Volleyball",
|
|
2759
|
+
"Walking",
|
|
2760
|
+
"War and Conflicts",
|
|
2761
|
+
"Water Polo",
|
|
2762
|
+
"Water Services",
|
|
2763
|
+
"Waterskiing and Wakeboarding",
|
|
2764
|
+
"Wearable Technology",
|
|
2765
|
+
"Weather",
|
|
2766
|
+
"Web Conferencing",
|
|
2767
|
+
"Web Design and HTML",
|
|
2768
|
+
"Web Development",
|
|
2769
|
+
"Web Hosting",
|
|
2770
|
+
"Wedding",
|
|
2771
|
+
"Weight Loss",
|
|
2772
|
+
"Weightlifting",
|
|
2773
|
+
"Wellness",
|
|
2774
|
+
"Western",
|
|
2775
|
+
"Winter Olympic Sports",
|
|
2776
|
+
"Women's Accessories",
|
|
2777
|
+
"Women's Business Wear",
|
|
2778
|
+
"Women's Casual Wear",
|
|
2779
|
+
"Women's Clothing",
|
|
2780
|
+
"Women's Fashion",
|
|
2781
|
+
"Women's Formal Wear",
|
|
2782
|
+
"Women's Glasses",
|
|
2783
|
+
"Women's Handbags and Wallets",
|
|
2784
|
+
"Women's Hats and Scarves",
|
|
2785
|
+
"Women's Health",
|
|
2786
|
+
"Women's Intimates and Sleepwear",
|
|
2787
|
+
"Women's Jewelry and Watches",
|
|
2788
|
+
"Women's Outerwear",
|
|
2789
|
+
"Women's Shoes and Footwear",
|
|
2790
|
+
"Women's Sportswear",
|
|
2791
|
+
"Woodworking",
|
|
2792
|
+
"Workshops and Classes",
|
|
2793
|
+
"World Cuisines",
|
|
2794
|
+
"World/International Music",
|
|
2795
|
+
"Wrestling",
|
|
2796
|
+
"Young Adult",
|
|
2797
|
+
"Zoos & Aquariums",
|
|
2798
|
+
"eSports"
|
|
2799
|
+
]);
|
|
405
2800
|
|
|
406
2801
|
// src/utils/llm.ts
|
|
407
2802
|
var defaultModel = "google/gemini-2.0-flash-001";
|
|
@@ -551,18 +2946,18 @@ var stdSearchParams = import_zod4.z.object({
|
|
|
551
2946
|
must_include: import_zod4.z.array(import_zod4.z.string()).max(100).optional(),
|
|
552
2947
|
must_exclude: import_zod4.z.array(import_zod4.z.string()).max(100).optional(),
|
|
553
2948
|
brand_safety: brandSafetyEnum.optional(),
|
|
554
|
-
language:
|
|
2949
|
+
language: languageEnum.optional(),
|
|
555
2950
|
continent: continentEnum.optional(),
|
|
556
2951
|
region: regionEnum.optional(),
|
|
557
|
-
country:
|
|
558
|
-
sector:
|
|
559
|
-
industry_group:
|
|
560
|
-
industry:
|
|
561
|
-
sub_industry:
|
|
562
|
-
iab_tier_1:
|
|
563
|
-
iab_tier_2:
|
|
564
|
-
iab_tier_3:
|
|
565
|
-
iab_tier_4:
|
|
2952
|
+
country: countryEnum.optional(),
|
|
2953
|
+
sector: sectorEnum.optional(),
|
|
2954
|
+
industry_group: industryGroupEnum.optional(),
|
|
2955
|
+
industry: industryEnum.optional(),
|
|
2956
|
+
sub_industry: subIndustryEnum.optional(),
|
|
2957
|
+
iab_tier_1: iabTier1Enum.optional(),
|
|
2958
|
+
iab_tier_2: iabTier2Enum.optional(),
|
|
2959
|
+
iab_tier_3: iabTier3Enum.optional(),
|
|
2960
|
+
iab_tier_4: iabTier4Enum.optional(),
|
|
566
2961
|
companies: import_zod4.z.array(import_zod4.z.string()).max(30).optional()
|
|
567
2962
|
});
|
|
568
2963
|
var fastSearchParamsSchema = import_zod4.z.object({
|
|
@@ -668,18 +3063,18 @@ var userSearchParamsSchema = sqlFilterSchema.extend({
|
|
|
668
3063
|
mustInclude: import_zod5.z.array(import_zod5.z.string()).max(100).optional(),
|
|
669
3064
|
mustExclude: import_zod5.z.array(import_zod5.z.string()).max(100).optional(),
|
|
670
3065
|
brandSafety: brandSafetyEnum.optional(),
|
|
671
|
-
language:
|
|
3066
|
+
language: languageEnum.optional(),
|
|
672
3067
|
continent: continentEnum.optional(),
|
|
673
3068
|
region: regionEnum.optional(),
|
|
674
|
-
country:
|
|
675
|
-
sector:
|
|
676
|
-
industryGroup:
|
|
677
|
-
industry:
|
|
678
|
-
subIndustry:
|
|
679
|
-
iabTier1:
|
|
680
|
-
iabTier2:
|
|
681
|
-
iabTier3:
|
|
682
|
-
iabTier4:
|
|
3069
|
+
country: countryEnum.optional(),
|
|
3070
|
+
sector: sectorEnum.optional(),
|
|
3071
|
+
industryGroup: industryGroupEnum.optional(),
|
|
3072
|
+
industry: industryEnum.optional(),
|
|
3073
|
+
subIndustry: subIndustryEnum.optional(),
|
|
3074
|
+
iabTier1: iabTier1Enum.optional(),
|
|
3075
|
+
iabTier2: iabTier2Enum.optional(),
|
|
3076
|
+
iabTier3: iabTier3Enum.optional(),
|
|
3077
|
+
iabTier4: iabTier4Enum.optional(),
|
|
683
3078
|
companies: import_zod5.z.array(import_zod5.z.string()).max(30).optional()
|
|
684
3079
|
});
|
|
685
3080
|
var clientDefaultSearchParamsSchema = userSearchParamsSchema.omit({
|
|
@@ -1807,4 +4202,4 @@ class NosibleClient {
|
|
|
1807
4202
|
}
|
|
1808
4203
|
}
|
|
1809
4204
|
|
|
1810
|
-
//# debugId=
|
|
4205
|
+
//# debugId=F45990CFE037C16964756E2164756E21
|