opensteer 0.8.8 → 0.8.10

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[]>;
@@ -775,6 +778,7 @@ interface BrowserCoreEngine extends BrowserExecutor, BrowserInspector, SessionTr
775
778
  interface ActionBoundarySnapshot {
776
779
  readonly pageRef: PageRef;
777
780
  readonly documentRef: DocumentRef;
781
+ readonly url?: string;
778
782
  }
779
783
  type ActionBoundarySettleTrigger = "dom-action" | "navigation";
780
784
  type ActionBoundaryTimedOutPhase = "bootstrap";
@@ -1627,6 +1631,123 @@ interface TraceBundle<TData = unknown> {
1627
1631
  readonly artifacts?: readonly OpensteerArtifact[];
1628
1632
  }
1629
1633
 
1634
+ declare const observabilityProfiles: readonly ["off", "baseline", "diagnostic"];
1635
+ type ObservabilityProfile = (typeof observabilityProfiles)[number];
1636
+ interface ObservabilityTraceContext {
1637
+ readonly traceparent?: string;
1638
+ readonly baggage?: string;
1639
+ }
1640
+ interface ObservabilityRedactionConfig {
1641
+ readonly sensitiveKeys?: readonly string[];
1642
+ readonly sensitiveValues?: readonly string[];
1643
+ }
1644
+ interface ObservabilityConfig {
1645
+ readonly profile: ObservabilityProfile;
1646
+ readonly labels?: Readonly<Record<string, string>>;
1647
+ readonly traceContext?: ObservabilityTraceContext;
1648
+ readonly redaction?: ObservabilityRedactionConfig;
1649
+ }
1650
+ interface ObservationContext {
1651
+ readonly sessionRef?: SessionRef;
1652
+ readonly pageRef?: PageRef;
1653
+ readonly frameRef?: FrameRef;
1654
+ readonly documentRef?: DocumentRef;
1655
+ readonly documentEpoch?: DocumentEpoch;
1656
+ }
1657
+ declare const observationEventPhases: readonly ["started", "updated", "completed", "failed", "occurred"];
1658
+ type ObservationEventPhase = (typeof observationEventPhases)[number];
1659
+ declare const observationEventKinds: readonly ["session", "operation", "page", "console", "error", "network", "artifact", "annotation", "runtime", "observability"];
1660
+ type ObservationEventKind = (typeof observationEventKinds)[number];
1661
+ interface ObservationEventError {
1662
+ readonly code?: string;
1663
+ readonly message: string;
1664
+ readonly retriable?: boolean;
1665
+ readonly details?: JsonValue$1;
1666
+ }
1667
+ interface ObservationEvent {
1668
+ readonly eventId: string;
1669
+ readonly sessionId: string;
1670
+ readonly sequence: number;
1671
+ readonly kind: ObservationEventKind;
1672
+ readonly phase: ObservationEventPhase;
1673
+ readonly createdAt: number;
1674
+ readonly correlationId: string;
1675
+ readonly spanId?: string;
1676
+ readonly parentSpanId?: string;
1677
+ readonly context?: ObservationContext;
1678
+ readonly data?: JsonValue$1;
1679
+ readonly error?: ObservationEventError;
1680
+ readonly artifactIds?: readonly string[];
1681
+ }
1682
+ declare const observationArtifactKinds: readonly ["screenshot", "dom-snapshot", "html-snapshot", "trace-bundle", "frame-buffer", "request-body", "response-body", "log", "other"];
1683
+ type ObservationArtifactKind = (typeof observationArtifactKinds)[number];
1684
+ interface ObservationArtifact {
1685
+ readonly artifactId: string;
1686
+ readonly sessionId: string;
1687
+ readonly kind: ObservationArtifactKind;
1688
+ readonly createdAt: number;
1689
+ readonly context?: ObservationContext;
1690
+ readonly mediaType?: string;
1691
+ readonly byteLength?: number;
1692
+ readonly sha256?: string;
1693
+ readonly opensteerArtifactId?: string;
1694
+ readonly storageKey?: string;
1695
+ readonly metadata?: JsonValue$1;
1696
+ }
1697
+ interface ObservationSession {
1698
+ readonly sessionId: string;
1699
+ readonly profile: ObservabilityProfile;
1700
+ readonly labels?: Readonly<Record<string, string>>;
1701
+ readonly traceContext?: ObservabilityTraceContext;
1702
+ readonly openedAt: number;
1703
+ readonly updatedAt: number;
1704
+ readonly closedAt?: number;
1705
+ readonly currentSequence: number;
1706
+ readonly eventCount: number;
1707
+ readonly artifactCount: number;
1708
+ }
1709
+ interface OpenObservationSessionInput {
1710
+ readonly sessionId: string;
1711
+ readonly openedAt?: number;
1712
+ readonly config?: Partial<ObservabilityConfig>;
1713
+ }
1714
+ interface AppendObservationEventInput {
1715
+ readonly eventId?: string;
1716
+ readonly kind: ObservationEventKind;
1717
+ readonly phase: ObservationEventPhase;
1718
+ readonly createdAt: number;
1719
+ readonly correlationId: string;
1720
+ readonly spanId?: string;
1721
+ readonly parentSpanId?: string;
1722
+ readonly context?: ObservationContext;
1723
+ readonly data?: JsonValue$1;
1724
+ readonly error?: ObservationEventError;
1725
+ readonly artifactIds?: readonly string[];
1726
+ }
1727
+ interface WriteObservationArtifactInput {
1728
+ readonly artifactId: string;
1729
+ readonly kind: ObservationArtifactKind;
1730
+ readonly createdAt: number;
1731
+ readonly context?: ObservationContext;
1732
+ readonly mediaType?: string;
1733
+ readonly byteLength?: number;
1734
+ readonly sha256?: string;
1735
+ readonly opensteerArtifactId?: string;
1736
+ readonly storageKey?: string;
1737
+ readonly metadata?: JsonValue$1;
1738
+ }
1739
+ interface SessionObservationSink {
1740
+ readonly sessionId: string;
1741
+ append(input: AppendObservationEventInput): Promise<ObservationEvent>;
1742
+ appendBatch(input: readonly AppendObservationEventInput[]): Promise<readonly ObservationEvent[]>;
1743
+ writeArtifact(input: WriteObservationArtifactInput): Promise<ObservationArtifact>;
1744
+ flush(reason?: string): Promise<void>;
1745
+ close(reason?: string): Promise<void>;
1746
+ }
1747
+ interface ObservationSink {
1748
+ openSession(input: OpenObservationSessionInput): Promise<SessionObservationSink>;
1749
+ }
1750
+
1630
1751
  type OpensteerSnapshotMode = "action" | "extraction";
