inferred-types 0.50.3 → 0.50.6

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.
Files changed (55) hide show
  1. package/dist/constants/ISO3166.d.ts +1001 -0
  2. package/dist/constants/ISO3166.d.ts.map +1 -0
  3. package/dist/constants/ISO3166.js +6 -0
  4. package/dist/constants/Retail.d.ts +27 -0
  5. package/dist/constants/Retail.d.ts.map +1 -0
  6. package/dist/constants/Retail.js +89 -0
  7. package/dist/constants/index.d.ts +2 -0
  8. package/dist/constants/index.d.ts.map +1 -1
  9. package/dist/constants/index.js +2 -0
  10. package/dist/constants/tsconfig.tsbuildinfo +1 -1
  11. package/dist/index.cjs +581 -13
  12. package/dist/index.js +523 -13
  13. package/dist/inferred-types/tsconfig.tsbuildinfo +1 -1
  14. package/dist/runtime/tsconfig.tsbuildinfo +1 -1
  15. package/dist/runtime/type-guards/countries/index.d.ts +2 -0
  16. package/dist/runtime/type-guards/countries/index.d.ts.map +1 -0
  17. package/dist/runtime/type-guards/countries/index.js +1 -0
  18. package/dist/runtime/type-guards/countries/isIso3166Alpha2.d.ts +7 -0
  19. package/dist/runtime/type-guards/countries/isIso3166Alpha2.d.ts.map +1 -0
  20. package/dist/runtime/type-guards/countries/isIso3166Alpha2.js +10 -0
  21. package/dist/runtime/type-guards/github.d.ts +95 -0
  22. package/dist/runtime/type-guards/github.d.ts.map +1 -0
  23. package/dist/runtime/type-guards/github.js +139 -0
  24. package/dist/runtime/type-guards/index.d.ts +3 -0
  25. package/dist/runtime/type-guards/index.d.ts.map +1 -1
  26. package/dist/runtime/type-guards/index.js +3 -0
  27. package/dist/runtime/type-guards/isUrl.d.ts +1 -1
  28. package/dist/runtime/type-guards/isUrl.d.ts.map +1 -1
  29. package/dist/runtime/type-guards/repos.d.ts +1 -14
  30. package/dist/runtime/type-guards/repos.d.ts.map +1 -1
  31. package/dist/runtime/type-guards/repos.js +0 -21
  32. package/dist/runtime/type-guards/retail.d.ts +107 -0
  33. package/dist/runtime/type-guards/retail.d.ts.map +1 -0
  34. package/dist/runtime/type-guards/retail.js +149 -0
  35. package/dist/runtime/type-guards/youtube.d.ts +28 -0
  36. package/dist/runtime/type-guards/youtube.d.ts.map +1 -1
  37. package/dist/runtime/type-guards/youtube.js +41 -1
  38. package/dist/types/string-literals/character-sets/Country.d.ts +20 -0
  39. package/dist/types/string-literals/character-sets/Country.d.ts.map +1 -0
  40. package/dist/types/string-literals/character-sets/Country.js +1 -0
  41. package/dist/types/string-literals/character-sets/Github.d.ts +113 -0
  42. package/dist/types/string-literals/character-sets/Github.d.ts.map +1 -0
  43. package/dist/types/string-literals/character-sets/Github.js +1 -0
  44. package/dist/types/string-literals/character-sets/Repos.d.ts +2 -74
  45. package/dist/types/string-literals/character-sets/Repos.d.ts.map +1 -1
  46. package/dist/types/string-literals/character-sets/Url.d.ts +9 -1
  47. package/dist/types/string-literals/character-sets/Url.d.ts.map +1 -1
  48. package/dist/types/string-literals/character-sets/index.d.ts +3 -0
  49. package/dist/types/string-literals/character-sets/index.d.ts.map +1 -1
  50. package/dist/types/string-literals/character-sets/index.js +3 -0
  51. package/dist/types/string-literals/character-sets/retail-urls.d.ts +26 -0
  52. package/dist/types/string-literals/character-sets/retail-urls.d.ts.map +1 -0
  53. package/dist/types/string-literals/character-sets/retail-urls.js +1 -0
  54. package/dist/types/tsconfig.tsbuildinfo +1 -1
  55. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -1379,6 +1379,346 @@ var TW_CHROMA_800 = TW_CHROMA["800"];
1379
1379
  var TW_CHROMA_900 = TW_CHROMA["900"];
1380
1380
  var TW_CHROMA_950 = TW_CHROMA["950"];
1381
1381
 
