@bowmark/web 1.11.0 → 1.12.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -5,14 +5,68 @@
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: 54e3683692de6415062143d692a1ab30846dc38d8f5c9ba7c14182a3b3618f7d
9
- // 602 checked, 20 unchecked.
8
+ // Manifest version: 5207ea33354972da803d6974eed73abefc0ae46410767310486fd5116faa04c1
9
+ // 656 checked, 20 unchecked.
10
10
 
11
11
  import type { ValidatorTable } from "../validate.js";
12
12
 
13
13
  export const VALIDATORS: ValidatorTable = {
14
- "version": "54e3683692de6415062143d692a1ab30846dc38d8f5c9ba7c14182a3b3618f7d",
14
+ "version": "5207ea33354972da803d6974eed73abefc0ae46410767310486fd5116faa04c1",
15
15
  "units": {
16
+ "bundles": {
17
+ "defs": {},
18
+ "functions": {
19
+ "checkAvailability": [
20
+ {
21
+ "name": "items",
22
+ "schema": {
23
+ "k": "array",
24
+ "of": {
25
+ "k": "object",
26
+ "props": [
27
+ {
28
+ "name": "url",
29
+ "schema": {
30
+ "k": "string"
31
+ },
32
+ "optional": false
33
+ }
34
+ ]
35
+ }
36
+ },
37
+ "optional": false
38
+ }
39
+ ]
40
+ }
41
+ },
42
+ "cable_railing_quote": {
43
+ "defs": {
44
+ "CallOptions": {
45
+ "k": "object",
46
+ "props": [
47
+ {
48
+ "name": "timeoutMs",
49
+ "schema": {
50
+ "k": "number"
51
+ },
52
+ "optional": true
53
+ }
54
+ ]
55
+ }
56
+ },
57
+ "functions": {
58
+ "getDesignOptions": [
59
+ {
60
+ "name": "options",
61
+ "schema": {
62
+ "k": "ref",
63
+ "name": "CallOptions"
64
+ },
65
+ "optional": true
66
+ }
67
+ ]
68
+ }
69
+ },
16
70
  "cars": {
17
71
  "defs": {
18
72
  "CallOptions": {
@@ -110,6 +164,186 @@ export const VALIDATORS: ValidatorTable = {
110
164
  ]
111
165
  }
112
166
  },
167
+ "coworking": {
168
+ "defs": {
169
+ "CallOptions": {
170
+ "k": "object",
171
+ "props": [
172
+ {
173
+ "name": "timeoutMs",
174
+ "schema": {
175
+ "k": "number"
176
+ },
177
+ "optional": true
178
+ }
179
+ ]
180
+ }
181
+ },
182
+ "functions": {
183
+ "findDayPasses": [
184
+ {
185
+ "name": "location",
186
+ "schema": {
187
+ "k": "union",
188
+ "of": [
189
+ {
190
+ "k": "string"
191
+ },
192
+ {
193
+ "k": "object",
194
+ "props": [
195
+ {
196
+ "name": "city",
197
+ "schema": {
198
+ "k": "string"
199
+ },
200
+ "optional": false
201
+ },
202
+ {
203
+ "name": "state",
204
+ "schema": {
205
+ "k": "string"
206
+ },
207
+ "optional": false
208
+ }
209
+ ]
210
+ }
211
+ ]
212
+ },
213
+ "optional": false
214
+ },
215
+ {
216
+ "name": "options",
217
+ "schema": {
218
+ "k": "ref",
219
+ "name": "CallOptions"
220
+ },
221
+ "optional": true
222
+ }
223
+ ]
224
+ }
225
+ },
226
+ "custom_sofa_configurator": {
227
+ "defs": {},
228
+ "functions": {
229
+ "listSofas": [
230
+ {
231
+ "name": "query",
232
+ "schema": {
233
+ "k": "string"
234
+ },
235
+ "optional": true
236
+ }
237
+ ],
238
+ "getConfigurator": [
239
+ {
240
+ "name": "id",
241
+ "schema": {
242
+ "k": "string"
243
+ },
244
+ "optional": false
245
+ }
246
+ ],
247
+ "priceConfiguration": [
248
+ {
249
+ "name": "id",
250
+ "schema": {
251
+ "k": "string"
252
+ },
253
+ "optional": false
254
+ },
255
+ {
256
+ "name": "selections",
257
+ "schema": {
258
+ "k": "record",
259
+ "value": {
260
+ "k": "string"
261
+ }
262
+ },
263
+ "optional": false
264
+ }
265
+ ]
266
+ }
267
+ },
268
+ "developer_api_key_signup": {
269
+ "defs": {
270
+ "CallOptions": {
271
+ "k": "object",
272
+ "props": [
273
+ {
274
+ "name": "timeoutMs",
275
+ "schema": {
276
+ "k": "number"
277
+ },
278
+ "optional": true
279
+ }
280
+ ]
281
+ }
282
+ },
283
+ "functions": {
284
+ "signUp": [
285
+ {
286
+ "name": "service",
287
+ "schema": {
288
+ "k": "string"
289
+ },
290
+ "optional": false
291
+ },
292
+ {
293
+ "name": "details",
294
+ "schema": {
295
+ "k": "object",
296
+ "props": [
297
+ {
298
+ "name": "organization",
299
+ "schema": {
300
+ "k": "string"
301
+ },
302
+ "optional": false
303
+ },
304
+ {
305
+ "name": "email",
306
+ "schema": {
307
+ "k": "string"
308
+ },
309
+ "optional": false
310
+ },
311
+ {
312
+ "name": "occupation",
313
+ "schema": {
314
+ "k": "string"
315
+ },
316
+ "optional": true
317
+ }
318
+ ]
319
+ },
320
+ "optional": false
321
+ },
322
+ {
323
+ "name": "options",
324
+ "schema": {
325
+ "k": "ref",
326
+ "name": "CallOptions"
327
+ },
328
+ "optional": true
329
+ }
330
+ ]
331
+ }
332
+ },
333
+ "domain": {
334
+ "defs": {},
335
+ "functions": {
336
+ "checkAvailability": [
337
+ {
338
+ "name": "name",
339
+ "schema": {
340
+ "k": "string"
341
+ },
342
+ "optional": false
343
+ }
344
+ ]
345
+ }
346
+ },
113
347
  "email": {
114
348
  "defs": {
115
349
  "CallOptions": {
@@ -478,41 +712,43 @@ export const VALIDATORS: ValidatorTable = {
478
712
  ]
479
713
  }
480
714
  },
715
+ "game_soundtrack_composer_credits": {
716
+ "defs": {},
717
+ "functions": {
718
+ "search": [
719
+ {
720
+ "name": "gameTitle",
721
+ "schema": {
722
+ "k": "string"
723
+ },
724
+ "optional": false
725
+ }
726
+ ],
727
+ "getCredits": [
728
+ {
729
+ "name": "releaseGroupId",
730
+ "schema": {
731
+ "k": "string"
732
+ },
733
+ "optional": false
734
+ }
735
+ ]
736
+ }
737
+ },
481
738
  "git": {
482
739
  "defs": {
483
- "CommitHistoryOptions": {
740
+ "ReleaseNotesOptions": {
484
741
  "k": "object",
485
742
  "props": [
486
743
  {
487
- "name": "ref",
488
- "schema": {
489
- "k": "string"
490
- },
491
- "optional": true
492
- },
493
- {
494
- "name": "since",
495
- "schema": {
496
- "k": "string"
497
- },
498
- "optional": true
499
- },
500
- {
501
- "name": "until",
744
+ "name": "limit",
502
745
  "schema": {
503
- "k": "string"
746
+ "k": "number"
504
747
  },
505
748
  "optional": true
506
749
  },
507
750
  {
508
- "name": "limit",
509
- "schema": {
510
- "k": "number"
511
- },
512
- "optional": true
513
- },
514
- {
515
- "name": "page",
751
+ "name": "page",
516
752
  "schema": {
517
753
  "k": "number"
518
754
  },
@@ -522,7 +758,7 @@ export const VALIDATORS: ValidatorTable = {
522
758
  }
523
759
  },
524
760
  "functions": {
525
- "commitHistory": [
761
+ "releaseNotes": [
526
762
  {
527
763
  "name": "repo",
528
764
  "schema": {
@@ -534,7 +770,7 @@ export const VALIDATORS: ValidatorTable = {
534
770
  "name": "options",
535
771
  "schema": {
536
772
  "k": "ref",
537
- "name": "CommitHistoryOptions"
773
+ "name": "ReleaseNotesOptions"
538
774
  },
539
775
  "optional": true
540
776
  }
@@ -749,6 +985,83 @@ export const VALIDATORS: ValidatorTable = {
749
985
  }
750
986
  ]
751
987
  },
988
+ "HomeQuoteQuery": {
989
+ "k": "object",
990
+ "props": [
991
+ {
992
+ "name": "identity",
993
+ "schema": {
994
+ "k": "object",
995
+ "props": [
996
+ {
997
+ "name": "firstName",
998
+ "schema": {
999
+ "k": "string"
1000
+ },
1001
+ "optional": false
1002
+ },
1003
+ {
1004
+ "name": "lastName",
1005
+ "schema": {
1006
+ "k": "string"
1007
+ },
1008
+ "optional": false
1009
+ },
1010
+ {
1011
+ "name": "dob",
1012
+ "schema": {
1013
+ "k": "string"
1014
+ },
1015
+ "optional": false
1016
+ },
1017
+ {
1018
+ "name": "email",
1019
+ "schema": {
1020
+ "k": "string"
1021
+ },
1022
+ "optional": false
1023
+ },
1024
+ {
1025
+ "name": "phone",
1026
+ "schema": {
1027
+ "k": "string"
1028
+ },
1029
+ "optional": false
1030
+ }
1031
+ ]
1032
+ },
1033
+ "optional": false
1034
+ },
1035
+ {
1036
+ "name": "address",
1037
+ "schema": {
1038
+ "k": "string"
1039
+ },
1040
+ "optional": false
1041
+ },
1042
+ {
1043
+ "name": "zip",
1044
+ "schema": {
1045
+ "k": "string"
1046
+ },
1047
+ "optional": false
1048
+ },
1049
+ {
1050
+ "name": "city",
1051
+ "schema": {
1052
+ "k": "string"
1053
+ },
1054
+ "optional": true
1055
+ },
1056
+ {
1057
+ "name": "state",
1058
+ "schema": {
1059
+ "k": "string"
1060
+ },
1061
+ "optional": true
1062
+ }
1063
+ ]
1064
+ },
752
1065
  "ReferralCarrierQuery": {
753
1066
  "k": "object",
754
1067
  "props": [
@@ -847,6 +1160,101 @@ export const VALIDATORS: ValidatorTable = {
847
1160
  },
848
1161
  "optional": true
849
1162
  }
1163
+ ],
1164
+ "getHomeQuotes": [
1165
+ {
1166
+ "name": "query",
1167
+ "schema": {
1168
+ "k": "ref",
1169
+ "name": "HomeQuoteQuery"
1170
+ },
1171
+ "optional": false
1172
+ },
1173
+ {
1174
+ "name": "options",
1175
+ "schema": {
1176
+ "k": "ref",
1177
+ "name": "CallOptions"
1178
+ },
1179
+ "optional": true
1180
+ }
1181
+ ]
1182
+ }
1183
+ },
1184
+ "istanbul_schedules": {
1185
+ "defs": {
1186
+ "CallOptions": {
1187
+ "k": "object",
1188
+ "props": [
1189
+ {
1190
+ "name": "timeoutMs",
1191
+ "schema": {
1192
+ "k": "number"
1193
+ },
1194
+ "optional": true
1195
+ }
1196
+ ]
1197
+ }
1198
+ },
1199
+ "functions": {
1200
+ "attractionHours": [
1201
+ {
1202
+ "name": "query",
1203
+ "schema": {
1204
+ "k": "string"
1205
+ },
1206
+ "optional": false
1207
+ },
1208
+ {
1209
+ "name": "options",
1210
+ "schema": {
1211
+ "k": "ref",
1212
+ "name": "CallOptions"
1213
+ },
1214
+ "optional": true
1215
+ }
1216
+ ]
1217
+ }
1218
+ },
1219
+ "mcp_registry": {
1220
+ "defs": {
1221
+ "CallOptions": {
1222
+ "k": "object",
1223
+ "props": [
1224
+ {
1225
+ "name": "timeoutMs",
1226
+ "schema": {
1227
+ "k": "number"
1228
+ },
1229
+ "optional": true
1230
+ }
1231
+ ]
1232
+ }
1233
+ },
1234
+ "functions": {
1235
+ "search": [
1236
+ {
1237
+ "name": "query",
1238
+ "schema": {
1239
+ "k": "string"
1240
+ },
1241
+ "optional": true
1242
+ },
1243
+ {
1244
+ "name": "limit",
1245
+ "schema": {
1246
+ "k": "number"
1247
+ },
1248
+ "optional": true
1249
+ },
1250
+ {
1251
+ "name": "options",
1252
+ "schema": {
1253
+ "k": "ref",
1254
+ "name": "CallOptions"
1255
+ },
1256
+ "optional": true
1257
+ }
850
1258
  ]
851
1259
  }
852
1260
  },
@@ -1042,63 +1450,184 @@ export const VALIDATORS: ValidatorTable = {
1042
1450
  "optional": false
1043
1451
  },
1044
1452
  {
1045
- "name": "url",
1453
+ "name": "url",
1454
+ "schema": {
1455
+ "k": "union",
1456
+ "of": [
1457
+ {
1458
+ "k": "string"
1459
+ },
1460
+ {
1461
+ "k": "null"
1462
+ }
1463
+ ]
1464
+ },
1465
+ "optional": false
1466
+ }
1467
+ ]
1468
+ }
1469
+ },
1470
+ "functions": {
1471
+ "search": [
1472
+ {
1473
+ "name": "query",
1474
+ "schema": {
1475
+ "k": "string"
1476
+ },
1477
+ "optional": false
1478
+ },
1479
+ {
1480
+ "name": "options",
1481
+ "schema": {
1482
+ "k": "ref",
1483
+ "name": "CallOptions"
1484
+ },
1485
+ "optional": true
1486
+ }
1487
+ ],
1488
+ "getProduct": [
1489
+ {
1490
+ "name": "urlOrOffer",
1491
+ "schema": {
1492
+ "k": "union",
1493
+ "of": [
1494
+ {
1495
+ "k": "string"
1496
+ },
1497
+ {
1498
+ "k": "ref",
1499
+ "name": "Offer"
1500
+ }
1501
+ ]
1502
+ },
1503
+ "optional": false
1504
+ },
1505
+ {
1506
+ "name": "options",
1507
+ "schema": {
1508
+ "k": "ref",
1509
+ "name": "CallOptions"
1510
+ },
1511
+ "optional": true
1512
+ }
1513
+ ]
1514
+ }
1515
+ },
1516
+ "phone_trade_in": {
1517
+ "defs": {
1518
+ "CallOptions": {
1519
+ "k": "object",
1520
+ "props": [
1521
+ {
1522
+ "name": "timeoutMs",
1523
+ "schema": {
1524
+ "k": "number"
1525
+ },
1526
+ "optional": true
1527
+ }
1528
+ ]
1529
+ }
1530
+ },
1531
+ "functions": {
1532
+ "estimate": [
1533
+ {
1534
+ "name": "query",
1535
+ "schema": {
1536
+ "k": "union",
1537
+ "of": [
1538
+ {
1539
+ "k": "object",
1540
+ "props": [
1541
+ {
1542
+ "name": "model",
1543
+ "schema": {
1544
+ "k": "string"
1545
+ },
1546
+ "optional": false
1547
+ },
1548
+ {
1549
+ "name": "storage",
1550
+ "schema": {
1551
+ "k": "string"
1552
+ },
1553
+ "optional": false
1554
+ },
1555
+ {
1556
+ "name": "condition",
1557
+ "schema": {
1558
+ "k": "string"
1559
+ },
1560
+ "optional": true
1561
+ }
1562
+ ]
1563
+ },
1564
+ {
1565
+ "k": "string"
1566
+ }
1567
+ ]
1568
+ },
1569
+ "optional": false
1570
+ },
1571
+ {
1572
+ "name": "options",
1573
+ "schema": {
1574
+ "k": "ref",
1575
+ "name": "CallOptions"
1576
+ },
1577
+ "optional": true
1578
+ }
1579
+ ]
1580
+ }
1581
+ },
1582
+ "pricing": {
1583
+ "defs": {
1584
+ "PersonalizationPersona": {
1585
+ "k": "object",
1586
+ "props": [
1587
+ {
1588
+ "name": "label",
1589
+ "schema": {
1590
+ "k": "string"
1591
+ },
1592
+ "optional": false
1593
+ },
1594
+ {
1595
+ "name": "device",
1046
1596
  "schema": {
1047
1597
  "k": "union",
1048
1598
  "of": [
1049
1599
  {
1050
- "k": "string"
1600
+ "k": "literal",
1601
+ "v": "desktop"
1051
1602
  },
1052
1603
  {
1053
- "k": "null"
1604
+ "k": "literal",
1605
+ "v": "mobile"
1054
1606
  }
1055
1607
  ]
1056
1608
  },
1057
- "optional": false
1609
+ "optional": true
1058
1610
  }
1059
1611
  ]
1060
1612
  }
1061
1613
  },
1062
1614
  "functions": {
1063
- "search": [
1615
+ "checkPersonalization": [
1064
1616
  {
1065
- "name": "query",
1617
+ "name": "url",
1066
1618
  "schema": {
1067
1619
  "k": "string"
1068
1620
  },
1069
1621
  "optional": false
1070
1622
  },
1071
1623
  {
1072
- "name": "options",
1073
- "schema": {
1074
- "k": "ref",
1075
- "name": "CallOptions"
1076
- },
1077
- "optional": true
1078
- }
1079
- ],
1080
- "getProduct": [
1081
- {
1082
- "name": "urlOrOffer",
1083
- "schema": {
1084
- "k": "union",
1085
- "of": [
1086
- {
1087
- "k": "string"
1088
- },
1089
- {
1090
- "k": "ref",
1091
- "name": "Offer"
1092
- }
1093
- ]
1094
- },
1095
- "optional": false
1096
- },
1097
- {
1098
- "name": "options",
1624
+ "name": "personas",
1099
1625
  "schema": {
1100
- "k": "ref",
1101
- "name": "CallOptions"
1626
+ "k": "array",
1627
+ "of": {
1628
+ "k": "ref",
1629
+ "name": "PersonalizationPersona"
1630
+ }
1102
1631
  },
1103
1632
  "optional": true
1104
1633
  }
@@ -1343,6 +1872,32 @@ export const VALIDATORS: ValidatorTable = {
1343
1872
  ]
1344
1873
  }
1345
1874
  },
1875
+ "school_shopping_basket": {
1876
+ "defs": {},
1877
+ "functions": {
1878
+ "priceList": [
1879
+ {
1880
+ "name": "args",
1881
+ "schema": {
1882
+ "k": "object",
1883
+ "props": [
1884
+ {
1885
+ "name": "items",
1886
+ "schema": {
1887
+ "k": "array",
1888
+ "of": {
1889
+ "k": "string"
1890
+ }
1891
+ },
1892
+ "optional": false
1893
+ }
1894
+ ]
1895
+ },
1896
+ "optional": false
1897
+ }
1898
+ ]
1899
+ }
1900
+ },
1346
1901
  "search": {
1347
1902
  "defs": {
1348
1903
  "CallOptions": {
@@ -1657,6 +2212,132 @@ export const VALIDATORS: ValidatorTable = {
1657
2212
  ]
1658
2213
  }
1659
2214
  },
2215
+ "text_to_speech": {
2216
+ "defs": {
2217
+ "CloneVoiceOptions": {
2218
+ "k": "object",
2219
+ "props": [
2220
+ {
2221
+ "name": "name",
2222
+ "schema": {
2223
+ "k": "string"
2224
+ },
2225
+ "optional": false
2226
+ },
2227
+ {
2228
+ "name": "sampleUrls",
2229
+ "schema": {
2230
+ "k": "array",
2231
+ "of": {
2232
+ "k": "string"
2233
+ }
2234
+ },
2235
+ "optional": false
2236
+ },
2237
+ {
2238
+ "name": "description",
2239
+ "schema": {
2240
+ "k": "string"
2241
+ },
2242
+ "optional": true
2243
+ }
2244
+ ]
2245
+ },
2246
+ "SynthesizeOptions": {
2247
+ "k": "object",
2248
+ "props": [
2249
+ {
2250
+ "name": "voiceId",
2251
+ "schema": {
2252
+ "k": "string"
2253
+ },
2254
+ "optional": true
2255
+ }
2256
+ ]
2257
+ }
2258
+ },
2259
+ "functions": {
2260
+ "synthesize": [
2261
+ {
2262
+ "name": "text",
2263
+ "schema": {
2264
+ "k": "string"
2265
+ },
2266
+ "optional": false
2267
+ },
2268
+ {
2269
+ "name": "options",
2270
+ "schema": {
2271
+ "k": "ref",
2272
+ "name": "SynthesizeOptions"
2273
+ },
2274
+ "optional": true
2275
+ }
2276
+ ],
2277
+ "cloneVoice": [
2278
+ {
2279
+ "name": "options",
2280
+ "schema": {
2281
+ "k": "ref",
2282
+ "name": "CloneVoiceOptions"
2283
+ },
2284
+ "optional": false
2285
+ }
2286
+ ]
2287
+ }
2288
+ },
2289
+ "theme_park_tickets": {
2290
+ "defs": {
2291
+ "CallOptions": {
2292
+ "k": "object",
2293
+ "props": [
2294
+ {
2295
+ "name": "timeoutMs",
2296
+ "schema": {
2297
+ "k": "number"
2298
+ },
2299
+ "optional": true
2300
+ }
2301
+ ]
2302
+ }
2303
+ },
2304
+ "functions": {
2305
+ "search": [
2306
+ {
2307
+ "name": "park",
2308
+ "schema": {
2309
+ "k": "union",
2310
+ "of": [
2311
+ {
2312
+ "k": "string"
2313
+ },
2314
+ {
2315
+ "k": "object",
2316
+ "props": [
2317
+ {
2318
+ "name": "park",
2319
+ "schema": {
2320
+ "k": "string"
2321
+ },
2322
+ "optional": false
2323
+ }
2324
+ ]
2325
+ }
2326
+ ]
2327
+ },
2328
+ "optional": false
2329
+ },
2330
+ {
2331
+ "name": "options",
2332
+ "schema": {
2333
+ "k": "ref",
2334
+ "name": "CallOptions"
2335
+ },
2336
+ "optional": true
2337
+ }
2338
+ ]
2339
+ }
2340
+ },
1660
2341
  "weather": {
1661
2342
  "defs": {},
1662
2343
  "functions": {
@@ -1678,6 +2359,43 @@ export const VALIDATORS: ValidatorTable = {
1678
2359
  ]
1679
2360
  }
1680
2361
  },
2362
+ "yoga_outfit_shopping": {
2363
+ "defs": {},
2364
+ "functions": {
2365
+ "search": [
2366
+ {
2367
+ "name": "query",
2368
+ "schema": {
2369
+ "k": "string"
2370
+ },
2371
+ "optional": false
2372
+ },
2373
+ {
2374
+ "name": "options",
2375
+ "schema": {
2376
+ "k": "object",
2377
+ "props": [
2378
+ {
2379
+ "name": "limit",
2380
+ "schema": {
2381
+ "k": "number"
2382
+ },
2383
+ "optional": true
2384
+ },
2385
+ {
2386
+ "name": "timeoutMs",
2387
+ "schema": {
2388
+ "k": "number"
2389
+ },
2390
+ "optional": true
2391
+ }
2392
+ ]
2393
+ },
2394
+ "optional": true
2395
+ }
2396
+ ]
2397
+ }
2398
+ },
1681
2399
  "providers.aa": {
1682
2400
  "defs": {
1683
2401
  "aaBaggageAllowanceArgs": {
@@ -1728,15 +2446,54 @@ export const VALIDATORS: ValidatorTable = {
1728
2446
  "k": "ref",
1729
2447
  "name": "aaBaggageAllowanceArgs"
1730
2448
  },
1731
- "optional": false
2449
+ "optional": false
2450
+ }
2451
+ ],
2452
+ "retrieveBooking": [
2453
+ {
2454
+ "name": "arg0",
2455
+ "schema": {
2456
+ "k": "ref",
2457
+ "name": "aaRetrieveBookingArgs"
2458
+ },
2459
+ "optional": false
2460
+ }
2461
+ ]
2462
+ }
2463
+ },
2464
+ "providers.aauto": {
2465
+ "defs": {},
2466
+ "functions": {
2467
+ "search": [
2468
+ {
2469
+ "name": "query",
2470
+ "schema": {
2471
+ "k": "string"
2472
+ },
2473
+ "optional": false
2474
+ },
2475
+ {
2476
+ "name": "opts",
2477
+ "schema": {
2478
+ "k": "object",
2479
+ "props": [
2480
+ {
2481
+ "name": "limit",
2482
+ "schema": {
2483
+ "k": "number"
2484
+ },
2485
+ "optional": true
2486
+ }
2487
+ ]
2488
+ },
2489
+ "optional": true
1732
2490
  }
1733
2491
  ],
1734
- "retrieveBooking": [
2492
+ "getProduct": [
1735
2493
  {
1736
- "name": "arg0",
2494
+ "name": "url",
1737
2495
  "schema": {
1738
- "k": "ref",
1739
- "name": "aaRetrieveBookingArgs"
2496
+ "k": "string"
1740
2497
  },
1741
2498
  "optional": false
1742
2499
  }
@@ -2093,6 +2850,179 @@ export const VALIDATORS: ValidatorTable = {
2093
2850
  ]
2094
2851
  }
2095
2852
  },
2853
+ "providers.allied": {
2854
+ "defs": {
2855
+ "AlliedPackingCalculatorInput": {
2856
+ "k": "object",
2857
+ "props": [
2858
+ {
2859
+ "name": "yearsInHome",
2860
+ "schema": {
2861
+ "k": "union",
2862
+ "of": [
2863
+ {
2864
+ "k": "literal",
2865
+ "v": "lessThan5"
2866
+ },
2867
+ {
2868
+ "k": "literal",
2869
+ "v": "5to10"
2870
+ },
2871
+ {
2872
+ "k": "literal",
2873
+ "v": "over10"
2874
+ }
2875
+ ]
2876
+ },
2877
+ "optional": true
2878
+ },
2879
+ {
2880
+ "name": "cabinetsClosets",
2881
+ "schema": {
2882
+ "k": "union",
2883
+ "of": [
2884
+ {
2885
+ "k": "literal",
2886
+ "v": "clutterFree"
2887
+ },
2888
+ {
2889
+ "k": "literal",
2890
+ "v": "packRat"
2891
+ }
2892
+ ]
2893
+ },
2894
+ "optional": true
2895
+ },
2896
+ {
2897
+ "name": "kitchen",
2898
+ "schema": {
2899
+ "k": "boolean"
2900
+ },
2901
+ "optional": true
2902
+ },
2903
+ {
2904
+ "name": "pantry",
2905
+ "schema": {
2906
+ "k": "boolean"
2907
+ },
2908
+ "optional": true
2909
+ },
2910
+ {
2911
+ "name": "diningRoom",
2912
+ "schema": {
2913
+ "k": "boolean"
2914
+ },
2915
+ "optional": true
2916
+ },
2917
+ {
2918
+ "name": "livingRoom",
2919
+ "schema": {
2920
+ "k": "boolean"
2921
+ },
2922
+ "optional": true
2923
+ },
2924
+ {
2925
+ "name": "familyRoom",
2926
+ "schema": {
2927
+ "k": "boolean"
2928
+ },
2929
+ "optional": true
2930
+ },
2931
+ {
2932
+ "name": "homeOffice",
2933
+ "schema": {
2934
+ "k": "boolean"
2935
+ },
2936
+ "optional": true
2937
+ },
2938
+ {
2939
+ "name": "bedrooms",
2940
+ "schema": {
2941
+ "k": "number"
2942
+ },
2943
+ "optional": true
2944
+ },
2945
+ {
2946
+ "name": "garageBays",
2947
+ "schema": {
2948
+ "k": "number"
2949
+ },
2950
+ "optional": true
2951
+ },
2952
+ {
2953
+ "name": "storedAttic",
2954
+ "schema": {
2955
+ "k": "boolean"
2956
+ },
2957
+ "optional": true
2958
+ },
2959
+ {
2960
+ "name": "storageFacility",
2961
+ "schema": {
2962
+ "k": "boolean"
2963
+ },
2964
+ "optional": true
2965
+ },
2966
+ {
2967
+ "name": "otherRooms",
2968
+ "schema": {
2969
+ "k": "number"
2970
+ },
2971
+ "optional": true
2972
+ }
2973
+ ]
2974
+ }
2975
+ },
2976
+ "functions": {
2977
+ "estimatePackingSupplies": [
2978
+ {
2979
+ "name": "input",
2980
+ "schema": {
2981
+ "k": "ref",
2982
+ "name": "AlliedPackingCalculatorInput"
2983
+ },
2984
+ "optional": false
2985
+ }
2986
+ ]
2987
+ }
2988
+ },
2989
+ "providers.alphavantage": {
2990
+ "defs": {},
2991
+ "functions": {
2992
+ "signUp": [
2993
+ {
2994
+ "name": "details",
2995
+ "schema": {
2996
+ "k": "object",
2997
+ "props": [
2998
+ {
2999
+ "name": "organization",
3000
+ "schema": {
3001
+ "k": "string"
3002
+ },
3003
+ "optional": false
3004
+ },
3005
+ {
3006
+ "name": "email",
3007
+ "schema": {
3008
+ "k": "string"
3009
+ },
3010
+ "optional": false
3011
+ },
3012
+ {
3013
+ "name": "occupation",
3014
+ "schema": {
3015
+ "k": "string"
3016
+ },
3017
+ "optional": true
3018
+ }
3019
+ ]
3020
+ },
3021
+ "optional": false
3022
+ }
3023
+ ]
3024
+ }
3025
+ },
2096
3026
  "providers.americanstandard": {
2097
3027
  "defs": {},
2098
3028
  "functions": {
@@ -2210,6 +3140,15 @@ export const VALIDATORS: ValidatorTable = {
2210
3140
  },
2211
3141
  "optional": false
2212
3142
  }
3143
+ ],
3144
+ "getTradeInEstimate": [
3145
+ {
3146
+ "name": "model",
3147
+ "schema": {
3148
+ "k": "string"
3149
+ },
3150
+ "optional": false
3151
+ }
2213
3152
  ]
2214
3153
  }
2215
3154
  },
@@ -2953,6 +3892,52 @@ export const VALIDATORS: ValidatorTable = {
2953
3892
  ]
2954
3893
  }
2955
3894
  },
3895
+ "providers.bcparkscamping": {
3896
+ "defs": {},
3897
+ "functions": {
3898
+ "searchCampgrounds": [
3899
+ {
3900
+ "name": "query",
3901
+ "schema": {
3902
+ "k": "string"
3903
+ },
3904
+ "optional": false
3905
+ }
3906
+ ],
3907
+ "checkAvailability": [
3908
+ {
3909
+ "name": "arg",
3910
+ "schema": {
3911
+ "k": "object",
3912
+ "props": [
3913
+ {
3914
+ "name": "resourceLocationId",
3915
+ "schema": {
3916
+ "k": "number"
3917
+ },
3918
+ "optional": false
3919
+ },
3920
+ {
3921
+ "name": "startDate",
3922
+ "schema": {
3923
+ "k": "string"
3924
+ },
3925
+ "optional": false
3926
+ },
3927
+ {
3928
+ "name": "endDate",
3929
+ "schema": {
3930
+ "k": "string"
3931
+ },
3932
+ "optional": false
3933
+ }
3934
+ ]
3935
+ },
3936
+ "optional": false
3937
+ }
3938
+ ]
3939
+ }
3940
+ },
2956
3941
  "providers.beatthebomb": {
2957
3942
  "defs": {},
2958
3943
  "functions": {
@@ -3030,6 +4015,29 @@ export const VALIDATORS: ValidatorTable = {
3030
4015
  ]
3031
4016
  }
3032
4017
  },
4018
+ "providers.bennington": {
4019
+ "defs": {},
4020
+ "functions": {
4021
+ "search": [
4022
+ {
4023
+ "name": "args",
4024
+ "schema": {
4025
+ "k": "object",
4026
+ "props": [
4027
+ {
4028
+ "name": "model",
4029
+ "schema": {
4030
+ "k": "string"
4031
+ },
4032
+ "optional": true
4033
+ }
4034
+ ]
4035
+ },
4036
+ "optional": true
4037
+ }
4038
+ ]
4039
+ }
4040
+ },
3033
4041
  "providers.bestbuy": {
3034
4042
  "defs": {},
3035
4043
  "functions": {
@@ -3812,6 +4820,20 @@ export const VALIDATORS: ValidatorTable = {
3812
4820
  ]
3813
4821
  }
3814
4822
  },
4823
+ "providers.camelcamelcamel": {
4824
+ "defs": {},
4825
+ "functions": {
4826
+ "getPriceHistory": [
4827
+ {
4828
+ "name": "asinOrUrl",
4829
+ "schema": {
4830
+ "k": "string"
4831
+ },
4832
+ "optional": false
4833
+ }
4834
+ ]
4835
+ }
4836
+ },
3815
4837
  "providers.cancer": {
3816
4838
  "defs": {},
3817
4839
  "functions": {
@@ -5372,10 +6394,24 @@ export const VALIDATORS: ValidatorTable = {
5372
6394
  {
5373
6395
  "name": "option",
5374
6396
  "schema": {
5375
- "k": "ref",
5376
- "name": "DeckedCabSideOption"
6397
+ "k": "ref",
6398
+ "name": "DeckedCabSideOption"
6399
+ },
6400
+ "optional": false
6401
+ }
6402
+ ]
6403
+ }
6404
+ },
6405
+ "providers.developersopenai": {
6406
+ "defs": {},
6407
+ "functions": {
6408
+ "getDocPage": [
6409
+ {
6410
+ "name": "args",
6411
+ "schema": {
6412
+ "k": "any"
5377
6413
  },
5378
- "optional": false
6414
+ "optional": true
5379
6415
  }
5380
6416
  ]
5381
6417
  }
@@ -5850,6 +6886,78 @@ export const VALIDATORS: ValidatorTable = {
5850
6886
  ]
5851
6887
  }
5852
6888
  },
6889
+ "providers.elevenlabs": {
6890
+ "defs": {},
6891
+ "functions": {
6892
+ "synthesize": [
6893
+ {
6894
+ "name": "args",
6895
+ "schema": {
6896
+ "k": "object",
6897
+ "props": [
6898
+ {
6899
+ "name": "text",
6900
+ "schema": {
6901
+ "k": "string"
6902
+ },
6903
+ "optional": false
6904
+ },
6905
+ {
6906
+ "name": "voiceId",
6907
+ "schema": {
6908
+ "k": "string"
6909
+ },
6910
+ "optional": true
6911
+ },
6912
+ {
6913
+ "name": "modelId",
6914
+ "schema": {
6915
+ "k": "string"
6916
+ },
6917
+ "optional": true
6918
+ }
6919
+ ]
6920
+ },
6921
+ "optional": false
6922
+ }
6923
+ ],
6924
+ "cloneVoice": [
6925
+ {
6926
+ "name": "args",
6927
+ "schema": {
6928
+ "k": "object",
6929
+ "props": [
6930
+ {
6931
+ "name": "name",
6932
+ "schema": {
6933
+ "k": "string"
6934
+ },
6935
+ "optional": false
6936
+ },
6937
+ {
6938
+ "name": "sampleUrls",
6939
+ "schema": {
6940
+ "k": "array",
6941
+ "of": {
6942
+ "k": "string"
6943
+ }
6944
+ },
6945
+ "optional": false
6946
+ },
6947
+ {
6948
+ "name": "description",
6949
+ "schema": {
6950
+ "k": "string"
6951
+ },
6952
+ "optional": true
6953
+ }
6954
+ ]
6955
+ },
6956
+ "optional": false
6957
+ }
6958
+ ]
6959
+ }
6960
+ },
5853
6961
  "providers.embroker": {
5854
6962
  "defs": {},
5855
6963
  "functions": {
@@ -7019,6 +8127,25 @@ export const VALIDATORS: ValidatorTable = {
7019
8127
  "optional": true
7020
8128
  }
7021
8129
  ]
8130
+ },
8131
+ "GithubListReleasesOptions": {
8132
+ "k": "object",
8133
+ "props": [
8134
+ {
8135
+ "name": "per_page",
8136
+ "schema": {
8137
+ "k": "number"
8138
+ },
8139
+ "optional": true
8140
+ },
8141
+ {
8142
+ "name": "page",
8143
+ "schema": {
8144
+ "k": "number"
8145
+ },
8146
+ "optional": true
8147
+ }
8148
+ ]
7022
8149
  }
7023
8150
  },
7024
8151
  "functions": {
@@ -7045,6 +8172,30 @@ export const VALIDATORS: ValidatorTable = {
7045
8172
  },
7046
8173
  "optional": true
7047
8174
  }
8175
+ ],
8176
+ "listReleases": [
8177
+ {
8178
+ "name": "owner",
8179
+ "schema": {
8180
+ "k": "string"
8181
+ },
8182
+ "optional": false
8183
+ },
8184
+ {
8185
+ "name": "repo",
8186
+ "schema": {
8187
+ "k": "string"
8188
+ },
8189
+ "optional": false
8190
+ },
8191
+ {
8192
+ "name": "options",
8193
+ "schema": {
8194
+ "k": "ref",
8195
+ "name": "GithubListReleasesOptions"
8196
+ },
8197
+ "optional": true
8198
+ }
7048
8199
  ]
7049
8200
  }
7050
8201
  },
@@ -7062,6 +8213,30 @@ export const VALIDATORS: ValidatorTable = {
7062
8213
  ]
7063
8214
  }
