@bowmark/web 1.11.0 → 1.12.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,14 +5,42 @@
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: 30acf97e882124423eecad144b20c278a6e81b46e839c2063822661efc063ea6
9
+ // 647 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": "30acf97e882124423eecad144b20c278a6e81b46e839c2063822661efc063ea6",
15
15
  "units": {
16
+ "cable_railing_quote": {
17
+ "defs": {
18
+ "CallOptions": {
19
+ "k": "object",
20
+ "props": [
21
+ {
22
+ "name": "timeoutMs",
23
+ "schema": {
24
+ "k": "number"
25
+ },
26
+ "optional": true
27
+ }
28
+ ]
29
+ }
30
+ },
31
+ "functions": {
32
+ "getDesignOptions": [
33
+ {
34
+ "name": "options",
35
+ "schema": {
36
+ "k": "ref",
37
+ "name": "CallOptions"
38
+ },
39
+ "optional": true
40
+ }
41
+ ]
42
+ }
43
+ },
16
44
  "cars": {
17
45
  "defs": {
18
46
  "CallOptions": {
@@ -110,6 +138,186 @@ export const VALIDATORS: ValidatorTable = {
110
138
  ]
111
139
  }
112
140
  },
141
+ "coworking": {
142
+ "defs": {
143
+ "CallOptions": {
144
+ "k": "object",
145
+ "props": [
146
+ {
147
+ "name": "timeoutMs",
148
+ "schema": {
149
+ "k": "number"
150
+ },
151
+ "optional": true
152
+ }
153
+ ]
154
+ }
155
+ },
156
+ "functions": {
157
+ "findDayPasses": [
158
+ {
159
+ "name": "location",
160
+ "schema": {
161
+ "k": "union",
162
+ "of": [
163
+ {
164
+ "k": "string"
165
+ },
166
+ {
167
+ "k": "object",
168
+ "props": [
169
+ {
170
+ "name": "city",
171
+ "schema": {
172
+ "k": "string"
173
+ },
174
+ "optional": false
175
+ },
176
+ {
177
+ "name": "state",
178
+ "schema": {
179
+ "k": "string"
180
+ },
181
+ "optional": false
182
+ }
183
+ ]
184
+ }
185
+ ]
186
+ },
187
+ "optional": false
188
+ },
189
+ {
190
+ "name": "options",
191
+ "schema": {
192
+ "k": "ref",
193
+ "name": "CallOptions"
194
+ },
195
+ "optional": true
196
+ }
197
+ ]
198
+ }
199
+ },
200
+ "custom_sofa_configurator": {
201
+ "defs": {},
202
+ "functions": {
203
+ "listSofas": [
204
+ {
205
+ "name": "query",
206
+ "schema": {
207
+ "k": "string"
208
+ },
209
+ "optional": true
210
+ }
211
+ ],
212
+ "getConfigurator": [
213
+ {
214
+ "name": "id",
215
+ "schema": {
216
+ "k": "string"
217
+ },
218
+ "optional": false
219
+ }
220
+ ],
221
+ "priceConfiguration": [
222
+ {
223
+ "name": "id",
224
+ "schema": {
225
+ "k": "string"
226
+ },
227
+ "optional": false
228
+ },
229
+ {
230
+ "name": "selections",
231
+ "schema": {
232
+ "k": "record",
233
+ "value": {
234
+ "k": "string"
235
+ }
236
+ },
237
+ "optional": false
238
+ }
239
+ ]
240
+ }
241
+ },
242
+ "developer_api_key_signup": {
243
+ "defs": {
244
+ "CallOptions": {
245
+ "k": "object",
246
+ "props": [
247
+ {
248
+ "name": "timeoutMs",
249
+ "schema": {
250
+ "k": "number"
251
+ },
252
+ "optional": true
253
+ }
254
+ ]
255
+ }
256
+ },
257
+ "functions": {
258
+ "signUp": [
259
+ {
260
+ "name": "service",
261
+ "schema": {
262
+ "k": "string"
263
+ },
264
+ "optional": false
265
+ },
266
+ {
267
+ "name": "details",
268
+ "schema": {
269
+ "k": "object",
270
+ "props": [
271
+ {
272
+ "name": "organization",
273
+ "schema": {
274
+ "k": "string"
275
+ },
276
+ "optional": false
277
+ },
278
+ {
279
+ "name": "email",
280
+ "schema": {
281
+ "k": "string"
282
+ },
283
+ "optional": false
284
+ },
285
+ {
286
+ "name": "occupation",
287
+ "schema": {
288
+ "k": "string"
289
+ },
290
+ "optional": true
291
+ }
292
+ ]
293
+ },
294
+ "optional": false
295
+ },
296
+ {
297
+ "name": "options",
298
+ "schema": {
299
+ "k": "ref",
300
+ "name": "CallOptions"
301
+ },
302
+ "optional": true
303
+ }
304
+ ]
305
+ }
306
+ },
307
+ "domain": {
308
+ "defs": {},
309
+ "functions": {
310
+ "checkAvailability": [
311
+ {
312
+ "name": "name",
313
+ "schema": {
314
+ "k": "string"
315
+ },
316
+ "optional": false
317
+ }
318
+ ]
319
+ }
320
+ },
113
321
  "email": {
114
322
  "defs": {
115
323
  "CallOptions": {
@@ -478,32 +686,34 @@ export const VALIDATORS: ValidatorTable = {
478
686
  ]
479
687
  }
480
688
  },
689
+ "game_soundtrack_composer_credits": {
690
+ "defs": {},
691
+ "functions": {
692
+ "search": [
693
+ {
694
+ "name": "gameTitle",
695
+ "schema": {
696
+ "k": "string"
697
+ },
698
+ "optional": false
699
+ }
700
+ ],
701
+ "getCredits": [
702
+ {
703
+ "name": "releaseGroupId",
704
+ "schema": {
705
+ "k": "string"
706
+ },
707
+ "optional": false
708
+ }
709
+ ]
710
+ }
711
+ },
481
712
  "git": {
482
713
  "defs": {
483
- "CommitHistoryOptions": {
714
+ "ReleaseNotesOptions": {
484
715
  "k": "object",
485
716
  "props": [
486
- {
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",
502
- "schema": {
503
- "k": "string"
504
- },
505
- "optional": true
506
- },
507
717
  {
508
718
  "name": "limit",
509
719
  "schema": {
@@ -522,7 +732,7 @@ export const VALIDATORS: ValidatorTable = {
522
732
  }
523
733
  },
524
734
  "functions": {
525
- "commitHistory": [
735
+ "releaseNotes": [
526
736
  {
527
737
  "name": "repo",
528
738
  "schema": {
@@ -534,7 +744,7 @@ export const VALIDATORS: ValidatorTable = {
534
744
  "name": "options",
535
745
  "schema": {
536
746
  "k": "ref",
537
- "name": "CommitHistoryOptions"
747
+ "name": "ReleaseNotesOptions"
538
748
  },
539
749
  "optional": true
540
750
  }
@@ -749,6 +959,83 @@ export const VALIDATORS: ValidatorTable = {
749
959
  }
750
960
  ]
751
961
  },
962
+ "HomeQuoteQuery": {
963
+ "k": "object",
964
+ "props": [
965
+ {
966
+ "name": "identity",
967
+ "schema": {
968
+ "k": "object",
969
+ "props": [
970
+ {
971
+ "name": "firstName",
972
+ "schema": {
973
+ "k": "string"
974
+ },
975
+ "optional": false
976
+ },
977
+ {
978
+ "name": "lastName",
979
+ "schema": {
980
+ "k": "string"
981
+ },
982
+ "optional": false
983
+ },
984
+ {
985
+ "name": "dob",
986
+ "schema": {
987
+ "k": "string"
988
+ },
989
+ "optional": false
990
+ },
991
+ {
992
+ "name": "email",
993
+ "schema": {
994
+ "k": "string"
995
+ },
996
+ "optional": false
997
+ },
998
+ {
999
+ "name": "phone",
1000
+ "schema": {
1001
+ "k": "string"
1002
+ },
1003
+ "optional": false
1004
+ }
1005
+ ]
1006
+ },
1007
+ "optional": false
1008
+ },
1009
+ {
1010
+ "name": "address",
1011
+ "schema": {
1012
+ "k": "string"
1013
+ },
1014
+ "optional": false
1015
+ },
1016
+ {
1017
+ "name": "zip",
1018
+ "schema": {
1019
+ "k": "string"
1020
+ },
1021
+ "optional": false
1022
+ },
1023
+ {
1024
+ "name": "city",
1025
+ "schema": {
1026
+ "k": "string"
1027
+ },
1028
+ "optional": true
1029
+ },
1030
+ {
1031
+ "name": "state",
1032
+ "schema": {
1033
+ "k": "string"
1034
+ },
1035
+ "optional": true
1036
+ }
1037
+ ]
1038
+ },
752
1039
  "ReferralCarrierQuery": {
753
1040
  "k": "object",
754
1041
  "props": [
@@ -847,6 +1134,101 @@ export const VALIDATORS: ValidatorTable = {
847
1134
  },
848
1135
  "optional": true
849
1136
  }
1137
+ ],
1138
+ "getHomeQuotes": [
1139
+ {
1140
+ "name": "query",
1141
+ "schema": {
1142
+ "k": "ref",
1143
+ "name": "HomeQuoteQuery"
1144
+ },
1145
+ "optional": false
1146
+ },
1147
+ {
1148
+ "name": "options",
1149
+ "schema": {
1150
+ "k": "ref",
1151
+ "name": "CallOptions"
1152
+ },
1153
+ "optional": true
1154
+ }
1155
+ ]
1156
+ }
1157
+ },
1158
+ "istanbul_schedules": {
1159
+ "defs": {
1160
+ "CallOptions": {
1161
+ "k": "object",
1162
+ "props": [
1163
+ {
1164
+ "name": "timeoutMs",
1165
+ "schema": {
1166
+ "k": "number"
1167
+ },
1168
+ "optional": true
1169
+ }
1170
+ ]
1171
+ }
1172
+ },
1173
+ "functions": {
1174
+ "attractionHours": [
1175
+ {
1176
+ "name": "query",
1177
+ "schema": {
1178
+ "k": "string"
1179
+ },
1180
+ "optional": false
1181
+ },
1182
+ {
1183
+ "name": "options",
1184
+ "schema": {
1185
+ "k": "ref",
1186
+ "name": "CallOptions"
1187
+ },
1188
+ "optional": true
1189
+ }
1190
+ ]
1191
+ }
1192
+ },
1193
+ "mcp_registry": {
1194
+ "defs": {
1195
+ "CallOptions": {
1196
+ "k": "object",
1197
+ "props": [
1198
+ {
1199
+ "name": "timeoutMs",
1200
+ "schema": {
1201
+ "k": "number"
1202
+ },
1203
+ "optional": true
1204
+ }
1205
+ ]
1206
+ }
1207
+ },
1208
+ "functions": {
1209
+ "search": [
1210
+ {
1211
+ "name": "query",
1212
+ "schema": {
1213
+ "k": "string"
1214
+ },
1215
+ "optional": true
1216
+ },
1217
+ {
1218
+ "name": "limit",
1219
+ "schema": {
1220
+ "k": "number"
1221
+ },
1222
+ "optional": true
1223
+ },
1224
+ {
1225
+ "name": "options",
1226
+ "schema": {
1227
+ "k": "ref",
1228
+ "name": "CallOptions"
1229
+ },
1230
+ "optional": true
1231
+ }
850
1232
  ]
851
1233
  }
852
1234
  },
@@ -1095,10 +1477,131 @@ export const VALIDATORS: ValidatorTable = {
1095
1477
  "optional": false
1096
1478
  },
1097
1479
  {
1098
- "name": "options",
1480
+ "name": "options",
1481
+ "schema": {
1482
+ "k": "ref",
1483
+ "name": "CallOptions"
1484
+ },
1485
+ "optional": true
1486
+ }
1487
+ ]
1488
+ }
1489
+ },
1490
+ "phone_trade_in": {
1491
+ "defs": {
1492
+ "CallOptions": {
1493
+ "k": "object",
1494
+ "props": [
1495
+ {
1496
+ "name": "timeoutMs",
1497
+ "schema": {
1498
+ "k": "number"
1499
+ },
1500
+ "optional": true
1501
+ }
1502
+ ]
1503
+ }
1504
+ },
1505
+ "functions": {
1506
+ "estimate": [
1507
+ {
1508
+ "name": "query",
1509
+ "schema": {
1510
+ "k": "union",
1511
+ "of": [
1512
+ {
1513
+ "k": "object",
1514
+ "props": [
1515
+ {
1516
+ "name": "model",
1517
+ "schema": {
1518
+ "k": "string"
1519
+ },
1520
+ "optional": false
1521
+ },
1522
+ {
1523
+ "name": "storage",
1524
+ "schema": {
1525
+ "k": "string"
1526
+ },
1527
+ "optional": false
1528
+ },
1529
+ {
1530
+ "name": "condition",
1531
+ "schema": {
1532
+ "k": "string"
1533
+ },
1534
+ "optional": true
1535
+ }
1536
+ ]
1537
+ },
1538
+ {
1539
+ "k": "string"
1540
+ }
1541
+ ]
1542
+ },
1543
+ "optional": false
1544
+ },
1545
+ {
1546
+ "name": "options",
1547
+ "schema": {
1548
+ "k": "ref",
1549
+ "name": "CallOptions"
1550
+ },
1551
+ "optional": true
1552
+ }
1553
+ ]
1554
+ }
1555
+ },
1556
+ "pricing": {
1557
+ "defs": {
1558
+ "PersonalizationPersona": {
1559
+ "k": "object",
1560
+ "props": [
1561
+ {
1562
+ "name": "label",
1563
+ "schema": {
1564
+ "k": "string"
1565
+ },
1566
+ "optional": false
1567
+ },
1568
+ {
1569
+ "name": "device",
1570
+ "schema": {
1571
+ "k": "union",
1572
+ "of": [
1573
+ {
1574
+ "k": "literal",
1575
+ "v": "desktop"
1576
+ },
1577
+ {
1578
+ "k": "literal",
1579
+ "v": "mobile"
1580
+ }
1581
+ ]
1582
+ },
1583
+ "optional": true
1584
+ }
1585
+ ]
1586
+ }
1587
+ },
1588
+ "functions": {
1589
+ "checkPersonalization": [
1590
+ {
1591
+ "name": "url",
1592
+ "schema": {
1593
+ "k": "string"
1594
+ },
1595
+ "optional": false
1596
+ },
1597
+ {
1598
+ "name": "personas",
1099
1599
  "schema": {
1100
- "k": "ref",
1101
- "name": "CallOptions"
1600
+ "k": "array",
1601
+ "of": {
1602
+ "k": "ref",
1603
+ "name": "PersonalizationPersona"
1604
+ }
1102
1605
  },
1103
1606
  "optional": true
1104
1607
  }
@@ -1657,6 +2160,132 @@ export const VALIDATORS: ValidatorTable = {
1657
2160
  ]
1658
2161
  }
1659
2162
  },
2163
+ "text_to_speech": {
2164
+ "defs": {
2165
+ "CloneVoiceOptions": {
2166
+ "k": "object",
2167
+ "props": [
2168
+ {
2169
+ "name": "name",
2170
+ "schema": {
2171
+ "k": "string"
2172
+ },
2173
+ "optional": false
2174
+ },
2175
+ {
2176
+ "name": "sampleUrls",
2177
+ "schema": {
2178
+ "k": "array",
2179
+ "of": {
2180
+ "k": "string"
2181
+ }
2182
+ },
2183
+ "optional": false
2184
+ },
2185
+ {
2186
+ "name": "description",
2187
+ "schema": {
2188
+ "k": "string"
2189
+ },
2190
+ "optional": true
2191
+ }
2192
+ ]
2193
+ },
2194
+ "SynthesizeOptions": {
2195
+ "k": "object",
2196
+ "props": [
2197
+ {
2198
+ "name": "voiceId",
2199
+ "schema": {
2200
+ "k": "string"
2201
+ },
2202
+ "optional": true
2203
+ }
2204
+ ]
2205
+ }
2206
+ },
2207
+ "functions": {
2208
+ "synthesize": [
2209
+ {
2210
+ "name": "text",
2211
+ "schema": {
2212
+ "k": "string"
2213
+ },
2214
+ "optional": false
2215
+ },
2216
+ {
2217
+ "name": "options",
2218
+ "schema": {
2219
+ "k": "ref",
2220
+ "name": "SynthesizeOptions"
2221
+ },
2222
+ "optional": true
2223
+ }
2224
+ ],
2225
+ "cloneVoice": [
2226
+ {
2227
+ "name": "options",
2228
+ "schema": {
2229
+ "k": "ref",
2230
+ "name": "CloneVoiceOptions"
2231
+ },
2232
+ "optional": false
2233
+ }
2234
+ ]
2235
+ }
2236
+ },
2237
+ "theme_park_tickets": {
2238
+ "defs": {
2239
+ "CallOptions": {
2240
+ "k": "object",
2241
+ "props": [
2242
+ {
2243
+ "name": "timeoutMs",
2244
+ "schema": {
2245
+ "k": "number"
2246
+ },
2247
+ "optional": true
2248
+ }
2249
+ ]
2250
+ }
2251
+ },
2252
+ "functions": {
2253
+ "search": [
2254
+ {
2255
+ "name": "park",
2256
+ "schema": {
2257
+ "k": "union",
2258
+ "of": [
2259
+ {
2260
+ "k": "string"
2261
+ },
2262
+ {
2263
+ "k": "object",
2264
+ "props": [
2265
+ {
2266
+ "name": "park",
2267
+ "schema": {
2268
+ "k": "string"
2269
+ },
2270
+ "optional": false
2271
+ }
2272
+ ]
2273
+ }
2274
+ ]
2275
+ },
2276
+ "optional": false
2277
+ },
2278
+ {
2279
+ "name": "options",
2280
+ "schema": {
2281
+ "k": "ref",
2282
+ "name": "CallOptions"
2283
+ },
2284
+ "optional": true
2285
+ }
2286
+ ]
2287
+ }
2288
+ },
1660
2289
  "weather": {
1661
2290
  "defs": {},
1662
2291
  "functions": {
@@ -1678,6 +2307,43 @@ export const VALIDATORS: ValidatorTable = {
1678
2307
  ]
1679
2308
  }
1680
2309
  },
2310
+ "yoga_outfit_shopping": {
2311
+ "defs": {},
2312
+ "functions": {
2313
+ "search": [
2314
+ {
2315
+ "name": "query",
2316
+ "schema": {
2317
+ "k": "string"
2318
+ },
2319
+ "optional": false
2320
+ },
2321
+ {
2322
+ "name": "options",
2323
+ "schema": {
2324
+ "k": "object",
2325
+ "props": [
2326
+ {
2327
+ "name": "limit",
2328
+ "schema": {
2329
+ "k": "number"
2330
+ },
2331
+ "optional": true
2332
+ },
2333
+ {
2334
+ "name": "timeoutMs",
2335
+ "schema": {
2336
+ "k": "number"
2337
+ },
2338
+ "optional": true
2339
+ }
2340
+ ]
2341
+ },
2342
+ "optional": true
2343
+ }
2344
+ ]
2345
+ }
2346
+ },
1681
2347
  "providers.aa": {
1682
2348
  "defs": {
1683
2349
  "aaBaggageAllowanceArgs": {
@@ -2093,6 +2759,43 @@ export const VALIDATORS: ValidatorTable = {
2093
2759
  ]
2094
2760
  }
2095
2761
  },
2762
+ "providers.alphavantage": {
2763
+ "defs": {},
2764
+ "functions": {
2765
+ "signUp": [
2766
+ {
2767
+ "name": "details",
2768
+ "schema": {
2769
+ "k": "object",
2770
+ "props": [
2771
+ {
2772
+ "name": "organization",
2773
+ "schema": {
2774
+ "k": "string"
2775
+ },
2776
+ "optional": false
2777
+ },
2778
+ {
2779
+ "name": "email",
2780
+ "schema": {
2781
+ "k": "string"
2782
+ },
2783
+ "optional": false
2784
+ },
2785
+ {
2786
+ "name": "occupation",
2787
+ "schema": {
2788
+ "k": "string"
2789
+ },
2790
+ "optional": true
2791
+ }
2792
+ ]
2793
+ },
2794
+ "optional": false
2795
+ }
2796
+ ]
2797
+ }
2798
+ },
2096
2799
  "providers.americanstandard": {
2097
2800
  "defs": {},
2098
2801
  "functions": {
@@ -2210,6 +2913,15 @@ export const VALIDATORS: ValidatorTable = {
2210
2913
  },
2211
2914
  "optional": false
2212
2915
  }
2916
+ ],
2917
+ "getTradeInEstimate": [
2918
+ {
2919
+ "name": "model",
2920
+ "schema": {
2921
+ "k": "string"
2922
+ },
2923
+ "optional": false
2924
+ }
2213
2925
  ]
2214
2926
  }
2215
2927
  },
@@ -2898,57 +3610,103 @@ export const VALIDATORS: ValidatorTable = {
2898
3610
  ],
2899
3611
  "getBaublebarCheckoutLink": [
2900
3612
  {
2901
- "name": "handle",
3613
+ "name": "handle",
3614
+ "schema": {
3615
+ "k": "string"
3616
+ },
3617
+ "optional": false
3618
+ },
3619
+ {
3620
+ "name": "selections",
3621
+ "schema": {
3622
+ "k": "object",
3623
+ "props": [
3624
+ {
3625
+ "name": "size",
3626
+ "schema": {
3627
+ "k": "string"
3628
+ },
3629
+ "optional": true
3630
+ },
3631
+ {
3632
+ "name": "color",
3633
+ "schema": {
3634
+ "k": "string"
3635
+ },
3636
+ "optional": true
3637
+ },
3638
+ {
3639
+ "name": "text",
3640
+ "schema": {
3641
+ "k": "string"
3642
+ },
3643
+ "optional": true
3644
+ }
3645
+ ]
3646
+ },
3647
+ "optional": false
3648
+ },
3649
+ {
3650
+ "name": "opts",
3651
+ "schema": {
3652
+ "k": "object",
3653
+ "props": [
3654
+ {
3655
+ "name": "quantity",
3656
+ "schema": {
3657
+ "k": "number"
3658
+ },
3659
+ "optional": true
3660
+ }
3661
+ ]
3662
+ },
3663
+ "optional": true
3664
+ }
3665
+ ]
3666
+ }
3667
+ },
3668
+ "providers.bcparkscamping": {
3669
+ "defs": {},
3670
+ "functions": {
3671
+ "searchCampgrounds": [
3672
+ {
3673
+ "name": "query",
2902
3674
  "schema": {
2903
3675
  "k": "string"
2904
3676
  },
2905
3677
  "optional": false
2906
- },
3678
+ }
3679
+ ],
3680
+ "checkAvailability": [
2907
3681
  {
2908
- "name": "selections",
3682
+ "name": "arg",
2909
3683
  "schema": {
2910
3684
  "k": "object",
2911
3685
  "props": [
2912
3686
  {
2913
- "name": "size",
3687
+ "name": "resourceLocationId",
2914
3688
  "schema": {
2915
- "k": "string"
3689
+ "k": "number"
2916
3690
  },
2917
- "optional": true
3691
+ "optional": false
2918
3692
  },
2919
3693
  {
2920
- "name": "color",
3694
+ "name": "startDate",
2921
3695
  "schema": {
2922
3696
  "k": "string"
2923
3697
  },
2924
- "optional": true
3698
+ "optional": false
2925
3699
  },
2926
3700
  {
2927
- "name": "text",
3701
+ "name": "endDate",
2928
3702
  "schema": {
2929
3703
  "k": "string"
2930
3704
  },
2931
- "optional": true
3705
+ "optional": false
2932
3706
  }
2933
3707
  ]
2934
3708
  },
2935
3709
  "optional": false
2936
- },
2937
- {
2938
- "name": "opts",
2939
- "schema": {
2940
- "k": "object",
2941
- "props": [
2942
- {
2943
- "name": "quantity",
2944
- "schema": {
2945
- "k": "number"
2946
- },
2947
- "optional": true
2948
- }
2949
- ]
2950
- },
2951
- "optional": true
2952
3710
  }
2953
3711
  ]
2954
3712
  }
@@ -3030,6 +3788,29 @@ export const VALIDATORS: ValidatorTable = {
3030
3788
  ]
3031
3789
  }
3032
3790
  },
3791
+ "providers.bennington": {
3792
+ "defs": {},
3793
+ "functions": {
3794
+ "search": [
3795
+ {
3796
+ "name": "args",
3797
+ "schema": {
3798
+ "k": "object",
3799
+ "props": [
3800
+ {
3801
+ "name": "model",
3802
+ "schema": {
3803
+ "k": "string"
3804
+ },
3805
+ "optional": true
3806
+ }
3807
+ ]
3808
+ },
3809
+ "optional": true
3810
+ }
3811
+ ]
3812
+ }
3813
+ },
3033
3814
  "providers.bestbuy": {
3034
3815
  "defs": {},
3035
3816
  "functions": {
@@ -5380,6 +6161,20 @@ export const VALIDATORS: ValidatorTable = {
5380
6161
  ]
5381
6162
  }
5382
6163
  },
6164
+ "providers.developersopenai": {
6165
+ "defs": {},
6166
+ "functions": {
6167
+ "getDocPage": [
6168
+ {
6169
+ "name": "args",
6170
+ "schema": {
6171
+ "k": "any"
6172
+ },
6173
+ "optional": true
6174
+ }
6175
+ ]
6176
+ }
6177
+ },
5383
6178
  "providers.dice": {
5384
6179
  "defs": {},
5385
6180
  "functions": {
@@ -5850,6 +6645,78 @@ export const VALIDATORS: ValidatorTable = {
5850
6645
  ]
5851
6646
  }
5852
6647
  },
6648
+ "providers.elevenlabs": {
6649
+ "defs": {},
6650
+ "functions": {
6651
+ "synthesize": [
6652
+ {
6653
+ "name": "args",
6654
+ "schema": {
6655
+ "k": "object",
6656
+ "props": [
6657
+ {
6658
+ "name": "text",
6659
+ "schema": {
6660
+ "k": "string"
6661
+ },
6662
+ "optional": false
6663
+ },
6664
+ {
6665
+ "name": "voiceId",
6666
+ "schema": {
6667
+ "k": "string"
6668
+ },
6669
+ "optional": true
6670
+ },
6671
+ {
6672
+ "name": "modelId",
6673
+ "schema": {
6674
+ "k": "string"
6675
+ },
6676
+ "optional": true
6677
+ }
6678
+ ]
6679
+ },
6680
+ "optional": false
6681
+ }
6682
+ ],
6683
+ "cloneVoice": [
6684
+ {
6685
+ "name": "args",
6686
+ "schema": {
6687
+ "k": "object",
6688
+ "props": [
6689
+ {
6690
+ "name": "name",
6691
+ "schema": {
6692
+ "k": "string"
6693
+ },
6694
+ "optional": false
6695
+ },
6696
+ {
6697
+ "name": "sampleUrls",
6698
+ "schema": {
6699
+ "k": "array",
6700
+ "of": {
6701
+ "k": "string"
6702
+ }
6703
+ },
6704
+ "optional": false
6705
+ },
6706
+ {
6707
+ "name": "description",
6708
+ "schema": {
6709
+ "k": "string"
6710
+ },
6711
+ "optional": true
6712
+ }
6713
+ ]
6714
+ },
6715
+ "optional": false
6716
+ }
6717
+ ]
6718
+ }
6719
+ },
5853
6720
  "providers.embroker": {
5854
6721
  "defs": {},
5855
6722
  "functions": {
@@ -7019,6 +7886,25 @@ export const VALIDATORS: ValidatorTable = {
7019
7886
  "optional": true
7020
7887
  }
7021
7888
  ]
7889
+ },
7890
+ "GithubListReleasesOptions": {
7891
+ "k": "object",
7892
+ "props": [
7893
+ {
7894
+ "name": "per_page",
7895
+ "schema": {
7896
+ "k": "number"
7897
+ },
7898
+ "optional": true
7899
+ },
7900
+ {
7901
+ "name": "page",
7902
+ "schema": {
7903
+ "k": "number"
7904
+ },
7905
+ "optional": true
7906
+ }
7907
+ ]
7022
7908
  }
7023
7909
  },
7024
7910
  "functions": {
@@ -7045,6 +7931,30 @@ export const VALIDATORS: ValidatorTable = {
7045
7931
  },
7046
7932
  "optional": true
7047
7933
  }
7934
+ ],
7935
+ "listReleases": [
7936
+ {
7937
+ "name": "owner",
7938
+ "schema": {
7939
+ "k": "string"
7940
+ },
7941
+ "optional": false
7942
+ },
7943
+ {
7944
+ "name": "repo",
7945
+ "schema": {
7946
+ "k": "string"
7947
+ },
7948
+ "optional": false
7949
+ },
7950
+ {
7951
+ "name": "options",
7952
+ "schema": {
7953
+ "k": "ref",
7954
+ "name": "GithubListReleasesOptions"
7955
+ },
7956
+ "optional": true
7957
+ }
7048
7958
  ]
7049
7959
  }
