@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,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: a1e3e6de6a511c3fcbec88c14d4c7a9805aef78095475d828edf1aeaa922747f
9
+ // 43 capabilities, 341 providers, 857 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 = {
@@ -2596,6 +2639,70 @@ type CallOptions = {
2596
2639
  }
2597
2640
  }
2598
2641
 
2642
+ declare namespace BowmarkProvider_a1storage {
2643
+ // ── A-1 Self Storage — the unit's own declarations, verbatim ──
2644
+ // A-1 Self Storage's OWN shapes — not a capability contract.
2645
+
2646
+ interface a1storageFacility {
2647
+ facilityId: string; // the id getFacilityUnits/getMoveInCost take
2648
+ name: string; address: string; city: string; state: string; zip: string;
2649
+ phone: string; email: string;
2650
+ lat: number | null; lng: number | null;
2651
+ locationUrl: string; // the facility's public page, verified against A-1's own sitemap
2652
+ }
2653
+
2654
+ interface a1storageFacilitySearchFilters { state?: string; city?: string }
2655
+
2656
+ interface a1storageUnitGroup {
2657
+ unitId: string; // the id getMoveInCost's unitId takes
2658
+ length: number; width: number; areaSqFt: number;
2659
+ categoryName: string; // e.g. "Medium"
2660
+ features: string[];
2661
+ availableCount: number;
2662
+ regularPrice: number | null;
2663
+ promoPrice: number | null; // null when no promo is currently active
2664
+ promoLabel: string | null;
2665
+ }
2666
+
2667
+ interface a1storageCharge { description: string; charge: number; tax: number; total: number }
2668
+
2669
+ interface a1storageMoveInCost {
2670
+ charges: a1storageCharge[];
2671
+ subtotal: number; taxes: number; total: number;
2672
+ firstMonthRent: number;
2673
+ promotionName: string | null;
2674
+ }
2675
+
2676
+ /**
2677
+ * Reads A-1 Self Storage's own live unit availability, pricing and per-unit itemized move-in
2678
+ * cost — real size, category, live rate and any active promo, and the exact pre-rental total
2679
+ * for a selected unit — off the site's own Storage Essentials REST API, the way its facility
2680
+ * pages compute the same numbers client-side.
2681
+ */
2682
+ interface Unit {
2683
+ /**
2684
+ * Lists every A-1 Self Storage facility (51 today), optionally narrowed by US state or city.
2685
+ * Each row carries the facilityId getFacilityUnits/getMoveInCost take, plus address, phone,
2686
+ * email, lat/lng and a public locationUrl.
2687
+ */
2688
+ listFacilities(filters?: a1storageFacilitySearchFilters): Promise<a1storageFacility[]>;
2689
+
2690
+ /**
2691
+ * Reads one facility's live unit inventory by size group: real dimensions, category, current
2692
+ * availability, the standard web rate and any active promo rate. THROWS on an unknown
2693
+ * facilityId — call listFacilities() first.
2694
+ */
2695
+ getFacilityUnits(facilityId: string): Promise<a1storageUnitGroup[]>;
2696
+
2697
+ /**
2698
+ * Computes the itemized pre-rental move-in cost for one selected unit — rent, admin fee,
2699
+ * deposit, subtotal and total — before any tenant, ID or payment step. THROWS on an unknown
2700
+ * facilityId/unitId pair — call getFacilityUnits() first.
2701
+ */
2702
+ getMoveInCost(facilityId: string, unitId: string): Promise<a1storageMoveInCost>;
2703
+ }
2704
+ }
2705
+
2599
2706
  declare namespace BowmarkProvider_aa {
2600
2707
  // ── American Airlines — the unit's own declarations, verbatim ──
2601
2708
  interface aaFlight {
@@ -3104,6 +3211,31 @@ interface abercrombieStockQuery {
3104
3211
  }
3105
3212
  }
3106
3213
 
3214
+ declare namespace BowmarkProvider_acerentacar {
3215
+ // ── ACE Rent A Car — the unit's own declarations, verbatim ──
3216
+ interface AcerentacarSearchArgs { pickupLocationCode: string; pickupDate: string; dropoffDate: string; pickupTime?: string; dropoffTime?: string; }
3217
+ interface AcerentacarVehicle { code: string; name: string; type: string; category: string; passengers: number; baggage: number; automatic: boolean; currencyCode: string; rates: { bidId: string; baseRate: number; totalAmount: number; prepaid: boolean }[]; reservationUrl: string; }
3218
+ interface AcerentacarLocation { code: string; name: string; city: string; state: string | null; countryISO: string; }
3219
+
3220
+ /**
3221
+ * ACE Rent A Car's live public vehicle availability and rates for a location and itinerary,
3222
+ * with a reservation handoff.
3223
+ */
3224
+ interface Unit {
3225
+ /**
3226
+ * Returns ACE's live available vehicle classes and rate totals for a public pickup location
3227
+ * and itinerary, plus a reservation handoff URL.
3228
+ */
3229
+ searchAvailability(args: AcerentacarSearchArgs): Promise<AcerentacarVehicle[]>;
3230
+
3231
+ /**
3232
+ * Matches a free-text city, airport or state against ACE's public location catalog and returns
3233
+ * the location codes searchAvailability needs.
3234
+ */
3235
+ searchLocations(args: { query: string }): Promise<AcerentacarLocation[]>;
3236
+ }
3237
+ }
3238
+
3107
3239
  declare namespace BowmarkProvider_achosahw {
3108
3240
  // ── Achosa Home Warranty — the unit's own declarations, verbatim ──
3109
3241
  // Achosa's OWN shapes — not a capability contract.
@@ -5539,7 +5671,7 @@ declare namespace BowmarkProvider_bigjoeforklifts {
5539
5671
  interface BigJoeRoiQuestion {
5540
5672
  questionNumber: number; // the tool's own 1-based question number
5541
5673
  prompt: string; // the question's own text, verbatim
5542
- options: string[]; // the real current choices for this question
5674
+ options: string[]; // the real current choices, or [] for a typed-in answer
5543
5675
  }
5544
5676
  interface BigJoeRoiEstimatorInputs {
5545
5677
  questions: BigJoeRoiQuestion[];
@@ -5555,16 +5687,16 @@ interface BigJoeQuotePreview {
5555
5687
  }
5556
5688
 
5557
5689
  /**
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
5690
+ * Big Joe Forklifts' real Runtime & ROI estimator's live input questions and option lists, and
5691
+ * its real current forklift model list for a quote request — the tools their own site already
5560
5692
  * computes, read straight off the live site rather than guessed from brochure PDFs.
5561
5693
  */
5562
5694
  interface Unit {
5563
5695
  /**
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.
5696
+ * Reads Big Joe's own 'Pre-Demo Runtime & ROI Estimator' and returns its real current numbered
5697
+ * questions and the real option list for each one the tool publishes a dropdown for (truck
5698
+ * model, load weight, lift height, ramps, attachments, speed limit, facility location, fuel
5699
+ * type, and more) straight off the tool's own workbook.
5568
5700
  */
5569
5701
  getRuntimeEstimatorInputs(): Promise<BigJoeRoiEstimatorInputs>;
5570
5702
 
@@ -7306,6 +7438,120 @@ interface CarePatrolFindLocalAdvisorResult {
7306
7438
  }
7307
7439
  }
7308
7440
 
7441
+ declare namespace BowmarkProvider_carlsgolfland {
7442
+ // ── Carl's Golfland — the unit's own declarations, verbatim ──
7443
+ // Carl's Golfland's OWN shapes — not a capability contract.
7444
+
7445
+ interface CglProductSummary {
7446
+ urlKey: string; // the key getProduct takes
7447
+ sku: string;
7448
+ name: string;
7449
+ url: string;
7450
+ stockStatus: string; // "IN_STOCK" | "OUT_OF_STOCK"
7451
+ basePrice: number;
7452
+ basePriceFormatted: string; // "$447.00"
7453
+ }
7454
+
7455
+ interface CglOptionChoice { label: string; valueIndex: number }
7456
+
7457
+ interface CglOption {
7458
+ groupLabel: string; // "Hand", "Driver Loft", "Shaft" — the real group name
7459
+ attributeCode: string;
7460
+ choices: CglOptionChoice[];
7461
+ }
7462
+
7463
+ interface CglVariant {
7464
+ sku: string;
7465
+ stockStatus: string;
7466
+ price: number;
7467
+ priceFormatted: string;
7468
+ selections: Record<string, number>; // attributeCode -> valueIndex
7469
+ }
7470
+
7471
+ interface CglProduct {
7472
+ urlKey: string;
7473
+ sku: string;
7474
+ name: string;
7475
+ url: string;
7476
+ stockStatus: string;
7477
+ basePrice: number;
7478
+ basePriceFormatted: string;
7479
+ options: CglOption[];
7480
+ variants: CglVariant[];
7481
+ }
7482
+
7483
+ interface CglPriceResult {
7484
+ urlKey: string;
7485
+ sku: string;
7486
+ variantSku: string | null; // null until every multi-choice group is picked
7487
+ stockStatus: string | null;
7488
+ price: number | null;
7489
+ priceFormatted: string | null;
7490
+ applied: { group: string; choice: string }[];
7491
+ missingGroups: string[]; // groups with >1 choice and no selection applied
7492
+ unmatched: string[]; // selections that didn't match a real group/choice
7493
+ handoffUrl: string; // the product's entry page
7494
+ }
7495
+
7496
+ interface CglCartHandoff {
7497
+ urlKey: string;
7498
+ sku: string;
7499
+ name: string;
7500
+ url: string; // the product page — Carl's Golfland publishes no query-param deep link
7501
+ applied: { group: string; choice: string }[];
7502
+ price: number | null;
7503
+ priceFormatted: string | null;
7504
+ stockStatus: string | null;
7505
+ missingGroups: string[];
7506
+ unmatched: string[];
7507
+ }
7508
+
7509
+ /**
7510
+ * Carl's Golfland's golf-equipment catalog — search live inventory, read one product's real
7511
+ * configurable options (hand, loft, shaft) with each combination's exact price and stock
7512
+ * status, and resolve a specific configuration to its real variant rather than a researched
7513
+ * estimate.
7514
+ */
7515
+ interface Unit {
7516
+ /**
7517
+ * Searches Carl's Golfland's golf-equipment catalog by free text (e.g. "driver", "putter") and
7518
+ * returns every match's urlKey, SKU, name, entry URL, stock status and starting price. The
7519
+ * `urlKey` on each row is what getProduct takes.
7520
+ */
7521
+ searchProducts(query: string): Promise<CglProductSummary[]>;
7522
+
7523
+ /**
7524
+ * Reads one product's full configurable-option set (e.g. Hand, Driver Loft, Shaft) with each
7525
+ * choice's real label, plus every real buildable variant's exact price and stock status.
7526
+ * THROWS on an unknown urlKey, naming searchProducts() as the way to find current ones.
7527
+ */
7528
+ getProduct(urlKey: string): Promise<CglProduct>;
7529
+
7530
+ /**
7531
+ * Resolves ONE specific configuration — selections keyed by option group (case-insensitive),
7532
+ * e.g. { "Hand": "Right", "Driver Loft": "10.5*", "Shaft": "PING ALTA CB Blue 50 Regular" } —
7533
+ * against the product's live options and returns the matching variant's real price and stock
7534
+ * status, the applied choices, and the site URL to re-pick the same choices (Carl's Golfland
7535
+ * publishes no shareable URL for a configured state). `missingGroups` names any option group
7536
+ * with more than one choice left unpicked — price is null until every such group is chosen.
7537
+ * `unmatched` names any selection that did not match a real group or choice, rather than
7538
+ * silently mispricing.
7539
+ */
7540
+ priceConfiguration(urlKey: string, selections: Record<string, string>): Promise<CglPriceResult>;
7541
+
7542
+ /**
7543
+ * Turns a configuration into the handoff you give the shopper: Carl's Golfland's own product
7544
+ * page URL plus the exact choices to click there, since this storefront does not honour a
7545
+ * query-param deep link for a configured state (measured — see the provider's reach note).
7546
+ * Same selections shape as priceConfiguration, and returns the same price, stock status and
7547
+ * applied choices alongside the URL. NOTHING IS CREATED SERVER-SIDE and nothing is bought —
7548
+ * this provider never posts to the site's own add-to-cart endpoint, which requires a
7549
+ * session-bound form key this stateless call does not hold.
7550
+ */
7551
+ addToCart(urlKey: string, selections: Record<string, string>): Promise<CglCartHandoff>;
7552
+ }
7553
+ }
7554
+
7309
7555
  declare namespace BowmarkProvider_carmelrealtycompany {
7310
7556
  // ── Carmel Realty Company — the unit's own declarations, verbatim ──
7311
7557
  interface carmelrealtycompanyListingSummary {
@@ -7941,6 +8187,90 @@ interface FoundationMatch {
7941
8187
  }
7942
8188
  }
7943
8189
 
8190
+ declare namespace BowmarkProvider_chappellet {
8191
+ // ── Chappellet — the unit's own declarations, verbatim ──
8192
+ interface ChappelletVariantInventory {
8193
+ inventoryLocationId: string;
8194
+ availableForSaleCount: number;
8195
+ }
8196
+
8197
+ interface ChappelletVariant {
8198
+ id: string;
8199
+ title: string;
8200
+ sku: string | null;
8201
+ volumeInML: number | null;
8202
+ price: number; // cents
8203
+ inventory: ChappelletVariantInventory[];
8204
+ totalAvailable: number;
8205
+ }
8206
+
8207
+ interface ChappelletWine {
8208
+ id: string;
8209
+ slug: string;
8210
+ title: string;
8211
+ webStatus: string;
8212
+ variants: ChappelletVariant[];
8213
+ inStock: boolean;
8214
+ url: string;
8215
+ }
8216
+
8217
+ interface ChappelletShippingCheck {
8218
+ stateCode: string;
8219
+ shippable: boolean;
8220
+ }
8221
+
8222
+ /**
8223
+ * Chappellet's live public wine shop — current releases, real price and stock, and destination
8224
+ * shipping eligibility, read straight off the Commerce7 storefront that powers
8225
+ * chappellet.com/shop.
8226
+ */
8227
+ interface Unit {
8228
+ /**
8229
+ * Lists the current releases in Chappellet's public shop, with live price and per-location
8230
+ * stock. Takes nothing (page defaults to 1). Example: bowmark.providers.chappellet.listWines()
8231
+ */
8232
+ listWines(page?: number): Promise<ChappelletWine[]>;
8233
+
8234
+ /**
8235
+ * Reads one wine by the slug listWines returns — full variant, price and live stock detail.
8236
+ * Example: bowmark.providers.chappellet.getWine("2023-pritchard-hill-cabernet-sauvignon")
8237
+ */
8238
+ getWine(slug: string): Promise<ChappelletWine>;
8239
+
8240
+ /**
8241
+ * Checks whether Chappellet's storefront can ship wine to a US state right now. Example:
8242
+ * bowmark.providers.chappellet.checkShippingEligibility("IL")
8243
+ */
8244
+ checkShippingEligibility(stateCode: string): Promise<ChappelletShippingCheck>;
8245
+ }
8246
+ }
8247
+
8248
+ declare namespace BowmarkProvider_charterhomes {
8249
+ // ── Charter Homes & Neighborhoods — the unit's own declarations, verbatim ──
8250
+ interface CharterhomesSearchArgs { city?: string; minBedrooms?: number; }
8251
+ interface CharterhomesListing { id: string; address: string; neighborhood: string; price: number; beds: number; baths: number; sqft: number; url: string; }
8252
+ interface CharterhomesVisitOption { neighborhood: string; label: string; calendlyUrl: string; }
8253
+
8254
+ /**
8255
+ * Live Charter Homes & Neighborhoods for-sale inventory plus real per-neighborhood Calendly
8256
+ * tour-booking links; prefer it when current price/availability or how to book a visit
8257
+ * matters.
8258
+ */
8259
+ interface Unit {
8260
+ /**
8261
+ * Searches Charter Homes' current for-sale inventory by city/neighborhood and minimum bedroom
8262
+ * count. Returns live address, neighborhood, price, beds, baths, sqft and the listing URL.
8263
+ */
8264
+ searchHomes(args?: CharterhomesSearchArgs): Promise<CharterhomesListing[]>;
8265
+
8266
+ /**
8267
+ * Reads Charter's live schedule-a-visit page and returns every neighborhood with its real
8268
+ * Calendly tour-booking URL. Never books anything.
8269
+ */
8270
+ getScheduleVisitOptions(): Promise<CharterhomesVisitOption[]>;
8271
+ }
8272
+ }
8273
+
7944
8274
  declare namespace BowmarkProvider_cheapflights {
7945
8275
  // ── Cheapflights — the unit's own declarations, verbatim ──
7946
8276
  interface KayakQuery {
@@ -11038,6 +11368,41 @@ interface FaceRealitySkincareEstheticianRow {
11038
11368
  }
11039
11369
  }
11040
11370
 
11371
+ declare namespace BowmarkProvider_fieldstonehomes {
11372
+ // ── Fieldstone Homes — the unit's own declarations, verbatim ──
11373
+ interface FieldstonehomesSearchArgs { city?: string; homeType?: string; minPrice?: number; maxPrice?: number; minBeds?: number; minSqft?: number; }
11374
+ interface FieldstonehomesQuickMoveIn { id: string; address: string; city: string; state: string; price: number; homeType: string; planName: string; sqft: number; beds: number; baths: number; availability: string | null; incentive: string | null; imageUrl: string | null; url: string; }
11375
+ interface FieldstonehomesFormOption { value: string; label: string; }
11376
+ interface FieldstonehomesFormField { name: string; label: string; type: string; required: boolean; options?: FieldstonehomesFormOption[]; }
11377
+ interface FieldstonehomesAppointmentForm { action: string; fields: FieldstonehomesFormField[]; }
11378
+ interface FieldstonehomesPrepareAppointmentArgs { firstName: string; lastName: string; email: string; phone?: string; communityId: string; requestedAt: string; message?: string; pageUrl?: string; }
11379
+ interface FieldstonehomesPreparedAppointment { valid: boolean; errors: string[]; action: string; handoffUrl: string; fields: Record<string, string>; }
11380
+
11381
+ /**
11382
+ * Live Fieldstone Homes quick-move-in inventory plus a validated appointment handoff; prefer
11383
+ * it when current availability, incentives or booking details matter.
11384
+ */
11385
+ interface Unit {
11386
+ /**
11387
+ * Searches Fieldstone Homes' current quick-move-in inventory. Filter by city, exact home type,
11388
+ * price, beds or square footage; returns live availability, incentives and the listing URL.
11389
+ */
11390
+ searchQuickMoveIns(args?: FieldstonehomesSearchArgs): Promise<FieldstonehomesQuickMoveIn[]>;
11391
+
11392
+ /**
11393
+ * Reads Fieldstone's current schedule-appointment form and Community Of Interest values
11394
+ * without submitting anything.
11395
+ */
11396
+ getAppointmentFormSchema(): Promise<FieldstonehomesAppointmentForm>;
11397
+
11398
+ /**
11399
+ * Validates a requested Fieldstone appointment against the live form and returns its exact
11400
+ * handoff values. Never submits the POST.
11401
+ */
11402
+ prepareAppointment(args: FieldstonehomesPrepareAppointmentArgs): Promise<FieldstonehomesPreparedAppointment>;
11403
+ }
11404
+ }
11405
+
11041
11406
  declare namespace BowmarkProvider_firstdibs {
11042
11407
  // ── 1stDibs — the unit's own declarations, verbatim ──
11043
11408
  interface FirstdibsSearchResult {
@@ -14936,6 +15301,26 @@ interface ihgRow { id: string; brandCode: string; availabilityStatus: string; lo
14936
15301
  }
14937
15302
  }
14938
15303
 
15304
+ declare namespace BowmarkProvider_inspirecommunities {
15305
+ // ── Inspire Communities — the unit's own declarations, verbatim ──
15306
+ interface InspirecommunitiesSearchHomesArgs { state?: string; community?: string; minBeds?: number; minBaths?: number; minPrice?: number; maxPrice?: number; listingType?: "sale" | "rent"; limit?: number; }
15307
+ interface InspirecommunitiesHome { id: string; address: string; community: string; location: string; price: number; beds: number; baths: number; sqft: number; listingType: "sale" | "rent"; detailUrl: string; tourHandoffUrl: string | null; }
15308
+ interface InspirecommunitiesSearchHomesResult { total: number; pages: number; homes: InspirecommunitiesHome[]; }
15309
+
15310
+ /**
15311
+ * Searches Inspire Communities' live manufactured-home inventory and returns the real listing
15312
+ * plus its schedule-a-tour handoff.
15313
+ */
15314
+ interface Unit {
15315
+ /**
15316
+ * Searches Inspire Communities' current manufactured homes by state, community, beds, baths,
15317
+ * price and sale or rent status. Returns live inventory, detail URLs and a read-only
15318
+ * schedule-a-tour handoff URL.
15319
+ */
15320
+ searchHomes(args?: InspirecommunitiesSearchHomesArgs): Promise<InspirecommunitiesSearchHomesResult>;
15321
+ }
15322
+ }
15323
+
14939
15324
  declare namespace BowmarkProvider_instagram {
14940
15325
  // ── Instagram — the unit's own declarations, verbatim ──
14941
15326
  interface InstagramProfile {
@@ -16481,6 +16866,71 @@ interface KaleidescapeFindDealersOptions {
16481
16866
  }
16482
16867
  }
16483
16868
 
16869
+ declare namespace BowmarkProvider_kalshi {
16870
+ // ── Kalshi — the unit's own declarations, verbatim ──
16871
+ interface KalshiMarket {
16872
+ ticker: string;
16873
+ eventTicker: string;
16874
+ title: string;
16875
+ subtitle: string;
16876
+ status: string;
16877
+ marketType: string;
16878
+ openTime: string;
16879
+ closeTime: string;
16880
+ yesBid: string;
16881
+ yesAsk: string;
16882
+ noBid: string;
16883
+ noAsk: string;
16884
+ lastPrice: string;
16885
+ volume: string;
16886
+ volume24h: string;
16887
+ openInterest: string;
16888
+ liquidity: string;
16889
+ rules: string;
16890
+ }
16891
+ interface KalshiGetMarketsOptions {
16892
+ status?: string;
16893
+ series_ticker?: string;
16894
+ event_ticker?: string;
16895
+ limit?: number;
16896
+ cursor?: string;
16897
+ }
16898
+ interface KalshiGetMarketsResult {
16899
+ markets: KalshiMarket[];
16900
+ cursor: string;
16901
+ warnings: string[];
16902
+ }
16903
+
16904
+ /**
16905
+ * Kalshi's own public trading API, keyless. Built: list/filter live prediction-market
16906
+ * contracts (getMarkets) and read one market's full detail by ticker (getMarket) — prices,
16907
+ * volume, open interest, status, close time.
16908
+ */
16909
+ interface Unit {
16910
+ /**
16911
+ * Lists Kalshi's own live prediction-market contracts off its public, keyless REST endpoint —
16912
+ * each market's ticker, title, status, open/close time, yes/no bid and ask prices (as strings,
16913
+ * e.g. "0.0570"), last price, volume, 24h volume, open interest and liquidity.
16914
+ * `options.status` filters to `open`/`closed`/`settled`/`unopened`; `options.series_ticker` or
16915
+ * `options.event_ticker` narrows to one series or event (found via a series/event browse
16916
+ * elsewhere — this provider does not wrap `/series` or `/events`); `options.limit` (1-1000,
16917
+ * default 100) and `options.cursor` (Kalshi's own opaque token, from a prior response's
16918
+ * `cursor`) page through results. This is the locator: a caller without an existing ticker
16919
+ * starts here, then reads one market's full detail with `getMarket`.
16920
+ */
16921
+ getMarkets(options?: KalshiGetMarketsOptions): Promise<KalshiGetMarketsResult>;
16922
+
16923
+ /**
16924
+ * Reads one Kalshi market's full detail by its own ticker (e.g. `"KXWCGROUPBOTTOM-26L-BRA"`,
16925
+ * found via `getMarkets`) off Kalshi's public, keyless REST endpoint — title, subtitle,
16926
+ * status, open/close time, current yes/no bid and ask prices, last price, volume, open
16927
+ * interest, liquidity and the primary rules text governing settlement. THROWS on an unknown
16928
+ * ticker (404) or a rate limit (429).
16929
+ */
16930
+ getMarket(ticker: string): Promise<KalshiMarket>;
16931
+ }
16932
+ }
16933
+
16484
16934
  declare namespace BowmarkProvider_kayak {
16485
16935
  // ── Kayak — the unit's own declarations, verbatim ──
16486
16936
  interface KayakQuery {
@@ -17787,6 +18237,30 @@ interface LufthansaBaggageAllowance {
17787
18237
  }
17788
18238
  }
17789
18239
 
18240
+ declare namespace BowmarkProvider_luggageforward {
18241
+ // ── Luggage Forward — the unit's own declarations, verbatim ──
18242
+ interface LuggageforwardLuggageType { id: string; name: string; maxWeight: string | null; maxDimensions: string | null; }
18243
+ interface LuggageforwardQuoteItem { name: string; quantity: number; }
18244
+ interface LuggageforwardQuoteArgs { items?: LuggageforwardQuoteItem[]; }
18245
+ interface LuggageforwardQuoteOption { service: string; deliveryDate: string | null; businessDays: string | null; price: number; currency: string; items: LuggageforwardQuoteItem[]; handoffUrl: string; }
18246
+
18247
+ /**
18248
+ * Live Luggage Forward shipping price tiers and luggage limits; prefer it when current
18249
+ * door-to-door luggage shipping prices or delivery speeds matter.
18250
+ */
18251
+ interface Unit {
18252
+ /**
18253
+ * Returns Luggage Forward's current public shipping prices across every available speed tier
18254
+ * for selected luggage. Defaults to one Standard Bag; use listLuggageTypes for live luggage
18255
+ * names and limits.
18256
+ */
18257
+ getQuoteOptions(args?: LuggageforwardQuoteArgs): Promise<LuggageforwardQuoteOption[]>;
18258
+
18259
+ /** Lists Luggage Forward's live luggage categories with their maximum weight and dimensions. */
18260
+ listLuggageTypes(): Promise<LuggageforwardLuggageType[]>;
18261
+ }
18262
+ }
18263
+
17790
18264
  declare namespace BowmarkProvider_lululemon {
17791
18265
  // ── lululemon — the unit's own declarations, verbatim ──
17792
18266
  interface LululemonVariant {
@@ -19273,6 +19747,32 @@ interface medicareGetPlanQuery {
19273
19747
  }
19274
19748
  }
19275
19749
 
19750
+ declare namespace BowmarkProvider_mercari {
19751
+ // ── Mercari — the unit's own declarations, verbatim ──
19752
+ interface MercariSearchResult {
19753
+ itemId: string;
19754
+ name: string;
19755
+ price: number;
19756
+ wasPrice: number | null;
19757
+ brand: string | null;
19758
+ size: string | null;
19759
+ url: string;
19760
+ }
19761
+
19762
+ /**
19763
+ * Large peer-to-peer resale marketplace (clothing, electronics, collectibles) — keyword search
19764
+ * over live listings with real, current prices.
19765
+ */
19766
+ interface Unit {
19767
+ /**
19768
+ * Runs a Mercari US keyword search the way mercari.com's own search box does and returns each
19769
+ * matching listing — item id, name, current price, the crossed-out original price when
19770
+ * discounted, brand, size and the listing's own mercari.com URL.
19771
+ */
19772
+ search(query: string | { query: string; limit?: number }): Promise<MercariSearchResult[]>;
19773
+ }
19774
+ }
19775
+
19276
19776
  declare namespace BowmarkProvider_mergify {
19277
19777
  // ── Mergify — the unit's own declarations, verbatim ──
19278
19778
  interface mergifyBatch {
@@ -20535,6 +21035,135 @@ interface StoreStock {
20535
21035
  }
20536
21036
  }
20537
21037
 
21038
+ declare namespace BowmarkProvider_nfa_futures_org {
21039
+ // ── NFA BASIC — the unit's own declarations, verbatim ──
21040
+ interface NfaEntity {
21041
+ nfaId: string; // "0229152"
21042
+ name: string;
21043
+ membershipStatus: string | null; // e.g. "NFA MEMBER APPROVED, SWAP DEALER REGISTERED"
21044
+ registrationTypes: string | null; // e.g. "Swap Dealer, Exempt Commodity Trading Advisor"
21045
+ hasRegulatoryActions: boolean;
21046
+ entityToken: string; // BASIC's own encrypted per-search token
21047
+ profileUrl: string; // this entity's BasicNet profile page
21048
+ }
21049
+
21050
+ /**
21051
+ * NFA's own BASIC registry — search a firm or individual by name, or look one up by NFA ID,
21052
+ * for its current membership status, registration types and whether it carries regulatory
21053
+ * actions.
21054
+ */
21055
+ interface Unit {
21056
+ /**
21057
+ * Firms NFA's own BASIC registry lists for a name query (e.g. "JPMorgan Chase Bank") — NFA ID,
21058
+ * membership status, registration types and whether NFA shows any regulatory action against
21059
+ * it. The door for a caller who only knows the firm's name.
21060
+ */
21061
+ searchFirms(name: string): Promise<NfaEntity[]>;
21062
+
21063
+ /**
21064
+ * Individuals NFA's own BASIC registry lists for a name query (e.g. "Smith") — NFA ID,
21065
+ * membership status, registration types and whether NFA shows any regulatory action against
21066
+ * them. The door for a caller who only knows the person's name.
21067
+ */
21068
+ searchIndividuals(name: string): Promise<NfaEntity[]>;
21069
+
21070
+ /**
21071
+ * One firm or individual's current NFA membership status and registration types, by NFA ID
21072
+ * (e.g. "0229152"), or by pasting a BasicNet profile URL (its "nfaid" query parameter is read
21073
+ * for you). THROWS if BASIC lists no registrant under that id.
21074
+ */
21075
+ lookupByNfaId(nfaId: string): Promise<NfaEntity>;
21076
+ }
21077
+ }
21078
+
21079
+ declare namespace BowmarkProvider_npmjs {
21080
+ // ── npm — the unit's own declarations, verbatim ──
21081
+ interface npmjsDownloads {
21082
+ package: string;
21083
+ downloads: number;
21084
+ start: string; // ISO date
21085
+ end: string; // ISO date
21086
+ }
21087
+
21088
+ /**
21089
+ * npmjs.com's own public download-counts API — real weekly/daily/monthly download totals (or a
21090
+ * custom date range) for any published npm package, scoped or not.
21091
+ */
21092
+ interface Unit {
21093
+ /**
21094
+ * The real download count for an npm package, straight off npmjs.com's own public
21095
+ * download-counts API — the same number npmjs.com's own package page shows. `period` is
21096
+ * `"last-day"`, `"last-week"` (default) or `"last-month"`, or a custom
21097
+ * `"YYYY-MM-DD:YYYY-MM-DD"` range. Works on scoped packages (`"@babel/core"`) exactly as on
21098
+ * unscoped ones.
21099
+ */
21100
+ getDownloads(packageName: string, period?: string): Promise<npmjsDownloads>;
21101
+ }
21102
+ }
21103
+
21104
+ declare namespace BowmarkProvider_nurturelife {
21105
+ // ── Nurture Life — the unit's own declarations, verbatim ──
21106
+ interface NurtureLifeMealPlan {
21107
+ slug: string;
21108
+ name: string;
21109
+ threshold: number;
21110
+ pricePerItem: number;
21111
+ shippingCost: number;
21112
+ discount: number;
21113
+ tag: string | null;
21114
+ }
21115
+
21116
+ interface GetMealPlansResult {
21117
+ plans: NurtureLifeMealPlan[];
21118
+ }
21119
+
21120
+ interface NurtureLifeBundleItem {
21121
+ sku: string;
21122
+ name: string;
21123
+ quantity: number;
21124
+ categoryName: string;
21125
+ }
21126
+
21127
+ interface NurtureLifeBundle {
21128
+ slug: string;
21129
+ name: string;
21130
+ defaultPlanSlug: string | null;
21131
+ items: NurtureLifeBundleItem[];
21132
+ }
21133
+
21134
+ interface GetMealBundleArgs {
21135
+ bundleSlug?: string;
21136
+ }
21137
+
21138
+ interface GetMealBundleResult {
21139
+ bundles: NurtureLifeBundle[];
21140
+ }
21141
+
21142
+ /**
21143
+ * Kids-meal delivery subscription. getMealPlans is live — the site's own real, current
21144
+ * per-plan pricing (7/10/14/21-meal tiers, per-meal price and discount) with no email or ZIP
21145
+ * required. getMealBundle returns the site's current curated meal bundles by real SKU and
21146
+ * name, never a stale or guessed list.
21147
+ */
21148
+ interface Unit {
21149
+ /**
21150
+ * Returns Nurture Life's real, live plan tiers (7/10/14/21 meals) with each tier's actual
21151
+ * current per-meal price, dollar discount and flat shipping cost — the same numbers the site's
21152
+ * own onboarding funnel computes, with no email or ZIP submitted. Not a marketing-page range
21153
+ * and not a guess off an old blog post.
21154
+ */
21155
+ getMealPlans(): Promise<GetMealPlansResult>;
21156
+
21157
+ /**
21158
+ * Returns Nurture Life's currently-offered curated meal bundles with their real, current meal
21159
+ * composition by SKU and name — pass `bundleSlug` (e.g. "picky-eater-bundle") for one bundle,
21160
+ * or omit it to list every bundle the site currently offers. Recovered from the site's own
21161
+ * bundle catalog API, not scraped from stale marketing copy.
21162
+ */
21163
+ getMealBundle(args: GetMealBundleArgs): Promise<GetMealBundleResult>;
21164
+ }
21165
+ }
21166
+
20538
21167
  declare namespace BowmarkProvider_nutrafol {
20539
21168
  // ── Nutrafol — the unit's own declarations, verbatim ──
20540
21169
  interface RootCause {
@@ -21654,6 +22283,43 @@ interface platform_claude_comDocLink {
21654
22283
  }
21655
22284
  }
21656
22285
 
22286
+ declare namespace BowmarkProvider_polymarket {
22287
+ // ── Polymarket — the unit's own declarations, verbatim ──
22288
+ interface polymarketMarket {
22289
+ slug: string;
22290
+ question: string;
22291
+ outcomes: string[];
22292
+ outcomePrices: number[];
22293
+ volume: number;
22294
+ liquidity: number | null;
22295
+ endDate: string | null;
22296
+ active: boolean;
22297
+ closed: boolean;
22298
+ }
22299
+
22300
+ /**
22301
+ * Polymarket's own prediction markets — search by keyword or browse the newest, and read one
22302
+ * market's question, live outcome prices, volume and status by slug.
22303
+ */
22304
+ interface Unit {
22305
+ /**
22306
+ * Searches Polymarket's own markets by keyword, e.g. "election" or "bitcoin" — the same search
22307
+ * its own site uses. Omit `query` to list the newest active markets instead. Each row carries
22308
+ * the market's slug (what `getMarket` takes), its question, its outcomes and their current
22309
+ * prices (0-1 implied probabilities), volume, liquidity (when the door carries it) and whether
22310
+ * it is still active/open. `limit` caps how many rows come back (default 20, capped at 100).
22311
+ */
22312
+ search(query?: string, limit?: number): Promise<polymarketMarket[]>;
22313
+
22314
+ /**
22315
+ * Reads one Polymarket market by its slug (the id `search` returns, e.g.
22316
+ * "xi-jinping-out-before-2027") — its question, outcomes, current outcome prices, volume,
22317
+ * liquidity, end date and open/closed status, straight from the site's own API.
22318
+ */
22319
+ getMarket(slug: string): Promise<polymarketMarket>;
22320
+ }
22321
+ }
22322
+
21657
22323
  declare namespace BowmarkProvider_poshmark {
21658
22324
  // ── Poshmark — the unit's own declarations, verbatim ──
21659
22325
  interface PoshmarkSupportArticle {
@@ -26587,6 +27253,54 @@ interface TrekTravelSearchFilters {
26587
27253
  }
26588
27254
  }
26589
27255
 
27256
+ declare namespace BowmarkProvider_trojanstorage {
27257
+ // ── Trojan Storage — the unit's own declarations, verbatim ──
27258
+ // Trojan Storage's OWN shapes — not a capability contract.
27259
+
27260
+ interface TrojanstorageFacility {
27261
+ facilityId: string; // the id getFacilityUnits takes
27262
+ name: string; url: string;
27263
+ street: string; city: string; state: string; zip: string; phone: string;
27264
+ lat: number | null; lng: number | null;
27265
+ }
27266
+
27267
+ interface TrojanstorageFacilitySearchFilters { state?: string; city?: string }
27268
+
27269
+ interface TrojanstorageUnit {
27270
+ unitGroupId: string;
27271
+ name: string; // e.g. "5x5 Upstairs Storage"
27272
+ features: string[];
27273
+ areaSqFt: number | null;
27274
+ regularPrice: number | null;
27275
+ promoPrice: number | null; // null when no promo is currently active
27276
+ promoLabel: string | null;
27277
+ availableCount: number | null;
27278
+ moveInUrl: string; // Quikstor handoff URL, price baked in
27279
+ }
27280
+
27281
+ /**
27282
+ * Reads Trojan Storage's own live per-facility unit pricing and availability — real size,
27283
+ * features, regular and current promo price, and a pre-computed Quikstor move-in handoff URL
27284
+ * with that exact price baked in — off the site's own storage-essentials REST API, the way its
27285
+ * facility pages render the same data client-side.
27286
+ */
27287
+ interface Unit {
27288
+ /**
27289
+ * Lists every Trojan Storage facility (56 today), optionally narrowed by US state or city.
27290
+ * Each row carries the facilityId getFacilityUnits() takes, plus address, phone and lat/lng.
27291
+ */
27292
+ listFacilities(filters?: TrojanstorageFacilitySearchFilters): Promise<TrojanstorageFacility[]>;
27293
+
27294
+ /**
27295
+ * Reads one facility's live unit inventory: real size, features, regular price, any active
27296
+ * promo and its promo'd price, current availability, and a pre-computed Quikstor move-in URL
27297
+ * with that exact price baked in. THROWS on an unknown facilityId — call listFacilities()
27298
+ * first.
27299
+ */
27300
+ getFacilityUnits(facilityId: string): Promise<TrojanstorageUnit[]>;
27301
+ }
27302
+ }
27303
+
26590
27304
  declare namespace BowmarkProvider_trophysignaturehomes {
26591
27305
  // ── Trophy Signature Homes — the unit's own declarations, verbatim ──
26592
27306
  // Trophy Signature Homes' OWN shapes — not a capability contract.
@@ -27837,16 +28551,18 @@ interface XpressWaitTime {
27837
28551
  }
27838
28552
 
27839
28553
  /**
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.
28554
+ * Reads the Xpress Wellness / Integrity Urgent Care clinic roster and each clinic's live
28555
+ * healow wait-time / check-in widget — no key, no browser.
27842
28556
  */
27843
28557
  interface Unit {
27844
28558
  /**
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.
28559
+ * Lists Xpress Wellness / Integrity Urgent Care clinicsrecovered by confirming each healow
28560
+ * facility_id's own brand, then matching it against the site's current roster for a name and
28561
+ * address with name, address, the clinic's own detail page when matched and the healow
28562
+ * check-in widget URL + facility_id. Takes nothing. phone is always null (neither source
28563
+ * publishes one any more). The facilityId it returns is what checkWaitTime takes. THROWS
28564
+ * rather than returning [] when no facility_id resolves to a confirmed clinic — the roster is
28565
+ * never honestly empty.
27850
28566
  */
27851
28567
  listFacilities(): Promise<XpressFacility[]>;
27852
28568
 
@@ -28980,9 +29696,11 @@ interface ShopifyCart {
28980
29696
  * wire — the id in the manifest, the trace, the namespace and a script are one
28981
29697
  * string, so there is no camelCase alias to be uncertain about. */
28982
29698
  interface BowmarkProviders {
29699
+ a1storage: BowmarkProvider_a1storage.Unit;
28983
29700
  aa: BowmarkProvider_aa.Unit;
28984
29701
  aauto: BowmarkProvider_aauto.Unit;
28985
29702
  abercrombie: BowmarkProvider_abercrombie.Unit;
29703
+ acerentacar: BowmarkProvider_acerentacar.Unit;
28986
29704
  achosahw: BowmarkProvider_achosahw.Unit;
28987
29705
  acqualinaresort: BowmarkProvider_acqualinaresort.Unit;
28988
29706
  aiper: BowmarkProvider_aiper.Unit;
@@ -29056,6 +29774,7 @@ interface BowmarkProviders {
29056
29774
  capitalbrands: BowmarkProvider_capitalbrands.Unit;
29057
29775
  caraway: BowmarkProvider_caraway.Unit;
29058
29776
  carepatrol: BowmarkProvider_carepatrol.Unit;
29777
+ carlsgolfland: BowmarkProvider_carlsgolfland.Unit;
29059
29778
  carmelrealtycompany: BowmarkProvider_carmelrealtycompany.Unit;
29060
29779
  carolefabrics: BowmarkProvider_carolefabrics.Unit;
29061
29780
  carpetlandusa: BowmarkProvider_carpetlandusa.Unit;
@@ -29065,6 +29784,8 @@ interface BowmarkProviders {
29065
29784
  cbhhomes: BowmarkProvider_cbhhomes.Unit;
29066
29785
  champxpress: BowmarkProvider_champxpress.Unit;
29067
29786
  chantecaille: BowmarkProvider_chantecaille.Unit;
29787
+ chappellet: BowmarkProvider_chappellet.Unit;
29788
+ charterhomes: BowmarkProvider_charterhomes.Unit;
29068
29789
  cheapflights: BowmarkProvider_cheapflights.Unit;
29069
29790
  chesmar: BowmarkProvider_chesmar.Unit;
29070
29791
  chipotle: BowmarkProvider_chipotle.Unit;
@@ -29107,6 +29828,7 @@ interface BowmarkProviders {
29107
29828
  executivehomecare: BowmarkProvider_executivehomecare.Unit;
29108
29829
  extraspace: BowmarkProvider_extraspace.Unit;
29109
29830
  facerealityskincare: BowmarkProvider_facerealityskincare.Unit;
29831
+ fieldstonehomes: BowmarkProvider_fieldstonehomes.Unit;
29110
29832
  firstdibs: BowmarkProvider_firstdibs.Unit;
29111
29833
  fivebelow: BowmarkProvider_fivebelow.Unit;
29112
29834
  fivestarbathsolutions: BowmarkProvider_fivestarbathsolutions.Unit;
@@ -29150,6 +29872,7 @@ interface BowmarkProviders {
29150
29872
  ibuypower: BowmarkProvider_ibuypower.Unit;
29151
29873
  identitygroup: BowmarkProvider_identitygroup.Unit;
29152
29874
  ihg: BowmarkProvider_ihg.Unit;
29875
+ inspirecommunities: BowmarkProvider_inspirecommunities.Unit;
29153
29876
  instagram: BowmarkProvider_instagram.Unit;
29154
29877
  insurify: BowmarkProvider_insurify.Unit;
29155
29878
  interiordefine: BowmarkProvider_interiordefine.Unit;
@@ -29163,6 +29886,7 @@ interface BowmarkProviders {
29163
29886
  junkluggers: BowmarkProvider_junkluggers.Unit;
29164
29887
  justinwine: BowmarkProvider_justinwine.Unit;
29165
29888
  kaleidescape: BowmarkProvider_kaleidescape.Unit;
29889
+ kalshi: BowmarkProvider_kalshi.Unit;
29166
29890
  kayak: BowmarkProvider_kayak.Unit;
29167
29891
  keepa: BowmarkProvider_keepa.Unit;
29168
29892
  kingsdown: BowmarkProvider_kingsdown.Unit;
@@ -29181,6 +29905,7 @@ interface BowmarkProviders {
29181
29905
  louvershop: BowmarkProvider_louvershop.Unit;
29182
29906
  lovelybride: BowmarkProvider_lovelybride.Unit;
29183
29907
  lufthansa: BowmarkProvider_lufthansa.Unit;
29908
+ luggageforward: BowmarkProvider_luggageforward.Unit;
29184
29909
  lululemon: BowmarkProvider_lululemon.Unit;
29185
29910
  maidenhome: BowmarkProvider_maidenhome.Unit;
29186
29911
  mailchimp: BowmarkProvider_mailchimp.Unit;
@@ -29191,6 +29916,7 @@ interface BowmarkProviders {
29191
29916
  mcp_so: BowmarkProvider_mcp_so.Unit;
29192
29917
  medicalguardian: BowmarkProvider_medicalguardian.Unit;
29193
29918
  medicare: BowmarkProvider_medicare.Unit;
29919
+ mercari: BowmarkProvider_mercari.Unit;
29194
29920
  mergify: BowmarkProvider_mergify.Unit;
29195
29921
  microcenter: BowmarkProvider_microcenter.Unit;
29196
29922
  millisaraylar: BowmarkProvider_millisaraylar.Unit;
@@ -29207,6 +29933,9 @@ interface BowmarkProviders {
29207
29933
  nationalbusinessfurniture: BowmarkProvider_nationalbusinessfurniture.Unit;
29208
29934
  newageproducts: BowmarkProvider_newageproducts.Unit;
29209
29935
  newegg: BowmarkProvider_newegg.Unit;
29936
+ nfa_futures_org: BowmarkProvider_nfa_futures_org.Unit;
29937
+ npmjs: BowmarkProvider_npmjs.Unit;
29938
+ nurturelife: BowmarkProvider_nurturelife.Unit;
29210
29939
  nutrafol: BowmarkProvider_nutrafol.Unit;
29211
29940
  nvisioncenters: BowmarkProvider_nvisioncenters.Unit;
29212
29941
  oanda: BowmarkProvider_oanda.Unit;
@@ -29222,6 +29951,7 @@ interface BowmarkProviders {
29222
29951
  pirateship: BowmarkProvider_pirateship.Unit;
29223
29952
  pizzahut: BowmarkProvider_pizzahut.Unit;
29224
29953
  platform_claude_com: BowmarkProvider_platform_claude_com.Unit;
29954
+ polymarket: BowmarkProvider_polymarket.Unit;
29225
29955
  poshmark: BowmarkProvider_poshmark.Unit;
29226
29956
  positivegrid: BowmarkProvider_positivegrid.Unit;
29227
29957
  premierbuildings: BowmarkProvider_premierbuildings.Unit;
@@ -29281,6 +30011,7 @@ interface BowmarkProviders {
29281
30011
  travelinsured: BowmarkProvider_travelinsured.Unit;
29282
30012
  trawickinternational: BowmarkProvider_trawickinternational.Unit;
29283
30013
  trektravel: BowmarkProvider_trektravel.Unit;
30014
+ trojanstorage: BowmarkProvider_trojanstorage.Unit;
29284
30015
  trophysignaturehomes: BowmarkProvider_trophysignaturehomes.Unit;
29285
30016
  twiddy: BowmarkProvider_twiddy.Unit;
29286
30017
  uhc_smallbusiness: BowmarkProvider_uhc_smallbusiness.Unit;
@@ -81053,6 +81784,7 @@ interface BowmarkLibrary {
81053
81784
  mcp_registry: BowmarkCapability_mcp_registry.Unit;
81054
81785
  music: BowmarkCapability_music.Unit;
81055
81786
  pcparts: BowmarkCapability_pcparts.Unit;
81787
+ pet_boarding: BowmarkCapability_pet_boarding.Unit;
81056
81788
  phone_price: BowmarkCapability_phone_price.Unit;
81057
81789
  phone_trade_in: BowmarkCapability_phone_trade_in.Unit;
81058
81790
  pricing: BowmarkCapability_pricing.Unit;