7064
8215
  },
8216
+ "providers.goodway": {
8217
+ "defs": {},
8218
+ "functions": {
8219
+ "searchProducts": [],
8220
+ "getProduct": [
8221
+ {
8222
+ "name": "arg0",
8223
+ "schema": {
8224
+ "k": "object",
8225
+ "props": [
8226
+ {
8227
+ "name": "slug",
8228
+ "schema": {
8229
+ "k": "string"
8230
+ },
8231
+ "optional": false
8232
+ }
8233
+ ]
8234
+ },
8235
+ "optional": false
8236
+ }
8237
+ ]
8238
+ }
8239
+ },
7065
8240
  "providers.google_flights": {
7066
8241
  "defs": {
7067
8242
  "GoogleFlightQuery": {
@@ -8034,6 +9209,7 @@ export const VALIDATORS: ValidatorTable = {
8034
9209
  "defs": {},
8035
9210
  "functions": {
8036
9211
  "listModels": [],
9212
+ "listKayakModels": [],
8037
9213
  "listModelColors": [
8038
9214
  {
8039
9215
  "name": "slug",
@@ -8193,7 +9369,27 @@ export const VALIDATORS: ValidatorTable = {
8193
9369
  }
8194
9370
  },
8195
9371
  "providers.ibuypower": {
8196
- "defs": {},
9372
+ "defs": {
9373
+ "IbuypowerRecommendArgs": {
9374
+ "k": "object",
9375
+ "props": [
9376
+ {
9377
+ "name": "budget_max",
9378
+ "schema": {
9379
+ "k": "number"
9380
+ },
9381
+ "optional": false
9382
+ },
9383
+ {
9384
+ "name": "use_case",
9385
+ "schema": {
9386
+ "k": "string"
9387
+ },
9388
+ "optional": true
9389
+ }
9390
+ ]
9391
+ }
9392
+ },
8197
9393
  "functions": {
8198
9394
  "listSystems": [],
8199
9395
  "listPrebuilts": [],
@@ -8222,6 +9418,16 @@ export const VALIDATORS: ValidatorTable = {
8222
9418
  },
8223
9419
  "optional": false
8224
9420
  }
9421
+ ],
9422
+ "recommendGamingPc": [
9423
+ {
9424
+ "name": "args",
9425
+ "schema": {
9426
+ "k": "ref",
9427
+ "name": "IbuypowerRecommendArgs"
9428
+ },
9429
+ "optional": false
9430
+ }
8225
9431
  ]
8226
9432
  }
8227
9433
  },
@@ -9462,6 +10668,13 @@ export const VALIDATORS: ValidatorTable = {
9462
10668
  ]
9463
10669
  }
9464
10670
  },
10671
+ "providers.istanbulkart": {
10672
+ "defs": {},
10673
+ "functions": {
10674
+ "getCardFees": [],
10675
+ "getTouristPassFares": []
10676
+ }
10677
+ },
9465
10678
  "providers.ivoryhomes": {
9466
10679
  "defs": {
9467
10680
  "IvoryHomesSearchFilters": {
@@ -10204,6 +11417,32 @@ export const VALIDATORS: ValidatorTable = {
10204
11417
  },
10205
11418
  "optional": false
10206
11419
  }
11420
+ ],
11421
+ "searchPlaygroundSpareParts": [
11422
+ {
11423
+ "name": "args",
11424
+ "schema": {
11425
+ "k": "object",
11426
+ "props": [
11427
+ {
11428
+ "name": "product_no",
11429
+ "schema": {
11430
+ "k": "string"
11431
+ },
11432
+ "optional": false
11433
+ },
11434
+ {
11435
+ "name": "region",
11436
+ "schema": {
11437
+ "k": "ref",
11438
+ "name": "KompanRegion"
11439
+ },
11440
+ "optional": true
11441
+ }
11442
+ ]
11443
+ },
11444
+ "optional": false
11445
+ }
10207
11446
  ]
10208
11447
  }
10209
11448
  },
@@ -10619,6 +11858,36 @@ export const VALIDATORS: ValidatorTable = {
10619
11858
  ]
10620
11859
  }