7050
7960
  },
@@ -8193,7 +9103,27 @@ export const VALIDATORS: ValidatorTable = {
8193
9103
  }
8194
9104
  },
8195
9105
  "providers.ibuypower": {
8196
- "defs": {},
9106
+ "defs": {
9107
+ "IbuypowerRecommendArgs": {
9108
+ "k": "object",
9109
+ "props": [
9110
+ {
9111
+ "name": "budget_max",
9112
+ "schema": {
9113
+ "k": "number"
9114
+ },
9115
+ "optional": false
9116
+ },
9117
+ {
9118
+ "name": "use_case",
9119
+ "schema": {
9120
+ "k": "string"
9121
+ },
9122
+ "optional": true
9123
+ }
9124
+ ]
9125
+ }
9126
+ },
8197
9127
  "functions": {
8198
9128
  "listSystems": [],
8199
9129
  "listPrebuilts": [],
@@ -8222,6 +9152,16 @@ export const VALIDATORS: ValidatorTable = {
8222
9152
  },
8223
9153
  "optional": false
8224
9154
  }
9155
+ ],
9156
+ "recommendGamingPc": [
9157
+ {
9158
+ "name": "args",
9159
+ "schema": {
9160
+ "k": "ref",
9161
+ "name": "IbuypowerRecommendArgs"
9162
+ },
9163
+ "optional": false
9164
+ }
8225
9165
  ]
