opensteer 0.8.14 → 0.8.16

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.d.cts CHANGED
@@ -1205,6 +1205,10 @@ interface OpensteerNetworkDetailOutput {
1205
1205
  };
1206
1206
  readonly redirectChain?: readonly OpensteerNetworkRedirectHop[];
1207
1207
  readonly notes?: readonly string[];
1208
+ readonly transportProbe?: {
1209
+ readonly recommended?: TransportKind;
1210
+ readonly attempts: readonly OpensteerReplayAttempt[];
1211
+ };
1208
1212
  }
1209
1213
  interface OpensteerReplayAttempt {
1210
1214
  readonly transport: TransportKind;
@@ -1214,24 +1218,6 @@ interface OpensteerReplayAttempt {
1214
1218
  readonly note?: string;
1215
1219
  readonly error?: string;
1216
1220
  }
1217
- interface OpensteerNetworkReplayOverrides {
1218
- readonly query?: OpensteerRequestScalarMap;
1219
- readonly headers?: OpensteerRequestScalarMap;
1220
- readonly body?: OpensteerRequestBodyInput;
1221
- readonly variables?: JsonValue$1;
1222
- }
1223
- interface OpensteerNetworkReplayInput extends OpensteerNetworkReplayOverrides {
1224
- readonly recordId: string;
1225
- readonly pageRef?: PageRef;
1226
- }
1227
- interface OpensteerNetworkReplayOutput {
1228
- readonly recordId: string;
1229
- readonly transport?: TransportKind;
1230
- readonly attempts: readonly OpensteerReplayAttempt[];
1231
- readonly response?: OpensteerRequestResponseResult;
1232
- readonly data?: JsonValue$1 | string;
1233
- readonly note?: string;
1234
- }
1235
1221
  type OpensteerSessionFetchTransport = "auto" | "direct" | "matched-tls" | "page";
1236
1222
  interface OpensteerSessionFetchInput {
1237
1223
  readonly pageRef?: PageRef;
@@ -1440,8 +1426,8 @@ interface CloudSessionRecordingState {
1440
1426
  interface CloudSelectorCacheImportEntry {
1441
1427
  readonly workspace: string;
1442
1428
  readonly method: string;
1443
- readonly nameHash: string;
1444
- readonly name?: string;
1429
+ readonly persistHash: string;
1430
+ readonly persist?: string;
1445
1431
  readonly path: unknown;
1446
1432
  readonly schemaHash?: string;
1447
1433
  readonly createdAt: number;
@@ -1832,7 +1818,7 @@ interface OpensteerTargetByElement {
1832
1818
  }
1833
1819
  interface OpensteerTargetByPersist {
1834
1820
  readonly kind: "persist";
1835
- readonly name: string;
1821
+ readonly persist: string;
1836
1822
  }
1837
1823
  interface OpensteerTargetBySelector {
1838
1824
  readonly kind: "selector";
@@ -1856,7 +1842,6 @@ interface OpensteerActionResult {
1856
1842
  readonly x: number;
1857
1843
  readonly y: number;
1858
1844
  };
1859
- readonly persisted?: string;
1860
1845
  }
1861
1846
  interface OpensteerSnapshotCounter {
1862
1847
  readonly element: number;
@@ -2090,7 +2075,7 @@ interface OpensteerComputerExecuteOutput {
2090
2075
  readonly timing: OpensteerComputerExecuteTiming;
2091
2076
  readonly trace?: OpensteerComputerTraceEnrichment;
2092
2077
  }
2093
- 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"];
2078
+ 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"];
2094
2079
  type OpensteerSemanticOperationName = (typeof opensteerSemanticOperationNames)[number];
2095
2080
 
2096
2081
  declare const opensteerSessionGrantKinds: readonly ["semantic", "automation", "view", "cdp"];
@@ -3393,7 +3378,7 @@ type ElementPath = ReplayElementPath;
3393
3378
  interface DomDescriptorPayload {
3394
3379
  readonly kind: "dom-target";
3395
3380
  readonly method: string;
3396
- readonly name: string;
3381
+ readonly persist: string;
3397
3382
  readonly path: ReplayElementPath;
3398
3383
  readonly sourceUrl?: string;
3399
3384
  }
@@ -3407,7 +3392,7 @@ interface DomDescriptorRecord {
3407
3392
  }
3408
3393
  interface DescriptorTargetRef {
3409
3394
  readonly kind: "descriptor";
3410
- readonly name: string;
3395
+ readonly persist: string;
3411
3396
  }
3412
3397
  interface LiveTargetRef {
3413
3398
  readonly kind: "live";
@@ -3459,7 +3444,7 @@ interface DomResolveTargetInput {
3459
3444
  }
3460
3445
  interface DomWriteDescriptorInput {
3461
3446
  readonly method: string;
3462
- readonly name: string;
3447
+ readonly persist: string;
3463
3448
  readonly path: ReplayElementPath;
3464
3449
  readonly sourceUrl?: string;
3465
3450
  readonly createdAt?: number;
@@ -3467,7 +3452,7 @@ interface DomWriteDescriptorInput {
3467
3452
  }
3468
3453
  interface DomReadDescriptorInput {
3469
3454
  readonly method: string;
3470
- readonly name: string;
3455
+ readonly persist: string;
3471
3456
  }
3472
3457
  interface DomActionOutcome {
3473
3458
  readonly resolved: ResolvedDomTarget;
@@ -3567,11 +3552,11 @@ declare function createDomDescriptorStore(options: {
3567
3552
  readonly root?: FilesystemOpensteerWorkspace;
3568
3553
  readonly namespace?: string;
3569
3554
  }): DomDescriptorStore;
3570
- declare function hashDomDescriptorName(name: string): string;
3555
+ declare function hashDomDescriptorPersist(persist: string): string;
3571
3556
  declare function buildDomDescriptorKey(options: {
3572
3557
  readonly namespace?: string;
3573
3558
  readonly method: string;
3574
- readonly name: string;
3559
+ readonly persist: string;
3575
3560
  }): string;
3576
3561
  declare function buildDomDescriptorPayload(input: DomWriteDescriptorInput): DomDescriptorPayload;
3577
3562
  declare function buildDomDescriptorVersion(payload: DomDescriptorPayload): string;
@@ -3915,10 +3900,13 @@ interface OpensteerScrollOptions extends OpensteerTargetOptions {
3915
3900
  readonly direction: "up" | "down" | "left" | "right";
3916
3901
  readonly amount: number;
3917
3902
  }
3918
- interface OpensteerExtractOptions {
3903
+ type OpensteerExtractOptions = {
3919
3904
  readonly persist: string;
3920
3905
  readonly schema?: Record<string, unknown>;
3921
- }
3906
+ } | {
3907
+ readonly persist?: string;
3908
+ readonly schema: Record<string, unknown>;
3909
+ };
3922
3910
  interface OpensteerWaitForNetworkOptions extends OpensteerNetworkQueryInput {
3923
3911
  readonly timeoutMs?: number;
3924
3912
  readonly pollIntervalMs?: number;
@@ -3934,9 +3922,15 @@ type OpensteerGotoOptions = Omit<OpensteerPageGotoInput, "url">;
3934
3922
  type OpensteerNetworkQueryOptions = OpensteerNetworkQueryInput;
3935
3923
  type OpensteerNetworkQueryResult = OpensteerNetworkQueryOutput;
3936
3924
  type OpensteerNetworkDetailResult = OpensteerNetworkDetailOutput;
3937
- type OpensteerNetworkReplayOptions = Omit<OpensteerNetworkReplayInput, "recordId">;
3938
- type OpensteerNetworkReplayResult = OpensteerNetworkReplayOutput;
3939
- type OpensteerFetchOptions = Omit<OpensteerSessionFetchInput, "url">;
3925
+ interface OpensteerFetchOptions {
3926
+ readonly method?: string;
3927
+ readonly headers?: Record<string, string>;
3928
+ readonly body?: string;
3929
+ readonly query?: Record<string, string | number | boolean>;
3930
+ readonly transport?: "auto" | "direct" | "matched-tls" | "page";
3931
+ readonly cookies?: boolean;
3932
+ readonly followRedirects?: boolean;
3933
+ }
3940
3934
  type OpensteerComputerExecuteOptions = OpensteerComputerExecuteInput;
3941
3935
  type OpensteerStorageMap = Readonly<Record<string, string>>;
3942
3936
  type OpensteerBrowserState = OpensteerStateQueryOutput;
@@ -3955,8 +3949,9 @@ interface OpensteerDomController {
3955
3949
  }
3956
3950
  interface OpensteerNetworkController {
3957
3951
  query(input?: OpensteerNetworkQueryOptions): Promise<OpensteerNetworkQueryResult>;
3958
- detail(recordId: string): Promise<OpensteerNetworkDetailResult>;
3959
- replay(recordId: string, overrides?: OpensteerNetworkReplayOptions): Promise<OpensteerNetworkReplayResult>;
3952
+ detail(recordId: string, options?: {
3953
+ probe?: boolean;
3954
+ }): Promise<OpensteerNetworkDetailResult>;
3960
3955
  }
3961
3956
  interface OpensteerOptions extends OpensteerRuntimeOptions {
3962
3957
  readonly provider?: OpensteerProviderOptions;
@@ -4045,8 +4040,8 @@ interface OpensteerSemanticRuntime {
4045
4040
  queryNetwork(input?: OpensteerNetworkQueryInput, options?: OpensteerRuntimeOperationOptions): Promise<OpensteerNetworkQueryOutput>;
4046
4041
  getNetworkDetail(input: {
4047
4042
  readonly recordId: string;
4043
+ readonly probe?: boolean;
4048
4044
  }, options?: OpensteerRuntimeOperationOptions): Promise<OpensteerNetworkDetailOutput>;
4049
- replayNetwork(input: OpensteerNetworkReplayInput, options?: OpensteerRuntimeOperationOptions): Promise<OpensteerNetworkReplayOutput>;
4050
4045
  captureInteraction(input: OpensteerInteractionCaptureInput, options?: OpensteerRuntimeOperationOptions): Promise<OpensteerInteractionCaptureOutput>;
4051
4046
  getInteraction(input: OpensteerInteractionGetInput, options?: OpensteerRuntimeOperationOptions): Promise<OpensteerInteractionGetOutput>;
4052
4047
  diffInteraction(input: OpensteerInteractionDiffInput, options?: OpensteerRuntimeOperationOptions): Promise<OpensteerInteractionDiffOutput>;
@@ -4221,8 +4216,8 @@ declare class CloudSessionProxy implements OpensteerDisconnectableRuntime {
4221
4216
  queryNetwork(input?: OpensteerNetworkQueryInput): Promise<OpensteerNetworkQueryOutput>;
4222
4217
  getNetworkDetail(input: {
4223
4218
  readonly recordId: string;
4219
+ readonly probe?: boolean;
4224
4220
  }): Promise<OpensteerNetworkDetailOutput>;
4225
- replayNetwork(input: OpensteerNetworkReplayInput): Promise<OpensteerNetworkReplayOutput>;
4226
4221
  captureInteraction(input: OpensteerInteractionCaptureInput): Promise<OpensteerInteractionCaptureOutput>;
4227
4222
  getInteraction(input: OpensteerInteractionGetInput): Promise<OpensteerInteractionGetOutput>;
4228
4223
  diffInteraction(input: OpensteerInteractionDiffInput): Promise<OpensteerInteractionDiffOutput>;
@@ -4296,4 +4291,4 @@ declare function discoverLocalCdpBrowsers(input?: {
4296
4291
  readonly timeoutMs?: number;
4297
4292
  }): Promise<readonly LocalCdpBrowserCandidate[]>;
4298
4293
 
4299
- export { type AnchorTargetRef, type AppendTraceEntryInput, type ArtifactManifest, type ArtifactPayloadType, type ArtifactScope, type BrowserProfileArchiveFormat, type BrowserProfileCreateRequest, type BrowserProfileDescriptor, type BrowserProfileImportCreateRequest, type BrowserProfileImportCreateResponse, type BrowserProfileImportDescriptor, type BrowserProfileImportStatus, type BrowserProfileListResponse, type BrowserProfileStatus, type CloudBrowserContextConfig, type CloudBrowserExtensionConfig, type CloudBrowserLaunchConfig, type CloudBrowserProfileLaunchPreference, type CloudBrowserProfilePreference, 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, CloudSessionProxy, type CloudSessionProxyOptions, type CloudSessionSourceType, type CloudSessionStatus, type CloudSessionSummary, type CloudSessionVisibilityScope, type CloudViewport, type ContextHop, type CreateFilesystemOpensteerWorkspaceOptions, type CreateTraceRunInput, DEFAULT_OPENSTEER_ENGINE, DEFERRED_MATCH_ATTR_KEYS, type DescriptorRecord, type DescriptorRegistryStore, type DomActionBridge, type DomActionBridgeProvider, type DomActionOutcome, type DomActionPolicyOperation, type DomActionScrollAlignment, type DomActionScrollOptions, type DomActionSettleOptions, type DomActionTargetInspection, type DomArrayFieldSelector, type DomArrayRowMetadata, type DomArraySelector, type DomBuildPathInput, type DomClickInput, type DomDescriptorPayload, type DomDescriptorRecord, type DomDescriptorStore, type DomExtractArrayRowsInput, type DomExtractFieldSelector, type DomExtractFieldsInput, type DomExtractedArrayRow, type DomHoverInput, type DomInputInput, type DomPath, type DomReadDescriptorInput, type DomResolveTargetInput, type DomRuntime, type DomScrollInput, type DomTargetRef, type DomWriteDescriptorInput, type ElementPath, ElementPathError, type FallbackDecision, type FallbackEvaluationInput, type FallbackPolicy, FilesystemArtifactStore, type FilesystemObservationStore, type FilesystemOpensteerWorkspace, type InspectedCdpEndpoint, type InteractionTraceRecord, type InteractionTraceRegistryStore, type JsonArray, type JsonObject, type JsonPrimitive, type JsonValue, type ListObservationArtifactsInput, type ListObservationEventsInput, type LocalCdpBrowserCandidate, type LocalChromeProfileDescriptor, MATCH_ATTRIBUTE_PRIORITY, type MatchClause, OPENSTEER_DOM_ACTION_BRIDGE_SYMBOL, OPENSTEER_ENGINE_NAMES, OPENSTEER_FILESYSTEM_WORKSPACE_LAYOUT, OPENSTEER_FILESYSTEM_WORKSPACE_VERSION, Opensteer, type OpensteerAddInitScriptOptions, type OpensteerArtifactStore, OpensteerAttachAmbiguousError, type OpensteerBrowserCloneOptions, type OpensteerBrowserController, OpensteerBrowserManager, type OpensteerBrowserManagerOptions, type OpensteerBrowserState, type OpensteerBrowserStatus, type OpensteerClickOptions, OpensteerCloudClient, type OpensteerCloudConfig, type OpensteerCloudProviderOptions, type OpensteerCloudSessionCreateInput, type OpensteerCloudSessionDescriptor, type OpensteerComputerExecuteOptions, type OpensteerCookieJar, type OpensteerDisconnectableRuntime, type OpensteerDomController, type OpensteerEngineName, type OpensteerExtractOptions, type OpensteerExtractionDescriptorPayload, type OpensteerExtractionDescriptorRecord, type OpensteerExtractionDescriptorStore, type OpensteerFetchOptions, type OpensteerFetchedRouteResponse, type OpensteerGotoOptions, type OpensteerInputOptions, type OpensteerInterceptScriptOptions, type OpensteerLiveSessionProvider, type OpensteerLocalProviderOptions, type OpensteerNetworkController, type OpensteerNetworkDetailResult, type OpensteerNetworkQueryOptions, type OpensteerNetworkQueryResult, type OpensteerNetworkReplayOptions, type OpensteerNetworkReplayResult, type OpensteerOptions, type OpensteerPolicy, type OpensteerProviderMode, type OpensteerProviderOptions, type OpensteerProviderSource, type OpensteerResolvedProvider, type OpensteerRouteHandlerResult, type OpensteerRouteOptions, type OpensteerRouteRegistration, OpensteerRuntime, type OpensteerRuntimeOptions, type OpensteerScrollOptions, type OpensteerSemanticRuntime, OpensteerSessionRuntime, type OpensteerSessionRuntimeOptions, type OpensteerStorageMap, type OpensteerTargetOptions, type OpensteerTraceStore, type OpensteerWaitForNetworkOptions, type OpensteerWaitForPageOptions, type OpensteerWorkspaceManifest, type PathNode, type PersistedCloudSessionRecord, type PersistedLocalBrowserSessionRecord, type PersistedSessionRecord, type ProtocolArtifactDelivery, type RegistryProvenance, type RegistryRecord, type ReplayElementPath, type ResolveRegistryRecordInput, type ResolvedDomTarget, type RetryDecision, type RetryEvaluationInput, type RetryPolicy, STABLE_PRIMARY_ATTR_KEYS, type SavedNetworkQueryInput, type SavedNetworkStore, type SettleContext, type SettleDelayInput, type SettleObserver, type SettlePolicy, type SettleTrigger, type StoredArtifactPayload, type StoredArtifactRecord, type StructuralElementAnchor, type StructuredArtifactKind, type SyncBrowserProfileCookiesInput, type TimeoutExecutionContext, type TimeoutPolicy, type TimeoutResolutionInput, type TraceEntryRecord, type TraceRunManifest, type WorkspaceBrowserBootstrap, type WorkspaceBrowserManifest, type WorkspaceLiveBrowserRecord, type WriteBinaryArtifactInput, type WriteDescriptorInput, type WriteInteractionTraceInput, type WriteStructuredArtifactInput, assertProviderSupportsEngine, buildArrayFieldPathCandidates, buildDomDescriptorKey, buildDomDescriptorPayload, buildDomDescriptorVersion, buildPathCandidates, buildPathSelectorHint, buildSegmentSelector, clearPersistedSessionRecord, cloneElementPath, cloneReplayElementPath, cloneStructuralElementAnchor, createArtifactStore, createDomDescriptorStore, createDomRuntime, createFilesystemOpensteerWorkspace, createObservationStore, createOpensteerExtractionDescriptorStore, createOpensteerSemanticRuntime, defaultFallbackPolicy, defaultPolicy, defaultRetryPolicy, defaultSettlePolicy, defaultTimeoutPolicy, delayWithSignal, discoverLocalCdpBrowsers, dispatchSemanticOperation, hashDomDescriptorName, inspectCdpEndpoint, isCurrentUrlField, isValidCssAttributeKey, listLocalChromeProfiles, manifestToExternalBinaryLocation, normalizeExtractedValue, normalizeObservabilityConfig, normalizeOpensteerEngineName, normalizeOpensteerProviderMode, normalizeWorkspaceId, parseDomDescriptorRecord, parseExtractionDescriptorRecord, readPersistedCloudSessionRecord, readPersistedLocalBrowserSessionRecord, readPersistedSessionRecord, resolveCloudConfig, resolveCloudSessionRecordPath, resolveDomActionBridge, resolveExtractedValueInContext, resolveFilesystemWorkspacePath, resolveLiveSessionRecordPath, resolveLocalSessionRecordPath, resolveOpensteerEngineName, resolveOpensteerProvider, resolveOpensteerRuntimeConfig, runWithPolicyTimeout, sanitizeElementPath, sanitizeReplayElementPath, sanitizeStructuralElementAnchor, settleWithPolicy, shouldKeepAttributeForPath, writePersistedSessionRecord };
4294
+ export { type AnchorTargetRef, type AppendTraceEntryInput, type ArtifactManifest, type ArtifactPayloadType, type ArtifactScope, type BrowserProfileArchiveFormat, type BrowserProfileCreateRequest, type BrowserProfileDescriptor, type BrowserProfileImportCreateRequest, type BrowserProfileImportCreateResponse, type BrowserProfileImportDescriptor, type BrowserProfileImportStatus, type BrowserProfileListResponse, type BrowserProfileStatus, type CloudBrowserContextConfig, type CloudBrowserExtensionConfig, type CloudBrowserLaunchConfig, type CloudBrowserProfileLaunchPreference, type CloudBrowserProfilePreference, 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, CloudSessionProxy, type CloudSessionProxyOptions, type CloudSessionSourceType, type CloudSessionStatus, type CloudSessionSummary, type CloudSessionVisibilityScope, type CloudViewport, type ContextHop, type CreateFilesystemOpensteerWorkspaceOptions, type CreateTraceRunInput, DEFAULT_OPENSTEER_ENGINE, DEFERRED_MATCH_ATTR_KEYS, type DescriptorRecord, type DescriptorRegistryStore, type DomActionBridge, type DomActionBridgeProvider, type DomActionOutcome, type DomActionPolicyOperation, type DomActionScrollAlignment, type DomActionScrollOptions, type DomActionSettleOptions, type DomActionTargetInspection, type DomArrayFieldSelector, type DomArrayRowMetadata, type DomArraySelector, type DomBuildPathInput, type DomClickInput, type DomDescriptorPayload, type DomDescriptorRecord, type DomDescriptorStore, type DomExtractArrayRowsInput, type DomExtractFieldSelector, type DomExtractFieldsInput, type DomExtractedArrayRow, type DomHoverInput, type DomInputInput, type DomPath, type DomReadDescriptorInput, type DomResolveTargetInput, type DomRuntime, type DomScrollInput, type DomTargetRef, type DomWriteDescriptorInput, type ElementPath, ElementPathError, type FallbackDecision, type FallbackEvaluationInput, type FallbackPolicy, FilesystemArtifactStore, type FilesystemObservationStore, type FilesystemOpensteerWorkspace, type InspectedCdpEndpoint, type InteractionTraceRecord, type InteractionTraceRegistryStore, type JsonArray, type JsonObject, type JsonPrimitive, type JsonValue, type ListObservationArtifactsInput, type ListObservationEventsInput, type LocalCdpBrowserCandidate, type LocalChromeProfileDescriptor, MATCH_ATTRIBUTE_PRIORITY, type MatchClause, OPENSTEER_DOM_ACTION_BRIDGE_SYMBOL, OPENSTEER_ENGINE_NAMES, OPENSTEER_FILESYSTEM_WORKSPACE_LAYOUT, OPENSTEER_FILESYSTEM_WORKSPACE_VERSION, Opensteer, type OpensteerAddInitScriptOptions, type OpensteerArtifactStore, OpensteerAttachAmbiguousError, type OpensteerBrowserCloneOptions, type OpensteerBrowserController, OpensteerBrowserManager, type OpensteerBrowserManagerOptions, type OpensteerBrowserState, type OpensteerBrowserStatus, type OpensteerClickOptions, OpensteerCloudClient, type OpensteerCloudConfig, type OpensteerCloudProviderOptions, type OpensteerCloudSessionCreateInput, type OpensteerCloudSessionDescriptor, type OpensteerComputerExecuteOptions, type OpensteerCookieJar, type OpensteerDisconnectableRuntime, type OpensteerDomController, type OpensteerEngineName, type OpensteerExtractOptions, type OpensteerExtractionDescriptorPayload, type OpensteerExtractionDescriptorRecord, type OpensteerExtractionDescriptorStore, type OpensteerFetchOptions, type OpensteerFetchedRouteResponse, type OpensteerGotoOptions, type OpensteerInputOptions, type OpensteerInterceptScriptOptions, type OpensteerLiveSessionProvider, type OpensteerLocalProviderOptions, type OpensteerNetworkController, type OpensteerNetworkDetailResult, type OpensteerNetworkQueryOptions, type OpensteerNetworkQueryResult, type OpensteerOptions, type OpensteerPolicy, type OpensteerProviderMode, type OpensteerProviderOptions, type OpensteerProviderSource, type OpensteerResolvedProvider, type OpensteerRouteHandlerResult, type OpensteerRouteOptions, type OpensteerRouteRegistration, OpensteerRuntime, type OpensteerRuntimeOptions, type OpensteerScrollOptions, type OpensteerSemanticRuntime, OpensteerSessionRuntime, type OpensteerSessionRuntimeOptions, type OpensteerStorageMap, type OpensteerTargetOptions, type OpensteerTraceStore, type OpensteerWaitForNetworkOptions, type OpensteerWaitForPageOptions, type OpensteerWorkspaceManifest, type PathNode, type PersistedCloudSessionRecord, type PersistedLocalBrowserSessionRecord, type PersistedSessionRecord, type ProtocolArtifactDelivery, type RegistryProvenance, type RegistryRecord, type ReplayElementPath, type ResolveRegistryRecordInput, type ResolvedDomTarget, type RetryDecision, type RetryEvaluationInput, type RetryPolicy, STABLE_PRIMARY_ATTR_KEYS, type SavedNetworkQueryInput, type SavedNetworkStore, type SettleContext, type SettleDelayInput, type SettleObserver, type SettlePolicy, type SettleTrigger, type StoredArtifactPayload, type StoredArtifactRecord, type StructuralElementAnchor, type StructuredArtifactKind, type SyncBrowserProfileCookiesInput, type TimeoutExecutionContext, type TimeoutPolicy, type TimeoutResolutionInput, type TraceEntryRecord, type TraceRunManifest, type WorkspaceBrowserBootstrap, type WorkspaceBrowserManifest, type WorkspaceLiveBrowserRecord, type WriteBinaryArtifactInput, type WriteDescriptorInput, type WriteInteractionTraceInput, type WriteStructuredArtifactInput, assertProviderSupportsEngine, buildArrayFieldPathCandidates, buildDomDescriptorKey, buildDomDescriptorPayload, buildDomDescriptorVersion, buildPathCandidates, buildPathSelectorHint, buildSegmentSelector, clearPersistedSessionRecord, cloneElementPath, cloneReplayElementPath, cloneStructuralElementAnchor, createArtifactStore, createDomDescriptorStore, createDomRuntime, createFilesystemOpensteerWorkspace, createObservationStore, createOpensteerExtractionDescriptorStore, createOpensteerSemanticRuntime, defaultFallbackPolicy, defaultPolicy, defaultRetryPolicy, defaultSettlePolicy, defaultTimeoutPolicy, delayWithSignal, discoverLocalCdpBrowsers, dispatchSemanticOperation, hashDomDescriptorPersist, inspectCdpEndpoint, isCurrentUrlField, isValidCssAttributeKey, listLocalChromeProfiles, manifestToExternalBinaryLocation, normalizeExtractedValue, normalizeObservabilityConfig, normalizeOpensteerEngineName, normalizeOpensteerProviderMode, normalizeWorkspaceId, parseDomDescriptorRecord, parseExtractionDescriptorRecord, readPersistedCloudSessionRecord, readPersistedLocalBrowserSessionRecord, readPersistedSessionRecord, resolveCloudConfig, resolveCloudSessionRecordPath, resolveDomActionBridge, resolveExtractedValueInContext, resolveFilesystemWorkspacePath, resolveLiveSessionRecordPath, resolveLocalSessionRecordPath, resolveOpensteerEngineName, resolveOpensteerProvider, resolveOpensteerRuntimeConfig, runWithPolicyTimeout, sanitizeElementPath, sanitizeReplayElementPath, sanitizeStructuralElementAnchor, settleWithPolicy, shouldKeepAttributeForPath, writePersistedSessionRecord };
package/dist/index.d.ts CHANGED
@@ -1205,6 +1205,10 @@ interface OpensteerNetworkDetailOutput {
1205
1205
  };
1206
1206
  readonly redirectChain?: readonly OpensteerNetworkRedirectHop[];
1207
1207
  readonly notes?: readonly string[];
1208
+ readonly transportProbe?: {
1209
+ readonly recommended?: TransportKind;
1210
+ readonly attempts: readonly OpensteerReplayAttempt[];
1211
+ };
1208
1212
  }
1209
1213
  interface OpensteerReplayAttempt {
1210
1214
  readonly transport: TransportKind;
@@ -1214,24 +1218,6 @@ interface OpensteerReplayAttempt {
1214
1218
  readonly note?: string;
1215
1219
  readonly error?: string;
1216
1220
  }
1217
- interface OpensteerNetworkReplayOverrides {
1218
- readonly query?: OpensteerRequestScalarMap;
1219
- readonly headers?: OpensteerRequestScalarMap;
1220
- readonly body?: OpensteerRequestBodyInput;
1221
- readonly variables?: JsonValue$1;
1222
- }
1223
- interface OpensteerNetworkReplayInput extends OpensteerNetworkReplayOverrides {
1224
- readonly recordId: string;
1225
- readonly pageRef?: PageRef;
1226
- }
1227
- interface OpensteerNetworkReplayOutput {
1228
- readonly recordId: string;
1229
- readonly transport?: TransportKind;
1230
- readonly attempts: readonly OpensteerReplayAttempt[];
1231
- readonly response?: OpensteerRequestResponseResult;
1232
- readonly data?: JsonValue$1 | string;
1233
- readonly note?: string;
1234
- }
1235
1221
  type OpensteerSessionFetchTransport = "auto" | "direct" | "matched-tls" | "page";
1236
1222
  interface OpensteerSessionFetchInput {
1237
1223
  readonly pageRef?: PageRef;
@@ -1440,8 +1426,8 @@ interface CloudSessionRecordingState {
1440
1426
  interface CloudSelectorCacheImportEntry {
1441
1427
  readonly workspace: string;
1442
1428
  readonly method: string;
1443
- readonly nameHash: string;
1444
- readonly name?: string;
1429
+ readonly persistHash: string;
1430
+ readonly persist?: string;
1445
1431
  readonly path: unknown;
1446
1432
  readonly schemaHash?: string;
1447
1433
  readonly createdAt: number;
@@ -1832,7 +1818,7 @@ interface OpensteerTargetByElement {
1832
1818
  }
1833
1819
  interface OpensteerTargetByPersist {
1834
1820
  readonly kind: "persist";
1835
- readonly name: string;
1821
+ readonly persist: string;
1836
1822
  }
1837
1823
  interface OpensteerTargetBySelector {
1838
1824
  readonly kind: "selector";
@@ -1856,7 +1842,6 @@ interface OpensteerActionResult {
1856
1842
  readonly x: number;
1857
1843
  readonly y: number;
1858
1844
  };
1859
- readonly persisted?: string;
1860
1845
  }
1861
1846
  interface OpensteerSnapshotCounter {
1862
1847
  readonly element: number;
@@ -2090,7 +2075,7 @@ interface OpensteerComputerExecuteOutput {
2090
2075
  readonly timing: OpensteerComputerExecuteTiming;
2091
2076
  readonly trace?: OpensteerComputerTraceEnrichment;
2092
2077
  }
2093
- 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"];
2078
+ 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"];
2094
2079
  type OpensteerSemanticOperationName = (typeof opensteerSemanticOperationNames)[number];
2095
2080
 
2096
2081
  declare const opensteerSessionGrantKinds: readonly ["semantic", "automation", "view", "cdp"];
@@ -3393,7 +3378,7 @@ type ElementPath = ReplayElementPath;
3393
3378
  interface DomDescriptorPayload {
3394
3379
  readonly kind: "dom-target";
3395
3380
  readonly method: string;
3396
- readonly name: string;
3381
+ readonly persist: string;
3397
3382
  readonly path: ReplayElementPath;
3398
3383
  readonly sourceUrl?: string;
3399
3384
  }
@@ -3407,7 +3392,7 @@ interface DomDescriptorRecord {
3407
3392
  }
3408
3393
  interface DescriptorTargetRef {
3409
3394
  readonly kind: "descriptor";
3410
- readonly name: string;
3395
+ readonly persist: string;
3411
3396
  }
3412
3397
  interface LiveTargetRef {
3413
3398
  readonly kind: "live";
@@ -3459,7 +3444,7 @@ interface DomResolveTargetInput {
3459
3444
  }
3460
3445
  interface DomWriteDescriptorInput {
3461
3446
  readonly method: string;
3462
- readonly name: string;
3447
+ readonly persist: string;
3463
3448
  readonly path: ReplayElementPath;
3464
3449
  readonly sourceUrl?: string;
3465
3450
  readonly createdAt?: number;
@@ -3467,7 +3452,7 @@ interface DomWriteDescriptorInput {
3467
3452
  }
3468
3453
  interface DomReadDescriptorInput {
3469
3454
  readonly method: string;
3470
- readonly name: string;
3455
+ readonly persist: string;
3471
3456
  }
3472
3457
  interface DomActionOutcome {
3473
3458
  readonly resolved: ResolvedDomTarget;
@@ -3567,11 +3552,11 @@ declare function createDomDescriptorStore(options: {
3567
3552
  readonly root?: FilesystemOpensteerWorkspace;
3568
3553
  readonly namespace?: string;
3569
3554
  }): DomDescriptorStore;
3570
- declare function hashDomDescriptorName(name: string): string;
3555
+ declare function hashDomDescriptorPersist(persist: string): string;
3571
3556
  declare function buildDomDescriptorKey(options: {
3572
3557
  readonly namespace?: string;
3573
3558
  readonly method: string;
3574
- readonly name: string;
3559
+ readonly persist: string;
3575
3560
  }): string;
3576
3561
  declare function buildDomDescriptorPayload(input: DomWriteDescriptorInput): DomDescriptorPayload;
3577
3562
  declare function buildDomDescriptorVersion(payload: DomDescriptorPayload): string;
@@ -3915,10 +3900,13 @@ interface OpensteerScrollOptions extends OpensteerTargetOptions {
3915
3900
  readonly direction: "up" | "down" | "left" | "right";
3916
3901
  readonly amount: number;
3917
3902
  }
3918
- interface OpensteerExtractOptions {
3903
+ type OpensteerExtractOptions = {
3919
3904
  readonly persist: string;
3920
3905
  readonly schema?: Record<string, unknown>;
3921
- }
3906
+ } | {
3907
+ readonly persist?: string;
3908
+ readonly schema: Record<string, unknown>;
3909
+ };
3922
3910
  interface OpensteerWaitForNetworkOptions extends OpensteerNetworkQueryInput {
3923
3911
  readonly timeoutMs?: number;
3924
3912
  readonly pollIntervalMs?: number;
@@ -3934,9 +3922,15 @@ type OpensteerGotoOptions = Omit<OpensteerPageGotoInput, "url">;
3934
3922
  type OpensteerNetworkQueryOptions = OpensteerNetworkQueryInput;
3935
3923
  type OpensteerNetworkQueryResult = OpensteerNetworkQueryOutput;
3936
3924
  type OpensteerNetworkDetailResult = OpensteerNetworkDetailOutput;
3937
- type OpensteerNetworkReplayOptions = Omit<OpensteerNetworkReplayInput, "recordId">;
3938
- type OpensteerNetworkReplayResult = OpensteerNetworkReplayOutput;
3939
- type OpensteerFetchOptions = Omit<OpensteerSessionFetchInput, "url">;
3925
+ interface OpensteerFetchOptions {
3926
+ readonly method?: string;
3927
+ readonly headers?: Record<string, string>;
3928
+ readonly body?: string;
3929
+ readonly query?: Record<string, string | number | boolean>;
3930
+ readonly transport?: "auto" | "direct" | "matched-tls" | "page";
3931
+ readonly cookies?: boolean;
3932
+ readonly followRedirects?: boolean;
3933
+ }
3940
3934
  type OpensteerComputerExecuteOptions = OpensteerComputerExecuteInput;
3941
3935
  type OpensteerStorageMap = Readonly<Record<string, string>>;
3942
3936
  type OpensteerBrowserState = OpensteerStateQueryOutput;
@@ -3955,8 +3949,9 @@ interface OpensteerDomController {
3955
3949
  }
3956
3950
  interface OpensteerNetworkController {
3957
3951
  query(input?: OpensteerNetworkQueryOptions): Promise<OpensteerNetworkQueryResult>;
3958
- detail(recordId: string): Promise<OpensteerNetworkDetailResult>;
3959
- replay(recordId: string, overrides?: OpensteerNetworkReplayOptions): Promise<OpensteerNetworkReplayResult>;
3952
+ detail(recordId: string, options?: {
3953
+ probe?: boolean;
3954
+ }): Promise<OpensteerNetworkDetailResult>;
3960
3955
  }
3961
3956
  interface OpensteerOptions extends OpensteerRuntimeOptions {
3962
3957
  readonly provider?: OpensteerProviderOptions;
@@ -4045,8 +4040,8 @@ interface OpensteerSemanticRuntime {
4045
4040
  queryNetwork(input?: OpensteerNetworkQueryInput, options?: OpensteerRuntimeOperationOptions): Promise<OpensteerNetworkQueryOutput>;
4046
4041
  getNetworkDetail(input: {
4047
4042
  readonly recordId: string;
4043
+ readonly probe?: boolean;
4048
4044
  }, options?: OpensteerRuntimeOperationOptions): Promise<OpensteerNetworkDetailOutput>;
4049
- replayNetwork(input: OpensteerNetworkReplayInput, options?: OpensteerRuntimeOperationOptions): Promise<OpensteerNetworkReplayOutput>;
4050
4045
  captureInteraction(input: OpensteerInteractionCaptureInput, options?: OpensteerRuntimeOperationOptions): Promise<OpensteerInteractionCaptureOutput>;
4051
4046
  getInteraction(input: OpensteerInteractionGetInput, options?: OpensteerRuntimeOperationOptions): Promise<OpensteerInteractionGetOutput>;
4052
4047
  diffInteraction(input: OpensteerInteractionDiffInput, options?: OpensteerRuntimeOperationOptions): Promise<OpensteerInteractionDiffOutput>;
@@ -4221,8 +4216,8 @@ declare class CloudSessionProxy implements OpensteerDisconnectableRuntime {
4221
4216
  queryNetwork(input?: OpensteerNetworkQueryInput): Promise<OpensteerNetworkQueryOutput>;
4222
4217
  getNetworkDetail(input: {
4223
4218
  readonly recordId: string;
4219
+ readonly probe?: boolean;
4224
4220
  }): Promise<OpensteerNetworkDetailOutput>;
4225
- replayNetwork(input: OpensteerNetworkReplayInput): Promise<OpensteerNetworkReplayOutput>;
4226
4221
  captureInteraction(input: OpensteerInteractionCaptureInput): Promise<OpensteerInteractionCaptureOutput>;
4227
4222
  getInteraction(input: OpensteerInteractionGetInput): Promise<OpensteerInteractionGetOutput>;
4228
4223
  diffInteraction(input: OpensteerInteractionDiffInput): Promise<OpensteerInteractionDiffOutput>;
@@ -4296,4 +4291,4 @@ declare function discoverLocalCdpBrowsers(input?: {
4296
4291
  readonly timeoutMs?: number;
4297
4292
  }): Promise<readonly LocalCdpBrowserCandidate[]>;
4298
4293
 
4299
- export { type AnchorTargetRef, type AppendTraceEntryInput, type ArtifactManifest, type ArtifactPayloadType, type ArtifactScope, type BrowserProfileArchiveFormat, type BrowserProfileCreateRequest, type BrowserProfileDescriptor, type BrowserProfileImportCreateRequest, type BrowserProfileImportCreateResponse, type BrowserProfileImportDescriptor, type BrowserProfileImportStatus, type BrowserProfileListResponse, type BrowserProfileStatus, type CloudBrowserContextConfig, type CloudBrowserExtensionConfig, type CloudBrowserLaunchConfig, type CloudBrowserProfileLaunchPreference, type CloudBrowserProfilePreference, 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, CloudSessionProxy, type CloudSessionProxyOptions, type CloudSessionSourceType, type CloudSessionStatus, type CloudSessionSummary, type CloudSessionVisibilityScope, type CloudViewport, type ContextHop, type CreateFilesystemOpensteerWorkspaceOptions, type CreateTraceRunInput, DEFAULT_OPENSTEER_ENGINE, DEFERRED_MATCH_ATTR_KEYS, type DescriptorRecord, type DescriptorRegistryStore, type DomActionBridge, type DomActionBridgeProvider, type DomActionOutcome, type DomActionPolicyOperation, type DomActionScrollAlignment, type DomActionScrollOptions, type DomActionSettleOptions, type DomActionTargetInspection, type DomArrayFieldSelector, type DomArrayRowMetadata, type DomArraySelector, type DomBuildPathInput, type DomClickInput, type DomDescriptorPayload, type DomDescriptorRecord, type DomDescriptorStore, type DomExtractArrayRowsInput, type DomExtractFieldSelector, type DomExtractFieldsInput, type DomExtractedArrayRow, type DomHoverInput, type DomInputInput, type DomPath, type DomReadDescriptorInput, type DomResolveTargetInput, type DomRuntime, type DomScrollInput, type DomTargetRef, type DomWriteDescriptorInput, type ElementPath, ElementPathError, type FallbackDecision, type FallbackEvaluationInput, type FallbackPolicy, FilesystemArtifactStore, type FilesystemObservationStore, type FilesystemOpensteerWorkspace, type InspectedCdpEndpoint, type InteractionTraceRecord, type InteractionTraceRegistryStore, type JsonArray, type JsonObject, type JsonPrimitive, type JsonValue, type ListObservationArtifactsInput, type ListObservationEventsInput, type LocalCdpBrowserCandidate, type LocalChromeProfileDescriptor, MATCH_ATTRIBUTE_PRIORITY, type MatchClause, OPENSTEER_DOM_ACTION_BRIDGE_SYMBOL, OPENSTEER_ENGINE_NAMES, OPENSTEER_FILESYSTEM_WORKSPACE_LAYOUT, OPENSTEER_FILESYSTEM_WORKSPACE_VERSION, Opensteer, type OpensteerAddInitScriptOptions, type OpensteerArtifactStore, OpensteerAttachAmbiguousError, type OpensteerBrowserCloneOptions, type OpensteerBrowserController, OpensteerBrowserManager, type OpensteerBrowserManagerOptions, type OpensteerBrowserState, type OpensteerBrowserStatus, type OpensteerClickOptions, OpensteerCloudClient, type OpensteerCloudConfig, type OpensteerCloudProviderOptions, type OpensteerCloudSessionCreateInput, type OpensteerCloudSessionDescriptor, type OpensteerComputerExecuteOptions, type OpensteerCookieJar, type OpensteerDisconnectableRuntime, type OpensteerDomController, type OpensteerEngineName, type OpensteerExtractOptions, type OpensteerExtractionDescriptorPayload, type OpensteerExtractionDescriptorRecord, type OpensteerExtractionDescriptorStore, type OpensteerFetchOptions, type OpensteerFetchedRouteResponse, type OpensteerGotoOptions, type OpensteerInputOptions, type OpensteerInterceptScriptOptions, type OpensteerLiveSessionProvider, type OpensteerLocalProviderOptions, type OpensteerNetworkController, type OpensteerNetworkDetailResult, type OpensteerNetworkQueryOptions, type OpensteerNetworkQueryResult, type OpensteerNetworkReplayOptions, type OpensteerNetworkReplayResult, type OpensteerOptions, type OpensteerPolicy, type OpensteerProviderMode, type OpensteerProviderOptions, type OpensteerProviderSource, type OpensteerResolvedProvider, type OpensteerRouteHandlerResult, type OpensteerRouteOptions, type OpensteerRouteRegistration, OpensteerRuntime, type OpensteerRuntimeOptions, type OpensteerScrollOptions, type OpensteerSemanticRuntime, OpensteerSessionRuntime, type OpensteerSessionRuntimeOptions, type OpensteerStorageMap, type OpensteerTargetOptions, type OpensteerTraceStore, type OpensteerWaitForNetworkOptions, type OpensteerWaitForPageOptions, type OpensteerWorkspaceManifest, type PathNode, type PersistedCloudSessionRecord, type PersistedLocalBrowserSessionRecord, type PersistedSessionRecord, type ProtocolArtifactDelivery, type RegistryProvenance, type RegistryRecord, type ReplayElementPath, type ResolveRegistryRecordInput, type ResolvedDomTarget, type RetryDecision, type RetryEvaluationInput, type RetryPolicy, STABLE_PRIMARY_ATTR_KEYS, type SavedNetworkQueryInput, type SavedNetworkStore, type SettleContext, type SettleDelayInput, type SettleObserver, type SettlePolicy, type SettleTrigger, type StoredArtifactPayload, type StoredArtifactRecord, type StructuralElementAnchor, type StructuredArtifactKind, type SyncBrowserProfileCookiesInput, type TimeoutExecutionContext, type TimeoutPolicy, type TimeoutResolutionInput, type TraceEntryRecord, type TraceRunManifest, type WorkspaceBrowserBootstrap, type WorkspaceBrowserManifest, type WorkspaceLiveBrowserRecord, type WriteBinaryArtifactInput, type WriteDescriptorInput, type WriteInteractionTraceInput, type WriteStructuredArtifactInput, assertProviderSupportsEngine, buildArrayFieldPathCandidates, buildDomDescriptorKey, buildDomDescriptorPayload, buildDomDescriptorVersion, buildPathCandidates, buildPathSelectorHint, buildSegmentSelector, clearPersistedSessionRecord, cloneElementPath, cloneReplayElementPath, cloneStructuralElementAnchor, createArtifactStore, createDomDescriptorStore, createDomRuntime, createFilesystemOpensteerWorkspace, createObservationStore, createOpensteerExtractionDescriptorStore, createOpensteerSemanticRuntime, defaultFallbackPolicy, defaultPolicy, defaultRetryPolicy, defaultSettlePolicy, defaultTimeoutPolicy, delayWithSignal, discoverLocalCdpBrowsers, dispatchSemanticOperation, hashDomDescriptorName, inspectCdpEndpoint, isCurrentUrlField, isValidCssAttributeKey, listLocalChromeProfiles, manifestToExternalBinaryLocation, normalizeExtractedValue, normalizeObservabilityConfig, normalizeOpensteerEngineName, normalizeOpensteerProviderMode, normalizeWorkspaceId, parseDomDescriptorRecord, parseExtractionDescriptorRecord, readPersistedCloudSessionRecord, readPersistedLocalBrowserSessionRecord, readPersistedSessionRecord, resolveCloudConfig, resolveCloudSessionRecordPath, resolveDomActionBridge, resolveExtractedValueInContext, resolveFilesystemWorkspacePath, resolveLiveSessionRecordPath, resolveLocalSessionRecordPath, resolveOpensteerEngineName, resolveOpensteerProvider, resolveOpensteerRuntimeConfig, runWithPolicyTimeout, sanitizeElementPath, sanitizeReplayElementPath, sanitizeStructuralElementAnchor, settleWithPolicy, shouldKeepAttributeForPath, writePersistedSessionRecord };
4294
+ export { type AnchorTargetRef, type AppendTraceEntryInput, type ArtifactManifest, type ArtifactPayloadType, type ArtifactScope, type BrowserProfileArchiveFormat, type BrowserProfileCreateRequest, type BrowserProfileDescriptor, type BrowserProfileImportCreateRequest, type BrowserProfileImportCreateResponse, type BrowserProfileImportDescriptor, type BrowserProfileImportStatus, type BrowserProfileListResponse, type BrowserProfileStatus, type CloudBrowserContextConfig, type CloudBrowserExtensionConfig, type CloudBrowserLaunchConfig, type CloudBrowserProfileLaunchPreference, type CloudBrowserProfilePreference, 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, CloudSessionProxy, type CloudSessionProxyOptions, type CloudSessionSourceType, type CloudSessionStatus, type CloudSessionSummary, type CloudSessionVisibilityScope, type CloudViewport, type ContextHop, type CreateFilesystemOpensteerWorkspaceOptions, type CreateTraceRunInput, DEFAULT_OPENSTEER_ENGINE, DEFERRED_MATCH_ATTR_KEYS, type DescriptorRecord, type DescriptorRegistryStore, type DomActionBridge, type DomActionBridgeProvider, type DomActionOutcome, type DomActionPolicyOperation, type DomActionScrollAlignment, type DomActionScrollOptions, type DomActionSettleOptions, type DomActionTargetInspection, type DomArrayFieldSelector, type DomArrayRowMetadata, type DomArraySelector, type DomBuildPathInput, type DomClickInput, type DomDescriptorPayload, type DomDescriptorRecord, type DomDescriptorStore, type DomExtractArrayRowsInput, type DomExtractFieldSelector, type DomExtractFieldsInput, type DomExtractedArrayRow, type DomHoverInput, type DomInputInput, type DomPath, type DomReadDescriptorInput, type DomResolveTargetInput, type DomRuntime, type DomScrollInput, type DomTargetRef, type DomWriteDescriptorInput, type ElementPath, ElementPathError, type FallbackDecision, type FallbackEvaluationInput, type FallbackPolicy, FilesystemArtifactStore, type FilesystemObservationStore, type FilesystemOpensteerWorkspace, type InspectedCdpEndpoint, type InteractionTraceRecord, type InteractionTraceRegistryStore, type JsonArray, type JsonObject, type JsonPrimitive, type JsonValue, type ListObservationArtifactsInput, type ListObservationEventsInput, type LocalCdpBrowserCandidate, type LocalChromeProfileDescriptor, MATCH_ATTRIBUTE_PRIORITY, type MatchClause, OPENSTEER_DOM_ACTION_BRIDGE_SYMBOL, OPENSTEER_ENGINE_NAMES, OPENSTEER_FILESYSTEM_WORKSPACE_LAYOUT, OPENSTEER_FILESYSTEM_WORKSPACE_VERSION, Opensteer, type OpensteerAddInitScriptOptions, type OpensteerArtifactStore, OpensteerAttachAmbiguousError, type OpensteerBrowserCloneOptions, type OpensteerBrowserController, OpensteerBrowserManager, type OpensteerBrowserManagerOptions, type OpensteerBrowserState, type OpensteerBrowserStatus, type OpensteerClickOptions, OpensteerCloudClient, type OpensteerCloudConfig, type OpensteerCloudProviderOptions, type OpensteerCloudSessionCreateInput, type OpensteerCloudSessionDescriptor, type OpensteerComputerExecuteOptions, type OpensteerCookieJar, type OpensteerDisconnectableRuntime, type OpensteerDomController, type OpensteerEngineName, type OpensteerExtractOptions, type OpensteerExtractionDescriptorPayload, type OpensteerExtractionDescriptorRecord, type OpensteerExtractionDescriptorStore, type OpensteerFetchOptions, type OpensteerFetchedRouteResponse, type OpensteerGotoOptions, type OpensteerInputOptions, type OpensteerInterceptScriptOptions, type OpensteerLiveSessionProvider, type OpensteerLocalProviderOptions, type OpensteerNetworkController, type OpensteerNetworkDetailResult, type OpensteerNetworkQueryOptions, type OpensteerNetworkQueryResult, type OpensteerOptions, type OpensteerPolicy, type OpensteerProviderMode, type OpensteerProviderOptions, type OpensteerProviderSource, type OpensteerResolvedProvider, type OpensteerRouteHandlerResult, type OpensteerRouteOptions, type OpensteerRouteRegistration, OpensteerRuntime, type OpensteerRuntimeOptions, type OpensteerScrollOptions, type OpensteerSemanticRuntime, OpensteerSessionRuntime, type OpensteerSessionRuntimeOptions, type OpensteerStorageMap, type OpensteerTargetOptions, type OpensteerTraceStore, type OpensteerWaitForNetworkOptions, type OpensteerWaitForPageOptions, type OpensteerWorkspaceManifest, type PathNode, type PersistedCloudSessionRecord, type PersistedLocalBrowserSessionRecord, type PersistedSessionRecord, type ProtocolArtifactDelivery, type RegistryProvenance, type RegistryRecord, type ReplayElementPath, type ResolveRegistryRecordInput, type ResolvedDomTarget, type RetryDecision, type RetryEvaluationInput, type RetryPolicy, STABLE_PRIMARY_ATTR_KEYS, type SavedNetworkQueryInput, type SavedNetworkStore, type SettleContext, type SettleDelayInput, type SettleObserver, type SettlePolicy, type SettleTrigger, type StoredArtifactPayload, type StoredArtifactRecord, type StructuralElementAnchor, type StructuredArtifactKind, type SyncBrowserProfileCookiesInput, type TimeoutExecutionContext, type TimeoutPolicy, type TimeoutResolutionInput, type TraceEntryRecord, type TraceRunManifest, type WorkspaceBrowserBootstrap, type WorkspaceBrowserManifest, type WorkspaceLiveBrowserRecord, type WriteBinaryArtifactInput, type WriteDescriptorInput, type WriteInteractionTraceInput, type WriteStructuredArtifactInput, assertProviderSupportsEngine, buildArrayFieldPathCandidates, buildDomDescriptorKey, buildDomDescriptorPayload, buildDomDescriptorVersion, buildPathCandidates, buildPathSelectorHint, buildSegmentSelector, clearPersistedSessionRecord, cloneElementPath, cloneReplayElementPath, cloneStructuralElementAnchor, createArtifactStore, createDomDescriptorStore, createDomRuntime, createFilesystemOpensteerWorkspace, createObservationStore, createOpensteerExtractionDescriptorStore, createOpensteerSemanticRuntime, defaultFallbackPolicy, defaultPolicy, defaultRetryPolicy, defaultSettlePolicy, defaultTimeoutPolicy, delayWithSignal, discoverLocalCdpBrowsers, dispatchSemanticOperation, hashDomDescriptorPersist, inspectCdpEndpoint, isCurrentUrlField, isValidCssAttributeKey, listLocalChromeProfiles, manifestToExternalBinaryLocation, normalizeExtractedValue, normalizeObservabilityConfig, normalizeOpensteerEngineName, normalizeOpensteerProviderMode, normalizeWorkspaceId, parseDomDescriptorRecord, parseExtractionDescriptorRecord, readPersistedCloudSessionRecord, readPersistedLocalBrowserSessionRecord, readPersistedSessionRecord, resolveCloudConfig, resolveCloudSessionRecordPath, resolveDomActionBridge, resolveExtractedValueInContext, resolveFilesystemWorkspacePath, resolveLiveSessionRecordPath, resolveLocalSessionRecordPath, resolveOpensteerEngineName, resolveOpensteerProvider, resolveOpensteerRuntimeConfig, runWithPolicyTimeout, sanitizeElementPath, sanitizeReplayElementPath, sanitizeStructuralElementAnchor, settleWithPolicy, shouldKeepAttributeForPath, writePersistedSessionRecord };