@bowmark/web 1.3.0 → 1.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -5,13 +5,13 @@
5
5
  // declares no readable argument shape — not an absent one, which is what the
6
6
  // guard fails closed on.
7
7
  //
8
- // Manifest version: 80346d8cf36c785e2b7fe0a77a87e5a51fa97ceb04ea11c951c71a9f7f75ad8e
9
- // 208 checked, 20 unchecked.
8
+ // Manifest version: 75ed32aa210bc375ea259fb61276ab65363d6b123ba60e63283bdfa36a58a3d5
9
+ // 288 checked, 20 unchecked.
10
10
 
11
11
  import type { ValidatorTable } from "../validate.js";
12
12
 
13
13
  export const VALIDATORS: ValidatorTable = {
14
- "version": "80346d8cf36c785e2b7fe0a77a87e5a51fa97ceb04ea11c951c71a9f7f75ad8e",
14
+ "version": "75ed32aa210bc375ea259fb61276ab65363d6b123ba60e63283bdfa36a58a3d5",
15
15
  "units": {
16
16
  "cars": {
17
17
  "defs": {
@@ -379,6 +379,46 @@ export const VALIDATORS: ValidatorTable = {
379
379
  "optional": false
380
380
  }
381
381
  ]
382
+ },
383
+ "FlightStatusQuery": {
384
+ "k": "object",
385
+ "props": [
386
+ {
387
+ "name": "airline",
388
+ "schema": {
389
+ "k": "string"
390
+ },
391
+ "optional": false
392
+ },
393
+ {
394
+ "name": "date",
395
+ "schema": {
396
+ "k": "string"
397
+ },
398
+ "optional": false
399
+ },
400
+ {
401
+ "name": "flightNumber",
402
+ "schema": {
403
+ "k": "string"
404
+ },
405
+ "optional": true
406
+ },
407
+ {
408
+ "name": "origin",
409
+ "schema": {
410
+ "k": "string"
411
+ },
412
+ "optional": true
413
+ },
414
+ {
415
+ "name": "destination",
416
+ "schema": {
417
+ "k": "string"
418
+ },
419
+ "optional": true
420
+ }
421
+ ]
382
422
  }
383
423
  },
384
424
  "functions": {
@@ -417,6 +457,24 @@ export const VALIDATORS: ValidatorTable = {
417
457
  },
418
458
  "optional": true
419
459
  }
460
+ ],
461
+ "getFlightStatus": [
462
+ {
463
+ "name": "query",
464
+ "schema": {
465
+ "k": "ref",
466
+ "name": "FlightStatusQuery"
467
+ },
468
+ "optional": false
469
+ },
470
+ {
471
+ "name": "options",
472
+ "schema": {
473
+ "k": "ref",
474
+ "name": "CallOptions"
475
+ },
476
+ "optional": true
477
+ }
420
478
  ]
421
479
  }
422
480
  },
@@ -592,6 +650,18 @@ export const VALIDATORS: ValidatorTable = {
592
650
  "optional": true
593
651
  }
594
652
  ]
653
+ },
654
+ "ReferralCarrierQuery": {
655
+ "k": "object",
656
+ "props": [
657
+ {
658
+ "name": "line",
659
+ "schema": {
660
+ "k": "string"
661
+ },
662
+ "optional": true
663
+ }
664
+ ]
595
665
  }
596
666
  },
597
667
  "functions": {
@@ -661,6 +731,24 @@ export const VALIDATORS: ValidatorTable = {
661
731
  },
662
732
  "optional": true
663
733
  }
734
+ ],
735
+ "listReferralCarriers": [
736
+ {
737
+ "name": "query",
738
+ "schema": {
739
+ "k": "ref",
740
+ "name": "ReferralCarrierQuery"
741
+ },
742
+ "optional": true
743
+ },
744
+ {
745
+ "name": "options",
746
+ "schema": {
747
+ "k": "ref",
748
+ "name": "CallOptions"
749
+ },
750
+ "optional": true
751
+ }
664
752
  ]
665
753
  }
666
754
  },
@@ -1036,9 +1124,68 @@ export const VALIDATORS: ValidatorTable = {
1036
1124
  }
1037
1125
  },
1038
1126
  "providers.aa": {
1039
- "defs": {},
1127
+ "defs": {
1128
+ "aaBaggageAllowanceArgs": {
1129
+ "k": "object",
1130
+ "props": [
1131
+ {
1132
+ "name": "origin",
1133
+ "schema": {
1134
+ "k": "string"
1135
+ },
1136
+ "optional": false
1137
+ },
1138
+ {
1139
+ "name": "destination",
1140
+ "schema": {
1141
+ "k": "string"
1142
+ },
1143
+ "optional": false
1144
+ }
1145
+ ]
1146
+ },
1147
+ "aaRetrieveBookingArgs": {
1148
+ "k": "object",
1149
+ "props": [
1150
+ {
1151
+ "name": "recordLocator",
1152
+ "schema": {
1153
+ "k": "string"
1154
+ },
1155
+ "optional": false
1156
+ },
1157
+ {
1158
+ "name": "lastName",
1159
+ "schema": {
1160
+ "k": "string"
1161
+ },
1162
+ "optional": false
1163
+ }
1164
+ ]
1165
+ }
1166
+ },
1040
1167
  "functions": {
1041
- "getFlightStatus": null
1168
+ "getFlightStatus": null,
1169
+ "getBaggageAllowance": [
1170
+ {
1171
+ "name": "arg0",
1172
+ "schema": {
1173
+ "k": "ref",
1174
+ "name": "aaBaggageAllowanceArgs"
1175
+ },
1176
+ "optional": false
1177
+ }
1178
+ ],
1179
+ "retrieveBooking": [
1180
+ {
1181
+ "name": "arg0",
1182
+ "schema": {
1183
+ "k": "ref",
1184
+ "name": "aaRetrieveBookingArgs"
1185
+ },
1186
+ "optional": false
1187
+ }
1188
+ ]
1042
1189
  }
1043
1190
  },
1044
1191
  "providers.abercrombie": {
@@ -1088,6 +1235,109 @@ export const VALIDATORS: ValidatorTable = {
1088
1235
  }
1089
1236
  ]
1090
1237
  },