1631
1752
  interface OpensteerBrowserLaunchOptions {
1632
1753
  readonly headless?: boolean;
@@ -1945,8 +2066,9 @@ interface OpensteerComputerExecuteOutput {
1945
2066
  declare const opensteerSemanticOperationNames: readonly ["session.open", "page.list", "page.new", "page.activate", "page.close", "page.goto", "page.evaluate", "page.add-init-script", "page.snapshot", "dom.click", "dom.hover", "dom.input", "dom.scroll", "dom.extract", "network.query", "network.tag", "network.clear", "network.minimize", "network.diff", "network.probe", "reverse.discover", "reverse.query", "reverse.package.create", "reverse.package.run", "reverse.export", "reverse.report", "reverse.package.get", "reverse.package.list", "reverse.package.patch", "interaction.capture", "interaction.get", "interaction.diff", "interaction.replay", "artifact.read", "inspect.cookies", "inspect.storage", "scripts.capture", "scripts.beautify", "scripts.deobfuscate", "scripts.sandbox", "captcha.solve", "request.raw", "request-plan.infer", "request-plan.write", "request-plan.get", "request-plan.list", "recipe.write", "recipe.get", "recipe.list", "recipe.run", "auth-recipe.write", "auth-recipe.get", "auth-recipe.list", "auth-recipe.run", "request.execute", "computer.execute", "session.close"];
1946
2067
  type OpensteerSemanticOperationName = (typeof opensteerSemanticOperationNames)[number];
1947
2068
 
1948
- declare const opensteerSessionGrantKinds: readonly ["automation", "view", "cdp"];
2069
+ declare const opensteerSessionGrantKinds: readonly ["semantic", "automation", "view", "cdp"];
1949
2070
  type OpensteerSessionGrantKind = (typeof opensteerSessionGrantKinds)[number];
2071
+ type OpensteerSessionGrantTransport = "http" | "ws";
1950
2072
  type OpensteerProviderMode$1 = "local" | "cloud";
1951
2073
  type OpensteerSessionOwnership = "owned" | "attached" | "managed";
1952
2074
  interface OpensteerProviderDescriptor {
@@ -1968,7 +2090,8 @@ interface OpensteerSessionCapabilities {
1968
2090
  }
1969
2091
  interface OpensteerSessionGrant {
1970
2092
  readonly kind: OpensteerSessionGrantKind;
1971
- readonly wsUrl: string;
2093
+ readonly transport: OpensteerSessionGrantTransport;
2094
+ readonly url: string;
1972
2095
  readonly token: string;
1973
2096
  readonly expiresAt: number;
1974
2097
  }
@@ -3083,6 +3206,24 @@ interface OpensteerArtifactStore {
3083
3206
  readonly delivery?: ProtocolArtifactDelivery;
3084
3207
  }): Promise<OpensteerArtifact | undefined>;
3085
3208
  }
3209
+ declare class FilesystemArtifactStore implements OpensteerArtifactStore {
3210
+ private readonly rootPath;
3211
+ readonly manifestsDirectory: string;
3212
+ readonly objectsDirectory: string;
3213
+ constructor(rootPath: string);
3214
+ initialize(): Promise<void>;
3215
+ writeStructured(input: WriteStructuredArtifactInput): Promise<ArtifactManifest>;
3216
+ writeBinary(input: WriteBinaryArtifactInput): Promise<ArtifactManifest>;
3217
+ getManifest(artifactId: string): Promise<ArtifactManifest | undefined>;
3218
+ read(artifactId: string): Promise<StoredArtifactRecord | undefined>;
3219
+ toProtocolArtifactReference(artifactId: string, relation: ArtifactRelation): Promise<ArtifactReference | undefined>;
3220
+ toProtocolArtifact(artifactId: string, options?: {
3221
+ readonly delivery?: ProtocolArtifactDelivery;
3222
+ }): Promise<OpensteerArtifact | undefined>;
3223
+ private manifestPath;
3224
+ }
3225
+ declare function createArtifactStore(rootPath: string): FilesystemArtifactStore;
3226
+ declare function manifestToExternalBinaryLocation(rootPath: string, manifest: Pick<ArtifactManifest, "objectRelativePath" | "mediaType" | "byteLength" | "sha256">): ExternalBinaryLocation;
3086
3227
 
3087
3228
  type JsonPrimitive = boolean | number | string | null;
3088
3229
  type JsonValue = JsonPrimitive | JsonObject | JsonArray;
@@ -3263,6 +3404,35 @@ interface SavedNetworkStore {
3263
3404
  }): Promise<number>;