8226
9166
  }
8227
9167
  },
@@ -9462,6 +10402,13 @@ export const VALIDATORS: ValidatorTable = {
9462
10402
  ]
9463
10403
  }
9464
10404
  },
10405
+ "providers.istanbulkart": {
10406
+ "defs": {},
10407
+ "functions": {
10408
+ "getCardFees": [],
10409
+ "getTouristPassFares": []
10410
+ }
10411
+ },
9465
10412
  "providers.ivoryhomes": {
9466
10413
  "defs": {
9467
10414
  "IvoryHomesSearchFilters": {
@@ -10204,6 +11151,32 @@ export const VALIDATORS: ValidatorTable = {
10204
11151
  },
10205
11152
  "optional": false
10206
11153
  }
11154
+ ],
11155
+ "searchPlaygroundSpareParts": [
11156
+ {
11157
+ "name": "args",
11158
+ "schema": {
11159
+ "k": "object",
11160
+ "props": [
11161
+ {
11162
+ "name": "product_no",
11163
+ "schema": {
11164
+ "k": "string"
11165
+ },
11166
+ "optional": false
11167
+ },
11168
+ {
11169
+ "name": "region",
11170
+ "schema": {
11171
+ "k": "ref",
11172
+ "name": "KompanRegion"
11173
+ },
11174
+ "optional": true
11175
+ }
11176
+ ]
11177
+ },
11178
+ "optional": false
11179
+ }
10207
11180
  ]
10208
11181
  }