1382
+ // src/constants/Retail.ts
1383
+ var AMAZON_DNS = [
1384
+ "www.amazon.com",
1385
+ `www.amazon.co.uk`,
1386
+ `www.amazon.fr`,
1387
+ `www.amazon.de`,
1388
+ `www.amazon.it`,
1389
+ `www.amazon.es`
1390
+ ];
1391
+ var WALMART_DNS = [
1392
+ "www.walmart.com",
1393
+ "www.walmart.ca",
1394
+ "www.walmart.com.mx"
1395
+ ];
1396
+ var APPLE_DNS = [
1397
+ "store.apple.com",
1398
+ "www.apple.com"
1399
+ ];
1400
+ var HOME_DEPOT_DNS = [
1401
+ "www.homedepot.com",
1402
+ "www.homedepot.ca"
1403
+ ];
1404
+ var EBAY_DNS = [
1405
+ "www.ebay.com",
1406
+ "www.ebay.co.uk",
1407
+ "www.ebay.fr",
1408
+ "www.ebay.de",
1409
+ "www.ebay.it"
1410
+ ];
1411
+ var TARGET_DNS = [
1412
+ "www.target.com"
1413
+ ];
1414
+ var ETSY_DNS = [
1415
+ "www.etsy.com"
1416
+ ];
1417
+ var COSTCO_DNS = [
1418
+ "www.costco.com",
1419
+ "www.costco.co.uk",
1420
+ "www.costco.ca"
1421
+ ];
1422
+ var CHEWY_DNS = [
1423
+ "www.chewy.com"
1424
+ ];
1425
+ var BEST_BUY_DNS = [
1426
+ "www.bestbuy.com",
1427
+ "www.bestbuy.ca"
1428
+ ];
1429
+ var WAYFAIR_DNS = [
1430
+ "www.wayfair.com",
1431
+ "www.wayfair.ca",
1432
+ "www.wayfair.co.uk"
1433
+ ];
1434
+ var NIKE_DNS = [
1435
+ "www.nike.com"
1436
+ ];
1437
+ var MACYS_DNS = [
1438
+ "www.macys.com"
1439
+ ];
1440
+ var LOWES_DNS = [
1441
+ "www.lowes.com"
1442
+ ];
1443
+ var IKEA_DNS = [
1444
+ "www.ikea.com"
1445
+ ];
1446
+ var DELL_DNS = [
1447
+ "www.dell.com"
1448
+ ];
1449
+ var HM_DNS = [
1450
+ "www2.hm.com"
1451
+ ];
1452
+ var ZARA_DNS = [
1453
+ "www.zara.com"
1454
+ ];
1455
+ var KROGER_DNS = [
1456
+ "www.kroger.com"
1457
+ ];
1458
+ var WALGREENS_DNS = [
1459
+ "www.walgreens.com"
1460
+ ];
1461
+ var CVS_DNS = [
1462
+ "www.cvs.com"
1463
+ ];
1464
+ var WHOLE_FOODS_DNS = [
1465
+ "www.wholefoodsmarket.com",
1466
+ "www.wholefoodsmarket.co.uk"
1467
+ ];
1468
+
1469
+ // src/constants/ISO3166.ts
1470
+ var ISO3166_1 = [
1471
+ { "name": "Afghanistan", "alpha-2": "AF", "country-code": "004" },
1472
+ { "name": "\xC5land Islands", "alpha-2": "AX", "country-code": "248" },
1473
+ { "name": "Albania", "alpha-2": "AL", "country-code": "008" },
1474
+ { "name": "Algeria", "alpha-2": "DZ", "country-code": "012" },
1475
+ { "name": "American Samoa", "alpha-2": "AS", "country-code": "016" },
1476
+ { "name": "Andorra", "alpha-2": "AD", "country-code": "020" },
1477
+ { "name": "Angola", "alpha-2": "AO", "country-code": "024" },
1478
+ { "name": "Anguilla", "alpha-2": "AI", "country-code": "660" },
1479
+ { "name": "Antarctica", "alpha-2": "AQ", "country-code": "010" },
1480
+ { "name": "Antigua and Barbuda", "alpha-2": "AG", "country-code": "028" },
1481
+ { "name": "Argentina", "alpha-2": "AR", "country-code": "032" },
1482
+ { "name": "Armenia", "alpha-2": "AM", "country-code": "051" },
1483
+ { "name": "Aruba", "alpha-2": "AW", "country-code": "533" },
1484
+ { "name": "Australia", "alpha-2": "AU", "country-code": "036" },
1485
+ { "name": "Austria", "alpha-2": "AT", "country-code": "040" },
1486
+ { "name": "Azerbaijan", "alpha-2": "AZ", "country-code": "031" },
1487
+ { "name": "Bahamas", "alpha-2": "BS", "country-code": "044" },
1488
+ { "name": "Bahrain", "alpha-2": "BH", "country-code": "048" },
1489
+ { "name": "Bangladesh", "alpha-2": "BD", "country-code": "050" },
1490
+ { "name": "Barbados", "alpha-2": "BB", "country-code": "052" },
1491
+ { "name": "Belarus", "alpha-2": "BY", "country-code": "112" },
1492
+ { "name": "Belgium", "alpha-2": "BE", "country-code": "056" },
1493
+ { "name": "Belize", "alpha-2": "BZ", "country-code": "084" },
1494
+ { "name": "Benin", "alpha-2": "BJ", "country-code": "204" },
1495
+ { "name": "Bermuda", "alpha-2": "BM", "country-code": "060" },
1496
+ { "name": "Bhutan", "alpha-2": "BT", "country-code": "064" },
1497
+ { "name": "Bolivia, Plurinational State of", "alpha-2": "BO", "country-code": "068" },
1498
+ { "name": "Bonaire, Sint Eustatius and Saba", "alpha-2": "BQ", "country-code": "535" },
1499
+ { "name": "Bosnia and Herzegovina", "alpha-2": "BA", "country-code": "070" },
1500
+ { "name": "Botswana", "alpha-2": "BW", "country-code": "072" },
1501
+ { "name": "Bouvet Island", "alpha-2": "BV", "country-code": "074" },
1502
+ { "name": "Brazil", "alpha-2": "BR", "country-code": "076" },
1503
+ { "name": "British Indian Ocean Territory", "alpha-2": "IO", "country-code": "086" },
1504
+ { "name": "Brunei Darussalam", "alpha-2": "BN", "country-code": "096" },
1505
+ { "name": "Bulgaria", "alpha-2": "BG", "country-code": "100" },
1506
+ { "name": "Burkina Faso", "alpha-2": "BF", "country-code": "854" },
1507
+ { "name": "Burundi", "alpha-2": "BI", "country-code": "108" },
1508
+ { "name": "Cabo Verde", "alpha-2": "CV", "country-code": "132" },
1509
+ { "name": "Cambodia", "alpha-2": "KH", "country-code": "116" },
1510
+ { "name": "Cameroon", "alpha-2": "CM", "country-code": "120" },
1511
+ { "name": "Canada", "alpha-2": "CA", "country-code": "124" },
1512
+ { "name": "Cayman Islands", "alpha-2": "KY", "country-code": "136" },
1513
+ { "name": "Central African Republic", "alpha-2": "CF", "country-code": "140" },
1514
+ { "name": "Chad", "alpha-2": "TD", "country-code": "148" },
1515
+ { "name": "Chile", "alpha-2": "CL", "country-code": "152" },
1516
+ { "name": "China", "alpha-2": "CN", "country-code": "156" },
1517
+ { "name": "Christmas Island", "alpha-2": "CX", "country-code": "162" },
1518
+ { "name": "Cocos (Keeling) Islands", "alpha-2": "CC", "country-code": "166" },
1519
+ { "name": "Colombia", "alpha-2": "CO", "country-code": "170" },
1520
+ { "name": "Comoros", "alpha-2": "KM", "country-code": "174" },
1521
+ { "name": "Congo", "alpha-2": "CG", "country-code": "178" },
1522
+ { "name": "Congo, Democratic Republic of the", "alpha-2": "CD", "country-code": "180" },
1523
+ { "name": "Cook Islands", "alpha-2": "CK", "country-code": "184" },
1524
+ { "name": "Costa Rica", "alpha-2": "CR", "country-code": "188" },
1525
+ { "name": "C\xF4te d'Ivoire", "alpha-2": "CI", "country-code": "384" },
1526
+ { "name": "Croatia", "alpha-2": "HR", "country-code": "191" },
1527
+ { "name": "Cuba", "alpha-2": "CU", "country-code": "192" },
1528
+ { "name": "Cura\xE7ao", "alpha-2": "CW", "country-code": "531" },
1529
+ { "name": "Cyprus", "alpha-2": "CY", "country-code": "196" },
1530
+ { "name": "Czechia", "alpha-2": "CZ", "country-code": "203" },
1531
+ { "name": "Denmark", "alpha-2": "DK", "country-code": "208" },
1532
+ { "name": "Djibouti", "alpha-2": "DJ", "country-code": "262" },
1533
+ { "name": "Dominica", "alpha-2": "DM", "country-code": "212" },
1534
+ { "name": "Dominican Republic", "alpha-2": "DO", "country-code": "214" },
1535
+ { "name": "Ecuador", "alpha-2": "EC", "country-code": "218" },
1536
+ { "name": "Egypt", "alpha-2": "EG", "country-code": "818" },
1537
+ { "name": "El Salvador", "alpha-2": "SV", "country-code": "222" },
1538
+ { "name": "Equatorial Guinea", "alpha-2": "GQ", "country-code": "226" },
1539
+ { "name": "Eritrea", "alpha-2": "ER", "country-code": "232" },
1540
+ { "name": "Estonia", "alpha-2": "EE", "country-code": "233" },
1541
+ { "name": "Eswatini", "alpha-2": "SZ", "country-code": "748" },
1542
+ { "name": "Ethiopia", "alpha-2": "ET", "country-code": "231" },
1543
+ { "name": "Falkland Islands (Malvinas)", "alpha-2": "FK", "country-code": "238" },
1544
+ { "name": "Faroe Islands", "alpha-2": "FO", "country-code": "234" },
1545
+ { "name": "Fiji", "alpha-2": "FJ", "country-code": "242" },
1546
+ { "name": "Finland", "alpha-2": "FI", "country-code": "246" },
1547
+ { "name": "France", "alpha-2": "FR", "country-code": "250" },
1548
+ { "name": "French Guiana", "alpha-2": "GF", "country-code": "254" },
1549
+ { "name": "French Polynesia", "alpha-2": "PF", "country-code": "258" },
1550
+ { "name": "French Southern Territories", "alpha-2": "TF", "country-code": "260" },
1551
+ { "name": "Gabon", "alpha-2": "GA", "country-code": "266" },
1552
+ { "name": "Gambia", "alpha-2": "GM", "country-code": "270" },
1553
+ { "name": "Georgia", "alpha-2": "GE", "country-code": "268" },
1554
+ { "name": "Germany", "alpha-2": "DE", "country-code": "276" },
1555
+ { "name": "Ghana", "alpha-2": "GH", "country-code": "288" },
1556
+ { "name": "Gibraltar", "alpha-2": "GI", "country-code": "292" },
1557
+ { "name": "Greece", "alpha-2": "GR", "country-code": "300" },
1558
+ { "name": "Greenland", "alpha-2": "GL", "country-code": "304" },
1559
+ { "name": "Grenada", "alpha-2": "GD", "country-code": "308" },
1560
+ { "name": "Guadeloupe", "alpha-2": "GP", "country-code": "312" },
1561
+ { "name": "Guam", "alpha-2": "GU", "country-code": "316" },
1562
+ { "name": "Guatemala", "alpha-2": "GT", "country-code": "320" },
1563
+ { "name": "Guernsey", "alpha-2": "GG", "country-code": "831" },
1564
+ { "name": "Guinea", "alpha-2": "GN", "country-code": "324" },
1565
+ { "name": "Guinea-Bissau", "alpha-2": "GW", "country-code": "624" },
1566
+ { "name": "Guyana", "alpha-2": "GY", "country-code": "328" },
1567
+ { "name": "Haiti", "alpha-2": "HT", "country-code": "332" },
1568
+ { "name": "Heard Island and McDonald Islands", "alpha-2": "HM", "country-code": "334" },
1569
+ { "name": "Holy See", "alpha-2": "VA", "country-code": "336" },
1570
+ { "name": "Honduras", "alpha-2": "HN", "country-code": "340" },
1571
+ { "name": "Hong Kong", "alpha-2": "HK", "country-code": "344" },
1572
+ { "name": "Hungary", "alpha-2": "HU", "country-code": "348" },
1573
+ { "name": "Iceland", "alpha-2": "IS", "country-code": "352" },
1574
+ { "name": "India", "alpha-2": "IN", "country-code": "356" },
1575
+ { "name": "Indonesia", "alpha-2": "ID", "country-code": "360" },
1576
+ { "name": "Iran, Islamic Republic of", "alpha-2": "IR", "country-code": "364" },
1577
+ { "name": "Iraq", "alpha-2": "IQ", "country-code": "368" },
1578
+ { "name": "Ireland", "alpha-2": "IE", "country-code": "372" },
1579
+ { "name": "Isle of Man", "alpha-2": "IM", "country-code": "833" },
1580
+ { "name": "Israel", "alpha-2": "IL", "country-code": "376" },
1581
+ { "name": "Italy", "alpha-2": "IT", "country-code": "380" },
1582
+ { "name": "Jamaica", "alpha-2": "JM", "country-code": "388" },
1583
+ { "name": "Japan", "alpha-2": "JP", "country-code": "392" },
1584
+ { "name": "Jersey", "alpha-2": "JE", "country-code": "832" },
1585
+ { "name": "Jordan", "alpha-2": "JO", "country-code": "400" },
1586
+ { "name": "Kazakhstan", "alpha-2": "KZ", "country-code": "398" },
1587
+ { "name": "Kenya", "alpha-2": "KE", "country-code": "404" },
1588
+ { "name": "Kiribati", "alpha-2": "KI", "country-code": "296" },
1589
+ { "name": "Korea, Democratic People's Republic of", "alpha-2": "KP", "country-code": "408" },
1590
+ { "name": "Korea, Republic of", "alpha-2": "KR", "country-code": "410" },
1591
+ { "name": "Kuwait", "alpha-2": "KW", "country-code": "414" },
1592
+ { "name": "Kyrgyzstan", "alpha-2": "KG", "country-code": "417" },
1593
+ { "name": "Lao People's Democratic Republic", "alpha-2": "LA", "country-code": "418" },
1594
+ { "name": "Latvia", "alpha-2": "LV", "country-code": "428" },
1595
+ { "name": "Lebanon", "alpha-2": "LB", "country-code": "422" },
1596
+ { "name": "Lesotho", "alpha-2": "LS", "country-code": "426" },
1597
+ { "name": "Liberia", "alpha-2": "LR", "country-code": "430" },
1598
+ { "name": "Libya", "alpha-2": "LY", "country-code": "434" },
1599
+ { "name": "Liechtenstein", "alpha-2": "LI", "country-code": "438" },
1600
+ { "name": "Lithuania", "alpha-2": "LT", "country-code": "440" },
1601
+ { "name": "Luxembourg", "alpha-2": "LU", "country-code": "442" },
1602
+ { "name": "Macao", "alpha-2": "MO", "country-code": "446" },
1603
+ { "name": "Madagascar", "alpha-2": "MG", "country-code": "450" },
1604
+ { "name": "Malawi", "alpha-2": "MW", "country-code": "454" },
1605
+ { "name": "Malaysia", "alpha-2": "MY", "country-code": "458" },
1606
+ { "name": "Maldives", "alpha-2": "MV", "country-code": "462" },
1607
+ { "name": "Mali", "alpha-2": "ML", "country-code": "466" },
1608
+ { "name": "Malta", "alpha-2": "MT", "country-code": "470" },
1609
+ { "name": "Marshall Islands", "alpha-2": "MH", "country-code": "584" },
1610
+ { "name": "Martinique", "alpha-2": "MQ", "country-code": "474" },
1611
+ { "name": "Mauritania", "alpha-2": "MR", "country-code": "478" },
1612
+ { "name": "Mauritius", "alpha-2": "MU", "country-code": "480" },
1613
+ { "name": "Mayotte", "alpha-2": "YT", "country-code": "175" },
1614
+ { "name": "Mexico", "alpha-2": "MX", "country-code": "484" },
1615
+ { "name": "Micronesia, Federated States of", "alpha-2": "FM", "country-code": "583" },
1616
+ { "name": "Moldova, Republic of", "alpha-2": "MD", "country-code": "498" },
1617
+ { "name": "Monaco", "alpha-2": "MC", "country-code": "492" },
1618
+ { "name": "Mongolia", "alpha-2": "MN", "country-code": "496" },
1619
+ { "name": "Montenegro", "alpha-2": "ME", "country-code": "499" },
1620
+ { "name": "Montserrat", "alpha-2": "MS", "country-code": "500" },
1621
+ { "name": "Morocco", "alpha-2": "MA", "country-code": "504" },
1622
+ { "name": "Mozambique", "alpha-2": "MZ", "country-code": "508" },
1623
+ { "name": "Myanmar", "alpha-2": "MM", "country-code": "104" },
1624
+ { "name": "Namibia", "alpha-2": "NA", "country-code": "516" },
1625
+ { "name": "Nauru", "alpha-2": "NR", "country-code": "520" },
1626
+ { "name": "Nepal", "alpha-2": "NP", "country-code": "524" },
1627
+ { "name": "Netherlands, Kingdom of the", "alpha-2": "NL", "country-code": "528" },
1628
+ { "name": "New Caledonia", "alpha-2": "NC", "country-code": "540" },
1629
+ { "name": "New Zealand", "alpha-2": "NZ", "country-code": "554" },
1630
+ { "name": "Nicaragua", "alpha-2": "NI", "country-code": "558" },
1631
+ { "name": "Niger", "alpha-2": "NE", "country-code": "562" },
1632
+ { "name": "Nigeria", "alpha-2": "NG", "country-code": "566" },
1633
+ { "name": "Niue", "alpha-2": "NU", "country-code": "570" },
1634
+ { "name": "Norfolk Island", "alpha-2": "NF", "country-code": "574" },
1635
+ { "name": "North Macedonia", "alpha-2": "MK", "country-code": "807" },
1636
+ { "name": "Northern Mariana Islands", "alpha-2": "MP", "country-code": "580" },
1637
+ { "name": "Norway", "alpha-2": "NO", "country-code": "578" },
1638
+ { "name": "Oman", "alpha-2": "OM", "country-code": "512" },
1639
+ { "name": "Pakistan", "alpha-2": "PK", "country-code": "586" },
1640
+ { "name": "Palau", "alpha-2": "PW", "country-code": "585" },
1641
+ { "name": "Palestine, State of", "alpha-2": "PS", "country-code": "275" },
1642
+ { "name": "Panama", "alpha-2": "PA", "country-code": "591" },
1643
+ { "name": "Papua New Guinea", "alpha-2": "PG", "country-code": "598" },
1644
+ { "name": "Paraguay", "alpha-2": "PY", "country-code": "600" },
1645
+ { "name": "Peru", "alpha-2": "PE", "country-code": "604" },
1646
+ { "name": "Philippines", "alpha-2": "PH", "country-code": "608" },
1647
+ { "name": "Pitcairn", "alpha-2": "PN", "country-code": "612" },
1648
+ { "name": "Poland", "alpha-2": "PL", "country-code": "616" },
1649
+ { "name": "Portugal", "alpha-2": "PT", "country-code": "620" },
1650
+ { "name": "Puerto Rico", "alpha-2": "PR", "country-code": "630" },
1651
+ { "name": "Qatar", "alpha-2": "QA", "country-code": "634" },
1652
+ { "name": "R\xE9union", "alpha-2": "RE", "country-code": "638" },
1653
+ { "name": "Romania", "alpha-2": "RO", "country-code": "642" },
1654
+ { "name": "Russian Federation", "alpha-2": "RU", "country-code": "643" },
1655
+ { "name": "Rwanda", "alpha-2": "RW", "country-code": "646" },
1656
+ { "name": "Saint Barth\xE9lemy", "alpha-2": "BL", "country-code": "652" },
1657
+ { "name": "Saint Helena, Ascension and Tristan da Cunha", "alpha-2": "SH", "country-code": "654" },
1658
+ { "name": "Saint Kitts and Nevis", "alpha-2": "KN", "country-code": "659" },
1659
+ { "name": "Saint Lucia", "alpha-2": "LC", "country-code": "662" },
1660
+ { "name": "Saint Martin (French part)", "alpha-2": "MF", "country-code": "663" },
1661
+ { "name": "Saint Pierre and Miquelon", "alpha-2": "PM", "country-code": "666" },
1662
+ { "name": "Saint Vincent and the Grenadines", "alpha-2": "VC", "country-code": "670" },
1663
+ { "name": "Samoa", "alpha-2": "WS", "country-code": "882" },
1664
+ { "name": "San Marino", "alpha-2": "SM", "country-code": "674" },
1665
+ { "name": "Sao Tome and Principe", "alpha-2": "ST", "country-code": "678" },
1666
+ { "name": "Saudi Arabia", "alpha-2": "SA", "country-code": "682" },
1667
+ { "name": "Senegal", "alpha-2": "SN", "country-code": "686" },
1668
+ { "name": "Serbia", "alpha-2": "RS", "country-code": "688" },
1669
+ { "name": "Seychelles", "alpha-2": "SC", "country-code": "690" },
1670
+ { "name": "Sierra Leone", "alpha-2": "SL", "country-code": "694" },
1671
+ { "name": "Singapore", "alpha-2": "SG", "country-code": "702" },
1672
+ { "name": "Sint Maarten (Dutch part)", "alpha-2": "SX", "country-code": "534" },
1673
+ { "name": "Slovakia", "alpha-2": "SK", "country-code": "703" },
1674
+ { "name": "Slovenia", "alpha-2": "SI", "country-code": "705" },
1675
+ { "name": "Solomon Islands", "alpha-2": "SB", "country-code": "090" },
1676
+ { "name": "Somalia", "alpha-2": "SO", "country-code": "706" },
1677
+ { "name": "South Africa", "alpha-2": "ZA", "country-code": "710" },
1678
+ { "name": "South Georgia and the South Sandwich Islands", "alpha-2": "GS", "country-code": "239" },
1679
+ { "name": "South Sudan", "alpha-2": "SS", "country-code": "728" },
1680
+ { "name": "Spain", "alpha-2": "ES", "country-code": "724" },
1681
+ { "name": "Sri Lanka", "alpha-2": "LK", "country-code": "144" },
1682
+ { "name": "Sudan", "alpha-2": "SD", "country-code": "729" },
1683
+ { "name": "Suriname", "alpha-2": "SR", "country-code": "740" },
1684
+ { "name": "Svalbard and Jan Mayen", "alpha-2": "SJ", "country-code": "744" },
1685
+ { "name": "Sweden", "alpha-2": "SE", "country-code": "752" },
1686
+ { "name": "Switzerland", "alpha-2": "CH", "country-code": "756" },
1687
+ { "name": "Syrian Arab Republic", "alpha-2": "SY", "country-code": "760" },
1688
+ { "name": "Taiwan, Province of China", "alpha-2": "TW", "country-code": "158" },
1689
+ { "name": "Tajikistan", "alpha-2": "TJ", "country-code": "762" },
1690
+ { "name": "Tanzania, United Republic of", "alpha-2": "TZ", "country-code": "834" },
1691
+ { "name": "Thailand", "alpha-2": "TH", "country-code": "764" },
1692
+ { "name": "Timor-Leste", "alpha-2": "TL", "country-code": "626" },
1693
+ { "name": "Togo", "alpha-2": "TG", "country-code": "768" },
1694
+ { "name": "Tokelau", "alpha-2": "TK", "country-code": "772" },
1695
+ { "name": "Tonga", "alpha-2": "TO", "country-code": "776" },
1696
+ { "name": "Trinidad and Tobago", "alpha-2": "TT", "country-code": "780" },
1697
+ { "name": "Tunisia", "alpha-2": "TN", "country-code": "788" },
1698
+ { "name": "T\xFCrkiye", "alpha-2": "TR", "country-code": "792" },
1699
+ { "name": "Turkmenistan", "alpha-2": "TM", "country-code": "795" },
1700
+ { "name": "Turks and Caicos Islands", "alpha-2": "TC", "country-code": "796" },
1701
+ { "name": "Tuvalu", "alpha-2": "TV", "country-code": "798" },
1702
+ { "name": "Uganda", "alpha-2": "UG", "country-code": "800" },
1703
+ { "name": "Ukraine", "alpha-2": "UA", "country-code": "804" },
1704
+ { "name": "United Arab Emirates", "alpha-2": "AE", "country-code": "784" },
1705
+ { "name": "United Kingdom of Great Britain and Northern Ireland", "alpha-2": "GB", "country-code": "826" },
1706
+ { "name": "United States of America", "alpha-2": "US", "country-code": "840" },
1707
+ { "name": "United States Minor Outlying Islands", "alpha-2": "UM", "country-code": "581" },
1708
+ { "name": "Uruguay", "alpha-2": "UY", "country-code": "858" },
1709
+ { "name": "Uzbekistan", "alpha-2": "UZ", "country-code": "860" },
1710
+ { "name": "Vanuatu", "alpha-2": "VU", "country-code": "548" },
1711
+ { "name": "Venezuela, Bolivarian Republic of", "alpha-2": "VE", "country-code": "862" },
1712
+ { "name": "Viet Nam", "alpha-2": "VN", "country-code": "704" },
1713
+ { "name": "Virgin Islands (British)", "alpha-2": "VG", "country-code": "092" },
1714
+ { "name": "Virgin Islands (U.S.)", "alpha-2": "VI", "country-code": "850" },
1715
+ { "name": "Wallis and Futuna", "alpha-2": "WF", "country-code": "876" },
1716
+ { "name": "Western Sahara", "alpha-2": "EH", "country-code": "732" },
1717
+ { "name": "Yemen", "alpha-2": "YE", "country-code": "887" },
1718
+ { "name": "Zambia", "alpha-2": "ZM", "country-code": "894" },
1719
+ { "name": "Zimbabwe", "alpha-2": "ZW", "country-code": "716" }
1720
+ ];
1721
+
1382
1722
  // src/types/dictionary/MapTo.ts