3264
3405
  }
3265
3406
 
3407
+ interface ListObservationEventsInput {
3408
+ readonly kind?: ObservationEvent["kind"];
3409
+ readonly phase?: ObservationEvent["phase"];
3410
+ readonly correlationId?: string;
3411
+ readonly pageRef?: string;
3412
+ readonly afterSequence?: number;
3413
+ readonly from?: number;
3414
+ readonly to?: number;
3415
+ readonly limit?: number;
3416
+ }
3417
+ interface ListObservationArtifactsInput {
3418
+ readonly kind?: ObservationArtifact["kind"];
3419
+ readonly pageRef?: string;
3420
+ readonly limit?: number;
3421
+ }
3422
+ interface FilesystemObservationStore extends ObservationSink {
3423
+ readonly sessionsDirectory: string;
3424
+ initialize(): Promise<void>;
3425
+ getSession(sessionId: string): Promise<ObservationSession | undefined>;
3426
+ listEvents(sessionId: string, input?: ListObservationEventsInput): Promise<readonly ObservationEvent[]>;
3427
+ listArtifacts(sessionId: string, input?: ListObservationArtifactsInput): Promise<readonly ObservationArtifact[]>;
3428
+ getArtifact(sessionId: string, artifactId: string): Promise<ObservationArtifact | undefined>;
3429
+ }
3430
+ interface NormalizedObservabilityConfig extends ObservabilityConfig {
3431
+ readonly profile: ObservabilityProfile;
3432
+ }
3433
+ declare function normalizeObservabilityConfig(input: Partial<ObservabilityConfig> | undefined): NormalizedObservabilityConfig;
3434
+ declare function createObservationStore(rootPath: string, artifacts: OpensteerArtifactStore): FilesystemObservationStore;
3435
+
3266
3436
  interface TraceRunManifest {
3267
3437
  readonly runId: string;
3268
3438
  readonly createdAt: number;
@@ -3329,6 +3499,7 @@ interface OpensteerWorkspaceManifest {
3329
3499
  readonly live: "live";
3330
3500
  readonly artifacts: "artifacts";
3331
3501
  readonly traces: "traces";
3502
+ readonly observations: "observations";
3332
3503
  readonly registry: "registry";
3333
3504
  };
3334
3505
  }
