opensteer 0.8.8 → 0.8.9

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
@@ -694,6 +694,9 @@ interface BrowserExecutor {
694
694
  }
695
695
  interface BrowserInspector {
696
696
  readonly capabilities: Readonly<BrowserCapabilities>;
697
+ drainEvents(input: {
698
+ readonly pageRef: PageRef;
699
+ }): Promise<readonly StepEvent[]>;
697
700
  listPages(input: {
698
701
  readonly sessionRef: SessionRef;
699
702
  }): Promise<readonly PageInfo[]>;
@@ -1627,6 +1630,123 @@ interface TraceBundle<TData = unknown> {
1627
1630
  readonly artifacts?: readonly OpensteerArtifact[];
1628
1631
  }
1629
1632
 
1633
+ declare const observabilityProfiles: readonly ["off", "baseline", "diagnostic"];
1634
+ type ObservabilityProfile = (typeof observabilityProfiles)[number];
1635
+ interface ObservabilityTraceContext {
1636
+ readonly traceparent?: string;
1637
+ readonly baggage?: string;
1638
+ }
1639
+ interface ObservabilityRedactionConfig {
1640
+ readonly sensitiveKeys?: readonly string[];
1641
+ readonly sensitiveValues?: readonly string[];
1642
+ }
1643
+ interface ObservabilityConfig {
1644
+ readonly profile: ObservabilityProfile;
1645
+ readonly labels?: Readonly<Record<string, string>>;
1646
+ readonly traceContext?: ObservabilityTraceContext;
1647
+ readonly redaction?: ObservabilityRedactionConfig;
1648
+ }
1649
+ interface ObservationContext {
1650
+ readonly sessionRef?: SessionRef;
1651
+ readonly pageRef?: PageRef;
1652
+ readonly frameRef?: FrameRef;
1653
+ readonly documentRef?: DocumentRef;
1654
+ readonly documentEpoch?: DocumentEpoch;
1655
+ }
1656
+ declare const observationEventPhases: readonly ["started", "updated", "completed", "failed", "occurred"];
1657
+ type ObservationEventPhase = (typeof observationEventPhases)[number];
1658
+ declare const observationEventKinds: readonly ["session", "operation", "page", "console", "error", "network", "artifact", "annotation", "runtime", "observability"];
1659
+ type ObservationEventKind = (typeof observationEventKinds)[number];
1660
+ interface ObservationEventError {
1661
+ readonly code?: string;
1662
+ readonly message: string;
1663
+ readonly retriable?: boolean;
1664
+ readonly details?: JsonValue$1;
1665
+ }
1666
+ interface ObservationEvent {
1667
+ readonly eventId: string;
1668
+ readonly sessionId: string;
1669
+ readonly sequence: number;
1670
+ readonly kind: ObservationEventKind;
1671
+ readonly phase: ObservationEventPhase;
1672
+ readonly createdAt: number;
1673
+ readonly correlationId: string;
1674
+ readonly spanId?: string;
1675
+ readonly parentSpanId?: string;
1676
+ readonly context?: ObservationContext;
1677
+ readonly data?: JsonValue$1;
1678
+ readonly error?: ObservationEventError;
1679
+ readonly artifactIds?: readonly string[];
1680
+ }
1681
+ declare const observationArtifactKinds: readonly ["screenshot", "dom-snapshot", "html-snapshot", "trace-bundle", "frame-buffer", "request-body", "response-body", "log", "other"];
1682
+ type ObservationArtifactKind = (typeof observationArtifactKinds)[number];
1683
+ interface ObservationArtifact {
1684
+ readonly artifactId: string;
1685
+ readonly sessionId: string;
1686
+ readonly kind: ObservationArtifactKind;
1687
+ readonly createdAt: number;
1688
+ readonly context?: ObservationContext;
1689
+ readonly mediaType?: string;
1690
+ readonly byteLength?: number;
1691
+ readonly sha256?: string;
1692
+ readonly opensteerArtifactId?: string;
1693
+ readonly storageKey?: string;
1694
+ readonly metadata?: JsonValue$1;
1695
+ }
1696
+ interface ObservationSession {
1697
+ readonly sessionId: string;
1698
+ readonly profile: ObservabilityProfile;
1699
+ readonly labels?: Readonly<Record<string, string>>;
1700
+ readonly traceContext?: ObservabilityTraceContext;
1701
+ readonly openedAt: number;
1702
+ readonly updatedAt: number;
1703
+ readonly closedAt?: number;
1704
+ readonly currentSequence: number;
1705
+ readonly eventCount: number;
1706
+ readonly artifactCount: number;
1707
+ }
1708
+ interface OpenObservationSessionInput {
1709
+ readonly sessionId: string;
1710
+ readonly openedAt?: number;
1711
+ readonly config?: Partial<ObservabilityConfig>;
1712
+ }
1713
+ interface AppendObservationEventInput {
1714
+ readonly eventId?: string;
1715
+ readonly kind: ObservationEventKind;
1716
+ readonly phase: ObservationEventPhase;
1717
+ readonly createdAt: number;
1718
+ readonly correlationId: string;
1719
+ readonly spanId?: string;
1720
+ readonly parentSpanId?: string;
1721
+ readonly context?: ObservationContext;
1722
+ readonly data?: JsonValue$1;
1723
+ readonly error?: ObservationEventError;
1724
+ readonly artifactIds?: readonly string[];
1725
+ }
1726
+ interface WriteObservationArtifactInput {
1727
+ readonly artifactId: string;
1728
+ readonly kind: ObservationArtifactKind;
1729
+ readonly createdAt: number;
1730
+ readonly context?: ObservationContext;
1731
+ readonly mediaType?: string;
1732
+ readonly byteLength?: number;
1733
+ readonly sha256?: string;
1734
+ readonly opensteerArtifactId?: string;
1735
+ readonly storageKey?: string;
1736
+ readonly metadata?: JsonValue$1;
1737
+ }
1738
+ interface SessionObservationSink {
1739
+ readonly sessionId: string;
1740
+ append(input: AppendObservationEventInput): Promise<ObservationEvent>;
1741
+ appendBatch(input: readonly AppendObservationEventInput[]): Promise<readonly ObservationEvent[]>;
1742
+ writeArtifact(input: WriteObservationArtifactInput): Promise<ObservationArtifact>;
1743
+ flush(reason?: string): Promise<void>;
1744
+ close(reason?: string): Promise<void>;
1745
+ }
1746
+ interface ObservationSink {
1747
+ openSession(input: OpenObservationSessionInput): Promise<SessionObservationSink>;
1748
+ }
1749
+
1630
1750
  type OpensteerSnapshotMode = "action" | "extraction";
1631
1751
  interface OpensteerBrowserLaunchOptions {
1632
1752
  readonly headless?: boolean;
@@ -3083,6 +3203,24 @@ interface OpensteerArtifactStore {
3083
3203
  readonly delivery?: ProtocolArtifactDelivery;
3084
3204
  }): Promise<OpensteerArtifact | undefined>;
3085
3205
  }
