@bowmark/web 1.2.0 → 1.4.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: 11b1a109d7e69ffbbcccb30182dd5333770aeb23ab75946f15d55d7f7d84a7bf
9
- // 202 checked, 20 unchecked.
8
+ // Manifest version: 6368edcbec9d9ee7ceb3fd590c7054ade0542a93e43a39f4f88dc6167c0e36da
9
+ // 227 checked, 20 unchecked.
10
10
 
11
11
  import type { ValidatorTable } from "../validate.js";
12
12
 
13
13
  export const VALIDATORS: ValidatorTable = {
14
- "version": "11b1a109d7e69ffbbcccb30182dd5333770aeb23ab75946f15d55d7f7d84a7bf",
14
+ "version": "6368edcbec9d9ee7ceb3fd590c7054ade0542a93e43a39f4f88dc6167c0e36da",
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,39 @@ export const VALIDATORS: ValidatorTable = {
1036
1124
  }
1037
1125
  },
1038
1126
  "providers.aa": {
1039
- "defs": {},
1127
+ "defs": {
1128
+ "aaRetrieveBookingArgs": {
1129
+ "k": "object",
1130
+ "props": [
1131
+ {
1132
+ "name": "recordLocator",
1133
+ "schema": {
1134
+ "k": "string"
1135
+ },
1136
+ "optional": false
1137
+ },
1138
+ {
1139
+ "name": "lastName",
1140
+ "schema": {
1141
+ "k": "string"
1142
+ },
1143
+ "optional": false
1144
+ }
1145
+ ]
1146
+ }
1147
+ },
1040
1148
  "functions": {
1041
- "getFlightStatus": null
1149
+ "getFlightStatus": null,
1150
+ "retrieveBooking": [
1151
+ {
1152
+ "name": "arg0",
1153
+ "schema": {
1154
+ "k": "ref",
1155
+ "name": "aaRetrieveBookingArgs"
1156
+ },
1157
+ "optional": false
1158
+ }
1159
+ ]
1042
1160
  }
1043
1161
  },
1044
1162
  "providers.abercrombie": {
@@ -1088,6 +1206,109 @@ export const VALIDATORS: ValidatorTable = {
1088
1206
  }
1089
1207
  ]
1090
1208
  },