@@ -3350,10 +3521,12 @@ interface FilesystemOpensteerWorkspace {
3350
3521
  readonly liveCloudPath: string;
3351
3522
  readonly artifactsPath: string;
3352
3523
  readonly tracesPath: string;
3524
+ readonly observationsPath: string;
3353
3525
  readonly registryPath: string;
3354
3526
  readonly lockPath: string;
3355
3527
  readonly artifacts: OpensteerArtifactStore;
3356
3528
  readonly traces: OpensteerTraceStore;
3529
+ readonly observations: FilesystemObservationStore;
3357
3530
  readonly registry: {
3358
3531
  readonly descriptors: DescriptorRegistryStore;
3359
3532
  readonly requestPlans: RequestPlanRegistryStore;
@@ -3530,6 +3703,7 @@ interface DomReadDescriptorInput {
3530
3703
  interface DomActionOutcome {
3531
3704
  readonly resolved: ResolvedDomTarget;
3532
3705
  readonly point: Point;
3706
+ readonly events?: readonly StepEvent[];
3533
3707
  }
3534
3708
  interface DomClickInput {
3535
3709
  readonly pageRef: PageRef;
@@ -3620,6 +3794,10 @@ interface DomDescriptorStore {
3620
3794
  read(input: DomReadDescriptorInput): Promise<DomDescriptorRecord | undefined>;
3621
3795
  write(input: DomWriteDescriptorInput): Promise<DomDescriptorRecord>;
3622
3796
  }
3797
+ declare function createDomDescriptorStore(options: {
3798
+ readonly root?: FilesystemOpensteerWorkspace;
3799
+ readonly namespace?: string;
3800
+ }): DomDescriptorStore;
3623
3801
  declare function hashDomDescriptorDescription(description: string): string;
3624
3802
  declare function buildDomDescriptorKey(options: {
3625
3803
  readonly namespace?: string;
@@ -3850,6 +4028,9 @@ interface OpensteerRuntimeOptions {
3850
4028
  readonly reversePackages?: ReversePackageRegistryStore;
3851
4029
  };
3852
4030
  readonly cleanupRootOnClose?: boolean;
4031
+ readonly observability?: Partial<ObservabilityConfig>;
4032
+ readonly observationSessionId?: string;
4033
+ readonly observationSink?: ObservationSink;
3853
4034
  }
3854
4035
  interface OpensteerSessionRuntimeOptions {
3855
4036
  readonly name: string;
@@ -3872,6 +4053,9 @@ interface OpensteerSessionRuntimeOptions {
3872
4053
  readonly reversePackages?: ReversePackageRegistryStore;
3873
4054
  };
3874
4055
  readonly cleanupRootOnClose?: boolean;
4056
+ readonly observability?: Partial<ObservabilityConfig>;
4057
+ readonly observationSessionId?: string;
4058
+ readonly observationSink?: ObservationSink;
3875
4059
  }
3876
4060
  declare class OpensteerRuntime extends OpensteerSessionRuntime$1 {
3877
4061
  constructor(options?: OpensteerRuntimeOptions);
@@ -4141,6 +4325,8 @@ declare class Opensteer {
4141
4325
  private requireOwnedInstrumentationRuntime;
4142
4326
  }
4143
4327
 
4328
+ type OpensteerEnvironment = Record<string, string | undefined>;
4329
+
4144
4330
  interface OpensteerCloudConfig {
4145
4331
  readonly apiKey: string;
4146
4332
  readonly baseUrl: string;
@@ -4148,7 +4334,7 @@ interface OpensteerCloudConfig {
4148
4334
  }
4149
4335
  declare function resolveCloudConfig(input?: {
4150
4336
  readonly provider?: OpensteerProviderOptions;
4151
- readonly environmentProvider?: string;
4337
+ readonly environment?: OpensteerEnvironment;
4152
4338
  }): OpensteerCloudConfig | undefined;
4153
4339
 
4154
4340
  interface OpensteerRuntimeOperationOptions {
@@ -4230,29 +4416,23 @@ interface OpensteerResolvedRuntimeConfig {
4230
4416
  }
4231
4417
  declare function resolveOpensteerRuntimeConfig(input?: {
4232
4418
  readonly provider?: OpensteerProviderOptions;
4233
- readonly environmentProvider?: string;
4419
+ readonly environment?: OpensteerEnvironment;
4234
4420
  }): OpensteerResolvedRuntimeConfig;
4235
4421
  declare function createOpensteerSemanticRuntime(input?: {
4236
4422
  readonly runtimeOptions?: OpensteerRuntimeOptions;
4237
4423
  readonly engine?: OpensteerEngineName;
4238
4424
  readonly provider?: OpensteerProviderOptions;
4425
+ readonly environment?: OpensteerEnvironment;
4239
4426
  }): OpensteerDisconnectableRuntime;
4240
4427
 
4241
4428
  type BrowserBrandId = "chrome" | "chrome-canary" | "chromium" | "brave" | "edge" | "vivaldi" | "helium";
4242
4429
 
4243
- type CookieCaptureStrategy = "attach" | "headless" | "managed-relaunch";
4244
-
4245
4430
  interface SyncBrowserProfileCookiesInput {
4246
4431
  readonly profileId: string;
4247
- readonly attachEndpoint?: string;
4248
4432
  readonly brandId?: BrowserBrandId;
4249
4433
  readonly userDataDir?: string;
4250
4434
  readonly profileDirectory?: string;
4251
- readonly executablePath?: string;
4252
- readonly strategy?: CookieCaptureStrategy;
4253
- readonly restoreBrowser?: boolean;
4254
4435
  readonly domains?: readonly string[];
4255
- readonly timeoutMs?: number;
4256
4436
  }
4257
4437
 
4258
4438
  interface OpensteerCloudSessionCreateInput {
@@ -4260,11 +4440,18 @@ interface OpensteerCloudSessionCreateInput {
4260
4440
  readonly browser?: OpensteerBrowserLaunchOptions;
4261
4441
  readonly context?: OpensteerBrowserContextOptions;
4262
4442
  readonly browserProfile?: CloudBrowserProfilePreference;
4443
+ readonly observability?: Partial<ObservabilityConfig>;
4444
+ readonly sourceType?: "manual" | "local-cloud";
4445
+ readonly sourceRef?: string;
4446
+ readonly localWorkspaceRootPath?: string;
4447
+ readonly locality?: "auto" | "off";
4263
4448
  }
4264
4449
  interface OpensteerCloudSessionDescriptor {
4265
4450
  readonly sessionId: string;
4266
- readonly baseUrl: string;
4267
4451
  readonly status?: string;
4452
+ readonly baseUrl?: string;
4453
+ readonly initialGrants?: Partial<Record<OpensteerSessionGrantKind, OpensteerSessionGrant>>;
4454
+ readonly initialGrantExpiresAt?: number;
4268
4455
  }
4269
4456
  interface OpensteerCloudSessionState {
4270
4457
  readonly status?: string;
@@ -4327,7 +4514,6 @@ interface PersistedLocalBrowserSessionRecord extends PersistedSessionRecordBase
4327
4514
  interface PersistedCloudSessionRecord extends PersistedSessionRecordBase {
4328
4515
  readonly provider: "cloud";
4329
4516
  readonly sessionId: string;
4330
- readonly baseUrl: string;
4331
4517
  readonly startedAt: number;
4332
4518
  }
4333
4519
  type PersistedSessionRecord = PersistedLocalBrowserSessionRecord | PersistedCloudSessionRecord;
@@ -4345,6 +4531,7 @@ interface CloudSessionProxyOptions {
4345
4531
  readonly rootPath?: string;
4346
4532
  readonly workspace?: string;
4347
4533
  readonly cleanupRootOnClose?: boolean;
4534
+ readonly observability?: Partial<ObservabilityConfig>;
4348
4535
  }
4349
4536
 
4350
4537
  declare class CloudSessionProxy implements OpensteerDisconnectableRuntime {
@@ -4352,8 +4539,9 @@ declare class CloudSessionProxy implements OpensteerDisconnectableRuntime {
4352
4539
  readonly workspace: string | undefined;
4353
4540
  private readonly cleanupRootOnClose;
4354
4541
  private readonly cloud;
4542
+ private readonly observability;
4355
4543
  private sessionId;
4356
- private sessionBaseUrl;
4544
+ private semanticGrant;
4357
4545
  private client;
4358
4546
  private automation;
4359
4547
  private workspaceStore;
@@ -4434,6 +4622,9 @@ declare class CloudSessionProxy implements OpensteerDisconnectableRuntime {
4434
4622
  private isReusableCloudSession;
4435
4623
  private requireClient;
4436
4624
  private requireAutomation;
4625
+ private ensureSemanticGrant;
4626
+ private handleSemanticClientError;
4627
+ private shouldUseLocalCloudTransport;
4437
4628
  }
4438
4629
 
4439
4630
  declare function dispatchSemanticOperation(runtime: OpensteerSemanticRuntime, operation: OpensteerSemanticOperationName, input: unknown, options?: {
@@ -4475,4 +4666,4 @@ declare function discoverLocalCdpBrowsers(input?: {
4475
4666
  readonly timeoutMs?: number;
4476
4667
  }): Promise<readonly LocalCdpBrowserCandidate[]>;
4477
4668
 
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 };
4669
+ 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, createDomDescriptorStore, 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 };