3206
+ declare class FilesystemArtifactStore implements OpensteerArtifactStore {
3207
+ private readonly rootPath;
3208
+ readonly manifestsDirectory: string;
3209
+ readonly objectsDirectory: string;
3210
+ constructor(rootPath: string);
3211
+ initialize(): Promise<void>;
3212
+ writeStructured(input: WriteStructuredArtifactInput): Promise<ArtifactManifest>;
3213
+ writeBinary(input: WriteBinaryArtifactInput): Promise<ArtifactManifest>;
3214
+ getManifest(artifactId: string): Promise<ArtifactManifest | undefined>;
3215
+ read(artifactId: string): Promise<StoredArtifactRecord | undefined>;
3216
+ toProtocolArtifactReference(artifactId: string, relation: ArtifactRelation): Promise<ArtifactReference | undefined>;
3217
+ toProtocolArtifact(artifactId: string, options?: {
3218
+ readonly delivery?: ProtocolArtifactDelivery;
3219
+ }): Promise<OpensteerArtifact | undefined>;
3220
+ private manifestPath;
3221
+ }
3222
+ declare function createArtifactStore(rootPath: string): FilesystemArtifactStore;
3223
+ declare function manifestToExternalBinaryLocation(rootPath: string, manifest: Pick<ArtifactManifest, "objectRelativePath" | "mediaType" | "byteLength" | "sha256">): ExternalBinaryLocation;
3086
3224
 
3087
3225
  type JsonPrimitive = boolean | number | string | null;
3088
3226
  type JsonValue = JsonPrimitive | JsonObject | JsonArray;