10621
11860
  },
11861
+ "providers.liquidspace": {
11862
+ "defs": {},
11863
+ "functions": {
11864
+ "search": [
11865
+ {
11866
+ "name": "input",
11867
+ "schema": {
11868
+ "k": "object",
11869
+ "props": [
11870
+ {
11871
+ "name": "city",
11872
+ "schema": {
11873
+ "k": "string"
11874
+ },
11875
+ "optional": false
11876
+ },
11877
+ {
11878
+ "name": "state",
11879
+ "schema": {
11880
+ "k": "string"
11881
+ },
11882
+ "optional": false
11883
+ }
11884
+ ]
11885
+ },
11886
+ "optional": false
11887
+ }
11888
+ ]
11889
+ }
11890
+ },
10622
11891
  "providers.littlewordsproject": {
10623
11892
  "defs": {},
10624
11893
  "functions": {
@@ -10997,6 +12266,20 @@ export const VALIDATORS: ValidatorTable = {
10997
12266
  "getPlanPricing": null
10998
12267
  }
10999
12268
  },
12269
+ "providers.marketplace_visualstudio": {
12270
+ "defs": {},
12271
+ "functions": {
12272
+ "getExtensionStats": [
12273
+ {
12274
+ "name": "extensionId",
12275
+ "schema": {
12276
+ "k": "string"
12277
+ },
12278
+ "optional": false
12279
+ }
12280
+ ]
12281
+ }
12282
+ },
11000
12283
  "providers.marriott": {
11001
12284
  "defs": {},
11002
12285
  "functions": {
@@ -11035,6 +12318,27 @@ export const VALIDATORS: ValidatorTable = {
11035
12318
  "findStores": null
11036
12319
  }
11037
12320
  },
12321
+ "providers.mcp_registry": {
12322
+ "defs": {},
12323
+ "functions": {
12324
+ "search": [
12325
+ {
12326
+ "name": "query",
12327
+ "schema": {
12328
+ "k": "string"
12329
+ },
12330
+ "optional": true
12331
+ },
12332
+ {
12333
+ "name": "limit",
12334
+ "schema": {
12335
+ "k": "number"
12336
+ },
12337
+ "optional": true
12338
+ }
12339
+ ]
12340
+ }
12341
+ },
11038
12342
  "providers.medicalguardian": {
11039
12343
  "defs": {
11040
12344
  "MedicalguardianActivityLevel": {
@@ -11432,10 +12736,40 @@ export const VALIDATORS: ValidatorTable = {
11432
12736
  ],
11433
12737
  "getPlan": [
11434
12738
  {
11435
- "name": "arg0",
12739
+ "name": "arg0",
12740
+ "schema": {
12741
+ "k": "ref",
12742
+ "name": "medicareGetPlanQuery"
12743
+ },
12744
+ "optional": false
12745
+ }
12746
+ ]
12747
+ }
12748
+ },
12749
+ "providers.mergify": {
12750
+ "defs": {},
12751
+ "functions": {
12752
+ "queueStatus": [
12753
+ {
12754
+ "name": "args",
11436
12755
  "schema": {
11437
- "k": "ref",
11438
- "name": "medicareGetPlanQuery"
12756
+ "k": "object",
12757
+ "props": [
12758
+ {
12759
+ "name": "owner",
12760
+ "schema": {
12761
+ "k": "string"
12762
+ },
12763
+ "optional": false
12764
+ },
12765
+ {
12766
+ "name": "repo",
12767
+ "schema": {
12768
+ "k": "string"
12769
+ },
12770
+ "optional": false
12771
+ }
12772
+ ]
11439
12773
  },
11440
12774
  "optional": false
11441
12775
  }
@@ -11483,6 +12817,20 @@ export const VALIDATORS: ValidatorTable = {
11483
12817
  ]
11484
12818
  }
11485
12819
  },
12820
+ "providers.minimax": {
12821
+ "defs": {},
12822
+ "functions": {
12823
+ "getDocs": [
12824
+ {
12825
+ "name": "topic",
12826
+ "schema": {
12827
+ "k": "string"
12828
+ },
12829
+ "optional": false
12830
+ }
12831
+ ]
12832
+ }
12833
+ },
11486
12834
  "providers.minted": {
11487
12835
  "defs": {
11488
12836
  "MintedCardSelections": {
@@ -12045,6 +13393,45 @@ export const VALIDATORS: ValidatorTable = {
12045
13393
  },
12046
13394
  "optional": true
12047
13395
  }
13396
+ ],
13397
+ "searchProducts": [
13398
+ {
13399
+ "name": "opts",
13400
+ "schema": {
13401
+ "k": "object",
13402
+ "props": [
13403
+ {
13404
+ "name": "productType",
13405
+ "schema": {
13406
+ "k": "string"
13407
+ },
13408
+ "optional": true
13409
+ },
13410
+ {
13411
+ "name": "limit",
13412
+ "schema": {
13413
+ "k": "number"
13414
+ },
13415
+ "optional": true
13416
+ }
13417
+ ]
13418
+ },
13419
+ "optional": true
13420
+ }
13421
+ ]
13422
+ }
13423
+ },
13424
+ "providers.muze_gov_tr": {
13425
+ "defs": {},
13426
+ "functions": {
13427
+ "getVisitingHours": [
13428
+ {
13429
+ "name": "query",
13430
+ "schema": {
13431
+ "k": "string"
13432
+ },
13433
+ "optional": false
13434
+ }
12048
13435
  ]
12049
13436
  }
12050
13437
  },
@@ -12312,6 +13699,46 @@ export const VALIDATORS: ValidatorTable = {
12312
13699
  }
12313
13700
  ]
12314
13701
  },
13702
+ "NvisioncentersEstimateSavingsInput": {
13703
+ "k": "object",
13704
+ "props": [
13705
+ {
13706
+ "name": "age",
13707
+ "schema": {
13708
+ "k": "number"
13709
+ },
13710
+ "optional": false
13711
+ },
13712
+ {
13713
+ "name": "glasses",
13714
+ "schema": {
13715
+ "k": "number"
13716
+ },
13717
+ "optional": false
13718
+ },
13719
+ {
13720
+ "name": "glasses_cost",
13721
+ "schema": {
13722
+ "k": "number"
13723
+ },
13724
+ "optional": false
13725
+ },
13726
+ {
13727
+ "name": "contacts",
13728
+ "schema": {
13729
+ "k": "number"
13730
+ },
13731
+ "optional": false
13732
+ },
13733
+ {
13734
+ "name": "contacts_cost",
13735
+ "schema": {
13736
+ "k": "number"
13737
+ },
13738
+ "optional": false
13739
+ }
13740
+ ]
13741
+ },
12315
13742
  "NvisioncentersSavingsInput": {
12316
13743
  "k": "object",
12317
13744
  "props": [
@@ -12373,6 +13800,16 @@ export const VALIDATORS: ValidatorTable = {
12373
13800
  },
12374
13801
  "optional": false
12375
13802
  }
13803
+ ],
13804
+ "estimateLasikSavings": [
13805
+ {
13806
+ "name": "input",
13807
+ "schema": {
13808
+ "k": "ref",
13809
+ "name": "NvisioncentersEstimateSavingsInput"
13810
+ },
13811
+ "optional": false
13812
+ }
12376
13813
  ]
12377
13814
  }