10209
11182
  },
@@ -10619,6 +11592,36 @@ export const VALIDATORS: ValidatorTable = {
10619
11592
  ]
10620
11593
  }
10621
11594
  },
11595
+ "providers.liquidspace": {
11596
+ "defs": {},
11597
+ "functions": {
11598
+ "search": [
11599
+ {
11600
+ "name": "input",
11601
+ "schema": {
11602
+ "k": "object",
11603
+ "props": [
11604
+ {
11605
+ "name": "city",
11606
+ "schema": {
11607
+ "k": "string"
11608
+ },
11609
+ "optional": false
11610
+ },
11611
+ {
11612
+ "name": "state",
11613
+ "schema": {
11614
+ "k": "string"
11615
+ },
11616
+ "optional": false
11617
+ }
11618
+ ]
11619
+ },
11620
+ "optional": false
11621
+ }
11622
+ ]
11623
+ }
11624
+ },
10622
11625
  "providers.littlewordsproject": {
10623
11626
  "defs": {},
10624
11627
  "functions": {
@@ -10997,6 +12000,20 @@ export const VALIDATORS: ValidatorTable = {
10997
12000
  "getPlanPricing": null
10998
12001
  }
10999
12002
  },
12003
+ "providers.marketplace_visualstudio": {
12004
+ "defs": {},
12005
+ "functions": {
12006
+ "getExtensionStats": [
12007
+ {
12008
+ "name": "extensionId",
12009
+ "schema": {
12010
+ "k": "string"
12011
+ },
12012
+ "optional": false
12013
+ }
12014
+ ]
12015
+ }
12016
+ },
11000
12017
  "providers.marriott": {
11001
12018
  "defs": {},
11002
12019
  "functions": {
@@ -11035,6 +12052,27 @@ export const VALIDATORS: ValidatorTable = {
11035
12052
  "findStores": null
11036
12053
  }
11037
12054
  },
12055
+ "providers.mcp_registry": {
12056
+ "defs": {},
12057
+ "functions": {
12058
+ "search": [
12059
+ {
12060
+ "name": "query",
12061
+ "schema": {
12062
+ "k": "string"
12063
+ },
12064
+ "optional": true
12065
+ },
12066
+ {
12067
+ "name": "limit",
12068
+ "schema": {
12069
+ "k": "number"
12070
+ },
12071
+ "optional": true
12072
+ }
12073
+ ]
12074
+ }
12075
+ },
11038
12076
  "providers.medicalguardian": {
11039
12077
  "defs": {
11040
12078
  "MedicalguardianActivityLevel": {
@@ -11442,6 +12480,36 @@ export const VALIDATORS: ValidatorTable = {
11442
12480
  ]
11443
12481
  }
11444
12482
  },
12483
+ "providers.mergify": {
12484
+ "defs": {},
12485
+ "functions": {
12486
+ "queueStatus": [
12487
+ {
12488
+ "name": "args",
12489
+ "schema": {
12490
+ "k": "object",
12491
+ "props": [
12492
+ {
12493
+ "name": "owner",
12494
+ "schema": {
12495
+ "k": "string"
12496
+ },
12497
+ "optional": false
12498
+ },
12499
+ {
12500
+ "name": "repo",
12501
+ "schema": {
12502
+ "k": "string"
12503
+ },
12504
+ "optional": false
12505
+ }
12506
+ ]
12507
+ },
12508
+ "optional": false
12509
+ }
12510
+ ]
12511
+ }
12512
+ },
11445
12513
  "providers.microcenter": {
11446
12514
  "defs": {},
11447
12515
  "functions": {
@@ -11483,6 +12551,20 @@ export const VALIDATORS: ValidatorTable = {
11483
12551
  ]
11484
12552
  }
11485
12553
  },
12554
+ "providers.minimax": {
12555
+ "defs": {},
12556
+ "functions": {
12557
+ "getDocs": [
12558
+ {
12559
+ "name": "topic",
12560
+ "schema": {
12561
+ "k": "string"
12562
+ },
12563
+ "optional": false
12564
+ }
12565
+ ]
12566
+ }
12567
+ },
11486
12568
  "providers.minted": {
11487
12569
  "defs": {
11488
12570
  "MintedCardSelections": {
@@ -12045,6 +13127,45 @@ export const VALIDATORS: ValidatorTable = {
12045
13127
  },
12046
13128
  "optional": true
12047
13129
  }
13130
+ ],
13131
+ "searchProducts": [
13132
+ {
13133
+ "name": "opts",
13134
+ "schema": {
13135
+ "k": "object",
13136
+ "props": [
13137
+ {
13138
+ "name": "productType",
13139
+ "schema": {
13140
+ "k": "string"
13141
+ },
13142
+ "optional": true
13143
+ },
13144
+ {
13145
+ "name": "limit",
13146
+ "schema": {
13147
+ "k": "number"
13148
+ },
13149
+ "optional": true
13150
+ }
13151
+ ]
13152
+ },
13153
+ "optional": true
13154
+ }
13155
+ ]
13156
+ }
13157
+ },
13158
+ "providers.muze_gov_tr": {
13159
+ "defs": {},
13160
+ "functions": {
13161
+ "getVisitingHours": [
13162
+ {
13163
+ "name": "query",
13164
+ "schema": {
13165
+ "k": "string"
13166
+ },
13167
+ "optional": false
13168
+ }
12048
13169
  ]
12049
13170
  }
12050
13171
  },
@@ -12312,6 +13433,46 @@ export const VALIDATORS: ValidatorTable = {
12312
13433
  }
12313
13434
  ]
12314
13435
  },