1209
+ "abercrombieStockQuery": {
1210
+ "k": "object",
1211
+ "props": [
1212
+ {
1213
+ "name": "url",
1214
+ "schema": {
1215
+ "k": "string"
1216
+ },
1217
+ "optional": true
1218
+ },
1219
+ {
1220
+ "name": "id",
1221
+ "schema": {
1222
+ "k": "string"
1223
+ },
1224
+ "optional": true
1225
+ },
1226
+ {
1227
+ "name": "size",
1228
+ "schema": {
1229
+ "k": "string"
1230
+ },
1231
+ "optional": true
1232
+ },
1233
+ {
1234
+ "name": "sizePrimary",
1235
+ "schema": {
1236
+ "k": "string"
1237
+ },
1238
+ "optional": true
1239
+ },
1240
+ {
1241
+ "name": "sizeSecondary",
1242
+ "schema": {
1243
+ "k": "string"
1244
+ },
1245
+ "optional": true
1246
+ },
1247
+ {
1248
+ "name": "sku",
1249
+ "schema": {
1250
+ "k": "string"
1251
+ },
1252
+ "optional": true
1253
+ },
1254
+ {
1255
+ "name": "zip",
1256
+ "schema": {
1257
+ "k": "string"
1258
+ },
1259
+ "optional": true
1260
+ },
1261
+ {
1262
+ "name": "city",
1263
+ "schema": {
1264
+ "k": "string"
1265
+ },
1266
+ "optional": true
1267
+ },
1268
+ {
1269
+ "name": "state",
1270
+ "schema": {
1271
+ "k": "string"
1272
+ },
1273
+ "optional": true
1274
+ },
1275
+ {
1276
+ "name": "radiusMiles",
1277
+ "schema": {
1278
+ "k": "number"
1279
+ },
1280
+ "optional": true
1281
+ },
1282
+ {
1283
+ "name": "maxStores",
1284
+ "schema": {
1285
+ "k": "number"
1286
+ },
1287
+ "optional": true
1288
+ },
1289
+ {
1290
+ "name": "brand",
1291
+ "schema": {
1292
+ "k": "union",
1293
+ "of": [
1294
+ {
1295
+ "k": "literal",
1296
+ "v": "adult"
1297
+ },
1298
+ {
1299
+ "k": "literal",
1300
+ "v": "kids"
1301
+ },
1302
+ {
1303
+ "k": "literal",
1304
+ "v": "both"
1305
+ }
1306
+ ]
1307
+ },
1308
+ "optional": true
1309
+ }
1310
+ ]
1311
+ },
1091
1312
  "abercrombieStoreQuery": {
1092
1313
  "k": "object",
1093
1314
  "props": [
@@ -1171,6 +1392,16 @@ export const VALIDATORS: ValidatorTable = {
1171
1392
  "optional": false
1172
1393
  }
1173
1394
  ],
1395
+ "checkStock": [
1396
+ {
1397
+ "name": "query",
1398
+ "schema": {
1399
+ "k": "ref",
1400
+ "name": "abercrombieStockQuery"
1401
+ },
1402
+ "optional": false
1403
+ }
1404
+ ],
1174
1405
  "search": [
1175
1406
  {
1176
1407
  "name": "query",
@@ -1671,6 +1902,29 @@ export const VALIDATORS: ValidatorTable = {
1671
1902
  ]
1672
1903
  }
1673
1904
  },
1905
+ "providers.cancer": {
1906
+ "defs": {},
1907
+ "functions": {
1908
+ "findCancerCenters": [
1909
+ {
1910
+ "name": "args",
1911
+ "schema": {
1912
+ "k": "object",
1913
+ "props": [
1914
+ {
1915
+ "name": "state",
1916
+ "schema": {
1917
+ "k": "string"
1918
+ },
1919
+ "optional": true
1920
+ }
1921
+ ]
1922
+ },
1923
+ "optional": true
1924
+ }
1925
+ ]
1926
+ }
1927
+ },
1674
1928
  "providers.cars": {
1675
1929
  "defs": {},
1676
1930
  "functions": {
@@ -1877,6 +2131,46 @@ export const VALIDATORS: ValidatorTable = {
1877
2131
  }
1878
2132
  ]
1879
2133
  },
2134
+ "KayakHotelQuery": {
2135
+ "k": "object",
2136
+ "props": [
2137
+ {
2138
+ "name": "location",
2139
+ "schema": {
2140
+ "k": "string"
2141
+ },
2142
+ "optional": false
2143
+ },
2144
+ {
2145
+ "name": "checkIn",
2146
+ "schema": {
2147
+ "k": "string"
2148
+ },
2149
+ "optional": false
2150
+ },
2151
+ {
2152
+ "name": "checkOut",
2153
+ "schema": {
2154
+ "k": "string"
2155
+ },
2156
+ "optional": false
2157
+ },
2158
+ {
2159
+ "name": "adults",
2160
+ "schema": {
2161
+ "k": "number"
2162
+ },
2163
+ "optional": true
2164
+ },
2165
+ {
2166
+ "name": "rooms",
2167
+ "schema": {
2168
+ "k": "number"
2169
+ },
2170
+ "optional": true
2171
+ }
2172
+ ]
2173
+ },
1880
2174
  "KayakQuery": {
1881
2175
  "k": "object",
1882
2176
  "props": [
@@ -1978,6 +2272,16 @@ export const VALIDATORS: ValidatorTable = {
1978
2272
  "optional": false
1979
2273
  }
1980
2274
  ],
2275
+ "searchHotels": [
2276
+ {
2277
+ "name": "query",
2278
+ "schema": {
2279
+ "k": "ref",
2280
+ "name": "KayakHotelQuery"
2281
+ },
2282
+ "optional": false
2283
+ }
2284
+ ],
1981
2285
  "searchCars": [
1982
2286
  {
1983
2287
  "name": "query",
@@ -2100,6 +2404,23 @@ export const VALIDATORS: ValidatorTable = {
2100
2404
  }
2101
2405
  },
2102
2406
  "functions": {
2407
+ "getStudio": [
2408
+ {
2409
+ "name": "studio",
2410
+ "schema": {
2411
+ "k": "union",
2412
+ "of": [
2413
+ {
2414
+ "k": "number"
2415
+ },
2416
+ {
2417
+ "k": "string"
2418
+ }
2419
+ ]
2420
+ },
2421
+ "optional": false
2422
+ }
2423
+ ],
2103
2424
  "getSchedule": [
2104
2425
  {
2105
2426
  "name": "studio",
@@ -2143,6 +2464,83 @@ export const VALIDATORS: ValidatorTable = {
2143
2464
  ]
2144
2465
  }
2145
2466
  },
2467
+ "providers.decked": {
2468
+ "defs": {
2469
+ "DeckedCabSideOption": {
2470
+ "k": "union",
2471
+ "of": [
2472
+ {
2473
+ "k": "literal",
2474
+ "v": "Cab-side Gap"
2475
+ },
2476
+ {
2477
+ "k": "literal",
2478
+ "v": "Load Floor"
2479
+ }
2480
+ ]
2481
+ }
2482
+ },
2483
+ "functions": {
2484
+ "searchFits": [
2485
+ {
2486
+ "name": "query",
2487
+ "schema": {
2488
+ "k": "string"
2489
+ },
2490
+ "optional": true
2491
+ }
2492
+ ],
2493
+ "getVehicleClass": [
2494
+ {
2495
+ "name": "vehicleClass",
2496
+ "schema": {
2497
+ "k": "string"
2498
+ },
2499
+ "optional": false
2500
+ }
2501
+ ],
2502
+ "resolveFitment": [
2503
+ {
2504
+ "name": "vehicleQuery",
2505
+ "schema": {
2506
+ "k": "string"
2507
+ },
2508
+ "optional": false
2509
+ },
2510
+ {
2511
+ "name": "bedLength",
2512
+ "schema": {
2513
+ "k": "string"
2514
+ },
2515
+ "optional": true
2516
+ }
2517
+ ],
2518
+ "priceCabSideOption": [
2519
+ {
2520
+ "name": "vehicleQuery",
2521
+ "schema": {
2522
+ "k": "string"
2523
+ },
2524
+ "optional": false
2525
+ },
2526
+ {
2527
+ "name": "bedLength",
2528
+ "schema": {
2529
+ "k": "string"
2530
+ },
2531
+ "optional": false
2532
+ },
2533
+ {
2534
+ "name": "option",
2535
+ "schema": {
2536
+ "k": "ref",
2537
+ "name": "DeckedCabSideOption"
2538
+ },
2539
+ "optional": false
2540
+ }
2541
+ ]
2542
+ }
2543
+ },
2146
2544
  "providers.dickssportinggoods": {
2147
2545
  "defs": {},
2148
2546
  "functions": {
@@ -2184,6 +2582,18 @@ export const VALIDATORS: ValidatorTable = {
2184
2582
  }
2185
2583
  ]
2186
2584
  },
2585
+ "dillardsGetProductQuery": {
2586
+ "k": "object",
2587
+ "props": [
2588
+ {
2589
+ "name": "url",
2590
+ "schema": {
2591
+ "k": "string"
2592
+ },
2593
+ "optional": false
2594
+ }
2595
+ ]
2596
+ },
2187
2597
  "dillardsRegistrySearchQuery": {
2188
2598
  "k": "object",
2189
2599
  "props": [
@@ -2258,6 +2668,16 @@ export const VALIDATORS: ValidatorTable = {
2258
2668
  "optional": false
2259
2669
  }
2260
2670
  ],
2671
+ "getProduct": [
2672
+ {
2673
+ "name": "query",
2674
+ "schema": {
2675
+ "k": "ref",
2676
+ "name": "dillardsGetProductQuery"
2677
+ },
2678
+ "optional": false
2679
+ }
2680
+ ],
2261
2681
  "searchRegistry": [
2262
2682
  {
2263
2683
  "name": "query",
@@ -4901,6 +5321,20 @@ export const VALIDATORS: ValidatorTable = {
4901
5321
  ]
4902
5322
  }
4903
5323
  },
5324
+ "providers.lonelyplanet": {
5325
+ "defs": {},
5326
+ "functions": {
5327
+ "search": [
5328
+ {
5329
+ "name": "query",
5330
+ "schema": {
5331
+ "k": "string"
5332
+ },
5333
+ "optional": false
5334
+ }
5335
+ ]
5336
+ }
5337
+ },
4904
5338
  "providers.lufthansa": {
4905
5339
  "defs": {},
4906
5340
  "functions": {
@@ -4947,17 +5381,120 @@ export const VALIDATORS: ValidatorTable = {
4947
5381
  "schema": {
4948
5382
  "k": "string"
4949
5383
  },
4950
- "optional": true
5384
+ "optional": true
5385
+ }
5386
+ ]
5387
+ }
5388
+ },
5389
+ "providers.lululemon": {
5390
+ "defs": {},
5391
+ "functions": {
5392
+ "search": [
5393
+ {
5394
+ "name": "query",
5395
+ "schema": {
5396
+ "k": "object",
5397
+ "props": [
5398
+ {
5399
+ "name": "query",
5400
+ "schema": {
5401
+ "k": "string"
5402
+ },
5403
+ "optional": false
5404
+ },
5405
+ {
5406
+ "name": "limit",
5407
+ "schema": {
5408
+ "k": "number"
5409
+ },
5410
+ "optional": true
5411
+ }
5412
+ ]
5413
+ },
5414
+ "optional": false
5415
+ }
5416
+ ],
5417
+ "getProduct": [
5418
+ {
5419
+ "name": "query",
5420
+ "schema": {
5421
+ "k": "object",
5422
+ "props": [
5423
+ {
5424
+ "name": "productId",
5425
+ "schema": {
5426
+ "k": "string"
5427
+ },
5428
+ "optional": false
5429
+ }
5430
+ ]
5431
+ },
5432
+ "optional": false
5433
+ }
5434
+ ],
5435
+ "getSimilarProducts": [
5436
+ {
5437
+ "name": "query",
5438
+ "schema": {
5439
+ "k": "object",
5440
+ "props": [
5441
+ {
5442
+ "name": "productId",
5443
+ "schema": {
5444
+ "k": "string"
5445
+ },
5446
+ "optional": false
5447
+ },
5448
+ {
5449
+ "name": "limit",
5450
+ "schema": {
5451
+ "k": "number"
5452
+ },
5453
+ "optional": true
5454
+ }
5455
+ ]
5456
+ },
5457
+ "optional": false
5458
+ }
5459
+ ]
5460
+ }
5461
+ },
5462
+ "providers.mailchimp": {
5463
+ "defs": {},
5464
+ "functions": {
5465
+ "getPlanPricing": null
5466
+ }
5467
+ },
5468
+ "providers.marriott": {
5469
+ "defs": {},
5470
+ "functions": {
5471
+ "findHotels": [
5472
+ {
5473
+ "name": "args",
5474
+ "schema": {
5475
+ "k": "object",
5476
+ "props": [
5477
+ {
5478
+ "name": "place",
5479
+ "schema": {
5480
+ "k": "string"
5481
+ },
5482
+ "optional": false
5483
+ },
5484
+ {
5485
+ "name": "query",
5486
+ "schema": {
5487
+ "k": "string"
5488
+ },
5489
+ "optional": true
5490
+ }
5491
+ ]
5492
+ },
5493
+ "optional": false
4951
5494
  }
4952
5495
  ]
4953
5496
  }
4954
5497
  },
4955
- "providers.mailchimp": {
4956
- "defs": {},
4957
- "functions": {
4958
- "getPlanPricing": null
4959
- }
4960
- },
4961
5498
  "providers.mcdonalds": {
4962
5499
  "defs": {},
4963
5500
  "functions": {
@@ -5036,6 +5573,72 @@ export const VALIDATORS: ValidatorTable = {
5036
5573
  }
5037
5574
  ]
5038
5575
  },
5576
+ "medicareHospitalQuery": {
5577
+ "k": "object",
5578
+ "props": [
5579
+ {
5580
+ "name": "zip",
5581
+ "schema": {
5582
+ "k": "string"
5583
+ },
5584
+ "optional": true
5585
+ },
5586
+ {
5587
+ "name": "latitude",
5588
+ "schema": {
5589
+ "k": "number"
5590
+ },
5591
+ "optional": true
5592
+ },
5593
+ {
5594
+ "name": "longitude",
5595
+ "schema": {
5596
+ "k": "number"
5597
+ },
5598
+ "optional": true
5599
+ },
5600
+ {
5601
+ "name": "radiusMiles",
5602
+ "schema": {
5603
+ "k": "number"
5604
+ },
5605
+ "optional": true
5606
+ },
5607
+ {
5608
+ "name": "limit",
5609
+ "schema": {
5610
+ "k": "number"
5611
+ },
5612
+ "optional": true
5613
+ }
5614
+ ]
5615
+ },
5616
+ "medicareMedigapQuery": {
5617
+ "k": "object",
5618
+ "props": [
5619
+ {
5620
+ "name": "zip",
5621
+ "schema": {
5622
+ "k": "string"
5623
+ },
5624
+ "optional": false
5625
+ },
5626
+ {
5627
+ "name": "planType",
5628
+ "schema": {
5629
+ "k": "string"
5630
+ },
5631
+ "optional": true
5632
+ },
5633
+ {
5634
+ "name": "county",
5635
+ "schema": {
5636
+ "k": "string"
5637
+ },
5638
+ "optional": true
5639
+ }
5640
+ ]
5641
+ },
5039
5642
  "medicareNursingHomeQuery": {
5040
5643
  "k": "object",
5041
5644
  "props": [
@@ -5099,6 +5702,26 @@ export const VALIDATORS: ValidatorTable = {
5099
5702
  },
5100
5703
  "optional": false
5101
5704
  }
5705
+ ],
5706
+ "searchMedigapPlans": [
5707
+ {
5708
+ "name": "arg0",
5709
+ "schema": {
5710
+ "k": "ref",
5711
+ "name": "medicareMedigapQuery"
5712
+ },
5713
+ "optional": false
5714
+ }
5715
+ ],
5716
+ "findHospitals": [
5717
+ {
5718
+ "name": "query",
5719
+ "schema": {
5720
+ "k": "ref",
5721
+ "name": "medicareHospitalQuery"
5722
+ },
5723
+ "optional": false
5724
+ }
5102
5725
  ]
5103
5726
  }
5104
5727
  },
@@ -5833,7 +6456,27 @@ export const VALIDATORS: ValidatorTable = {
5833
6456
  }
5834
6457
  },
5835
6458
  "providers.otto": {
5836
- "defs": {},
6459
+ "defs": {
6460
+ "ottoSearchQuery": {
6461
+ "k": "object",
6462
+ "props": [
6463
+ {
6464
+ "name": "query",
6465
+ "schema": {
6466
+ "k": "string"
6467
+ },
6468
+ "optional": false
6469
+ },
6470
+ {
6471
+ "name": "limit",
6472
+ "schema": {
6473
+ "k": "number"
6474
+ },
6475
+ "optional": true
6476
+ }
6477
+ ]
6478
+ }
6479
+ },
5837
6480
  "functions": {
5838
6481
  "getProduct": [
5839
6482
  {
@@ -5843,6 +6486,16 @@ export const VALIDATORS: ValidatorTable = {
5843
6486
  },
5844
6487
  "optional": false
5845
6488
  }
6489
+ ],
6490
+ "search": [
6491
+ {
6492
+ "name": "query",
6493
+ "schema": {
6494
+ "k": "ref",
6495
+ "name": "ottoSearchQuery"
6496
+ },
6497
+ "optional": false
6498
+ }
5846
6499
  ]
5847
6500
  }
5848
6501
  },
@@ -6199,6 +6852,38 @@ export const VALIDATORS: ValidatorTable = {
6199
6852
  },
6200
6853
  "optional": false
6201
6854
  }