1238
+ "abercrombieStockQuery": {
1239
+ "k": "object",
1240
+ "props": [
1241
+ {
1242
+ "name": "url",
1243
+ "schema": {
1244
+ "k": "string"
1245
+ },
1246
+ "optional": true
1247
+ },
1248
+ {
1249
+ "name": "id",
1250
+ "schema": {
1251
+ "k": "string"
1252
+ },
1253
+ "optional": true
1254
+ },
1255
+ {
1256
+ "name": "size",
1257
+ "schema": {
1258
+ "k": "string"
1259
+ },
1260
+ "optional": true
1261
+ },
1262
+ {
1263
+ "name": "sizePrimary",
1264
+ "schema": {
1265
+ "k": "string"
1266
+ },
1267
+ "optional": true
1268
+ },
1269
+ {
1270
+ "name": "sizeSecondary",
1271
+ "schema": {
1272
+ "k": "string"
1273
+ },
1274
+ "optional": true
1275
+ },
1276
+ {
1277
+ "name": "sku",
1278
+ "schema": {
1279
+ "k": "string"
1280
+ },
1281
+ "optional": true
1282
+ },
1283
+ {
1284
+ "name": "zip",
1285
+ "schema": {
1286
+ "k": "string"
1287
+ },
1288
+ "optional": true
1289
+ },
1290
+ {
1291
+ "name": "city",
1292
+ "schema": {
1293
+ "k": "string"
1294
+ },
1295
+ "optional": true
1296
+ },
1297
+ {
1298
+ "name": "state",
1299
+ "schema": {
1300
+ "k": "string"
1301
+ },
1302
+ "optional": true
1303
+ },
1304
+ {
1305
+ "name": "radiusMiles",
1306
+ "schema": {
1307
+ "k": "number"
1308
+ },
1309
+ "optional": true
1310
+ },
1311
+ {
1312
+ "name": "maxStores",
1313
+ "schema": {
1314
+ "k": "number"
1315
+ },
1316
+ "optional": true
1317
+ },
1318
+ {
1319
+ "name": "brand",
1320
+ "schema": {
1321
+ "k": "union",
1322
+ "of": [
1323
+ {
1324
+ "k": "literal",
1325
+ "v": "adult"
1326
+ },
1327
+ {
1328
+ "k": "literal",
1329
+ "v": "kids"
1330
+ },
1331
+ {
1332
+ "k": "literal",
1333
+ "v": "both"
1334
+ }
1335
+ ]
1336
+ },
1337
+ "optional": true
1338
+ }
1339
+ ]
1340
+ },
1091
1341
  "abercrombieStoreQuery": {
1092
1342
  "k": "object",
1093
1343
  "props": [
@@ -1171,6 +1421,16 @@ export const VALIDATORS: ValidatorTable = {
1171
1421
  "optional": false
1172
1422
  }
1173
1423
  ],
1424
+ "checkStock": [
1425
+ {
1426
+ "name": "query",
1427
+ "schema": {
1428
+ "k": "ref",
1429
+ "name": "abercrombieStockQuery"
1430
+ },
1431
+ "optional": false
1432
+ }
1433
+ ],
1174
1434
  "search": [
1175
1435
  {
1176
1436
  "name": "query",
@@ -1298,22 +1558,45 @@ export const VALIDATORS: ValidatorTable = {
1298
1558
  ]
1299
1559
  }
1300
1560
  },
1301
- "providers.azure": {
1302
- "defs": {
1303
- "AzureListServicesFilters": {
1304
- "k": "object",
1305
- "props": [
1306
- {
1307
- "name": "serviceFamily",
1308
- "schema": {
1309
- "k": "string"
1310
- },
1311
- "optional": true
1312
- }
1313
- ]
1314
- },
1315
- "AzurePricingFilters": {
1316
- "k": "object",
1561
+ "providers.avis": {
1562
+ "defs": {},
1563
+ "functions": {
1564
+ "searchLocations": [
1565
+ {
1566
+ "name": "args",
1567
+ "schema": {
1568
+ "k": "any"
1569
+ },
1570
+ "optional": false
1571
+ }
1572
+ ],
1573
+ "getLocation": [
1574
+ {
1575
+ "name": "args",
1576
+ "schema": {
1577
+ "k": "any"
1578
+ },
1579
+ "optional": false
1580
+ }
1581
+ ]
1582
+ }
1583
+ },
1584
+ "providers.azure": {
1585
+ "defs": {
1586
+ "AzureListServicesFilters": {
1587
+ "k": "object",
1588
+ "props": [
1589
+ {
1590
+ "name": "serviceFamily",
1591
+ "schema": {
1592
+ "k": "string"
1593
+ },
1594
+ "optional": true
1595
+ }
1596
+ ]
1597
+ },
1598
+ "AzurePricingFilters": {
1599
+ "k": "object",
1317
1600
  "props": [
1318
1601
  {
1319
1602
  "name": "serviceName",
@@ -1580,6 +1863,30 @@ export const VALIDATORS: ValidatorTable = {
1580
1863
  ]
1581
1864
  }
1582
1865
  },
1866
+ "providers.bluehaven": {
1867
+ "defs": {},
1868
+ "functions": {
1869
+ "listPoolDesigns": [],
1870
+ "checkPoolSiteFeasibility": [
1871
+ {
1872
+ "name": "args",
1873
+ "schema": {
1874
+ "k": "object",
1875
+ "props": [
1876
+ {
1877
+ "name": "address",
1878
+ "schema": {
1879
+ "k": "string"
1880
+ },
1881
+ "optional": false
1882
+ }
1883
+ ]
1884
+ },
1885
+ "optional": false
1886
+ }
1887
+ ]
1888
+ }
1889
+ },
1583
1890
  "providers.bmwusa": {
1584
1891
  "defs": {},
1585
1892
  "functions": {
@@ -1668,46 +1975,127 @@ export const VALIDATORS: ValidatorTable = {
1668
1975
  },
1669
1976
  "optional": true
1670
1977
  }
1671
- ]
1978
+ ],
1979
+ "getModel": [
1980
+ {
1981
+ "name": "path",
1982
+ "schema": {
1983
+ "k": "string"
1984
+ },
1985
+ "optional": false
1986
+ }
1987
+ ],
1988
+ "listOffers": [
1989
+ {
1990
+ "name": "zip",
1991
+ "schema": {
1992
+ "k": "string"
1993
+ },
1994
+ "optional": false
1995
+ }
1996
+ ],
1997
+ "listModels": []
1672
1998
  }
1673
1999
  },
1674
- "providers.cars": {
2000
+ "providers.cancer": {
1675
2001
  "defs": {},
1676
2002
  "functions": {
1677
- "getListing": [
2003
+ "findCancerCenters": [
1678
2004
  {
1679
- "name": "listingId",
2005
+ "name": "args",
1680
2006
  "schema": {
1681
- "k": "string"
2007
+ "k": "object",
2008
+ "props": [
2009
+ {
2010
+ "name": "state",
2011
+ "schema": {
2012
+ "k": "string"
2013
+ },
2014
+ "optional": true
2015
+ }
2016
+ ]
1682
2017
  },
1683
- "optional": false
2018
+ "optional": true
1684
2019
  }
1685
2020
  ],
1686
- "getModelResearch": [
2021
+ "getCancerInfoSummary": [
1687
2022
  {
1688
2023
  "name": "args",
1689
2024
  "schema": {
1690
2025
  "k": "object",
1691
2026
  "props": [
1692
2027
  {
1693
- "name": "make",
2028
+ "name": "topic",
1694
2029
  "schema": {
1695
2030
  "k": "string"
1696
2031
  },
1697
2032
  "optional": false
1698
2033
  },
1699
2034
  {
1700
- "name": "model",
2035
+ "name": "audience",
1701
2036
  "schema": {
1702
- "k": "string"
2037
+ "k": "union",
2038
+ "of": [
2039
+ {
2040
+ "k": "literal",
2041
+ "v": "patient"
2042
+ },
2043
+ {
2044
+ "k": "literal",
2045
+ "v": "healthProfessional"
2046
+ }
2047
+ ]
1703
2048
  },
1704
- "optional": false
1705
- },
2049
+ "optional": true
2050
+ }
2051
+ ]
2052
+ },
2053
+ "optional": false
2054
+ }
2055
+ ]
2056
+ }
2057
+ },
2058
+ "providers.caraway": {
2059
+ "defs": {},
2060
+ "functions": {
2061
+ "listCarawayProducts": [
2062
+ {
2063
+ "name": "opts",
2064
+ "schema": {
2065
+ "k": "object",
2066
+ "props": [
1706
2067
  {
1707
- "name": "year",
2068
+ "name": "limit",
1708
2069
  "schema": {
1709
2070
  "k": "number"
1710
2071
  },
2072
+ "optional": true
2073
+ }
2074
+ ]
2075
+ },
2076
+ "optional": true
2077
+ }
2078
+ ],
2079
+ "getCarawayProduct": [
2080
+ {
2081
+ "name": "handle",
2082
+ "schema": {
2083
+ "k": "string"
2084
+ },
2085
+ "optional": false
2086
+ }
2087
+ ],
2088
+ "runCarawayQuiz": [
2089
+ {
2090
+ "name": "answers",
2091
+ "schema": {
2092
+ "k": "object",
2093
+ "props": [
2094
+ {
2095
+ "name": "archetype",
2096
+ "schema": {
2097
+ "k": "string"
2098
+ },
1711
2099
  "optional": false
1712
2100
  }
1713
2101
  ]
@@ -1717,106 +2105,335 @@ export const VALIDATORS: ValidatorTable = {
1717
2105
  ]
1718
2106
  }
1719
2107
  },
1720
- "providers.cheapflights": {
2108
+ "providers.cars": {
1721
2109
  "defs": {
1722
- "KayakCarQuery": {
2110
+ "QuoteIdentity": {
1723
2111
  "k": "object",
1724
2112
  "props": [
1725
2113
  {
1726
- "name": "pickup",
2114
+ "name": "firstName",
1727
2115
  "schema": {
1728
2116
  "k": "string"
1729
2117
  },
1730
2118
  "optional": false
1731
2119
  },
1732
2120
  {
1733
- "name": "dropoff",
2121
+ "name": "lastName",
1734
2122
  "schema": {
1735
2123
  "k": "string"
1736
2124
  },
1737
- "optional": true
2125
+ "optional": false
1738
2126
  },
1739
2127
  {
1740
- "name": "pickupDate",
2128
+ "name": "dob",
1741
2129
  "schema": {
1742
2130
  "k": "string"
1743
2131
  },
1744
2132
  "optional": false
1745
2133
  },
1746
2134
  {
1747
- "name": "dropoffDate",
2135
+ "name": "email",
1748
2136
  "schema": {
1749
2137
  "k": "string"
1750
2138
  },
1751
2139
  "optional": false
1752
2140
  },
1753
2141
  {
1754
- "name": "pickupHour",
1755
- "schema": {
1756
- "k": "number"
1757
- },
1758
- "optional": true
1759
- },
1760
- {
1761
- "name": "dropoffHour",
1762
- "schema": {
1763
- "k": "number"
1764
- },
1765
- "optional": true
1766
- },
1767
- {
1768
- "name": "driverAge",
1769
- "schema": {
1770
- "k": "number"
1771
- },
1772
- "optional": true
1773
- }
1774
- ]
1775
- },
1776
- "KayakFlight": {
1777
- "k": "object",
1778
- "props": [
1779
- {
1780
- "name": "id",
2142
+ "name": "phone",
1781
2143
  "schema": {
1782
2144
  "k": "string"
1783
2145
  },
1784
2146
  "optional": false
1785
- },
1786
- {
1787
- "name": "price",
1788
- "schema": {
1789
- "k": "union",
1790
- "of": [
1791
- {
2147
+ }
2148
+ ]
2149
+ }
2150
+ },
2151
+ "functions": {
2152
+ "search": [
2153
+ {
2154
+ "name": "args",
2155
+ "schema": {
2156
+ "k": "object",
2157
+ "props": [
2158
+ {
2159
+ "name": "zipCode",
2160
+ "schema": {
2161
+ "k": "string"
2162
+ },
2163
+ "optional": true
2164
+ },
2165
+ {
2166
+ "name": "radiusMiles",
2167
+ "schema": {
1792
2168
  "k": "number"
1793
2169
  },
1794
- {
1795
- "k": "null"
1796
- }
1797
- ]
1798
- },
1799
- "optional": false
1800
- },
1801
- {
1802
- "name": "currency",
1803
- "schema": {
1804
- "k": "string"
1805
- },
1806
- "optional": false
1807
- },
1808
- {
1809
- "name": "tripType",
1810
- "schema": {
1811
- "k": "union",
1812
- "of": [
1813
- {
1814
- "k": "literal",
1815
- "v": "round trip"
2170
+ "optional": true
2171
+ },
2172
+ {
2173
+ "name": "stockType",
2174
+ "schema": {
2175
+ "k": "union",
2176
+ "of": [
2177
+ {
2178
+ "k": "literal",
2179
+ "v": "new"
2180
+ },
2181
+ {
2182
+ "k": "literal",
2183
+ "v": "used"
2184
+ },
2185
+ {
2186
+ "k": "literal",
2187
+ "v": "cpo"
2188
+ }
2189
+ ]
1816
2190
  },
1817
- {
1818
- "k": "literal",
1819
- "v": "one way"
2191
+ "optional": true
2192
+ },
2193
+ {
2194
+ "name": "make",
2195
+ "schema": {
2196
+ "k": "string"
2197
+ },
2198
+ "optional": true
2199
+ },
2200
+ {
2201
+ "name": "model",
2202
+ "schema": {
2203
+ "k": "string"
2204
+ },
2205
+ "optional": true
2206
+ },
2207
+ {
2208
+ "name": "maxPrice",
2209
+ "schema": {
2210
+ "k": "string"
2211
+ },
2212
+ "optional": true
2213
+ },
2214
+ {
2215
+ "name": "minPrice",
2216
+ "schema": {
2217
+ "k": "string"
2218
+ },
2219
+ "optional": true
2220
+ },
2221
+ {
2222
+ "name": "maxMileage",
2223
+ "schema": {
2224
+ "k": "string"
2225
+ },
2226
+ "optional": true
2227
+ },
2228
+ {
2229
+ "name": "page",
2230
+ "schema": {
2231
+ "k": "number"
2232
+ },
2233
+ "optional": true
2234
+ },
2235
+ {
2236
+ "name": "pageSize",
2237
+ "schema": {
2238
+ "k": "number"
2239
+ },
2240
+ "optional": true
2241
+ },
2242
+ {
2243
+ "name": "sort",
2244
+ "schema": {
2245
+ "k": "string"
2246
+ },
2247
+ "optional": true
2248
+ }
2249
+ ]
2250
+ },
2251
+ "optional": false
2252
+ }
2253
+ ],
2254
+ "getListing": [
2255
+ {
2256
+ "name": "listingId",
2257
+ "schema": {
2258
+ "k": "string"
2259
+ },
2260
+ "optional": false
2261
+ }
2262
+ ],
2263
+ "getModelResearch": [
2264
+ {
2265
+ "name": "args",
2266
+ "schema": {
2267
+ "k": "object",
2268
+ "props": [
2269
+ {
2270
+ "name": "make",
2271
+ "schema": {
2272
+ "k": "string"
2273
+ },
2274
+ "optional": false
2275
+ },
2276
+ {
2277
+ "name": "model",
2278
+ "schema": {
2279
+ "k": "string"
2280
+ },
2281
+ "optional": false
2282
+ },
2283
+ {
2284
+ "name": "year",
2285
+ "schema": {
2286
+ "k": "number"
2287
+ },
2288
+ "optional": false
2289
+ }
2290
+ ]
2291
+ },
2292
+ "optional": false
2293
+ }
2294
+ ],
2295
+ "getVehicleValue": [
2296
+ {
2297
+ "name": "args",
2298
+ "schema": {
2299
+ "k": "object",
2300
+ "props": [
2301
+ {
2302
+ "name": "vin",
2303
+ "schema": {
2304
+ "k": "string"
2305
+ },
2306
+ "optional": false
2307
+ },
2308
+ {
2309
+ "name": "identity",
2310
+ "schema": {
2311
+ "k": "ref",
2312
+ "name": "QuoteIdentity"
2313
+ },
2314
+ "optional": false
2315
+ },
2316
+ {
2317
+ "name": "postalCode",
2318
+ "schema": {
2319
+ "k": "string"
2320
+ },
2321
+ "optional": false
2322
+ },
2323
+ {
2324
+ "name": "mileage",
2325
+ "schema": {
2326
+ "k": "number"
2327
+ },
2328
+ "optional": true
2329
+ }
2330
+ ]
2331
+ },
2332
+ "optional": false
2333
+ }
2334
+ ]
2335
+ }
2336
+ },
2337
+ "providers.cheapflights": {
2338
+ "defs": {
2339
+ "KayakCarQuery": {
2340
+ "k": "object",
2341
+ "props": [
2342
+ {
2343
+ "name": "pickup",
2344
+ "schema": {
2345
+ "k": "string"
2346
+ },
2347
+ "optional": false
2348
+ },
2349
+ {
2350
+ "name": "dropoff",
2351
+ "schema": {
2352
+ "k": "string"
2353
+ },
2354
+ "optional": true
2355
+ },
2356
+ {
2357
+ "name": "pickupDate",
2358
+ "schema": {
2359
+ "k": "string"
2360
+ },
2361
+ "optional": false
2362
+ },
2363
+ {
2364
+ "name": "dropoffDate",
2365
+ "schema": {
2366
+ "k": "string"
2367
+ },
2368
+ "optional": false
2369
+ },
2370
+ {
2371
+ "name": "pickupHour",
2372
+ "schema": {
2373
+ "k": "number"
2374
+ },
2375
+ "optional": true
2376
+ },
2377
+ {
2378
+ "name": "dropoffHour",
2379
+ "schema": {
2380
+ "k": "number"
2381
+ },
2382
+ "optional": true
2383
+ },
2384
+ {
2385
+ "name": "driverAge",
2386
+ "schema": {
2387
+ "k": "number"
2388
+ },
2389
+ "optional": true
2390
+ }
2391
+ ]
2392
+ },
2393
+ "KayakFlight": {
2394
+ "k": "object",
2395
+ "props": [
2396
+ {
2397
+ "name": "id",
2398
+ "schema": {
2399
+ "k": "string"
2400
+ },
2401
+ "optional": false
2402
+ },
2403
+ {
2404
+ "name": "price",
2405
+ "schema": {
2406
+ "k": "union",
2407
+ "of": [
2408
+ {
2409
+ "k": "number"
2410
+ },
2411
+ {
2412
+ "k": "null"
2413
+ }
2414
+ ]
2415
+ },
2416
+ "optional": false
2417
+ },
2418
+ {
2419
+ "name": "currency",
2420
+ "schema": {
2421
+ "k": "string"
2422
+ },
2423
+ "optional": false
2424
+ },
2425
+ {
2426
+ "name": "tripType",
2427
+ "schema": {
2428
+ "k": "union",
2429
+ "of": [
2430
+ {
2431
+ "k": "literal",
2432
+ "v": "round trip"
2433
+ },
2434
+ {
2435
+ "k": "literal",
2436
+ "v": "one way"
1820
2437
  }
1821
2438
  ]
1822
2439
  },
@@ -1877,6 +2494,46 @@ export const VALIDATORS: ValidatorTable = {
1877
2494
  }
1878
2495
  ]
1879
2496
  },
2497
+ "KayakHotelQuery": {
2498
+ "k": "object",
2499
+ "props": [
2500
+ {
2501
+ "name": "location",
2502
+ "schema": {
2503
+ "k": "string"
2504
+ },
2505
+ "optional": false
2506
+ },
2507
+ {
2508
+ "name": "checkIn",
2509
+ "schema": {
2510
+ "k": "string"
2511
+ },
2512
+ "optional": false
2513
+ },
2514
+ {
2515
+ "name": "checkOut",
2516
+ "schema": {
2517
+ "k": "string"
2518
+ },
2519
+ "optional": false
2520
+ },
2521
+ {
2522
+ "name": "adults",
2523
+ "schema": {
2524
+ "k": "number"
2525
+ },
2526
+ "optional": true
2527
+ },
2528
+ {
2529
+ "name": "rooms",
2530
+ "schema": {
2531
+ "k": "number"
2532
+ },
2533
+ "optional": true
2534
+ }
2535
+ ]
2536
+ },
1880
2537
  "KayakQuery": {
1881
2538
  "k": "object",
1882
2539
  "props": [
@@ -1978,6 +2635,16 @@ export const VALIDATORS: ValidatorTable = {
1978
2635
  "optional": false
1979
2636
  }
1980
2637
  ],
2638
+ "searchHotels": [
2639
+ {
2640
+ "name": "query",
2641
+ "schema": {
2642
+ "k": "ref",
2643
+ "name": "KayakHotelQuery"
2644
+ },
2645
+ "optional": false
2646
+ }
2647
+ ],
1981
2648
  "searchCars": [
1982
2649
  {
1983
2650
  "name": "query",
@@ -2061,27 +2728,84 @@ export const VALIDATORS: ValidatorTable = {
2061
2728
  "k": "union",
2062
2729
  "of": [
2063
2730
  {
2064
- "k": "string"
2731
+ "k": "string"
2732
+ },
2733
+ {
2734
+ "k": "array",
2735
+ "of": {
2736
+ "k": "string"
2737
+ }
2738
+ }
2739
+ ]
2740
+ }
2741
+ },
2742
+ "optional": false
2743
+ }
2744
+ ]
2745
+ }
2746
+ },
2747
+ "providers.classpass": {
2748
+ "defs": {
2749
+ "ClasspassScheduleOptions": {
2750
+ "k": "object",
2751
+ "props": [
2752
+ {
2753
+ "name": "date",
2754
+ "schema": {
2755
+ "k": "string"
2756
+ },
2757
+ "optional": true
2758
+ },
2759
+ {
2760
+ "name": "days",
2761
+ "schema": {
2762
+ "k": "number"
2763
+ },
2764
+ "optional": true
2765
+ }
2766
+ ]
2767
+ },
2768
+ "ClasspassSearchQuery": {
2769
+ "k": "object",
2770
+ "props": [
2771
+ {
2772
+ "name": "lat",
2773
+ "schema": {
2774
+ "k": "number"
2775
+ },
2776
+ "optional": false
2777
+ },
2778
+ {
2779
+ "name": "lon",
2780
+ "schema": {
2781
+ "k": "number"
2782
+ },
2783
+ "optional": false
2784
+ },
2785
+ {
2786
+ "name": "radius",
2787
+ "schema": {
2788
+ "k": "number"
2789
+ },
2790
+ "optional": false
2791
+ },
2792
+ {
2793
+ "name": "radiusUnits",
2794
+ "schema": {
2795
+ "k": "union",
2796
+ "of": [
2797
+ {
2798
+ "k": "literal",
2799
+ "v": "mi"
2065
2800
  },
2066
2801
  {
2067
- "k": "array",
2068
- "of": {
2069
- "k": "string"
2070
- }
2802
+ "k": "literal",
2803
+ "v": "km"
2071
2804
  }
2072
2805
  ]
2073
- }
2806
+ },
2807
+ "optional": true
2074
2808
  },
2075
- "optional": false
2076
- }
2077
- ]
2078
- }
2079
- },
2080
- "providers.classpass": {
2081
- "defs": {
2082
- "ClasspassScheduleOptions": {
2083
- "k": "object",
2084
- "props": [
2085
2809
  {
2086
2810
  "name": "date",
2087
2811
  "schema": {
@@ -2090,9 +2814,9 @@ export const VALIDATORS: ValidatorTable = {
2090
2814
  "optional": true
2091
2815
  },
2092
2816
  {
2093
- "name": "days",
2817
+ "name": "cursor",
2094
2818
  "schema": {
2095
- "k": "number"
2819
+ "k": "string"
2096
2820
  },
2097
2821
  "optional": true
2098
2822
  }
@@ -2100,6 +2824,33 @@ export const VALIDATORS: ValidatorTable = {
2100
2824
  }
2101
2825
  },
2102
2826
  "functions": {
2827
+ "search": [
2828
+ {
2829
+ "name": "query",
2830
+ "schema": {
2831
+ "k": "ref",
2832
+ "name": "ClasspassSearchQuery"
2833
+ },
2834
+ "optional": false
2835
+ }
2836
+ ],
2837
+ "getStudio": [
2838
+ {
2839
+ "name": "studio",
2840
+ "schema": {
2841
+ "k": "union",
2842
+ "of": [
2843
+ {
2844
+ "k": "number"
2845
+ },
2846
+ {
2847
+ "k": "string"
2848
+ }
2849
+ ]
2850
+ },
2851
+ "optional": false
2852
+ }
2853
+ ],
2103
2854
  "getSchedule": [
2104
2855
  {
2105
2856
  "name": "studio",
@@ -2143,6 +2894,40 @@ export const VALIDATORS: ValidatorTable = {
2143
2894
  ]
2144
2895
  }
2145
2896
  },
2897
+ "providers.cyberpowerpc": {
2898
+ "defs": {},
2899
+ "functions": {
2900
+ "listConfigurators": [],
2901
+ "getConfigurator": [
2902
+ {
2903
+ "name": "slug",
2904
+ "schema": {
2905
+ "k": "string"
2906
+ },
2907
+ "optional": false
2908
+ }
2909
+ ],
2910
+ "priceBuild": [
2911
+ {
2912
+ "name": "slug",
2913
+ "schema": {
2914
+ "k": "string"
2915
+ },
2916
+ "optional": false
2917
+ },
2918
+ {
2919
+ "name": "selections",
2920
+ "schema": {
2921
+ "k": "record",
2922
+ "value": {
2923
+ "k": "string"
2924
+ }
2925
+ },
2926
+ "optional": false
2927
+ }
2928
+ ]
2929
+ }
2930
+ },
2146
2931
  "providers.decked": {
2147
2932
  "defs": {
2148
2933
  "DeckedCabSideOption": {
@@ -2220,6 +3005,20 @@ export const VALIDATORS: ValidatorTable = {
2220
3005
  ]
2221
3006
  }
2222
3007
  },
3008
+ "providers.dice": {
3009
+ "defs": {},
3010
+ "functions": {
3011
+ "getJob": [
3012
+ {
3013
+ "name": "jobId",
3014
+ "schema": {
3015
+ "k": "string"
3016
+ },
3017
+ "optional": false
3018
+ }
3019
+ ]
3020
+ }
3021
+ },
2223
3022
  "providers.dickssportinggoods": {
2224
3023
  "defs": {},
2225
3024
  "functions": {
@@ -2261,6 +3060,51 @@ export const VALIDATORS: ValidatorTable = {
2261
3060
  }
2262
3061
  ]
2263
3062
  },
3063
+ "dillardsFindStoresQuery": {
3064
+ "k": "object",
3065
+ "props": [
3066
+ {
3067
+ "name": "state",
3068
+ "schema": {
3069
+ "k": "string"
3070
+ },
3071
+ "optional": true
3072
+ },
3073
+ {
3074
+ "name": "city",
3075
+ "schema": {
3076
+ "k": "string"
3077
+ },
3078
+ "optional": true
3079
+ },
3080
+ {
3081
+ "name": "zip",
3082
+ "schema": {
3083
+ "k": "string"
3084
+ },
3085
+ "optional": true
3086
+ },
3087
+ {
3088
+ "name": "limit",
3089
+ "schema": {
3090
+ "k": "number"
3091
+ },
3092
+ "optional": true
3093
+ }
3094
+ ]
3095
+ },
3096
+ "dillardsGetProductQuery": {
3097
+ "k": "object",
3098
+ "props": [
3099
+ {
3100
+ "name": "url",
3101
+ "schema": {
3102
+ "k": "string"
3103
+ },
3104
+ "optional": false
3105
+ }
3106
+ ]
3107
+ },
2264
3108
  "dillardsRegistrySearchQuery": {
2265
3109
  "k": "object",
2266
3110
  "props": [
@@ -2335,6 +3179,16 @@ export const VALIDATORS: ValidatorTable = {
2335
3179
  "optional": false
2336
3180
  }
2337
3181
  ],
3182
+ "getProduct": [
3183
+ {
3184
+ "name": "query",
3185
+ "schema": {
3186
+ "k": "ref",
3187
+ "name": "dillardsGetProductQuery"
3188
+ },
3189
+ "optional": false
3190
+ }
3191
+ ],
2338
3192
  "searchRegistry": [
2339
3193
  {
2340
3194
  "name": "query",
@@ -2344,12 +3198,31 @@ export const VALIDATORS: ValidatorTable = {
2344
3198
  },
2345
3199
  "optional": false
2346
3200
  }
3201
+ ],
3202
+ "findStores": [
3203
+ {
3204
+ "name": "query",
3205
+ "schema": {
3206
+ "k": "ref",
3207
+ "name": "dillardsFindStoresQuery"
3208
+ },
3209
+ "optional": false
3210
+ }
2347
3211
  ]
2348
3212
  }
2349
3213
  },
2350
3214
  "providers.discounttire": {
2351
3215
  "defs": {},
2352
3216
  "functions": {
3217
+ "getProduct": [
3218
+ {
3219
+ "name": "idOrUrl",
3220
+ "schema": {
3221
+ "k": "string"
3222
+ },
3223
+ "optional": false
3224
+ }
3225
+ ],
2353
3226
  "checkStock": [
2354
3227
  {
2355
3228
  "name": "idOrUrl",
@@ -2376,35 +3249,172 @@ export const VALIDATORS: ValidatorTable = {
2376
3249
  ]
2377
3250
  },
2378
3251
  {
2379
- "k": "object",
2380
- "props": [
2381
- {
2382
- "name": "storeCode",
2383
- "schema": {
2384
- "k": "string"
3252
+ "k": "object",
3253
+ "props": [
3254
+ {
3255
+ "name": "storeCode",
3256
+ "schema": {
3257
+ "k": "string"
3258
+ },
3259
+ "optional": false
3260
+ }
3261
+ ]
3262
+ },
3263
+ {
3264
+ "k": "object",
3265
+ "props": [
3266
+ {
3267
+ "name": "latitude",
3268
+ "schema": {
3269
+ "k": "number"
3270
+ },
3271
+ "optional": false
3272
+ },
3273
+ {
3274
+ "name": "longitude",
3275
+ "schema": {
3276
+ "k": "number"
3277
+ },
3278
+ "optional": false
3279
+ }
3280
+ ]
3281
+ }
3282
+ ]
3283
+ },
3284
+ "optional": false
3285
+ }
3286
+ ],
3287
+ "searchTiresBySize": [
3288
+ {
3289
+ "name": "args",
3290
+ "schema": {
3291
+ "k": "object",
3292
+ "props": [
3293
+ {
3294
+ "name": "front",
3295
+ "schema": {
3296
+ "k": "object",
3297
+ "props": [
3298
+ {
3299
+ "name": "diameter",
3300
+ "schema": {
3301
+ "k": "string"
3302
+ },
3303
+ "optional": false
3304
+ },
3305
+ {
3306
+ "name": "width",
3307
+ "schema": {
3308
+ "k": "string"
3309
+ },
3310
+ "optional": false
3311
+ },
3312
+ {
3313
+ "name": "aspectRatio",
3314
+ "schema": {
3315
+ "k": "string"
3316
+ },
3317
+ "optional": false
3318
+ }
3319
+ ]
3320
+ },
3321
+ "optional": false
3322
+ },
3323
+ {
3324
+ "name": "rear",
3325
+ "schema": {
3326
+ "k": "object",
3327
+ "props": [
3328
+ {
3329
+ "name": "diameter",
3330
+ "schema": {
3331
+ "k": "string"
3332
+ },
3333
+ "optional": false
3334
+ },
3335
+ {
3336
+ "name": "width",
3337
+ "schema": {
3338
+ "k": "string"
3339
+ },
3340
+ "optional": false
3341
+ },
3342
+ {
3343
+ "name": "aspectRatio",
3344
+ "schema": {
3345
+ "k": "string"
3346
+ },
3347
+ "optional": false
3348
+ }
3349
+ ]
3350
+ },
3351
+ "optional": true
3352
+ },
3353
+ {
3354
+ "name": "location",
3355
+ "schema": {
3356
+ "k": "union",
3357
+ "of": [
3358
+ {
3359
+ "k": "object",
3360
+ "props": [
3361
+ {
3362
+ "name": "zip",
3363
+ "schema": {
3364
+ "k": "string"
3365
+ },
3366
+ "optional": false
3367
+ }
3368
+ ]
2385
3369
  },
2386
- "optional": false
2387
- }
2388
- ]
3370
+ {
3371
+ "k": "object",
3372
+ "props": [
3373
+ {
3374
+ "name": "storeCode",
3375
+ "schema": {
3376
+ "k": "string"
3377
+ },
3378
+ "optional": false
3379
+ }
3380
+ ]
3381
+ },
3382
+ {
3383
+ "k": "object",
3384
+ "props": [
3385
+ {
3386
+ "name": "latitude",
3387
+ "schema": {
3388
+ "k": "number"
3389
+ },
3390
+ "optional": false
3391
+ },
3392
+ {
3393
+ "name": "longitude",
3394
+ "schema": {
3395
+ "k": "number"
3396
+ },
3397
+ "optional": false
3398
+ }
3399
+ ]
3400
+ }
3401
+ ]
3402
+ },
3403
+ "optional": false
2389
3404
  },
2390
3405
  {
2391
- "k": "object",
2392
- "props": [
2393
- {
2394
- "name": "latitude",
2395
- "schema": {
2396
- "k": "number"
2397
- },
2398
- "optional": false
2399
- },
2400
- {
2401
- "name": "longitude",
2402
- "schema": {
2403
- "k": "number"
2404
- },
2405
- "optional": false
2406
- }
2407
- ]
3406
+ "name": "pageNumber",
3407
+ "schema": {
3408
+ "k": "number"
3409
+ },
3410
+ "optional": false
3411
+ },
3412
+ {
3413
+ "name": "pageSize",
3414
+ "schema": {
3415
+ "k": "number"
3416
+ },
3417
+ "optional": false
2408
3418
  }
2409
3419
  ]
2410
3420
  },
@@ -2539,6 +3549,30 @@ export const VALIDATORS: ValidatorTable = {
2539
3549
  },
2540
3550
  "optional": false
2541
3551
  }
3552
+ ],
3553
+ "checkAvailability": [
3554
+ {
3555
+ "name": "storeId",
3556
+ "schema": {
3557
+ "k": "union",
3558
+ "of": [
3559
+ {
3560
+ "k": "number"
3561
+ },
3562
+ {
3563
+ "k": "string"
3564
+ }
3565
+ ]
3566
+ },
3567
+ "optional": false
3568
+ },
3569
+ {
3570
+ "name": "unitSize",
3571
+ "schema": {
3572
+ "k": "string"
3573
+ },
3574
+ "optional": false
3575
+ }
2542
3576
  ]
2543
3577
  }
2544
3578
  },
@@ -2553,7 +3587,57 @@ export const VALIDATORS: ValidatorTable = {
2553
3587
  "defs": {},
2554
3588
  "functions": {
2555
3589
  "findDealers": null,
2556
- "listNameplates": null
3590
+ "listNameplates": null,
3591
+ "getOffers": [
3592
+ {
3593
+ "name": "args",
3594
+ "schema": {
3595
+ "k": "object",
3596
+ "props": [
3597
+ {
3598
+ "name": "nameplate",
3599
+ "schema": {
3600
+ "k": "string"
3601
+ },
3602
+ "optional": false
3603
+ },
3604
+ {
3605
+ "name": "postalCode",
3606
+ "schema": {
3607
+ "k": "string"
3608
+ },
3609
+ "optional": false
3610
+ },
3611
+ {
3612
+ "name": "year",
3613
+ "schema": {
3614
+ "k": "number"
3615
+ },
3616
+ "optional": true
3617
+ }
3618
+ ]
3619
+ },
3620
+ "optional": false
3621
+ }
3622
+ ],
3623
+ "getVehicle": [
3624
+ {
3625
+ "name": "vin",
3626
+ "schema": {
3627
+ "k": "string"
3628
+ },
3629
+ "optional": false
3630
+ }
3631
+ ],
3632
+ "getRecalls": [
3633
+ {
3634
+ "name": "vin",
3635
+ "schema": {
3636
+ "k": "string"
3637
+ },
3638
+ "optional": false
3639
+ }
3640
+ ]
2557
3641
  }
2558
3642
  },
2559
3643
  "providers.framebridge": {
@@ -2692,6 +3776,76 @@ export const VALIDATORS: ValidatorTable = {
2692
3776
  },
2693
3777
  "optional": false
2694
3778
  }
3779
+ ],
3780
+ "getSeriesObservations": [
3781
+ {
3782
+ "name": "args",
3783
+ "schema": {
3784
+ "k": "union",
3785
+ "of": [
3786
+ {
3787
+ "k": "string"
3788
+ },
3789
+ {
3790
+ "k": "object",
3791
+ "props": [
3792
+ {
3793
+ "name": "seriesId",
3794
+ "schema": {
3795
+ "k": "string"
3796
+ },
3797
+ "optional": false
3798
+ },
3799
+ {
3800
+ "name": "from",
3801
+ "schema": {
3802
+ "k": "string"
3803
+ },
3804
+ "optional": true
3805
+ },
3806
+ {
3807
+ "name": "to",
3808
+ "schema": {
3809
+ "k": "string"
3810
+ },
3811
+ "optional": true
3812
+ },
3813
+ {
3814
+ "name": "units",
3815
+ "schema": {
3816
+ "k": "string"
3817
+ },
3818
+ "optional": true
3819
+ },
3820
+ {
3821
+ "name": "frequency",
3822
+ "schema": {
3823
+ "k": "string"
3824
+ },
3825
+ "optional": true
3826
+ },
3827
+ {
3828
+ "name": "aggregationMethod",
3829
+ "schema": {
3830
+ "k": "string"
3831
+ },
3832
+ "optional": true
3833
+ }
3834
+ ]
3835
+ }
3836
+ ]
3837
+ },
3838
+ "optional": false
3839
+ }
3840
+ ],
3841
+ "browseCategory": [
3842
+ {
3843
+ "name": "categoryId",
3844
+ "schema": {
3845
+ "k": "number"
3846
+ },
3847
+ "optional": true
3848
+ }
2695
3849
  ]
2696
3850
  }
2697
3851
  },
@@ -3117,6 +4271,15 @@ export const VALIDATORS: ValidatorTable = {
3117
4271
  "providers.grainger": {
3118
4272
  "defs": {},
3119
4273
  "functions": {
4274
+ "search": [
4275
+ {
4276
+ "name": "args",
4277
+ "schema": {
4278
+ "k": "any"
4279
+ },
4280
+ "optional": false
4281
+ }
4282
+ ],
3120
4283
  "findBranch": [
3121
4284
  {
3122
4285
  "name": "args",
@@ -3125,6 +4288,24 @@ export const VALIDATORS: ValidatorTable = {
3125
4288
  },
3126
4289
  "optional": false
3127
4290
  }
4291
+ ],
4292
+ "getProduct": [
4293
+ {
4294
+ "name": "args",
4295
+ "schema": {
4296
+ "k": "any"
4297
+ },
4298
+ "optional": false
4299
+ }
4300
+ ],
4301
+ "checkStock": [
4302
+ {
4303
+ "name": "args",
4304
+ "schema": {
4305
+ "k": "any"
4306
+ },
4307
+ "optional": false
4308
+ }
3128
4309
  ]
3129
4310
  }
3130
4311
  },
@@ -3249,6 +4430,37 @@ export const VALIDATORS: ValidatorTable = {
3249
4430
  ]
3250
4431
  }
3251
4432
  },
4433
+ "providers.hellotend": {
4434
+ "defs": {},
4435
+ "functions": {
4436
+ "listMarkets": [],
4437
+ "listStudios": [
4438
+ {
4439
+ "name": "market",
4440
+ "schema": {
4441
+ "k": "string"
4442
+ },
4443
+ "optional": true
4444
+ }
4445
+ ],
4446
+ "listServices": [
4447
+ {
4448
+ "name": "market",
4449
+ "schema": {
4450
+ "k": "string"
4451
+ },
4452
+ "optional": false
4453
+ },
4454
+ {
4455
+ "name": "studio",
4456
+ "schema": {
4457
+ "k": "string"
4458
+ },
4459
+ "optional": false
4460
+ }
4461
+ ]
4462
+ }
4463
+ },
3252
4464
  "providers.hilton": {
3253
4465
  "defs": {},
3254
4466
  "functions": {
@@ -4354,7 +5566,26 @@ export const VALIDATORS: ValidatorTable = {
4354
5566
  "optional": false
4355
5567
  }
4356
5568
  ],
4357
- "priceConfiguration": [
5569
+ "priceConfiguration": [
5570
+ {
5571
+ "name": "sku",
5572
+ "schema": {
5573
+ "k": "string"
5574
+ },
5575
+ "optional": false
5576
+ },
5577
+ {
5578
+ "name": "selections",
5579
+ "schema": {
5580
+ "k": "record",
5581
+ "value": {
5582
+ "k": "string"
5583
+ }
5584
+ },
5585
+ "optional": false
5586
+ }
5587
+ ],
5588
+ "addToCart": [
4358
5589
  {
4359
5590
  "name": "sku",
4360
5591
  "schema": {
@@ -4372,10 +5603,25 @@ export const VALIDATORS: ValidatorTable = {
4372
5603
  },
4373
5604
  "optional": false
4374
5605
  }
5606
+ ]
5607
+ }
5608
+ },
5609
+ "providers.joybird": {
5610
+ "defs": {},
5611
+ "functions": {
5612
+ "listConfigurators": [],
5613
+ "getConfigurator": [
5614
+ {
5615
+ "name": "slug",
5616
+ "schema": {
5617
+ "k": "string"
5618
+ },
5619
+ "optional": false
5620
+ }
4375
5621
  ],
4376
- "addToCart": [
5622
+ "priceConfigurator": [
4377
5623
  {
4378
- "name": "sku",
5624
+ "name": "slug",
4379
5625
  "schema": {
4380
5626
  "k": "string"
4381
5627
  },
@@ -4728,6 +5974,15 @@ export const VALIDATORS: ValidatorTable = {
4728
5974
  },
4729
5975
  "optional": false
4730
5976
  }
5977
+ ],
5978
+ "getTest": [
5979
+ {
5980
+ "name": "sku",
5981
+ "schema": {
5982
+ "k": "string"
5983
+ },
5984
+ "optional": false
5985
+ }
4731
5986
  ]
4732
5987
  }
4733
5988
  },
@@ -5024,42 +6279,285 @@ export const VALIDATORS: ValidatorTable = {
5024
6279
  "schema": {
5025
6280
  "k": "string"
5026
6281
  },
5027
- "optional": false
5028
- },
5029
- {
5030
- "name": "travelClass",
5031
- "schema": {
5032
- "k": "string"
6282
+ "optional": false
6283
+ },
6284
+ {
6285
+ "name": "travelClass",
6286
+ "schema": {
6287
+ "k": "string"
6288
+ },
6289
+ "optional": true
6290
+ },
6291
+ {
6292
+ "name": "tariff",
6293
+ "schema": {
6294
+ "k": "string"
6295
+ },
6296
+ "optional": true
6297
+ }
6298
+ ]
6299
+ }
6300
+ },
6301
+ "providers.lululemon": {
6302
+ "defs": {},
6303
+ "functions": {
6304
+ "search": [
6305
+ {
6306
+ "name": "query",
6307
+ "schema": {
6308
+ "k": "object",
6309
+ "props": [
6310
+ {
6311
+ "name": "query",
6312
+ "schema": {
6313
+ "k": "string"
6314
+ },
6315
+ "optional": false
6316
+ },
6317
+ {
6318
+ "name": "limit",
6319
+ "schema": {
6320
+ "k": "number"
6321
+ },
6322
+ "optional": true
6323
+ }
6324
+ ]
6325
+ },
6326
+ "optional": false
6327
+ }
6328
+ ],
6329
+ "getProduct": [
6330
+ {
6331
+ "name": "query",
6332
+ "schema": {
6333
+ "k": "object",
6334
+ "props": [
6335
+ {
6336
+ "name": "productId",
6337
+ "schema": {
6338
+ "k": "string"
6339
+ },
6340
+ "optional": false
6341
+ }
6342
+ ]
6343
+ },
6344
+ "optional": false
6345
+ }
6346
+ ],
6347
+ "getSimilarProducts": [
6348
+ {
6349
+ "name": "query",
6350
+ "schema": {
6351
+ "k": "object",
6352
+ "props": [
6353
+ {
6354
+ "name": "productId",
6355
+ "schema": {
6356
+ "k": "string"
6357
+ },
6358
+ "optional": false
6359
+ },
6360
+ {
6361
+ "name": "limit",
6362
+ "schema": {
6363
+ "k": "number"
6364
+ },
6365
+ "optional": true
6366
+ }
6367
+ ]
6368
+ },
6369
+ "optional": false
6370
+ }
6371
+ ]
6372
+ }
6373
+ },
6374
+ "providers.mailchimp": {
6375
+ "defs": {},
6376
+ "functions": {
6377
+ "getPlanPricing": null
6378
+ }
6379
+ },
6380
+ "providers.marriott": {
6381
+ "defs": {},
6382
+ "functions": {
6383
+ "findHotels": [
6384
+ {
6385
+ "name": "args",
6386
+ "schema": {
6387
+ "k": "object",
6388
+ "props": [
6389
+ {
6390
+ "name": "place",
6391
+ "schema": {
6392
+ "k": "string"
6393
+ },
6394
+ "optional": false
6395
+ },
6396
+ {
6397
+ "name": "query",
6398
+ "schema": {
6399
+ "k": "string"
6400
+ },
6401
+ "optional": true
6402
+ }
6403
+ ]
6404
+ },
6405
+ "optional": false
6406
+ }
6407
+ ]
6408
+ }
6409
+ },
6410
+ "providers.mcdonalds": {
6411
+ "defs": {},
6412
+ "functions": {
6413
+ "getMenu": null,
6414
+ "getMenuItem": null,
6415
+ "findStores": null
6416
+ }
6417
+ },
6418
+ "providers.medicare": {
6419
+ "defs": {
6420
+ "medicareClinicianQuery": {
6421
+ "k": "object",
6422
+ "props": [
6423
+ {
6424
+ "name": "zip",
6425
+ "schema": {
6426
+ "k": "string"
6427
+ },
6428
+ "optional": true
6429
+ },
6430
+ {
6431
+ "name": "latitude",
6432
+ "schema": {
6433
+ "k": "number"
6434
+ },
6435
+ "optional": true
6436
+ },
6437
+ {
6438
+ "name": "longitude",
6439
+ "schema": {
6440
+ "k": "number"
6441
+ },
6442
+ "optional": true
6443
+ },
6444
+ {
6445
+ "name": "radiusMiles",
6446
+ "schema": {
6447
+ "k": "number"
6448
+ },
6449
+ "optional": true
6450
+ },
6451
+ {
6452
+ "name": "specialty",
6453
+ "schema": {
6454
+ "k": "string"
6455
+ },
6456
+ "optional": true
6457
+ },
6458
+ {
6459
+ "name": "lastName",
6460
+ "schema": {
6461
+ "k": "string"
6462
+ },
6463
+ "optional": true
6464
+ },
6465
+ {
6466
+ "name": "firstName",
6467
+ "schema": {
6468
+ "k": "string"
6469
+ },
6470
+ "optional": true
6471
+ },
6472
+ {
6473
+ "name": "acceptsAssignmentOnly",
6474
+ "schema": {
6475
+ "k": "boolean"
6476
+ },
6477
+ "optional": true
6478
+ },
6479
+ {
6480
+ "name": "limit",
6481
+ "schema": {
6482
+ "k": "number"
6483
+ },
6484
+ "optional": true
6485
+ }
6486
+ ]
6487
+ },
6488
+ "medicareGetPlanQuery": {
6489
+ "k": "object",
6490
+ "props": [
6491
+ {
6492
+ "name": "planType",
6493
+ "schema": {
6494
+ "k": "union",
6495
+ "of": [
6496
+ {
6497
+ "k": "literal",
6498
+ "v": "pdp"
6499
+ },
6500
+ {
6501
+ "k": "literal",
6502
+ "v": "ma"
6503
+ },
6504
+ {
6505
+ "k": "literal",
6506
+ "v": "mapd"
6507
+ },
6508
+ {
6509
+ "k": "literal",
6510
+ "v": "snp"
6511
+ }
6512
+ ]
6513
+ },
6514
+ "optional": false
6515
+ },
6516
+ {
6517
+ "name": "contractId",
6518
+ "schema": {
6519
+ "k": "string"
6520
+ },
6521
+ "optional": false
6522
+ },
6523
+ {
6524
+ "name": "planId",
6525
+ "schema": {
6526
+ "k": "string"
6527
+ },
6528
+ "optional": false
6529
+ },
6530
+ {
6531
+ "name": "segmentId",
6532
+ "schema": {
6533
+ "k": "string"
6534
+ },
6535
+ "optional": false
5033
6536
  },
5034
- "optional": true
5035
- },
5036
- {
5037
- "name": "tariff",
5038
- "schema": {
5039
- "k": "string"
6537
+ {
6538
+ "name": "year",
6539
+ "schema": {
6540
+ "k": "number"
6541
+ },
6542
+ "optional": true
5040
6543
  },
5041
- "optional": true
5042
- }
5043
- ]
5044
- }
5045
- },
5046
- "providers.mailchimp": {
5047
- "defs": {},
5048
- "functions": {
5049
- "getPlanPricing": null
5050
- }
5051
- },
5052
- "providers.mcdonalds": {
5053
- "defs": {},
5054
- "functions": {
5055
- "getMenu": null,
5056
- "getMenuItem": null,
5057
- "findStores": null
5058
- }
5059
- },
5060
- "providers.medicare": {
5061
- "defs": {
5062
- "medicareClinicianQuery": {
6544
+ {
6545
+ "name": "zip",
6546
+ "schema": {
6547
+ "k": "string"
6548
+ },
6549
+ "optional": false
6550
+ },
6551
+ {
6552
+ "name": "county",
6553
+ "schema": {
6554
+ "k": "string"
6555
+ },
6556
+ "optional": true
6557
+ }
6558
+ ]
6559
+ },
6560
+ "medicareHospitalQuery": {
5063
6561
  "k": "object",
5064
6562
  "props": [
5065
6563
  {
@@ -5091,37 +6589,35 @@ export const VALIDATORS: ValidatorTable = {
5091
6589
  "optional": true
5092
6590
  },
5093
6591
  {
5094
- "name": "specialty",
6592
+ "name": "limit",
5095
6593
  "schema": {
5096
- "k": "string"
6594
+ "k": "number"
5097
6595
  },
5098
6596
  "optional": true
5099
- },
6597
+ }
6598
+ ]
6599
+ },
6600
+ "medicareMedigapQuery": {
6601
+ "k": "object",
6602
+ "props": [
5100
6603
  {
5101
- "name": "lastName",
6604
+ "name": "zip",
5102
6605
  "schema": {
5103
6606
  "k": "string"
5104
6607
  },
5105
- "optional": true
6608
+ "optional": false
5106
6609
  },
5107
6610
  {
5108
- "name": "firstName",
6611
+ "name": "planType",
5109
6612
  "schema": {
5110
6613
  "k": "string"
5111
6614
  },
5112
6615
  "optional": true
5113
6616
  },
5114
6617
  {
5115
- "name": "acceptsAssignmentOnly",
5116
- "schema": {
5117
- "k": "boolean"
5118
- },
5119
- "optional": true
5120
- },
5121
- {
5122
- "name": "limit",
6618
+ "name": "county",
5123
6619
  "schema": {
5124
- "k": "number"
6620
+ "k": "string"
5125
6621
  },
5126
6622
  "optional": true
5127
6623
  }
@@ -5190,6 +6686,36 @@ export const VALIDATORS: ValidatorTable = {
5190
6686
  },
5191
6687
  "optional": false
5192
6688
  }
6689
+ ],
6690
+ "searchMedigapPlans": [
6691
+ {
6692
+ "name": "arg0",
6693
+ "schema": {
6694
+ "k": "ref",
6695
+ "name": "medicareMedigapQuery"
6696
+ },
6697
+ "optional": false
6698
+ }
6699
+ ],
6700
+ "findHospitals": [
6701
+ {
6702
+ "name": "query",
6703
+ "schema": {
6704
+ "k": "ref",
6705
+ "name": "medicareHospitalQuery"
6706
+ },
6707
+ "optional": false
6708
+ }
6709
+ ],
6710
+ "getPlan": [
6711
+ {
6712
+ "name": "arg0",
6713
+ "schema": {
6714
+ "k": "ref",
6715
+ "name": "medicareGetPlanQuery"
6716
+ },
6717
+ "optional": false
6718
+ }
5193
6719
  ]
5194
6720
  }
5195
6721
  },
@@ -5924,7 +7450,27 @@ export const VALIDATORS: ValidatorTable = {
5924
7450
  }
5925
7451
  },
5926
7452
  "providers.otto": {
5927
- "defs": {},
7453
+ "defs": {
7454
+ "ottoSearchQuery": {
7455
+ "k": "object",
7456
+ "props": [
7457
+ {
7458
+ "name": "query",
7459
+ "schema": {
7460
+ "k": "string"
7461
+ },
7462
+ "optional": false
7463
+ },
7464
+ {
7465
+ "name": "limit",
7466
+ "schema": {
7467
+ "k": "number"
7468
+ },
7469
+ "optional": true
7470
+ }
7471
+ ]
7472
+ }
7473
+ },
5928
7474
  "functions": {
5929
7475
  "getProduct": [
5930
7476
  {
@@ -5934,6 +7480,113 @@ export const VALIDATORS: ValidatorTable = {
5934
7480
  },
5935
7481
  "optional": false
5936
7482
  }
7483
+ ],
7484
+ "search": [
7485
+ {
7486
+ "name": "query",
7487
+ "schema": {
7488
+ "k": "ref",
7489
+ "name": "ottoSearchQuery"
7490
+ },
7491
+ "optional": false
7492
+ }
7493
+ ]
7494
+ }
7495
+ },
7496
+ "providers.paypal": {
7497
+ "defs": {
7498
+ "PaypalEstimateFeeArgs": {
7499
+ "k": "object",
7500
+ "props": [
7501
+ {
7502
+ "name": "amount",
7503
+ "schema": {
7504
+ "k": "number"
7505
+ },
7506
+ "optional": false
7507
+ },
7508
+ {
7509
+ "name": "currency",
7510
+ "schema": {
7511
+ "k": "string"
7512
+ },
7513
+ "optional": false
7514
+ },
7515
+ {
7516
+ "name": "crossBorder",
7517
+ "schema": {
7518
+ "k": "boolean"
7519
+ },
7520
+ "optional": false
7521
+ },
7522
+ {
7523
+ "name": "fundingSource",
7524
+ "schema": {
7525
+ "k": "union",
7526
+ "of": [
7527
+ {
7528
+ "k": "literal",
7529
+ "v": "balance"
7530
+ },
7531
+ {
7532
+ "k": "literal",
7533
+ "v": "bank"
7534
+ },
7535
+ {
7536
+ "k": "literal",
7537
+ "v": "card"
7538
+ },
7539
+ {
7540
+ "k": "literal",
7541
+ "v": "amexSend"
7542
+ }
7543
+ ]
7544
+ },
7545
+ "optional": false
7546
+ }
7547
+ ]
7548
+ },
7549
+ "PaypalGetFeesArgs": {
7550
+ "k": "object",
7551
+ "props": [
7552
+ {
7553
+ "name": "audience",
7554
+ "schema": {
7555
+ "k": "literal",
7556
+ "v": "consumer"
7557
+ },
7558
+ "optional": true
7559
+ },
7560
+ {
7561
+ "name": "country",
7562
+ "schema": {
7563
+ "k": "string"
7564
+ },
7565
+ "optional": true
7566
+ }
7567
+ ]
7568
+ }
7569
+ },
7570
+ "functions": {
7571
+ "estimateFee": [
7572
+ {
7573
+ "name": "args",
7574
+ "schema": {
7575
+ "k": "ref",
7576
+ "name": "PaypalEstimateFeeArgs"
7577
+ },
7578
+ "optional": false
7579
+ }
7580
+ ],
7581
+ "getFees": [
7582
+ {
7583
+ "name": "args",
7584
+ "schema": {
7585
+ "k": "ref",
7586
+ "name": "PaypalGetFeesArgs"
7587
+ },
7588
+ "optional": false
7589
+ }
5937
7590
  ]
5938
7591
  }
5939
7592
  },
@@ -6010,6 +7663,24 @@ export const VALIDATORS: ValidatorTable = {
6010
7663
  "providers.pizzahut": {
6011
7664
  "defs": {},
6012
7665
  "functions": {
7666
+ "getMenu": [
7667
+ {
7668
+ "name": "args",
7669
+ "schema": {
7670
+ "k": "object",
7671
+ "props": [
7672
+ {
7673
+ "name": "storeNumber",
7674
+ "schema": {
7675
+ "k": "string"
7676
+ },
7677
+ "optional": false
7678
+ }
7679
+ ]
7680
+ },
7681
+ "optional": false
7682
+ }
7683
+ ],
6013
7684
  "findStores": [
6014
7685
  {
6015
7686
  "name": "where",
@@ -6270,17 +7941,49 @@ export const VALIDATORS: ValidatorTable = {
6270
7941
  }
6271
7942
  ]
6272
7943
  },
6273
- "optional": true
7944
+ "optional": true
7945
+ },
7946
+ {
7947
+ "name": "requestedTime",
7948
+ "schema": {
7949
+ "k": "string"
7950
+ },
7951
+ "optional": true
7952
+ },
7953
+ {
7954
+ "name": "promoCode",
7955
+ "schema": {
7956
+ "k": "string"
7957
+ },
7958
+ "optional": true
7959
+ }
7960
+ ]
7961
+ },
7962
+ "optional": false
7963
+ }
7964
+ ],
7965
+ "getMenuItem": [
7966
+ {
7967
+ "name": "args",
7968
+ "schema": {
7969
+ "k": "object",
7970
+ "props": [
7971
+ {
7972
+ "name": "storeNumber",
7973
+ "schema": {
7974
+ "k": "string"
7975
+ },
7976
+ "optional": false
6274
7977
  },
6275
7978
  {
6276
- "name": "requestedTime",
7979
+ "name": "item",
6277
7980
  "schema": {
6278
7981
  "k": "string"
6279
7982
  },
6280
- "optional": true
7983
+ "optional": false
6281
7984
  },
6282
7985
  {
6283
- "name": "promoCode",
7986
+ "name": "category",
6284
7987
  "schema": {
6285
7988
  "k": "string"
6286
7989
  },
@@ -6290,6 +7993,24 @@ export const VALIDATORS: ValidatorTable = {
6290
7993
  },
6291
7994
  "optional": false
6292
7995
  }
7996
+ ],
7997
+ "getDeals": [
7998
+ {
7999
+ "name": "args",
8000
+ "schema": {
8001
+ "k": "object",
8002
+ "props": [
8003
+ {
8004
+ "name": "storeNumber",
8005
+ "schema": {
8006
+ "k": "string"
8007
+ },
8008
+ "optional": false
8009
+ }
8010
+ ]
8011
+ },
8012
+ "optional": false
8013
+ }
6293
8014
  ]
6294
8015
  }
6295
8016
  },
@@ -9144,6 +10865,63 @@ export const VALIDATORS: ValidatorTable = {
9144
10865
  },
9145
10866
  "optional": false
9146
10867
  }
10868
+ ],
10869
+ "getProduct": [
10870
+ {
10871
+ "name": "idOrUrl",
10872
+ "schema": {
10873
+ "k": "string"
10874
+ },
10875
+ "optional": false
10876
+ },
10877
+ {
10878
+ "name": "opts",
10879
+ "schema": {
10880
+ "k": "object",
10881
+ "props": [
10882
+ {
10883
+ "name": "zipCode",
10884
+ "schema": {
10885
+ "k": "string"
10886
+ },
10887
+ "optional": true
10888
+ }
10889
+ ]
10890
+ },
10891
+ "optional": true
10892
+ }
10893
+ ],
10894
+ "checkStock": [
10895
+ {
10896
+ "name": "idOrUrl",
10897
+ "schema": {
10898
+ "k": "string"
10899
+ },
10900
+ "optional": false
10901
+ },
10902
+ {
10903
+ "name": "opts",
10904
+ "schema": {
10905
+ "k": "object",
10906
+ "props": [
10907
+ {
10908
+ "name": "zipCode",
10909
+ "schema": {
10910
+ "k": "string"
10911
+ },
10912
+ "optional": true
10913
+ },
10914
+ {
10915
+ "name": "quantity",
10916
+ "schema": {
10917
+ "k": "number"
10918
+ },
10919
+ "optional": true
10920
+ }
10921
+ ]
10922
+ },
10923
+ "optional": true
10924
+ }
9147
10925
  ]
9148
10926
  }
9149
10927
  },
@@ -9966,6 +11744,147 @@ export const VALIDATORS: ValidatorTable = {
9966
11744
  ]
9967
11745
  }
9968
11746
  },
11747
+ "providers.stickergiant": {
11748
+ "defs": {
11749
+ "StickergiantBuild": {
11750
+ "k": "object",
11751
+ "props": [
11752
+ {
11753
+ "name": "widthInches",
11754
+ "schema": {
11755
+ "k": "number"
11756
+ },
11757
+ "optional": false
11758
+ },
11759
+ {
11760
+ "name": "heightInches",
11761
+ "schema": {
11762
+ "k": "number"
11763
+ },
11764
+ "optional": false
11765
+ },
11766
+ {
11767
+ "name": "lamination",
11768
+ "schema": {
11769
+ "k": "union",
11770
+ "of": [
11771
+ {
11772
+ "k": "literal",
11773
+ "v": "OGL"
11774
+ },
11775
+ {
11776
+ "k": "literal",
11777
+ "v": "MAL"
11778
+ }
11779
+ ]
11780
+ },
11781
+ "optional": false
11782
+ },
11783
+ {
11784
+ "name": "quantity",
11785
+ "schema": {
11786
+ "k": "number"
11787
+ },
11788
+ "optional": true
11789
+ }
11790
+ ]
11791
+ },
11792
+ "StickergiantListArgs": {
11793
+ "k": "object",
11794
+ "props": [
11795
+ {
11796
+ "name": "format",
11797
+ "schema": {
11798
+ "k": "string"
11799
+ },
11800
+ "optional": true
11801
+ }
11802
+ ]
11803
+ }
11804
+ },
11805
+ "functions": {
11806
+ "listStickerProducts": [
11807
+ {
11808
+ "name": "args",
11809
+ "schema": {
11810
+ "k": "ref",
11811
+ "name": "StickergiantListArgs"
11812
+ },
11813
+ "optional": true
11814
+ }
11815
+ ],
11816
+ "priceCustomSticker": [
11817
+ {
11818
+ "name": "build",
11819
+ "schema": {
11820
+ "k": "ref",
11821
+ "name": "StickergiantBuild"
11822
+ },
11823
+ "optional": false
11824
+ }
11825
+ ]
11826
+ }
11827
+ },
11828
+ "providers.sunhomesaunas": {
11829
+ "defs": {},
11830
+ "functions": {
11831
+ "getSaunaFinderQuestions": [],
11832
+ "getPersonalizedSaunaMatches": [
11833
+ {
11834
+ "name": "answers",
11835
+ "schema": {
11836
+ "k": "array",
11837
+ "of": {
11838
+ "k": "object",
11839
+ "props": [
11840
+ {
11841
+ "name": "questionId",
11842
+ "schema": {
11843
+ "k": "string"
11844
+ },
11845
+ "optional": false
11846
+ },
11847
+ {
11848
+ "name": "optionIds",
11849
+ "schema": {
11850
+ "k": "array",
11851
+ "of": {
11852
+ "k": "string"
11853
+ }
11854
+ },
11855
+ "optional": false
11856
+ }
11857
+ ]
11858
+ }
11859
+ },
11860
+ "optional": false
11861
+ }
11862
+ ],
11863
+ "addSaunaToCart": [
11864
+ {
11865
+ "name": "handle",
11866
+ "schema": {
11867
+ "k": "string"
11868
+ },
11869
+ "optional": false
11870
+ },
11871
+ {
11872
+ "name": "quantity",
11873
+ "schema": {
11874
+ "k": "number"
11875
+ },
11876
+ "optional": true
11877
+ }
11878
+ ]
11879
+ }
11880
+ },
11881
+ "providers.teladoc": {
11882
+ "defs": {},
11883
+ "functions": {
11884
+ "getPricing": [],
11885
+ "getInsurancePricing": []
11886
+ }
11887
+ },
9969
11888
  "providers.tentree": {
9970
11889
  "defs": {},
9971
11890
  "functions": {
@@ -10029,27 +11948,195 @@ export const VALIDATORS: ValidatorTable = {
10029
11948
  "name": "variantId",
10030
11949
  "schema": {
10031
11950
  "k": "string"
10032
- },
10033
- "optional": false
11951
+ },
11952
+ "optional": false
11953
+ },
11954
+ {
11955
+ "name": "quantity",
11956
+ "schema": {
11957
+ "k": "number"
11958
+ },
11959
+ "optional": true
11960
+ }
11961
+ ]
11962
+ }
11963
+ },
11964
+ "optional": false
11965
+ }
11966
+ ],
11967
+ "getCart": []
11968
+ }
11969
+ },
11970
+ "providers.therabody": {
11971
+ "defs": {},
11972
+ "functions": {
11973
+ "listTheragunProducts": [
11974
+ {
11975
+ "name": "opts",
11976
+ "schema": {
11977
+ "k": "object",
11978
+ "props": [
11979
+ {
11980
+ "name": "limit",
11981
+ "schema": {
11982
+ "k": "number"
11983
+ },
11984
+ "optional": true
11985
+ }
11986
+ ]
11987
+ },
11988
+ "optional": true
11989
+ }
11990
+ ],
11991
+ "getTheragunProduct": [
11992
+ {
11993
+ "name": "handle",
11994
+ "schema": {
11995
+ "k": "string"
11996
+ },
11997
+ "optional": false
11998
+ }
11999
+ ],
12000
+ "recommendTheragun": [
12001
+ {
12002
+ "name": "criteria",
12003
+ "schema": {
12004
+ "k": "object",
12005
+ "props": [
12006
+ {
12007
+ "name": "audience",
12008
+ "schema": {
12009
+ "k": "string"
12010
+ },
12011
+ "optional": true
12012
+ },
12013
+ {
12014
+ "name": "features",
12015
+ "schema": {
12016
+ "k": "array",
12017
+ "of": {
12018
+ "k": "string"
12019
+ }
10034
12020
  },
10035
- {
10036
- "name": "quantity",
10037
- "schema": {
10038
- "k": "number"
10039
- },
10040
- "optional": true
10041
- }
10042
- ]
10043
- }
12021
+ "optional": true
12022
+ },
12023
+ {
12024
+ "name": "inStockOnly",
12025
+ "schema": {
12026
+ "k": "boolean"
12027
+ },
12028
+ "optional": true
12029
+ }
12030
+ ]
10044
12031
  },
10045
12032
  "optional": false
10046
12033
  }
10047
- ],
10048
- "getCart": []
12034
+ ]
10049
12035
  }