@@ -3263,6 +3401,35 @@ interface SavedNetworkStore {
3263
3401
  }): Promise<number>;
3264
3402
  }
3265
3403
 
3404
+ interface ListObservationEventsInput {
3405
+ readonly kind?: ObservationEvent["kind"];
3406
+ readonly phase?: ObservationEvent["phase"];
3407
+ readonly correlationId?: string;
3408
+ readonly pageRef?: string;
3409
+ readonly afterSequence?: number;
3410
+ readonly from?: number;
3411
+ readonly to?: number;
3412
+ readonly limit?: number;
3413
+ }
3414
+ interface ListObservationArtifactsInput {
3415
+ readonly kind?: ObservationArtifact["kind"];
3416
+ readonly pageRef?: string;
3417
+ readonly limit?: number;
3418
+ }
3419
+ interface FilesystemObservationStore extends ObservationSink {
3420
+ readonly sessionsDirectory: string;
3421
+ initialize(): Promise<void>;
3422
+ getSession(sessionId: string): Promise<ObservationSession | undefined>;
3423
+ listEvents(sessionId: string, input?: ListObservationEventsInput): Promise<readonly ObservationEvent[]>;
3424
+ listArtifacts(sessionId: string, input?: ListObservationArtifactsInput): Promise<readonly ObservationArtifact[]>;
3425
+ getArtifact(sessionId: string, artifactId: string): Promise<ObservationArtifact | undefined>;
3426
+ }
3427
+ interface NormalizedObservabilityConfig extends ObservabilityConfig {
3428
+ readonly profile: ObservabilityProfile;
3429
+ }
3430
+ declare function normalizeObservabilityConfig(input: Partial<ObservabilityConfig> | undefined): NormalizedObservabilityConfig;
3431
+ declare function createObservationStore(rootPath: string, artifacts: OpensteerArtifactStore): FilesystemObservationStore;
3432
+
3266
3433
  interface TraceRunManifest {
3267
3434
  readonly runId: string;
3268
3435
  readonly createdAt: number;
@@ -3329,6 +3496,7 @@ interface OpensteerWorkspaceManifest {
3329
3496
  readonly live: "live";
3330
3497
  readonly artifacts: "artifacts";
3331
3498
  readonly traces: "traces";
3499
+ readonly observations: "observations";
3332
3500
  readonly registry: "registry";
3333
3501
  };
3334
3502
  }
