opensteer 0.8.2 → 0.8.3
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/README.md +3 -3
- package/dist/{chunk-X3G6QSCF.js → chunk-JK4NMMM2.js} +1371 -407
- package/dist/chunk-JK4NMMM2.js.map +1 -0
- package/dist/cli/bin.cjs +16513 -15574
- package/dist/cli/bin.cjs.map +1 -1
- package/dist/cli/bin.js +1 -1
- package/dist/index.cjs +1386 -406
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +363 -447
- package/dist/index.d.ts +363 -447
- package/dist/index.js +13 -4
- package/dist/index.js.map +1 -1
- package/package.json +6 -5
- package/dist/chunk-X3G6QSCF.js.map +0 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
import { OpensteerEngineFactory, OpensteerSessionRuntime as OpensteerSessionRuntime$1 } from '@opensteer/runtime-core';
|
|
2
|
+
export { OpensteerEngineFactory, OpensteerEngineFactoryOptions, OpensteerRuntimeWorkspace } from '@opensteer/runtime-core';
|
|
3
|
+
|
|
1
4
|
type JsonPrimitive$1 = boolean | number | string | null;
|
|
2
5
|
type JsonValue$1 = JsonPrimitive$1 | JsonObject$1 | JsonArray$1;
|
|
3
6
|
interface JsonObject$1 {
|
|
@@ -5,6 +8,9 @@ interface JsonObject$1 {
|
|
|
5
8
|
}
|
|
6
9
|
type JsonArray$1 = readonly JsonValue$1[];
|
|
7
10
|
|
|
11
|
+
declare const OPENSTEER_PROTOCOL_VERSION: string;
|
|
12
|
+
type OpensteerProtocolVersion = typeof OPENSTEER_PROTOCOL_VERSION;
|
|
13
|
+
|
|
8
14
|
interface ExternalBinaryLocation {
|
|
9
15
|
readonly delivery: "external";
|
|
10
16
|
readonly uri: string;
|
|
@@ -1304,6 +1310,184 @@ interface ScreenshotArtifact {
|
|
|
1304
1310
|
declare const opensteerCapabilities: readonly ["sessions.manage", "pages.manage", "pages.navigate", "input.pointer", "input.keyboard", "input.touch", "artifacts.screenshot", "execution.pause", "execution.resume", "execution.freeze", "inspect.pages", "inspect.frames", "inspect.html", "inspect.domSnapshot", "inspect.text", "inspect.attributes", "inspect.hitTest", "inspect.viewportMetrics", "inspect.network", "inspect.networkBodies", "inspect.cookies", "inspect.localStorage", "inspect.sessionStorage", "inspect.indexedDb", "transport.sessionHttp", "instrumentation.initScripts", "instrumentation.routing", "events.pageLifecycle", "events.dialog", "events.download", "events.chooser", "events.worker", "events.console", "events.pageError", "events.websocket", "events.eventStream", "events.executionState", "surface.rest", "surface.mcp"];
|
|
1305
1311
|
type OpensteerCapability = (typeof opensteerCapabilities)[number];
|
|
1306
1312
|
|
|
1313
|
+
declare const cloudSessionStatuses: readonly ["provisioning", "active", "closing", "closed", "failed"];
|
|
1314
|
+
type CloudSessionStatus = (typeof cloudSessionStatuses)[number];
|
|
1315
|
+
declare const cloudSessionSourceTypes: readonly ["agent-thread", "agent-run", "project-agent-run", "local-cloud", "manual"];
|
|
1316
|
+
type CloudSessionSourceType = (typeof cloudSessionSourceTypes)[number];
|
|
1317
|
+
type CloudSessionVisibilityScope = "team" | "owner";
|
|
1318
|
+
type CloudProxyMode = "disabled" | "optional" | "required";
|
|
1319
|
+
type CloudProxyProtocol = "http" | "https" | "socks5";
|
|
1320
|
+
type CloudFingerprintMode = "off" | "auto";
|
|
1321
|
+
type BrowserProfileStatus = "active" | "archived" | "error";
|
|
1322
|
+
type BrowserProfileProxyPolicy = "strict_sticky";
|
|
1323
|
+
type BrowserProfileArchiveFormat = "tar.gz";
|
|
1324
|
+
type PortableBrowserProfileSnapshotFormat = "portable-cookies-v1+json.gz";
|
|
1325
|
+
type PortableBrowserFamily = "chromium";
|
|
1326
|
+
type BrowserProfileImportStatus = "awaiting_upload" | "queued" | "processing" | "ready" | "failed";
|
|
1327
|
+
interface PortableBrowserProfileSnapshotSource {
|
|
1328
|
+
readonly browserFamily: PortableBrowserFamily;
|
|
1329
|
+
readonly browserName?: string;
|
|
1330
|
+
readonly browserMajor?: string;
|
|
1331
|
+
readonly browserBrand?: string;
|
|
1332
|
+
readonly captureMethod?: string;
|
|
1333
|
+
readonly platform?: string;
|
|
1334
|
+
readonly capturedAt: number;
|
|
1335
|
+
}
|
|
1336
|
+
interface BrowserProfileImportSnapshotSummary {
|
|
1337
|
+
readonly source: PortableBrowserProfileSnapshotSource;
|
|
1338
|
+
readonly cookieCount: number;
|
|
1339
|
+
readonly domainCount: number;
|
|
1340
|
+
}
|
|
1341
|
+
interface CloudViewport {
|
|
1342
|
+
readonly width: number;
|
|
1343
|
+
readonly height: number;
|
|
1344
|
+
}
|
|
1345
|
+
interface CloudGeolocation {
|
|
1346
|
+
readonly latitude: number;
|
|
1347
|
+
readonly longitude: number;
|
|
1348
|
+
readonly accuracy?: number;
|
|
1349
|
+
}
|
|
1350
|
+
interface CloudBrowserContextConfig {
|
|
1351
|
+
readonly viewport?: CloudViewport;
|
|
1352
|
+
readonly locale?: string;
|
|
1353
|
+
readonly timezoneId?: string;
|
|
1354
|
+
readonly geolocation?: CloudGeolocation;
|
|
1355
|
+
readonly colorScheme?: "light" | "dark" | "no-preference";
|
|
1356
|
+
readonly userAgent?: string;
|
|
1357
|
+
readonly javaScriptEnabled?: boolean;
|
|
1358
|
+
readonly ignoreHTTPSErrors?: boolean;
|
|
1359
|
+
}
|
|
1360
|
+
interface CloudBrowserExtensionConfig {
|
|
1361
|
+
readonly includeDefaults?: boolean;
|
|
1362
|
+
readonly extensionKeys?: readonly string[];
|
|
1363
|
+
}
|
|
1364
|
+
interface CloudBrowserLaunchConfig {
|
|
1365
|
+
readonly headless?: boolean;
|
|
1366
|
+
readonly context?: CloudBrowserContextConfig;
|
|
1367
|
+
readonly chromeArgs?: readonly string[];
|
|
1368
|
+
readonly extensions?: CloudBrowserExtensionConfig;
|
|
1369
|
+
}
|
|
1370
|
+
interface CloudProxyPreference {
|
|
1371
|
+
readonly mode?: CloudProxyMode;
|
|
1372
|
+
readonly countryCode?: string;
|
|
1373
|
+
readonly region?: string;
|
|
1374
|
+
readonly city?: string;
|
|
1375
|
+
readonly proxyId?: string;
|
|
1376
|
+
}
|
|
1377
|
+
interface CloudFingerprintPreference {
|
|
1378
|
+
readonly mode?: CloudFingerprintMode;
|
|
1379
|
+
readonly locales?: readonly string[];
|
|
1380
|
+
readonly minWidth?: number;
|
|
1381
|
+
readonly maxWidth?: number;
|
|
1382
|
+
readonly minHeight?: number;
|
|
1383
|
+
readonly maxHeight?: number;
|
|
1384
|
+
readonly slim?: boolean;
|
|
1385
|
+
}
|
|
1386
|
+
interface CloudBrowserProfilePreference {
|
|
1387
|
+
readonly profileId: string;
|
|
1388
|
+
readonly reuseIfActive?: boolean;
|
|
1389
|
+
}
|
|
1390
|
+
type CloudBrowserProfileLaunchPreference = CloudBrowserProfilePreference;
|
|
1391
|
+
interface CloudSessionLaunchConfig {
|
|
1392
|
+
readonly browser?: CloudBrowserLaunchConfig;
|
|
1393
|
+
readonly proxy?: CloudProxyPreference;
|
|
1394
|
+
readonly fingerprint?: CloudFingerprintPreference;
|
|
1395
|
+
readonly browserProfile?: CloudBrowserProfilePreference;
|
|
1396
|
+
}
|
|
1397
|
+
interface CloudSessionSummary {
|
|
1398
|
+
readonly sessionId: string;
|
|
1399
|
+
readonly workspaceId: string;
|
|
1400
|
+
readonly state: CloudSessionStatus;
|
|
1401
|
+
readonly createdAt: number;
|
|
1402
|
+
readonly sourceType: CloudSessionSourceType;
|
|
1403
|
+
readonly sourceRef?: string;
|
|
1404
|
+
readonly label?: string;
|
|
1405
|
+
}
|
|
1406
|
+
interface CloudSelectorCacheImportEntry {
|
|
1407
|
+
readonly namespace: string;
|
|
1408
|
+
readonly siteOrigin: string;
|
|
1409
|
+
readonly method: string;
|
|
1410
|
+
readonly descriptionHash: string;
|
|
1411
|
+
readonly path: unknown;
|
|
1412
|
+
readonly schemaHash?: string;
|
|
1413
|
+
readonly createdAt: number;
|
|
1414
|
+
readonly updatedAt: number;
|
|
1415
|
+
}
|
|
1416
|
+
interface CloudSelectorCacheImportRequest {
|
|
1417
|
+
readonly entries: readonly CloudSelectorCacheImportEntry[];
|
|
1418
|
+
}
|
|
1419
|
+
interface CloudSelectorCacheImportResponse {
|
|
1420
|
+
readonly imported: number;
|
|
1421
|
+
readonly inserted: number;
|
|
1422
|
+
readonly updated: number;
|
|
1423
|
+
readonly skipped: number;
|
|
1424
|
+
}
|
|
1425
|
+
interface BrowserProfileDescriptor {
|
|
1426
|
+
readonly profileId: string;
|
|
1427
|
+
readonly teamId: string;
|
|
1428
|
+
readonly ownerUserId: string;
|
|
1429
|
+
readonly name: string;
|
|
1430
|
+
readonly status: BrowserProfileStatus;
|
|
1431
|
+
readonly proxyPolicy: BrowserProfileProxyPolicy;
|
|
1432
|
+
readonly stickyProxyId?: string;
|
|
1433
|
+
readonly proxyCountryCode?: string;
|
|
1434
|
+
readonly proxyRegion?: string;
|
|
1435
|
+
readonly proxyCity?: string;
|
|
1436
|
+
readonly fingerprintMode: CloudFingerprintMode;
|
|
1437
|
+
readonly fingerprintHash?: string;
|
|
1438
|
+
readonly activeSessionId?: string;
|
|
1439
|
+
readonly lastSessionId?: string;
|
|
1440
|
+
readonly lastLaunchedAt?: number;
|
|
1441
|
+
readonly latestRevision?: number;
|
|
1442
|
+
readonly latestStorageId?: string;
|
|
1443
|
+
readonly latestSizeBytes?: number;
|
|
1444
|
+
readonly latestArchiveSha256?: string;
|
|
1445
|
+
readonly latestArchiveFormat?: BrowserProfileArchiveFormat;
|
|
1446
|
+
readonly createdAt: number;
|
|
1447
|
+
readonly updatedAt: number;
|
|
1448
|
+
readonly lastError?: string;
|
|
1449
|
+
}
|
|
1450
|
+
interface BrowserProfileListResponse {
|
|
1451
|
+
readonly profiles: readonly BrowserProfileDescriptor[];
|
|
1452
|
+
readonly nextCursor?: string;
|
|
1453
|
+
}
|
|
1454
|
+
interface BrowserProfileCreateRequest {
|
|
1455
|
+
readonly name: string;
|
|
1456
|
+
readonly proxy?: {
|
|
1457
|
+
readonly proxyId?: string;
|
|
1458
|
+
readonly countryCode?: string;
|
|
1459
|
+
readonly region?: string;
|
|
1460
|
+
readonly city?: string;
|
|
1461
|
+
};
|
|
1462
|
+
readonly fingerprint?: {
|
|
1463
|
+
readonly mode?: CloudFingerprintMode;
|
|
1464
|
+
};
|
|
1465
|
+
}
|
|
1466
|
+
interface BrowserProfileImportCreateRequest {
|
|
1467
|
+
readonly profileId: string;
|
|
1468
|
+
}
|
|
1469
|
+
interface BrowserProfileImportCreateResponse {
|
|
1470
|
+
readonly importId: string;
|
|
1471
|
+
readonly profileId: string;
|
|
1472
|
+
readonly status: BrowserProfileImportStatus;
|
|
1473
|
+
readonly uploadUrl: string;
|
|
1474
|
+
readonly uploadMethod: "PUT";
|
|
1475
|
+
readonly uploadFormat: PortableBrowserProfileSnapshotFormat;
|
|
1476
|
+
readonly maxUploadBytes: number;
|
|
1477
|
+
}
|
|
1478
|
+
interface BrowserProfileImportDescriptor {
|
|
1479
|
+
readonly importId: string;
|
|
1480
|
+
readonly profileId: string;
|
|
1481
|
+
readonly status: BrowserProfileImportStatus;
|
|
1482
|
+
readonly uploadFormat: PortableBrowserProfileSnapshotFormat;
|
|
1483
|
+
readonly storageId?: string;
|
|
1484
|
+
readonly revision?: number;
|
|
1485
|
+
readonly error?: string;
|
|
1486
|
+
readonly snapshotSummary?: BrowserProfileImportSnapshotSummary;
|
|
1487
|
+
readonly createdAt: number;
|
|
1488
|
+
readonly updatedAt: number;
|
|
1489
|
+
}
|
|
1490
|
+
|
|
1307
1491
|
declare const opensteerErrorCodes: readonly ["invalid-request", "invalid-argument", "invalid-ref", "unsupported-version", "unsupported-operation", "unsupported-capability", "not-found", "stale-node-ref", "session-closed", "page-closed", "frame-detached", "timeout", "navigation-failed", "permission-denied", "conflict", "profile-unavailable", "auth-failure", "auth-recovery-failed", "browser-required", "rate-limited", "operation-failed", "internal"];
|
|
1308
1492
|
type OpensteerErrorCode = (typeof opensteerErrorCodes)[number];
|
|
1309
1493
|
interface OpensteerError {
|
|
@@ -1728,6 +1912,54 @@ interface OpensteerComputerExecuteOutput {
|
|
|
1728
1912
|
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.save", "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"];
|
|
1729
1913
|
type OpensteerSemanticOperationName = (typeof opensteerSemanticOperationNames)[number];
|
|
1730
1914
|
|
|
1915
|
+
declare const opensteerSessionGrantKinds: readonly ["automation", "view", "cdp"];
|
|
1916
|
+
type OpensteerSessionGrantKind = (typeof opensteerSessionGrantKinds)[number];
|
|
1917
|
+
type OpensteerProviderKind = "local" | "cloud";
|
|
1918
|
+
type OpensteerSessionOwnership = "owned" | "attached" | "managed";
|
|
1919
|
+
interface OpensteerProviderDescriptor {
|
|
1920
|
+
readonly kind: OpensteerProviderKind;
|
|
1921
|
+
readonly ownership: OpensteerSessionOwnership;
|
|
1922
|
+
readonly engine?: string;
|
|
1923
|
+
readonly baseUrl?: string;
|
|
1924
|
+
readonly region?: string;
|
|
1925
|
+
}
|
|
1926
|
+
interface OpensteerSessionCapabilities {
|
|
1927
|
+
readonly semanticOperations: readonly OpensteerSemanticOperationName[];
|
|
1928
|
+
readonly protocolCapabilities?: readonly OpensteerCapability[];
|
|
1929
|
+
readonly sessionGrants?: readonly OpensteerSessionGrantKind[];
|
|
1930
|
+
readonly instrumentation: {
|
|
1931
|
+
readonly route: boolean;
|
|
1932
|
+
readonly interceptScript: boolean;
|
|
1933
|
+
readonly networkStream: boolean;
|
|
1934
|
+
};
|
|
1935
|
+
}
|
|
1936
|
+
interface OpensteerSessionGrant {
|
|
1937
|
+
readonly kind: OpensteerSessionGrantKind;
|
|
1938
|
+
readonly wsUrl: string;
|
|
1939
|
+
readonly token: string;
|
|
1940
|
+
readonly expiresAt: number;
|
|
1941
|
+
}
|
|
1942
|
+
interface OpensteerSessionAccessGrantResponse {
|
|
1943
|
+
readonly sessionId: string;
|
|
1944
|
+
readonly expiresAt: number;
|
|
1945
|
+
readonly grants: Partial<Record<OpensteerSessionGrantKind, OpensteerSessionGrant>>;
|
|
1946
|
+
}
|
|
1947
|
+
interface OpensteerRuntimeVersionInfo {
|
|
1948
|
+
readonly protocolVersion: OpensteerProtocolVersion;
|
|
1949
|
+
readonly runtimeCoreVersion?: string;
|
|
1950
|
+
readonly packages?: Readonly<Record<string, string>>;
|
|
1951
|
+
}
|
|
1952
|
+
interface OpensteerSessionInfo {
|
|
1953
|
+
readonly provider: OpensteerProviderDescriptor;
|
|
1954
|
+
readonly workspace?: string;
|
|
1955
|
+
readonly sessionId?: string;
|
|
1956
|
+
readonly activePageRef?: PageRef;
|
|
1957
|
+
readonly reconnectable: boolean;
|
|
1958
|
+
readonly capabilities: OpensteerSessionCapabilities;
|
|
1959
|
+
readonly grants?: readonly OpensteerSessionGrant[];
|
|
1960
|
+
readonly runtime?: OpensteerRuntimeVersionInfo;
|
|
1961
|
+
}
|
|
1962
|
+
|
|
1731
1963
|
type NetworkDiffFieldKind = "added" | "removed" | "changed" | "unchanged";
|
|
1732
1964
|
interface NetworkDiffEntropy {
|
|
1733
1965
|
readonly left?: number;
|
|
@@ -3075,6 +3307,7 @@ interface FilesystemOpensteerWorkspace {
|
|
|
3075
3307
|
readonly browserManifestPath: string;
|
|
3076
3308
|
readonly browserUserDataDir: string;
|
|
3077
3309
|
readonly livePath: string;
|
|
3310
|
+
readonly liveSessionPath: string;
|
|
3078
3311
|
readonly liveBrowserPath: string;
|
|
3079
3312
|
readonly artifactsPath: string;
|
|
3080
3313
|
readonly tracesPath: string;
|
|
@@ -3483,71 +3716,10 @@ declare class OpensteerBrowserManager {
|
|
|
3483
3716
|
private resolveLivePersistentEngineName;
|
|
3484
3717
|
private assertPersistentBrowserClosed;
|
|
3485
3718
|
private closePersistentBrowser;
|
|
3719
|
+
private writeLivePersistentBrowser;
|
|
3486
3720
|
private requirePersistentMode;
|
|
3487
3721
|
}
|
|
3488
3722
|
|
|
3489
|
-
interface OpensteerRouteRequest {
|
|
3490
|
-
readonly url: string;
|
|
3491
|
-
readonly method: string;
|
|
3492
|
-
readonly headers: readonly HeaderEntry[];
|
|
3493
|
-
readonly resourceType: NetworkRecord$1["resourceType"];
|
|
3494
|
-
readonly pageRef?: PageRef;
|
|
3495
|
-
readonly postData?: BodyPayload$1;
|
|
3496
|
-
}
|
|
3497
|
-
interface OpensteerFetchedRouteResponse {
|
|
3498
|
-
readonly url: string;
|
|
3499
|
-
readonly status: number;
|
|
3500
|
-
readonly statusText: string;
|
|
3501
|
-
readonly headers: readonly HeaderEntry[];
|
|
3502
|
-
readonly body?: BodyPayload$1;
|
|
3503
|
-
readonly redirected: boolean;
|
|
3504
|
-
}
|
|
3505
|
-
type OpensteerRouteHandlerResult = {
|
|
3506
|
-
readonly kind: "continue";
|
|
3507
|
-
} | {
|
|
3508
|
-
readonly kind: "fulfill";
|
|
3509
|
-
readonly status?: number;
|
|
3510
|
-
readonly headers?: readonly HeaderEntry[];
|
|
3511
|
-
readonly body?: string | Uint8Array;
|
|
3512
|
-
readonly contentType?: string;
|
|
3513
|
-
} | {
|
|
3514
|
-
readonly kind: "abort";
|
|
3515
|
-
readonly errorCode?: string;
|
|
3516
|
-
};
|
|
3517
|
-
interface OpensteerRouteOptions {
|
|
3518
|
-
readonly pageRef?: PageRef;
|
|
3519
|
-
readonly urlPattern: string;
|
|
3520
|
-
readonly resourceTypes?: readonly NetworkRecord$1["resourceType"][];
|
|
3521
|
-
readonly times?: number;
|
|
3522
|
-
readonly handler: (input: {
|
|
3523
|
-
readonly request: OpensteerRouteRequest;
|
|
3524
|
-
fetchOriginal(): Promise<OpensteerFetchedRouteResponse>;
|
|
3525
|
-
}) => OpensteerRouteHandlerResult | Promise<OpensteerRouteHandlerResult>;
|
|
3526
|
-
}
|
|
3527
|
-
interface OpensteerRouteRegistration {
|
|
3528
|
-
readonly routeId: string;
|
|
3529
|
-
readonly sessionRef: SessionRef;
|
|
3530
|
-
readonly pageRef?: PageRef;
|
|
3531
|
-
readonly urlPattern: string;
|
|
3532
|
-
}
|
|
3533
|
-
interface OpensteerInterceptScriptOptions {
|
|
3534
|
-
readonly pageRef?: PageRef;
|
|
3535
|
-
readonly urlPattern: string;
|
|
3536
|
-
readonly times?: number;
|
|
3537
|
-
readonly handler: (input: {
|
|
3538
|
-
readonly url: string;
|
|
3539
|
-
readonly content: string;
|
|
3540
|
-
readonly headers: readonly HeaderEntry[];
|
|
3541
|
-
readonly status: number;
|
|
3542
|
-
}) => string | Promise<string>;
|
|
3543
|
-
}
|
|
3544
|
-
|
|
3545
|
-
interface OpensteerEngineFactoryOptions {
|
|
3546
|
-
readonly browser?: OpensteerBrowserOptions;
|
|
3547
|
-
readonly launch?: OpensteerBrowserLaunchOptions;
|
|
3548
|
-
readonly context?: OpensteerBrowserContextOptions;
|
|
3549
|
-
}
|
|
3550
|
-
type OpensteerEngineFactory = (options: OpensteerEngineFactoryOptions) => Promise<BrowserCoreEngine>;
|
|
3551
3723
|
interface OpensteerRuntimeOptions {
|
|
3552
3724
|
readonly workspace?: string;
|
|
3553
3725
|
readonly rootDir?: string;
|
|
@@ -3561,383 +3733,24 @@ interface OpensteerRuntimeOptions {
|
|
|
3561
3733
|
readonly policy?: OpensteerPolicy;
|
|
3562
3734
|
readonly cleanupRootOnClose?: boolean;
|
|
3563
3735
|
}
|
|
3564
|
-
interface
|
|
3565
|
-
readonly signal?: AbortSignal;
|
|
3566
|
-
}
|
|
3567
|
-
declare class OpensteerRuntime {
|
|
3568
|
-
readonly workspace: string;
|
|
3569
|
-
readonly rootPath: string;
|
|
3570
|
-
private readonly publicWorkspace;
|
|
3571
|
-
private readonly configuredBrowser;
|
|
3572
|
-
private readonly configuredLaunch;
|
|
3573
|
-
private readonly configuredContext;
|
|
3574
|
-
private readonly configuredEngineName;
|
|
3575
|
-
private readonly injectedEngine;
|
|
3576
|
-
private readonly engineFactory;
|
|
3577
|
-
private readonly policy;
|
|
3578
|
-
private readonly cleanupRootOnClose;
|
|
3579
|
-
private root;
|
|
3580
|
-
private engine;
|
|
3581
|
-
private dom;
|
|
3582
|
-
private computer;
|
|
3583
|
-
private readonly networkJournal;
|
|
3584
|
-
private extractionDescriptors;
|
|
3585
|
-
private sessionRef;
|
|
3586
|
-
private pageRef;
|
|
3587
|
-
private runId;
|
|
3588
|
-
private latestSnapshot;
|
|
3589
|
-
private readonly backgroundNetworkPersistence;
|
|
3590
|
-
private readonly cookieJars;
|
|
3591
|
-
private readonly recipeCache;
|
|
3592
|
-
private ownsEngine;
|
|
3593
|
-
constructor(options?: OpensteerRuntimeOptions);
|
|
3594
|
-
open(input?: OpensteerOpenInput, options?: RuntimeOperationOptions): Promise<OpensteerOpenOutput>;
|
|
3595
|
-
listPages(input?: OpensteerPageListInput, options?: RuntimeOperationOptions): Promise<OpensteerPageListOutput>;
|
|
3596
|
-
newPage(input?: OpensteerPageNewInput, options?: RuntimeOperationOptions): Promise<OpensteerPageNewOutput>;
|
|
3597
|
-
activatePage(input: OpensteerPageActivateInput, options?: RuntimeOperationOptions): Promise<OpensteerPageActivateOutput>;
|
|
3598
|
-
closePage(input?: OpensteerPageCloseInput, options?: RuntimeOperationOptions): Promise<OpensteerPageCloseOutput>;
|
|
3599
|
-
goto(input: OpensteerPageGotoInput, options?: RuntimeOperationOptions): Promise<OpensteerPageGotoOutput>;
|
|
3600
|
-
evaluate(input: OpensteerPageEvaluateInput, options?: RuntimeOperationOptions): Promise<OpensteerPageEvaluateOutput>;
|
|
3601
|
-
addInitScript(input: OpensteerAddInitScriptInput, options?: RuntimeOperationOptions): Promise<OpensteerAddInitScriptOutput>;
|
|
3602
|
-
snapshot(input?: OpensteerPageSnapshotInput, options?: RuntimeOperationOptions): Promise<OpensteerPageSnapshotOutput>;
|
|
3603
|
-
click(input: OpensteerDomClickInput, options?: RuntimeOperationOptions): Promise<OpensteerActionResult>;
|
|
3604
|
-
hover(input: OpensteerDomHoverInput, options?: RuntimeOperationOptions): Promise<OpensteerActionResult>;
|
|
3605
|
-
input(input: OpensteerDomInputInput, options?: RuntimeOperationOptions): Promise<OpensteerActionResult>;
|
|
3606
|
-
scroll(input: OpensteerDomScrollInput, options?: RuntimeOperationOptions): Promise<OpensteerActionResult>;
|
|
3607
|
-
extract(input: OpensteerDomExtractInput, options?: RuntimeOperationOptions): Promise<OpensteerDomExtractOutput>;
|
|
3608
|
-
queryNetwork(input?: OpensteerNetworkQueryInput, options?: RuntimeOperationOptions): Promise<OpensteerNetworkQueryOutput>;
|
|
3609
|
-
saveNetwork(input: OpensteerNetworkSaveInput, options?: RuntimeOperationOptions): Promise<OpensteerNetworkSaveOutput>;
|
|
3610
|
-
clearNetwork(input?: OpensteerNetworkClearInput, options?: RuntimeOperationOptions): Promise<OpensteerNetworkClearOutput>;
|
|
3611
|
-
captureScripts(input?: OpensteerCaptureScriptsInput, options?: RuntimeOperationOptions): Promise<OpensteerCaptureScriptsOutput>;
|
|
3612
|
-
minimizeNetwork(input: OpensteerNetworkMinimizeInput, options?: RuntimeOperationOptions): Promise<OpensteerNetworkMinimizeOutput>;
|
|
3613
|
-
diffNetwork(input: OpensteerNetworkDiffInput, options?: RuntimeOperationOptions): Promise<OpensteerNetworkDiffOutput>;
|
|
3614
|
-
readArtifact(input: OpensteerArtifactReadInput, options?: RuntimeOperationOptions): Promise<OpensteerArtifactReadOutput>;
|
|
3615
|
-
probeNetwork(input: OpensteerTransportProbeInput, options?: RuntimeOperationOptions): Promise<OpensteerTransportProbeOutput>;
|
|
3616
|
-
discoverReverse(input: OpensteerReverseDiscoverInput, options?: RuntimeOperationOptions): Promise<OpensteerReverseDiscoverOutput>;
|
|
3617
|
-
queryReverse(input: OpensteerReverseQueryInput, options?: RuntimeOperationOptions): Promise<OpensteerReverseQueryOutput>;
|
|
3618
|
-
createReversePackage(input: OpensteerReversePackageCreateInput, options?: RuntimeOperationOptions): Promise<OpensteerReversePackageCreateOutput>;
|
|
3619
|
-
runReversePackage(input: OpensteerReversePackageRunInput, options?: RuntimeOperationOptions): Promise<OpensteerReversePackageRunOutput>;
|
|
3620
|
-
exportReverse(input: OpensteerReverseExportInput, options?: RuntimeOperationOptions): Promise<OpensteerReverseExportOutput>;
|
|
3621
|
-
getReverseReport(input: OpensteerReverseReportInput, options?: RuntimeOperationOptions): Promise<OpensteerReverseReportOutput>;
|
|
3622
|
-
getReversePackage(input: OpensteerReversePackageGetInput, options?: RuntimeOperationOptions): Promise<OpensteerReversePackageGetOutput>;
|
|
3623
|
-
listReversePackages(input?: OpensteerReversePackageListInput, options?: RuntimeOperationOptions): Promise<OpensteerReversePackageListOutput>;
|
|
3624
|
-
patchReversePackage(input: OpensteerReversePackagePatchInput, options?: RuntimeOperationOptions): Promise<OpensteerReversePackagePatchOutput>;
|
|
3625
|
-
private captureReverseCaseInternal;
|
|
3626
|
-
private analyzeReverseCaseInternal;
|
|
3627
|
-
private queryReverseCaseInternal;
|
|
3628
|
-
private resolveReversePackageSource;
|
|
3629
|
-
private replayReversePackageInternal;
|
|
3630
|
-
private executeReversePackageWorkflow;
|
|
3631
|
-
private executeReversePackageOperationStep;
|
|
3632
|
-
private resolveReversePackageResolverValues;
|
|
3633
|
-
private resolveReversePackageResolverValue;
|
|
3634
|
-
private resolveReverseValueTemplate;
|
|
3635
|
-
private resolveReverseValueReference;
|
|
3636
|
-
private waitForReversePackageRecord;
|
|
3637
|
-
private buildReverseTransportOperationInput;
|
|
3638
|
-
private writePortableReverseRequestPlan;
|
|
3639
|
-
private writeReversePackage;
|
|
3640
|
-
private buildReversePackageDraft;
|
|
3641
|
-
private writeReverseReportRecord;
|
|
3642
|
-
captureInteraction(input: OpensteerInteractionCaptureInput, options?: RuntimeOperationOptions): Promise<OpensteerInteractionCaptureOutput>;
|
|
3643
|
-
getInteraction(input: OpensteerInteractionGetInput, options?: RuntimeOperationOptions): Promise<OpensteerInteractionGetOutput>;
|
|
3644
|
-
private runInteractionCaptureScript;
|
|
3645
|
-
private runInteractionCaptureSteps;
|
|
3646
|
-
diffInteraction(input: OpensteerInteractionDiffInput, options?: RuntimeOperationOptions): Promise<OpensteerInteractionDiffOutput>;
|
|
3647
|
-
replayInteraction(input: OpensteerInteractionReplayInput, options?: RuntimeOperationOptions): Promise<OpensteerInteractionReplayOutput>;
|
|
3648
|
-
beautifyScript(input: OpensteerScriptBeautifyInput, options?: RuntimeOperationOptions): Promise<OpensteerScriptBeautifyOutput>;
|
|
3649
|
-
deobfuscateScript(input: OpensteerScriptDeobfuscateInput, options?: RuntimeOperationOptions): Promise<OpensteerScriptDeobfuscateOutput>;
|
|
3650
|
-
sandboxScript(input: OpensteerScriptSandboxInput, options?: RuntimeOperationOptions): Promise<OpensteerScriptSandboxOutput>;
|
|
3651
|
-
solveCaptcha(input: OpensteerCaptchaSolveInput, options?: RuntimeOperationOptions): Promise<OpensteerCaptchaSolveOutput>;
|
|
3652
|
-
inferRequestPlan(input: OpensteerInferRequestPlanInput, options?: RuntimeOperationOptions): Promise<RequestPlanRecord>;
|
|
3653
|
-
writeRequestPlan(input: OpensteerWriteRequestPlanInput, options?: RuntimeOperationOptions): Promise<RequestPlanRecord>;
|
|
3654
|
-
getRequestPlan(input: OpensteerGetRequestPlanInput, options?: RuntimeOperationOptions): Promise<RequestPlanRecord>;
|
|
3655
|
-
listRequestPlans(input?: OpensteerListRequestPlansInput, options?: RuntimeOperationOptions): Promise<OpensteerListRequestPlansOutput>;
|
|
3656
|
-
writeAuthRecipe(input: OpensteerWriteAuthRecipeInput, options?: RuntimeOperationOptions): Promise<AuthRecipeRecord>;
|
|
3657
|
-
writeRecipe(input: OpensteerWriteRecipeInput, options?: RuntimeOperationOptions): Promise<RecipeRecord>;
|
|
3658
|
-
getAuthRecipe(input: OpensteerGetAuthRecipeInput, options?: RuntimeOperationOptions): Promise<AuthRecipeRecord>;
|
|
3659
|
-
getRecipe(input: OpensteerGetRecipeInput, options?: RuntimeOperationOptions): Promise<RecipeRecord>;
|
|
3660
|
-
listAuthRecipes(input?: OpensteerListAuthRecipesInput, options?: RuntimeOperationOptions): Promise<OpensteerListAuthRecipesOutput>;
|
|
3661
|
-
listRecipes(input?: OpensteerListRecipesInput, options?: RuntimeOperationOptions): Promise<OpensteerListRecipesOutput>;
|
|
3662
|
-
getCookies(input?: {
|
|
3663
|
-
readonly urls?: readonly string[];
|
|
3664
|
-
}, options?: RuntimeOperationOptions): Promise<readonly CookieRecord[]>;
|
|
3665
|
-
getStorageSnapshot(input?: {
|
|
3666
|
-
readonly includeSessionStorage?: boolean;
|
|
3667
|
-
readonly includeIndexedDb?: boolean;
|
|
3668
|
-
}, options?: RuntimeOperationOptions): Promise<StorageSnapshot>;
|
|
3669
|
-
runAuthRecipe(input: OpensteerRunAuthRecipeInput, options?: RuntimeOperationOptions): Promise<OpensteerRunAuthRecipeOutput>;
|
|
3670
|
-
runRecipe(input: OpensteerRunRecipeInput, options?: RuntimeOperationOptions): Promise<OpensteerRunRecipeOutput>;
|
|
3671
|
-
rawRequest(input: OpensteerRawRequestInput, options?: RuntimeOperationOptions): Promise<OpensteerRawRequestOutput>;
|
|
3672
|
-
route(input: OpensteerRouteOptions): Promise<OpensteerRouteRegistration>;
|
|
3673
|
-
interceptScript(input: OpensteerInterceptScriptOptions): Promise<OpensteerRouteRegistration>;
|
|
3674
|
-
request(input: OpensteerRequestExecuteInput, options?: RuntimeOperationOptions): Promise<OpensteerRequestExecuteOutput>;
|
|
3675
|
-
computerExecute(input: OpensteerComputerExecuteInput, options?: RuntimeOperationOptions): Promise<OpensteerComputerExecuteOutput>;
|
|
3676
|
-
close(options?: RuntimeOperationOptions): Promise<OpensteerSessionCloseOutput>;
|
|
3677
|
-
disconnect(): Promise<void>;
|
|
3678
|
-
isOpen(): boolean;
|
|
3679
|
-
private runDomAction;
|
|
3680
|
-
private prepareDomTarget;
|
|
3681
|
-
private queryLiveNetwork;
|
|
3682
|
-
private captureScriptsInternal;
|
|
3683
|
-
private materializeCapturedScript;
|
|
3684
|
-
private beginMutationCapture;
|
|
3685
|
-
private completeMutationCapture;
|
|
3686
|
-
private resolveNetworkRecordByRecordId;
|
|
3687
|
-
private resolveCurrentStateSource;
|
|
3688
|
-
private resolveReverseCaseById;
|
|
3689
|
-
private tryResolveReverseCaseById;
|
|
3690
|
-
private resolveReversePackageById;
|
|
3691
|
-
private resolveReverseReportById;
|
|
3692
|
-
private resolveReverseReportByPackageId;
|
|
3693
|
-
private resolveReverseReportByCaseId;
|
|
3694
|
-
private resolveInteractionTraceById;
|
|
3695
|
-
private captureReverseStateSnapshot;
|
|
3696
|
-
private restoreReverseStateSnapshots;
|
|
3697
|
-
private waitForObservedReplayRecord;
|
|
3698
|
-
private waitForMatchingReplayRecord;
|
|
3699
|
-
private isObservedReplayRecordSettled;
|
|
3700
|
-
private replayInteractionTraceById;
|
|
3701
|
-
private readLiveNetworkRecords;
|
|
3702
|
-
private readLiveRequestIds;
|
|
3703
|
-
private observeLiveTransportDelta;
|
|
3704
|
-
private executeTransportRequestWithJournal;
|
|
3705
|
-
private currentBinding;
|
|
3706
|
-
private requireSessionRef;
|
|
3707
|
-
private ensureBrowserTransportBinding;
|
|
3708
|
-
private requireExistingBrowserBindingForRecovery;
|
|
3709
|
-
private executeRawTransportRequest;
|
|
3710
|
-
private executeDirectTransportRequestWithPersistence;
|
|
3711
|
-
private executePageHttpTransportRequestWithPersistence;
|
|
3712
|
-
private executeContextTransportRequestWithPersistence;
|
|
3713
|
-
private executeMatchedTlsTransportRequestWithPersistence;
|
|
3714
|
-
private executePageHttpTransportRequest;
|
|
3715
|
-
private executePageHttpEventStreamRequest;
|
|
3716
|
-
private executePageHttpWebSocketRequest;
|
|
3717
|
-
private executeContextTransportRequest;
|
|
3718
|
-
private executeMatchedTlsTransportRequest;
|
|
3719
|
-
private persistDirectTransportRecord;
|
|
3720
|
-
private executeResolvedRequestPlan;
|
|
3721
|
-
private executePlanTransportRequest;
|
|
3722
|
-
private touchRequestPlanFreshness;
|
|
3723
|
-
private executeConfiguredRecipeBinding;
|
|
3724
|
-
private clearRecipeBindingCache;
|
|
3725
|
-
private retryResolvedRequestPlan;
|
|
3726
|
-
private resolveRecipeRecord;
|
|
3727
|
-
private runResolvedRecipe;
|
|
3728
|
-
private executeRecipeRecord;
|
|
3729
|
-
private executeRecipeStep;
|
|
3730
|
-
private executeAuthRecipeHook;
|
|
3731
|
-
private executeRecipeRequest;
|
|
3732
|
-
private resolvePageHttpBinding;
|
|
3733
|
-
private syncBrowserCookiesToJar;
|
|
3734
|
-
private executeAnalysisTransportRequest;
|
|
3735
|
-
private resolveScriptTransformSource;
|
|
3736
|
-
private buildScriptTransformOutput;
|
|
3737
|
-
private applyCookieJarToTransportRequest;
|
|
3738
|
-
private updateCookieJarFromResponse;
|
|
3739
|
-
private readCookieValue;
|
|
3740
|
-
private readStorageValue;
|
|
3741
|
-
private scheduleBackgroundNetworkSaveByRequestIds;
|
|
3742
|
-
private flushBackgroundNetworkPersistence;
|
|
3743
|
-
private toDomTargetRef;
|
|
3744
|
-
private ensureRoot;
|
|
3745
|
-
private ensureEngine;
|
|
3746
|
-
private ensureSemantics;
|
|
3747
|
-
private ensurePageRef;
|
|
3748
|
-
private requireRoot;
|
|
3749
|
-
private requireEngine;
|
|
3750
|
-
private requireDom;
|
|
3751
|
-
private requireComputer;
|
|
3752
|
-
private requireExtractionDescriptors;
|
|
3753
|
-
private ensureLiveRuntimeBinding;
|
|
3754
|
-
private probeRuntimeBindingHealth;
|
|
3755
|
-
private readSessionState;
|
|
3756
|
-
private captureSnapshotArtifacts;
|
|
3757
|
-
private persistComputerArtifacts;
|
|
3758
|
-
private appendTrace;
|
|
3759
|
-
private cleanupSessionResources;
|
|
3760
|
-
private resetRuntimeState;
|
|
3761
|
-
private runWithOperationTimeout;
|
|
3762
|
-
private navigatePage;
|
|
3763
|
-
}
|
|
3764
|
-
|
|
3765
|
-
declare const cloudSessionStatuses: readonly ["provisioning", "active", "closing", "closed", "failed"];
|
|
3766
|
-
type CloudSessionStatus = (typeof cloudSessionStatuses)[number];
|
|
3767
|
-
declare const cloudSessionSourceTypes: readonly ["agent-thread", "agent-run", "project-agent-run", "local-cloud", "manual"];
|
|
3768
|
-
type CloudSessionSourceType = (typeof cloudSessionSourceTypes)[number];
|
|
3769
|
-
type CloudSessionVisibilityScope = "team" | "owner";
|
|
3770
|
-
type CloudProxyMode = "disabled" | "optional" | "required";
|
|
3771
|
-
type CloudProxyProtocol = "http" | "https" | "socks5";
|
|
3772
|
-
type CloudFingerprintMode = "off" | "auto";
|
|
3773
|
-
type BrowserProfileStatus = "active" | "archived" | "error";
|
|
3774
|
-
type BrowserProfileProxyPolicy = "strict_sticky";
|
|
3775
|
-
type BrowserProfileArchiveFormat = "tar.gz";
|
|
3776
|
-
type PortableBrowserProfileSnapshotFormat = "portable-cookies-v1+json.gz";
|
|
3777
|
-
type PortableBrowserFamily = "chromium";
|
|
3778
|
-
type BrowserProfileImportStatus = "awaiting_upload" | "queued" | "processing" | "ready" | "failed";
|
|
3779
|
-
interface PortableBrowserProfileSnapshotSource {
|
|
3780
|
-
readonly browserFamily: PortableBrowserFamily;
|
|
3781
|
-
readonly browserName?: string;
|
|
3782
|
-
readonly browserMajor?: string;
|
|
3783
|
-
readonly browserBrand?: string;
|
|
3784
|
-
readonly captureMethod?: string;
|
|
3785
|
-
readonly platform?: string;
|
|
3786
|
-
readonly capturedAt: number;
|
|
3787
|
-
}
|
|
3788
|
-
interface BrowserProfileImportSnapshotSummary {
|
|
3789
|
-
readonly source: PortableBrowserProfileSnapshotSource;
|
|
3790
|
-
readonly cookieCount: number;
|
|
3791
|
-
readonly domainCount: number;
|
|
3792
|
-
}
|
|
3793
|
-
interface CloudViewport {
|
|
3794
|
-
readonly width: number;
|
|
3795
|
-
readonly height: number;
|
|
3796
|
-
}
|
|
3797
|
-
interface CloudGeolocation {
|
|
3798
|
-
readonly latitude: number;
|
|
3799
|
-
readonly longitude: number;
|
|
3800
|
-
readonly accuracy?: number;
|
|
3801
|
-
}
|
|
3802
|
-
interface CloudBrowserContextConfig {
|
|
3803
|
-
readonly viewport?: CloudViewport;
|
|
3804
|
-
readonly locale?: string;
|
|
3805
|
-
readonly timezoneId?: string;
|
|
3806
|
-
readonly geolocation?: CloudGeolocation;
|
|
3807
|
-
readonly colorScheme?: "light" | "dark" | "no-preference";
|
|
3808
|
-
readonly userAgent?: string;
|
|
3809
|
-
readonly javaScriptEnabled?: boolean;
|
|
3810
|
-
readonly ignoreHTTPSErrors?: boolean;
|
|
3811
|
-
}
|
|
3812
|
-
interface CloudBrowserExtensionConfig {
|
|
3813
|
-
readonly includeDefaults?: boolean;
|
|
3814
|
-
readonly extensionKeys?: readonly string[];
|
|
3815
|
-
}
|
|
3816
|
-
interface CloudBrowserLaunchConfig {
|
|
3817
|
-
readonly headless?: boolean;
|
|
3818
|
-
readonly context?: CloudBrowserContextConfig;
|
|
3819
|
-
readonly chromeArgs?: readonly string[];
|
|
3820
|
-
readonly extensions?: CloudBrowserExtensionConfig;
|
|
3821
|
-
}
|
|
3822
|
-
interface CloudProxyPreference {
|
|
3823
|
-
readonly mode?: CloudProxyMode;
|
|
3824
|
-
readonly countryCode?: string;
|
|
3825
|
-
readonly region?: string;
|
|
3826
|
-
readonly city?: string;
|
|
3827
|
-
readonly proxyId?: string;
|
|
3828
|
-
}
|
|
3829
|
-
interface CloudFingerprintPreference {
|
|
3830
|
-
readonly mode?: CloudFingerprintMode;
|
|
3831
|
-
readonly locales?: readonly string[];
|
|
3832
|
-
readonly minWidth?: number;
|
|
3833
|
-
readonly maxWidth?: number;
|
|
3834
|
-
readonly minHeight?: number;
|
|
3835
|
-
readonly maxHeight?: number;
|
|
3836
|
-
readonly slim?: boolean;
|
|
3837
|
-
}
|
|
3838
|
-
interface CloudBrowserProfilePreference {
|
|
3839
|
-
readonly profileId: string;
|
|
3840
|
-
readonly reuseIfActive?: boolean;
|
|
3841
|
-
}
|
|
3842
|
-
type CloudBrowserProfileLaunchPreference = CloudBrowserProfilePreference;
|
|
3843
|
-
interface CloudSessionLaunchConfig {
|
|
3844
|
-
readonly browser?: CloudBrowserLaunchConfig;
|
|
3845
|
-
readonly proxy?: CloudProxyPreference;
|
|
3846
|
-
readonly fingerprint?: CloudFingerprintPreference;
|
|
3847
|
-
readonly browserProfile?: CloudBrowserProfilePreference;
|
|
3848
|
-
}
|
|
3849
|
-
interface CloudSessionSummary {
|
|
3850
|
-
readonly sessionId: string;
|
|
3851
|
-
readonly workspaceId: string;
|
|
3852
|
-
readonly state: CloudSessionStatus;
|
|
3853
|
-
readonly createdAt: number;
|
|
3854
|
-
readonly sourceType: CloudSessionSourceType;
|
|
3855
|
-
readonly sourceRef?: string;
|
|
3856
|
-
readonly label?: string;
|
|
3857
|
-
}
|
|
3858
|
-
interface CloudSelectorCacheImportEntry {
|
|
3859
|
-
readonly namespace: string;
|
|
3860
|
-
readonly siteOrigin: string;
|
|
3861
|
-
readonly method: string;
|
|
3862
|
-
readonly descriptionHash: string;
|
|
3863
|
-
readonly path: unknown;
|
|
3864
|
-
readonly schemaHash?: string;
|
|
3865
|
-
readonly createdAt: number;
|
|
3866
|
-
readonly updatedAt: number;
|
|
3867
|
-
}
|
|
3868
|
-
interface CloudSelectorCacheImportRequest {
|
|
3869
|
-
readonly entries: readonly CloudSelectorCacheImportEntry[];
|
|
3870
|
-
}
|
|
3871
|
-
interface CloudSelectorCacheImportResponse {
|
|
3872
|
-
readonly imported: number;
|
|
3873
|
-
readonly inserted: number;
|
|
3874
|
-
readonly updated: number;
|
|
3875
|
-
readonly skipped: number;
|
|
3876
|
-
}
|
|
3877
|
-
interface BrowserProfileDescriptor {
|
|
3878
|
-
readonly profileId: string;
|
|
3879
|
-
readonly teamId: string;
|
|
3880
|
-
readonly ownerUserId: string;
|
|
3881
|
-
readonly name: string;
|
|
3882
|
-
readonly status: BrowserProfileStatus;
|
|
3883
|
-
readonly proxyPolicy: BrowserProfileProxyPolicy;
|
|
3884
|
-
readonly stickyProxyId?: string;
|
|
3885
|
-
readonly proxyCountryCode?: string;
|
|
3886
|
-
readonly proxyRegion?: string;
|
|
3887
|
-
readonly proxyCity?: string;
|
|
3888
|
-
readonly fingerprintMode: CloudFingerprintMode;
|
|
3889
|
-
readonly fingerprintHash?: string;
|
|
3890
|
-
readonly activeSessionId?: string;
|
|
3891
|
-
readonly lastSessionId?: string;
|
|
3892
|
-
readonly lastLaunchedAt?: number;
|
|
3893
|
-
readonly latestRevision?: number;
|
|
3894
|
-
readonly latestStorageId?: string;
|
|
3895
|
-
readonly latestSizeBytes?: number;
|
|
3896
|
-
readonly latestArchiveSha256?: string;
|
|
3897
|
-
readonly latestArchiveFormat?: BrowserProfileArchiveFormat;
|
|
3898
|
-
readonly createdAt: number;
|
|
3899
|
-
readonly updatedAt: number;
|
|
3900
|
-
readonly lastError?: string;
|
|
3901
|
-
}
|
|
3902
|
-
interface BrowserProfileListResponse {
|
|
3903
|
-
readonly profiles: readonly BrowserProfileDescriptor[];
|
|
3904
|
-
readonly nextCursor?: string;
|
|
3905
|
-
}
|
|
3906
|
-
interface BrowserProfileCreateRequest {
|
|
3736
|
+
interface OpensteerSessionRuntimeOptions {
|
|
3907
3737
|
readonly name: string;
|
|
3908
|
-
readonly
|
|
3909
|
-
|
|
3910
|
-
|
|
3911
|
-
|
|
3912
|
-
|
|
3913
|
-
|
|
3914
|
-
readonly
|
|
3915
|
-
|
|
3916
|
-
|
|
3917
|
-
|
|
3918
|
-
interface BrowserProfileImportCreateRequest {
|
|
3919
|
-
readonly profileId: string;
|
|
3738
|
+
readonly rootDir?: string;
|
|
3739
|
+
readonly rootPath?: string;
|
|
3740
|
+
readonly engineName?: OpensteerEngineName;
|
|
3741
|
+
readonly browser?: OpensteerBrowserOptions;
|
|
3742
|
+
readonly launch?: OpensteerBrowserLaunchOptions;
|
|
3743
|
+
readonly context?: OpensteerBrowserContextOptions;
|
|
3744
|
+
readonly engine?: BrowserCoreEngine;
|
|
3745
|
+
readonly engineFactory?: OpensteerEngineFactory;
|
|
3746
|
+
readonly policy?: OpensteerPolicy;
|
|
3747
|
+
readonly cleanupRootOnClose?: boolean;
|
|
3920
3748
|
}
|
|
3921
|
-
|
|
3922
|
-
|
|
3923
|
-
readonly profileId: string;
|
|
3924
|
-
readonly status: BrowserProfileImportStatus;
|
|
3925
|
-
readonly uploadUrl: string;
|
|
3926
|
-
readonly uploadMethod: "PUT";
|
|
3927
|
-
readonly uploadFormat: PortableBrowserProfileSnapshotFormat;
|
|
3928
|
-
readonly maxUploadBytes: number;
|
|
3749
|
+
declare class OpensteerRuntime extends OpensteerSessionRuntime$1 {
|
|
3750
|
+
constructor(options?: OpensteerRuntimeOptions);
|
|
3929
3751
|
}
|
|
3930
|
-
|
|
3931
|
-
|
|
3932
|
-
readonly profileId: string;
|
|
3933
|
-
readonly status: BrowserProfileImportStatus;
|
|
3934
|
-
readonly uploadFormat: PortableBrowserProfileSnapshotFormat;
|
|
3935
|
-
readonly storageId?: string;
|
|
3936
|
-
readonly revision?: number;
|
|
3937
|
-
readonly error?: string;
|
|
3938
|
-
readonly snapshotSummary?: BrowserProfileImportSnapshotSummary;
|
|
3939
|
-
readonly createdAt: number;
|
|
3940
|
-
readonly updatedAt: number;
|
|
3752
|
+
declare class OpensteerSessionRuntime extends OpensteerSessionRuntime$1 {
|
|
3753
|
+
constructor(options: OpensteerSessionRuntimeOptions);
|
|
3941
3754
|
}
|
|
3942
3755
|
|
|
3943
3756
|
declare const OPENSTEER_EXECUTION_MODES: readonly ["local", "cloud"];
|
|
@@ -3967,6 +3780,7 @@ interface OpensteerRuntimeOperationOptions {
|
|
|
3967
3780
|
readonly signal?: AbortSignal;
|
|
3968
3781
|
}
|
|
3969
3782
|
interface OpensteerSemanticRuntime {
|
|
3783
|
+
info(options?: OpensteerRuntimeOperationOptions): Promise<OpensteerSessionInfo>;
|
|
3970
3784
|
open(input?: OpensteerOpenInput, options?: OpensteerRuntimeOperationOptions): Promise<OpensteerOpenOutput>;
|
|
3971
3785
|
listPages(input?: OpensteerPageListInput, options?: OpensteerRuntimeOperationOptions): Promise<OpensteerPageListOutput>;
|
|
3972
3786
|
newPage(input?: OpensteerPageNewInput, options?: OpensteerRuntimeOperationOptions): Promise<OpensteerPageNewOutput>;
|
|
@@ -4030,6 +3844,7 @@ interface OpensteerSemanticRuntime {
|
|
|
4030
3844
|
computerExecute(input: OpensteerComputerExecuteInput, options?: OpensteerRuntimeOperationOptions): Promise<OpensteerComputerExecuteOutput>;
|
|
4031
3845
|
close(options?: OpensteerRuntimeOperationOptions): Promise<OpensteerSessionCloseOutput>;
|
|
4032
3846
|
}
|
|
3847
|
+
|
|
4033
3848
|
interface OpensteerDisconnectableRuntime extends OpensteerSemanticRuntime {
|
|
4034
3849
|
disconnect(): Promise<void>;
|
|
4035
3850
|
}
|
|
@@ -4039,12 +3854,22 @@ interface OpensteerCloudOptions {
|
|
|
4039
3854
|
readonly baseUrl?: string;
|
|
4040
3855
|
readonly browserProfile?: CloudBrowserProfilePreference;
|
|
4041
3856
|
}
|
|
3857
|
+
interface OpensteerLocalProviderOptions {
|
|
3858
|
+
readonly kind: "local";
|
|
3859
|
+
}
|
|
3860
|
+
interface OpensteerCloudProviderOptions extends OpensteerCloudOptions {
|
|
3861
|
+
readonly kind: "cloud";
|
|
3862
|
+
readonly region?: string;
|
|
3863
|
+
readonly sessionId?: string;
|
|
3864
|
+
}
|
|
3865
|
+
type OpensteerProviderOptions = OpensteerLocalProviderOptions | OpensteerCloudProviderOptions;
|
|
4042
3866
|
interface OpensteerResolvedRuntimeConfig {
|
|
4043
3867
|
readonly mode: OpensteerExecutionMode;
|
|
4044
3868
|
readonly cloud?: OpensteerCloudConfig;
|
|
4045
3869
|
}
|
|
4046
3870
|
declare function resolveOpensteerRuntimeConfig(input?: {
|
|
4047
3871
|
readonly cloud?: boolean | OpensteerCloudOptions;
|
|
3872
|
+
readonly provider?: OpensteerProviderOptions;
|
|
4048
3873
|
readonly environmentMode?: string;
|
|
4049
3874
|
readonly mode?: OpensteerExecutionMode;
|
|
4050
3875
|
}): OpensteerResolvedRuntimeConfig;
|
|
@@ -4052,9 +3877,66 @@ declare function createOpensteerSemanticRuntime(input?: {
|
|
|
4052
3877
|
readonly runtimeOptions?: OpensteerRuntimeOptions;
|
|
4053
3878
|
readonly engine?: OpensteerEngineName;
|
|
4054
3879
|
readonly cloud?: boolean | OpensteerCloudOptions;
|
|
3880
|
+
readonly provider?: OpensteerProviderOptions;
|
|
4055
3881
|
readonly mode?: OpensteerExecutionMode;
|
|
4056
3882
|
}): OpensteerDisconnectableRuntime;
|
|
4057
3883
|
|
|
3884
|
+
interface OpensteerRouteRequest {
|
|
3885
|
+
readonly url: string;
|
|
3886
|
+
readonly method: string;
|
|
3887
|
+
readonly headers: readonly HeaderEntry[];
|
|
3888
|
+
readonly resourceType: NetworkRecord$1["resourceType"];
|
|
3889
|
+
readonly pageRef?: PageRef;
|
|
3890
|
+
readonly postData?: BodyPayload$1;
|
|
3891
|
+
}
|
|
3892
|
+
interface OpensteerFetchedRouteResponse {
|
|
3893
|
+
readonly url: string;
|
|
3894
|
+
readonly status: number;
|
|
3895
|
+
readonly statusText: string;
|
|
3896
|
+
readonly headers: readonly HeaderEntry[];
|
|
3897
|
+
readonly body?: BodyPayload$1;
|
|
3898
|
+
readonly redirected: boolean;
|
|
3899
|
+
}
|
|
3900
|
+
type OpensteerRouteHandlerResult = {
|
|
3901
|
+
readonly kind: "continue";
|
|
3902
|
+
} | {
|
|
3903
|
+
readonly kind: "fulfill";
|
|
3904
|
+
readonly status?: number;
|
|
3905
|
+
readonly headers?: readonly HeaderEntry[];
|
|
3906
|
+
readonly body?: string | Uint8Array;
|
|
3907
|
+
readonly contentType?: string;
|
|
3908
|
+
} | {
|
|
3909
|
+
readonly kind: "abort";
|
|
3910
|
+
readonly errorCode?: string;
|
|
3911
|
+
};
|
|
3912
|
+
interface OpensteerRouteOptions {
|
|
3913
|
+
readonly pageRef?: PageRef;
|
|
3914
|
+
readonly urlPattern: string;
|
|
3915
|
+
readonly resourceTypes?: readonly NetworkRecord$1["resourceType"][];
|
|
3916
|
+
readonly times?: number;
|
|
3917
|
+
readonly handler: (input: {
|
|
3918
|
+
readonly request: OpensteerRouteRequest;
|
|
3919
|
+
fetchOriginal(): Promise<OpensteerFetchedRouteResponse>;
|
|
3920
|
+
}) => OpensteerRouteHandlerResult | Promise<OpensteerRouteHandlerResult>;
|
|
3921
|
+
}
|
|
3922
|
+
interface OpensteerRouteRegistration {
|
|
3923
|
+
readonly routeId: string;
|
|
3924
|
+
readonly sessionRef: SessionRef;
|
|
3925
|
+
readonly pageRef?: PageRef;
|
|
3926
|
+
readonly urlPattern: string;
|
|
3927
|
+
}
|
|
3928
|
+
interface OpensteerInterceptScriptOptions {
|
|
3929
|
+
readonly pageRef?: PageRef;
|
|
3930
|
+
readonly urlPattern: string;
|
|
3931
|
+
readonly times?: number;
|
|
3932
|
+
readonly handler: (input: {
|
|
3933
|
+
readonly url: string;
|
|
3934
|
+
readonly content: string;
|
|
3935
|
+
readonly headers: readonly HeaderEntry[];
|
|
3936
|
+
readonly status: number;
|
|
3937
|
+
}) => string | Promise<string>;
|
|
3938
|
+
}
|
|
3939
|
+
|
|
4058
3940
|
interface OpensteerTargetOptions {
|
|
4059
3941
|
readonly element?: number;
|
|
4060
3942
|
readonly selector?: string;
|
|
@@ -4143,6 +4025,7 @@ type OpensteerCaptchaSolveResult = OpensteerCaptchaSolveOutput;
|
|
|
4143
4025
|
type OpensteerAddInitScriptOptions = OpensteerAddInitScriptInput;
|
|
4144
4026
|
interface OpensteerOptions extends OpensteerRuntimeOptions {
|
|
4145
4027
|
readonly cloud?: boolean | OpensteerCloudOptions;
|
|
4028
|
+
readonly provider?: OpensteerProviderOptions;
|
|
4146
4029
|
}
|
|
4147
4030
|
interface OpensteerBrowserCloneOptions {
|
|
4148
4031
|
readonly sourceUserDataDir: string;
|
|
@@ -4160,6 +4043,7 @@ declare class Opensteer {
|
|
|
4160
4043
|
readonly browser: OpensteerBrowserController;
|
|
4161
4044
|
constructor(options?: OpensteerOptions);
|
|
4162
4045
|
open(input?: string | OpensteerOpenInput): Promise<OpensteerOpenOutput>;
|
|
4046
|
+
info(): Promise<OpensteerSessionInfo>;
|
|
4163
4047
|
listPages(input?: OpensteerPageListInput): Promise<OpensteerPageListOutput>;
|
|
4164
4048
|
newPage(input?: OpensteerPageNewInput): Promise<OpensteerPageNewOutput>;
|
|
4165
4049
|
activatePage(input: OpensteerPageActivateInput): Promise<OpensteerPageActivateOutput>;
|
|
@@ -4272,6 +4156,7 @@ declare class OpensteerCloudClient {
|
|
|
4272
4156
|
createSession(input?: OpensteerCloudSessionCreateInput): Promise<OpensteerCloudSessionDescriptor>;
|
|
4273
4157
|
listSessions(): Promise<unknown>;
|
|
4274
4158
|
getSession(sessionId: string): Promise<OpensteerCloudSessionState>;
|
|
4159
|
+
issueAccess(sessionId: string, capabilities: readonly OpensteerSessionGrantKind[]): Promise<OpensteerSessionAccessGrantResponse>;
|
|
4275
4160
|
closeSession(sessionId: string): Promise<void>;
|
|
4276
4161
|
createBrowserProfileImport(input: BrowserProfileImportCreateRequest): Promise<BrowserProfileImportCreateResponse>;
|
|
4277
4162
|
uploadBrowserProfileImportPayload(input: {
|
|
@@ -4286,27 +4171,53 @@ declare class OpensteerCloudClient {
|
|
|
4286
4171
|
private waitForSessionClosed;
|
|
4287
4172
|
}
|
|
4288
4173
|
|
|
4289
|
-
declare const
|
|
4290
|
-
declare const
|
|
4291
|
-
interface
|
|
4292
|
-
readonly layout: typeof
|
|
4293
|
-
readonly version: typeof
|
|
4294
|
-
readonly mode: "cloud";
|
|
4174
|
+
declare const OPENSTEER_LIVE_SESSION_LAYOUT = "opensteer-session";
|
|
4175
|
+
declare const OPENSTEER_LIVE_SESSION_VERSION = 1;
|
|
4176
|
+
interface PersistedSessionRecordBase {
|
|
4177
|
+
readonly layout: typeof OPENSTEER_LIVE_SESSION_LAYOUT;
|
|
4178
|
+
readonly version: typeof OPENSTEER_LIVE_SESSION_VERSION;
|
|
4295
4179
|
readonly workspace?: string;
|
|
4180
|
+
readonly updatedAt: number;
|
|
4181
|
+
readonly activePageRef?: string;
|
|
4182
|
+
readonly reconnectable?: boolean;
|
|
4183
|
+
readonly capabilities?: OpensteerSessionCapabilities;
|
|
4184
|
+
}
|
|
4185
|
+
interface PersistedLocalBrowserSessionRecord extends PersistedSessionRecordBase {
|
|
4186
|
+
readonly provider: "local";
|
|
4187
|
+
readonly mode: "browser";
|
|
4188
|
+
readonly engine: "playwright" | "abp";
|
|
4189
|
+
readonly endpoint?: string;
|
|
4190
|
+
readonly baseUrl?: string;
|
|
4191
|
+
readonly remoteDebuggingUrl?: string;
|
|
4192
|
+
readonly sessionDir?: string;
|
|
4193
|
+
readonly pid: number;
|
|
4194
|
+
readonly startedAt: number;
|
|
4195
|
+
readonly executablePath?: string;
|
|
4196
|
+
readonly userDataDir: string;
|
|
4197
|
+
}
|
|
4198
|
+
interface PersistedCloudSessionRecord extends PersistedSessionRecordBase {
|
|
4199
|
+
readonly provider: "cloud";
|
|
4200
|
+
readonly mode: "cloud";
|
|
4296
4201
|
readonly sessionId: string;
|
|
4297
4202
|
readonly baseUrl: string;
|
|
4298
4203
|
readonly startedAt: number;
|
|
4299
|
-
readonly updatedAt: number;
|
|
4300
4204
|
}
|
|
4205
|
+
type PersistedSessionRecord = PersistedLocalBrowserSessionRecord | PersistedCloudSessionRecord;
|
|
4206
|
+
declare function resolveLiveSessionRecordPath(rootPath: string): string;
|
|
4207
|
+
declare function readPersistedSessionRecord(rootPath: string): Promise<PersistedSessionRecord | undefined>;
|
|
4208
|
+
declare function readPersistedCloudSessionRecord(rootPath: string): Promise<PersistedCloudSessionRecord | undefined>;
|
|
4209
|
+
declare function readPersistedLocalBrowserSessionRecord(rootPath: string): Promise<PersistedLocalBrowserSessionRecord | undefined>;
|
|
4210
|
+
declare function hasPersistedCloudSession(rootPath: string): Promise<boolean>;
|
|
4211
|
+
declare function writePersistedSessionRecord(rootPath: string, record: PersistedSessionRecord): Promise<void>;
|
|
4212
|
+
declare function clearPersistedSessionRecord(rootPath: string): Promise<void>;
|
|
4213
|
+
|
|
4301
4214
|
interface CloudSessionProxyOptions {
|
|
4302
4215
|
readonly rootDir?: string;
|
|
4303
4216
|
readonly rootPath?: string;
|
|
4304
4217
|
readonly workspace?: string;
|
|
4305
4218
|
readonly cleanupRootOnClose?: boolean;
|
|
4306
4219
|
}
|
|
4307
|
-
|
|
4308
|
-
declare function readPersistedCloudSessionRecord(rootPath: string): Promise<PersistedCloudSessionRecord | undefined>;
|
|
4309
|
-
declare function hasPersistedCloudSession(rootPath: string): Promise<boolean>;
|
|
4220
|
+
|
|
4310
4221
|
declare class CloudSessionProxy implements OpensteerDisconnectableRuntime {
|
|
4311
4222
|
readonly rootPath: string;
|
|
4312
4223
|
readonly workspace: string | undefined;
|
|
@@ -4315,9 +4226,11 @@ declare class CloudSessionProxy implements OpensteerDisconnectableRuntime {
|
|
|
4315
4226
|
private sessionId;
|
|
4316
4227
|
private sessionBaseUrl;
|
|
4317
4228
|
private client;
|
|
4229
|
+
private automation;
|
|
4318
4230
|
private workspaceStore;
|
|
4319
4231
|
constructor(cloud: OpensteerCloudClient, options?: CloudSessionProxyOptions);
|
|
4320
4232
|
open(input?: OpensteerOpenInput): Promise<OpensteerOpenOutput>;
|
|
4233
|
+
info(): Promise<OpensteerSessionInfo>;
|
|
4321
4234
|
listPages(input?: OpensteerPageListInput): Promise<OpensteerPageListOutput>;
|
|
4322
4235
|
newPage(input?: OpensteerPageNewInput): Promise<OpensteerPageNewOutput>;
|
|
4323
4236
|
activatePage(input: OpensteerPageActivateInput): Promise<OpensteerPageActivateOutput>;
|
|
@@ -4359,6 +4272,8 @@ declare class CloudSessionProxy implements OpensteerDisconnectableRuntime {
|
|
|
4359
4272
|
getCookies(input?: {
|
|
4360
4273
|
readonly urls?: readonly string[];
|
|
4361
4274
|
}): Promise<readonly CookieRecord[]>;
|
|
4275
|
+
route(input: OpensteerRouteOptions): Promise<OpensteerRouteRegistration>;
|
|
4276
|
+
interceptScript(input: OpensteerInterceptScriptOptions): Promise<OpensteerRouteRegistration>;
|
|
4362
4277
|
getStorageSnapshot(input?: {
|
|
4363
4278
|
readonly includeSessionStorage?: boolean;
|
|
4364
4279
|
readonly includeIndexedDb?: boolean;
|
|
@@ -4388,6 +4303,7 @@ declare class CloudSessionProxy implements OpensteerDisconnectableRuntime {
|
|
|
4388
4303
|
private clearPersistedSession;
|
|
4389
4304
|
private isReusableCloudSession;
|
|
4390
4305
|
private requireClient;
|
|
4306
|
+
private requireAutomation;
|
|
4391
4307
|
}
|
|
4392
4308
|
|
|
4393
4309
|
declare function dispatchSemanticOperation(runtime: OpensteerSemanticRuntime, operation: OpensteerSemanticOperationName, input: unknown, options?: {
|
|
@@ -4429,4 +4345,4 @@ declare function discoverLocalCdpBrowsers(input?: {
|
|
|
4429
4345
|
readonly timeoutMs?: number;
|
|
4430
4346
|
}): Promise<readonly LocalCdpBrowserCandidate[]>;
|
|
4431
4347
|
|
|
4432
|
-
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 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 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 OpensteerCloudOptions, type OpensteerCloudSessionCreateInput, type OpensteerCloudSessionDescriptor, type OpensteerComputerExecuteOptions, type OpensteerComputerExecuteResult, type OpensteerDisconnectableRuntime, type
|
|
4348
|
+
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 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 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 OpensteerCloudOptions, type OpensteerCloudSessionCreateInput, type OpensteerCloudSessionDescriptor, type OpensteerComputerExecuteOptions, type OpensteerComputerExecuteResult, type OpensteerDisconnectableRuntime, type OpensteerEngineName, type OpensteerExecutionMode, type OpensteerExtractOptions, type OpensteerFetchedRouteResponse, type OpensteerInputOptions, type OpensteerInteractionCaptureOptions, type OpensteerInteractionCaptureResult, type OpensteerInteractionDiffOptions, type OpensteerInteractionDiffResult, type OpensteerInteractionReplayOptions, type OpensteerInteractionReplayResult, type OpensteerInterceptScriptOptions, type OpensteerNetworkClearOptions, type OpensteerNetworkClearResult, type OpensteerNetworkDiffOptions, type OpensteerNetworkDiffResult, type OpensteerNetworkMinimizeOptions, type OpensteerNetworkMinimizeResult, type OpensteerNetworkProbeOptions, type OpensteerNetworkProbeResult, type OpensteerNetworkQueryOptions, type OpensteerNetworkQueryResult, type OpensteerNetworkSaveOptions, type OpensteerNetworkSaveResult, type OpensteerOptions, type OpensteerPolicy, type OpensteerRawRequestOptions, type OpensteerRawRequestResult, type OpensteerRequestOptions, type OpensteerRequestResult, 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 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 RequestPlanLifecycle, 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, buildArrayFieldPathCandidates, buildPathCandidates, buildPathSelectorHint, buildSegmentSelector, clearPersistedSessionRecord, cloneElementPath, cloneReplayElementPath, cloneStructuralElementAnchor, createDomRuntime, createFilesystemOpensteerWorkspace, createOpensteerSemanticRuntime, defaultFallbackPolicy, defaultPolicy, defaultRetryPolicy, defaultSettlePolicy, defaultTimeoutPolicy, delayWithSignal, discoverLocalCdpBrowsers, dispatchSemanticOperation, hasPersistedCloudSession, inspectCdpEndpoint, isCurrentUrlField, isValidCssAttributeKey, listLocalChromeProfiles, normalizeExtractedValue, normalizeOpensteerEngineName, normalizeOpensteerExecutionMode, normalizeWorkspaceId, readPersistedCloudSessionRecord, readPersistedLocalBrowserSessionRecord, readPersistedSessionRecord, resolveCloudConfig, resolveLiveSessionRecordPath as resolveCloudSessionRecordPath, resolveDomActionBridge, resolveExtractedValueInContext, resolveFilesystemWorkspacePath, resolveLiveSessionRecordPath, resolveOpensteerEngineName, resolveOpensteerExecutionMode, resolveOpensteerRuntimeConfig, runWithPolicyTimeout, sanitizeElementPath, sanitizeReplayElementPath, sanitizeStructuralElementAnchor, settleWithPolicy, shouldKeepAttributeForPath, writePersistedSessionRecord };
|