13436
+ "NvisioncentersEstimateSavingsInput": {
13437
+ "k": "object",
13438
+ "props": [
13439
+ {
13440
+ "name": "age",
13441
+ "schema": {
13442
+ "k": "number"
13443
+ },
13444
+ "optional": false
13445
+ },
13446
+ {
13447
+ "name": "glasses",
13448
+ "schema": {
13449
+ "k": "number"
13450
+ },
13451
+ "optional": false
13452
+ },
13453
+ {
13454
+ "name": "glasses_cost",
13455
+ "schema": {
13456
+ "k": "number"
13457
+ },
13458
+ "optional": false
13459
+ },
13460
+ {
13461
+ "name": "contacts",
13462
+ "schema": {
13463
+ "k": "number"
13464
+ },
13465
+ "optional": false
13466
+ },
13467
+ {
13468
+ "name": "contacts_cost",
13469
+ "schema": {
13470
+ "k": "number"
13471
+ },
13472
+ "optional": false
13473
+ }
13474
+ ]
13475
+ },
12315
13476
  "NvisioncentersSavingsInput": {
12316
13477
  "k": "object",
12317
13478
  "props": [
@@ -12373,6 +13534,16 @@ export const VALIDATORS: ValidatorTable = {
12373
13534
  },
12374
13535
  "optional": false
12375
13536
  }
13537
+ ],
13538
+ "estimateLasikSavings": [
13539
+ {
13540
+ "name": "input",
13541
+ "schema": {
13542
+ "k": "ref",
13543
+ "name": "NvisioncentersEstimateSavingsInput"
13544
+ },
13545
+ "optional": false
13546
+ }
12376
13547
  ]
