@opensteer/protocol 0.7.4 → 0.7.6
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 +593 -651
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +192 -118
- package/dist/index.d.ts +192 -118
- package/dist/index.js +583 -638
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/index.d.cts
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,
|
|
1
|
+
import { SessionRef, PageRef, FrameRef, DocumentRef, NodeRef, NetworkRequestId, DownloadRef, DialogRef, ChooserRef, WorkerRef, BodyPayloadEncoding, NetworkRecordKind, HeaderEntry, NetworkResourceType, NetworkInitiator, NetworkTiming, NetworkTransferSizes, NetworkSourceMetadata, NetworkCaptureState, CookieRecord, StorageEntry, DocumentEpoch, Size, CoordinateSpace, Rect, 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;
|
|
@@ -227,6 +227,18 @@ declare const captchaDetectionResultSchema: JsonSchema;
|
|
|
227
227
|
declare const opensteerCaptchaSolveInputSchema: JsonSchema;
|
|
228
228
|
declare const opensteerCaptchaSolveOutputSchema: JsonSchema;
|
|
229
229
|
|
|
230
|
+
declare const cookieSameSiteSchema: JsonSchema;
|
|
231
|
+
declare const cookiePrioritySchema: JsonSchema;
|
|
232
|
+
declare const cookieRecordSchema: JsonSchema;
|
|
233
|
+
declare const storageEntrySchema: JsonSchema;
|
|
234
|
+
declare const indexedDbRecordSchema: JsonSchema;
|
|
235
|
+
declare const indexedDbIndexSnapshotSchema: JsonSchema;
|
|
236
|
+
declare const indexedDbObjectStoreSnapshotSchema: JsonSchema;
|
|
237
|
+
declare const indexedDbDatabaseSnapshotSchema: JsonSchema;
|
|
238
|
+
declare const storageOriginSnapshotSchema: JsonSchema;
|
|
239
|
+
declare const sessionStorageSnapshotSchema: JsonSchema;
|
|
240
|
+
declare const storageSnapshotSchema: JsonSchema;
|
|
241
|
+
|
|
230
242
|
type OpensteerRequestScalar = string | number | boolean;
|
|
231
243
|
type TransportKind = "direct-http" | "matched-tls" | "context-http" | "page-http" | "session-http";
|
|
232
244
|
interface OpensteerRequestEntry {
|
|
@@ -507,13 +519,159 @@ interface OpensteerNetworkQueryInput {
|
|
|
507
519
|
readonly hostname?: string;
|
|
508
520
|
readonly path?: string;
|
|
509
521
|
readonly method?: string;
|
|
510
|
-
readonly status?: string;
|
|
522
|
+
readonly status?: string | number;
|
|
511
523
|
readonly resourceType?: NetworkResourceType;
|
|
512
524
|
readonly includeBodies?: boolean;
|
|
525
|
+
readonly json?: boolean;
|
|
526
|
+
readonly before?: string;
|
|
527
|
+
readonly after?: string;
|
|
513
528
|
readonly limit?: number;
|
|
514
529
|
}
|
|
530
|
+
interface OpensteerGraphqlSummary {
|
|
531
|
+
readonly operationType?: "query" | "mutation" | "subscription" | "unknown";
|
|
532
|
+
readonly operationName?: string;
|
|
533
|
+
readonly persisted?: boolean;
|
|
534
|
+
}
|
|
535
|
+
interface OpensteerNetworkBodySummary {
|
|
536
|
+
readonly bytes?: number;
|
|
537
|
+
readonly contentType?: string;
|
|
538
|
+
readonly streaming?: boolean;
|
|
539
|
+
}
|
|
540
|
+
interface OpensteerNetworkSummaryRecord {
|
|
541
|
+
readonly recordId: string;
|
|
542
|
+
readonly capture?: string;
|
|
543
|
+
readonly savedAt?: number;
|
|
544
|
+
readonly kind: NetworkQueryRecord["record"]["kind"];
|
|
545
|
+
readonly method: string;
|
|
546
|
+
readonly status?: number;
|
|
547
|
+
readonly resourceType: NetworkResourceType;
|
|
548
|
+
readonly url: string;
|
|
549
|
+
readonly request?: OpensteerNetworkBodySummary;
|
|
550
|
+
readonly response?: OpensteerNetworkBodySummary;
|
|
551
|
+
readonly graphql?: OpensteerGraphqlSummary;
|
|
552
|
+
readonly websocket?: {
|
|
553
|
+
readonly subprotocol?: string;
|
|
554
|
+
};
|
|
555
|
+
}
|
|
515
556
|
interface OpensteerNetworkQueryOutput {
|
|
516
|
-
readonly records: readonly
|
|
557
|
+
readonly records: readonly OpensteerNetworkSummaryRecord[];
|
|
558
|
+
}
|
|
559
|
+
interface OpensteerParsedCookie {
|
|
560
|
+
readonly name: string;
|
|
561
|
+
readonly value: string;
|
|
562
|
+
}
|
|
563
|
+
interface OpensteerStructuredBodyPreview {
|
|
564
|
+
readonly contentType?: string;
|
|
565
|
+
readonly bytes: number;
|
|
566
|
+
readonly truncated: boolean;
|
|
567
|
+
readonly data?: JsonValue | string;
|
|
568
|
+
readonly note?: string;
|
|
569
|
+
}
|
|
570
|
+
interface OpensteerNetworkRedirectHop {
|
|
571
|
+
readonly method: string;
|
|
572
|
+
readonly status?: number;
|
|
573
|
+
readonly url: string;
|
|
574
|
+
readonly location?: string;
|
|
575
|
+
readonly setCookie?: readonly string[];
|
|
576
|
+
}
|
|
577
|
+
interface OpensteerNetworkDetailOutput {
|
|
578
|
+
readonly recordId: string;
|
|
579
|
+
readonly capture?: string;
|
|
580
|
+
readonly savedAt?: number;
|
|
581
|
+
readonly summary: OpensteerNetworkSummaryRecord;
|
|
582
|
+
readonly requestHeaders: readonly HeaderEntry[];
|
|
583
|
+
readonly responseHeaders: readonly HeaderEntry[];
|
|
584
|
+
readonly cookiesSent?: readonly OpensteerParsedCookie[];
|
|
585
|
+
readonly requestBody?: OpensteerStructuredBodyPreview;
|
|
586
|
+
readonly responseBody?: OpensteerStructuredBodyPreview;
|
|
587
|
+
readonly graphql?: OpensteerGraphqlSummary & {
|
|
588
|
+
readonly variables?: JsonValue;
|
|
589
|
+
};
|
|
590
|
+
readonly redirectChain?: readonly OpensteerNetworkRedirectHop[];
|
|
591
|
+
readonly notes?: readonly string[];
|
|
592
|
+
}
|
|
593
|
+
interface OpensteerReplayAttempt {
|
|
594
|
+
readonly transport: TransportKind;
|
|
595
|
+
readonly status?: number;
|
|
596
|
+
readonly ok: boolean;
|
|
597
|
+
readonly durationMs: number;
|
|
598
|
+
readonly note?: string;
|
|
599
|
+
readonly error?: string;
|
|
600
|
+
}
|
|
601
|
+
interface OpensteerNetworkReplayOverrides {
|
|
602
|
+
readonly query?: OpensteerRequestScalarMap;
|
|
603
|
+
readonly headers?: OpensteerRequestScalarMap;
|
|
604
|
+
readonly body?: OpensteerRequestBodyInput;
|
|
605
|
+
readonly variables?: JsonValue;
|
|
606
|
+
}
|
|
607
|
+
interface OpensteerNetworkReplayInput extends OpensteerNetworkReplayOverrides {
|
|
608
|
+
readonly recordId: string;
|
|
609
|
+
readonly pageRef?: PageRef;
|
|
610
|
+
}
|
|
611
|
+
interface OpensteerNetworkReplayOutput {
|
|
612
|
+
readonly recordId: string;
|
|
613
|
+
readonly transport?: TransportKind;
|
|
614
|
+
readonly attempts: readonly OpensteerReplayAttempt[];
|
|
615
|
+
readonly response?: OpensteerRequestResponseResult;
|
|
616
|
+
readonly data?: JsonValue | string;
|
|
617
|
+
readonly note?: string;
|
|
618
|
+
}
|
|
619
|
+
type OpensteerSessionFetchTransport = "auto" | "direct" | "matched-tls" | "page";
|
|
620
|
+
interface OpensteerSessionFetchInput {
|
|
621
|
+
readonly pageRef?: PageRef;
|
|
622
|
+
readonly url: string;
|
|
623
|
+
readonly method?: string;
|
|
624
|
+
readonly query?: OpensteerRequestScalarMap;
|
|
625
|
+
readonly headers?: OpensteerRequestScalarMap;
|
|
626
|
+
readonly body?: OpensteerRequestBodyInput;
|
|
627
|
+
readonly transport?: OpensteerSessionFetchTransport;
|
|
628
|
+
readonly cookies?: boolean;
|
|
629
|
+
readonly followRedirects?: boolean;
|
|
630
|
+
}
|
|
631
|
+
interface OpensteerSessionFetchOutput {
|
|
632
|
+
readonly transport?: TransportKind;
|
|
633
|
+
readonly attempts: readonly OpensteerReplayAttempt[];
|
|
634
|
+
readonly response?: OpensteerRequestResponseResult;
|
|
635
|
+
readonly data?: JsonValue | string;
|
|
636
|
+
readonly note?: string;
|
|
637
|
+
}
|
|
638
|
+
interface OpensteerCookieQueryInput {
|
|
639
|
+
readonly domain?: string;
|
|
640
|
+
}
|
|
641
|
+
interface OpensteerCookieQueryOutput {
|
|
642
|
+
readonly domain?: string;
|
|
643
|
+
readonly cookies: readonly CookieRecord[];
|
|
644
|
+
}
|
|
645
|
+
type OpensteerStorageArea = "local" | "session";
|
|
646
|
+
interface OpensteerStorageQueryInput {
|
|
647
|
+
readonly domain?: string;
|
|
648
|
+
}
|
|
649
|
+
interface OpensteerStorageDomainSnapshot {
|
|
650
|
+
readonly domain: string;
|
|
651
|
+
readonly localStorage: readonly StorageEntry[];
|
|
652
|
+
readonly sessionStorage: readonly StorageEntry[];
|
|
653
|
+
}
|
|
654
|
+
interface OpensteerStorageQueryOutput {
|
|
655
|
+
readonly domains: readonly OpensteerStorageDomainSnapshot[];
|
|
656
|
+
}
|
|
657
|
+
interface OpensteerHiddenField {
|
|
658
|
+
readonly path: string;
|
|
659
|
+
readonly name: string;
|
|
660
|
+
readonly value: string;
|
|
661
|
+
}
|
|
662
|
+
interface OpensteerStateDomainSnapshot {
|
|
663
|
+
readonly domain: string;
|
|
664
|
+
readonly cookies: readonly CookieRecord[];
|
|
665
|
+
readonly hiddenFields: readonly OpensteerHiddenField[];
|
|
666
|
+
readonly localStorage: readonly StorageEntry[];
|
|
667
|
+
readonly sessionStorage: readonly StorageEntry[];
|
|
668
|
+
readonly globals?: Readonly<Record<string, JsonValue>>;
|
|
669
|
+
}
|
|
670
|
+
interface OpensteerStateQueryInput {
|
|
671
|
+
readonly domain?: string;
|
|
672
|
+
}
|
|
673
|
+
interface OpensteerStateQueryOutput {
|
|
674
|
+
readonly domains: readonly OpensteerStateDomainSnapshot[];
|
|
517
675
|
}
|
|
518
676
|
interface OpensteerNetworkTagInput {
|
|
519
677
|
readonly pageRef?: PageRef;
|
|
@@ -710,7 +868,19 @@ declare const opensteerAuthRecipePayloadSchema: JsonSchema;
|
|
|
710
868
|
declare const opensteerRecipeRecordSchema: JsonSchema;
|
|
711
869
|
declare const opensteerAuthRecipeRecordSchema: JsonSchema;
|
|
712
870
|
declare const opensteerNetworkQueryInputSchema: JsonSchema;
|
|
871
|
+
declare const opensteerNetworkSummaryRecordSchema: JsonSchema;
|
|
713
872
|
declare const opensteerNetworkQueryOutputSchema: JsonSchema;
|
|
873
|
+
declare const opensteerNetworkDetailOutputSchema: JsonSchema;
|
|
874
|
+
declare const opensteerNetworkReplayInputSchema: JsonSchema;
|
|
875
|
+
declare let opensteerNetworkReplayOutputSchema: JsonSchema;
|
|
876
|
+
declare const opensteerSessionFetchInputSchema: JsonSchema;
|
|
877
|
+
declare let opensteerSessionFetchOutputSchema: JsonSchema;
|
|
878
|
+
declare const opensteerCookieQueryInputSchema: JsonSchema;
|
|
879
|
+
declare const opensteerCookieQueryOutputSchema: JsonSchema;
|
|
880
|
+
declare const opensteerStorageQueryInputSchema: JsonSchema;
|
|
881
|
+
declare const opensteerStorageQueryOutputSchema: JsonSchema;
|
|
882
|
+
declare const opensteerStateQueryInputSchema: JsonSchema;
|
|
883
|
+
declare const opensteerStateQueryOutputSchema: JsonSchema;
|
|
714
884
|
declare const opensteerNetworkTagInputSchema: JsonSchema;
|
|
715
885
|
declare const opensteerNetworkTagOutputSchema: JsonSchema;
|
|
716
886
|
declare const opensteerNetworkClearInputSchema: JsonSchema;
|
|
@@ -739,18 +909,6 @@ declare const opensteerRequestExecuteOutputSchema: JsonSchema;
|
|
|
739
909
|
declare const opensteerRawRequestOutputSchema: JsonSchema;
|
|
740
910
|
declare const opensteerInferRequestPlanInputSchema: JsonSchema;
|
|
741
911
|
|
|
742
|
-
declare const cookieSameSiteSchema: JsonSchema;
|
|
743
|
-
declare const cookiePrioritySchema: JsonSchema;
|
|
744
|
-
declare const cookieRecordSchema: JsonSchema;
|
|
745
|
-
declare const storageEntrySchema: JsonSchema;
|
|
746
|
-
declare const indexedDbRecordSchema: JsonSchema;
|
|
747
|
-
declare const indexedDbIndexSnapshotSchema: JsonSchema;
|
|
748
|
-
declare const indexedDbObjectStoreSnapshotSchema: JsonSchema;
|
|
749
|
-
declare const indexedDbDatabaseSnapshotSchema: JsonSchema;
|
|
750
|
-
declare const storageOriginSnapshotSchema: JsonSchema;
|
|
751
|
-
declare const sessionStorageSnapshotSchema: JsonSchema;
|
|
752
|
-
declare const storageSnapshotSchema: JsonSchema;
|
|
753
|
-
|
|
754
912
|
interface ScreenshotArtifact {
|
|
755
913
|
readonly pageRef: PageRef;
|
|
756
914
|
readonly frameRef?: FrameRef;
|
|
@@ -907,8 +1065,8 @@ interface CloudSessionRecordingState {
|
|
|
907
1065
|
interface CloudSelectorCacheImportEntry {
|
|
908
1066
|
readonly workspace: string;
|
|
909
1067
|
readonly method: string;
|
|
910
|
-
readonly
|
|
911
|
-
readonly
|
|
1068
|
+
readonly nameHash: string;
|
|
1069
|
+
readonly name?: string;
|
|
912
1070
|
readonly path: unknown;
|
|
913
1071
|
readonly schemaHash?: string;
|
|
914
1072
|
readonly createdAt: number;
|
|
@@ -1441,15 +1599,15 @@ interface OpensteerTargetByElement {
|
|
|
1441
1599
|
readonly kind: "element";
|
|
1442
1600
|
readonly element: number;
|
|
1443
1601
|
}
|
|
1444
|
-
interface
|
|
1445
|
-
readonly kind: "
|
|
1446
|
-
readonly
|
|
1602
|
+
interface OpensteerTargetByPersist {
|
|
1603
|
+
readonly kind: "persist";
|
|
1604
|
+
readonly name: string;
|
|
1447
1605
|
}
|
|
1448
1606
|
interface OpensteerTargetBySelector {
|
|
1449
1607
|
readonly kind: "selector";
|
|
1450
1608
|
readonly selector: string;
|
|
1451
1609
|
}
|
|
1452
|
-
type OpensteerTargetInput = OpensteerTargetByElement |
|
|
1610
|
+
type OpensteerTargetInput = OpensteerTargetByElement | OpensteerTargetByPersist | OpensteerTargetBySelector;
|
|
1453
1611
|
interface OpensteerResolvedTarget {
|
|
1454
1612
|
readonly pageRef: PageRef;
|
|
1455
1613
|
readonly frameRef: FrameRef;
|
|
@@ -1458,7 +1616,7 @@ interface OpensteerResolvedTarget {
|
|
|
1458
1616
|
readonly nodeRef: NodeRef;
|
|
1459
1617
|
readonly tagName: string;
|
|
1460
1618
|
readonly pathHint: string;
|
|
1461
|
-
readonly
|
|
1619
|
+
readonly persist?: string;
|
|
1462
1620
|
readonly selectorUsed?: string;
|
|
1463
1621
|
}
|
|
1464
1622
|
interface OpensteerActionResult {
|
|
@@ -1467,7 +1625,7 @@ interface OpensteerActionResult {
|
|
|
1467
1625
|
readonly x: number;
|
|
1468
1626
|
readonly y: number;
|
|
1469
1627
|
};
|
|
1470
|
-
readonly
|
|
1628
|
+
readonly persisted?: string;
|
|
1471
1629
|
}
|
|
1472
1630
|
interface OpensteerSnapshotCounter {
|
|
1473
1631
|
readonly element: number;
|
|
@@ -1590,30 +1748,30 @@ interface OpensteerDomClickInput {
|
|
|
1590
1748
|
readonly button?: OpensteerComputerMouseButton;
|
|
1591
1749
|
readonly clickCount?: number;
|
|
1592
1750
|
readonly modifiers?: readonly OpensteerComputerKeyModifier[];
|
|
1593
|
-
readonly
|
|
1751
|
+
readonly persist?: string;
|
|
1594
1752
|
readonly captureNetwork?: string;
|
|
1595
1753
|
}
|
|
1596
1754
|
interface OpensteerDomHoverInput {
|
|
1597
1755
|
readonly target: OpensteerTargetInput;
|
|
1598
|
-
readonly
|
|
1756
|
+
readonly persist?: string;
|
|
1599
1757
|
readonly captureNetwork?: string;
|
|
1600
1758
|
}
|
|
1601
1759
|
interface OpensteerDomInputInput {
|
|
1602
1760
|
readonly target: OpensteerTargetInput;
|
|
1603
1761
|
readonly text: string;
|
|
1604
1762
|
readonly pressEnter?: boolean;
|
|
1605
|
-
readonly
|
|
1763
|
+
readonly persist?: string;
|
|
1606
1764
|
readonly captureNetwork?: string;
|
|
1607
1765
|
}
|
|
1608
1766
|
interface OpensteerDomScrollInput {
|
|
1609
1767
|
readonly target: OpensteerTargetInput;
|
|
1610
1768
|
readonly direction: "up" | "down" | "left" | "right";
|
|
1611
1769
|
readonly amount: number;
|
|
1612
|
-
readonly
|
|
1770
|
+
readonly persist?: string;
|
|
1613
1771
|
readonly captureNetwork?: string;
|
|
1614
1772
|
}
|
|
1615
1773
|
interface OpensteerDomExtractInput {
|
|
1616
|
-
readonly
|
|
1774
|
+
readonly persist?: string;
|
|
1617
1775
|
readonly schema?: Readonly<Record<string, unknown>>;
|
|
1618
1776
|
}
|
|
1619
1777
|
interface OpensteerDomExtractOutput {
|
|
@@ -1710,13 +1868,16 @@ interface OpensteerComputerExecuteOutput {
|
|
|
1710
1868
|
readonly timing: OpensteerComputerExecuteTiming;
|
|
1711
1869
|
readonly trace?: OpensteerComputerTraceEnrichment;
|
|
1712
1870
|
}
|
|
1713
|
-
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.
|
|
1871
|
+
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.detail", "network.replay", "interaction.capture", "interaction.get", "interaction.diff", "interaction.replay", "artifact.read", "session.cookies", "session.storage", "session.state", "session.fetch", "scripts.capture", "scripts.beautify", "scripts.deobfuscate", "scripts.sandbox", "captcha.solve", "computer.execute", "session.close"];
|
|
1714
1872
|
type OpensteerSemanticOperationName = (typeof opensteerSemanticOperationNames)[number];
|
|
1873
|
+
declare const opensteerExposedSemanticOperationNames: 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.detail", "network.replay", "interaction.capture", "interaction.get", "interaction.diff", "interaction.replay", "artifact.read", "session.cookies", "session.storage", "session.state", "session.fetch", "scripts.capture", "scripts.beautify", "scripts.deobfuscate", "scripts.sandbox", "captcha.solve", "computer.execute", "session.close"];
|
|
1715
1874
|
interface OpensteerSemanticOperationSpec<TInput = unknown, TOutput = unknown> {
|
|
1716
1875
|
readonly name: OpensteerSemanticOperationName;
|
|
1717
1876
|
readonly description: string;
|
|
1718
1877
|
readonly inputSchema: JsonSchema;
|
|
1719
|
-
readonly outputSchema: JsonSchema
|
|
1878
|
+
readonly outputSchema: JsonSchema & {
|
|
1879
|
+
readonly __output?: TOutput;
|
|
1880
|
+
};
|
|
1720
1881
|
readonly requiredCapabilities: readonly OpensteerCapability[];
|
|
1721
1882
|
readonly packageRunnable?: boolean;
|
|
1722
1883
|
resolveRequiredCapabilities?(input: TInput): readonly OpensteerCapability[];
|
|
@@ -2140,93 +2301,6 @@ declare function createStructuredToolResult<TStructured extends JsonObject>(stru
|
|
|
2140
2301
|
readonly isError?: boolean;
|
|
2141
2302
|
}): OpensteerMcpToolResult<TStructured>;
|
|
2142
2303
|
|
|
2143
|
-
type NetworkDiffFieldKind = "added" | "removed" | "changed" | "unchanged";
|
|
2144
|
-
interface NetworkDiffEntropy {
|
|
2145
|
-
readonly left?: number;
|
|
2146
|
-
readonly right?: number;
|
|
2147
|
-
readonly likelyEncrypted: boolean;
|
|
2148
|
-
}
|
|
2149
|
-
interface NetworkDiffField {
|
|
2150
|
-
readonly path: string;
|
|
2151
|
-
readonly kind: NetworkDiffFieldKind;
|
|
2152
|
-
readonly leftValue?: string;
|
|
2153
|
-
readonly rightValue?: string;
|
|
2154
|
-
readonly entropy?: NetworkDiffEntropy;
|
|
2155
|
-
}
|
|
2156
|
-
interface OpensteerNetworkDiffInput {
|
|
2157
|
-
readonly leftRecordId: string;
|
|
2158
|
-
readonly rightRecordId: string;
|
|
2159
|
-
readonly includeUnchanged?: boolean;
|
|
2160
|
-
readonly scope?: "headers" | "body" | "all";
|
|
2161
|
-
}
|
|
2162
|
-
interface OpensteerNetworkDiffOutput {
|
|
2163
|
-
readonly summary: {
|
|
2164
|
-
readonly added: number;
|
|
2165
|
-
readonly removed: number;
|
|
2166
|
-
readonly changed: number;
|
|
2167
|
-
readonly unchanged: number;
|
|
2168
|
-
readonly likelyEncryptedFields: number;
|
|
2169
|
-
};
|
|
2170
|
-
readonly requestDiffs: readonly NetworkDiffField[];
|
|
2171
|
-
readonly responseDiffs: readonly NetworkDiffField[];
|
|
2172
|
-
}
|
|
2173
|
-
declare const networkDiffFieldKindSchema: JsonSchema;
|
|
2174
|
-
declare const networkDiffEntropySchema: JsonSchema;
|
|
2175
|
-
declare const networkDiffFieldSchema: JsonSchema;
|
|
2176
|
-
declare const opensteerNetworkDiffInputSchema: JsonSchema;
|
|
2177
|
-
declare const opensteerNetworkDiffOutputSchema: JsonSchema;
|
|
2178
|
-
|
|
2179
|
-
type MinimizationFieldClassification = "required" | "optional" | "untested";
|
|
2180
|
-
interface MinimizationFieldResult {
|
|
2181
|
-
readonly name: string;
|
|
2182
|
-
readonly location: "header" | "cookie" | "query" | "body-field";
|
|
2183
|
-
readonly classification: MinimizationFieldClassification;
|
|
2184
|
-
readonly originalValue?: string;
|
|
2185
|
-
}
|
|
2186
|
-
interface OpensteerNetworkMinimizeSuccessPolicy {
|
|
2187
|
-
readonly statusCodes?: readonly number[];
|
|
2188
|
-
readonly responseBodyIncludes?: readonly string[];
|
|
2189
|
-
readonly responseStructureMatch?: boolean;
|
|
2190
|
-
}
|
|
2191
|
-
interface OpensteerNetworkMinimizeInput {
|
|
2192
|
-
readonly recordId: string;
|
|
2193
|
-
readonly transport?: TransportKind;
|
|
2194
|
-
readonly successPolicy?: OpensteerNetworkMinimizeSuccessPolicy;
|
|
2195
|
-
readonly maxTrials?: number;
|
|
2196
|
-
readonly preserve?: readonly string[];
|
|
2197
|
-
}
|
|
2198
|
-
interface OpensteerNetworkMinimizeOutput {
|
|
2199
|
-
readonly recordId: string;
|
|
2200
|
-
readonly totalTrials: number;
|
|
2201
|
-
readonly fields: readonly MinimizationFieldResult[];
|
|
2202
|
-
readonly minimizedPlan?: OpensteerWriteRequestPlanInput;
|
|
2203
|
-
}
|
|
2204
|
-
declare const minimizationFieldClassificationSchema: JsonSchema;
|
|
2205
|
-
declare const minimizationFieldResultSchema: JsonSchema;
|
|
2206
|
-
declare const opensteerNetworkMinimizeSuccessPolicySchema: JsonSchema;
|
|
2207
|
-
declare const opensteerNetworkMinimizeInputSchema: JsonSchema;
|
|
2208
|
-
declare const opensteerNetworkMinimizeOutputSchema: JsonSchema;
|
|
2209
|
-
|
|
2210
|
-
type TransportProbeLevel = "direct-http" | "matched-tls" | "context-http" | "page-http" | "session-http";
|
|
2211
|
-
interface OpensteerTransportProbeInput {
|
|
2212
|
-
readonly recordId: string;
|
|
2213
|
-
}
|
|
2214
|
-
interface TransportProbeResult {
|
|
2215
|
-
readonly transport: TransportProbeLevel;
|
|
2216
|
-
readonly status: number | null;
|
|
2217
|
-
readonly success: boolean;
|
|
2218
|
-
readonly durationMs: number;
|
|
2219
|
-
readonly error?: string;
|
|
2220
|
-
}
|
|
2221
|
-
interface OpensteerTransportProbeOutput {
|
|
2222
|
-
readonly results: readonly TransportProbeResult[];
|
|
2223
|
-
readonly recommendation: TransportProbeLevel;
|
|
2224
|
-
}
|
|
2225
|
-
declare const transportProbeLevelSchema: JsonSchema;
|
|
2226
|
-
declare const opensteerTransportProbeInputSchema: JsonSchema;
|
|
2227
|
-
declare const transportProbeResultSchema: JsonSchema;
|
|
2228
|
-
declare const opensteerTransportProbeOutputSchema: JsonSchema;
|
|
2229
|
-
|
|
2230
2304
|
interface OpensteerScriptBeautifyInput {
|
|
2231
2305
|
readonly artifactId?: string;
|
|
2232
2306
|
readonly content?: string;
|
|
@@ -3311,4 +3385,4 @@ interface DomActionBridgeProvider {
|
|
|
3311
3385
|
}
|
|
3312
3386
|
declare function resolveDomActionBridge(engine: BrowserCoreEngine | DomActionBridgeProvider): DomActionBridge | undefined;
|
|
3313
3387
|
|
|
3314
|
-
export { type ActionFailure, type ActionFailureBlocker, type ActionFailureClassificationSource, type ActionFailureCode, type ActionFailureDetails, type ActivatePageInput, type AppendObservationEventInput, 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 CloudSessionRecordingResult, type CloudSessionRecordingState, type CloudSessionRecordingStatus, 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 ObservabilityConfig, type ObservabilityProfile, type ObservabilityRedactionConfig, type ObservabilityTraceContext, type ObservationArtifact, type ObservationArtifactKind, type ObservationContext, type ObservationEvent, type ObservationEventError, type ObservationEventKind, type ObservationEventPhase, type ObservationSession, type ObservationSink, type OpenObservationSessionInput, 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 OpensteerSessionGrantTransport, 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 SessionObservationSink, 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, type WriteObservationArtifactInput, arraySchema, artifactReferenceSchema, assertSupportedProtocolVersion, assertValidSemanticOperationInput, bodyPayloadEncodingSchema, bodyPayloadFromUtf8, bodyPayloadSchema, captchaDetectionResultSchema, captchaProviderSchema, captchaTypeSchema, chooserRefSchema, cloudActionMethods, cloudErrorCodes, cloudSessionRecordingStatuses, 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, isCloudSessionRecordingStatus, 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, observabilityConfigSchema, observabilityProfileSchema, observabilityProfiles, observabilityRedactionConfigSchema, observabilityTraceContextSchema, observationArtifactKinds, observationArtifactSchema, observationContextSchema, observationEventErrorSchema, observationEventKinds, observationEventPhases, observationEventSchema, observationSessionSchema, 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 };
|
|
3388
|
+
export { type ActionFailure, type ActionFailureBlocker, type ActionFailureClassificationSource, type ActionFailureCode, type ActionFailureDetails, type ActivatePageInput, type AppendObservationEventInput, 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 CloudSessionRecordingResult, type CloudSessionRecordingState, type CloudSessionRecordingStatus, 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 MouseButton, type MouseClickInput, type MouseClickOutput, type MouseMoveInput, type MouseMoveOutput, type MouseScrollInput, type MouseScrollOutput, type NavigatePageInput, type NavigatePageOutput, 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 ObservabilityConfig, type ObservabilityProfile, type ObservabilityRedactionConfig, type ObservabilityTraceContext, type ObservationArtifact, type ObservationArtifactKind, type ObservationContext, type ObservationEvent, type ObservationEventError, type ObservationEventKind, type ObservationEventPhase, type ObservationSession, type ObservationSink, type OpenObservationSessionInput, 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 OpensteerCookieQueryInput, type OpensteerCookieQueryOutput, 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 OpensteerGraphqlSummary, type OpensteerHiddenField, 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 OpensteerNetworkBodySummary, type OpensteerNetworkClearInput, type OpensteerNetworkClearOutput, type OpensteerNetworkDetailOutput, type OpensteerNetworkQueryInput, type OpensteerNetworkQueryOutput, type OpensteerNetworkRedirectHop, type OpensteerNetworkReplayInput, type OpensteerNetworkReplayOutput, type OpensteerNetworkReplayOverrides, type OpensteerNetworkSummaryRecord, 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 OpensteerParsedCookie, 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 OpensteerReplayAttempt, 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 OpensteerSessionFetchInput, type OpensteerSessionFetchOutput, type OpensteerSessionFetchTransport, type OpensteerSessionGrant, type OpensteerSessionGrantKind, type OpensteerSessionGrantTransport, type OpensteerSessionInfo, type OpensteerSessionInfoResult, type OpensteerSessionOwnership, type OpensteerSessionState, type OpensteerSnapshotCounter, type OpensteerSnapshotMode, type OpensteerStateDelta, type OpensteerStateDomainSnapshot, type OpensteerStateQueryInput, type OpensteerStateQueryOutput, type OpensteerStateSnapshot, type OpensteerStateSourceKind, type OpensteerStealthProfileInput, type OpensteerStorageArea, type OpensteerStorageDomainSnapshot, type OpensteerStorageQueryInput, type OpensteerStorageQueryOutput, type OpensteerStructuredBodyPreview, type OpensteerSuccessEnvelope, type OpensteerTargetByElement, type OpensteerTargetByPersist, type OpensteerTargetBySelector, type OpensteerTargetInput, type OpensteerTextRequestBodyInput, 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 SessionObservationSink, 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 WriteObservationArtifactInput, arraySchema, artifactReferenceSchema, assertSupportedProtocolVersion, assertValidSemanticOperationInput, bodyPayloadEncodingSchema, bodyPayloadFromUtf8, bodyPayloadSchema, captchaDetectionResultSchema, captchaProviderSchema, captchaTypeSchema, chooserRefSchema, cloudActionMethods, cloudErrorCodes, cloudSessionRecordingStatuses, 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, isCloudSessionRecordingStatus, isCloudSessionSourceType, isCloudSessionStatus, isErrorEnvelope, isOpensteerProtocolError, isOpensteerRef, isSupportedProtocolVersion, layoutViewportSchema, literalSchema, networkCaptureStateSchema, networkInitiatorSchema, networkInitiatorTypeSchema, networkQueryRecordSchema, networkRecordKindSchema, networkRecordSchema, networkRequestIdSchema, networkResourceTypeSchema, networkSourceMetadataSchema, networkTimingSchema, networkTransferSizesSchema, nodeLocatorSchema, nodeRefSchema, numberSchema, objectSchema, observabilityConfigSchema, observabilityProfileSchema, observabilityProfiles, observabilityRedactionConfigSchema, observabilityTraceContextSchema, observationArtifactKinds, observationArtifactSchema, observationContextSchema, observationEventErrorSchema, observationEventKinds, observationEventPhases, observationEventSchema, observationSessionSchema, oneOfSchema, opensteerArtifactReadInputSchema, opensteerArtifactReadOutputSchema, opensteerArtifactSchema, opensteerAuthRecipeHookRefSchema, opensteerAuthRecipePayloadSchema, opensteerAuthRecipeRecordSchema, opensteerAuthRecipeRefSchema, opensteerAuthRecipeStepSchema, opensteerAutomationOperationNames, opensteerBodyCodecDescriptorSchema, opensteerBodyCodecKindSchema, opensteerCapabilities, opensteerCapabilityDescriptorListSchema, opensteerCapabilityDescriptorSchema, opensteerCapabilityDescriptors, opensteerCapabilitySchema, opensteerCapabilitySetSchema, opensteerCaptchaSolveInputSchema, opensteerCaptchaSolveOutputSchema, opensteerComputerAnnotationNames, opensteerCookieQueryInputSchema, opensteerCookieQueryOutputSchema, opensteerErrorCodeSchema, opensteerErrorCodes, opensteerErrorEnvelopeSchema, opensteerErrorSchema, opensteerEventSchema, opensteerExecutableResolverKindSchema, opensteerExecutableResolverSchema, opensteerExposedSemanticOperationNames, opensteerGetAuthRecipeInputSchema, opensteerGetRecipeInputSchema, opensteerGetRequestPlanInputSchema, opensteerInferRequestPlanInputSchema, opensteerInteractionCaptureInputSchema, opensteerInteractionCaptureOutputSchema, opensteerInteractionDiffInputSchema, opensteerInteractionDiffOutputSchema, opensteerInteractionEventRecordSchema, opensteerInteractionGetInputSchema, opensteerInteractionGetOutputSchema, opensteerInteractionReplayInputSchema, opensteerInteractionReplayOutputSchema, opensteerInteractionTracePayloadSchema, opensteerInteractionTraceRecordSchema, opensteerListAuthRecipesInputSchema, opensteerListAuthRecipesOutputSchema, opensteerListRecipesInputSchema, opensteerListRecipesOutputSchema, opensteerListRequestPlansInputSchema, opensteerListRequestPlansOutputSchema, opensteerMcpTools, opensteerNetworkClearInputSchema, opensteerNetworkClearOutputSchema, opensteerNetworkDetailOutputSchema, opensteerNetworkQueryInputSchema, opensteerNetworkQueryOutputSchema, opensteerNetworkReplayInputSchema, opensteerNetworkReplayOutputSchema, opensteerNetworkSummaryRecordSchema, 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, opensteerSessionFetchInputSchema, opensteerSessionFetchOutputSchema, opensteerSessionGrantKinds, opensteerStateDeltaSchema, opensteerStateQueryInputSchema, opensteerStateQueryOutputSchema, opensteerStateSnapshotSchema, opensteerStateSourceKindSchema, opensteerStorageQueryInputSchema, opensteerStorageQueryOutputSchema, 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, unsupportedCapabilityError, unsupportedVersionError, validateJsonSchema, viewportMetricsSchema, visualViewportSchema, workerRefSchema };
|