@opensteer/protocol 0.7.5 → 0.7.7
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 +596 -662
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +195 -118
- package/dist/index.d.ts +195 -118
- package/dist/index.js +586 -649
- 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,163 @@ 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
|
+
readonly transportProbe?: {
|
|
593
|
+
readonly recommended?: TransportKind;
|
|
594
|
+
readonly attempts: readonly OpensteerReplayAttempt[];
|
|
595
|
+
};
|
|
596
|
+
}
|
|
597
|
+
interface OpensteerReplayAttempt {
|
|
598
|
+
readonly transport: TransportKind;
|
|
599
|
+
readonly status?: number;
|
|
600
|
+
readonly ok: boolean;
|
|
601
|
+
readonly durationMs: number;
|
|
602
|
+
readonly note?: string;
|
|
603
|
+
readonly error?: string;
|
|
604
|
+
}
|
|
605
|
+
interface OpensteerNetworkReplayOverrides {
|
|
606
|
+
readonly query?: OpensteerRequestScalarMap;
|
|
607
|
+
readonly headers?: OpensteerRequestScalarMap;
|
|
608
|
+
readonly body?: OpensteerRequestBodyInput;
|
|
609
|
+
readonly variables?: JsonValue;
|
|
610
|
+
}
|
|
611
|
+
interface OpensteerNetworkReplayInput extends OpensteerNetworkReplayOverrides {
|
|
612
|
+
readonly recordId: string;
|
|
613
|
+
readonly pageRef?: PageRef;
|
|
614
|
+
}
|
|
615
|
+
interface OpensteerNetworkReplayOutput {
|
|
616
|
+
readonly recordId: string;
|
|
617
|
+
readonly transport?: TransportKind;
|
|
618
|
+
readonly attempts: readonly OpensteerReplayAttempt[];
|
|
619
|
+
readonly response?: OpensteerRequestResponseResult;
|
|
620
|
+
readonly data?: JsonValue | string;
|
|
621
|
+
readonly note?: string;
|
|
622
|
+
}
|
|
623
|
+
type OpensteerSessionFetchTransport = "auto" | "direct" | "matched-tls" | "page";
|
|
624
|
+
interface OpensteerSessionFetchInput {
|
|
625
|
+
readonly pageRef?: PageRef;
|
|
626
|
+
readonly url: string;
|
|
627
|
+
readonly method?: string;
|
|
628
|
+
readonly query?: OpensteerRequestScalarMap;
|
|
629
|
+
readonly headers?: OpensteerRequestScalarMap;
|
|
630
|
+
readonly body?: OpensteerRequestBodyInput;
|
|
631
|
+
readonly transport?: OpensteerSessionFetchTransport;
|
|
632
|
+
readonly cookies?: boolean;
|
|
633
|
+
readonly followRedirects?: boolean;
|
|
634
|
+
}
|
|
635
|
+
interface OpensteerSessionFetchOutput {
|
|
636
|
+
readonly transport?: TransportKind;
|
|
637
|
+
readonly attempts: readonly OpensteerReplayAttempt[];
|
|
638
|
+
readonly response?: OpensteerRequestResponseResult;
|
|
639
|
+
readonly data?: JsonValue | string;
|
|
640
|
+
readonly note?: string;
|
|
641
|
+
}
|
|
642
|
+
interface OpensteerCookieQueryInput {
|
|
643
|
+
readonly domain?: string;
|
|
644
|
+
}
|
|
645
|
+
interface OpensteerCookieQueryOutput {
|
|
646
|
+
readonly domain?: string;
|
|
647
|
+
readonly cookies: readonly CookieRecord[];
|
|
648
|
+
}
|
|
649
|
+
type OpensteerStorageArea = "local" | "session";
|
|
650
|
+
interface OpensteerStorageQueryInput {
|
|
651
|
+
readonly domain?: string;
|
|
652
|
+
}
|
|
653
|
+
interface OpensteerStorageDomainSnapshot {
|
|
654
|
+
readonly domain: string;
|
|
655
|
+
readonly localStorage: readonly StorageEntry[];
|
|
656
|
+
readonly sessionStorage: readonly StorageEntry[];
|
|
657
|
+
}
|
|
658
|
+
interface OpensteerStorageQueryOutput {
|
|
659
|
+
readonly domains: readonly OpensteerStorageDomainSnapshot[];
|
|
660
|
+
}
|
|
661
|
+
interface OpensteerHiddenField {
|
|
662
|
+
readonly path: string;
|
|
663
|
+
readonly name: string;
|
|
664
|
+
readonly value: string;
|
|
665
|
+
}
|
|
666
|
+
interface OpensteerStateDomainSnapshot {
|
|
667
|
+
readonly domain: string;
|
|
668
|
+
readonly cookies: readonly CookieRecord[];
|
|
669
|
+
readonly hiddenFields: readonly OpensteerHiddenField[];
|
|
670
|
+
readonly localStorage: readonly StorageEntry[];
|
|
671
|
+
readonly sessionStorage: readonly StorageEntry[];
|
|
672
|
+
readonly globals?: Readonly<Record<string, JsonValue>>;
|
|
673
|
+
}
|
|
674
|
+
interface OpensteerStateQueryInput {
|
|
675
|
+
readonly domain?: string;
|
|
676
|
+
}
|
|
677
|
+
interface OpensteerStateQueryOutput {
|
|
678
|
+
readonly domains: readonly OpensteerStateDomainSnapshot[];
|
|
517
679
|
}
|
|
518
680
|
interface OpensteerNetworkTagInput {
|
|
519
681
|
readonly pageRef?: PageRef;
|
|
@@ -710,7 +872,19 @@ declare const opensteerAuthRecipePayloadSchema: JsonSchema;
|
|
|
710
872
|
declare const opensteerRecipeRecordSchema: JsonSchema;
|
|
711
873
|
declare const opensteerAuthRecipeRecordSchema: JsonSchema;
|
|
712
874
|
declare const opensteerNetworkQueryInputSchema: JsonSchema;
|
|
875
|
+
declare const opensteerNetworkSummaryRecordSchema: JsonSchema;
|
|
713
876
|
declare const opensteerNetworkQueryOutputSchema: JsonSchema;
|
|
877
|
+
declare const opensteerNetworkDetailOutputSchema: JsonSchema;
|
|
878
|
+
declare const opensteerNetworkReplayInputSchema: JsonSchema;
|
|
879
|
+
declare let opensteerNetworkReplayOutputSchema: JsonSchema;
|
|
880
|
+
declare const opensteerSessionFetchInputSchema: JsonSchema;
|
|
881
|
+
declare let opensteerSessionFetchOutputSchema: JsonSchema;
|
|
882
|
+
declare const opensteerCookieQueryInputSchema: JsonSchema;
|
|
883
|
+
declare const opensteerCookieQueryOutputSchema: JsonSchema;
|
|
884
|
+
declare const opensteerStorageQueryInputSchema: JsonSchema;
|
|
885
|
+
declare const opensteerStorageQueryOutputSchema: JsonSchema;
|
|
886
|
+
declare const opensteerStateQueryInputSchema: JsonSchema;
|
|
887
|
+
declare const opensteerStateQueryOutputSchema: JsonSchema;
|
|
714
888
|
declare const opensteerNetworkTagInputSchema: JsonSchema;
|
|
715
889
|
declare const opensteerNetworkTagOutputSchema: JsonSchema;
|
|
716
890
|
declare const opensteerNetworkClearInputSchema: JsonSchema;
|
|
@@ -739,18 +913,6 @@ declare const opensteerRequestExecuteOutputSchema: JsonSchema;
|
|
|
739
913
|
declare const opensteerRawRequestOutputSchema: JsonSchema;
|
|
740
914
|
declare const opensteerInferRequestPlanInputSchema: JsonSchema;
|
|
741
915
|
|
|
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
916
|
interface ScreenshotArtifact {
|
|
755
917
|
readonly pageRef: PageRef;
|
|
756
918
|
readonly frameRef?: FrameRef;
|
|
@@ -907,8 +1069,8 @@ interface CloudSessionRecordingState {
|
|
|
907
1069
|
interface CloudSelectorCacheImportEntry {
|
|
908
1070
|
readonly workspace: string;
|
|
909
1071
|
readonly method: string;
|
|
910
|
-
readonly
|
|
911
|
-
readonly
|
|
1072
|
+
readonly persistHash: string;
|
|
1073
|
+
readonly persist?: string;
|
|
912
1074
|
readonly path: unknown;
|
|
913
1075
|
readonly schemaHash?: string;
|
|
914
1076
|
readonly createdAt: number;
|
|
@@ -1441,15 +1603,15 @@ interface OpensteerTargetByElement {
|
|
|
1441
1603
|
readonly kind: "element";
|
|
1442
1604
|
readonly element: number;
|
|
1443
1605
|
}
|
|
1444
|
-
interface
|
|
1445
|
-
readonly kind: "
|
|
1446
|
-
readonly
|
|
1606
|
+
interface OpensteerTargetByPersist {
|
|
1607
|
+
readonly kind: "persist";
|
|
1608
|
+
readonly persist: string;
|
|
1447
1609
|
}
|
|
1448
1610
|
interface OpensteerTargetBySelector {
|
|
1449
1611
|
readonly kind: "selector";
|
|
1450
1612
|
readonly selector: string;
|
|
1451
1613
|
}
|
|
1452
|
-
type OpensteerTargetInput = OpensteerTargetByElement |
|
|
1614
|
+
type OpensteerTargetInput = OpensteerTargetByElement | OpensteerTargetByPersist | OpensteerTargetBySelector;
|
|
1453
1615
|
interface OpensteerResolvedTarget {
|
|
1454
1616
|
readonly pageRef: PageRef;
|
|
1455
1617
|
readonly frameRef: FrameRef;
|
|
@@ -1458,7 +1620,7 @@ interface OpensteerResolvedTarget {
|
|
|
1458
1620
|
readonly nodeRef: NodeRef;
|
|
1459
1621
|
readonly tagName: string;
|
|
1460
1622
|
readonly pathHint: string;
|
|
1461
|
-
readonly
|
|
1623
|
+
readonly persist?: string;
|
|
1462
1624
|
readonly selectorUsed?: string;
|
|
1463
1625
|
}
|
|
1464
1626
|
interface OpensteerActionResult {
|
|
@@ -1467,7 +1629,6 @@ interface OpensteerActionResult {
|
|
|
1467
1629
|
readonly x: number;
|
|
1468
1630
|
readonly y: number;
|
|
1469
1631
|
};
|
|
1470
|
-
readonly persistedDescription?: string;
|
|
1471
1632
|
}
|
|
1472
1633
|
interface OpensteerSnapshotCounter {
|
|
1473
1634
|
readonly element: number;
|
|
@@ -1590,30 +1751,30 @@ interface OpensteerDomClickInput {
|
|
|
1590
1751
|
readonly button?: OpensteerComputerMouseButton;
|
|
1591
1752
|
readonly clickCount?: number;
|
|
1592
1753
|
readonly modifiers?: readonly OpensteerComputerKeyModifier[];
|
|
1593
|
-
readonly
|
|
1754
|
+
readonly persist?: string;
|
|
1594
1755
|
readonly captureNetwork?: string;
|
|
1595
1756
|
}
|
|
1596
1757
|
interface OpensteerDomHoverInput {
|
|
1597
1758
|
readonly target: OpensteerTargetInput;
|
|
1598
|
-
readonly
|
|
1759
|
+
readonly persist?: string;
|
|
1599
1760
|
readonly captureNetwork?: string;
|
|
1600
1761
|
}
|
|
1601
1762
|
interface OpensteerDomInputInput {
|
|
1602
1763
|
readonly target: OpensteerTargetInput;
|
|
1603
1764
|
readonly text: string;
|
|
1604
1765
|
readonly pressEnter?: boolean;
|
|
1605
|
-
readonly
|
|
1766
|
+
readonly persist?: string;
|
|
1606
1767
|
readonly captureNetwork?: string;
|
|
1607
1768
|
}
|
|
1608
1769
|
interface OpensteerDomScrollInput {
|
|
1609
1770
|
readonly target: OpensteerTargetInput;
|
|
1610
1771
|
readonly direction: "up" | "down" | "left" | "right";
|
|
1611
1772
|
readonly amount: number;
|
|
1612
|
-
readonly
|
|
1773
|
+
readonly persist?: string;
|
|
1613
1774
|
readonly captureNetwork?: string;
|
|
1614
1775
|
}
|
|
1615
1776
|
interface OpensteerDomExtractInput {
|
|
1616
|
-
readonly
|
|
1777
|
+
readonly persist?: string;
|
|
1617
1778
|
readonly schema?: Readonly<Record<string, unknown>>;
|
|
1618
1779
|
}
|
|
1619
1780
|
interface OpensteerDomExtractOutput {
|
|
@@ -1710,13 +1871,16 @@ interface OpensteerComputerExecuteOutput {
|
|
|
1710
1871
|
readonly timing: OpensteerComputerExecuteTiming;
|
|
1711
1872
|
readonly trace?: OpensteerComputerTraceEnrichment;
|
|
1712
1873
|
}
|
|
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.
|
|
1874
|
+
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", "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
1875
|
type OpensteerSemanticOperationName = (typeof opensteerSemanticOperationNames)[number];
|
|
1876
|
+
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", "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
1877
|
interface OpensteerSemanticOperationSpec<TInput = unknown, TOutput = unknown> {
|
|
1716
1878
|
readonly name: OpensteerSemanticOperationName;
|
|
1717
1879
|
readonly description: string;
|
|
1718
1880
|
readonly inputSchema: JsonSchema;
|
|
1719
|
-
readonly outputSchema: JsonSchema
|
|
1881
|
+
readonly outputSchema: JsonSchema & {
|
|
1882
|
+
readonly __output?: TOutput;
|
|
1883
|
+
};
|
|
1720
1884
|
readonly requiredCapabilities: readonly OpensteerCapability[];
|
|
1721
1885
|
readonly packageRunnable?: boolean;
|
|
1722
1886
|
resolveRequiredCapabilities?(input: TInput): readonly OpensteerCapability[];
|
|
@@ -2140,93 +2304,6 @@ declare function createStructuredToolResult<TStructured extends JsonObject>(stru
|
|
|
2140
2304
|
readonly isError?: boolean;
|
|
2141
2305
|
}): OpensteerMcpToolResult<TStructured>;
|
|
2142
2306
|
|
|
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
2307
|
interface OpensteerScriptBeautifyInput {
|
|
2231
2308
|
readonly artifactId?: string;
|
|
2232
2309
|
readonly content?: string;
|
|
@@ -3311,4 +3388,4 @@ interface DomActionBridgeProvider {
|
|
|
3311
3388
|
}
|
|
3312
3389
|
declare function resolveDomActionBridge(engine: BrowserCoreEngine | DomActionBridgeProvider): DomActionBridge | undefined;
|
|
3313
3390
|
|
|
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 };
|
|
3391
|
+
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 };
|