@bowmark/web 1.14.0 → 1.15.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,8 +5,8 @@
5
5
  // rather than imported. An `import` or `export` at the top level of this file would
6
6
  // turn it into a module and every declaration below would stop being global.
7
7
  //
8
- // Manifest version: faf4c09938555367990a9c8f7a153fdf8acc74126cd25dc3d424ccd9eb0d1077
9
- // 42 capabilities, 326 providers, 823 typed functions, 20 refused.
8
+ // Manifest version: 23b6633ded987b433276311bd6c89f96297649a628b9687bc4fbd8d39745a4ee
9
+ // 43 capabilities, 331 providers, 833 typed functions, 20 refused.
10
10
  // 51,715 family members, sharing 2 interface(s) — declared once and pointed at, never repeated per member.
11
11
  //
12
12
  // REFUSED — these functions are real and callable, and their declared arguments
@@ -1670,6 +1670,49 @@ type ProductResult = {
1670
1670
  }
1671
1671
  }
1672
1672
 
1673
+ declare namespace BowmarkCapability_pet_boarding {
1674
+ // ── Overnight pet boarding search — the unit's own declarations, verbatim ──
1675
+ type PetBoardingSitter = {
1676
+ name: string
1677
+ profileUrl: string
1678
+ ratingValue: number | null
1679
+ reviewCount: number | null
1680
+ startingNightlyRateCents: number // before the provider's service fee and per-pet pricing
1681
+ currency: string
1682
+ location: string | null
1683
+ distanceMi: number | null
1684
+ }
1685
+ type SearchPetBoardingResult = {
1686
+ location: string
1687
+ startDate: string
1688
+ endDate: string
1689
+ sitters: PetBoardingSitter[] // [] when nothing is listed — a real, complete answer
1690
+ warnings: string[] // always present; empty when nothing was dropped
1691
+ }
1692
+
1693
+ type CallOptions = {
1694
+ timeoutMs?: number // per-provider budget in ms, default 30000, clamped to 1000-55000.
1695
+ // A provider slower than this is DROPPED from the results and
1696
+ // NAMED in warnings — never silently absent
1697
+ }
1698
+
1699
+ /**
1700
+ * Finds overnight pet-boarding sitters for a city and a specific date range — starting nightly
1701
+ * rate, rating, review count and distance — aggregated via Rover.
1702
+ */
1703
+ interface Unit {
1704
+ /**
1705
+ * Searches overnight pet-boarding sitters for a city and increasing ISO start/end dates —
1706
+ * `bowmark.pet_boarding.search({ location: "Austin, TX", startDate: "2026-12-24", endDate:
1707
+ * "2026-12-28" })`. Returns each sitter's starting per-night rate for that stay (before the
1708
+ * provider's service fee and before per-pet pricing), rating, review count and distance.
1709
+ * Returns `sitters: []` when nothing is listed for that city and stay, a real, complete
1710
+ * answer, not a failure.
1711
+ */
1712
+ search(args: { location: string; startDate: string; endDate: string }, options?: CallOptions): Promise<SearchPetBoardingResult>;
1713
+ }
1714
+ }
1715
+
1673
1716
  declare namespace BowmarkCapability_phone_price {
1674
1717
  // ── Phone price comparison (carriers) — the unit's own declarations, verbatim ──
1675
1718
  type PhonePriceOffer = {
@@ -5539,7 +5582,7 @@ declare namespace BowmarkProvider_bigjoeforklifts {
5539
5582
  interface BigJoeRoiQuestion {
5540
5583
  questionNumber: number; // the tool's own 1-based question number
5541
5584
  prompt: string; // the question's own text, verbatim
5542
- options: string[]; // the real current choices for this question
5585
+ options: string[]; // the real current choices, or [] for a typed-in answer
5543
5586
  }
5544
5587
  interface BigJoeRoiEstimatorInputs {
5545
5588
  questions: BigJoeRoiQuestion[];
@@ -5555,16 +5598,16 @@ interface BigJoeQuotePreview {
5555
5598
  }
5556
5599
 
5557
5600
  /**
5558
- * Big Joe Forklifts' real 17-question Runtime & ROI estimator's live input options, and its
5559
- * real current forklift model list for a quote request — the tools their own site already
5601
+ * Big Joe Forklifts' real Runtime & ROI estimator's live input questions and option lists, and
5602
+ * its real current forklift model list for a quote request — the tools their own site already
5560
5603
  * computes, read straight off the live site rather than guessed from brochure PDFs.
5561
5604
  */
5562
5605
  interface Unit {
5563
5606
  /**
5564
- * Reads Big Joe's own 'Pre-Demo Runtime & ROI Estimator' and returns its real current 17
5565
- * questions and their real option lists (truck model, load weight, lift height, ramps,
5566
- * attachments, speed limit, facility location, fuel type, and more) straight off the tool's
5567
- * own workbook.
5607
+ * Reads Big Joe's own 'Pre-Demo Runtime & ROI Estimator' and returns its real current numbered
5608
+ * questions and the real option list for each one the tool publishes a dropdown for (truck
5609
+ * model, load weight, lift height, ramps, attachments, speed limit, facility location, fuel
5610
+ * type, and more) straight off the tool's own workbook.
5568
5611
  */
5569
5612
  getRuntimeEstimatorInputs(): Promise<BigJoeRoiEstimatorInputs>;
5570
5613
 
@@ -16481,6 +16524,71 @@ interface KaleidescapeFindDealersOptions {
16481
16524
  }
16482
16525
  }
16483
16526
 
16527
+ declare namespace BowmarkProvider_kalshi {
16528
+ // ── Kalshi — the unit's own declarations, verbatim ──
16529
+ interface KalshiMarket {
16530
+ ticker: string;
16531
+ eventTicker: string;
16532
+ title: string;
16533
+ subtitle: string;
16534
+ status: string;
16535
+ marketType: string;
16536
+ openTime: string;
16537
+ closeTime: string;
16538
+ yesBid: string;
16539
+ yesAsk: string;
16540
+ noBid: string;
16541
+ noAsk: string;
16542
+ lastPrice: string;
16543
+ volume: string;
16544
+ volume24h: string;
16545
+ openInterest: string;
16546
+ liquidity: string;
16547
+ rules: string;
16548
+ }
16549
+ interface KalshiGetMarketsOptions {
16550
+ status?: string;
16551
+ series_ticker?: string;
16552
+ event_ticker?: string;
16553
+ limit?: number;
16554
+ cursor?: string;
16555
+ }
16556
+ interface KalshiGetMarketsResult {
16557
+ markets: KalshiMarket[];
16558
+ cursor: string;
16559
+ warnings: string[];
16560
+ }
16561
+
16562
+ /**
16563
+ * Kalshi's own public trading API, keyless. Built: list/filter live prediction-market
16564
+ * contracts (getMarkets) and read one market's full detail by ticker (getMarket) — prices,
16565
+ * volume, open interest, status, close time.
16566
+ */
16567
+ interface Unit {
16568
+ /**
16569
+ * Lists Kalshi's own live prediction-market contracts off its public, keyless REST endpoint —
16570
+ * each market's ticker, title, status, open/close time, yes/no bid and ask prices (as strings,
16571
+ * e.g. "0.0570"), last price, volume, 24h volume, open interest and liquidity.
16572
+ * `options.status` filters to `open`/`closed`/`settled`/`unopened`; `options.series_ticker` or
16573
+ * `options.event_ticker` narrows to one series or event (found via a series/event browse
16574
+ * elsewhere — this provider does not wrap `/series` or `/events`); `options.limit` (1-1000,
16575
+ * default 100) and `options.cursor` (Kalshi's own opaque token, from a prior response's
16576
+ * `cursor`) page through results. This is the locator: a caller without an existing ticker
16577
+ * starts here, then reads one market's full detail with `getMarket`.
16578
+ */
16579
+ getMarkets(options?: KalshiGetMarketsOptions): Promise<KalshiGetMarketsResult>;
16580
+
16581
+ /**
16582
+ * Reads one Kalshi market's full detail by its own ticker (e.g. `"KXWCGROUPBOTTOM-26L-BRA"`,
16583
+ * found via `getMarkets`) off Kalshi's public, keyless REST endpoint — title, subtitle,
16584
+ * status, open/close time, current yes/no bid and ask prices, last price, volume, open
16585
+ * interest, liquidity and the primary rules text governing settlement. THROWS on an unknown
16586
+ * ticker (404) or a rate limit (429).
16587
+ */
16588
+ getMarket(ticker: string): Promise<KalshiMarket>;
16589
+ }
16590
+ }
16591
+
16484
16592
  declare namespace BowmarkProvider_kayak {
16485
16593
  // ── Kayak — the unit's own declarations, verbatim ──
16486
16594
  interface KayakQuery {
@@ -19273,6 +19381,32 @@ interface medicareGetPlanQuery {
19273
19381
  }
19274
19382
  }
19275
19383
 
19384
+ declare namespace BowmarkProvider_mercari {
19385
+ // ── Mercari — the unit's own declarations, verbatim ──
19386
+ interface MercariSearchResult {
19387
+ itemId: string;
19388
+ name: string;
19389
+ price: number;
19390
+ wasPrice: number | null;
19391
+ brand: string | null;
19392
+ size: string | null;
19393
+ url: string;
19394
+ }
19395
+
19396
+ /**
19397
+ * Large peer-to-peer resale marketplace (clothing, electronics, collectibles) — keyword search
19398
+ * over live listings with real, current prices.
19399
+ */
19400
+ interface Unit {
19401
+ /**
19402
+ * Runs a Mercari US keyword search the way mercari.com's own search box does and returns each
19403
+ * matching listing — item id, name, current price, the crossed-out original price when
19404
+ * discounted, brand, size and the listing's own mercari.com URL.
19405
+ */
19406
+ search(query: string | { query: string; limit?: number }): Promise<MercariSearchResult[]>;
19407
+ }
19408
+ }
19409
+
19276
19410
  declare namespace BowmarkProvider_mergify {
19277
19411
  // ── Mergify — the unit's own declarations, verbatim ──
19278
19412
  interface mergifyBatch {
@@ -20535,6 +20669,72 @@ interface StoreStock {
20535
20669
  }
20536
20670
  }
20537
20671
 
20672
+ declare namespace BowmarkProvider_nfa_futures_org {
20673
+ // ── NFA BASIC — the unit's own declarations, verbatim ──
20674
+ interface NfaEntity {
20675
+ nfaId: string; // "0229152"
20676
+ name: string;
20677
+ membershipStatus: string | null; // e.g. "NFA MEMBER APPROVED, SWAP DEALER REGISTERED"
20678
+ registrationTypes: string | null; // e.g. "Swap Dealer, Exempt Commodity Trading Advisor"
20679
+ hasRegulatoryActions: boolean;
20680
+ entityToken: string; // BASIC's own encrypted per-search token
20681
+ profileUrl: string; // this entity's BasicNet profile page
20682
+ }
20683
+
20684
+ /**
20685
+ * NFA's own BASIC registry — search a firm or individual by name, or look one up by NFA ID,
20686
+ * for its current membership status, registration types and whether it carries regulatory
20687
+ * actions.
20688
+ */
20689
+ interface Unit {
20690
+ /**
20691
+ * Firms NFA's own BASIC registry lists for a name query (e.g. "JPMorgan Chase Bank") — NFA ID,
20692
+ * membership status, registration types and whether NFA shows any regulatory action against
20693
+ * it. The door for a caller who only knows the firm's name.
20694
+ */
20695
+ searchFirms(name: string): Promise<NfaEntity[]>;
20696
+
20697
+ /**
20698
+ * Individuals NFA's own BASIC registry lists for a name query (e.g. "Smith") — NFA ID,
20699
+ * membership status, registration types and whether NFA shows any regulatory action against
20700
+ * them. The door for a caller who only knows the person's name.
20701
+ */
20702
+ searchIndividuals(name: string): Promise<NfaEntity[]>;
20703
+
20704
+ /**
20705
+ * One firm or individual's current NFA membership status and registration types, by NFA ID
20706
+ * (e.g. "0229152"), or by pasting a BasicNet profile URL (its "nfaid" query parameter is read
20707
+ * for you). THROWS if BASIC lists no registrant under that id.
20708
+ */
20709
+ lookupByNfaId(nfaId: string): Promise<NfaEntity>;
20710
+ }
20711
+ }
20712
+
20713
+ declare namespace BowmarkProvider_npmjs {
20714
+ // ── npm — the unit's own declarations, verbatim ──
20715
+ interface npmjsDownloads {
20716
+ package: string;
20717
+ downloads: number;
20718
+ start: string; // ISO date
20719
+ end: string; // ISO date
20720
+ }
20721
+
20722
+ /**
20723
+ * npmjs.com's own public download-counts API — real weekly/daily/monthly download totals (or a
20724
+ * custom date range) for any published npm package, scoped or not.
20725
+ */
20726
+ interface Unit {
20727
+ /**
20728
+ * The real download count for an npm package, straight off npmjs.com's own public
20729
+ * download-counts API — the same number npmjs.com's own package page shows. `period` is
20730
+ * `"last-day"`, `"last-week"` (default) or `"last-month"`, or a custom
20731
+ * `"YYYY-MM-DD:YYYY-MM-DD"` range. Works on scoped packages (`"@babel/core"`) exactly as on
20732
+ * unscoped ones.
20733
+ */
20734
+ getDownloads(packageName: string, period?: string): Promise<npmjsDownloads>;
20735
+ }
20736
+ }
20737
+
20538
20738
  declare namespace BowmarkProvider_nutrafol {
20539
20739
  // ── Nutrafol — the unit's own declarations, verbatim ──
20540
20740
  interface RootCause {
@@ -21654,6 +21854,43 @@ interface platform_claude_comDocLink {
21654
21854
  }
21655
21855
  }
21656
21856
 
21857
+ declare namespace BowmarkProvider_polymarket {
21858
+ // ── Polymarket — the unit's own declarations, verbatim ──
21859
+ interface polymarketMarket {
21860
+ slug: string;
21861
+ question: string;
21862
+ outcomes: string[];
21863
+ outcomePrices: number[];
21864
+ volume: number;
21865
+ liquidity: number | null;
21866
+ endDate: string | null;
21867
+ active: boolean;
21868
+ closed: boolean;
21869
+ }
21870
+
21871
+ /**
21872
+ * Polymarket's own prediction markets — search by keyword or browse the newest, and read one
21873
+ * market's question, live outcome prices, volume and status by slug.
21874
+ */
21875
+ interface Unit {
21876
+ /**
21877
+ * Searches Polymarket's own markets by keyword, e.g. "election" or "bitcoin" — the same search
21878
+ * its own site uses. Omit `query` to list the newest active markets instead. Each row carries
21879
+ * the market's slug (what `getMarket` takes), its question, its outcomes and their current
21880
+ * prices (0-1 implied probabilities), volume, liquidity (when the door carries it) and whether
21881
+ * it is still active/open. `limit` caps how many rows come back (default 20, capped at 100).
21882
+ */
21883
+ search(query?: string, limit?: number): Promise<polymarketMarket[]>;
21884
+
21885
+ /**
21886
+ * Reads one Polymarket market by its slug (the id `search` returns, e.g.
21887
+ * "xi-jinping-out-before-2027") — its question, outcomes, current outcome prices, volume,
21888
+ * liquidity, end date and open/closed status, straight from the site's own API.
21889
+ */
21890
+ getMarket(slug: string): Promise<polymarketMarket>;
21891
+ }
21892
+ }
21893
+
21657
21894
  declare namespace BowmarkProvider_poshmark {
21658
21895
  // ── Poshmark — the unit's own declarations, verbatim ──
21659
21896
  interface PoshmarkSupportArticle {
@@ -27837,16 +28074,18 @@ interface XpressWaitTime {
27837
28074
  }
27838
28075
 
27839
28076
  /**
27840
- * Reads Xpress Wellness Urgent Care's clinic roster and each clinic's live healow wait-time /
27841
- * check-in widget — no key, no browser.
28077
+ * Reads the Xpress Wellness / Integrity Urgent Care clinic roster and each clinic's live
28078
+ * healow wait-time / check-in widget — no key, no browser.
27842
28079
  */
27843
28080
  interface Unit {
27844
28081
  /**
27845
- * Lists every Xpress Wellness Urgent Care clinic40 locations across Oklahoma, Kansas and
27846
- * one Texas site with name, address, phone, the clinic's own detail page and the healow
27847
- * check-in widget URL + facility_id. Takes nothing. The facilityId it returns is what
27848
- * checkWaitTime takes. THROWS rather than returning [] when the roster page answers with no
27849
- * clinics the roster is never honestly empty.
28082
+ * Lists Xpress Wellness / Integrity Urgent Care clinicsrecovered by confirming each healow
28083
+ * facility_id's own brand, then matching it against the site's current roster for a name and
28084
+ * address with name, address, the clinic's own detail page when matched and the healow
28085
+ * check-in widget URL + facility_id. Takes nothing. phone is always null (neither source
28086
+ * publishes one any more). The facilityId it returns is what checkWaitTime takes. THROWS
28087
+ * rather than returning [] when no facility_id resolves to a confirmed clinic — the roster is
28088
+ * never honestly empty.
27850
28089
  */
27851
28090
  listFacilities(): Promise<XpressFacility[]>;
27852
28091
 
@@ -29163,6 +29402,7 @@ interface BowmarkProviders {
29163
29402
  junkluggers: BowmarkProvider_junkluggers.Unit;
29164
29403
  justinwine: BowmarkProvider_justinwine.Unit;
29165
29404
  kaleidescape: BowmarkProvider_kaleidescape.Unit;
29405
+ kalshi: BowmarkProvider_kalshi.Unit;
29166
29406
  kayak: BowmarkProvider_kayak.Unit;
29167
29407
  keepa: BowmarkProvider_keepa.Unit;
29168
29408
  kingsdown: BowmarkProvider_kingsdown.Unit;
@@ -29191,6 +29431,7 @@ interface BowmarkProviders {
29191
29431
  mcp_so: BowmarkProvider_mcp_so.Unit;
29192
29432
  medicalguardian: BowmarkProvider_medicalguardian.Unit;
29193
29433
  medicare: BowmarkProvider_medicare.Unit;
29434
+ mercari: BowmarkProvider_mercari.Unit;
29194
29435
  mergify: BowmarkProvider_mergify.Unit;
29195
29436
  microcenter: BowmarkProvider_microcenter.Unit;
29196
29437
  millisaraylar: BowmarkProvider_millisaraylar.Unit;
@@ -29207,6 +29448,8 @@ interface BowmarkProviders {
29207
29448
  nationalbusinessfurniture: BowmarkProvider_nationalbusinessfurniture.Unit;
29208
29449
  newageproducts: BowmarkProvider_newageproducts.Unit;
29209
29450
  newegg: BowmarkProvider_newegg.Unit;
29451
+ nfa_futures_org: BowmarkProvider_nfa_futures_org.Unit;
29452
+ npmjs: BowmarkProvider_npmjs.Unit;
29210
29453
  nutrafol: BowmarkProvider_nutrafol.Unit;
29211
29454
  nvisioncenters: BowmarkProvider_nvisioncenters.Unit;
29212
29455
  oanda: BowmarkProvider_oanda.Unit;
@@ -29222,6 +29465,7 @@ interface BowmarkProviders {
29222
29465
  pirateship: BowmarkProvider_pirateship.Unit;
29223
29466
  pizzahut: BowmarkProvider_pizzahut.Unit;
29224
29467
  platform_claude_com: BowmarkProvider_platform_claude_com.Unit;
29468
+ polymarket: BowmarkProvider_polymarket.Unit;
29225
29469
  poshmark: BowmarkProvider_poshmark.Unit;
29226
29470
  positivegrid: BowmarkProvider_positivegrid.Unit;
29227
29471
  premierbuildings: BowmarkProvider_premierbuildings.Unit;
@@ -81053,6 +81297,7 @@ interface BowmarkLibrary {
81053
81297
  mcp_registry: BowmarkCapability_mcp_registry.Unit;
81054
81298
  music: BowmarkCapability_music.Unit;
81055
81299
  pcparts: BowmarkCapability_pcparts.Unit;
81300
+ pet_boarding: BowmarkCapability_pet_boarding.Unit;
81056
81301
  phone_price: BowmarkCapability_phone_price.Unit;
81057
81302
  phone_trade_in: BowmarkCapability_phone_trade_in.Unit;
81058
81303
  pricing: BowmarkCapability_pricing.Unit;
@@ -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: 23b6633ded987b433276311bd6c89f96297649a628b9687bc4fbd8d39745a4ee
9
+ // 815 checked, 20 unchecked.
10
10
  export const VALIDATORS = {
11
- "version": "faf4c09938555367990a9c8f7a153fdf8acc74126cd25dc3d424ccd9eb0d1077",
11
+ "version": "23b6633ded987b433276311bd6c89f96297649a628b9687bc4fbd8d39745a4ee",
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": {
@@ -13745,6 +13803,71 @@ export const VALIDATORS = {
13745
13803
  ]
13746
13804
  }
13747
13805
  },
13806
+ "providers.kalshi": {
13807
+ "defs": {
13808
+ "KalshiGetMarketsOptions": {
13809
+ "k": "object",
13810
+ "props": [
13811
+ {
13812
+ "name": "status",
13813
+ "schema": {
13814
+ "k": "string"
13815
+ },
13816
+ "optional": true
13817
+ },
13818
+ {
13819
+ "name": "series_ticker",
13820
+ "schema": {
13821
+ "k": "string"
13822
+ },
13823
+ "optional": true
13824
+ },
13825
+ {
13826
+ "name": "event_ticker",
13827
+ "schema": {
13828
+ "k": "string"
13829
+ },
13830
+ "optional": true
13831
+ },
13832
+ {
13833
+ "name": "limit",
13834
+ "schema": {
13835
+ "k": "number"
13836
+ },
13837
+ "optional": true
13838
+ },
13839
+ {
13840
+ "name": "cursor",
13841
+ "schema": {
13842
+ "k": "string"
13843
+ },
13844
+ "optional": true
13845
+ }
13846
+ ]
13847
+ }
13848
+ },
13849
+ "functions": {
13850
+ "getMarkets": [
13851
+ {
13852
+ "name": "options",
13853
+ "schema": {
13854
+ "k": "ref",
13855
+ "name": "KalshiGetMarketsOptions"
13856
+ },
13857
+ "optional": true
13858
+ }
13859
+ ],
13860
+ "getMarket": [
13861
+ {
13862
+ "name": "ticker",
13863
+ "schema": {
13864
+ "k": "string"
13865
+ },
13866
+ "optional": false
13867
+ }
13868
+ ]
13869
+ }
13870
+ },
13748
13871
  "providers.kayak": {
13749
13872
  "defs": {
13750
13873
  "KayakCarQuery": {
@@ -15610,6 +15733,44 @@ export const VALIDATORS = {
15610
15733
  ]
15611
15734
  }
15612
15735
  },
15736
+ "providers.mercari": {
15737
+ "defs": {},
15738
+ "functions": {
15739
+ "search": [
15740
+ {
15741
+ "name": "query",
15742
+ "schema": {
15743
+ "k": "union",
15744
+ "of": [
15745
+ {
15746
+ "k": "string"
15747
+ },
15748
+ {
15749
+ "k": "object",
15750
+ "props": [
15751
+ {
15752
+ "name": "query",
15753
+ "schema": {
15754
+ "k": "string"
15755
+ },
15756
+ "optional": false
15757
+ },
15758
+ {
15759
+ "name": "limit",
15760
+ "schema": {
15761
+ "k": "number"
15762
+ },
15763
+ "optional": true
15764
+ }
15765
+ ]
15766
+ }
15767
+ ]
15768
+ },
15769
+ "optional": false
15770
+ }
15771
+ ]
15772
+ }
15773
+ },
15613
15774
  "providers.mergify": {
15614
15775
  "defs": {},
15615
15776
  "functions": {
@@ -16574,6 +16735,59 @@ export const VALIDATORS = {
16574
16735
  ]
16575
16736
  }
16576
16737
  },
16738
+ "providers.nfa_futures_org": {
16739
+ "defs": {},
16740
+ "functions": {
16741
+ "searchFirms": [
16742
+ {
16743
+ "name": "name",
16744
+ "schema": {
16745
+ "k": "string"
16746
+ },
16747
+ "optional": false
16748
+ }
16749
+ ],
16750
+ "searchIndividuals": [
16751
+ {
16752
+ "name": "name",
16753
+ "schema": {
16754
+ "k": "string"
16755
+ },
16756
+ "optional": false
16757
+ }
16758
+ ],
16759
+ "lookupByNfaId": [
16760
+ {
16761
+ "name": "nfaId",
16762
+ "schema": {
16763
+ "k": "string"
16764
+ },
16765
+ "optional": false
16766
+ }
16767
+ ]
16768
+ }
16769
+ },
16770
+ "providers.npmjs": {
16771
+ "defs": {},
16772
+ "functions": {
16773
+ "getDownloads": [
16774
+ {
16775
+ "name": "packageName",
16776
+ "schema": {
16777
+ "k": "string"
16778
+ },
16779
+ "optional": false
16780
+ },
16781
+ {
16782
+ "name": "period",
16783
+ "schema": {
16784
+ "k": "string"
16785
+ },
16786
+ "optional": true
16787
+ }
16788
+ ]
16789
+ }
16790
+ },
16577
16791
  "providers.nutrafol": {
16578
16792
  "defs": {},
16579
16793
  "functions": {
@@ -17640,6 +17854,36 @@ export const VALIDATORS = {
17640
17854
  "listDocPages": []
17641
17855
  }
17642
17856
  },
17857
+ "providers.polymarket": {
17858
+ "defs": {},
17859
+ "functions": {
17860
+ "search": [
17861
+ {
17862
+ "name": "query",
17863
+ "schema": {
17864
+ "k": "string"
17865
+ },
17866
+ "optional": true
17867
+ },
17868
+ {
17869
+ "name": "limit",
17870
+ "schema": {
17871
+ "k": "number"
17872
+ },
17873
+ "optional": true
17874
+ }
17875
+ ],
17876
+ "getMarket": [
17877
+ {
17878
+ "name": "slug",
17879
+ "schema": {
17880
+ "k": "string"
17881
+ },
17882
+ "optional": false
17883
+ }
17884
+ ]
17885
+ }
17886
+ },
17643
17887
  "providers.poshmark": {
17644
17888
  "defs": {},
17645
17889
  "functions": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bowmark/web",
3
- "version": "1.14.0",
3
+ "version": "1.15.0",
4
4
  "type": "module",
5
5
  "description": "The public client for the Bowmark capability library — real TypeScript for the whole bowmark.* surface, with no Bowmark source on the caller's disk. ZERO runtime dependencies, deliberately and permanently.",
6
6
  "license": "MIT",