12378
13815
  },
@@ -13226,6 +14663,13 @@ export const VALIDATORS: ValidatorTable = {
13226
14663
  ]
13227
14664
  }
13228
14665
  },
14666
+ "providers.poshmark": {
14667
+ "defs": {},
14668
+ "functions": {
14669
+ "getBulkUploadTemplateGuide": [],
14670
+ "getZipFileGuide": []
14671
+ }
14672
+ },
13229
14673
  "providers.positivegrid": {
13230
14674
  "defs": {
13231
14675
  "positivegridFindRetailersArgs": {
@@ -15974,6 +17418,38 @@ export const VALIDATORS: ValidatorTable = {
15974
17418
  ]
15975
17419
  }
15976
17420
  },
17421
+ "providers.proxmox": {
17422
+ "defs": {},
17423
+ "functions": {
17424
+ "getIsoDownloads": [
17425
+ {
17426
+ "name": "product",
17427
+ "schema": {
17428
+ "k": "union",
17429
+ "of": [
17430
+ {
17431
+ "k": "literal",
17432
+ "v": "proxmox-virtual-environment"
17433
+ },
17434
+ {
17435
+ "k": "literal",
17436
+ "v": "proxmox-backup-server"
17437
+ },
17438
+ {
17439
+ "k": "literal",
17440
+ "v": "proxmox-mail-gateway"
17441
+ },
17442
+ {
17443
+ "k": "literal",
17444
+ "v": "proxmox-datacenter-manager"
17445
+ }
17446
+ ]
17447
+ },
17448
+ "optional": true
17449
+ }
17450
+ ]
17451
+ }
17452
+ },
15977
17453
  "providers.reddit": {
15978
17454
  "defs": {},
15979
17455
  "functions": {
@@ -17452,6 +18928,20 @@ export const VALIDATORS: ValidatorTable = {
17452
18928
  ]
17453
18929
  }
17454
18930
  },
18931
+ "providers.sixflags": {
18932
+ "defs": {},
18933
+ "functions": {
18934
+ "getTickets": [
18935
+ {
18936
+ "name": "park",
18937
+ "schema": {
18938
+ "k": "string"
18939
+ },
18940
+ "optional": false
18941
+ }
18942
+ ]
18943
+ }
18944
+ },
17455
18945
  "providers.smartsign": {
17456
18946
  "defs": {},
17457
18947
  "functions": {
@@ -17524,6 +19014,76 @@ export const VALIDATORS: ValidatorTable = {
17524
19014
  ]
17525
19015
  }
17526
19016
  },
19017
+ "providers.smithery": {
19018
+ "defs": {
19019
+ "SmitherySearchOptions": {
19020
+ "k": "object",
19021
+ "props": [
19022
+ {
19023
+ "name": "page",
19024
+ "schema": {
19025
+ "k": "number"
19026
+ },
19027
+ "optional": true
19028
+ },
19029
+ {
19030
+ "name": "pageSize",
19031
+ "schema": {
19032
+ "k": "number"
19033
+ },
19034
+ "optional": true
19035
+ },
19036
+ {
19037
+ "name": "verified",
19038
+ "schema": {
19039
+ "k": "boolean"
19040
+ },
19041
+ "optional": true
19042
+ },
19043
+ {
19044
+ "name": "remote",
19045
+ "schema": {
19046
+ "k": "boolean"
19047
+ },
19048
+ "optional": true
19049
+ },
19050
+ {
19051
+ "name": "isDeployed",
19052
+ "schema": {
19053
+ "k": "boolean"
19054
+ },
19055
+ "optional": true
19056
+ },
19057
+ {
19058
+ "name": "namespace",
19059
+ "schema": {
19060
+ "k": "string"
19061
+ },
19062
+ "optional": true
19063
+ }
19064
+ ]
19065
+ }
19066
+ },
19067
+ "functions": {
19068
+ "search": [
19069
+ {
19070
+ "name": "query",
19071
+ "schema": {
19072
+ "k": "string"
19073
+ },
19074
+ "optional": false
19075
+ },
19076
+ {
19077
+ "name": "options",
19078
+ "schema": {
19079
+ "k": "ref",
19080
+ "name": "SmitherySearchOptions"
19081
+ },
19082
+ "optional": true
19083
+ }
19084
+ ]
19085
+ }
19086
+ },
17527
19087
  "providers.solostove": {
17528
19088
  "defs": {},
17529
19089
  "functions": {
@@ -18902,6 +20462,50 @@ export const VALIDATORS: ValidatorTable = {
18902
20462
  "k": "string"
18903
20463
  },
18904
20464
  "optional": false
20465
+ },
20466
+ {
20467
+ "name": "ageFirstLicensed",
20468
+ "schema": {
20469
+ "k": "number"
20470
+ },
20471
+ "optional": true
20472
+ },
20473
+ {
20474
+ "name": "violations",
20475
+ "schema": {
20476
+ "k": "object",
20477
+ "props": [
20478
+ {
20479
+ "name": "accidents",
20480
+ "schema": {
20481
+ "k": "number"
20482
+ },
20483
+ "optional": false
20484
+ },
20485
+ {
20486
+ "name": "claims",
20487
+ "schema": {
20488
+ "k": "number"
20489
+ },
20490
+ "optional": false
20491
+ },
20492
+ {
20493
+ "name": "tickets",
20494
+ "schema": {
20495
+ "k": "number"
20496
+ },
20497
+ "optional": false
20498
+ }
20499
+ ]
20500
+ },
20501
+ "optional": true
20502
+ },
20503
+ {
20504
+ "name": "occupation",
20505
+ "schema": {
20506
+ "k": "string"
20507
+ },
20508
+ "optional": true
18905
20509
  }
18906
20510
  ]
18907
20511
  },