@@ -3350,10 +3518,12 @@ interface FilesystemOpensteerWorkspace {
3350
3518
  readonly liveCloudPath: string;
3351
3519
  readonly artifactsPath: string;
3352
3520
  readonly tracesPath: string;
3521
+ readonly observationsPath: string;
3353
3522
  readonly registryPath: string;
3354
3523
  readonly lockPath: string;
3355
3524
  readonly artifacts: OpensteerArtifactStore;
3356
3525
  readonly traces: OpensteerTraceStore;
3526
+ readonly observations: FilesystemObservationStore;
3357
3527
  readonly registry: {
3358
3528
  readonly descriptors: DescriptorRegistryStore;
3359
3529
  readonly requestPlans: RequestPlanRegistryStore;
@@ -3530,6 +3700,7 @@ interface DomReadDescriptorInput {
3530
3700
  interface DomActionOutcome {
3531
3701
  readonly resolved: ResolvedDomTarget;
3532
3702
  readonly point: Point;
3703
+ readonly events?: readonly StepEvent[];
3533
3704
  }
3534
3705
  interface DomClickInput {
3535
3706
  readonly pageRef: PageRef;
@@ -3850,6 +4021,9 @@ interface OpensteerRuntimeOptions {
3850
4021
  readonly reversePackages?: ReversePackageRegistryStore;
3851
4022
  };
3852
4023
  readonly cleanupRootOnClose?: boolean;
4024
+ readonly observability?: Partial<ObservabilityConfig>;
4025
+ readonly observationSessionId?: string;
4026
+ readonly observationSink?: ObservationSink;
3853
4027
  }
3854
4028
  interface OpensteerSessionRuntimeOptions {
3855
4029
  readonly name: string;
@@ -3872,6 +4046,9 @@ interface OpensteerSessionRuntimeOptions {
3872
4046
  readonly reversePackages?: ReversePackageRegistryStore;
3873
4047
  };
3874
4048
  readonly cleanupRootOnClose?: boolean;
4049
+ readonly observability?: Partial<ObservabilityConfig>;
4050
+ readonly observationSessionId?: string;
4051
+ readonly observationSink?: ObservationSink;
3875
4052
  }
3876
4053
  declare class OpensteerRuntime extends OpensteerSessionRuntime$1 {
3877
4054
  constructor(options?: OpensteerRuntimeOptions);
@@ -4141,6 +4318,8 @@ declare class Opensteer {
4141
4318
  private requireOwnedInstrumentationRuntime;
4142
4319
  }
4143
4320
 
4321
+ type OpensteerEnvironment = Record<string, string | undefined>;
4322
+
4144
4323
  interface OpensteerCloudConfig {
4145
4324
  readonly apiKey: string;
4146
4325
  readonly baseUrl: string;
@@ -4148,7 +4327,7 @@ interface OpensteerCloudConfig {
4148
4327
  }
4149
4328
  declare function resolveCloudConfig(input?: {
4150
4329
  readonly provider?: OpensteerProviderOptions;
4151
- readonly environmentProvider?: string;
4330
+ readonly environment?: OpensteerEnvironment;
4152
4331
  }): OpensteerCloudConfig | undefined;
4153
4332
 
4154
4333
  interface OpensteerRuntimeOperationOptions {
@@ -4230,29 +4409,23 @@ interface OpensteerResolvedRuntimeConfig {
4230
4409
  }
4231
4410
  declare function resolveOpensteerRuntimeConfig(input?: {
4232
4411
  readonly provider?: OpensteerProviderOptions;
4233
- readonly environmentProvider?: string;
4412
+ readonly environment?: OpensteerEnvironment;
4234
4413
  }): OpensteerResolvedRuntimeConfig;
4235
4414
  declare function createOpensteerSemanticRuntime(input?: {
4236
4415
  readonly runtimeOptions?: OpensteerRuntimeOptions;
4237
4416
  readonly engine?: OpensteerEngineName;
4238
4417
  readonly provider?: OpensteerProviderOptions;
4418
+ readonly environment?: OpensteerEnvironment;
4239
4419
  }): OpensteerDisconnectableRuntime;
4240
4420
 
4241
4421
  type BrowserBrandId = "chrome" | "chrome-canary" | "chromium" | "brave" | "edge" | "vivaldi" | "helium";
4242
4422
 
4243
- type CookieCaptureStrategy = "attach" | "headless" | "managed-relaunch";
4244
-
4245
4423
  interface SyncBrowserProfileCookiesInput {
4246
4424
  readonly profileId: string;
4247
- readonly attachEndpoint?: string;
4248
4425
  readonly brandId?: BrowserBrandId;
4249
4426
  readonly userDataDir?: string;
4250
4427
  readonly profileDirectory?: string;
4251
- readonly executablePath?: string;
4252
- readonly strategy?: CookieCaptureStrategy;
4253
- readonly restoreBrowser?: boolean;
4254
4428
  readonly domains?: readonly string[];
4255
- readonly timeoutMs?: number;
4256
4429
  }
4257
4430
 
4258
4431
  interface OpensteerCloudSessionCreateInput {
@@ -4260,6 +4433,7 @@ interface OpensteerCloudSessionCreateInput {
4260
4433
  readonly browser?: OpensteerBrowserLaunchOptions;
4261
4434
  readonly context?: OpensteerBrowserContextOptions;
4262
4435
  readonly browserProfile?: CloudBrowserProfilePreference;
4436
+ readonly observability?: Partial<ObservabilityConfig>;
4263
4437
  }
4264
4438
  interface OpensteerCloudSessionDescriptor {
4265
4439
  readonly sessionId: string;
@@ -4345,6 +4519,7 @@ interface CloudSessionProxyOptions {
4345
4519
  readonly rootPath?: string;
4346
4520
  readonly workspace?: string;
4347
4521
  readonly cleanupRootOnClose?: boolean;
4522
+ readonly observability?: Partial<ObservabilityConfig>;
4348
4523
  }
4349
4524
 
4350
4525
  declare class CloudSessionProxy implements OpensteerDisconnectableRuntime {
@@ -4352,6 +4527,7 @@ declare class CloudSessionProxy implements OpensteerDisconnectableRuntime {
4352
4527
  readonly workspace: string | undefined;
4353
4528
  private readonly cleanupRootOnClose;
4354
4529
  private readonly cloud;
4530
+ private readonly observability;
4355
4531
  private sessionId;
4356
4532
  private sessionBaseUrl;
4357
4533
  private client;
@@ -4475,4 +4651,4 @@ declare function discoverLocalCdpBrowsers(input?: {
4475
4651
  readonly timeoutMs?: number;
4476
4652
  }): Promise<readonly LocalCdpBrowserCandidate[]>;
4477
4653
 
4478
- export { type AnchorTargetRef, type AppendTraceEntryInput, type ArtifactManifest, type ArtifactScope, type AuthRecipeRecord, type AuthRecipeRegistryStore, 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, type FilesystemOpensteerWorkspace, type InspectedCdpEndpoint, type InteractionTraceRecord, type InteractionTraceRegistryStore, type JsonArray, type JsonObject, type JsonPrimitive, type JsonValue, 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 OpensteerArtifactReadOptions, type OpensteerArtifactReadResult, type OpensteerArtifactStore, OpensteerAttachAmbiguousError, type OpensteerBrowserCloneOptions, type OpensteerBrowserController, OpensteerBrowserManager, type OpensteerBrowserManagerOptions, type OpensteerBrowserStatus, type OpensteerCaptchaSolveOptions, type OpensteerCaptchaSolveResult, type OpensteerCaptureScriptsOptions, type OpensteerCaptureScriptsResult, OpensteerCloudClient, type OpensteerCloudConfig, type OpensteerCloudProviderOptions, type OpensteerCloudSessionCreateInput, type OpensteerCloudSessionDescriptor, type OpensteerComputerExecuteOptions, type OpensteerComputerExecuteResult, type OpensteerDisconnectableRuntime, type OpensteerEngineName, type OpensteerExtractOptions, type OpensteerExtractionDescriptorPayload, type OpensteerExtractionDescriptorRecord, type OpensteerExtractionDescriptorStore, type OpensteerFetchedRouteResponse, type OpensteerInputOptions, type OpensteerInteractionCaptureOptions, type OpensteerInteractionCaptureResult, type OpensteerInteractionDiffOptions, type OpensteerInteractionDiffResult, type OpensteerInteractionReplayOptions, type OpensteerInteractionReplayResult, type OpensteerInterceptScriptOptions, type OpensteerLiveSessionProvider, type OpensteerLocalProviderOptions, type OpensteerNetworkClearOptions, type OpensteerNetworkClearResult, type OpensteerNetworkDiffOptions, type OpensteerNetworkDiffResult, type OpensteerNetworkMinimizeOptions, type OpensteerNetworkMinimizeResult, type OpensteerNetworkProbeOptions, type OpensteerNetworkProbeResult, type OpensteerNetworkQueryOptions, type OpensteerNetworkQueryResult, type OpensteerNetworkTagOptions, type OpensteerNetworkTagResult, type OpensteerOptions, type OpensteerPolicy, type OpensteerProviderMode, type OpensteerProviderOptions, type OpensteerProviderSource, type OpensteerRawRequestOptions, type OpensteerRawRequestResult, type OpensteerRequestOptions, type OpensteerRequestResult, type OpensteerResolvedProvider, type OpensteerReverseDiscoverOptions, type OpensteerReverseDiscoverResult, type OpensteerReverseExportOptions, type OpensteerReverseExportResult, type OpensteerReversePackageCreateOptions, type OpensteerReversePackageCreateResult, type OpensteerReversePackageGetOptions, type OpensteerReversePackageGetResult, type OpensteerReversePackageListOptions, type OpensteerReversePackageListResult, type OpensteerReversePackagePatchOptions, type OpensteerReversePackagePatchResult, type OpensteerReversePackageRunOptions, type OpensteerReversePackageRunResult, type OpensteerReverseQueryOptions, type OpensteerReverseQueryResult, type OpensteerReverseReportOptions, type OpensteerReverseReportResult, type OpensteerRouteHandlerResult, type OpensteerRouteOptions, type OpensteerRouteRegistration, OpensteerRuntime, type OpensteerRuntimeOptions, type OpensteerScriptBeautifyOptions, type OpensteerScriptBeautifyResult, type OpensteerScriptDeobfuscateOptions, type OpensteerScriptDeobfuscateResult, type OpensteerScriptSandboxOptions, type OpensteerScriptSandboxResult, type OpensteerScrollOptions, type OpensteerSemanticRuntime, OpensteerSessionRuntime, type OpensteerSessionRuntimeOptions, type OpensteerSnapshotOptions, type OpensteerSnapshotResult, type OpensteerTargetOptions, type OpensteerTraceStore, type OpensteerWaitForNetworkOptions, type OpensteerWaitForPageOptions, type OpensteerWorkspaceManifest, type PathNode, type PersistedCloudSessionRecord, type PersistedLocalBrowserSessionRecord, type PersistedSessionRecord, type ProtocolArtifactDelivery, type RecipeRecord, type RecipeRegistryStore, type RegistryProvenance, type RegistryRecord, type ReplayElementPath, type RequestPlanFreshness, type RequestPlanRecord, type RequestPlanRegistryStore, type ResolveRegistryRecordInput, type ResolvedDomTarget, type RetryDecision, type RetryEvaluationInput, type RetryPolicy, type ReverseCaseRecord, type ReverseCaseRegistryStore, type ReversePackageRecord, type ReversePackageRegistryStore, type ReverseReportRecord, type ReverseReportRegistryStore, 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 UpdateReverseCaseInput, type WorkspaceBrowserBootstrap, type WorkspaceBrowserManifest, type WorkspaceLiveBrowserRecord, type WriteAuthRecipeInput, type WriteBinaryArtifactInput, type WriteDescriptorInput, type WriteInteractionTraceInput, type WriteRecipeInput, type WriteRequestPlanInput, type WriteReverseCaseInput, type WriteReversePackageInput, type WriteReverseReportInput, type WriteStructuredArtifactInput, assertProviderSupportsEngine, buildArrayFieldPathCandidates, buildDomDescriptorKey, buildDomDescriptorPayload, buildDomDescriptorVersion, buildPathCandidates, buildPathSelectorHint, buildSegmentSelector, clearPersistedSessionRecord, cloneElementPath, cloneReplayElementPath, cloneStructuralElementAnchor, createDomRuntime, createFilesystemOpensteerWorkspace, createOpensteerExtractionDescriptorStore, createOpensteerSemanticRuntime, defaultFallbackPolicy, defaultPolicy, defaultRetryPolicy, defaultSettlePolicy, defaultTimeoutPolicy, delayWithSignal, discoverLocalCdpBrowsers, dispatchSemanticOperation, hashDomDescriptorDescription, inspectCdpEndpoint, isCurrentUrlField, isValidCssAttributeKey, listLocalChromeProfiles, normalizeExtractedValue, 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 };
4654
+ export { type AnchorTargetRef, type AppendTraceEntryInput, type ArtifactManifest, type ArtifactPayloadType, type ArtifactScope, type AuthRecipeRecord, type AuthRecipeRegistryStore, 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 OpensteerArtifactReadOptions, type OpensteerArtifactReadResult, type OpensteerArtifactStore, OpensteerAttachAmbiguousError, type OpensteerBrowserCloneOptions, type OpensteerBrowserController, OpensteerBrowserManager, type OpensteerBrowserManagerOptions, type OpensteerBrowserStatus, type OpensteerCaptchaSolveOptions, type OpensteerCaptchaSolveResult, type OpensteerCaptureScriptsOptions, type OpensteerCaptureScriptsResult, OpensteerCloudClient, type OpensteerCloudConfig, type OpensteerCloudProviderOptions, type OpensteerCloudSessionCreateInput, type OpensteerCloudSessionDescriptor, type OpensteerComputerExecuteOptions, type OpensteerComputerExecuteResult, type OpensteerDisconnectableRuntime, type OpensteerEngineName, type OpensteerExtractOptions, type OpensteerExtractionDescriptorPayload, type OpensteerExtractionDescriptorRecord, type OpensteerExtractionDescriptorStore, type OpensteerFetchedRouteResponse, type OpensteerInputOptions, type OpensteerInteractionCaptureOptions, type OpensteerInteractionCaptureResult, type OpensteerInteractionDiffOptions, type OpensteerInteractionDiffResult, type OpensteerInteractionReplayOptions, type OpensteerInteractionReplayResult, type OpensteerInterceptScriptOptions, type OpensteerLiveSessionProvider, type OpensteerLocalProviderOptions, type OpensteerNetworkClearOptions, type OpensteerNetworkClearResult, type OpensteerNetworkDiffOptions, type OpensteerNetworkDiffResult, type OpensteerNetworkMinimizeOptions, type OpensteerNetworkMinimizeResult, type OpensteerNetworkProbeOptions, type OpensteerNetworkProbeResult, type OpensteerNetworkQueryOptions, type OpensteerNetworkQueryResult, type OpensteerNetworkTagOptions, type OpensteerNetworkTagResult, type OpensteerOptions, type OpensteerPolicy, type OpensteerProviderMode, type OpensteerProviderOptions, type OpensteerProviderSource, type OpensteerRawRequestOptions, type OpensteerRawRequestResult, type OpensteerRequestOptions, type OpensteerRequestResult, type OpensteerResolvedProvider, type OpensteerReverseDiscoverOptions, type OpensteerReverseDiscoverResult, type OpensteerReverseExportOptions, type OpensteerReverseExportResult, type OpensteerReversePackageCreateOptions, type OpensteerReversePackageCreateResult, type OpensteerReversePackageGetOptions, type OpensteerReversePackageGetResult, type OpensteerReversePackageListOptions, type OpensteerReversePackageListResult, type OpensteerReversePackagePatchOptions, type OpensteerReversePackagePatchResult, type OpensteerReversePackageRunOptions, type OpensteerReversePackageRunResult, type OpensteerReverseQueryOptions, type OpensteerReverseQueryResult, type OpensteerReverseReportOptions, type OpensteerReverseReportResult, type OpensteerRouteHandlerResult, type OpensteerRouteOptions, type OpensteerRouteRegistration, OpensteerRuntime, type OpensteerRuntimeOptions, type OpensteerScriptBeautifyOptions, type OpensteerScriptBeautifyResult, type OpensteerScriptDeobfuscateOptions, type OpensteerScriptDeobfuscateResult, type OpensteerScriptSandboxOptions, type OpensteerScriptSandboxResult, type OpensteerScrollOptions, type OpensteerSemanticRuntime, OpensteerSessionRuntime, type OpensteerSessionRuntimeOptions, type OpensteerSnapshotOptions, type OpensteerSnapshotResult, type OpensteerTargetOptions, type OpensteerTraceStore, type OpensteerWaitForNetworkOptions, type OpensteerWaitForPageOptions, type OpensteerWorkspaceManifest, type PathNode, type PersistedCloudSessionRecord, type PersistedLocalBrowserSessionRecord, type PersistedSessionRecord, type ProtocolArtifactDelivery, type RecipeRecord, type RecipeRegistryStore, type RegistryProvenance, type RegistryRecord, type ReplayElementPath, type RequestPlanFreshness, type RequestPlanRecord, type RequestPlanRegistryStore, type ResolveRegistryRecordInput, type ResolvedDomTarget, type RetryDecision, type RetryEvaluationInput, type RetryPolicy, type ReverseCaseRecord, type ReverseCaseRegistryStore, type ReversePackageRecord, type ReversePackageRegistryStore, type ReverseReportRecord, type ReverseReportRegistryStore, 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 UpdateReverseCaseInput, type WorkspaceBrowserBootstrap, type WorkspaceBrowserManifest, type WorkspaceLiveBrowserRecord, type WriteAuthRecipeInput, type WriteBinaryArtifactInput, type WriteDescriptorInput, type WriteInteractionTraceInput, type WriteRecipeInput, type WriteRequestPlanInput, type WriteReverseCaseInput, type WriteReversePackageInput, type WriteReverseReportInput, type WriteStructuredArtifactInput, assertProviderSupportsEngine, buildArrayFieldPathCandidates, buildDomDescriptorKey, buildDomDescriptorPayload, buildDomDescriptorVersion, buildPathCandidates, buildPathSelectorHint, buildSegmentSelector, clearPersistedSessionRecord, cloneElementPath, cloneReplayElementPath, cloneStructuralElementAnchor, createArtifactStore, createDomRuntime, createFilesystemOpensteerWorkspace, createObservationStore, createOpensteerExtractionDescriptorStore, createOpensteerSemanticRuntime, defaultFallbackPolicy, defaultPolicy, defaultRetryPolicy, defaultSettlePolicy, defaultTimeoutPolicy, delayWithSignal, discoverLocalCdpBrowsers, dispatchSemanticOperation, hashDomDescriptorDescription, 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 };