10050
12036
  },
10051
12037
  "providers.thezebra": {
10052
12038
  "defs": {
12039
+ "thezebraAutoDriver": {
12040
+ "k": "object",
12041
+ "props": [
12042
+ {
12043
+ "name": "firstName",
12044
+ "schema": {
12045
+ "k": "string"
12046
+ },
12047
+ "optional": false
12048
+ },
12049
+ {
12050
+ "name": "lastName",
12051
+ "schema": {
12052
+ "k": "string"
12053
+ },
12054
+ "optional": false
12055
+ },
12056
+ {
12057
+ "name": "dob",
12058
+ "schema": {
12059
+ "k": "string"
12060
+ },
12061
+ "optional": false
12062
+ },
12063
+ {
12064
+ "name": "email",
12065
+ "schema": {
12066
+ "k": "string"
12067
+ },
12068
+ "optional": false
12069
+ }
12070
+ ]
12071
+ },
12072
+ "thezebraAutoQuotesQuery": {
12073
+ "k": "object",
12074
+ "props": [
12075
+ {
12076
+ "name": "driver",
12077
+ "schema": {
12078
+ "k": "ref",
12079
+ "name": "thezebraAutoDriver"
12080
+ },
12081
+ "optional": false
12082
+ },
12083
+ {
12084
+ "name": "vehicle",
12085
+ "schema": {
12086
+ "k": "ref",
12087
+ "name": "thezebraAutoVehicle"
12088
+ },
12089
+ "optional": false
12090
+ },
12091
+ {
12092
+ "name": "state",
12093
+ "schema": {
12094
+ "k": "string"
12095
+ },
12096
+ "optional": false
12097
+ },
12098
+ {
12099
+ "name": "zip",
12100
+ "schema": {
12101
+ "k": "string"
12102
+ },
12103
+ "optional": false
12104
+ },
12105
+ {
12106
+ "name": "county",
12107
+ "schema": {
12108
+ "k": "string"
12109
+ },
12110
+ "optional": false
12111
+ }
12112
+ ]
12113
+ },
12114
+ "thezebraAutoVehicle": {
12115
+ "k": "object",
12116
+ "props": [
12117
+ {
12118
+ "name": "year",
12119
+ "schema": {
12120
+ "k": "number"
12121
+ },
12122
+ "optional": false
12123
+ },
12124
+ {
12125
+ "name": "make",
12126
+ "schema": {
12127
+ "k": "string"
12128
+ },
12129
+ "optional": false
12130
+ },
12131
+ {
12132
+ "name": "model",
12133
+ "schema": {
12134
+ "k": "string"
12135
+ },
12136
+ "optional": false
12137
+ }
12138
+ ]
12139
+ },
10053
12140
  "thezebraCarrierRatesQuery": {
10054
12141
  "k": "object",
10055
12142
  "props": [
@@ -10311,6 +12398,16 @@ export const VALIDATORS: ValidatorTable = {
10311
12398
  },
10312
12399
  "optional": false
10313
12400
  }
12401
+ ],
12402
+ "getAutoQuotes": [
12403
+ {
12404
+ "name": "query",
12405
+ "schema": {
12406
+ "k": "ref",
12407
+ "name": "thezebraAutoQuotesQuery"
12408
+ },
12409
+ "optional": false
12410
+ }
10314
12411
  ]
10315
12412
  }
10316
12413
  },