12377
13548
  }
12378
13549
  },
@@ -13226,6 +14397,13 @@ export const VALIDATORS: ValidatorTable = {
13226
14397
  ]
13227
14398
  }
13228
14399
  },
14400
+ "providers.poshmark": {
14401
+ "defs": {},
14402
+ "functions": {
14403
+ "getBulkUploadTemplateGuide": [],
14404
+ "getZipFileGuide": []
14405
+ }
14406
+ },
13229
14407
  "providers.positivegrid": {
13230
14408
  "defs": {
13231
14409
  "positivegridFindRetailersArgs": {
@@ -15974,6 +17152,38 @@ export const VALIDATORS: ValidatorTable = {
15974
17152
  ]
15975
17153
  }
15976
17154
  },
17155
+ "providers.proxmox": {
17156
+ "defs": {},
17157
+ "functions": {
17158
+ "getIsoDownloads": [
17159
+ {
17160
+ "name": "product",
17161
+ "schema": {
17162
+ "k": "union",
17163
+ "of": [
17164
+ {
17165
+ "k": "literal",
17166
+ "v": "proxmox-virtual-environment"
17167
+ },
17168
+ {
17169
+ "k": "literal",
17170
+ "v": "proxmox-backup-server"
17171
+ },
17172
+ {
17173
+ "k": "literal",
17174
+ "v": "proxmox-mail-gateway"
17175
+ },
17176
+ {
17177
+ "k": "literal",
17178
+ "v": "proxmox-datacenter-manager"
17179
+ }
17180
+ ]
17181
+ },
17182
+ "optional": true
17183
+ }
17184
+ ]
17185
+ }
17186
+ },
15977
17187
  "providers.reddit": {
15978
17188
  "defs": {},
15979
17189
  "functions": {
@@ -17452,6 +18662,20 @@ export const VALIDATORS: ValidatorTable = {
17452
18662
  ]
17453
18663
  }
17454
18664
  },
18665
+ "providers.sixflags": {
18666
+ "defs": {},
18667
+ "functions": {
18668
+ "getTickets": [
18669
+ {
18670
+ "name": "park",
18671
+ "schema": {
18672
+ "k": "string"
18673
+ },
18674
+ "optional": false
18675
+ }
18676
+ ]
18677
+ }
18678
+ },
17455
18679
  "providers.smartsign": {
17456
18680
  "defs": {},
17457
18681
  "functions": {
@@ -17524,6 +18748,76 @@ export const VALIDATORS: ValidatorTable = {
17524
18748
  ]
17525
18749
  }
17526
18750
  },
18751
+ "providers.smithery": {
18752
+ "defs": {
18753
+ "SmitherySearchOptions": {
18754
+ "k": "object",
18755
+ "props": [
18756
+ {
18757
+ "name": "page",
18758
+ "schema": {
18759
+ "k": "number"
18760
+ },
18761
+ "optional": true
18762
+ },
18763
+ {
18764
+ "name": "pageSize",
18765
+ "schema": {
18766
+ "k": "number"
18767
+ },
18768
+ "optional": true
18769
+ },
18770
+ {
18771
+ "name": "verified",
18772
+ "schema": {
18773
+ "k": "boolean"
18774
+ },
18775
+ "optional": true
18776
+ },
18777
+ {
18778
+ "name": "remote",
18779
+ "schema": {
18780
+ "k": "boolean"
18781
+ },
18782
+ "optional": true
18783
+ },
18784
+ {
18785
+ "name": "isDeployed",
18786
+ "schema": {
18787
+ "k": "boolean"
18788
+ },
18789
+ "optional": true
18790
+ },
18791
+ {
18792
+ "name": "namespace",
18793
+ "schema": {
18794
+ "k": "string"
18795
+ },
18796
+ "optional": true
18797
+ }
18798
+ ]
18799
+ }
18800
+ },
18801
+ "functions": {
18802
+ "search": [
18803
+ {
18804
+ "name": "query",
18805
+ "schema": {
18806
+ "k": "string"
18807
+ },
18808
+ "optional": false
18809
+ },
18810
+ {
18811
+ "name": "options",
18812
+ "schema": {
18813
+ "k": "ref",
18814
+ "name": "SmitherySearchOptions"
18815
+ },
18816
+ "optional": true
18817
+ }
18818
+ ]
18819
+ }
18820
+ },
17527
18821
  "providers.solostove": {
17528
18822
  "defs": {},
17529
18823
  "functions": {