@bowmark/web 1.14.0 → 1.16.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,10 +5,10 @@
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: faf4c09938555367990a9c8f7a153fdf8acc74126cd25dc3d424ccd9eb0d1077
9
- // 805 checked, 20 unchecked.
8
+ // Manifest version: a1e3e6de6a511c3fcbec88c14d4c7a9805aef78095475d828edf1aeaa922747f
9
+ // 839 checked, 20 unchecked.
10
10
  export const VALIDATORS = {
11
- "version": "faf4c09938555367990a9c8f7a153fdf8acc74126cd25dc3d424ccd9eb0d1077",
11
+ "version": "a1e3e6de6a511c3fcbec88c14d4c7a9805aef78095475d828edf1aeaa922747f",
12
12
  "units": {
13
13
  "bundles": {
14
14
  "defs": {},
@@ -1699,6 +1699,64 @@ export const VALIDATORS = {
1699
1699
  ]
1700
1700
  }
1701
1701
  },
1702
+ "pet_boarding": {
1703
+ "defs": {
1704
+ "CallOptions": {
1705
+ "k": "object",
1706
+ "props": [
1707
+ {
1708
+ "name": "timeoutMs",
1709
+ "schema": {
1710
+ "k": "number"
1711
+ },
1712
+ "optional": true
1713
+ }
1714
+ ]
1715
+ }
1716
+ },
1717
+ "functions": {
1718
+ "search": [
1719
+ {
1720
+ "name": "args",
1721
+ "schema": {
1722
+ "k": "object",
1723
+ "props": [
1724
+ {
1725
+ "name": "location",
1726
+ "schema": {
1727
+ "k": "string"
1728
+ },
1729
+ "optional": false
1730
+ },
1731
+ {
1732
+ "name": "startDate",
1733
+ "schema": {
1734
+ "k": "string"
1735
+ },
1736
+ "optional": false
1737
+ },
1738
+ {
1739
+ "name": "endDate",
1740
+ "schema": {
1741
+ "k": "string"
1742
+ },
1743
+ "optional": false
1744
+ }
1745
+ ]
1746
+ },
1747
+ "optional": false
1748
+ },
1749
+ {
1750
+ "name": "options",
1751
+ "schema": {
1752
+ "k": "ref",
1753
+ "name": "CallOptions"
1754
+ },
1755
+ "optional": true
1756
+ }
1757
+ ]
1758
+ }
1759
+ },
1702
1760
  "phone_price": {
1703
1761
  "defs": {},
1704
1762
  "functions": {
@@ -2682,6 +2740,66 @@ export const VALIDATORS = {
2682
2740
  ]
2683
2741
  }
2684
2742
  },
2743
+ "providers.a1storage": {
2744
+ "defs": {
2745
+ "a1storageFacilitySearchFilters": {
2746
+ "k": "object",
2747
+ "props": [
2748
+ {
2749
+ "name": "state",
2750
+ "schema": {
2751
+ "k": "string"
2752
+ },
2753
+ "optional": true
2754
+ },
2755
+ {
2756
+ "name": "city",
2757
+ "schema": {
2758
+ "k": "string"
2759
+ },
2760
+ "optional": true
2761
+ }
2762
+ ]
2763
+ }
2764
+ },
2765
+ "functions": {
2766
+ "listFacilities": [
2767
+ {
2768
+ "name": "filters",
2769
+ "schema": {
2770
+ "k": "ref",
2771
+ "name": "a1storageFacilitySearchFilters"
2772
+ },
2773
+ "optional": true
2774
+ }
2775
+ ],
2776
+ "getFacilityUnits": [
2777
+ {
2778
+ "name": "facilityId",
2779
+ "schema": {
2780
+ "k": "string"
2781
+ },
2782
+ "optional": false
2783
+ }
2784
+ ],
2785
+ "getMoveInCost": [
2786
+ {
2787
+ "name": "facilityId",
2788
+ "schema": {
2789
+ "k": "string"
2790
+ },
2791
+ "optional": false
2792
+ },
2793
+ {
2794
+ "name": "unitId",
2795
+ "schema": {
2796
+ "k": "string"
2797
+ },
2798
+ "optional": false
2799
+ }
2800
+ ]
2801
+ }
2802
+ },
2685
2803
  "providers.aa": {
2686
2804
  "defs": {
2687
2805
  "aaBaggageAllowanceArgs": {
@@ -3041,6 +3159,80 @@ export const VALIDATORS = {
3041
3159
  ]
3042
3160
  }
3043
3161
  },
3162
+ "providers.acerentacar": {
3163
+ "defs": {
3164
+ "AcerentacarSearchArgs": {
3165
+ "k": "object",
3166
+ "props": [
3167
+ {
3168
+ "name": "pickupLocationCode",
3169
+ "schema": {
3170
+ "k": "string"
3171
+ },
3172
+ "optional": false
3173
+ },
3174
+ {
3175
+ "name": "pickupDate",
3176
+ "schema": {
3177
+ "k": "string"
3178
+ },
3179
+ "optional": false
3180
+ },
3181
+ {
3182
+ "name": "dropoffDate",
3183
+ "schema": {
3184
+ "k": "string"
3185
+ },
3186
+ "optional": false
3187
+ },
3188
+ {
3189
+ "name": "pickupTime",
3190
+ "schema": {
3191
+ "k": "string"
3192
+ },
3193
+ "optional": true
3194
+ },
3195
+ {
3196
+ "name": "dropoffTime",
3197
+ "schema": {
3198
+ "k": "string"
3199
+ },
3200
+ "optional": true
3201
+ }
3202
+ ]
3203
+ }
3204
+ },
3205
+ "functions": {
3206
+ "searchAvailability": [
3207
+ {
3208
+ "name": "args",
3209
+ "schema": {
3210
+ "k": "ref",
3211
+ "name": "AcerentacarSearchArgs"
3212
+ },
3213
+ "optional": false
3214
+ }
3215
+ ],
3216
+ "searchLocations": [
3217
+ {
3218
+ "name": "args",
3219
+ "schema": {
3220
+ "k": "object",
3221
+ "props": [
3222
+ {
3223
+ "name": "query",
3224
+ "schema": {
3225
+ "k": "string"
3226
+ },
3227
+ "optional": false
3228
+ }
3229
+ ]
3230
+ },
3231
+ "optional": false
3232
+ }
3233
+ ]
3234
+ }
3235
+ },
3044
3236
  "providers.achosahw": {
3045
3237
  "defs": {
3046
3238
  "AchosahwQuoteArgs": {
@@ -6477,6 +6669,67 @@ export const VALIDATORS = {
6477
6669
  ]
6478
6670
  }
6479
6671
  },
6672
+ "providers.carlsgolfland": {
6673
+ "defs": {},
6674
+ "functions": {
6675
+ "searchProducts": [
6676
+ {
6677
+ "name": "query",
6678
+ "schema": {
6679
+ "k": "string"
6680
+ },
6681
+ "optional": false
6682
+ }
6683
+ ],
6684
+ "getProduct": [
6685
+ {
6686
+ "name": "urlKey",
6687
+ "schema": {
6688
+ "k": "string"
6689
+ },
6690
+ "optional": false
6691
+ }
6692
+ ],
6693
+ "priceConfiguration": [
6694
+ {
6695
+ "name": "urlKey",
6696
+ "schema": {
6697
+ "k": "string"
6698
+ },
6699
+ "optional": false
6700
+ },
6701
+ {
6702
+ "name": "selections",
6703
+ "schema": {
6704
+ "k": "record",
6705
+ "value": {
6706
+ "k": "string"
6707
+ }
6708
+ },
6709
+ "optional": false
6710
+ }
6711
+ ],
6712
+ "addToCart": [
6713
+ {
6714
+ "name": "urlKey",
6715
+ "schema": {
6716
+ "k": "string"
6717
+ },
6718
+ "optional": false
6719
+ },
6720
+ {
6721
+ "name": "selections",
6722
+ "schema": {
6723
+ "k": "record",
6724
+ "value": {
6725
+ "k": "string"
6726
+ }
6727
+ },
6728
+ "optional": false
6729
+ }
6730
+ ]
6731
+ }
6732
+ },
6480
6733
  "providers.carmelrealtycompany": {
6481
6734
  "defs": {},
6482
6735
  "functions": {
@@ -7338,17 +7591,85 @@ export const VALIDATORS = {
7338
7591
  ]
7339
7592
  }
7340
7593
  },
7341
- "providers.cheapflights": {
7342
- "defs": {
7343
- "KayakCarQuery": {
7344
- "k": "object",
7345
- "props": [
7346
- {
7347
- "name": "pickup",
7348
- "schema": {
7349
- "k": "string"
7350
- },
7351
- "optional": false
7594
+ "providers.chappellet": {
7595
+ "defs": {},
7596
+ "functions": {
7597
+ "listWines": [
7598
+ {
7599
+ "name": "page",
7600
+ "schema": {
7601
+ "k": "number"
7602
+ },
7603
+ "optional": true
7604
+ }
7605
+ ],
7606
+ "getWine": [
7607
+ {
7608
+ "name": "slug",
7609
+ "schema": {
7610
+ "k": "string"
7611
+ },
7612
+ "optional": false
7613
+ }
7614
+ ],
7615
+ "checkShippingEligibility": [
7616
+ {
7617
+ "name": "stateCode",
7618
+ "schema": {
7619
+ "k": "string"
7620
+ },
7621
+ "optional": false
7622
+ }
7623
+ ]
7624
+ }
7625
+ },
7626
+ "providers.charterhomes": {
7627
+ "defs": {
7628
+ "CharterhomesSearchArgs": {
7629
+ "k": "object",
7630
+ "props": [
7631
+ {
7632
+ "name": "city",
7633
+ "schema": {
7634
+ "k": "string"
7635
+ },
7636
+ "optional": true
7637
+ },
7638
+ {
7639
+ "name": "minBedrooms",
7640
+ "schema": {
7641
+ "k": "number"
7642
+ },
7643
+ "optional": true
7644
+ }
7645
+ ]
7646
+ }
7647
+ },
7648
+ "functions": {
7649
+ "searchHomes": [
7650
+ {
7651
+ "name": "args",
7652
+ "schema": {
7653
+ "k": "ref",
7654
+ "name": "CharterhomesSearchArgs"
7655
+ },
7656
+ "optional": true
7657
+ }
7658
+ ],
7659
+ "getScheduleVisitOptions": []
7660
+ }
7661
+ },
7662
+ "providers.cheapflights": {
7663
+ "defs": {
7664
+ "KayakCarQuery": {
7665
+ "k": "object",
7666
+ "props": [
7667
+ {
7668
+ "name": "pickup",
7669
+ "schema": {
7670
+ "k": "string"
7671
+ },
7672
+ "optional": false
7352
7673
  },
7353
7674
  {
7354
7675
  "name": "dropoff",
@@ -9721,6 +10042,141 @@ export const VALIDATORS = {
9721
10042
  ]
9722
10043
  }
9723
10044
  },
10045
+ "providers.fieldstonehomes": {
10046
+ "defs": {
10047
+ "FieldstonehomesPrepareAppointmentArgs": {
10048
+ "k": "object",
10049
+ "props": [
10050
+ {
10051
+ "name": "firstName",
10052
+ "schema": {
10053
+ "k": "string"
10054
+ },
10055
+ "optional": false
10056
+ },
10057
+ {
10058
+ "name": "lastName",
10059
+ "schema": {
10060
+ "k": "string"
10061
+ },
10062
+ "optional": false
10063
+ },
10064
+ {
10065
+ "name": "email",
10066
+ "schema": {
10067
+ "k": "string"
10068
+ },
10069
+ "optional": false
10070
+ },
10071
+ {
10072
+ "name": "phone",
10073
+ "schema": {
10074
+ "k": "string"
10075
+ },
10076
+ "optional": true
10077
+ },
10078
+ {
10079
+ "name": "communityId",
10080
+ "schema": {
10081
+ "k": "string"
10082
+ },
10083
+ "optional": false
10084
+ },
10085
+ {
10086
+ "name": "requestedAt",
10087
+ "schema": {
10088
+ "k": "string"
10089
+ },
10090
+ "optional": false
10091
+ },
10092
+ {
10093
+ "name": "message",
10094
+ "schema": {
10095
+ "k": "string"
10096
+ },
10097
+ "optional": true
10098
+ },
10099
+ {
10100
+ "name": "pageUrl",
10101
+ "schema": {
10102
+ "k": "string"
10103
+ },
10104
+ "optional": true
10105
+ }
10106
+ ]
10107
+ },
10108
+ "FieldstonehomesSearchArgs": {
10109
+ "k": "object",
10110
+ "props": [
10111
+ {
10112
+ "name": "city",
10113
+ "schema": {
10114
+ "k": "string"
10115
+ },
10116
+ "optional": true
10117
+ },
10118
+ {
10119
+ "name": "homeType",
10120
+ "schema": {
10121
+ "k": "string"
10122
+ },
10123
+ "optional": true
10124
+ },
10125
+ {
10126
+ "name": "minPrice",
10127
+ "schema": {
10128
+ "k": "number"
10129
+ },
10130
+ "optional": true
10131
+ },
10132
+ {
10133
+ "name": "maxPrice",
10134
+ "schema": {
10135
+ "k": "number"
10136
+ },
10137
+ "optional": true
10138
+ },
10139
+ {
10140
+ "name": "minBeds",
10141
+ "schema": {
10142
+ "k": "number"
10143
+ },
10144
+ "optional": true
10145
+ },
10146
+ {
10147
+ "name": "minSqft",
10148
+ "schema": {
10149
+ "k": "number"
10150
+ },
10151
+ "optional": true
10152
+ }
10153
+ ]
10154
+ }
10155
+ },
10156
+ "functions": {
10157
+ "searchQuickMoveIns": [
10158
+ {
10159
+ "name": "args",
10160
+ "schema": {
10161
+ "k": "ref",
10162
+ "name": "FieldstonehomesSearchArgs"
10163
+ },
10164
+ "optional": true
10165
+ }
10166
+ ],
10167
+ "getAppointmentFormSchema": [],
10168
+ "prepareAppointment": [
10169
+ {
10170
+ "name": "args",
10171
+ "schema": {
10172
+ "k": "ref",
10173
+ "name": "FieldstonehomesPrepareAppointmentArgs"
10174
+ },
10175
+ "optional": false
10176
+ }
10177
+ ]
10178
+ }
10179
+ },
9724
10180
  "providers.firstdibs": {
9725
10181
  "defs": {},
9726
10182
  "functions": {
@@ -12233,6 +12689,93 @@ export const VALIDATORS = {
12233
12689
  ]
12234
12690
  }
12235
12691
  },
12692
+ "providers.inspirecommunities": {
12693
+ "defs": {
12694
+ "InspirecommunitiesSearchHomesArgs": {
12695
+ "k": "object",
12696
+ "props": [
12697
+ {
12698
+ "name": "state",
12699
+ "schema": {
12700
+ "k": "string"
12701
+ },
12702
+ "optional": true
12703
+ },
12704
+ {
12705
+ "name": "community",
12706
+ "schema": {
12707
+ "k": "string"
12708
+ },
12709
+ "optional": true
12710
+ },
12711
+ {
12712
+ "name": "minBeds",
12713
+ "schema": {
12714
+ "k": "number"
12715
+ },
12716
+ "optional": true
12717
+ },
12718
+ {
12719
+ "name": "minBaths",
12720
+ "schema": {
12721
+ "k": "number"
12722
+ },
12723
+ "optional": true
12724
+ },
12725
+ {
12726
+ "name": "minPrice",
12727
+ "schema": {
12728
+ "k": "number"
12729
+ },
12730
+ "optional": true
12731
+ },
12732
+ {
12733
+ "name": "maxPrice",
12734
+ "schema": {
12735
+ "k": "number"
12736
+ },
12737
+ "optional": true
12738
+ },
12739
+ {
12740
+ "name": "listingType",
12741
+ "schema": {
12742
+ "k": "union",
12743
+ "of": [
12744
+ {
12745
+ "k": "literal",
12746
+ "v": "sale"
12747
+ },
12748
+ {
12749
+ "k": "literal",
12750
+ "v": "rent"
12751
+ }
12752
+ ]
12753
+ },
12754
+ "optional": true
12755
+ },
12756
+ {
12757
+ "name": "limit",
12758
+ "schema": {
12759
+ "k": "number"
12760
+ },
12761
+ "optional": true
12762
+ }
12763
+ ]
12764
+ }
12765
+ },
12766
+ "functions": {
12767
+ "searchHomes": [
12768
+ {
12769
+ "name": "args",
12770
+ "schema": {
12771
+ "k": "ref",
12772
+ "name": "InspirecommunitiesSearchHomesArgs"
12773
+ },
12774
+ "optional": true
12775
+ }
12776
+ ]
12777
+ }
12778
+ },
12236
12779
  "providers.instagram": {
12237
12780
  "defs": {},
12238
12781
  "functions": {
@@ -13699,49 +14242,114 @@ export const VALIDATORS = {
13699
14242
  ]
13700
14243
  },
13701
14244
  "optional": true
13702
- }
13703
- ]
13704
- },
13705
- "KaleidescapeZipLocation": {
13706
- "k": "object",
13707
- "props": [
14245
+ }
14246
+ ]
14247
+ },
14248
+ "KaleidescapeZipLocation": {
14249
+ "k": "object",
14250
+ "props": [
14251
+ {
14252
+ "name": "zip",
14253
+ "schema": {
14254
+ "k": "string"
14255
+ },
14256
+ "optional": false
14257
+ }
14258
+ ]
14259
+ }
14260
+ },
14261
+ "functions": {
14262
+ "findDealersNear": [
14263
+ {
14264
+ "name": "location",
14265
+ "schema": {
14266
+ "k": "union",
14267
+ "of": [
14268
+ {
14269
+ "k": "ref",
14270
+ "name": "KaleidescapeZipLocation"
14271
+ },
14272
+ {
14273
+ "k": "ref",
14274
+ "name": "KaleidescapeCoordLocation"
14275
+ }
14276
+ ]
14277
+ },
14278
+ "optional": false
14279
+ },
14280
+ {
14281
+ "name": "options",
14282
+ "schema": {
14283
+ "k": "ref",
14284
+ "name": "KaleidescapeFindDealersOptions"
14285
+ },
14286
+ "optional": true
14287
+ }
14288
+ ]
14289
+ }
14290
+ },
14291
+ "providers.kalshi": {
14292
+ "defs": {
14293
+ "KalshiGetMarketsOptions": {
14294
+ "k": "object",
14295
+ "props": [
14296
+ {
14297
+ "name": "status",
14298
+ "schema": {
14299
+ "k": "string"
14300
+ },
14301
+ "optional": true
14302
+ },
14303
+ {
14304
+ "name": "series_ticker",
14305
+ "schema": {
14306
+ "k": "string"
14307
+ },
14308
+ "optional": true
14309
+ },
14310
+ {
14311
+ "name": "event_ticker",
14312
+ "schema": {
14313
+ "k": "string"
14314
+ },
14315
+ "optional": true
14316
+ },
14317
+ {
14318
+ "name": "limit",
14319
+ "schema": {
14320
+ "k": "number"
14321
+ },
14322
+ "optional": true
14323
+ },
13708
14324
  {
13709
- "name": "zip",
14325
+ "name": "cursor",
13710
14326
  "schema": {
13711
14327
  "k": "string"
13712
14328
  },
13713
- "optional": false
14329
+ "optional": true
13714
14330
  }
13715
14331
  ]
13716
14332
  }
13717
14333
  },
13718
14334
  "functions": {
13719
- "findDealersNear": [
13720
- {
13721
- "name": "location",
13722
- "schema": {
13723
- "k": "union",
13724
- "of": [
13725
- {
13726
- "k": "ref",
13727
- "name": "KaleidescapeZipLocation"
13728
- },
13729
- {
13730
- "k": "ref",
13731
- "name": "KaleidescapeCoordLocation"
13732
- }
13733
- ]
13734
- },
13735
- "optional": false
13736
- },
14335
+ "getMarkets": [
13737
14336
  {
13738
14337
  "name": "options",
13739
14338
  "schema": {
13740
14339
  "k": "ref",
13741
- "name": "KaleidescapeFindDealersOptions"
14340
+ "name": "KalshiGetMarketsOptions"
13742
14341
  },
13743
14342
  "optional": true
13744
14343
  }
14344
+ ],
14345
+ "getMarket": [
14346
+ {
14347
+ "name": "ticker",
14348
+ "schema": {
14349
+ "k": "string"
14350
+ },
14351
+ "optional": false
14352
+ }
13745
14353
  ]
13746
14354
  }
13747
14355
  },
@@ -14929,6 +15537,58 @@ export const VALIDATORS = {
14929
15537
  ]
14930
15538
  }
14931
15539
  },
15540
+ "providers.luggageforward": {
15541
+ "defs": {
15542
+ "LuggageforwardQuoteArgs": {
15543
+ "k": "object",
15544
+ "props": [
15545
+ {
15546
+ "name": "items",
15547
+ "schema": {
15548
+ "k": "array",
15549
+ "of": {
15550
+ "k": "ref",
15551
+ "name": "LuggageforwardQuoteItem"
15552
+ }
15553
+ },
15554
+ "optional": true
15555
+ }
15556
+ ]
15557
+ },
15558
+ "LuggageforwardQuoteItem": {
15559
+ "k": "object",
15560
+ "props": [
15561
+ {
15562
+ "name": "name",
15563
+ "schema": {
15564
+ "k": "string"
15565
+ },
15566
+ "optional": false
15567
+ },
15568
+ {
15569
+ "name": "quantity",
15570
+ "schema": {
15571
+ "k": "number"
15572
+ },
15573
+ "optional": false
15574
+ }
15575
+ ]
15576
+ }
15577
+ },
15578
+ "functions": {
15579
+ "getQuoteOptions": [
15580
+ {
15581
+ "name": "args",
15582
+ "schema": {
15583
+ "k": "ref",
15584
+ "name": "LuggageforwardQuoteArgs"
15585
+ },
15586
+ "optional": true
15587
+ }
15588
+ ],
15589
+ "listLuggageTypes": []
15590
+ }
15591
+ },
14932
15592
  "providers.lululemon": {
14933
15593
  "defs": {},
14934
15594
  "functions": {
@@ -15610,6 +16270,44 @@ export const VALIDATORS = {
15610
16270
  ]
15611
16271
  }
15612
16272
  },
16273
+ "providers.mercari": {
16274
+ "defs": {},
16275
+ "functions": {
16276
+ "search": [
16277
+ {
16278
+ "name": "query",
16279
+ "schema": {
16280
+ "k": "union",
16281
+ "of": [
16282
+ {
16283
+ "k": "string"
16284
+ },
16285
+ {
16286
+ "k": "object",
16287
+ "props": [
16288
+ {
16289
+ "name": "query",
16290
+ "schema": {
16291
+ "k": "string"
16292
+ },
16293
+ "optional": false
16294
+ },
16295
+ {
16296
+ "name": "limit",
16297
+ "schema": {
16298
+ "k": "number"
16299
+ },
16300
+ "optional": true
16301
+ }
16302
+ ]
16303
+ }
16304
+ ]
16305
+ },
16306
+ "optional": false
16307
+ }
16308
+ ]
16309
+ }
16310
+ },
15613
16311
  "providers.mergify": {
15614
16312
  "defs": {},
15615
16313
  "functions": {
@@ -16574,6 +17272,88 @@ export const VALIDATORS = {
16574
17272
  ]
16575
17273
  }
16576
17274
  },
17275
+ "providers.nfa_futures_org": {
17276
+ "defs": {},
17277
+ "functions": {
17278
+ "searchFirms": [
17279
+ {
17280
+ "name": "name",
17281
+ "schema": {
17282
+ "k": "string"
17283
+ },
17284
+ "optional": false
17285
+ }
17286
+ ],
17287
+ "searchIndividuals": [
17288
+ {
17289
+ "name": "name",
17290
+ "schema": {
17291
+ "k": "string"
17292
+ },
17293
+ "optional": false
17294
+ }
17295
+ ],
17296
+ "lookupByNfaId": [
17297
+ {
17298
+ "name": "nfaId",
17299
+ "schema": {
17300
+ "k": "string"
17301
+ },
17302
+ "optional": false
17303
+ }
17304
+ ]
17305
+ }
17306
+ },
17307
+ "providers.npmjs": {
17308
+ "defs": {},
17309
+ "functions": {
17310
+ "getDownloads": [
17311
+ {
17312
+ "name": "packageName",
17313
+ "schema": {
17314
+ "k": "string"
17315
+ },
17316
+ "optional": false
17317
+ },
17318
+ {
17319
+ "name": "period",
17320
+ "schema": {
17321
+ "k": "string"
17322
+ },
17323
+ "optional": true
17324
+ }
17325
+ ]
17326
+ }
17327
+ },
17328
+ "providers.nurturelife": {
17329
+ "defs": {
17330
+ "GetMealBundleArgs": {
17331
+ "k": "object",
17332
+ "props": [
17333
+ {
17334
+ "name": "bundleSlug",
17335
+ "schema": {
17336
+ "k": "string"
17337
+ },
17338
+ "optional": true
17339
+ }
17340
+ ]
17341
+ }
17342
+ },
17343
+ "functions": {
17344
+ "getMealPlans": [],
17345
+ "getMealBundle": [
17346
+ {
17347
+ "name": "args",
17348
+ "schema": {
17349
+ "k": "ref",
17350
+ "name": "GetMealBundleArgs"
17351
+ },
17352
+ "optional": false
17353
+ }
17354
+ ]
17355
+ }
17356
+ },
16577
17357
  "providers.nutrafol": {
16578
17358
  "defs": {},
16579
17359
  "functions": {
@@ -17640,6 +18420,36 @@ export const VALIDATORS = {
17640
18420
  "listDocPages": []
17641
18421
  }
17642
18422
  },
18423
+ "providers.polymarket": {
18424
+ "defs": {},
18425
+ "functions": {
18426
+ "search": [
18427
+ {
18428
+ "name": "query",
18429
+ "schema": {
18430
+ "k": "string"
18431
+ },
18432
+ "optional": true
18433
+ },
18434
+ {
18435
+ "name": "limit",
18436
+ "schema": {
18437
+ "k": "number"
18438
+ },
18439
+ "optional": true
18440
+ }
18441
+ ],
18442
+ "getMarket": [
18443
+ {
18444
+ "name": "slug",
18445
+ "schema": {
18446
+ "k": "string"
18447
+ },
18448
+ "optional": false
18449
+ }
18450
+ ]
18451
+ }
18452
+ },
17643
18453
  "providers.poshmark": {
17644
18454
  "defs": {},
17645
18455
  "functions": {
@@ -24522,6 +25332,50 @@ export const VALIDATORS = {
24522
25332
  ]
24523
25333
  }
24524
25334
  },
25335
+ "providers.trojanstorage": {
25336
+ "defs": {
25337
+ "TrojanstorageFacilitySearchFilters": {
25338
+ "k": "object",
25339
+ "props": [
25340
+ {
25341
+ "name": "state",
25342
+ "schema": {
25343
+ "k": "string"
25344
+ },
25345
+ "optional": true
25346
+ },
25347
+ {
25348
+ "name": "city",
25349
+ "schema": {
25350
+ "k": "string"
25351
+ },
25352
+ "optional": true
25353
+ }
25354
+ ]
25355
+ }
25356
+ },
25357
+ "functions": {
25358
+ "listFacilities": [
25359
+ {
25360
+ "name": "filters",
25361
+ "schema": {
25362
+ "k": "ref",
25363
+ "name": "TrojanstorageFacilitySearchFilters"
25364
+ },
25365
+ "optional": true
25366
+ }
25367
+ ],
25368
+ "getFacilityUnits": [
25369
+ {
25370
+ "name": "facilityId",
25371
+ "schema": {
25372
+ "k": "string"
25373
+ },
25374
+ "optional": false
25375
+ }
25376
+ ]
25377
+ }
25378
+ },
24525
25379
  "providers.trophysignaturehomes": {
24526
25380
  "defs": {
24527
25381
  "TrophysignaturehomesSearchFilters": {