6855
+ ],
6856
+ "getMenuItem": [
6857
+ {
6858
+ "name": "args",
6859
+ "schema": {
6860
+ "k": "object",
6861
+ "props": [
6862
+ {
6863
+ "name": "storeNumber",
6864
+ "schema": {
6865
+ "k": "string"
6866
+ },
6867
+ "optional": false
6868
+ },
6869
+ {
6870
+ "name": "item",
6871
+ "schema": {
6872
+ "k": "string"
6873
+ },
6874
+ "optional": false
6875
+ },
6876
+ {
6877
+ "name": "category",
6878
+ "schema": {
6879
+ "k": "string"
6880
+ },
6881
+ "optional": true
6882
+ }
6883
+ ]
6884
+ },
6885
+ "optional": false
6886
+ }
6202
6887
  ]
6203
6888
  }
6204
6889
  },
@@ -9014,6 +9699,73 @@ export const VALIDATORS: ValidatorTable = {
9014
9699
  "getMembershipPlans": []
9015
9700
  }
9016
9701
  },
9702
+ "providers.sears": {
9703
+ "defs": {
9704
+ "SearsSearchQuery": {
9705
+ "k": "object",
9706
+ "props": [
9707
+ {
9708
+ "name": "query",
9709
+ "schema": {
9710
+ "k": "string"
9711
+ },
9712
+ "optional": false
9713
+ },
9714
+ {
9715
+ "name": "zipCode",
9716
+ "schema": {
9717
+ "k": "string"
9718
+ },
9719
+ "optional": true
9720
+ },
9721
+ {
9722
+ "name": "limit",
9723
+ "schema": {
9724
+ "k": "number"
9725
+ },
9726
+ "optional": true
9727
+ }
9728
+ ]
9729
+ }
9730
+ },
9731
+ "functions": {
9732
+ "search": [
9733
+ {
9734
+ "name": "query",
9735
+ "schema": {
9736
+ "k": "ref",
9737
+ "name": "SearsSearchQuery"
9738
+ },
9739
+ "optional": false
9740
+ }
9741
+ ],
9742
+ "getProduct": [
9743
+ {
9744
+ "name": "idOrUrl",
9745
+ "schema": {
9746
+ "k": "string"
9747
+ },
9748
+ "optional": false
9749
+ },
9750
+ {
9751
+ "name": "opts",
9752
+ "schema": {
9753
+ "k": "object",
9754
+ "props": [
9755
+ {
9756
+ "name": "zipCode",
9757
+ "schema": {
9758
+ "k": "string"
9759
+ },
9760
+ "optional": true
9761
+ }
9762
+ ]
9763
+ },
9764
+ "optional": true
9765
+ }
9766
+ ]
9767
+ }
9768
+ },
9017
9769
  "providers.selectblinds": {
9018
9770
  "defs": {},
9019
9771
  "functions": {
@@ -10393,6 +11145,31 @@ export const VALIDATORS: ValidatorTable = {
10393
11145
  "providers.walmart": {
10394
11146
  "defs": {},
10395
11147
  "functions": {
11148
+ "search": [
11149
+ {
11150
+ "name": "args",
11151
+ "schema": {
11152
+ "k": "object",
11153
+ "props": [
11154
+ {
11155
+ "name": "query",
11156
+ "schema": {
11157
+ "k": "string"
11158
+ },
11159
+ "optional": false
11160
+ },
11161
+ {
11162
+ "name": "limit",
11163
+ "schema": {
11164
+ "k": "number"
11165
+ },
11166
+ "optional": true
11167
+ }
11168
+ ]
11169
+ },
11170
+ "optional": false
11171
+ }
11172
+ ],
10396
11173
  "findStores": [
10397
11174
  {
10398
11175
  "name": "args",
@@ -10433,6 +11210,24 @@ export const VALIDATORS: ValidatorTable = {
10433
11210
  },
10434
11211
  "optional": false
10435
11212
  }
11213
+ ],
11214
+ "getJob": [
11215
+ {
11216
+ "name": "args",
11217
+ "schema": {
11218
+ "k": "object",
11219
+ "props": [
11220
+ {
11221
+ "name": "url",
11222
+ "schema": {
11223
+ "k": "string"
11224
+ },
11225
+ "optional": false
11226
+ }
11227
+ ]
11228
+ },
11229
+ "optional": false
11230
+ }
10436
11231
  ]
10437
11232
  }
10438
11233
  }