@bowmark/web 1.24.0 → 1.24.1
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.
- package/dist/generated/library.d.ts +141 -127
- package/dist/generated/validators.js +151 -203
- package/package.json +1 -1
|
@@ -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:
|
|
9
|
-
//
|
|
8
|
+
// Manifest version: 83b6073de78d83a7366cd17844242d5703320faa6ea88973baea85a98639f7d0
|
|
9
|
+
// 51 capabilities, 419 providers, 1122 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
|
|
@@ -2359,7 +2359,13 @@ type RetailOffer = {
|
|
|
2359
2359
|
// across stores as one normalized fact
|
|
2360
2360
|
}
|
|
2361
2361
|
type RetailSearchResult = {
|
|
2362
|
-
results: RetailOffer[] // ONE query across ALL stores, price-sorted (cheapest first)
|
|
2362
|
+
results: RetailOffer[] // ONE query across ALL stores, price-sorted (cheapest first).
|
|
2363
|
+
// These are each STORE'S OWN keyword results, so a search for
|
|
2364
|
+
// a product also returns its ACCESSORIES and its lookalikes —
|
|
2365
|
+
// and because the list is price-sorted, those sort ABOVE it.
|
|
2366
|
+
// "AirPods Pro 3" puts ~20 cases from $8.50 ahead of the
|
|
2367
|
+
// $199 earbuds. FILTER ON title before reading a cheapest
|
|
2368
|
+
// price off the top row.
|
|
2363
2369
|
warnings: string[] // always present; names any store that did not answer. A
|
|
2364
2370
|
// store named here priced NOTHING, so read this before
|
|
2365
2371
|
// concluding a store has no stock or a worse price
|
|
@@ -2374,17 +2380,22 @@ type CallOptions = {
|
|
|
2374
2380
|
/**
|
|
2375
2381
|
* General-merchandise retail across Walmart, Target and Best Buy — one keyword search, fanned
|
|
2376
2382
|
* out in parallel and returned price-sorted, so an agent can answer 'where can I actually buy
|
|
2377
|
-
* this and what does it cost' without querying each store by hand.
|
|
2378
|
-
*
|
|
2379
|
-
*
|
|
2383
|
+
* this and what does it cost' without querying each store by hand. Rows are the stores' own
|
|
2384
|
+
* keyword results, so accessories and lookalikes come back too and sort above the product;
|
|
2385
|
+
* filter on `title`. Best Buy's leg needs the caller's own Best Buy developer key; without one
|
|
2386
|
+
* the search still returns Walmart + Target with a `warnings` entry naming the drop.
|
|
2380
2387
|
*/
|
|
2381
2388
|
interface Unit {
|
|
2382
2389
|
/**
|
|
2383
2390
|
* Searches Walmart, Target and Best Buy in parallel for a keyword and returns one price-sorted
|
|
2384
|
-
* list of offers across all stores, each tagged with which store it's from.
|
|
2385
|
-
*
|
|
2386
|
-
*
|
|
2387
|
-
*
|
|
2391
|
+
* list of offers across all stores, each tagged with which store it's from. THE ROWS ARE EACH
|
|
2392
|
+
* STORE'S OWN KEYWORD RESULTS, so a product search also returns that product's accessories and
|
|
2393
|
+
* its lookalikes, and price-sorting puts those FIRST — filter on `title` for the thing you
|
|
2394
|
+
* were actually asked about before reading a price off the top row. Everything you need is in
|
|
2395
|
+
* one call; a store returning accessories is not a reason to go query that store directly.
|
|
2396
|
+
* `warnings` names any store that did not answer — including Best Buy when the caller holds no
|
|
2397
|
+
* Best Buy developer key — so a caller can tell a genuinely cheaper/only offer from one where
|
|
2398
|
+
* a store simply didn't answer.
|
|
2388
2399
|
*/
|
|
2389
2400
|
search(args: { query: string }): Promise<RetailSearchResult>;
|
|
2390
2401
|
}
|
|
@@ -2771,6 +2782,52 @@ type CallOptions = {
|
|
|
2771
2782
|
}
|
|
2772
2783
|
}
|
|
2773
2784
|
|
|
2785
|
+
declare namespace BowmarkCapability_stream_channel {
|
|
2786
|
+
// ── Stream channel settings — read and change your own channel's title, category and language — the unit's own declarations, verbatim ──
|
|
2787
|
+
interface ChannelSettings {
|
|
2788
|
+
platform: "twitch" // the default, and the only one today
|
|
2789
|
+
id: string // the site's own id for these broadcast settings
|
|
2790
|
+
title: string // the channel title shown on the stream page
|
|
2791
|
+
language: string // ISO 639-1, e.g. "en"
|
|
2792
|
+
gameId: string // the category; empty strings when never set
|
|
2793
|
+
gameName: string
|
|
2794
|
+
warnings: string[] // always present
|
|
2795
|
+
}
|
|
2796
|
+
interface SetChannelOptions {
|
|
2797
|
+
platform?: "twitch" // the default, and the only one today
|
|
2798
|
+
title?: string // the channel title shown on the stream page
|
|
2799
|
+
language?: string // ISO 639-1, e.g. "en"
|
|
2800
|
+
game?: string // category NAME, e.g. "Wetrix" — not a category id
|
|
2801
|
+
}
|
|
2802
|
+
|
|
2803
|
+
type CallOptions = {
|
|
2804
|
+
timeoutMs?: number // per-provider budget in ms, default 30000, clamped to 1000-55000.
|
|
2805
|
+
// A provider slower than this is DROPPED from the results and
|
|
2806
|
+
// NAMED in warnings — never silently absent
|
|
2807
|
+
}
|
|
2808
|
+
|
|
2809
|
+
/**
|
|
2810
|
+
* Reads and updates a streamer's own Twitch channel settings — the title shown on the stream
|
|
2811
|
+
* page, the category being played, and the language. Needs the streamer's Twitch sign-in: the
|
|
2812
|
+
* first run answers needs_user with a link to sign in, and later runs reuse it.
|
|
2813
|
+
*/
|
|
2814
|
+
interface Unit {
|
|
2815
|
+
/**
|
|
2816
|
+
* Reads the signed-in streamer's own channel settings: the title shown on the stream page, the
|
|
2817
|
+
* category being played, and the language. Takes no arguments. Needs a Twitch sign-in.
|
|
2818
|
+
*/
|
|
2819
|
+
get(): Promise<ChannelSettings>;
|
|
2820
|
+
|
|
2821
|
+
/**
|
|
2822
|
+
* Updates the signed-in streamer's own channel settings and returns them as they now stand.
|
|
2823
|
+
* Pass only the fields you are changing; anything you leave out is left alone. `game` is the
|
|
2824
|
+
* category NAME, e.g. "Wetrix". It cannot set tags — Twitch's own update input has no tags
|
|
2825
|
+
* field. Needs a Twitch sign-in.
|
|
2826
|
+
*/
|
|
2827
|
+
set(options: SetChannelOptions): Promise<ChannelSettings>;
|
|
2828
|
+
}
|
|
2829
|
+
}
|
|
2830
|
+
|
|
2774
2831
|
declare namespace BowmarkCapability_stream_highlights {
|
|
2775
2832
|
// ── Stream highlights — cut a highlight of your own live broadcast — the unit's own declarations, verbatim ──
|
|
2776
2833
|
interface CreateHighlightOptions {
|
|
@@ -8546,107 +8603,6 @@ interface BrixtonCheckoutLink {
|
|
|
8546
8603
|
}
|
|
8547
8604
|
}
|
|
8548
8605
|
|
|
8549
|
-
declare namespace BowmarkProvider_browser_use {
|
|
8550
|
-
// ── Browser Use — the unit's own declarations, verbatim ──
|
|
8551
|
-
type BrowserUseRunStatus = "queued" | "dispatching" | "running" | "completed" | "failed" | "cancelled";
|
|
8552
|
-
|
|
8553
|
-
interface BrowserUseCreateRunArgs {
|
|
8554
|
-
task: string;
|
|
8555
|
-
model?: string; // e.g. "claude-sonnet-5"; absent = vendor default
|
|
8556
|
-
sessionId?: string; // continue a session
|
|
8557
|
-
maxCostUsd?: number;
|
|
8558
|
-
proxyCountryCode?: string; // e.g. "us"
|
|
8559
|
-
}
|
|
8560
|
-
|
|
8561
|
-
interface BrowserUseRunStatusReading { runId: string; status: BrowserUseRunStatus }
|
|
8562
|
-
interface BrowserUseCreatedRun { id: string; status: BrowserUseRunStatus; model: string; sessionId: string; workspaceId: string }
|
|
8563
|
-
|
|
8564
|
-
interface BrowserUseRun {
|
|
8565
|
-
id: string; sessionId: string; task: string; title: string | null; model: string;
|
|
8566
|
-
status: BrowserUseRunStatus; result: string | null; error: string | null;
|
|
8567
|
-
inputTokens: number; outputTokens: number;
|
|
8568
|
-
costUsd: number; // LLM cost only
|
|
8569
|
-
createdAt: string; updatedAt: string;
|
|
8570
|
-
}
|
|
8571
|
-
|
|
8572
|
-
interface BrowserUseRunList { runs: BrowserUseRun[]; hasMore: boolean }
|
|
8573
|
-
interface BrowserUseEvent { id: number; ts: string; type: string; data: Record<string, unknown> }
|
|
8574
|
-
interface BrowserUseEventsPage { events: BrowserUseEvent[]; nextAfter: number | null; hasMore: boolean }
|
|
8575
|
-
interface BrowserUseEventsArgs { runId: string; after?: number; limit?: number }
|
|
8576
|
-
|
|
8577
|
-
interface BrowserUseSession { sessionId: string; latestRunId: string; status: string; title: string | null; createdAt: string; updatedAt: string }
|
|
8578
|
-
|
|
8579
|
-
interface BrowserUseQueueArgs { sessionId: string; text: string; interrupt?: boolean }
|
|
8580
|
-
interface BrowserUseQueuedMessage { id: number; sessionId: string; status: string; mode: string }
|
|
8581
|
-
|
|
8582
|
-
interface BrowserUseBrowser {
|
|
8583
|
-
id: string; status: string;
|
|
8584
|
-
liveUrl: string | null; // interactive; whoever holds it drives the browser
|
|
8585
|
-
agentSessionId: string | null;
|
|
8586
|
-
timeoutAt: string; startedAt: string; finishedAt: string | null;
|
|
8587
|
-
browserCostUsd: number; proxyCostUsd: number; proxyUsedMb: number;
|
|
8588
|
-
}
|
|
8589
|
-
|
|
8590
|
-
/**
|
|
8591
|
-
* Browser Use Cloud's hosted browser agent. Not callable directly: use
|
|
8592
|
-
* `bowmark.browser_agent`, which runs it for you with a private watch link and bills the
|
|
8593
|
-
* session to your account.
|
|
8594
|
-
*/
|
|
8595
|
-
interface Unit {
|
|
8596
|
-
/**
|
|
8597
|
-
* Starts a Browser Use agent run on a natural-language task, optionally continuing an existing
|
|
8598
|
-
* session. Returns immediately; the run executes on Browser Use's cloud for seconds to
|
|
8599
|
-
* minutes. Spends money.
|
|
8600
|
-
*/
|
|
8601
|
-
createRun(args: BrowserUseCreateRunArgs): Promise<BrowserUseCreatedRun>;
|
|
8602
|
-
|
|
8603
|
-
/** Reads one run: status, final result or error, token totals and LLM cost. */
|
|
8604
|
-
getRun(runId: string): Promise<BrowserUseRun>;
|
|
8605
|
-
|
|
8606
|
-
/** The cheap status poll for one run. */
|
|
8607
|
-
getRunStatus(runId: string): Promise<BrowserUseRunStatusReading>;
|
|
8608
|
-
|
|
8609
|
-
/**
|
|
8610
|
-
* A run's step-by-step event stream after a cursor — the agent's reasoning, tool calls, and
|
|
8611
|
-
* the `browser.ready` event carrying the live view url.
|
|
8612
|
-
*/
|
|
8613
|
-
listRunEvents(args: BrowserUseEventsArgs): Promise<BrowserUseEventsPage>;
|
|
8614
|
-
|
|
8615
|
-
/**
|
|
8616
|
-
* Lists every run (agent turn) in a session, newest first, each with its status and LLM cost —
|
|
8617
|
-
* how a session's whole spend is read.
|
|
8618
|
-
*/
|
|
8619
|
-
listSessionRuns(sessionId: string): Promise<BrowserUseRunList>;
|
|
8620
|
-
|
|
8621
|
-
/**
|
|
8622
|
-
* Cancels an in-flight run; idempotent on a finished one. The browser keeps running — stop it
|
|
8623
|
-
* separately.
|
|
8624
|
-
*/
|
|
8625
|
-
cancelRun(runId: string): Promise<BrowserUseRun>;
|
|
8626
|
-
|
|
8627
|
-
/** Reads a session, including the id of its latest run (a queued message becomes a new run). */
|
|
8628
|
-
getSession(sessionId: string): Promise<BrowserUseSession>;
|
|
8629
|
-
|
|
8630
|
-
/**
|
|
8631
|
-
* Sends a follow-up instruction into a session: it runs as the next turn when the current one
|
|
8632
|
-
* ends, or at once with `interrupt: true`.
|
|
8633
|
-
*/
|
|
8634
|
-
queueMessage(args: BrowserUseQueueArgs): Promise<BrowserUseQueuedMessage>;
|
|
8635
|
-
|
|
8636
|
-
/** The cloud browser attached to a session, with its live view url and running cost, or null. */
|
|
8637
|
-
findSessionBrowser(sessionId: string): Promise<BrowserUseBrowser | null>;
|
|
8638
|
-
|
|
8639
|
-
/** Reads one cloud browser: status, live view url, browser and proxy cost. */
|
|
8640
|
-
getBrowser(browserId: string): Promise<BrowserUseBrowser>;
|
|
8641
|
-
|
|
8642
|
-
/**
|
|
8643
|
-
* Stops a cloud browser (cannot be undone). Its cost is then settled down to the time actually
|
|
8644
|
-
* used.
|
|
8645
|
-
*/
|
|
8646
|
-
stopBrowser(browserId: string): Promise<BrowserUseBrowser>;
|
|
8647
|
-
}
|
|
8648
|
-
}
|
|
8649
|
-
|
|
8650
8606
|
declare namespace BowmarkProvider_builder_strucsure_com {
|
|
8651
8607
|
// ── StrucSure Home Warranty — the unit's own declarations, verbatim ──
|
|
8652
8608
|
interface StrucsureRegistrationState {
|
|
@@ -16833,8 +16789,9 @@ interface Photo {
|
|
|
16833
16789
|
getPlace(args: GetPlaceArgs): Promise<GetPlaceResult>;
|
|
16834
16790
|
|
|
16835
16791
|
/**
|
|
16836
|
-
* The reviews Google Maps shows on a business's own panel —
|
|
16837
|
-
* rating, review text and the site's own relative date
|
|
16792
|
+
* The reviews Google Maps shows on a business's own panel — a handful, each with author, star
|
|
16793
|
+
* rating, review text and the site's own relative date; the count varies by response, so this
|
|
16794
|
+
* retries a few times and keeps the longest list seen. A FOURTH reading of searchPlaces' door
|
|
16838
16795
|
* (the same record getPlace reads, one section further in), not the listugcposts route the
|
|
16839
16796
|
* survey planned: that route needed a session token minted by a place-page bootstrap that was
|
|
16840
16797
|
* never cracked, but the same reviews the token would have fetched are already sitting in the
|
|
@@ -19228,13 +19185,15 @@ interface higgsfieldSavedFile {
|
|
|
19228
19185
|
* image URLs together with what Higgsfield quoted. `model` defaults to `soul` ($0.094
|
|
19229
19186
|
* measured); `listModels()` has the rest. Any other key — `aspect_ratio`, `num_images`,
|
|
19230
19187
|
* `input_images`, `output_format` — is passed to Higgsfield untouched, since each model takes
|
|
19231
|
-
* its own. Waits up to `waitMs` (default
|
|
19232
|
-
*
|
|
19233
|
-
*
|
|
19234
|
-
*
|
|
19235
|
-
*
|
|
19236
|
-
*
|
|
19237
|
-
*
|
|
19188
|
+
* its own. Waits up to `waitMs` (default 90000, and never longer than the run's own ceiling)
|
|
19189
|
+
* for a terminal state. A wait always happens — a submit that never watches its own result is
|
|
19190
|
+
* a generation Higgsfield bills us for and nobody is charged for — so the floor is 20000.
|
|
19191
|
+
* **The finished images are copied into your Bowmark account automatically and come back on
|
|
19192
|
+
* `files` — use those URLs, not `imageUrls`.** Higgsfield deletes its own copy after about
|
|
19193
|
+
* seven days; a file in your account is yours until you delete it, and costs storage while you
|
|
19194
|
+
* keep it. Pass `save: false` to skip the copy and take the expiring links. Uses Bowmark's
|
|
19195
|
+
* Higgsfield key and charges the generation to your account; send your own key as the
|
|
19196
|
+
* `x-bowmark-vendor-key-higgsfield` header instead.
|
|
19238
19197
|
*/
|
|
19239
19198
|
generateImage(args: string | { prompt: string; model?: string; waitMs?: number; save?: boolean; [param: string]: unknown }): Promise<higgsfieldGeneration>;
|
|
19240
19199
|
|
|
@@ -19244,12 +19203,13 @@ interface higgsfieldSavedFile {
|
|
|
19244
19203
|
* what Higgsfield quoted. `model` defaults to `hailuo-02-standard` ($0.090 measured, the
|
|
19245
19204
|
* cheapest live video model); Kling 2.1 Master is $1.400, so check `listModels()` or
|
|
19246
19205
|
* `estimateCost` before reaching for a big one. Any other key (`duration`, `resolution`,
|
|
19247
|
-
* `input_images`) is passed to Higgsfield untouched. Waits up to `waitMs` (default
|
|
19248
|
-
*
|
|
19249
|
-
*
|
|
19250
|
-
*
|
|
19251
|
-
*
|
|
19252
|
-
*
|
|
19206
|
+
* `input_images`) is passed to Higgsfield untouched. Waits up to `waitMs` (default 90000,
|
|
19207
|
+
* clamped to the run's own ceiling). Video usually renders past that, which is normal: you get
|
|
19208
|
+
* `settled: false` and the handle, and collect it with `getRequestStatus`. **A call that waits
|
|
19209
|
+
* copies the finished video into your Bowmark account and returns it on `files` — use that
|
|
19210
|
+
* URL, not `videoUrl`**, because Higgsfield deletes its own copy after about seven days. Pass
|
|
19211
|
+
* `save: false` to skip the copy. A call whose wait runs out saves nothing, since nothing has
|
|
19212
|
+
* rendered yet — collect and download it yourself.
|
|
19253
19213
|
*/
|
|
19254
19214
|
generateVideo(args: string | { prompt: string; model?: string; waitMs?: number; save?: boolean; [param: string]: unknown }): Promise<higgsfieldGeneration>;
|
|
19255
19215
|
|
|
@@ -26343,6 +26303,32 @@ interface OliverwineryShippingAvailability {
|
|
|
26343
26303
|
}
|
|
26344
26304
|
}
|
|
26345
26305
|
|
|
26306
|
+
declare namespace BowmarkProvider_onthemarket {
|
|
26307
|
+
// ── OnTheMarket — the unit's own declarations, verbatim ──
|
|
26308
|
+
interface SearchArgs {
|
|
26309
|
+
location: string;
|
|
26310
|
+
type: "sale" | "rent";
|
|
26311
|
+
}
|
|
26312
|
+
|
|
26313
|
+
interface OnTheMarketProperty {
|
|
26314
|
+
id: string;
|
|
26315
|
+
title: string;
|
|
26316
|
+
price?: string;
|
|
26317
|
+
location: string;
|
|
26318
|
+
propertyType?: string; // the site's own labels — read the values off a result, never guess one from prose
|
|
26319
|
+
bedrooms?: number;
|
|
26320
|
+
bathrooms?: number;
|
|
26321
|
+
description?: string;
|
|
26322
|
+
url?: string;
|
|
26323
|
+
}
|
|
26324
|
+
|
|
26325
|
+
/** Search for residential property listings for sale or rent in the UK. */
|
|
26326
|
+
interface Unit {
|
|
26327
|
+
/** Search for residential properties by location and type (sale or rent) */
|
|
26328
|
+
search(args: SearchArgs): Promise<OnTheMarketProperty[]>;
|
|
26329
|
+
}
|
|
26330
|
+
}
|
|
26331
|
+
|
|
26346
26332
|
declare namespace BowmarkProvider_othership {
|
|
26347
26333
|
// ── Othership — the unit's own declarations, verbatim ──
|
|
26348
26334
|
// Othership's OWN shapes — not a capability contract.
|
|
@@ -35069,6 +35055,23 @@ interface YoutubeVideo {
|
|
|
35069
35055
|
thumbnails: { url: string; width: number; height: number }[];
|
|
35070
35056
|
}
|
|
35071
35057
|
|
|
35058
|
+
interface YoutubeComment {
|
|
35059
|
+
commentId: string;
|
|
35060
|
+
author: string;
|
|
35061
|
+
authorChannelId: string | null;
|
|
35062
|
+
text: string;
|
|
35063
|
+
likeCount: string; // YouTube's own abbreviated text, e.g. "316K" — never an exact number
|
|
35064
|
+
publishedTime: string; // YouTube's own relative phrase, e.g. "1 year ago"
|
|
35065
|
+
replyCount: number;
|
|
35066
|
+
isPinned: boolean;
|
|
35067
|
+
isHeartedByCreator: boolean;
|
|
35068
|
+
}
|
|
35069
|
+
|
|
35070
|
+
interface YoutubeCommentPage {
|
|
35071
|
+
comments: YoutubeComment[];
|
|
35072
|
+
continuation: string | null; // pass back as { continuation } for the next page; null on the last
|
|
35073
|
+
}
|
|
35074
|
+
|
|
35072
35075
|
/**
|
|
35073
35076
|
* A YouTube video's own caption transcript, read off the site's own Transcript panel —
|
|
35074
35077
|
* timestamped lines plus the full text as one string. Language selection is not offered yet;
|
|
@@ -35110,6 +35113,16 @@ interface YoutubeVideo {
|
|
|
35110
35113
|
* watch/shorts/embed/live/youtu.be URL, exactly as `getTranscript` takes it.
|
|
35111
35114
|
*/
|
|
35112
35115
|
getVideo(input: { video: string }): Promise<YoutubeVideo>;
|
|
35116
|
+
|
|
35117
|
+
/**
|
|
35118
|
+
* What people said under a video — each comment's author, text, like count (YouTube's own
|
|
35119
|
+
* abbreviated text, e.g. "316K"), how long ago it was posted, its reply count, and whether the
|
|
35120
|
+
* thread is pinned or was hearted by the creator. `sortBy` picks YouTube's own "Top" or
|
|
35121
|
+
* "Newest" ordering (default Top) on the first call; pass back `continuation` alone — no
|
|
35122
|
+
* `video` needed, it is self-contained — to read the next page. `continuation` is null once
|
|
35123
|
+
* there are no more pages.
|
|
35124
|
+
*/
|
|
35125
|
+
listComments(input: { video: string; sortBy?: "top" | "newest" } | { continuation: string }): Promise<YoutubeCommentPage>;
|
|
35113
35126
|
}
|
|
35114
35127
|
}
|
|
35115
35128
|
|
|
@@ -36079,7 +36092,6 @@ interface BowmarkProviders {
|
|
|
36079
36092
|
boydsleep: BowmarkProvider_boydsleep.Unit;
|
|
36080
36093
|
brius: BowmarkProvider_brius.Unit;
|
|
36081
36094
|
brixton: BowmarkProvider_brixton.Unit;
|
|
36082
|
-
browser_use: BowmarkProvider_browser_use.Unit;
|
|
36083
36095
|
builder_strucsure_com: BowmarkProvider_builder_strucsure_com.Unit;
|
|
36084
36096
|
bulletproof: BowmarkProvider_bulletproof.Unit;
|
|
36085
36097
|
bungalow: BowmarkProvider_bungalow.Unit;
|
|
@@ -36307,6 +36319,7 @@ interface BowmarkProviders {
|
|
|
36307
36319
|
nvisioncenters: BowmarkProvider_nvisioncenters.Unit;
|
|
36308
36320
|
oanda: BowmarkProvider_oanda.Unit;
|
|
36309
36321
|
oliverwinery: BowmarkProvider_oliverwinery.Unit;
|
|
36322
|
+
onthemarket: BowmarkProvider_onthemarket.Unit;
|
|
36310
36323
|
othership: BowmarkProvider_othership.Unit;
|
|
36311
36324
|
otto: BowmarkProvider_otto.Unit;
|
|
36312
36325
|
outdoorresearch: BowmarkProvider_outdoorresearch.Unit;
|
|
@@ -88187,6 +88200,7 @@ interface BowmarkLibrary {
|
|
|
88187
88200
|
search: BowmarkCapability_search.Unit;
|
|
88188
88201
|
sheds: BowmarkCapability_sheds.Unit;
|
|
88189
88202
|
shipping: BowmarkCapability_shipping.Unit;
|
|
88203
|
+
stream_channel: BowmarkCapability_stream_channel.Unit;
|
|
88190
88204
|
stream_highlights: BowmarkCapability_stream_highlights.Unit;
|
|
88191
88205
|
tariff: BowmarkCapability_tariff.Unit;
|
|
88192
88206
|
text_to_speech: BowmarkCapability_text_to_speech.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:
|
|
9
|
-
//
|
|
8
|
+
// Manifest version: 83b6073de78d83a7366cd17844242d5703320faa6ea88973baea85a98639f7d0
|
|
9
|
+
// 1104 checked, 20 unchecked.
|
|
10
10
|
export const VALIDATORS = {
|
|
11
|
-
"version": "
|
|
11
|
+
"version": "83b6073de78d83a7366cd17844242d5703320faa6ea88973baea85a98639f7d0",
|
|
12
12
|
"units": {
|
|
13
13
|
"booking_links": {
|
|
14
14
|
"defs": {
|
|
@@ -2895,6 +2895,57 @@ export const VALIDATORS = {
|
|
|
2895
2895
|
]
|
|
2896
2896
|
}
|
|
2897
2897
|
},
|
|
2898
|
+
"stream_channel": {
|
|
2899
|
+
"defs": {
|
|
2900
|
+
"SetChannelOptions": {
|
|
2901
|
+
"k": "object",
|
|
2902
|
+
"props": [
|
|
2903
|
+
{
|
|
2904
|
+
"name": "platform",
|
|
2905
|
+
"schema": {
|
|
2906
|
+
"k": "literal",
|
|
2907
|
+
"v": "twitch"
|
|
2908
|
+
},
|
|
2909
|
+
"optional": true
|
|
2910
|
+
},
|
|
2911
|
+
{
|
|
2912
|
+
"name": "title",
|
|
2913
|
+
"schema": {
|
|
2914
|
+
"k": "string"
|
|
2915
|
+
},
|
|
2916
|
+
"optional": true
|
|
2917
|
+
},
|
|
2918
|
+
{
|
|
2919
|
+
"name": "language",
|
|
2920
|
+
"schema": {
|
|
2921
|
+
"k": "string"
|
|
2922
|
+
},
|
|
2923
|
+
"optional": true
|
|
2924
|
+
},
|
|
2925
|
+
{
|
|
2926
|
+
"name": "game",
|
|
2927
|
+
"schema": {
|
|
2928
|
+
"k": "string"
|
|
2929
|
+
},
|
|
2930
|
+
"optional": true
|
|
2931
|
+
}
|
|
2932
|
+
]
|
|
2933
|
+
}
|
|
2934
|
+
},
|
|
2935
|
+
"functions": {
|
|
2936
|
+
"get": [],
|
|
2937
|
+
"set": [
|
|
2938
|
+
{
|
|
2939
|
+
"name": "options",
|
|
2940
|
+
"schema": {
|
|
2941
|
+
"k": "ref",
|
|
2942
|
+
"name": "SetChannelOptions"
|
|
2943
|
+
},
|
|
2944
|
+
"optional": false
|
|
2945
|
+
}
|
|
2946
|
+
]
|
|
2947
|
+
}
|
|
2948
|
+
},
|
|
2898
2949
|
"stream_highlights": {
|
|
2899
2950
|
"defs": {
|
|
2900
2951
|
"CreateHighlightOptions": {
|
|
@@ -8026,206 +8077,6 @@ export const VALIDATORS = {
|
|
|
8026
8077
|
]
|
|
8027
8078
|
}
|
|
8028
8079
|
},
|
|
8029
|
-
"providers.browser_use": {
|
|
8030
|
-
"defs": {
|
|
8031
|
-
"BrowserUseCreateRunArgs": {
|
|
8032
|
-
"k": "object",
|
|
8033
|
-
"props": [
|
|
8034
|
-
{
|
|
8035
|
-
"name": "task",
|
|
8036
|
-
"schema": {
|
|
8037
|
-
"k": "string"
|
|
8038
|
-
},
|
|
8039
|
-
"optional": false
|
|
8040
|
-
},
|
|
8041
|
-
{
|
|
8042
|
-
"name": "model",
|
|
8043
|
-
"schema": {
|
|
8044
|
-
"k": "string"
|
|
8045
|
-
},
|
|
8046
|
-
"optional": true
|
|
8047
|
-
},
|
|
8048
|
-
{
|
|
8049
|
-
"name": "sessionId",
|
|
8050
|
-
"schema": {
|
|
8051
|
-
"k": "string"
|
|
8052
|
-
},
|
|
8053
|
-
"optional": true
|
|
8054
|
-
},
|
|
8055
|
-
{
|
|
8056
|
-
"name": "maxCostUsd",
|
|
8057
|
-
"schema": {
|
|
8058
|
-
"k": "number"
|
|
8059
|
-
},
|
|
8060
|
-
"optional": true
|
|
8061
|
-
},
|
|
8062
|
-
{
|
|
8063
|
-
"name": "proxyCountryCode",
|
|
8064
|
-
"schema": {
|
|
8065
|
-
"k": "string"
|
|
8066
|
-
},
|
|
8067
|
-
"optional": true
|
|
8068
|
-
}
|
|
8069
|
-
]
|
|
8070
|
-
},
|
|
8071
|
-
"BrowserUseEventsArgs": {
|
|
8072
|
-
"k": "object",
|
|
8073
|
-
"props": [
|
|
8074
|
-
{
|
|
8075
|
-
"name": "runId",
|
|
8076
|
-
"schema": {
|
|
8077
|
-
"k": "string"
|
|
8078
|
-
},
|
|
8079
|
-
"optional": false
|
|
8080
|
-
},
|
|
8081
|
-
{
|
|
8082
|
-
"name": "after",
|
|
8083
|
-
"schema": {
|
|
8084
|
-
"k": "number"
|
|
8085
|
-
},
|
|
8086
|
-
"optional": true
|
|
8087
|
-
},
|
|
8088
|
-
{
|
|
8089
|
-
"name": "limit",
|
|
8090
|
-
"schema": {
|
|
8091
|
-
"k": "number"
|
|
8092
|
-
},
|
|
8093
|
-
"optional": true
|
|
8094
|
-
}
|
|
8095
|
-
]
|
|
8096
|
-
},
|
|
8097
|
-
"BrowserUseQueueArgs": {
|
|
8098
|
-
"k": "object",
|
|
8099
|
-
"props": [
|
|
8100
|
-
{
|
|
8101
|
-
"name": "sessionId",
|
|
8102
|
-
"schema": {
|
|
8103
|
-
"k": "string"
|
|
8104
|
-
},
|
|
8105
|
-
"optional": false
|
|
8106
|
-
},
|
|
8107
|
-
{
|
|
8108
|
-
"name": "text",
|
|
8109
|
-
"schema": {
|
|
8110
|
-
"k": "string"
|
|
8111
|
-
},
|
|
8112
|
-
"optional": false
|
|
8113
|
-
},
|
|
8114
|
-
{
|
|
8115
|
-
"name": "interrupt",
|
|
8116
|
-
"schema": {
|
|
8117
|
-
"k": "boolean"
|
|
8118
|
-
},
|
|
8119
|
-
"optional": true
|
|
8120
|
-
}
|
|
8121
|
-
]
|
|
8122
|
-
}
|
|
8123
|
-
},
|
|
8124
|
-
"functions": {
|
|
8125
|
-
"createRun": [
|
|
8126
|
-
{
|
|
8127
|
-
"name": "args",
|
|
8128
|
-
"schema": {
|
|
8129
|
-
"k": "ref",
|
|
8130
|
-
"name": "BrowserUseCreateRunArgs"
|
|
8131
|
-
},
|
|
8132
|
-
"optional": false
|
|
8133
|
-
}
|
|
8134
|
-
],
|
|
8135
|
-
"getRun": [
|
|
8136
|
-
{
|
|
8137
|
-
"name": "runId",
|
|
8138
|
-
"schema": {
|
|
8139
|
-
"k": "string"
|
|
8140
|
-
},
|
|
8141
|
-
"optional": false
|
|
8142
|
-
}
|
|
8143
|
-
],
|
|
8144
|
-
"getRunStatus": [
|
|
8145
|
-
{
|
|
8146
|
-
"name": "runId",
|
|
8147
|
-
"schema": {
|
|
8148
|
-
"k": "string"
|
|
8149
|
-
},
|
|
8150
|
-
"optional": false
|
|
8151
|
-
}
|
|
8152
|
-
],
|
|
8153
|
-
"listRunEvents": [
|
|
8154
|
-
{
|
|
8155
|
-
"name": "args",
|
|
8156
|
-
"schema": {
|
|
8157
|
-
"k": "ref",
|
|
8158
|
-
"name": "BrowserUseEventsArgs"
|
|
8159
|
-
},
|
|
8160
|
-
"optional": false
|
|
8161
|
-
}
|
|
8162
|
-
],
|
|
8163
|
-
"listSessionRuns": [
|
|
8164
|
-
{
|
|
8165
|
-
"name": "sessionId",
|
|
8166
|
-
"schema": {
|
|
8167
|
-
"k": "string"
|
|
8168
|
-
},
|
|
8169
|
-
"optional": false
|
|
8170
|
-
}
|
|
8171
|
-
],
|
|
8172
|
-
"cancelRun": [
|
|
8173
|
-
{
|
|
8174
|
-
"name": "runId",
|
|
8175
|
-
"schema": {
|
|
8176
|
-
"k": "string"
|
|
8177
|
-
},
|
|
8178
|
-
"optional": false
|
|
8179
|
-
}
|
|
8180
|
-
],
|
|
8181
|
-
"getSession": [
|
|
8182
|
-
{
|
|
8183
|
-
"name": "sessionId",
|
|
8184
|
-
"schema": {
|
|
8185
|
-
"k": "string"
|
|
8186
|
-
},
|
|
8187
|
-
"optional": false
|
|
8188
|
-
}
|
|
8189
|
-
],
|
|
8190
|
-
"queueMessage": [
|
|
8191
|
-
{
|
|
8192
|
-
"name": "args",
|
|
8193
|
-
"schema": {
|
|
8194
|
-
"k": "ref",
|
|
8195
|
-
"name": "BrowserUseQueueArgs"
|
|
8196
|
-
},
|
|
8197
|
-
"optional": false
|
|
8198
|
-
}
|
|
8199
|
-
],
|
|
8200
|
-
"findSessionBrowser": [
|
|
8201
|
-
{
|
|
8202
|
-
"name": "sessionId",
|
|
8203
|
-
"schema": {
|
|
8204
|
-
"k": "string"
|
|
8205
|
-
},
|
|
8206
|
-
"optional": false
|
|
8207
|
-
}
|
|
8208
|
-
],
|
|
8209
|
-
"getBrowser": [
|
|
8210
|
-
{
|
|
8211
|
-
"name": "browserId",
|
|
8212
|
-
"schema": {
|
|
8213
|
-
"k": "string"
|
|
8214
|
-
},
|
|
8215
|
-
"optional": false
|
|
8216
|
-
}
|
|
8217
|
-
],
|
|
8218
|
-
"stopBrowser": [
|
|
8219
|
-
{
|
|
8220
|
-
"name": "browserId",
|
|
8221
|
-
"schema": {
|
|
8222
|
-
"k": "string"
|
|
8223
|
-
},
|
|
8224
|
-
"optional": false
|
|
8225
|
-
}
|
|
8226
|
-
]
|
|
8227
|
-
}
|
|
8228
|
-
},
|
|
8229
8080
|
"providers.builder_strucsure_com": {
|
|
8230
8081
|
"defs": {},
|
|
8231
8082
|
"functions": {
|
|
@@ -22831,6 +22682,51 @@ export const VALIDATORS = {
|
|
|
22831
22682
|
]
|
|
22832
22683
|
}
|
|
22833
22684
|
},
|
|
22685
|
+
"providers.onthemarket": {
|
|
22686
|
+
"defs": {
|
|
22687
|
+
"SearchArgs": {
|
|
22688
|
+
"k": "object",
|
|
22689
|
+
"props": [
|
|
22690
|
+
{
|
|
22691
|
+
"name": "location",
|
|
22692
|
+
"schema": {
|
|
22693
|
+
"k": "string"
|
|
22694
|
+
},
|
|
22695
|
+
"optional": false
|
|
22696
|
+
},
|
|
22697
|
+
{
|
|
22698
|
+
"name": "type",
|
|
22699
|
+
"schema": {
|
|
22700
|
+
"k": "union",
|
|
22701
|
+
"of": [
|
|
22702
|
+
{
|
|
22703
|
+
"k": "literal",
|
|
22704
|
+
"v": "sale"
|
|
22705
|
+
},
|
|
22706
|
+
{
|
|
22707
|
+
"k": "literal",
|
|
22708
|
+
"v": "rent"
|
|
22709
|
+
}
|
|
22710
|
+
]
|
|
22711
|
+
},
|
|
22712
|
+
"optional": false
|
|
22713
|
+
}
|
|
22714
|
+
]
|
|
22715
|
+
}
|
|
22716
|
+
},
|
|
22717
|
+
"functions": {
|
|
22718
|
+
"search": [
|
|
22719
|
+
{
|
|
22720
|
+
"name": "args",
|
|
22721
|
+
"schema": {
|
|
22722
|
+
"k": "ref",
|
|
22723
|
+
"name": "SearchArgs"
|
|
22724
|
+
},
|
|
22725
|
+
"optional": false
|
|
22726
|
+
}
|
|
22727
|
+
]
|
|
22728
|
+
}
|
|
22729
|
+
},
|
|
22834
22730
|
"providers.othership": {
|
|
22835
22731
|
"defs": {},
|
|
22836
22732
|
"functions": {
|
|
@@ -33272,6 +33168,58 @@ export const VALIDATORS = {
|
|
|
33272
33168
|
},
|
|
33273
33169
|
"optional": false
|
|
33274
33170
|
}
|
|
33171
|
+
],
|
|
33172
|
+
"listComments": [
|
|
33173
|
+
{
|
|
33174
|
+
"name": "input",
|
|
33175
|
+
"schema": {
|
|
33176
|
+
"k": "union",
|
|
33177
|
+
"of": [
|
|
33178
|
+
{
|
|
33179
|
+
"k": "object",
|
|
33180
|
+
"props": [
|
|
33181
|
+
{
|
|
33182
|
+
"name": "video",
|
|
33183
|
+
"schema": {
|
|
33184
|
+
"k": "string"
|
|
33185
|
+
},
|
|
33186
|
+
"optional": false
|
|
33187
|
+
},
|
|
33188
|
+
{
|
|
33189
|
+
"name": "sortBy",
|
|
33190
|
+
"schema": {
|
|
33191
|
+
"k": "union",
|
|
33192
|
+
"of": [
|
|
33193
|
+
{
|
|
33194
|
+
"k": "literal",
|
|
33195
|
+
"v": "top"
|
|
33196
|
+
},
|
|
33197
|
+
{
|
|
33198
|
+
"k": "literal",
|
|
33199
|
+
"v": "newest"
|
|
33200
|
+
}
|
|
33201
|
+
]
|
|
33202
|
+
},
|
|
33203
|
+
"optional": true
|
|
33204
|
+
}
|
|
33205
|
+
]
|
|
33206
|
+
},
|
|
33207
|
+
{
|
|
33208
|
+
"k": "object",
|
|
33209
|
+
"props": [
|
|
33210
|
+
{
|
|
33211
|
+
"name": "continuation",
|
|
33212
|
+
"schema": {
|
|
33213
|
+
"k": "string"
|
|
33214
|
+
},
|
|
33215
|
+
"optional": false
|
|
33216
|
+
}
|
|
33217
|
+
]
|
|
33218
|
+
}
|
|
33219
|
+
]
|
|
33220
|
+
},
|
|
33221
|
+
"optional": false
|
|
33222
|
+
}
|
|
33275
33223
|
]
|
|
33276
33224
|
}
|
|
33277
33225
|
},
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bowmark/web",
|
|
3
|
-
"version": "1.24.
|
|
3
|
+
"version": "1.24.1",
|
|
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",
|