@opensteer/protocol 0.7.0 → 0.7.2
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/index.cjs +32 -61
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +56 -35
- package/dist/index.d.ts +56 -35
- package/dist/index.js +31 -58
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { SessionRef, PageRef, FrameRef, DocumentRef, NodeRef, NetworkRequestId, DownloadRef, DialogRef, ChooserRef, WorkerRef, BodyPayloadEncoding, NetworkRecordKind, HeaderEntry, NetworkResourceType, NetworkInitiator, NetworkTiming, NetworkTransferSizes, NetworkSourceMetadata, NetworkCaptureState, DocumentEpoch, Size, CoordinateSpace, Rect, CookieRecord, DomSnapshot, HtmlSnapshot, StorageSnapshot, StepEvent, Point, ScreenshotFormat, ViewportMetrics, HitTestResult, PageInfo, FrameInfo, NodeLocator, ScreenshotArtifact as ScreenshotArtifact$1, BrowserCoreEngine, Quad, KeyModifier as KeyModifier$1 } from '@opensteer/browser-core';
|
|
1
|
+
import { SessionRef, PageRef, FrameRef, DocumentRef, NodeRef, NetworkRequestId, DownloadRef, DialogRef, ChooserRef, WorkerRef, BodyPayloadEncoding, NetworkRecordKind, HeaderEntry, NetworkResourceType, NetworkInitiator, NetworkTiming, NetworkTransferSizes, NetworkSourceMetadata, NetworkCaptureState, DocumentEpoch, Size, CoordinateSpace, Rect, CookieRecord, DomSnapshot, HtmlSnapshot, StorageSnapshot, StepEvent, Point, ScreenshotFormat, ViewportMetrics, HitTestResult, PageInfo, FrameInfo, NodeLocator, ActionBoundarySnapshot, ActionBoundarySettleTrigger, ScreenshotArtifact as ScreenshotArtifact$1, ActionBoundaryOutcome, BrowserCoreEngine, Quad, KeyModifier as KeyModifier$1 } from '@opensteer/browser-core';
|
|
2
2
|
export { BodyPayloadEncoding, ChooserOpenedStepEvent as ChooserOpenedEvent, ChooserRef, ConsoleStepEvent as ConsoleEvent, ConsoleLevel, CookiePriority, CookieRecord, CookieSameSite, CoordinateSpace, DevicePixelRatio, DialogOpenedStepEvent as DialogOpenedEvent, DialogRef, DocumentEpoch, DocumentRef, DomSnapshot, DomSnapshotNode, DownloadFinishedStepEvent as DownloadFinishedEvent, DownloadRef, DownloadStartedStepEvent as DownloadStartedEvent, EventStreamMessageStepEvent as EventStreamMessageEvent, FrameInfo, FrameRef, FrozenStepEvent as FrozenEvent, HeaderEntry, HitTestResult, HtmlSnapshot, IndexedDbDatabaseSnapshot, IndexedDbIndexSnapshot, IndexedDbObjectStoreSnapshot, IndexedDbRecord, LayoutViewport, NetworkCaptureState, NetworkInitiator, NetworkInitiatorType, NetworkRecordKind, NetworkRequestId, NetworkResourceType, NetworkSourceMetadata, NetworkTiming, NetworkTransferSizes, NodeLocator, NodeRef, StepEvent as OpensteerEvent, PageClosedStepEvent as PageClosedEvent, PageCreatedStepEvent as PageCreatedEvent, PageErrorStepEvent as PageErrorEvent, PageInfo, PageLifecycleState, PageRef, PageScaleFactor, PageZoomFactor, PausedStepEvent as PausedEvent, Point, PopupOpenedStepEvent as PopupOpenedEvent, Quad, Rect, ResumedStepEvent as ResumedEvent, ScreenshotFormat, ScrollOffset, SessionRef, SessionStorageSnapshot, ShadowDomSnapshotMode, Size, StorageEntry, StorageOriginSnapshot, StorageSnapshot, ViewportMetrics, VisualViewport, WebSocketClosedStepEvent as WebSocketClosedEvent, WebSocketFrameStepEvent as WebSocketFrameEvent, WebSocketOpenedStepEvent as WebSocketOpenedEvent, WorkerCreatedStepEvent as WorkerCreatedEvent, WorkerDestroyedStepEvent as WorkerDestroyedEvent, WorkerRef, createChooserRef, createDialogRef, createDocumentEpoch, createDocumentRef, createDownloadRef, createFrameRef, createHeaderEntry, createNetworkRequestId, createNodeLocator, createNodeRef, createPageRef, createSessionRef, createWorkerRef, findDomSnapshotNode, findDomSnapshotNodeByRef, isChooserRef, isDialogRef, isDocumentRef, isDownloadRef, isFrameRef, isNetworkRequestId, isNodeRef, isPageRef, isSessionRef, isWorkerRef, nextDocumentEpoch, serializeDocumentEpoch, serializeRef } from '@opensteer/browser-core';
|
|
3
3
|
|
|
4
4
|
type JsonPrimitive = boolean | number | string | null;
|
|
@@ -164,11 +164,9 @@ interface NetworkRecord {
|
|
|
164
164
|
readonly requestBody?: BodyPayload;
|
|
165
165
|
readonly responseBody?: BodyPayload;
|
|
166
166
|
}
|
|
167
|
-
type NetworkQuerySource = "live" | "saved";
|
|
168
167
|
interface NetworkQueryRecord {
|
|
169
168
|
readonly recordId: string;
|
|
170
|
-
readonly
|
|
171
|
-
readonly actionId?: string;
|
|
169
|
+
readonly capture?: string;
|
|
172
170
|
readonly tags?: readonly string[];
|
|
173
171
|
readonly savedAt?: number;
|
|
174
172
|
readonly record: NetworkRecord;
|
|
@@ -198,7 +196,6 @@ declare const networkTimingSchema: JsonSchema;
|
|
|
198
196
|
declare const networkTransferSizesSchema: JsonSchema;
|
|
199
197
|
declare const networkSourceMetadataSchema: JsonSchema;
|
|
200
198
|
declare const networkRecordSchema: JsonSchema;
|
|
201
|
-
declare const networkQuerySourceSchema: JsonSchema;
|
|
202
199
|
declare const networkQueryRecordSchema: JsonSchema;
|
|
203
200
|
declare const orderedHeadersSchema: JsonSchema;
|
|
204
201
|
|
|
@@ -330,7 +327,6 @@ interface OpensteerRegistryProvenance {
|
|
|
330
327
|
readonly capturedAt?: number;
|
|
331
328
|
readonly notes?: string;
|
|
332
329
|
}
|
|
333
|
-
type OpensteerRequestPlanLifecycle = "draft" | "active" | "deprecated" | "retired";
|
|
334
330
|
interface OpensteerRequestPlanFreshness {
|
|
335
331
|
readonly lastValidatedAt?: number;
|
|
336
332
|
readonly staleAt?: number;
|
|
@@ -345,7 +341,6 @@ interface OpensteerRequestPlanRecord {
|
|
|
345
341
|
readonly contentHash: string;
|
|
346
342
|
readonly tags: readonly string[];
|
|
347
343
|
readonly provenance?: OpensteerRegistryProvenance;
|
|
348
|
-
readonly lifecycle: OpensteerRequestPlanLifecycle;
|
|
349
344
|
readonly freshness?: OpensteerRequestPlanFreshness;
|
|
350
345
|
readonly payload: OpensteerRequestPlanPayload;
|
|
351
346
|
}
|
|
@@ -379,11 +374,9 @@ interface OpensteerRecipeRequestStepInput {
|
|
|
379
374
|
interface OpensteerRecipeGotoStep {
|
|
380
375
|
readonly kind: "goto";
|
|
381
376
|
readonly url: string;
|
|
382
|
-
readonly networkTag?: string;
|
|
383
377
|
}
|
|
384
378
|
interface OpensteerRecipeReloadStep {
|
|
385
379
|
readonly kind: "reload";
|
|
386
|
-
readonly networkTag?: string;
|
|
387
380
|
}
|
|
388
381
|
interface OpensteerRecipeWaitForUrlStep {
|
|
389
382
|
readonly kind: "waitForUrl";
|
|
@@ -505,11 +498,10 @@ interface OpensteerRecipeRecord {
|
|
|
505
498
|
}
|
|
506
499
|
type OpensteerAuthRecipeRecord = OpensteerRecipeRecord;
|
|
507
500
|
interface OpensteerNetworkQueryInput {
|
|
508
|
-
readonly source?: "live" | "saved";
|
|
509
501
|
readonly pageRef?: PageRef;
|
|
510
502
|
readonly recordId?: string;
|
|
511
503
|
readonly requestId?: string;
|
|
512
|
-
readonly
|
|
504
|
+
readonly capture?: string;
|
|
513
505
|
readonly tag?: string;
|
|
514
506
|
readonly url?: string;
|
|
515
507
|
readonly hostname?: string;
|
|
@@ -523,11 +515,11 @@ interface OpensteerNetworkQueryInput {
|
|
|
523
515
|
interface OpensteerNetworkQueryOutput {
|
|
524
516
|
readonly records: readonly NetworkQueryRecord[];
|
|
525
517
|
}
|
|
526
|
-
interface
|
|
518
|
+
interface OpensteerNetworkTagInput {
|
|
527
519
|
readonly pageRef?: PageRef;
|
|
528
520
|
readonly recordId?: string;
|
|
529
521
|
readonly requestId?: string;
|
|
530
|
-
readonly
|
|
522
|
+
readonly capture?: string;
|
|
531
523
|
readonly tag: string;
|
|
532
524
|
readonly url?: string;
|
|
533
525
|
readonly hostname?: string;
|
|
@@ -536,10 +528,11 @@ interface OpensteerNetworkSaveInput {
|
|
|
536
528
|
readonly status?: string;
|
|
537
529
|
readonly resourceType?: NetworkResourceType;
|
|
538
530
|
}
|
|
539
|
-
interface
|
|
540
|
-
readonly
|
|
531
|
+
interface OpensteerNetworkTagOutput {
|
|
532
|
+
readonly taggedCount: number;
|
|
541
533
|
}
|
|
542
534
|
interface OpensteerNetworkClearInput {
|
|
535
|
+
readonly capture?: string;
|
|
543
536
|
readonly tag?: string;
|
|
544
537
|
}
|
|
545
538
|
interface OpensteerNetworkClearOutput {
|
|
@@ -551,7 +544,6 @@ interface OpensteerWriteRequestPlanInput {
|
|
|
551
544
|
readonly version: string;
|
|
552
545
|
readonly tags?: readonly string[];
|
|
553
546
|
readonly provenance?: OpensteerRegistryProvenance;
|
|
554
|
-
readonly lifecycle?: OpensteerRequestPlanLifecycle;
|
|
555
547
|
readonly freshness?: OpensteerRequestPlanFreshness;
|
|
556
548
|
readonly payload: OpensteerRequestPlanPayload;
|
|
557
549
|
}
|
|
@@ -682,7 +674,7 @@ interface OpensteerInferRequestPlanInput {
|
|
|
682
674
|
readonly recordId: string;
|
|
683
675
|
readonly key: string;
|
|
684
676
|
readonly version: string;
|
|
685
|
-
readonly
|
|
677
|
+
readonly transport?: TransportKind;
|
|
686
678
|
}
|
|
687
679
|
declare const opensteerRequestScalarSchema: JsonSchema;
|
|
688
680
|
declare const opensteerRequestEntrySchema: JsonSchema;
|
|
@@ -706,7 +698,6 @@ declare const opensteerRequestPlanRecipesSchema: JsonSchema;
|
|
|
706
698
|
declare const opensteerRequestPlanAuthSchema: JsonSchema;
|
|
707
699
|
declare const opensteerRequestPlanPayloadSchema: JsonSchema;
|
|
708
700
|
declare const opensteerRegistryProvenanceSchema: JsonSchema;
|
|
709
|
-
declare const opensteerRequestPlanLifecycleSchema: JsonSchema;
|
|
710
701
|
declare const opensteerRequestPlanFreshnessSchema: JsonSchema;
|
|
711
702
|
declare const opensteerRequestPlanRecordSchema: JsonSchema;
|
|
712
703
|
declare const opensteerRequestBodyInputSchema: JsonSchema;
|
|
@@ -720,8 +711,8 @@ declare const opensteerRecipeRecordSchema: JsonSchema;
|
|
|
720
711
|
declare const opensteerAuthRecipeRecordSchema: JsonSchema;
|
|
721
712
|
declare const opensteerNetworkQueryInputSchema: JsonSchema;
|
|
722
713
|
declare const opensteerNetworkQueryOutputSchema: JsonSchema;
|
|
723
|
-
declare const
|
|
724
|
-
declare const
|
|
714
|
+
declare const opensteerNetworkTagInputSchema: JsonSchema;
|
|
715
|
+
declare const opensteerNetworkTagOutputSchema: JsonSchema;
|
|
725
716
|
declare const opensteerNetworkClearInputSchema: JsonSchema;
|
|
726
717
|
declare const opensteerNetworkClearOutputSchema: JsonSchema;
|
|
727
718
|
declare const opensteerWriteRequestPlanInputSchema: JsonSchema;
|
|
@@ -897,10 +888,10 @@ interface CloudSessionSummary {
|
|
|
897
888
|
readonly label?: string;
|
|
898
889
|
}
|
|
899
890
|
interface CloudSelectorCacheImportEntry {
|
|
900
|
-
readonly
|
|
901
|
-
readonly siteOrigin: string;
|
|
891
|
+
readonly workspace: string;
|
|
902
892
|
readonly method: string;
|
|
903
893
|
readonly descriptionHash: string;
|
|
894
|
+
readonly description?: string;
|
|
904
895
|
readonly path: unknown;
|
|
905
896
|
readonly schemaHash?: string;
|
|
906
897
|
readonly createdAt: number;
|
|
@@ -915,6 +906,33 @@ interface CloudSelectorCacheImportResponse {
|
|
|
915
906
|
readonly updated: number;
|
|
916
907
|
readonly skipped: number;
|
|
917
908
|
}
|
|
909
|
+
interface CloudRegistryImportEntry {
|
|
910
|
+
readonly workspace: string;
|
|
911
|
+
readonly recordId: string;
|
|
912
|
+
readonly key: string;
|
|
913
|
+
readonly version: string;
|
|
914
|
+
readonly contentHash: string;
|
|
915
|
+
readonly tags: readonly string[];
|
|
916
|
+
readonly provenance?: unknown;
|
|
917
|
+
readonly payload: unknown;
|
|
918
|
+
readonly createdAt: number;
|
|
919
|
+
readonly updatedAt: number;
|
|
920
|
+
}
|
|
921
|
+
interface CloudRequestPlanImportEntry extends CloudRegistryImportEntry {
|
|
922
|
+
readonly freshness?: unknown;
|
|
923
|
+
}
|
|
924
|
+
interface CloudRegistryImportRequest {
|
|
925
|
+
readonly entries: readonly CloudRegistryImportEntry[];
|
|
926
|
+
}
|
|
927
|
+
interface CloudRequestPlanImportRequest {
|
|
928
|
+
readonly entries: readonly CloudRequestPlanImportEntry[];
|
|
929
|
+
}
|
|
930
|
+
interface CloudRegistryImportResponse {
|
|
931
|
+
readonly imported: number;
|
|
932
|
+
readonly inserted: number;
|
|
933
|
+
readonly updated: number;
|
|
934
|
+
readonly skipped: number;
|
|
935
|
+
}
|
|
918
936
|
type ActionFailureCode = "TARGET_NOT_FOUND" | "TARGET_UNAVAILABLE" | "TARGET_STALE" | "TARGET_AMBIGUOUS" | "BLOCKED_BY_INTERCEPTOR" | "NOT_VISIBLE" | "NOT_ENABLED" | "NOT_EDITABLE" | "INVALID_TARGET" | "INVALID_OPTIONS" | "ACTION_TIMEOUT" | "UNKNOWN";
|
|
919
937
|
type ActionFailureClassificationSource = "typed_error" | "playwright_call_log" | "dom_probe" | "message_heuristic" | "unknown";
|
|
920
938
|
interface ActionFailureBlocker {
|
|
@@ -1367,7 +1385,7 @@ interface OpensteerPageCloseOutput {
|
|
|
1367
1385
|
}
|
|
1368
1386
|
interface OpensteerPageGotoInput {
|
|
1369
1387
|
readonly url: string;
|
|
1370
|
-
readonly
|
|
1388
|
+
readonly captureNetwork?: string;
|
|
1371
1389
|
}
|
|
1372
1390
|
interface OpensteerPageGotoOutput extends OpensteerSessionState {
|
|
1373
1391
|
}
|
|
@@ -1426,26 +1444,26 @@ interface OpensteerInspectStorageInput {
|
|
|
1426
1444
|
interface OpensteerDomClickInput {
|
|
1427
1445
|
readonly target: OpensteerTargetInput;
|
|
1428
1446
|
readonly persistAsDescription?: string;
|
|
1429
|
-
readonly
|
|
1447
|
+
readonly captureNetwork?: string;
|
|
1430
1448
|
}
|
|
1431
1449
|
interface OpensteerDomHoverInput {
|
|
1432
1450
|
readonly target: OpensteerTargetInput;
|
|
1433
1451
|
readonly persistAsDescription?: string;
|
|
1434
|
-
readonly
|
|
1452
|
+
readonly captureNetwork?: string;
|
|
1435
1453
|
}
|
|
1436
1454
|
interface OpensteerDomInputInput {
|
|
1437
1455
|
readonly target: OpensteerTargetInput;
|
|
1438
1456
|
readonly text: string;
|
|
1439
1457
|
readonly pressEnter?: boolean;
|
|
1440
1458
|
readonly persistAsDescription?: string;
|
|
1441
|
-
readonly
|
|
1459
|
+
readonly captureNetwork?: string;
|
|
1442
1460
|
}
|
|
1443
1461
|
interface OpensteerDomScrollInput {
|
|
1444
1462
|
readonly target: OpensteerTargetInput;
|
|
1445
1463
|
readonly direction: "up" | "down" | "left" | "right";
|
|
1446
1464
|
readonly amount: number;
|
|
1447
1465
|
readonly persistAsDescription?: string;
|
|
1448
|
-
readonly
|
|
1466
|
+
readonly captureNetwork?: string;
|
|
1449
1467
|
}
|
|
1450
1468
|
interface OpensteerDomExtractInput {
|
|
1451
1469
|
readonly description: string;
|
|
@@ -1514,7 +1532,7 @@ interface OpensteerComputerScreenshotOptions {
|
|
|
1514
1532
|
interface OpensteerComputerExecuteInput {
|
|
1515
1533
|
readonly action: OpensteerComputerAction;
|
|
1516
1534
|
readonly screenshot?: OpensteerComputerScreenshotOptions;
|
|
1517
|
-
readonly
|
|
1535
|
+
readonly captureNetwork?: string;
|
|
1518
1536
|
}
|
|
1519
1537
|
interface OpensteerComputerDisplayScale {
|
|
1520
1538
|
readonly x: number;
|
|
@@ -1545,7 +1563,7 @@ interface OpensteerComputerExecuteOutput {
|
|
|
1545
1563
|
readonly timing: OpensteerComputerExecuteTiming;
|
|
1546
1564
|
readonly trace?: OpensteerComputerTraceEnrichment;
|
|
1547
1565
|
}
|
|
1548
|
-
declare const opensteerSemanticOperationNames: readonly ["session.open", "page.list", "page.new", "page.activate", "page.close", "page.goto", "page.evaluate", "page.add-init-script", "page.snapshot", "dom.click", "dom.hover", "dom.input", "dom.scroll", "dom.extract", "network.query", "network.
|
|
1566
|
+
declare const opensteerSemanticOperationNames: readonly ["session.open", "page.list", "page.new", "page.activate", "page.close", "page.goto", "page.evaluate", "page.add-init-script", "page.snapshot", "dom.click", "dom.hover", "dom.input", "dom.scroll", "dom.extract", "network.query", "network.tag", "network.clear", "network.minimize", "network.diff", "network.probe", "reverse.discover", "reverse.query", "reverse.package.create", "reverse.package.run", "reverse.export", "reverse.report", "reverse.package.get", "reverse.package.list", "reverse.package.patch", "interaction.capture", "interaction.get", "interaction.diff", "interaction.replay", "artifact.read", "inspect.cookies", "inspect.storage", "scripts.capture", "scripts.beautify", "scripts.deobfuscate", "scripts.sandbox", "captcha.solve", "request.raw", "request-plan.infer", "request-plan.write", "request-plan.get", "request-plan.list", "recipe.write", "recipe.get", "recipe.list", "recipe.run", "auth-recipe.write", "auth-recipe.get", "auth-recipe.list", "auth-recipe.run", "request.execute", "computer.execute", "session.close"];
|
|
1549
1567
|
type OpensteerSemanticOperationName = (typeof opensteerSemanticOperationNames)[number];
|
|
1550
1568
|
interface OpensteerSemanticOperationSpec<TInput = unknown, TOutput = unknown> {
|
|
1551
1569
|
readonly name: OpensteerSemanticOperationName;
|
|
@@ -1572,10 +1590,10 @@ declare const opensteerSemanticRestEndpoints: readonly OpensteerSemanticRestEndp
|
|
|
1572
1590
|
|
|
1573
1591
|
declare const opensteerSessionGrantKinds: readonly ["automation", "view", "cdp"];
|
|
1574
1592
|
type OpensteerSessionGrantKind = (typeof opensteerSessionGrantKinds)[number];
|
|
1575
|
-
type
|
|
1593
|
+
type OpensteerProviderMode = "local" | "cloud";
|
|
1576
1594
|
type OpensteerSessionOwnership = "owned" | "attached" | "managed";
|
|
1577
1595
|
interface OpensteerProviderDescriptor {
|
|
1578
|
-
readonly
|
|
1596
|
+
readonly mode: OpensteerProviderMode;
|
|
1579
1597
|
readonly ownership: OpensteerSessionOwnership;
|
|
1580
1598
|
readonly engine?: string;
|
|
1581
1599
|
readonly baseUrl?: string;
|
|
@@ -3031,11 +3049,12 @@ interface NormalizedComputerScreenshotOptions {
|
|
|
3031
3049
|
}
|
|
3032
3050
|
interface ComputerUseBridgeInput {
|
|
3033
3051
|
readonly pageRef: PageRef;
|
|
3052
|
+
readonly snapshot?: ActionBoundarySnapshot;
|
|
3034
3053
|
readonly action: OpensteerComputerAction;
|
|
3035
3054
|
readonly screenshot: NormalizedComputerScreenshotOptions;
|
|
3036
3055
|
readonly signal: AbortSignal;
|
|
3037
3056
|
remainingMs(): number | undefined;
|
|
3038
|
-
policySettle(pageRef: PageRef): Promise<void>;
|
|
3057
|
+
policySettle(pageRef: PageRef, trigger: ActionBoundarySettleTrigger): Promise<void>;
|
|
3039
3058
|
}
|
|
3040
3059
|
interface ComputerUseBridgeOutput {
|
|
3041
3060
|
readonly pageRef: PageRef;
|
|
@@ -3043,6 +3062,7 @@ interface ComputerUseBridgeOutput {
|
|
|
3043
3062
|
readonly viewport: ViewportMetrics;
|
|
3044
3063
|
readonly events: readonly StepEvent[];
|
|
3045
3064
|
readonly timing: OpensteerComputerExecuteTiming;
|
|
3065
|
+
readonly boundary?: ActionBoundaryOutcome;
|
|
3046
3066
|
}
|
|
3047
3067
|
interface ComputerUseBridge {
|
|
3048
3068
|
execute(input: ComputerUseBridgeInput): Promise<ComputerUseBridgeOutput>;
|
|
@@ -3110,9 +3130,10 @@ interface DomActionKeyPressInput {
|
|
|
3110
3130
|
}
|
|
3111
3131
|
interface DomActionSettleOptions {
|
|
3112
3132
|
readonly operation: "dom.click" | "dom.hover" | "dom.input" | "dom.scroll";
|
|
3133
|
+
readonly snapshot?: ActionBoundarySnapshot;
|
|
3113
3134
|
readonly signal: AbortSignal;
|
|
3114
3135
|
remainingMs(): number | undefined;
|
|
3115
|
-
policySettle(pageRef: PageRef): Promise<void>;
|
|
3136
|
+
policySettle(pageRef: PageRef, trigger: ActionBoundarySettleTrigger): Promise<void>;
|
|
3116
3137
|
}
|
|
3117
3138
|
type DomPointerHitRelation = "self" | "descendant" | "ancestor" | "same-owner" | "outside" | "unknown";
|
|
3118
3139
|
interface DomPointerHitAssessment {
|
|
@@ -3134,11 +3155,11 @@ interface DomActionBridge {
|
|
|
3134
3155
|
scrollNodeIntoView(locator: NodeLocator, options?: DomActionScrollOptions): Promise<void>;
|
|
3135
3156
|
focusNode(locator: NodeLocator): Promise<void>;
|
|
3136
3157
|
pressKey(locator: NodeLocator, input: DomActionKeyPressInput): Promise<void>;
|
|
3137
|
-
finalizeDomAction(pageRef: PageRef, options: DomActionSettleOptions): Promise<
|
|
3158
|
+
finalizeDomAction(pageRef: PageRef, options: DomActionSettleOptions): Promise<ActionBoundaryOutcome>;
|
|
3138
3159
|
}
|
|
3139
3160
|
interface DomActionBridgeProvider {
|
|
3140
3161
|
[OPENSTEER_DOM_ACTION_BRIDGE_SYMBOL](): DomActionBridge;
|
|
3141
3162
|
}
|
|
3142
3163
|
declare function resolveDomActionBridge(engine: BrowserCoreEngine | DomActionBridgeProvider): DomActionBridge | undefined;
|
|
3143
3164
|
|
|
3144
|
-
export { type ActionFailure, type ActionFailureBlocker, type ActionFailureClassificationSource, type ActionFailureCode, type ActionFailureDetails, type ActivatePageInput, type ArtifactExternalLocation, type ArtifactInline, type ArtifactProvenance, type ArtifactReference, type ArtifactRelation, type AttributeEntry, type AttributeMatchClause, type BodyPayload, type BrowserProfileArchiveFormat, type BrowserProfileCreateRequest, type BrowserProfileDescriptor, type BrowserProfileImportCreateRequest, type BrowserProfileImportCreateResponse, type BrowserProfileImportDescriptor, type BrowserProfileImportSnapshotSummary, type BrowserProfileImportStatus, type BrowserProfileListResponse, type BrowserProfileProxyPolicy, type BrowserProfileStatus, type CaptchaDetectionResult, type CaptchaProvider, type CaptchaType, type CaptureScreenshotInput, type ClosePageInput, type ClosePageOutput, type CloseSessionInput, type CloseSessionOutput, type CloudActionFailure, type CloudActionFailureDetails, type CloudActionMethod, type CloudActionRequest, type CloudActionResponse, type CloudActionSuccess, type CloudBrowserContextConfig, type CloudBrowserExtensionConfig, type CloudBrowserLaunchConfig, type CloudBrowserProfileLaunchPreference, type CloudBrowserProfilePreference, type CloudErrorCode, type CloudFingerprintMode, type CloudFingerprintPreference, type CloudGeolocation, type CloudProxyMode, type CloudProxyPreference, type CloudProxyProtocol, type CloudSelectorCacheImportEntry, type CloudSelectorCacheImportRequest, type CloudSelectorCacheImportResponse, type CloudSessionLaunchConfig, type CloudSessionSourceType, type CloudSessionStatus, type CloudSessionSummary, type CloudSessionVisibilityScope, type CloudViewport, type ComputerUseBridge, type ComputerUseBridgeInput, type ComputerUseBridgeOutput, type ComputerUseBridgeProvider, type ContextHop, type CookiesArtifactRecord, type CreatePageInput, type CreatePageOutput, type CreateSessionInput, type CreateSessionOutput, type DocumentTargetInput, type DomActionBridge, type DomActionBridgeProvider, type DomActionKeyPressInput, type DomActionScrollAlignment, type DomActionScrollOptions, type DomActionSettleOptions, type DomActionTargetInspection, type DomPointerHitAssessment, type DomPointerHitRelation, type DomSnapshotArtifactRecord, type ExecuteSessionRequestInput, type ExternalBinaryLocation, type GetCookiesInput, type GetCookiesOutput, type GetDomSnapshotInput, type GetFrameInfoInput, type GetHtmlSnapshotInput, type GetNetworkRecordsInput, type GetNetworkRecordsOutput, type GetPageInfoInput, type GetStorageSnapshotInput, type GetViewportMetricsInput, type HistoryNavigationInput, type HistoryNavigationOutput, type HitTestInput, type HtmlSnapshotArtifactRecord, JSON_SCHEMA_DRAFT_2020_12, type JsonArray, type JsonObject, type JsonPrimitive, type JsonSchema, type JsonSchemaType, type JsonSchemaValidationIssue, type JsonValue, type KeyModifier, type KeyPressInput, type KeyPressOutput, type ListFramesInput, type ListFramesOutput, type ListPagesInput, type ListPagesOutput, type MatchClause, type MatchOperator, type MinimizationFieldClassification, type MinimizationFieldResult, type MouseButton, type MouseClickInput, type MouseClickOutput, type MouseMoveInput, type MouseMoveOutput, type MouseScrollInput, type MouseScrollOutput, type NavigatePageInput, type NavigatePageOutput, type NetworkDiffEntropy, type NetworkDiffField, type NetworkDiffFieldKind, type NetworkQueryRecord, type NetworkQuerySource, type NetworkRecord, type NormalizedComputerScreenshotOptions, OPENSTEER_COMPUTER_USE_BRIDGE_SYMBOL, OPENSTEER_DOM_ACTION_BRIDGE_SYMBOL, OPENSTEER_PROTOCOL_COMPATIBILITY_REVISION, OPENSTEER_PROTOCOL_MEDIA_TYPE, OPENSTEER_PROTOCOL_NAME, OPENSTEER_PROTOCOL_REST_BASE_PATH, OPENSTEER_PROTOCOL_REVISION_DATE, OPENSTEER_PROTOCOL_VERSION, type OpensteerActionResult, type OpensteerAddInitScriptInput, type OpensteerAddInitScriptOutput, type OpensteerArtifact, type OpensteerArtifactKind, type OpensteerArtifactReadInput, type OpensteerArtifactReadOutput, type OpensteerAttachBrowserOptions, type OpensteerAuthRecipeDirectRequestStep, type OpensteerAuthRecipeHookRef, type OpensteerAuthRecipePayload, type OpensteerAuthRecipeRecord, type OpensteerAuthRecipeRef, type OpensteerAuthRecipeRetryOverrides, type OpensteerAuthRecipeSessionRequestStep, type OpensteerAuthRecipeStep, type OpensteerAutomationCancelMessage, type OpensteerAutomationClientMessage, type OpensteerAutomationErrorMessage, type OpensteerAutomationEventMessage, type OpensteerAutomationHelloMessage, type OpensteerAutomationInvokeMessage, type OpensteerAutomationOperationName, type OpensteerAutomationPingMessage, type OpensteerAutomationPongMessage, type OpensteerAutomationResultMessage, type OpensteerAutomationResumeMessage, type OpensteerAutomationServerMessage, type OpensteerBase64RequestBodyInput, type OpensteerBodyCodecDescriptor, type OpensteerBodyCodecKind, type OpensteerBrowserContextOptions, type OpensteerBrowserLaunchOptions, type OpensteerBrowserMode, type OpensteerBrowserOptions, type OpensteerCapability, type OpensteerCapabilityDescriptor, type OpensteerCaptchaSolveInput, type OpensteerCaptchaSolveOutput, type OpensteerCaptureScriptsInput, type OpensteerCaptureScriptsOutput, type OpensteerCapturedScript, type OpensteerChannelDescriptor, type OpensteerComputerAction, type OpensteerComputerAnnotation, type OpensteerComputerClickAction, type OpensteerComputerDisplayScale, type OpensteerComputerDragAction, type OpensteerComputerExecuteInput, type OpensteerComputerExecuteOutput, type OpensteerComputerExecuteTiming, type OpensteerComputerKeyAction, type OpensteerComputerKeyModifier, type OpensteerComputerMouseButton, type OpensteerComputerMoveAction, type OpensteerComputerScreenshotAction, type OpensteerComputerScreenshotOptions, type OpensteerComputerScrollAction, type OpensteerComputerTraceEnrichment, type OpensteerComputerTracePoint, type OpensteerComputerTypeAction, type OpensteerComputerWaitAction, type OpensteerDomClickInput, type OpensteerDomExtractInput, type OpensteerDomExtractOutput, type OpensteerDomHoverInput, type OpensteerDomInputInput, type OpensteerDomScrollInput, type OpensteerError, type OpensteerErrorCode, type OpensteerErrorEnvelope, type OpensteerErrorOptions, type OpensteerExecutableResolver, type OpensteerExecutableResolverKind, type OpensteerGetAuthRecipeInput, type OpensteerGetRecipeInput, type OpensteerGetRequestPlanInput, type OpensteerHttpMethod, type OpensteerInferRequestPlanInput, type OpensteerInspectCookiesInput, type OpensteerInspectStorageInput, type OpensteerInteractionCaptureInput, type OpensteerInteractionCaptureOutput, type OpensteerInteractionCaptureStep, type OpensteerInteractionDiffInput, type OpensteerInteractionDiffOutput, type OpensteerInteractionEventRecord, type OpensteerInteractionGetInput, type OpensteerInteractionGetOutput, type OpensteerInteractionReplayInput, type OpensteerInteractionReplayOutput, type OpensteerInteractionTracePayload, type OpensteerInteractionTraceRecord, type OpensteerJsonRequestBodyInput, type OpensteerListAuthRecipesInput, type OpensteerListAuthRecipesOutput, type OpensteerListRecipesInput, type OpensteerListRecipesOutput, type OpensteerListRequestPlansInput, type OpensteerListRequestPlansOutput, type OpensteerMcpContent, type OpensteerMcpImageContent, type OpensteerMcpTextContent, type OpensteerMcpToolAnnotations, type OpensteerMcpToolDescriptor, type OpensteerMcpToolResult, type OpensteerNetworkClearInput, type OpensteerNetworkClearOutput, type OpensteerNetworkDiffInput, type OpensteerNetworkDiffOutput, type OpensteerNetworkMinimizeInput, type OpensteerNetworkMinimizeOutput, type OpensteerNetworkMinimizeSuccessPolicy, type OpensteerNetworkQueryInput, type OpensteerNetworkQueryOutput, type OpensteerNetworkSaveInput, type OpensteerNetworkSaveOutput, type OpensteerObservationCluster, type OpensteerObservationClusterMember, type OpensteerObservationClusterRelationshipKind, type OpensteerOpenInput, type OpensteerOpenOutput, type OpensteerOperationName, type OpensteerOperationSpec, type OpensteerPageActivateInput, type OpensteerPageActivateOutput, type OpensteerPageCloseInput, type OpensteerPageCloseOutput, type OpensteerPageEvaluateInput, type OpensteerPageEvaluateOutput, type OpensteerPageGotoInput, type OpensteerPageGotoOutput, type OpensteerPageListInput, type OpensteerPageListOutput, type OpensteerPageNewInput, type OpensteerPageNewOutput, type OpensteerPageSnapshotInput, type OpensteerPageSnapshotOutput, type OpensteerProtocolDescriptor, OpensteerProtocolError, type OpensteerProtocolName, type OpensteerProtocolVersion, type OpensteerProviderDescriptor, type OpensteerProviderKind, type OpensteerRawRequestInput, type OpensteerRawRequestOutput, type OpensteerRecipeCachePolicy, type OpensteerRecipeEvaluateStep, type OpensteerRecipeGotoStep, type OpensteerRecipeHookRef, type OpensteerRecipeHookStep, type OpensteerRecipePayload, type OpensteerRecipeReadCookieStep, type OpensteerRecipeReadStorageStep, type OpensteerRecipeRecord, type OpensteerRecipeRef, type OpensteerRecipeReloadStep, type OpensteerRecipeRequestStep, type OpensteerRecipeRequestStepInput, type OpensteerRecipeRetryOverrides, type OpensteerRecipeSolveCaptchaStep, type OpensteerRecipeStep, type OpensteerRecipeStepBodyJsonPointerCapture, type OpensteerRecipeStepBodyTextCapture, type OpensteerRecipeStepHeaderCapture, type OpensteerRecipeStepResponseCapture, type OpensteerRecipeSyncCookiesToJarStep, type OpensteerRecipeWaitForCookieStep, type OpensteerRecipeWaitForNetworkStep, type OpensteerRecipeWaitForStorageStep, type OpensteerRecipeWaitForUrlStep, type OpensteerRef, type OpensteerRegistryProvenance, type OpensteerRequestBodyInput, type OpensteerRequestEntry, type OpensteerRequestEnvelope, type OpensteerRequestExecuteInput, type OpensteerRequestExecuteOutput, type OpensteerRequestFailurePolicy, type OpensteerRequestFailurePolicyHeaderMatch, type OpensteerRequestInputClassification, type OpensteerRequestInputDescriptor, type OpensteerRequestInputExportPolicy, type OpensteerRequestInputLocation, type OpensteerRequestInputMaterializationPolicy, type OpensteerRequestInputRequiredness, type OpensteerRequestInputSource, type OpensteerRequestParameterLocation, type OpensteerRequestPlanAuth, type OpensteerRequestPlanBody, type OpensteerRequestPlanBodyKind, type OpensteerRequestPlanEndpoint, type OpensteerRequestPlanFreshness, type OpensteerRequestPlanLifecycle, type OpensteerRequestPlanParameter, type OpensteerRequestPlanPayload, type OpensteerRequestPlanRecipeBinding, type OpensteerRequestPlanRecipes, type OpensteerRequestPlanRecord, type OpensteerRequestPlanRecoverBinding, type OpensteerRequestPlanResponseExpectation, type OpensteerRequestPlanTransport, type OpensteerRequestResponseResult, type OpensteerRequestRetryBackoffPolicy, type OpensteerRequestRetryPolicy, type OpensteerRequestScalar, type OpensteerRequestScalarMap, type OpensteerRequestTransportResult, type OpensteerResolvedTarget, type OpensteerResponseEnvelope, type OpensteerRestEndpointDescriptor, type OpensteerReverseAdvisorySignals, type OpensteerReverseAdvisoryTag, type OpensteerReverseAdvisoryTemplate, type OpensteerReverseAssertWorkflowStep, type OpensteerReverseAwaitRecordMatch, type OpensteerReverseAwaitRecordWorkflowStep, type OpensteerReverseCandidateAdvisoryItem, type OpensteerReverseCandidateBoundary, type OpensteerReverseCandidateRecord, type OpensteerReverseCasePayload, type OpensteerReverseCaseRecord, type OpensteerReverseCaseStatus, type OpensteerReverseChannelKind, type OpensteerReverseConstraintKind, type OpensteerReverseDiscoverInput, type OpensteerReverseDiscoverOutput, type OpensteerReverseDiscoverySummaryCounts, type OpensteerReverseExperimentRecord, type OpensteerReverseExportInput, type OpensteerReverseExportOutput, type OpensteerReverseExportRecord, type OpensteerReverseGuardRecord, type OpensteerReverseManualCalibrationMode, type OpensteerReverseObservationRecord, type OpensteerReverseObservedRecord, type OpensteerReverseOperationWorkflowStep, type OpensteerReversePackageCreateInput, type OpensteerReversePackageCreateOutput, type OpensteerReversePackageGetInput, type OpensteerReversePackageGetOutput, type OpensteerReversePackageKind, type OpensteerReversePackageListInput, type OpensteerReversePackageListOutput, type OpensteerReversePackagePatchInput, type OpensteerReversePackagePatchOutput, type OpensteerReversePackagePayload, type OpensteerReversePackageReadiness, type OpensteerReversePackageRecord, type OpensteerReversePackageRequirements, type OpensteerReversePackageRunInput, type OpensteerReversePackageRunOutput, type OpensteerReverseQueryCandidateItem, type OpensteerReverseQueryClusterItem, type OpensteerReverseQueryFilters, type OpensteerReverseQueryInput, type OpensteerReverseQueryOutput, type OpensteerReverseQueryRecordItem, type OpensteerReverseQuerySnapshot, type OpensteerReverseQuerySort, type OpensteerReverseQueryView, type OpensteerReverseReplayRunRecord, type OpensteerReverseReplayValidation, type OpensteerReverseReportInput, type OpensteerReverseReportKind, type OpensteerReverseReportOutput, type OpensteerReverseReportPayload, type OpensteerReverseReportRecord, type OpensteerReverseRequirement, type OpensteerReverseRequirementKind, type OpensteerReverseRequirementStatus, type OpensteerReverseSortDirection, type OpensteerReverseSortKey, type OpensteerReverseSortPreset, type OpensteerReverseSortTerm, type OpensteerReverseSuggestedEdit, type OpensteerReverseSuggestedEditKind, type OpensteerReverseTargetHints, type OpensteerReverseWorkflowStep, type OpensteerReverseWorkflowStepKind, type OpensteerRunAuthRecipeInput, type OpensteerRunAuthRecipeOutput, type OpensteerRunRecipeInput, type OpensteerRunRecipeOutput, type OpensteerRuntimeValueKey, type OpensteerRuntimeVersionInfo, type OpensteerScriptBeautifyInput, type OpensteerScriptBeautifyOutput, type OpensteerScriptDeobfuscateInput, type OpensteerScriptDeobfuscateOutput, type OpensteerScriptSandboxInput, type OpensteerScriptSandboxOutput, type OpensteerSemanticOperationName, type OpensteerSemanticOperationSpec, type OpensteerSemanticRestEndpointDescriptor, type OpensteerSessionAccessGrantResponse, type OpensteerSessionCapabilities, type OpensteerSessionCloseInput, type OpensteerSessionCloseOutput, type OpensteerSessionGrant, type OpensteerSessionGrantKind, type OpensteerSessionInfo, type OpensteerSessionInfoResult, type OpensteerSessionOwnership, type OpensteerSessionState, type OpensteerSnapshotCounter, type OpensteerSnapshotMode, type OpensteerStateDelta, type OpensteerStateSnapshot, type OpensteerStateSourceKind, type OpensteerStealthProfileInput, type OpensteerSuccessEnvelope, type OpensteerTargetByDescription, type OpensteerTargetByElement, type OpensteerTargetBySelector, type OpensteerTargetInput, type OpensteerTextRequestBodyInput, type OpensteerTransportProbeInput, type OpensteerTransportProbeOutput, type OpensteerValidationRule, type OpensteerValidationRuleKind, type OpensteerValueReference, type OpensteerValueReferenceEnvelope, type OpensteerValueReferenceKind, type OpensteerValueTemplate, type OpensteerValueTemplateObject, type OpensteerWriteAuthRecipeInput, type OpensteerWriteRecipeInput, type OpensteerWriteRequestPlanInput, type ParsedOpensteerRef, type PathNode, type PathNodePosition, type PortableBrowserFamily, type PortableBrowserProfileCookieRecord, type PortableBrowserProfileSnapshot, type PortableBrowserProfileSnapshotFormat, type PortableBrowserProfileSnapshotSource, type PositionMatchClause, type ReadAttributesInput, type ReadAttributesOutput, type ReadTextInput, type ReadTextOutput, type ReloadPageInput, type ReplayElementPath, type SandboxAjaxMode, type SandboxAjaxRoute, type SandboxCapturedAjaxCall, type SandboxFidelity, type ScreenshotArtifact, type ScreenshotArtifactRecord, type ScriptSourceArtifactData, type ScriptSourceArtifactRecord, type SessionTransportRequest, type SessionTransportResponse, type SetExecutionStateInput, type SetExecutionStateOutput, type StopLoadingInput, type StopLoadingOutput, type StorageSnapshotArtifactRecord, type StructuralElementAnchor, type TextInputInput, type TextInputOutput, type TraceBundle, type TraceContext, type TraceOutcome, type TraceRecord, type TransportKind, type TransportProbeLevel, type TransportProbeResult, arraySchema, artifactReferenceSchema, assertSupportedProtocolVersion, assertValidSemanticOperationInput, bodyPayloadEncodingSchema, bodyPayloadFromUtf8, bodyPayloadSchema, captchaDetectionResultSchema, captchaProviderSchema, captchaTypeSchema, chooserRefSchema, cloudActionMethods, cloudErrorCodes, cloudSessionSourceTypes, cloudSessionStatuses, cookiePrioritySchema, cookieRecordSchema, cookieSameSiteSchema, coordinateSpaceSchema, createBodyPayload, createErrorEnvelope, createOpensteerError, createRequestEnvelope, createStructuredToolResult, createSuccessEnvelope, defineSchema, dialogRefSchema, documentEpochSchema, documentRefSchema, domSnapshotNodeSchema, domSnapshotSchema, downloadRefSchema, enumSchema, externalBinaryLocationSchema, frameInfoSchema, frameRefSchema, hasCapability, headerEntrySchema, hitTestResultSchema, htmlSnapshotSchema, httpStatusForOpensteerError, indexedDbDatabaseSnapshotSchema, indexedDbIndexSnapshotSchema, indexedDbObjectStoreSnapshotSchema, indexedDbRecordSchema, integerSchema, isCloudActionMethod, isCloudErrorCode, isCloudSessionSourceType, isCloudSessionStatus, isErrorEnvelope, isOpensteerProtocolError, isOpensteerRef, isSupportedProtocolVersion, layoutViewportSchema, literalSchema, minimizationFieldClassificationSchema, minimizationFieldResultSchema, networkCaptureStateSchema, networkDiffEntropySchema, networkDiffFieldKindSchema, networkDiffFieldSchema, networkInitiatorSchema, networkInitiatorTypeSchema, networkQueryRecordSchema, networkQuerySourceSchema, networkRecordKindSchema, networkRecordSchema, networkRequestIdSchema, networkResourceTypeSchema, networkSourceMetadataSchema, networkTimingSchema, networkTransferSizesSchema, nodeLocatorSchema, nodeRefSchema, numberSchema, objectSchema, oneOfSchema, opensteerArtifactReadInputSchema, opensteerArtifactReadOutputSchema, opensteerArtifactSchema, opensteerAuthRecipeHookRefSchema, opensteerAuthRecipePayloadSchema, opensteerAuthRecipeRecordSchema, opensteerAuthRecipeRefSchema, opensteerAuthRecipeStepSchema, opensteerAutomationOperationNames, opensteerBodyCodecDescriptorSchema, opensteerBodyCodecKindSchema, opensteerCapabilities, opensteerCapabilityDescriptorListSchema, opensteerCapabilityDescriptorSchema, opensteerCapabilityDescriptors, opensteerCapabilitySchema, opensteerCapabilitySetSchema, opensteerCaptchaSolveInputSchema, opensteerCaptchaSolveOutputSchema, opensteerComputerAnnotationNames, opensteerErrorCodeSchema, opensteerErrorCodes, opensteerErrorEnvelopeSchema, opensteerErrorSchema, opensteerEventSchema, opensteerExecutableResolverKindSchema, opensteerExecutableResolverSchema, opensteerGetAuthRecipeInputSchema, opensteerGetRecipeInputSchema, opensteerGetRequestPlanInputSchema, opensteerInferRequestPlanInputSchema, opensteerInteractionCaptureInputSchema, opensteerInteractionCaptureOutputSchema, opensteerInteractionDiffInputSchema, opensteerInteractionDiffOutputSchema, opensteerInteractionEventRecordSchema, opensteerInteractionGetInputSchema, opensteerInteractionGetOutputSchema, opensteerInteractionReplayInputSchema, opensteerInteractionReplayOutputSchema, opensteerInteractionTracePayloadSchema, opensteerInteractionTraceRecordSchema, opensteerListAuthRecipesInputSchema, opensteerListAuthRecipesOutputSchema, opensteerListRecipesInputSchema, opensteerListRecipesOutputSchema, opensteerListRequestPlansInputSchema, opensteerListRequestPlansOutputSchema, opensteerMcpTools, opensteerNetworkClearInputSchema, opensteerNetworkClearOutputSchema, opensteerNetworkDiffInputSchema, opensteerNetworkDiffOutputSchema, opensteerNetworkMinimizeInputSchema, opensteerNetworkMinimizeOutputSchema, opensteerNetworkMinimizeSuccessPolicySchema, opensteerNetworkQueryInputSchema, opensteerNetworkQueryOutputSchema, opensteerNetworkSaveInputSchema, opensteerNetworkSaveOutputSchema, opensteerObservationClusterRelationshipKindSchema, opensteerObservationClusterSchema, opensteerOperationNames, opensteerOperationSpecificationMap, opensteerOperationSpecifications, opensteerProtocolDescriptor, opensteerProtocolDescriptorSchema, opensteerRawRequestInputSchema, opensteerRawRequestOutputSchema, opensteerRecipeCachePolicySchema, opensteerRecipeHookRefSchema, opensteerRecipePayloadSchema, opensteerRecipeRecordSchema, opensteerRecipeRefSchema, opensteerRecipeStepSchema, opensteerRefKindSchema, opensteerRefSchema, opensteerRegistryProvenanceSchema, opensteerRequestBodyInputSchema, opensteerRequestEntrySchema, opensteerRequestExecuteInputSchema, opensteerRequestExecuteOutputSchema, opensteerRequestFailurePolicyHeaderMatchSchema, opensteerRequestFailurePolicySchema, opensteerRequestInputClassificationSchema, opensteerRequestInputDescriptorSchema, opensteerRequestInputExportPolicySchema, opensteerRequestInputLocationSchema, opensteerRequestInputMaterializationPolicySchema, opensteerRequestInputRequirednessSchema, opensteerRequestInputSourceSchema, opensteerRequestPlanAuthSchema, opensteerRequestPlanBodySchema, opensteerRequestPlanEndpointSchema, opensteerRequestPlanFreshnessSchema, opensteerRequestPlanLifecycleSchema, opensteerRequestPlanParameterLocationSchema, opensteerRequestPlanParameterSchema, opensteerRequestPlanPayloadSchema, opensteerRequestPlanRecipeBindingSchema, opensteerRequestPlanRecipesSchema, opensteerRequestPlanRecordSchema, opensteerRequestPlanRecoverBindingSchema, opensteerRequestPlanResponseExpectationSchema, opensteerRequestPlanTransportSchema, opensteerRequestResponseResultSchema, opensteerRequestRetryBackoffPolicySchema, opensteerRequestRetryPolicySchema, opensteerRequestScalarSchema, opensteerRequestTransportResultSchema, opensteerRestEndpoints, opensteerReverseAdvisorySignalsSchema, opensteerReverseAdvisoryTagSchema, opensteerReverseAdvisoryTemplateSchema, opensteerReverseCandidateBoundarySchema, opensteerReverseCandidateRecordSchema, opensteerReverseCandidateReportItemSchema, opensteerReverseCasePayloadSchema, opensteerReverseCaseRecordSchema, opensteerReverseCaseStatusSchema, opensteerReverseChannelKindSchema, opensteerReverseConstraintKindSchema, opensteerReverseDiscoverInputSchema, opensteerReverseDiscoverOutputSchema, opensteerReverseExperimentRecordSchema, opensteerReverseExportInputSchema, opensteerReverseExportOutputSchema, opensteerReverseExportRecordSchema, opensteerReverseGuardRecordSchema, opensteerReverseManualCalibrationModeSchema, opensteerReverseObservationRecordSchema, opensteerReverseObservedRecordSchema, opensteerReversePackageCreateInputSchema, opensteerReversePackageCreateOutputSchema, opensteerReversePackageGetInputSchema, opensteerReversePackageGetOutputSchema, opensteerReversePackageKindSchema, opensteerReversePackageListInputSchema, opensteerReversePackageListOutputSchema, opensteerReversePackagePatchInputSchema, opensteerReversePackagePatchOutputSchema, opensteerReversePackagePayloadSchema, opensteerReversePackageReadinessSchema, opensteerReversePackageRecordSchema, opensteerReversePackageRequirementsSchema, opensteerReversePackageRunInputSchema, opensteerReversePackageRunOutputSchema, opensteerReverseQueryInputSchema, opensteerReverseQueryOutputSchema, opensteerReverseQueryViewSchema, opensteerReverseReplayRunRecordSchema, opensteerReverseReplayValidationSchema, opensteerReverseReportInputSchema, opensteerReverseReportKindSchema, opensteerReverseReportOutputSchema, opensteerReverseReportPayloadSchema, opensteerReverseReportRecordSchema, opensteerReverseRequirementKindSchema, opensteerReverseRequirementSchema, opensteerReverseRequirementStatusSchema, opensteerReverseSortDirectionSchema, opensteerReverseSortKeySchema, opensteerReverseSortPresetSchema, opensteerReverseSuggestedEditKindSchema, opensteerReverseSuggestedEditSchema, opensteerReverseTargetHintsSchema, opensteerReverseWorkflowStepKindSchema, opensteerReverseWorkflowStepSchema, opensteerRunAuthRecipeInputSchema, opensteerRunAuthRecipeOutputSchema, opensteerRunRecipeInputSchema, opensteerRunRecipeOutputSchema, opensteerRuntimeValueKeySchema, opensteerScriptBeautifyInputSchema, opensteerScriptBeautifyOutputSchema, opensteerScriptDeobfuscateInputSchema, opensteerScriptDeobfuscateOutputSchema, opensteerScriptSandboxInputSchema, opensteerScriptSandboxOutputSchema, opensteerSemanticOperationNames, opensteerSemanticOperationSpecificationMap, opensteerSemanticOperationSpecifications, opensteerSemanticRestEndpoints, opensteerSessionGrantKinds, opensteerStateDeltaSchema, opensteerStateSnapshotSchema, opensteerStateSourceKindSchema, opensteerTransportProbeInputSchema, opensteerTransportProbeOutputSchema, opensteerValidationRuleKindSchema, opensteerValidationRuleSchema, opensteerValueReferenceKindSchema, opensteerValueReferenceSchema, opensteerValueTemplateSchema, opensteerWriteAuthRecipeInputSchema, opensteerWriteRecipeInputSchema, opensteerWriteRequestPlanInputSchema, orderedHeadersSchema, pageInfoSchema, pageLifecycleStateSchema, pageRefSchema, parseOpensteerRef, pointSchema, quadSchema, recordSchema, rectSchema, requestEnvelopeSchema, resolveComputerUseBridge, resolveDomActionBridge, resolveRequiredCapabilities, resolveSemanticRequiredCapabilities, responseEnvelopeSchema, sandboxAjaxModeSchema, sandboxAjaxRouteSchema, sandboxCapturedAjaxCallSchema, sandboxFidelitySchema, screenshotArtifactSchema, screenshotFormatSchema, scriptSourceArtifactDataSchema, scrollOffsetSchema, sessionRefSchema, sessionStorageSnapshotSchema, shadowDomSnapshotModeSchema, sizeSchema, storageEntrySchema, storageOriginSnapshotSchema, storageSnapshotSchema, stringSchema, successEnvelopeSchema, toOpensteerError, traceBundleSchema, traceContextSchema, traceRecordSchema, transportKindSchema, transportProbeLevelSchema, transportProbeResultSchema, unsupportedCapabilityError, unsupportedVersionError, validateJsonSchema, viewportMetricsSchema, visualViewportSchema, workerRefSchema };
|
|
3165
|
+
export { type ActionFailure, type ActionFailureBlocker, type ActionFailureClassificationSource, type ActionFailureCode, type ActionFailureDetails, type ActivatePageInput, type ArtifactExternalLocation, type ArtifactInline, type ArtifactProvenance, type ArtifactReference, type ArtifactRelation, type AttributeEntry, type AttributeMatchClause, type BodyPayload, type BrowserProfileArchiveFormat, type BrowserProfileCreateRequest, type BrowserProfileDescriptor, type BrowserProfileImportCreateRequest, type BrowserProfileImportCreateResponse, type BrowserProfileImportDescriptor, type BrowserProfileImportSnapshotSummary, type BrowserProfileImportStatus, type BrowserProfileListResponse, type BrowserProfileProxyPolicy, type BrowserProfileStatus, type CaptchaDetectionResult, type CaptchaProvider, type CaptchaType, type CaptureScreenshotInput, type ClosePageInput, type ClosePageOutput, type CloseSessionInput, type CloseSessionOutput, type CloudActionFailure, type CloudActionFailureDetails, type CloudActionMethod, type CloudActionRequest, type CloudActionResponse, type CloudActionSuccess, type CloudBrowserContextConfig, type CloudBrowserExtensionConfig, type CloudBrowserLaunchConfig, type CloudBrowserProfileLaunchPreference, type CloudBrowserProfilePreference, type CloudErrorCode, type CloudFingerprintMode, type CloudFingerprintPreference, type CloudGeolocation, type CloudProxyMode, type CloudProxyPreference, type CloudProxyProtocol, type CloudRegistryImportEntry, type CloudRegistryImportRequest, type CloudRegistryImportResponse, type CloudRequestPlanImportEntry, type CloudRequestPlanImportRequest, type CloudSelectorCacheImportEntry, type CloudSelectorCacheImportRequest, type CloudSelectorCacheImportResponse, type CloudSessionLaunchConfig, type CloudSessionSourceType, type CloudSessionStatus, type CloudSessionSummary, type CloudSessionVisibilityScope, type CloudViewport, type ComputerUseBridge, type ComputerUseBridgeInput, type ComputerUseBridgeOutput, type ComputerUseBridgeProvider, type ContextHop, type CookiesArtifactRecord, type CreatePageInput, type CreatePageOutput, type CreateSessionInput, type CreateSessionOutput, type DocumentTargetInput, type DomActionBridge, type DomActionBridgeProvider, type DomActionKeyPressInput, type DomActionScrollAlignment, type DomActionScrollOptions, type DomActionSettleOptions, type DomActionTargetInspection, type DomPointerHitAssessment, type DomPointerHitRelation, type DomSnapshotArtifactRecord, type ExecuteSessionRequestInput, type ExternalBinaryLocation, type GetCookiesInput, type GetCookiesOutput, type GetDomSnapshotInput, type GetFrameInfoInput, type GetHtmlSnapshotInput, type GetNetworkRecordsInput, type GetNetworkRecordsOutput, type GetPageInfoInput, type GetStorageSnapshotInput, type GetViewportMetricsInput, type HistoryNavigationInput, type HistoryNavigationOutput, type HitTestInput, type HtmlSnapshotArtifactRecord, JSON_SCHEMA_DRAFT_2020_12, type JsonArray, type JsonObject, type JsonPrimitive, type JsonSchema, type JsonSchemaType, type JsonSchemaValidationIssue, type JsonValue, type KeyModifier, type KeyPressInput, type KeyPressOutput, type ListFramesInput, type ListFramesOutput, type ListPagesInput, type ListPagesOutput, type MatchClause, type MatchOperator, type MinimizationFieldClassification, type MinimizationFieldResult, type MouseButton, type MouseClickInput, type MouseClickOutput, type MouseMoveInput, type MouseMoveOutput, type MouseScrollInput, type MouseScrollOutput, type NavigatePageInput, type NavigatePageOutput, type NetworkDiffEntropy, type NetworkDiffField, type NetworkDiffFieldKind, type NetworkQueryRecord, type NetworkRecord, type NormalizedComputerScreenshotOptions, OPENSTEER_COMPUTER_USE_BRIDGE_SYMBOL, OPENSTEER_DOM_ACTION_BRIDGE_SYMBOL, OPENSTEER_PROTOCOL_COMPATIBILITY_REVISION, OPENSTEER_PROTOCOL_MEDIA_TYPE, OPENSTEER_PROTOCOL_NAME, OPENSTEER_PROTOCOL_REST_BASE_PATH, OPENSTEER_PROTOCOL_REVISION_DATE, OPENSTEER_PROTOCOL_VERSION, type OpensteerActionResult, type OpensteerAddInitScriptInput, type OpensteerAddInitScriptOutput, type OpensteerArtifact, type OpensteerArtifactKind, type OpensteerArtifactReadInput, type OpensteerArtifactReadOutput, type OpensteerAttachBrowserOptions, type OpensteerAuthRecipeDirectRequestStep, type OpensteerAuthRecipeHookRef, type OpensteerAuthRecipePayload, type OpensteerAuthRecipeRecord, type OpensteerAuthRecipeRef, type OpensteerAuthRecipeRetryOverrides, type OpensteerAuthRecipeSessionRequestStep, type OpensteerAuthRecipeStep, type OpensteerAutomationCancelMessage, type OpensteerAutomationClientMessage, type OpensteerAutomationErrorMessage, type OpensteerAutomationEventMessage, type OpensteerAutomationHelloMessage, type OpensteerAutomationInvokeMessage, type OpensteerAutomationOperationName, type OpensteerAutomationPingMessage, type OpensteerAutomationPongMessage, type OpensteerAutomationResultMessage, type OpensteerAutomationResumeMessage, type OpensteerAutomationServerMessage, type OpensteerBase64RequestBodyInput, type OpensteerBodyCodecDescriptor, type OpensteerBodyCodecKind, type OpensteerBrowserContextOptions, type OpensteerBrowserLaunchOptions, type OpensteerBrowserMode, type OpensteerBrowserOptions, type OpensteerCapability, type OpensteerCapabilityDescriptor, type OpensteerCaptchaSolveInput, type OpensteerCaptchaSolveOutput, type OpensteerCaptureScriptsInput, type OpensteerCaptureScriptsOutput, type OpensteerCapturedScript, type OpensteerChannelDescriptor, type OpensteerComputerAction, type OpensteerComputerAnnotation, type OpensteerComputerClickAction, type OpensteerComputerDisplayScale, type OpensteerComputerDragAction, type OpensteerComputerExecuteInput, type OpensteerComputerExecuteOutput, type OpensteerComputerExecuteTiming, type OpensteerComputerKeyAction, type OpensteerComputerKeyModifier, type OpensteerComputerMouseButton, type OpensteerComputerMoveAction, type OpensteerComputerScreenshotAction, type OpensteerComputerScreenshotOptions, type OpensteerComputerScrollAction, type OpensteerComputerTraceEnrichment, type OpensteerComputerTracePoint, type OpensteerComputerTypeAction, type OpensteerComputerWaitAction, type OpensteerDomClickInput, type OpensteerDomExtractInput, type OpensteerDomExtractOutput, type OpensteerDomHoverInput, type OpensteerDomInputInput, type OpensteerDomScrollInput, type OpensteerError, type OpensteerErrorCode, type OpensteerErrorEnvelope, type OpensteerErrorOptions, type OpensteerExecutableResolver, type OpensteerExecutableResolverKind, type OpensteerGetAuthRecipeInput, type OpensteerGetRecipeInput, type OpensteerGetRequestPlanInput, type OpensteerHttpMethod, type OpensteerInferRequestPlanInput, type OpensteerInspectCookiesInput, type OpensteerInspectStorageInput, type OpensteerInteractionCaptureInput, type OpensteerInteractionCaptureOutput, type OpensteerInteractionCaptureStep, type OpensteerInteractionDiffInput, type OpensteerInteractionDiffOutput, type OpensteerInteractionEventRecord, type OpensteerInteractionGetInput, type OpensteerInteractionGetOutput, type OpensteerInteractionReplayInput, type OpensteerInteractionReplayOutput, type OpensteerInteractionTracePayload, type OpensteerInteractionTraceRecord, type OpensteerJsonRequestBodyInput, type OpensteerListAuthRecipesInput, type OpensteerListAuthRecipesOutput, type OpensteerListRecipesInput, type OpensteerListRecipesOutput, type OpensteerListRequestPlansInput, type OpensteerListRequestPlansOutput, type OpensteerMcpContent, type OpensteerMcpImageContent, type OpensteerMcpTextContent, type OpensteerMcpToolAnnotations, type OpensteerMcpToolDescriptor, type OpensteerMcpToolResult, type OpensteerNetworkClearInput, type OpensteerNetworkClearOutput, type OpensteerNetworkDiffInput, type OpensteerNetworkDiffOutput, type OpensteerNetworkMinimizeInput, type OpensteerNetworkMinimizeOutput, type OpensteerNetworkMinimizeSuccessPolicy, type OpensteerNetworkQueryInput, type OpensteerNetworkQueryOutput, type OpensteerNetworkTagInput, type OpensteerNetworkTagOutput, type OpensteerObservationCluster, type OpensteerObservationClusterMember, type OpensteerObservationClusterRelationshipKind, type OpensteerOpenInput, type OpensteerOpenOutput, type OpensteerOperationName, type OpensteerOperationSpec, type OpensteerPageActivateInput, type OpensteerPageActivateOutput, type OpensteerPageCloseInput, type OpensteerPageCloseOutput, type OpensteerPageEvaluateInput, type OpensteerPageEvaluateOutput, type OpensteerPageGotoInput, type OpensteerPageGotoOutput, type OpensteerPageListInput, type OpensteerPageListOutput, type OpensteerPageNewInput, type OpensteerPageNewOutput, type OpensteerPageSnapshotInput, type OpensteerPageSnapshotOutput, type OpensteerProtocolDescriptor, OpensteerProtocolError, type OpensteerProtocolName, type OpensteerProtocolVersion, type OpensteerProviderDescriptor, type OpensteerProviderMode, type OpensteerRawRequestInput, type OpensteerRawRequestOutput, type OpensteerRecipeCachePolicy, type OpensteerRecipeEvaluateStep, type OpensteerRecipeGotoStep, type OpensteerRecipeHookRef, type OpensteerRecipeHookStep, type OpensteerRecipePayload, type OpensteerRecipeReadCookieStep, type OpensteerRecipeReadStorageStep, type OpensteerRecipeRecord, type OpensteerRecipeRef, type OpensteerRecipeReloadStep, type OpensteerRecipeRequestStep, type OpensteerRecipeRequestStepInput, type OpensteerRecipeRetryOverrides, type OpensteerRecipeSolveCaptchaStep, type OpensteerRecipeStep, type OpensteerRecipeStepBodyJsonPointerCapture, type OpensteerRecipeStepBodyTextCapture, type OpensteerRecipeStepHeaderCapture, type OpensteerRecipeStepResponseCapture, type OpensteerRecipeSyncCookiesToJarStep, type OpensteerRecipeWaitForCookieStep, type OpensteerRecipeWaitForNetworkStep, type OpensteerRecipeWaitForStorageStep, type OpensteerRecipeWaitForUrlStep, type OpensteerRef, type OpensteerRegistryProvenance, type OpensteerRequestBodyInput, type OpensteerRequestEntry, type OpensteerRequestEnvelope, type OpensteerRequestExecuteInput, type OpensteerRequestExecuteOutput, type OpensteerRequestFailurePolicy, type OpensteerRequestFailurePolicyHeaderMatch, type OpensteerRequestInputClassification, type OpensteerRequestInputDescriptor, type OpensteerRequestInputExportPolicy, type OpensteerRequestInputLocation, type OpensteerRequestInputMaterializationPolicy, type OpensteerRequestInputRequiredness, type OpensteerRequestInputSource, type OpensteerRequestParameterLocation, type OpensteerRequestPlanAuth, type OpensteerRequestPlanBody, type OpensteerRequestPlanBodyKind, type OpensteerRequestPlanEndpoint, type OpensteerRequestPlanFreshness, type OpensteerRequestPlanParameter, type OpensteerRequestPlanPayload, type OpensteerRequestPlanRecipeBinding, type OpensteerRequestPlanRecipes, type OpensteerRequestPlanRecord, type OpensteerRequestPlanRecoverBinding, type OpensteerRequestPlanResponseExpectation, type OpensteerRequestPlanTransport, type OpensteerRequestResponseResult, type OpensteerRequestRetryBackoffPolicy, type OpensteerRequestRetryPolicy, type OpensteerRequestScalar, type OpensteerRequestScalarMap, type OpensteerRequestTransportResult, type OpensteerResolvedTarget, type OpensteerResponseEnvelope, type OpensteerRestEndpointDescriptor, type OpensteerReverseAdvisorySignals, type OpensteerReverseAdvisoryTag, type OpensteerReverseAdvisoryTemplate, type OpensteerReverseAssertWorkflowStep, type OpensteerReverseAwaitRecordMatch, type OpensteerReverseAwaitRecordWorkflowStep, type OpensteerReverseCandidateAdvisoryItem, type OpensteerReverseCandidateBoundary, type OpensteerReverseCandidateRecord, type OpensteerReverseCasePayload, type OpensteerReverseCaseRecord, type OpensteerReverseCaseStatus, type OpensteerReverseChannelKind, type OpensteerReverseConstraintKind, type OpensteerReverseDiscoverInput, type OpensteerReverseDiscoverOutput, type OpensteerReverseDiscoverySummaryCounts, type OpensteerReverseExperimentRecord, type OpensteerReverseExportInput, type OpensteerReverseExportOutput, type OpensteerReverseExportRecord, type OpensteerReverseGuardRecord, type OpensteerReverseManualCalibrationMode, type OpensteerReverseObservationRecord, type OpensteerReverseObservedRecord, type OpensteerReverseOperationWorkflowStep, type OpensteerReversePackageCreateInput, type OpensteerReversePackageCreateOutput, type OpensteerReversePackageGetInput, type OpensteerReversePackageGetOutput, type OpensteerReversePackageKind, type OpensteerReversePackageListInput, type OpensteerReversePackageListOutput, type OpensteerReversePackagePatchInput, type OpensteerReversePackagePatchOutput, type OpensteerReversePackagePayload, type OpensteerReversePackageReadiness, type OpensteerReversePackageRecord, type OpensteerReversePackageRequirements, type OpensteerReversePackageRunInput, type OpensteerReversePackageRunOutput, type OpensteerReverseQueryCandidateItem, type OpensteerReverseQueryClusterItem, type OpensteerReverseQueryFilters, type OpensteerReverseQueryInput, type OpensteerReverseQueryOutput, type OpensteerReverseQueryRecordItem, type OpensteerReverseQuerySnapshot, type OpensteerReverseQuerySort, type OpensteerReverseQueryView, type OpensteerReverseReplayRunRecord, type OpensteerReverseReplayValidation, type OpensteerReverseReportInput, type OpensteerReverseReportKind, type OpensteerReverseReportOutput, type OpensteerReverseReportPayload, type OpensteerReverseReportRecord, type OpensteerReverseRequirement, type OpensteerReverseRequirementKind, type OpensteerReverseRequirementStatus, type OpensteerReverseSortDirection, type OpensteerReverseSortKey, type OpensteerReverseSortPreset, type OpensteerReverseSortTerm, type OpensteerReverseSuggestedEdit, type OpensteerReverseSuggestedEditKind, type OpensteerReverseTargetHints, type OpensteerReverseWorkflowStep, type OpensteerReverseWorkflowStepKind, type OpensteerRunAuthRecipeInput, type OpensteerRunAuthRecipeOutput, type OpensteerRunRecipeInput, type OpensteerRunRecipeOutput, type OpensteerRuntimeValueKey, type OpensteerRuntimeVersionInfo, type OpensteerScriptBeautifyInput, type OpensteerScriptBeautifyOutput, type OpensteerScriptDeobfuscateInput, type OpensteerScriptDeobfuscateOutput, type OpensteerScriptSandboxInput, type OpensteerScriptSandboxOutput, type OpensteerSemanticOperationName, type OpensteerSemanticOperationSpec, type OpensteerSemanticRestEndpointDescriptor, type OpensteerSessionAccessGrantResponse, type OpensteerSessionCapabilities, type OpensteerSessionCloseInput, type OpensteerSessionCloseOutput, type OpensteerSessionGrant, type OpensteerSessionGrantKind, type OpensteerSessionInfo, type OpensteerSessionInfoResult, type OpensteerSessionOwnership, type OpensteerSessionState, type OpensteerSnapshotCounter, type OpensteerSnapshotMode, type OpensteerStateDelta, type OpensteerStateSnapshot, type OpensteerStateSourceKind, type OpensteerStealthProfileInput, type OpensteerSuccessEnvelope, type OpensteerTargetByDescription, type OpensteerTargetByElement, type OpensteerTargetBySelector, type OpensteerTargetInput, type OpensteerTextRequestBodyInput, type OpensteerTransportProbeInput, type OpensteerTransportProbeOutput, type OpensteerValidationRule, type OpensteerValidationRuleKind, type OpensteerValueReference, type OpensteerValueReferenceEnvelope, type OpensteerValueReferenceKind, type OpensteerValueTemplate, type OpensteerValueTemplateObject, type OpensteerWriteAuthRecipeInput, type OpensteerWriteRecipeInput, type OpensteerWriteRequestPlanInput, type ParsedOpensteerRef, type PathNode, type PathNodePosition, type PortableBrowserFamily, type PortableBrowserProfileCookieRecord, type PortableBrowserProfileSnapshot, type PortableBrowserProfileSnapshotFormat, type PortableBrowserProfileSnapshotSource, type PositionMatchClause, type ReadAttributesInput, type ReadAttributesOutput, type ReadTextInput, type ReadTextOutput, type ReloadPageInput, type ReplayElementPath, type SandboxAjaxMode, type SandboxAjaxRoute, type SandboxCapturedAjaxCall, type SandboxFidelity, type ScreenshotArtifact, type ScreenshotArtifactRecord, type ScriptSourceArtifactData, type ScriptSourceArtifactRecord, type SessionTransportRequest, type SessionTransportResponse, type SetExecutionStateInput, type SetExecutionStateOutput, type StopLoadingInput, type StopLoadingOutput, type StorageSnapshotArtifactRecord, type StructuralElementAnchor, type TextInputInput, type TextInputOutput, type TraceBundle, type TraceContext, type TraceOutcome, type TraceRecord, type TransportKind, type TransportProbeLevel, type TransportProbeResult, arraySchema, artifactReferenceSchema, assertSupportedProtocolVersion, assertValidSemanticOperationInput, bodyPayloadEncodingSchema, bodyPayloadFromUtf8, bodyPayloadSchema, captchaDetectionResultSchema, captchaProviderSchema, captchaTypeSchema, chooserRefSchema, cloudActionMethods, cloudErrorCodes, cloudSessionSourceTypes, cloudSessionStatuses, cookiePrioritySchema, cookieRecordSchema, cookieSameSiteSchema, coordinateSpaceSchema, createBodyPayload, createErrorEnvelope, createOpensteerError, createRequestEnvelope, createStructuredToolResult, createSuccessEnvelope, defineSchema, dialogRefSchema, documentEpochSchema, documentRefSchema, domSnapshotNodeSchema, domSnapshotSchema, downloadRefSchema, enumSchema, externalBinaryLocationSchema, frameInfoSchema, frameRefSchema, hasCapability, headerEntrySchema, hitTestResultSchema, htmlSnapshotSchema, httpStatusForOpensteerError, indexedDbDatabaseSnapshotSchema, indexedDbIndexSnapshotSchema, indexedDbObjectStoreSnapshotSchema, indexedDbRecordSchema, integerSchema, isCloudActionMethod, isCloudErrorCode, isCloudSessionSourceType, isCloudSessionStatus, isErrorEnvelope, isOpensteerProtocolError, isOpensteerRef, isSupportedProtocolVersion, layoutViewportSchema, literalSchema, minimizationFieldClassificationSchema, minimizationFieldResultSchema, networkCaptureStateSchema, networkDiffEntropySchema, networkDiffFieldKindSchema, networkDiffFieldSchema, networkInitiatorSchema, networkInitiatorTypeSchema, networkQueryRecordSchema, networkRecordKindSchema, networkRecordSchema, networkRequestIdSchema, networkResourceTypeSchema, networkSourceMetadataSchema, networkTimingSchema, networkTransferSizesSchema, nodeLocatorSchema, nodeRefSchema, numberSchema, objectSchema, oneOfSchema, opensteerArtifactReadInputSchema, opensteerArtifactReadOutputSchema, opensteerArtifactSchema, opensteerAuthRecipeHookRefSchema, opensteerAuthRecipePayloadSchema, opensteerAuthRecipeRecordSchema, opensteerAuthRecipeRefSchema, opensteerAuthRecipeStepSchema, opensteerAutomationOperationNames, opensteerBodyCodecDescriptorSchema, opensteerBodyCodecKindSchema, opensteerCapabilities, opensteerCapabilityDescriptorListSchema, opensteerCapabilityDescriptorSchema, opensteerCapabilityDescriptors, opensteerCapabilitySchema, opensteerCapabilitySetSchema, opensteerCaptchaSolveInputSchema, opensteerCaptchaSolveOutputSchema, opensteerComputerAnnotationNames, opensteerErrorCodeSchema, opensteerErrorCodes, opensteerErrorEnvelopeSchema, opensteerErrorSchema, opensteerEventSchema, opensteerExecutableResolverKindSchema, opensteerExecutableResolverSchema, opensteerGetAuthRecipeInputSchema, opensteerGetRecipeInputSchema, opensteerGetRequestPlanInputSchema, opensteerInferRequestPlanInputSchema, opensteerInteractionCaptureInputSchema, opensteerInteractionCaptureOutputSchema, opensteerInteractionDiffInputSchema, opensteerInteractionDiffOutputSchema, opensteerInteractionEventRecordSchema, opensteerInteractionGetInputSchema, opensteerInteractionGetOutputSchema, opensteerInteractionReplayInputSchema, opensteerInteractionReplayOutputSchema, opensteerInteractionTracePayloadSchema, opensteerInteractionTraceRecordSchema, opensteerListAuthRecipesInputSchema, opensteerListAuthRecipesOutputSchema, opensteerListRecipesInputSchema, opensteerListRecipesOutputSchema, opensteerListRequestPlansInputSchema, opensteerListRequestPlansOutputSchema, opensteerMcpTools, opensteerNetworkClearInputSchema, opensteerNetworkClearOutputSchema, opensteerNetworkDiffInputSchema, opensteerNetworkDiffOutputSchema, opensteerNetworkMinimizeInputSchema, opensteerNetworkMinimizeOutputSchema, opensteerNetworkMinimizeSuccessPolicySchema, opensteerNetworkQueryInputSchema, opensteerNetworkQueryOutputSchema, opensteerNetworkTagInputSchema, opensteerNetworkTagOutputSchema, opensteerObservationClusterRelationshipKindSchema, opensteerObservationClusterSchema, opensteerOperationNames, opensteerOperationSpecificationMap, opensteerOperationSpecifications, opensteerProtocolDescriptor, opensteerProtocolDescriptorSchema, opensteerRawRequestInputSchema, opensteerRawRequestOutputSchema, opensteerRecipeCachePolicySchema, opensteerRecipeHookRefSchema, opensteerRecipePayloadSchema, opensteerRecipeRecordSchema, opensteerRecipeRefSchema, opensteerRecipeStepSchema, opensteerRefKindSchema, opensteerRefSchema, opensteerRegistryProvenanceSchema, opensteerRequestBodyInputSchema, opensteerRequestEntrySchema, opensteerRequestExecuteInputSchema, opensteerRequestExecuteOutputSchema, opensteerRequestFailurePolicyHeaderMatchSchema, opensteerRequestFailurePolicySchema, opensteerRequestInputClassificationSchema, opensteerRequestInputDescriptorSchema, opensteerRequestInputExportPolicySchema, opensteerRequestInputLocationSchema, opensteerRequestInputMaterializationPolicySchema, opensteerRequestInputRequirednessSchema, opensteerRequestInputSourceSchema, opensteerRequestPlanAuthSchema, opensteerRequestPlanBodySchema, opensteerRequestPlanEndpointSchema, opensteerRequestPlanFreshnessSchema, opensteerRequestPlanParameterLocationSchema, opensteerRequestPlanParameterSchema, opensteerRequestPlanPayloadSchema, opensteerRequestPlanRecipeBindingSchema, opensteerRequestPlanRecipesSchema, opensteerRequestPlanRecordSchema, opensteerRequestPlanRecoverBindingSchema, opensteerRequestPlanResponseExpectationSchema, opensteerRequestPlanTransportSchema, opensteerRequestResponseResultSchema, opensteerRequestRetryBackoffPolicySchema, opensteerRequestRetryPolicySchema, opensteerRequestScalarSchema, opensteerRequestTransportResultSchema, opensteerRestEndpoints, opensteerReverseAdvisorySignalsSchema, opensteerReverseAdvisoryTagSchema, opensteerReverseAdvisoryTemplateSchema, opensteerReverseCandidateBoundarySchema, opensteerReverseCandidateRecordSchema, opensteerReverseCandidateReportItemSchema, opensteerReverseCasePayloadSchema, opensteerReverseCaseRecordSchema, opensteerReverseCaseStatusSchema, opensteerReverseChannelKindSchema, opensteerReverseConstraintKindSchema, opensteerReverseDiscoverInputSchema, opensteerReverseDiscoverOutputSchema, opensteerReverseExperimentRecordSchema, opensteerReverseExportInputSchema, opensteerReverseExportOutputSchema, opensteerReverseExportRecordSchema, opensteerReverseGuardRecordSchema, opensteerReverseManualCalibrationModeSchema, opensteerReverseObservationRecordSchema, opensteerReverseObservedRecordSchema, opensteerReversePackageCreateInputSchema, opensteerReversePackageCreateOutputSchema, opensteerReversePackageGetInputSchema, opensteerReversePackageGetOutputSchema, opensteerReversePackageKindSchema, opensteerReversePackageListInputSchema, opensteerReversePackageListOutputSchema, opensteerReversePackagePatchInputSchema, opensteerReversePackagePatchOutputSchema, opensteerReversePackagePayloadSchema, opensteerReversePackageReadinessSchema, opensteerReversePackageRecordSchema, opensteerReversePackageRequirementsSchema, opensteerReversePackageRunInputSchema, opensteerReversePackageRunOutputSchema, opensteerReverseQueryInputSchema, opensteerReverseQueryOutputSchema, opensteerReverseQueryViewSchema, opensteerReverseReplayRunRecordSchema, opensteerReverseReplayValidationSchema, opensteerReverseReportInputSchema, opensteerReverseReportKindSchema, opensteerReverseReportOutputSchema, opensteerReverseReportPayloadSchema, opensteerReverseReportRecordSchema, opensteerReverseRequirementKindSchema, opensteerReverseRequirementSchema, opensteerReverseRequirementStatusSchema, opensteerReverseSortDirectionSchema, opensteerReverseSortKeySchema, opensteerReverseSortPresetSchema, opensteerReverseSuggestedEditKindSchema, opensteerReverseSuggestedEditSchema, opensteerReverseTargetHintsSchema, opensteerReverseWorkflowStepKindSchema, opensteerReverseWorkflowStepSchema, opensteerRunAuthRecipeInputSchema, opensteerRunAuthRecipeOutputSchema, opensteerRunRecipeInputSchema, opensteerRunRecipeOutputSchema, opensteerRuntimeValueKeySchema, opensteerScriptBeautifyInputSchema, opensteerScriptBeautifyOutputSchema, opensteerScriptDeobfuscateInputSchema, opensteerScriptDeobfuscateOutputSchema, opensteerScriptSandboxInputSchema, opensteerScriptSandboxOutputSchema, opensteerSemanticOperationNames, opensteerSemanticOperationSpecificationMap, opensteerSemanticOperationSpecifications, opensteerSemanticRestEndpoints, opensteerSessionGrantKinds, opensteerStateDeltaSchema, opensteerStateSnapshotSchema, opensteerStateSourceKindSchema, opensteerTransportProbeInputSchema, opensteerTransportProbeOutputSchema, opensteerValidationRuleKindSchema, opensteerValidationRuleSchema, opensteerValueReferenceKindSchema, opensteerValueReferenceSchema, opensteerValueTemplateSchema, opensteerWriteAuthRecipeInputSchema, opensteerWriteRecipeInputSchema, opensteerWriteRequestPlanInputSchema, orderedHeadersSchema, pageInfoSchema, pageLifecycleStateSchema, pageRefSchema, parseOpensteerRef, pointSchema, quadSchema, recordSchema, rectSchema, requestEnvelopeSchema, resolveComputerUseBridge, resolveDomActionBridge, resolveRequiredCapabilities, resolveSemanticRequiredCapabilities, responseEnvelopeSchema, sandboxAjaxModeSchema, sandboxAjaxRouteSchema, sandboxCapturedAjaxCallSchema, sandboxFidelitySchema, screenshotArtifactSchema, screenshotFormatSchema, scriptSourceArtifactDataSchema, scrollOffsetSchema, sessionRefSchema, sessionStorageSnapshotSchema, shadowDomSnapshotModeSchema, sizeSchema, storageEntrySchema, storageOriginSnapshotSchema, storageSnapshotSchema, stringSchema, successEnvelopeSchema, toOpensteerError, traceBundleSchema, traceContextSchema, traceRecordSchema, transportKindSchema, transportProbeLevelSchema, transportProbeResultSchema, unsupportedCapabilityError, unsupportedVersionError, validateJsonSchema, viewportMetricsSchema, visualViewportSchema, workerRefSchema };
|