1383
1723
  var toFinalizedConfig = (config) => {
1384
1724
  return { ...config, finalized: true };
@@ -2123,9 +2463,21 @@ var isYouTubePlaylistUrl = (val) => {
2123
2463
  var feed_map = (type) => {
2124
2464
  return isUndefined(type) ? `/feed` : type === "liked" ? `/playlist?list=LL` : ["history", "playlists", "trending", "subscriptions"].includes(type) ? `/feed/${type}` : `/feed/`;
2125
2465
  };
2126
- var isYouTubeFeedUrl = (val, type = void 0) => {
2466
+ var isYouTubeFeedUrl = (val, type) => {
2127
2467
  return isString(val) && (val.startsWith(`https://www.youtube.com${feed_map(type)}`) || val.startsWith(`https://youtube.com${feed_map(type)}`));
2128
2468
  };
2469
+ var isYouTubeFeedHistoryUrl = (val) => {
2470
+ return isString(val) && (val.startsWith(`https://www.youtube.com/feed/history`) || val.startsWith(`https://youtube.com/feed/history`));
2471
+ };
2472
+ var isYouTubePlaylistsUrl = (val) => {
2473
+ return isString(val) && (val.startsWith(`https://www.youtube.com/feed/playlists`) || val.startsWith(`https://youtube.com/feed/playlists`));
2474
+ };
2475
+ var isYouTubeTrendingUrl = (val) => {
2476
+ return isString(val) && (val.startsWith(`https://www.youtube.com/feed/trending`) || val.startsWith(`https://youtube.com/feed/trending`));
2477
+ };
2478
+ var isYouTubeSubscriptionsUrl = (val) => {
2479
+ return isString(val) && (val.startsWith(`https://www.youtube.com/feed/subscriptions`) || val.startsWith(`https://youtube.com/feed/subscriptions`));
2480
+ };
2129
2481
  var isYouTubeCreatorUrl = (url) => {
2130
2482
  return isString(url) && (url.startsWith(`https://www.youtube.com/@`) || url.startsWith(`https://youtube.com/@`) || url.startsWith(`https://www.youtube.com/channel/`));
2131
2483
  };
@@ -2146,18 +2498,6 @@ var isRepoUrl = (val) => {
2146
2498
  (u) => val === u || val.startsWith(`${u}/`)
2147
2499
  );
2148
2500
  };
2149
- var isGithubUrl = (val) => {
2150
- const baseUrls = REPO_SOURCE_LOOKUP["github"];
2151
- return isString(val) && baseUrls.every(
2152
- (u) => val === u || val.startsWith(`${u}/`)
2153
- );
2154
- };
2155
- var isGithubRepoUrl = (val) => {
2156
- const baseUrls = [""];
2157
- return isString(val) && baseUrls.every(
2158
- (u) => val === u || val.startsWith(`${u}/`)
2159
- );
2160
- };
2161
2501
  var isBitbucketUrl = (val) => {
2162
2502
  const baseUrls = REPO_SOURCE_LOOKUP["bitbucket"];
2163
2503
  return isString(val) && baseUrls.every(
@@ -2409,6 +2749,112 @@ var isAlpha = (value) => {
2409
2749
  return isString(value) && split(value).every((v) => ALPHA_CHARS.includes(v));
2410
2750
  };
2411
2751
 
2752
+ // src/runtime/type-guards/github.ts
2753
+ var isGithubUrl = (val) => {
2754
+ return isString(val) && (val.startsWith("https://github.com") || val.startsWith("https://www.github.com") || val.startsWith("https://github.io"));
2755
+ };
2756
+ var isGithubOrgUrl = (val) => {
2757
+ return isString(val) && (val.startsWith("https://github.com/") && stripper(val).length === 2);
2758
+ };
2759
+ var stripper = (s) => {
2760
+ return stripTrailing(
2761
+ stripLeading(s, "https://github.com/"),
2762
+ "/"
2763
+ );
2764
+ };
2765
+ var isGithubRepoUrl = (val) => {
2766
+ return isString(val) && (val.startsWith("https://github.com/") && stripper(val).split("/").length === 2) ? true : false;
2767
+ };
2768
+ var isGithubRepoReleasesUrl = (val) => {
2769
+ return isString(val) && (val.startsWith("https://github.com/") && val.includes("/releases") && stripper(val).split("/").length === 3);
2770
+ };
2771
+ var isGithubRepoReleaseTagUrl = (val) => {
2772
+ return isString(val) && (val.startsWith("https://github.com/") && val.includes("/releases/tag/") && stripper(val).length === 4);
2773
+ };
2774
+ var isGithubIssuesListUrl = (val) => {
2775
+ return isString(val) && val.startsWith("https://github.com/") && val.includes("/issues");
2776
+ };
2777
+ var isGithubIssueUrl = (val) => {
2778
+ return isString(val) && (val.startsWith("https://github.com/") && val.includes("/issues/"));
2779
+ };
2780
+ var isGithubProjectsListUrl = (val) => {
2781
+ return isString(val) && (val.startsWith("https://github.com/") && (val.includes("/projects?") || val.trim().endsWith("/projects")) && stripper(val).split("/").length === 3);
2782
+ };
2783
+ var isGithubProjectUrl = (val) => {
2784
+ return isString(val) && (val.startsWith("https://github.com/") && val.includes("/projects/") && stripper(val).split("/").length === 4);
2785
+ };
2786
+ var isGithubReleasesListUrl = (val) => {
2787
+ return isString(val) && (val.startsWith("https://github.com/") && (val.includes("/releases?") || val.trim().endsWith("/releases")) && stripper(val).split("/").length === 3);
2788
+ };
2789
+ var isGithubReleaseTagUrl = (val) => {
2790
+ return isString(val) && (val.startsWith("https://github.com/") && val.includes("/releases/tag/") && stripper(val).split("/").length === 5);
2791
+ };
2792
+
2793
+ // src/runtime/type-guards/retail.ts
2794
+ var isWholeFoodsUrl = (val) => {
2795
+ return isString(val) && WHOLE_FOODS_DNS.some((i) => val.startsWith(`https://${i}`));
2796
+ };
2797
+ var isCvsUrl = (val) => {
2798
+ return isString(val) && CVS_DNS.some((i) => val.startsWith(`https://${i}`));
2799
+ };
2800
+ var isWalgreensUrl = (val) => {
2801
+ return isString(val) && WALGREENS_DNS.some((i) => val.startsWith(`https://${i}`));
2802
+ };
2803
+ var isKrogersUrl = (val) => {
2804
+ return isString(val) && KROGER_DNS.some((i) => val.startsWith(`https://${i}`));
2805
+ };
2806
+ var isZaraUrl = (val) => {
2807
+ return isString(val) && ZARA_DNS.some((i) => val.startsWith(`https://${i}`));
2808
+ };
2809
+ var isHmUrl = (val) => {
2810
+ return isString(val) && HM_DNS.some((i) => val.startsWith(`https://${i}`));
2811
+ };
2812
+ var isDellUrl = (val) => {
2813
+ return isString(val) && DELL_DNS.some((i) => val.startsWith(`https://${i}`));
2814
+ };
2815
+ var isIkeaUrl = (val) => {
2816
+ return isString(val) && KROGER_DNS.some((i) => val.startsWith(`https://${i}`));
2817
+ };
2818
+ var isLowesUrl = (val) => {
2819
+ return isString(val) && KROGER_DNS.some((i) => val.startsWith(`https://${i}`));
2820
+ };
2821
+ var isNikeUrl = (val) => {
2822
+ return isString(val) && NIKE_DNS.some((i) => val.startsWith(`https://${i}`));
2823
+ };
2824
+ var isWayfairUrl = (val) => {
2825
+ return isString(val) && WAYFAIR_DNS.some((i) => val.startsWith(`https://${i}`));
2826
+ };
2827
+ var isBestBuyUrl = (val) => {
2828
+ return isString(val) && BEST_BUY_DNS.some((i) => val.startsWith(`https://${i}`));
2829
+ };
2830
+ var isCostCoUrl = (val) => {
2831
+ return isString(val) && COSTCO_DNS.some((i) => val.startsWith(`https://${i}`));
2832
+ };
2833
+ var isEtsyUrl = (val) => {
2834
+ return isString(val) && ETSY_DNS.some((i) => val.startsWith(`https://${i}`));
2835
+ };
2836
+ var isTargetUrl = (val) => {
2837
+ return isString(val) && TARGET_DNS.some((i) => val.startsWith(`https://${i}`));
2838
+ };
2839
+ var isEbayUrl = (val) => {
2840
+ return isString(val) && EBAY_DNS.some((i) => val.startsWith(`https://${i}`));
2841
+ };
2842
+ var isHomeDepotUrl = (val) => {
2843
+ return isString(val) && HOME_DEPOT_DNS.some((i) => val.startsWith(`https://${i}`));
2844
+ };
2845
+ var isMacysUrl = (val) => {
2846
+ return isString(val) && MACYS_DNS.some((i) => val.startsWith(`https://${i}`));
2847
+ };
2848
+ var isAppleUrl = (val) => {
2849
+ return isString(val) && APPLE_DNS.some((i) => val.startsWith(`https://${i}`));
2850
+ };
2851
+ var isWalmartUrl = (val) => {
2852
+ return isString(val) && WALMART_DNS.some((i) => val.startsWith(`https://${i}`));
2853
+ };
2854
+ var isAmazonUrl = (val) => {
2855
+ return isString(val) && AMAZON_DNS.some((i) => val.startsWith(`https://${i}`));
2856
+ };
2857
+
2412
2858
  // src/runtime/type-guards/tokens/isAtomicToken.ts
2413
2859
  var isAtomicToken = (val) => {
2414
2860
  return isString(val) && TT_Atomics.some((v) => val === `<<${v}>>`);
@@ -2528,6 +2974,12 @@ var isHtmlElement = (val) => {
2528
2974
  return isObject(val) && "attributes" in val && "firstElementChild" in val && "innerHTML" in val;
2529
2975
  };
2530
2976
 
2977
+ // src/runtime/type-guards/countries/isIso3166Alpha2.ts
2978
+ var isIso3166Alpha2 = (val) => {
2979
+ const codes = ISO3166_1.map((i) => i["alpha-2"]);
2980
+ return isString(val) && codes.includes(val);
2981
+ };
2982
+
2531
2983
  // src/runtime/literals/stripTrailing.ts
2532
2984
  function stripTrailing(content, ...strip) {
2533
2985
  let output = String(content);
@@ -3581,12 +4033,21 @@ var asVueRef = (value) => ({
3581
4033
  });
3582
4034
  export {
3583
4035
  ALPHA_CHARS,
4036
+ AMAZON_DNS,
4037
+ APPLE_DNS,
4038
+ BEST_BUY_DNS,
4039
+ CHEWY_DNS,
3584
4040
  COMMA,
3585
4041
  COMMON_OBJ_PROPS,
3586
4042
  CONSONANTS,
4043
+ COSTCO_DNS,
4044
+ CVS_DNS,
3587
4045
  DEFAULT_MANY_TO_ONE_MAPPING,
3588
4046
  DEFAULT_ONE_TO_MANY_MAPPING,
3589
4047
  DEFAULT_ONE_TO_ONE_MAPPING,
4048
+ DELL_DNS,
4049
+ EBAY_DNS,
4050
+ ETSY_DNS,
3590
4051
  ExifCompression,
3591
4052
  ExifContrast,
3592
4053
  ExifEmbedPolicy,
@@ -3608,17 +4069,25 @@ export {
3608
4069
  HASH_TABLE_OTHER,
3609
4070
  HASH_TABLE_SPECIAL,
3610
4071
  HASH_TABLE_WIDE,
4072
+ HM_DNS,
4073
+ HOME_DEPOT_DNS,
4074
+ IKEA_DNS,
3611
4075
  IMAGE_FORMAT_LOOKUP,
3612
4076
  IPv4,
3613
4077
  IPv6,
4078
+ ISO3166_1,
4079
+ KROGER_DNS,
3614
4080
  LITERAL_TYPE_KINDS,
3615
4081
  LOWER_ALPHA_CHARS,
4082
+ LOWES_DNS,
4083
+ MACYS_DNS,
3616
4084
  MARKED,
3617
4085
  MONTH_ABBR,
3618
4086
  MONTH_NAME,
3619
4087
  MapCardinality,
3620
4088
  NARROW_CONTAINER_TYPE_KINDS,
3621
4089
  NETWORK_PROTOCOL_LOOKUP,
4090
+ NIKE_DNS,
3622
4091
  NON_ZERO_NUMERIC_CHAR,
3623
4092
  NOT_APPLICABLE,
3624
4093
  NOT_DEFINED,
@@ -3653,6 +4122,7 @@ export {
3653
4122
  SIMPLE_UNION_TOKENS,
3654
4123
  SINGULAR_NOUN_ENDINGS,
3655
4124
  ShapeApiImplementation,
4125
+ TARGET_DNS,
3656
4126
  TOP_LEVEL_DOMAINS,
3657
4127
  TT_Atomics,
3658
4128
  TT_Containers,
@@ -3702,10 +4172,15 @@ export {
3702
4172
  US_STATE_LOOKUP,
3703
4173
  US_STATE_LOOKUP_PROVINCES,
3704
4174
  US_STATE_LOOKUP_STRICT,
4175
+ WALGREENS_DNS,
4176
+ WALMART_DNS,
4177
+ WAYFAIR_DNS,
3705
4178
  WHITESPACE_CHARS,
4179
+ WHOLE_FOODS_DNS,
3706
4180
  WIDE_CONTAINER_TYPE_KINDS,
3707
4181
  WIDE_TYPE_KINDS,
3708
4182
  WideAssignment,
4183
+ ZARA_DNS,
3709
4184
  ZIP_TO_STATE,
3710
4185
  addFnToProps,
3711
4186
  addPropsToFn,
@@ -3794,11 +4269,14 @@ export {
3794
4269
  ip6GroupExpansion,
3795
4270
  ip6Prefix,
3796
4271
  isAlpha,
4272
+ isAmazonUrl,
3797
4273
  isApi,
3798
4274
  isApiSurface,
4275
+ isAppleUrl,
3799
4276
  isArray,
3800
4277
  isArrayToken,
3801
4278
  isAtomicToken,
4279
+ isBestBuyUrl,
3802
4280
  isBitbucketUrl,
3803
4281
  isBoolean,
3804
4282
  isBooleanLike,
@@ -3807,33 +4285,55 @@ export {
3807
4285
  isConstant,
3808
4286
  isContainer,
3809
4287
  isContainerToken,
4288
+ isCostCoUrl,
3810
4289
  isCssAspectRatio,
4290
+ isCvsUrl,
3811
4291
  isDefined,
4292
+ isDellUrl,
3812
4293
  isDomainName,
3813
4294
  isDoneFn,
4295
+ isEbayUrl,
3814
4296
  isEmail,
3815
4297
  isEqual,
3816
4298
  isErrorCondition,
3817
4299
  isEscapeFunction,
4300
+ isEtsyUrl,
3818
4301
  isFalse,
3819
4302
  isFalsy,
3820
4303
  isFnToken,
3821
4304
  isFnWithParams,
3822
4305
  isFunction,
3823
4306
  isGeneratorToken,
4307
+ isGithubIssueUrl,
4308
+ isGithubIssuesListUrl,
4309
+ isGithubOrgUrl,
4310
+ isGithubProjectUrl,
4311
+ isGithubProjectsListUrl,
4312
+ isGithubReleaseTagUrl,
4313
+ isGithubReleasesListUrl,
4314
+ isGithubRepoReleaseTagUrl,
4315
+ isGithubRepoReleasesUrl,
3824
4316
  isGithubRepoUrl,
3825
4317
  isGithubUrl,
3826
4318
  isHexadecimal,
4319
+ isHmUrl,
4320
+ isHomeDepotUrl,
3827
4321
  isHtmlElement,
4322
+ isIkeaUrl,
3828
4323
  isIndexable,
3829
4324
  isInlineSvg,
3830
4325
  isIp4Address,
3831
4326
  isIp6Address,
3832
4327
  isIpAddress,
4328
+ isIso3166Alpha2,
4329
+ isKrogersUrl,
3833
4330
  isLength,
3834
4331
  isLikeRegExp,
4332
+ isLowesUrl,
4333
+ isMacysUrl,
3835
4334
  isMapToken,
3836
4335
  isNever,
4336
+ isNikeUrl,
3837
4337
  isNotNull,
3838
4338
  isNothing,
3839
4339
  isNull,
@@ -3866,6 +4366,7 @@ export {
3866
4366
  isSpecificConstant,
3867
4367
  isString,
3868
4368
  isSymbol,
4369
+ isTargetUrl,
3869
4370
  isThenable,
3870
4371
  isTrimable,
3871
4372
  isTrue,
@@ -3883,14 +4384,23 @@ export {
3883
4384
  isUrl,
3884
4385
  isUrlPath,
3885
4386
  isUrlSource,
4387
+ isWalgreensUrl,
4388
+ isWalmartUrl,
4389
+ isWayfairUrl,
3886
4390
  isWeakMapToken,
4391
+ isWholeFoodsUrl,
3887
4392
  isYouTubeCreatorUrl,
4393
+ isYouTubeFeedHistoryUrl,
3888
4394
  isYouTubeFeedUrl,
3889
4395
  isYouTubePlaylistUrl,
4396
+ isYouTubePlaylistsUrl,
3890
4397
  isYouTubeShareUrl,
4398
+ isYouTubeSubscriptionsUrl,
4399
+ isYouTubeTrendingUrl,
3891
4400
  isYouTubeUrl,
3892
4401
  isYouTubeVideoUrl,
3893
4402
  isYouTubeVideosInPlaylist,
4403
+ isZaraUrl,
3894
4404
  joinWith,
3895
4405
  jsonValue,
3896
4406
  jsonValues,