@@ -10475,6 +12572,13 @@ export const VALIDATORS: ValidatorTable = {
10475
12572
  ]
10476
12573
  }
10477
12574
  },
12575
+ "providers.viewrail": {
12576
+ "defs": {},
12577
+ "functions": {
12578
+ "listMaterials": [],
12579
+ "listMountingStyles": []
12580
+ }
12581
+ },
10478
12582
  "providers.visible": {
10479
12583
  "defs": {},
10480
12584
  "functions": {
@@ -10520,12 +12624,100 @@ export const VALIDATORS: ValidatorTable = {
10520
12624
  },
10521
12625
  "optional": true
10522
12626
  }
10523
- ]
12627
+ ],
12628
+ "searchPhones": [
12629
+ {
12630
+ "name": "options",
12631
+ "schema": {
12632
+ "k": "object",
12633
+ "props": [
12634
+ {
12635
+ "name": "make",
12636
+ "schema": {
12637
+ "k": "string"
12638
+ },
12639
+ "optional": true
12640
+ },
12641
+ {
12642
+ "name": "priceMax",
12643
+ "schema": {
12644
+ "k": "number"
12645
+ },
12646
+ "optional": true
12647
+ },
12648
+ {
12649
+ "name": "supports5G",
12650
+ "schema": {
12651
+ "k": "boolean"
12652
+ },
12653
+ "optional": true
12654
+ },
12655
+ {
12656
+ "name": "inStock",
12657
+ "schema": {
12658
+ "k": "boolean"
12659
+ },
12660
+ "optional": true
12661
+ },
12662
+ {
12663
+ "name": "page",
12664
+ "schema": {
12665
+ "k": "number"
12666
+ },
12667
+ "optional": true
12668
+ },
12669
+ {
12670
+ "name": "pageSize",
12671
+ "schema": {
12672
+ "k": "number"
12673
+ },
12674
+ "optional": true
12675
+ }
12676
+ ]
12677
+ },
12678
+ "optional": true
12679
+ }
12680
+ ],
12681
+ "checkCoverage": [
12682
+ {
12683
+ "name": "addressOrZip",
12684
+ "schema": {
12685
+ "k": "string"
12686
+ },
12687
+ "optional": false
12688
+ }
12689
+ ],
12690
+ "getPlans": []
10524
12691
  }
10525
12692
  },
10526
12693
  "providers.walmart": {
10527
12694
  "defs": {},
10528
12695
  "functions": {
12696
+ "search": [
12697
+ {
12698
+ "name": "args",
12699
+ "schema": {
12700
+ "k": "object",
12701
+ "props": [
12702
+ {
12703
+ "name": "query",
12704
+ "schema": {
12705
+ "k": "string"
12706
+ },
12707
+ "optional": false
12708
+ },
12709
+ {
12710
+ "name": "limit",
12711
+ "schema": {
12712
+ "k": "number"
12713
+ },
12714
+ "optional": true
12715
+ }
12716
+ ]
12717
+ },
12718
+ "optional": false
12719
+ }
12720
+ ],
10529
12721
  "findStores": [
10530
12722
  {
10531
12723
  "name": "args",
@@ -10566,6 +12758,42 @@ export const VALIDATORS: ValidatorTable = {
10566
12758
  },
10567
12759
  "optional": false
10568
12760
  }
12761
+ ],
12762
+ "getJob": [
12763
+ {
12764
+ "name": "args",
12765
+ "schema": {
12766
+ "k": "object",
12767
+ "props": [
12768
+ {
12769
+ "name": "url",
12770
+ "schema": {
12771
+ "k": "string"
12772
+ },
12773
+ "optional": false
12774
+ }
12775
+ ]
12776
+ },
12777
+ "optional": false
12778
+ }
12779
+ ],
12780
+ "getCompany": [
12781
+ {
12782
+ "name": "args",
12783
+ "schema": {
12784
+ "k": "object",
12785
+ "props": [
12786
+ {
12787
+ "name": "slug",
12788
+ "schema": {
12789
+ "k": "string"
12790
+ },
12791
+ "optional": false
12792
+ }
12793
+ ]
12794
+ },
12795
+ "optional": false
12796
+ }
10569
12797
  ]
10570
12798
  }
10571
12799
  }