opensteer 0.8.12 → 0.8.14
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 +147 -273
- package/dist/{chunk-AXTKKAPW.js → chunk-BRUJHMWO.js} +8333 -15566
- package/dist/chunk-BRUJHMWO.js.map +1 -0
- package/dist/cli/bin.cjs +10649 -16706
- package/dist/cli/bin.cjs.map +1 -1
- package/dist/cli/bin.js +2121 -949
- package/dist/cli/bin.js.map +1 -1
- package/dist/index.cjs +7880 -15161
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +267 -684
- package/dist/index.d.ts +267 -684
- package/dist/index.js +145 -192
- package/dist/index.js.map +1 -1
- package/package.json +7 -7
- package/skills/opensteer/SKILL.md +317 -51
- package/skills/opensteer/references/cli-reference.md +68 -212
- package/skills/opensteer/references/request-workflow.md +95 -342
- package/skills/opensteer/references/sdk-reference.md +83 -338
- package/dist/chunk-AXTKKAPW.js.map +0 -1
package/dist/index.d.ts
CHANGED
|
@@ -789,6 +789,12 @@ interface BrowserInspector {
|
|
|
789
789
|
readonly args?: readonly unknown[];
|
|
790
790
|
readonly timeoutMs?: number;
|
|
791
791
|
}): Promise<StepResult<unknown>>;
|
|
792
|
+
evaluateFrame(input: {
|
|
793
|
+
readonly frameRef: FrameRef;
|
|
794
|
+
readonly script: string;
|
|
795
|
+
readonly args?: readonly unknown[];
|
|
796
|
+
readonly timeoutMs?: number;
|
|
797
|
+
}): Promise<StepResult<unknown>>;
|
|
792
798
|
}
|
|
793
799
|
interface SessionTransportExecutor {
|
|
794
800
|
readonly capabilities: Readonly<BrowserCapabilities>;
|
|
@@ -981,18 +987,6 @@ interface OpensteerRequestPlanFreshness {
|
|
|
981
987
|
readonly staleAt?: number;
|
|
982
988
|
readonly expiresAt?: number;
|
|
983
989
|
}
|
|
984
|
-
interface OpensteerRequestPlanRecord {
|
|
985
|
-
readonly id: string;
|
|
986
|
-
readonly key: string;
|
|
987
|
-
readonly version: string;
|
|
988
|
-
readonly createdAt: number;
|
|
989
|
-
readonly updatedAt: number;
|
|
990
|
-
readonly contentHash: string;
|
|
991
|
-
readonly tags: readonly string[];
|
|
992
|
-
readonly provenance?: OpensteerRegistryProvenance;
|
|
993
|
-
readonly freshness?: OpensteerRequestPlanFreshness;
|
|
994
|
-
readonly payload: OpensteerRequestPlanPayload;
|
|
995
|
-
}
|
|
996
990
|
interface OpensteerRecipeStepHeaderCapture {
|
|
997
991
|
readonly name: string;
|
|
998
992
|
readonly saveAs: string;
|
|
@@ -1131,17 +1125,6 @@ interface OpensteerRecipePayload {
|
|
|
1131
1125
|
readonly outputs?: OpensteerRecipeRetryOverrides;
|
|
1132
1126
|
}
|
|
1133
1127
|
type OpensteerAuthRecipePayload = OpensteerRecipePayload;
|
|
1134
|
-
interface OpensteerRecipeRecord {
|
|
1135
|
-
readonly id: string;
|
|
1136
|
-
readonly key: string;
|
|
1137
|
-
readonly version: string;
|
|
1138
|
-
readonly createdAt: number;
|
|
1139
|
-
readonly updatedAt: number;
|
|
1140
|
-
readonly contentHash: string;
|
|
1141
|
-
readonly tags: readonly string[];
|
|
1142
|
-
readonly provenance?: OpensteerRegistryProvenance;
|
|
1143
|
-
readonly payload: OpensteerRecipePayload;
|
|
1144
|
-
}
|
|
1145
1128
|
interface OpensteerNetworkQueryInput {
|
|
1146
1129
|
readonly pageRef?: PageRef;
|
|
1147
1130
|
readonly recordId?: string;
|
|
@@ -1152,94 +1135,160 @@ interface OpensteerNetworkQueryInput {
|
|
|
1152
1135
|
readonly hostname?: string;
|
|
1153
1136
|
readonly path?: string;
|
|
1154
1137
|
readonly method?: string;
|
|
1155
|
-
readonly status?: string;
|
|
1138
|
+
readonly status?: string | number;
|
|
1156
1139
|
readonly resourceType?: NetworkResourceType;
|
|
1157
1140
|
readonly includeBodies?: boolean;
|
|
1141
|
+
readonly json?: boolean;
|
|
1142
|
+
readonly before?: string;
|
|
1143
|
+
readonly after?: string;
|
|
1158
1144
|
readonly limit?: number;
|
|
1159
1145
|
}
|
|
1160
|
-
interface
|
|
1161
|
-
readonly
|
|
1146
|
+
interface OpensteerGraphqlSummary {
|
|
1147
|
+
readonly operationType?: "query" | "mutation" | "subscription" | "unknown";
|
|
1148
|
+
readonly operationName?: string;
|
|
1149
|
+
readonly persisted?: boolean;
|
|
1162
1150
|
}
|
|
1163
|
-
interface
|
|
1164
|
-
readonly
|
|
1165
|
-
readonly
|
|
1166
|
-
readonly
|
|
1151
|
+
interface OpensteerNetworkBodySummary {
|
|
1152
|
+
readonly bytes?: number;
|
|
1153
|
+
readonly contentType?: string;
|
|
1154
|
+
readonly streaming?: boolean;
|
|
1155
|
+
}
|
|
1156
|
+
interface OpensteerNetworkSummaryRecord {
|
|
1157
|
+
readonly recordId: string;
|
|
1167
1158
|
readonly capture?: string;
|
|
1168
|
-
readonly
|
|
1169
|
-
readonly
|
|
1170
|
-
readonly
|
|
1171
|
-
readonly
|
|
1172
|
-
readonly
|
|
1173
|
-
readonly
|
|
1174
|
-
readonly
|
|
1159
|
+
readonly savedAt?: number;
|
|
1160
|
+
readonly kind: NetworkQueryRecord["record"]["kind"];
|
|
1161
|
+
readonly method: string;
|
|
1162
|
+
readonly status?: number;
|
|
1163
|
+
readonly resourceType: NetworkResourceType;
|
|
1164
|
+
readonly url: string;
|
|
1165
|
+
readonly request?: OpensteerNetworkBodySummary;
|
|
1166
|
+
readonly response?: OpensteerNetworkBodySummary;
|
|
1167
|
+
readonly graphql?: OpensteerGraphqlSummary;
|
|
1168
|
+
readonly websocket?: {
|
|
1169
|
+
readonly subprotocol?: string;
|
|
1170
|
+
};
|
|
1171
|
+
}
|
|
1172
|
+
interface OpensteerNetworkQueryOutput {
|
|
1173
|
+
readonly records: readonly OpensteerNetworkSummaryRecord[];
|
|
1174
|
+
}
|
|
1175
|
+
interface OpensteerParsedCookie {
|
|
1176
|
+
readonly name: string;
|
|
1177
|
+
readonly value: string;
|
|
1178
|
+
}
|
|
1179
|
+
interface OpensteerStructuredBodyPreview {
|
|
1180
|
+
readonly contentType?: string;
|
|
1181
|
+
readonly bytes: number;
|
|
1182
|
+
readonly truncated: boolean;
|
|
1183
|
+
readonly data?: JsonValue$1 | string;
|
|
1184
|
+
readonly note?: string;
|
|
1175
1185
|
}
|
|
1176
|
-
interface
|
|
1177
|
-
readonly
|
|
1186
|
+
interface OpensteerNetworkRedirectHop {
|
|
1187
|
+
readonly method: string;
|
|
1188
|
+
readonly status?: number;
|
|
1189
|
+
readonly url: string;
|
|
1190
|
+
readonly location?: string;
|
|
1191
|
+
readonly setCookie?: readonly string[];
|
|
1178
1192
|
}
|
|
1179
|
-
interface
|
|
1193
|
+
interface OpensteerNetworkDetailOutput {
|
|
1194
|
+
readonly recordId: string;
|
|
1180
1195
|
readonly capture?: string;
|
|
1181
|
-
readonly
|
|
1196
|
+
readonly savedAt?: number;
|
|
1197
|
+
readonly summary: OpensteerNetworkSummaryRecord;
|
|
1198
|
+
readonly requestHeaders: readonly HeaderEntry[];
|
|
1199
|
+
readonly responseHeaders: readonly HeaderEntry[];
|
|
1200
|
+
readonly cookiesSent?: readonly OpensteerParsedCookie[];
|
|
1201
|
+
readonly requestBody?: OpensteerStructuredBodyPreview;
|
|
1202
|
+
readonly responseBody?: OpensteerStructuredBodyPreview;
|
|
1203
|
+
readonly graphql?: OpensteerGraphqlSummary & {
|
|
1204
|
+
readonly variables?: JsonValue$1;
|
|
1205
|
+
};
|
|
1206
|
+
readonly redirectChain?: readonly OpensteerNetworkRedirectHop[];
|
|
1207
|
+
readonly notes?: readonly string[];
|
|
1182
1208
|
}
|
|
1183
|
-
interface
|
|
1184
|
-
readonly
|
|
1209
|
+
interface OpensteerReplayAttempt {
|
|
1210
|
+
readonly transport: TransportKind;
|
|
1211
|
+
readonly status?: number;
|
|
1212
|
+
readonly ok: boolean;
|
|
1213
|
+
readonly durationMs: number;
|
|
1214
|
+
readonly note?: string;
|
|
1215
|
+
readonly error?: string;
|
|
1185
1216
|
}
|
|
1186
|
-
interface
|
|
1187
|
-
readonly
|
|
1188
|
-
readonly
|
|
1189
|
-
readonly
|
|
1190
|
-
readonly
|
|
1191
|
-
readonly provenance?: OpensteerRegistryProvenance;
|
|
1192
|
-
readonly freshness?: OpensteerRequestPlanFreshness;
|
|
1193
|
-
readonly payload: OpensteerRequestPlanPayload;
|
|
1217
|
+
interface OpensteerNetworkReplayOverrides {
|
|
1218
|
+
readonly query?: OpensteerRequestScalarMap;
|
|
1219
|
+
readonly headers?: OpensteerRequestScalarMap;
|
|
1220
|
+
readonly body?: OpensteerRequestBodyInput;
|
|
1221
|
+
readonly variables?: JsonValue$1;
|
|
1194
1222
|
}
|
|
1195
|
-
interface
|
|
1196
|
-
readonly
|
|
1197
|
-
readonly
|
|
1223
|
+
interface OpensteerNetworkReplayInput extends OpensteerNetworkReplayOverrides {
|
|
1224
|
+
readonly recordId: string;
|
|
1225
|
+
readonly pageRef?: PageRef;
|
|
1198
1226
|
}
|
|
1199
|
-
interface
|
|
1200
|
-
readonly
|
|
1227
|
+
interface OpensteerNetworkReplayOutput {
|
|
1228
|
+
readonly recordId: string;
|
|
1229
|
+
readonly transport?: TransportKind;
|
|
1230
|
+
readonly attempts: readonly OpensteerReplayAttempt[];
|
|
1231
|
+
readonly response?: OpensteerRequestResponseResult;
|
|
1232
|
+
readonly data?: JsonValue$1 | string;
|
|
1233
|
+
readonly note?: string;
|
|
1201
1234
|
}
|
|
1202
|
-
|
|
1203
|
-
|
|
1235
|
+
type OpensteerSessionFetchTransport = "auto" | "direct" | "matched-tls" | "page";
|
|
1236
|
+
interface OpensteerSessionFetchInput {
|
|
1237
|
+
readonly pageRef?: PageRef;
|
|
1238
|
+
readonly url: string;
|
|
1239
|
+
readonly method?: string;
|
|
1240
|
+
readonly query?: OpensteerRequestScalarMap;
|
|
1241
|
+
readonly headers?: OpensteerRequestScalarMap;
|
|
1242
|
+
readonly body?: OpensteerRequestBodyInput;
|
|
1243
|
+
readonly transport?: OpensteerSessionFetchTransport;
|
|
1244
|
+
readonly cookies?: boolean;
|
|
1245
|
+
readonly followRedirects?: boolean;
|
|
1204
1246
|
}
|
|
1205
|
-
interface
|
|
1206
|
-
readonly
|
|
1207
|
-
readonly
|
|
1208
|
-
readonly
|
|
1209
|
-
readonly
|
|
1210
|
-
readonly
|
|
1211
|
-
readonly payload: OpensteerRecipePayload;
|
|
1247
|
+
interface OpensteerSessionFetchOutput {
|
|
1248
|
+
readonly transport?: TransportKind;
|
|
1249
|
+
readonly attempts: readonly OpensteerReplayAttempt[];
|
|
1250
|
+
readonly response?: OpensteerRequestResponseResult;
|
|
1251
|
+
readonly data?: JsonValue$1 | string;
|
|
1252
|
+
readonly note?: string;
|
|
1212
1253
|
}
|
|
1213
|
-
|
|
1214
|
-
|
|
1215
|
-
readonly key: string;
|
|
1216
|
-
readonly version?: string;
|
|
1254
|
+
interface OpensteerCookieQueryInput {
|
|
1255
|
+
readonly domain?: string;
|
|
1217
1256
|
}
|
|
1218
|
-
|
|
1219
|
-
|
|
1220
|
-
readonly
|
|
1257
|
+
interface OpensteerCookieQueryOutput {
|
|
1258
|
+
readonly domain?: string;
|
|
1259
|
+
readonly cookies: readonly CookieRecord[];
|
|
1221
1260
|
}
|
|
1222
|
-
type
|
|
1223
|
-
interface
|
|
1224
|
-
readonly
|
|
1261
|
+
type OpensteerStorageArea = "local" | "session";
|
|
1262
|
+
interface OpensteerStorageQueryInput {
|
|
1263
|
+
readonly domain?: string;
|
|
1225
1264
|
}
|
|
1226
|
-
|
|
1227
|
-
|
|
1228
|
-
readonly
|
|
1229
|
-
readonly
|
|
1230
|
-
readonly variables?: Readonly<Record<string, string>>;
|
|
1265
|
+
interface OpensteerStorageDomainSnapshot {
|
|
1266
|
+
readonly domain: string;
|
|
1267
|
+
readonly localStorage: readonly StorageEntry[];
|
|
1268
|
+
readonly sessionStorage: readonly StorageEntry[];
|
|
1231
1269
|
}
|
|
1232
|
-
|
|
1233
|
-
|
|
1234
|
-
|
|
1235
|
-
|
|
1236
|
-
|
|
1237
|
-
|
|
1238
|
-
|
|
1239
|
-
|
|
1240
|
-
|
|
1270
|
+
interface OpensteerStorageQueryOutput {
|
|
1271
|
+
readonly domains: readonly OpensteerStorageDomainSnapshot[];
|
|
1272
|
+
}
|
|
1273
|
+
interface OpensteerHiddenField {
|
|
1274
|
+
readonly path: string;
|
|
1275
|
+
readonly name: string;
|
|
1276
|
+
readonly value: string;
|
|
1277
|
+
}
|
|
1278
|
+
interface OpensteerStateDomainSnapshot {
|
|
1279
|
+
readonly domain: string;
|
|
1280
|
+
readonly cookies: readonly CookieRecord[];
|
|
1281
|
+
readonly hiddenFields: readonly OpensteerHiddenField[];
|
|
1282
|
+
readonly localStorage: readonly StorageEntry[];
|
|
1283
|
+
readonly sessionStorage: readonly StorageEntry[];
|
|
1284
|
+
readonly globals?: Readonly<Record<string, JsonValue$1>>;
|
|
1285
|
+
}
|
|
1286
|
+
interface OpensteerStateQueryInput {
|
|
1287
|
+
readonly domain?: string;
|
|
1288
|
+
}
|
|
1289
|
+
interface OpensteerStateQueryOutput {
|
|
1290
|
+
readonly domains: readonly OpensteerStateDomainSnapshot[];
|
|
1241
1291
|
}
|
|
1242
|
-
type OpensteerRunAuthRecipeOutput = OpensteerRunRecipeOutput;
|
|
1243
1292
|
type OpensteerRequestScalarMap = Readonly<Record<string, OpensteerRequestScalar>>;
|
|
1244
1293
|
interface OpensteerJsonRequestBodyInput {
|
|
1245
1294
|
readonly json: JsonValue$1;
|
|
@@ -1254,34 +1303,6 @@ interface OpensteerBase64RequestBodyInput {
|
|
|
1254
1303
|
readonly contentType?: string;
|
|
1255
1304
|
}
|
|
1256
1305
|
type OpensteerRequestBodyInput = OpensteerJsonRequestBodyInput | OpensteerTextRequestBodyInput | OpensteerBase64RequestBodyInput;
|
|
1257
|
-
interface OpensteerRequestExecuteInput {
|
|
1258
|
-
readonly key: string;
|
|
1259
|
-
readonly version?: string;
|
|
1260
|
-
readonly pageRef?: PageRef;
|
|
1261
|
-
readonly cookieJar?: string;
|
|
1262
|
-
readonly params?: OpensteerRequestScalarMap;
|
|
1263
|
-
readonly query?: OpensteerRequestScalarMap;
|
|
1264
|
-
readonly headers?: OpensteerRequestScalarMap;
|
|
1265
|
-
readonly bodyVars?: OpensteerRequestScalarMap;
|
|
1266
|
-
readonly body?: OpensteerRequestBodyInput;
|
|
1267
|
-
readonly validateResponse?: boolean;
|
|
1268
|
-
}
|
|
1269
|
-
interface OpensteerRawRequestInput {
|
|
1270
|
-
readonly transport?: TransportKind;
|
|
1271
|
-
readonly pageRef?: PageRef;
|
|
1272
|
-
readonly cookieJar?: string;
|
|
1273
|
-
readonly url: string;
|
|
1274
|
-
readonly method?: string;
|
|
1275
|
-
readonly headers?: readonly HeaderEntry[];
|
|
1276
|
-
readonly body?: OpensteerRequestBodyInput;
|
|
1277
|
-
readonly followRedirects?: boolean;
|
|
1278
|
-
}
|
|
1279
|
-
interface OpensteerRequestTransportResult {
|
|
1280
|
-
readonly method: string;
|
|
1281
|
-
readonly url: string;
|
|
1282
|
-
readonly headers: readonly HeaderEntry[];
|
|
1283
|
-
readonly body?: BodyPayload;
|
|
1284
|
-
}
|
|
1285
1306
|
interface OpensteerRequestResponseResult {
|
|
1286
1307
|
readonly url: string;
|
|
1287
1308
|
readonly status: number;
|
|
@@ -1290,37 +1311,6 @@ interface OpensteerRequestResponseResult {
|
|
|
1290
1311
|
readonly body?: BodyPayload;
|
|
1291
1312
|
readonly redirected: boolean;
|
|
1292
1313
|
}
|
|
1293
|
-
interface OpensteerRequestExecuteOutput {
|
|
1294
|
-
readonly plan: {
|
|
1295
|
-
readonly id: string;
|
|
1296
|
-
readonly key: string;
|
|
1297
|
-
readonly version: string;
|
|
1298
|
-
};
|
|
1299
|
-
readonly request: OpensteerRequestTransportResult;
|
|
1300
|
-
readonly response: OpensteerRequestResponseResult;
|
|
1301
|
-
readonly recovery?: {
|
|
1302
|
-
readonly attempted: boolean;
|
|
1303
|
-
readonly succeeded: boolean;
|
|
1304
|
-
readonly matchedFailurePolicy?: boolean;
|
|
1305
|
-
readonly recipe?: {
|
|
1306
|
-
readonly key: string;
|
|
1307
|
-
readonly version: string;
|
|
1308
|
-
};
|
|
1309
|
-
};
|
|
1310
|
-
readonly data?: unknown;
|
|
1311
|
-
}
|
|
1312
|
-
interface OpensteerRawRequestOutput {
|
|
1313
|
-
readonly recordId: string;
|
|
1314
|
-
readonly request: OpensteerRequestTransportResult;
|
|
1315
|
-
readonly response: OpensteerRequestResponseResult;
|
|
1316
|
-
readonly data?: unknown;
|
|
1317
|
-
}
|
|
1318
|
-
interface OpensteerInferRequestPlanInput {
|
|
1319
|
-
readonly recordId: string;
|
|
1320
|
-
readonly key: string;
|
|
1321
|
-
readonly version: string;
|
|
1322
|
-
readonly transport?: TransportKind;
|
|
1323
|
-
}
|
|
1324
1314
|
|
|
1325
1315
|
interface ScreenshotArtifact {
|
|
1326
1316
|
readonly pageRef: PageRef;
|
|
@@ -1450,8 +1440,8 @@ interface CloudSessionRecordingState {
|
|
|
1450
1440
|
interface CloudSelectorCacheImportEntry {
|
|
1451
1441
|
readonly workspace: string;
|
|
1452
1442
|
readonly method: string;
|
|
1453
|
-
readonly
|
|
1454
|
-
readonly
|
|
1443
|
+
readonly nameHash: string;
|
|
1444
|
+
readonly name?: string;
|
|
1455
1445
|
readonly path: unknown;
|
|
1456
1446
|
readonly schemaHash?: string;
|
|
1457
1447
|
readonly createdAt: number;
|
|
@@ -1840,15 +1830,15 @@ interface OpensteerTargetByElement {
|
|
|
1840
1830
|
readonly kind: "element";
|
|
1841
1831
|
readonly element: number;
|
|
1842
1832
|
}
|
|
1843
|
-
interface
|
|
1844
|
-
readonly kind: "
|
|
1845
|
-
readonly
|
|
1833
|
+
interface OpensteerTargetByPersist {
|
|
1834
|
+
readonly kind: "persist";
|
|
1835
|
+
readonly name: string;
|
|
1846
1836
|
}
|
|
1847
1837
|
interface OpensteerTargetBySelector {
|
|
1848
1838
|
readonly kind: "selector";
|
|
1849
1839
|
readonly selector: string;
|
|
1850
1840
|
}
|
|
1851
|
-
type OpensteerTargetInput = OpensteerTargetByElement |
|
|
1841
|
+
type OpensteerTargetInput = OpensteerTargetByElement | OpensteerTargetByPersist | OpensteerTargetBySelector;
|
|
1852
1842
|
interface OpensteerResolvedTarget {
|
|
1853
1843
|
readonly pageRef: PageRef;
|
|
1854
1844
|
readonly frameRef: FrameRef;
|
|
@@ -1857,7 +1847,7 @@ interface OpensteerResolvedTarget {
|
|
|
1857
1847
|
readonly nodeRef: NodeRef;
|
|
1858
1848
|
readonly tagName: string;
|
|
1859
1849
|
readonly pathHint: string;
|
|
1860
|
-
readonly
|
|
1850
|
+
readonly persist?: string;
|
|
1861
1851
|
readonly selectorUsed?: string;
|
|
1862
1852
|
}
|
|
1863
1853
|
interface OpensteerActionResult {
|
|
@@ -1866,7 +1856,7 @@ interface OpensteerActionResult {
|
|
|
1866
1856
|
readonly x: number;
|
|
1867
1857
|
readonly y: number;
|
|
1868
1858
|
};
|
|
1869
|
-
readonly
|
|
1859
|
+
readonly persisted?: string;
|
|
1870
1860
|
}
|
|
1871
1861
|
interface OpensteerSnapshotCounter {
|
|
1872
1862
|
readonly element: number;
|
|
@@ -1982,30 +1972,30 @@ interface OpensteerDomClickInput {
|
|
|
1982
1972
|
readonly button?: OpensteerComputerMouseButton;
|
|
1983
1973
|
readonly clickCount?: number;
|
|
1984
1974
|
readonly modifiers?: readonly OpensteerComputerKeyModifier[];
|
|
1985
|
-
readonly
|
|
1975
|
+
readonly persist?: string;
|
|
1986
1976
|
readonly captureNetwork?: string;
|
|
1987
1977
|
}
|
|
1988
1978
|
interface OpensteerDomHoverInput {
|
|
1989
1979
|
readonly target: OpensteerTargetInput;
|
|
1990
|
-
readonly
|
|
1980
|
+
readonly persist?: string;
|
|
1991
1981
|
readonly captureNetwork?: string;
|
|
1992
1982
|
}
|
|
1993
1983
|
interface OpensteerDomInputInput {
|
|
1994
1984
|
readonly target: OpensteerTargetInput;
|
|
1995
1985
|
readonly text: string;
|
|
1996
1986
|
readonly pressEnter?: boolean;
|
|
1997
|
-
readonly
|
|
1987
|
+
readonly persist?: string;
|
|
1998
1988
|
readonly captureNetwork?: string;
|
|
1999
1989
|
}
|
|
2000
1990
|
interface OpensteerDomScrollInput {
|
|
2001
1991
|
readonly target: OpensteerTargetInput;
|
|
2002
1992
|
readonly direction: "up" | "down" | "left" | "right";
|
|
2003
1993
|
readonly amount: number;
|
|
2004
|
-
readonly
|
|
1994
|
+
readonly persist?: string;
|
|
2005
1995
|
readonly captureNetwork?: string;
|
|
2006
1996
|
}
|
|
2007
1997
|
interface OpensteerDomExtractInput {
|
|
2008
|
-
readonly
|
|
1998
|
+
readonly persist?: string;
|
|
2009
1999
|
readonly schema?: Readonly<Record<string, unknown>>;
|
|
2010
2000
|
}
|
|
2011
2001
|
interface OpensteerDomExtractOutput {
|
|
@@ -2100,7 +2090,7 @@ interface OpensteerComputerExecuteOutput {
|
|
|
2100
2090
|
readonly timing: OpensteerComputerExecuteTiming;
|
|
2101
2091
|
readonly trace?: OpensteerComputerTraceEnrichment;
|
|
2102
2092
|
}
|
|
2103
|
-
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.
|
|
2093
|
+
declare const opensteerSemanticOperationNames: readonly ["session.open", "page.list", "page.new", "page.activate", "page.close", "page.goto", "page.evaluate", "page.add-init-script", "page.snapshot", "dom.click", "dom.hover", "dom.input", "dom.scroll", "dom.extract", "network.query", "network.detail", "network.replay", "interaction.capture", "interaction.get", "interaction.diff", "interaction.replay", "artifact.read", "session.cookies", "session.storage", "session.state", "session.fetch", "scripts.capture", "scripts.beautify", "scripts.deobfuscate", "scripts.sandbox", "captcha.solve", "computer.execute", "session.close"];
|
|
2104
2094
|
type OpensteerSemanticOperationName = (typeof opensteerSemanticOperationNames)[number];
|
|
2105
2095
|
|
|
2106
2096
|
declare const opensteerSessionGrantKinds: readonly ["semantic", "automation", "view", "cdp"];
|
|
@@ -2153,79 +2143,6 @@ interface OpensteerSessionInfo {
|
|
|
2153
2143
|
readonly runtime?: OpensteerRuntimeVersionInfo;
|
|
2154
2144
|
}
|
|
2155
2145
|
|
|
2156
|
-
type NetworkDiffFieldKind = "added" | "removed" | "changed" | "unchanged";
|
|
2157
|
-
interface NetworkDiffEntropy {
|
|
2158
|
-
readonly left?: number;
|
|
2159
|
-
readonly right?: number;
|
|
2160
|
-
readonly likelyEncrypted: boolean;
|
|
2161
|
-
}
|
|
2162
|
-
interface NetworkDiffField {
|
|
2163
|
-
readonly path: string;
|
|
2164
|
-
readonly kind: NetworkDiffFieldKind;
|
|
2165
|
-
readonly leftValue?: string;
|
|
2166
|
-
readonly rightValue?: string;
|
|
2167
|
-
readonly entropy?: NetworkDiffEntropy;
|
|
2168
|
-
}
|
|
2169
|
-
interface OpensteerNetworkDiffInput {
|
|
2170
|
-
readonly leftRecordId: string;
|
|
2171
|
-
readonly rightRecordId: string;
|
|
2172
|
-
readonly includeUnchanged?: boolean;
|
|
2173
|
-
readonly scope?: "headers" | "body" | "all";
|
|
2174
|
-
}
|
|
2175
|
-
interface OpensteerNetworkDiffOutput {
|
|
2176
|
-
readonly summary: {
|
|
2177
|
-
readonly added: number;
|
|
2178
|
-
readonly removed: number;
|
|
2179
|
-
readonly changed: number;
|
|
2180
|
-
readonly unchanged: number;
|
|
2181
|
-
readonly likelyEncryptedFields: number;
|
|
2182
|
-
};
|
|
2183
|
-
readonly requestDiffs: readonly NetworkDiffField[];
|
|
2184
|
-
readonly responseDiffs: readonly NetworkDiffField[];
|
|
2185
|
-
}
|
|
2186
|
-
|
|
2187
|
-
type MinimizationFieldClassification = "required" | "optional" | "untested";
|
|
2188
|
-
interface MinimizationFieldResult {
|
|
2189
|
-
readonly name: string;
|
|
2190
|
-
readonly location: "header" | "cookie" | "query" | "body-field";
|
|
2191
|
-
readonly classification: MinimizationFieldClassification;
|
|
2192
|
-
readonly originalValue?: string;
|
|
2193
|
-
}
|
|
2194
|
-
interface OpensteerNetworkMinimizeSuccessPolicy {
|
|
2195
|
-
readonly statusCodes?: readonly number[];
|
|
2196
|
-
readonly responseBodyIncludes?: readonly string[];
|
|
2197
|
-
readonly responseStructureMatch?: boolean;
|
|
2198
|
-
}
|
|
2199
|
-
interface OpensteerNetworkMinimizeInput {
|
|
2200
|
-
readonly recordId: string;
|
|
2201
|
-
readonly transport?: TransportKind;
|
|
2202
|
-
readonly successPolicy?: OpensteerNetworkMinimizeSuccessPolicy;
|
|
2203
|
-
readonly maxTrials?: number;
|
|
2204
|
-
readonly preserve?: readonly string[];
|
|
2205
|
-
}
|
|
2206
|
-
interface OpensteerNetworkMinimizeOutput {
|
|
2207
|
-
readonly recordId: string;
|
|
2208
|
-
readonly totalTrials: number;
|
|
2209
|
-
readonly fields: readonly MinimizationFieldResult[];
|
|
2210
|
-
readonly minimizedPlan?: OpensteerWriteRequestPlanInput;
|
|
2211
|
-
}
|
|
2212
|
-
|
|
2213
|
-
type TransportProbeLevel = "direct-http" | "matched-tls" | "context-http" | "page-http" | "session-http";
|
|
2214
|
-
interface OpensteerTransportProbeInput {
|
|
2215
|
-
readonly recordId: string;
|
|
2216
|
-
}
|
|
2217
|
-
interface TransportProbeResult {
|
|
2218
|
-
readonly transport: TransportProbeLevel;
|
|
2219
|
-
readonly status: number | null;
|
|
2220
|
-
readonly success: boolean;
|
|
2221
|
-
readonly durationMs: number;
|
|
2222
|
-
readonly error?: string;
|
|
2223
|
-
}
|
|
2224
|
-
interface OpensteerTransportProbeOutput {
|
|
2225
|
-
readonly results: readonly TransportProbeResult[];
|
|
2226
|
-
readonly recommendation: TransportProbeLevel;
|
|
2227
|
-
}
|
|
2228
|
-
|
|
2229
2146
|
interface OpensteerScriptBeautifyInput {
|
|
2230
2147
|
readonly artifactId?: string;
|
|
2231
2148
|
readonly content?: string;
|
|
@@ -2287,7 +2204,6 @@ interface OpensteerScriptSandboxOutput {
|
|
|
2287
2204
|
type OpensteerStateSourceKind = "temporary" | "persistent" | "attach";
|
|
2288
2205
|
type OpensteerReverseCaseStatus = "capturing" | "analyzing" | "ready" | "attention";
|
|
2289
2206
|
type OpensteerReverseChannelKind = "http" | "event-stream" | "websocket";
|
|
2290
|
-
type OpensteerReverseManualCalibrationMode = "allow" | "avoid" | "require";
|
|
2291
2207
|
type OpensteerReverseCandidateBoundary = "first-party" | "same-site" | "third-party";
|
|
2292
2208
|
type OpensteerReverseAdvisoryTag = "data" | "facet" | "telemetry" | "subscription" | "navigation" | "document" | "route-data" | "search" | "tracking" | "unknown";
|
|
2293
2209
|
type OpensteerReverseConstraintKind = "requires-browser" | "requires-cookie" | "requires-storage" | "requires-script" | "requires-guard" | "requires-live-state" | "opaque-body" | "unsupported";
|
|
@@ -2332,12 +2248,6 @@ interface OpensteerValueTemplateObject {
|
|
|
2332
2248
|
readonly [key: string]: OpensteerValueTemplate;
|
|
2333
2249
|
}
|
|
2334
2250
|
type OpensteerValueTemplate = JsonValue$1 | OpensteerValueReferenceEnvelope | OpensteerValueTemplateObject | readonly OpensteerValueTemplate[];
|
|
2335
|
-
interface OpensteerReverseTargetHints {
|
|
2336
|
-
readonly hosts?: readonly string[];
|
|
2337
|
-
readonly paths?: readonly string[];
|
|
2338
|
-
readonly operationNames?: readonly string[];
|
|
2339
|
-
readonly channels?: readonly OpensteerReverseChannelKind[];
|
|
2340
|
-
}
|
|
2341
2251
|
interface OpensteerBodyCodecDescriptor {
|
|
2342
2252
|
readonly kind: OpensteerBodyCodecKind;
|
|
2343
2253
|
readonly contentType?: string;
|
|
@@ -2741,17 +2651,6 @@ interface OpensteerReverseReportPayload {
|
|
|
2741
2651
|
readonly suggestedEdits?: readonly OpensteerReverseSuggestedEdit[];
|
|
2742
2652
|
readonly package?: OpensteerReversePackageRecord;
|
|
2743
2653
|
}
|
|
2744
|
-
interface OpensteerReverseReportRecord {
|
|
2745
|
-
readonly id: string;
|
|
2746
|
-
readonly key: string;
|
|
2747
|
-
readonly version: string;
|
|
2748
|
-
readonly createdAt: number;
|
|
2749
|
-
readonly updatedAt: number;
|
|
2750
|
-
readonly contentHash: string;
|
|
2751
|
-
readonly tags: readonly string[];
|
|
2752
|
-
readonly provenance?: OpensteerRegistryProvenance;
|
|
2753
|
-
readonly payload: OpensteerReverseReportPayload;
|
|
2754
|
-
}
|
|
2755
2654
|
interface OpensteerReverseObservedRecord {
|
|
2756
2655
|
readonly recordId: string;
|
|
2757
2656
|
readonly observationId: string;
|
|
@@ -2804,173 +2703,6 @@ interface OpensteerReverseQuerySnapshot {
|
|
|
2804
2703
|
readonly nextCursor?: string;
|
|
2805
2704
|
readonly resultIds: readonly string[];
|
|
2806
2705
|
}
|
|
2807
|
-
interface OpensteerReverseQueryRecordItem {
|
|
2808
|
-
readonly record: OpensteerReverseObservedRecord;
|
|
2809
|
-
readonly candidateIds: readonly string[];
|
|
2810
|
-
}
|
|
2811
|
-
interface OpensteerReverseQueryClusterItem {
|
|
2812
|
-
readonly cluster: OpensteerObservationCluster;
|
|
2813
|
-
readonly candidateIds: readonly string[];
|
|
2814
|
-
}
|
|
2815
|
-
interface OpensteerReverseQueryCandidateItem {
|
|
2816
|
-
readonly candidate: OpensteerReverseCandidateRecord;
|
|
2817
|
-
readonly reasons: readonly string[];
|
|
2818
|
-
}
|
|
2819
|
-
interface OpensteerReverseDiscoverInput {
|
|
2820
|
-
readonly caseId?: string;
|
|
2821
|
-
readonly key?: string;
|
|
2822
|
-
readonly objective?: string;
|
|
2823
|
-
readonly notes?: string;
|
|
2824
|
-
readonly tags?: readonly string[];
|
|
2825
|
-
readonly pageRef?: PageRef;
|
|
2826
|
-
readonly stateSource?: OpensteerStateSourceKind;
|
|
2827
|
-
readonly network?: {
|
|
2828
|
-
readonly url?: string;
|
|
2829
|
-
readonly hostname?: string;
|
|
2830
|
-
readonly path?: string;
|
|
2831
|
-
readonly method?: string;
|
|
2832
|
-
readonly resourceType?: string;
|
|
2833
|
-
readonly includeBodies?: boolean;
|
|
2834
|
-
};
|
|
2835
|
-
readonly includeScripts?: boolean;
|
|
2836
|
-
readonly includeStorage?: boolean;
|
|
2837
|
-
readonly includeSessionStorage?: boolean;
|
|
2838
|
-
readonly includeIndexedDb?: boolean;
|
|
2839
|
-
readonly interactionTraceIds?: readonly string[];
|
|
2840
|
-
readonly targetHints?: OpensteerReverseTargetHints;
|
|
2841
|
-
readonly captureWindowMs?: number;
|
|
2842
|
-
readonly manualCalibration?: OpensteerReverseManualCalibrationMode;
|
|
2843
|
-
}
|
|
2844
|
-
interface OpensteerReverseDiscoverOutput {
|
|
2845
|
-
readonly caseId: string;
|
|
2846
|
-
readonly reportId: string;
|
|
2847
|
-
readonly summary: {
|
|
2848
|
-
readonly observationIds: readonly string[];
|
|
2849
|
-
readonly recordCount: number;
|
|
2850
|
-
readonly clusterCount: number;
|
|
2851
|
-
readonly candidateCount: number;
|
|
2852
|
-
};
|
|
2853
|
-
readonly index: {
|
|
2854
|
-
readonly views: readonly OpensteerReverseQueryView[];
|
|
2855
|
-
readonly sortableKeys: readonly OpensteerReverseSortKey[];
|
|
2856
|
-
readonly channels: readonly OpensteerReverseChannelKind[];
|
|
2857
|
-
readonly hosts: readonly string[];
|
|
2858
|
-
readonly relationKinds: readonly OpensteerObservationClusterRelationshipKind[];
|
|
2859
|
-
};
|
|
2860
|
-
}
|
|
2861
|
-
interface OpensteerReverseQueryInput {
|
|
2862
|
-
readonly caseId: string;
|
|
2863
|
-
readonly view?: OpensteerReverseQueryView;
|
|
2864
|
-
readonly filters?: OpensteerReverseQueryFilters;
|
|
2865
|
-
readonly sort?: OpensteerReverseQuerySort;
|
|
2866
|
-
readonly limit?: number;
|
|
2867
|
-
readonly cursor?: string;
|
|
2868
|
-
}
|
|
2869
|
-
interface OpensteerReverseQueryOutput {
|
|
2870
|
-
readonly caseId: string;
|
|
2871
|
-
readonly view: OpensteerReverseQueryView;
|
|
2872
|
-
readonly query: OpensteerReverseQuerySnapshot;
|
|
2873
|
-
readonly totalCount: number;
|
|
2874
|
-
readonly nextCursor?: string;
|
|
2875
|
-
readonly records?: readonly OpensteerReverseQueryRecordItem[];
|
|
2876
|
-
readonly clusters?: readonly OpensteerReverseQueryClusterItem[];
|
|
2877
|
-
readonly candidates?: readonly OpensteerReverseQueryCandidateItem[];
|
|
2878
|
-
}
|
|
2879
|
-
interface OpensteerReversePackageCreateInput {
|
|
2880
|
-
readonly caseId: string;
|
|
2881
|
-
readonly source: {
|
|
2882
|
-
readonly kind: "record" | "candidate";
|
|
2883
|
-
readonly id: string;
|
|
2884
|
-
};
|
|
2885
|
-
readonly templateId?: string;
|
|
2886
|
-
readonly key?: string;
|
|
2887
|
-
readonly version?: string;
|
|
2888
|
-
readonly notes?: string;
|
|
2889
|
-
}
|
|
2890
|
-
interface OpensteerReversePackageCreateOutput {
|
|
2891
|
-
readonly package: OpensteerReversePackageRecord;
|
|
2892
|
-
readonly report: OpensteerReverseReportRecord;
|
|
2893
|
-
}
|
|
2894
|
-
interface OpensteerReversePackageRunInput {
|
|
2895
|
-
readonly packageId: string;
|
|
2896
|
-
readonly pageRef?: PageRef;
|
|
2897
|
-
}
|
|
2898
|
-
interface OpensteerReversePackageRunOutput {
|
|
2899
|
-
readonly packageId: string;
|
|
2900
|
-
readonly caseId?: string;
|
|
2901
|
-
readonly source: {
|
|
2902
|
-
readonly kind: "record" | "candidate";
|
|
2903
|
-
readonly id: string;
|
|
2904
|
-
};
|
|
2905
|
-
readonly candidateId?: string;
|
|
2906
|
-
readonly templateId?: string;
|
|
2907
|
-
readonly success: boolean;
|
|
2908
|
-
readonly kind: OpensteerReversePackageKind;
|
|
2909
|
-
readonly readiness: OpensteerReversePackageReadiness;
|
|
2910
|
-
readonly channel?: OpensteerReverseChannelKind;
|
|
2911
|
-
readonly transport?: TransportKind;
|
|
2912
|
-
readonly stateSource?: OpensteerStateSourceKind;
|
|
2913
|
-
readonly recordId?: string;
|
|
2914
|
-
readonly status?: number;
|
|
2915
|
-
readonly validation: OpensteerReverseReplayValidation;
|
|
2916
|
-
readonly executedStepIds: readonly string[];
|
|
2917
|
-
readonly failedStepId?: string;
|
|
2918
|
-
readonly bindings: Readonly<Record<string, JsonValue$1>>;
|
|
2919
|
-
readonly replayRunId?: string;
|
|
2920
|
-
readonly unresolvedRequirements: readonly OpensteerReverseRequirement[];
|
|
2921
|
-
readonly suggestedEdits: readonly OpensteerReverseSuggestedEdit[];
|
|
2922
|
-
readonly error?: string;
|
|
2923
|
-
}
|
|
2924
|
-
interface OpensteerReverseExportInput {
|
|
2925
|
-
readonly packageId: string;
|
|
2926
|
-
readonly key?: string;
|
|
2927
|
-
readonly version?: string;
|
|
2928
|
-
}
|
|
2929
|
-
interface OpensteerReverseExportOutput {
|
|
2930
|
-
readonly package: OpensteerReversePackageRecord;
|
|
2931
|
-
readonly requestPlan?: OpensteerRequestPlanRecord;
|
|
2932
|
-
}
|
|
2933
|
-
interface OpensteerReverseReportInput {
|
|
2934
|
-
readonly caseId?: string;
|
|
2935
|
-
readonly packageId?: string;
|
|
2936
|
-
readonly reportId?: string;
|
|
2937
|
-
readonly kind?: OpensteerReverseReportKind;
|
|
2938
|
-
}
|
|
2939
|
-
interface OpensteerReverseReportOutput {
|
|
2940
|
-
readonly report: OpensteerReverseReportRecord;
|
|
2941
|
-
}
|
|
2942
|
-
interface OpensteerReversePackageGetInput {
|
|
2943
|
-
readonly packageId: string;
|
|
2944
|
-
}
|
|
2945
|
-
interface OpensteerReversePackageGetOutput {
|
|
2946
|
-
readonly package: OpensteerReversePackageRecord;
|
|
2947
|
-
}
|
|
2948
|
-
interface OpensteerReversePackageListInput {
|
|
2949
|
-
readonly caseId?: string;
|
|
2950
|
-
readonly key?: string;
|
|
2951
|
-
readonly kind?: OpensteerReversePackageKind;
|
|
2952
|
-
readonly readiness?: OpensteerReversePackageReadiness;
|
|
2953
|
-
}
|
|
2954
|
-
interface OpensteerReversePackageListOutput {
|
|
2955
|
-
readonly packages: readonly OpensteerReversePackageRecord[];
|
|
2956
|
-
}
|
|
2957
|
-
interface OpensteerReversePackagePatchInput {
|
|
2958
|
-
readonly packageId: string;
|
|
2959
|
-
readonly key?: string;
|
|
2960
|
-
readonly version?: string;
|
|
2961
|
-
readonly notes?: string;
|
|
2962
|
-
readonly workflow?: readonly OpensteerReverseWorkflowStep[];
|
|
2963
|
-
readonly resolvers?: readonly OpensteerExecutableResolver[];
|
|
2964
|
-
readonly validators?: readonly OpensteerValidationRule[];
|
|
2965
|
-
readonly attachedTraceIds?: readonly string[];
|
|
2966
|
-
readonly attachedArtifactIds?: readonly string[];
|
|
2967
|
-
readonly attachedRecordIds?: readonly string[];
|
|
2968
|
-
readonly stateSnapshotIds?: readonly string[];
|
|
2969
|
-
}
|
|
2970
|
-
interface OpensteerReversePackagePatchOutput {
|
|
2971
|
-
readonly package: OpensteerReversePackageRecord;
|
|
2972
|
-
readonly report: OpensteerReverseReportRecord;
|
|
2973
|
-
}
|
|
2974
2706
|
|
|
2975
2707
|
type OpensteerInteractionCaptureStep = {
|
|
2976
2708
|
readonly kind: "goto";
|
|
@@ -3416,7 +3148,7 @@ interface SavedNetworkQueryInput {
|
|
|
3416
3148
|
readonly hostname?: string;
|
|
3417
3149
|
readonly path?: string;
|
|
3418
3150
|
readonly method?: string;
|
|
3419
|
-
readonly status?: string;
|
|
3151
|
+
readonly status?: string | number;
|
|
3420
3152
|
readonly resourceType?: NetworkResourceType;
|
|
3421
3153
|
readonly includeBodies?: boolean;
|
|
3422
3154
|
readonly limit?: number;
|
|
@@ -3661,7 +3393,7 @@ type ElementPath = ReplayElementPath;
|
|
|
3661
3393
|
interface DomDescriptorPayload {
|
|
3662
3394
|
readonly kind: "dom-target";
|
|
3663
3395
|
readonly method: string;
|
|
3664
|
-
readonly
|
|
3396
|
+
readonly name: string;
|
|
3665
3397
|
readonly path: ReplayElementPath;
|
|
3666
3398
|
readonly sourceUrl?: string;
|
|
3667
3399
|
}
|
|
@@ -3675,28 +3407,28 @@ interface DomDescriptorRecord {
|
|
|
3675
3407
|
}
|
|
3676
3408
|
interface DescriptorTargetRef {
|
|
3677
3409
|
readonly kind: "descriptor";
|
|
3678
|
-
readonly
|
|
3410
|
+
readonly name: string;
|
|
3679
3411
|
}
|
|
3680
3412
|
interface LiveTargetRef {
|
|
3681
3413
|
readonly kind: "live";
|
|
3682
3414
|
readonly locator: NodeLocator;
|
|
3683
3415
|
readonly anchor?: StructuralElementAnchor;
|
|
3684
|
-
readonly
|
|
3416
|
+
readonly persist?: string;
|
|
3685
3417
|
}
|
|
3686
3418
|
interface AnchorTargetRef {
|
|
3687
3419
|
readonly kind: "anchor";
|
|
3688
3420
|
readonly anchor: StructuralElementAnchor;
|
|
3689
|
-
readonly
|
|
3421
|
+
readonly persist?: string;
|
|
3690
3422
|
}
|
|
3691
3423
|
interface PathTargetRef {
|
|
3692
3424
|
readonly kind: "path";
|
|
3693
3425
|
readonly path: ReplayElementPath;
|
|
3694
|
-
readonly
|
|
3426
|
+
readonly persist?: string;
|
|
3695
3427
|
}
|
|
3696
3428
|
interface SelectorTargetRef {
|
|
3697
3429
|
readonly kind: "selector";
|
|
3698
3430
|
readonly selector: string;
|
|
3699
|
-
readonly
|
|
3431
|
+
readonly persist?: string;
|
|
3700
3432
|
readonly frameRef?: FrameRef;
|
|
3701
3433
|
readonly documentRef?: DocumentRef;
|
|
3702
3434
|
}
|
|
@@ -3713,7 +3445,7 @@ interface ResolvedDomTarget {
|
|
|
3713
3445
|
readonly node: DomSnapshotNode;
|
|
3714
3446
|
readonly anchor: StructuralElementAnchor;
|
|
3715
3447
|
readonly replayPath?: ReplayElementPath;
|
|
3716
|
-
readonly
|
|
3448
|
+
readonly persist?: string;
|
|
3717
3449
|
readonly selectorUsed?: string;
|
|
3718
3450
|
readonly descriptor?: DomDescriptorRecord;
|
|
3719
3451
|
}
|
|
@@ -3727,7 +3459,7 @@ interface DomResolveTargetInput {
|
|
|
3727
3459
|
}
|
|
3728
3460
|
interface DomWriteDescriptorInput {
|
|
3729
3461
|
readonly method: string;
|
|
3730
|
-
readonly
|
|
3462
|
+
readonly name: string;
|
|
3731
3463
|
readonly path: ReplayElementPath;
|
|
3732
3464
|
readonly sourceUrl?: string;
|
|
3733
3465
|
readonly createdAt?: number;
|
|
@@ -3735,7 +3467,7 @@ interface DomWriteDescriptorInput {
|
|
|
3735
3467
|
}
|
|
3736
3468
|
interface DomReadDescriptorInput {
|
|
3737
3469
|
readonly method: string;
|
|
3738
|
-
readonly
|
|
3470
|
+
readonly name: string;
|
|
3739
3471
|
}
|
|
3740
3472
|
interface DomActionOutcome {
|
|
3741
3473
|
readonly resolved: ResolvedDomTarget;
|
|
@@ -3835,11 +3567,11 @@ declare function createDomDescriptorStore(options: {
|
|
|
3835
3567
|
readonly root?: FilesystemOpensteerWorkspace;
|
|
3836
3568
|
readonly namespace?: string;
|
|
3837
3569
|
}): DomDescriptorStore;
|
|
3838
|
-
declare function
|
|
3570
|
+
declare function hashDomDescriptorName(name: string): string;
|
|
3839
3571
|
declare function buildDomDescriptorKey(options: {
|
|
3840
3572
|
readonly namespace?: string;
|
|
3841
3573
|
readonly method: string;
|
|
3842
|
-
readonly
|
|
3574
|
+
readonly name: string;
|
|
3843
3575
|
}): string;
|
|
3844
3576
|
declare function buildDomDescriptorPayload(input: DomWriteDescriptorInput): DomDescriptorPayload;
|
|
3845
3577
|
declare function buildDomDescriptorVersion(payload: DomDescriptorPayload): string;
|
|
@@ -3914,7 +3646,7 @@ type PersistedOpensteerExtractionNode = PersistedOpensteerExtractionValueNode |
|
|
|
3914
3646
|
type PersistedOpensteerExtractionPayload = PersistedOpensteerExtractionObjectNode;
|
|
3915
3647
|
interface OpensteerExtractionDescriptorPayload {
|
|
3916
3648
|
readonly kind: "dom-extraction";
|
|
3917
|
-
readonly
|
|
3649
|
+
readonly persist: string;
|
|
3918
3650
|
readonly root: PersistedOpensteerExtractionPayload;
|
|
3919
3651
|
readonly schemaHash?: string;
|
|
3920
3652
|
readonly sourceUrl?: string;
|
|
@@ -3929,10 +3661,10 @@ interface OpensteerExtractionDescriptorRecord {
|
|
|
3929
3661
|
}
|
|
3930
3662
|
interface OpensteerExtractionDescriptorStore {
|
|
3931
3663
|
read(input: {
|
|
3932
|
-
readonly
|
|
3664
|
+
readonly persist: string;
|
|
3933
3665
|
}): Promise<OpensteerExtractionDescriptorRecord | undefined>;
|
|
3934
3666
|
write(input: {
|
|
3935
|
-
readonly
|
|
3667
|
+
readonly persist: string;
|
|
3936
3668
|
readonly root: PersistedOpensteerExtractionPayload;
|
|
3937
3669
|
readonly schemaHash?: string;
|
|
3938
3670
|
readonly sourceUrl?: string;
|
|
@@ -3987,13 +3719,7 @@ interface OpensteerBrowserStatus {
|
|
|
3987
3719
|
readonly mode: "temporary" | "persistent" | "attach";
|
|
3988
3720
|
readonly engine: OpensteerEngineName;
|
|
3989
3721
|
readonly workspace?: string;
|
|
3990
|
-
readonly rootPath: string;
|
|
3991
3722
|
readonly live: boolean;
|
|
3992
|
-
readonly browserPath?: string;
|
|
3993
|
-
readonly userDataDir?: string;
|
|
3994
|
-
readonly endpoint?: string;
|
|
3995
|
-
readonly baseUrl?: string;
|
|
3996
|
-
readonly manifest?: WorkspaceBrowserManifest;
|
|
3997
3723
|
}
|
|
3998
3724
|
interface OpensteerBrowserManagerOptions {
|
|
3999
3725
|
readonly rootDir?: string;
|
|
@@ -4044,63 +3770,6 @@ declare class OpensteerBrowserManager {
|
|
|
4044
3770
|
private requirePersistentMode;
|
|
4045
3771
|
}
|
|
4046
3772
|
|
|
4047
|
-
interface OpensteerRuntimeOptions {
|
|
4048
|
-
readonly workspace?: string;
|
|
4049
|
-
readonly rootDir?: string;
|
|
4050
|
-
readonly rootPath?: string;
|
|
4051
|
-
readonly engineName?: OpensteerEngineName;
|
|
4052
|
-
readonly browser?: OpensteerBrowserOptions;
|
|
4053
|
-
readonly launch?: OpensteerBrowserLaunchOptions;
|
|
4054
|
-
readonly context?: OpensteerBrowserContextOptions;
|
|
4055
|
-
readonly engine?: BrowserCoreEngine;
|
|
4056
|
-
readonly engineFactory?: OpensteerEngineFactory;
|
|
4057
|
-
readonly policy?: OpensteerPolicy;
|
|
4058
|
-
readonly descriptorStore?: DomDescriptorStore$1;
|
|
4059
|
-
readonly extractionDescriptorStore?: OpensteerExtractionDescriptorStore$1;
|
|
4060
|
-
readonly registryOverrides?: {
|
|
4061
|
-
readonly requestPlans?: RequestPlanRegistryStore;
|
|
4062
|
-
readonly authRecipes?: AuthRecipeRegistryStore;
|
|
4063
|
-
readonly recipes?: RecipeRegistryStore;
|
|
4064
|
-
readonly reverseCases?: ReverseCaseRegistryStore;
|
|
4065
|
-
readonly reversePackages?: ReversePackageRegistryStore;
|
|
4066
|
-
};
|
|
4067
|
-
readonly cleanupRootOnClose?: boolean;
|
|
4068
|
-
readonly observability?: Partial<ObservabilityConfig>;
|
|
4069
|
-
readonly observationSessionId?: string;
|
|
4070
|
-
readonly observationSink?: ObservationSink;
|
|
4071
|
-
}
|
|
4072
|
-
interface OpensteerSessionRuntimeOptions {
|
|
4073
|
-
readonly name: string;
|
|
4074
|
-
readonly rootDir?: string;
|
|
4075
|
-
readonly rootPath?: string;
|
|
4076
|
-
readonly engineName?: OpensteerEngineName;
|
|
4077
|
-
readonly browser?: OpensteerBrowserOptions;
|
|
4078
|
-
readonly launch?: OpensteerBrowserLaunchOptions;
|
|
4079
|
-
readonly context?: OpensteerBrowserContextOptions;
|
|
4080
|
-
readonly engine?: BrowserCoreEngine;
|
|
4081
|
-
readonly engineFactory?: OpensteerEngineFactory;
|
|
4082
|
-
readonly policy?: OpensteerPolicy;
|
|
4083
|
-
readonly descriptorStore?: DomDescriptorStore$1;
|
|
4084
|
-
readonly extractionDescriptorStore?: OpensteerExtractionDescriptorStore$1;
|
|
4085
|
-
readonly registryOverrides?: {
|
|
4086
|
-
readonly requestPlans?: RequestPlanRegistryStore;
|
|
4087
|
-
readonly authRecipes?: AuthRecipeRegistryStore;
|
|
4088
|
-
readonly recipes?: RecipeRegistryStore;
|
|
4089
|
-
readonly reverseCases?: ReverseCaseRegistryStore;
|
|
4090
|
-
readonly reversePackages?: ReversePackageRegistryStore;
|
|
4091
|
-
};
|
|
4092
|
-
readonly cleanupRootOnClose?: boolean;
|
|
4093
|
-
readonly observability?: Partial<ObservabilityConfig>;
|
|
4094
|
-
readonly observationSessionId?: string;
|
|
4095
|
-
readonly observationSink?: ObservationSink;
|
|
4096
|
-
}
|
|
4097
|
-
declare class OpensteerRuntime extends OpensteerSessionRuntime$1 {
|
|
4098
|
-
constructor(options?: OpensteerRuntimeOptions);
|
|
4099
|
-
}
|
|
4100
|
-
declare class OpensteerSessionRuntime extends OpensteerSessionRuntime$1 {
|
|
4101
|
-
constructor(options: OpensteerSessionRuntimeOptions);
|
|
4102
|
-
}
|
|
4103
|
-
|
|
4104
3773
|
declare const OPENSTEER_PROVIDER_MODES: readonly ["local", "cloud"];
|
|
4105
3774
|
type OpensteerProviderMode = (typeof OPENSTEER_PROVIDER_MODES)[number];
|
|
4106
3775
|
type OpensteerProviderSource = "explicit" | "env" | "default";
|
|
@@ -4184,10 +3853,53 @@ interface OpensteerInterceptScriptOptions {
|
|
|
4184
3853
|
}) => string | Promise<string>;
|
|
4185
3854
|
}
|
|
4186
3855
|
|
|
3856
|
+
interface OpensteerRuntimeOptions {
|
|
3857
|
+
readonly workspace?: string;
|
|
3858
|
+
readonly rootDir?: string;
|
|
3859
|
+
readonly rootPath?: string;
|
|
3860
|
+
readonly engineName?: OpensteerEngineName;
|
|
3861
|
+
readonly browser?: OpensteerBrowserOptions;
|
|
3862
|
+
readonly launch?: OpensteerBrowserLaunchOptions;
|
|
3863
|
+
readonly context?: OpensteerBrowserContextOptions;
|
|
3864
|
+
readonly engine?: BrowserCoreEngine;
|
|
3865
|
+
readonly engineFactory?: OpensteerEngineFactory;
|
|
3866
|
+
readonly policy?: OpensteerPolicy;
|
|
3867
|
+
readonly descriptorStore?: DomDescriptorStore$1;
|
|
3868
|
+
readonly extractionDescriptorStore?: OpensteerExtractionDescriptorStore$1;
|
|
3869
|
+
readonly cleanupRootOnClose?: boolean;
|
|
3870
|
+
readonly observability?: Partial<ObservabilityConfig>;
|
|
3871
|
+
readonly observationSessionId?: string;
|
|
3872
|
+
readonly observationSink?: ObservationSink;
|
|
3873
|
+
}
|
|
3874
|
+
interface OpensteerSessionRuntimeOptions {
|
|
3875
|
+
readonly name: string;
|
|
3876
|
+
readonly rootDir?: string;
|
|
3877
|
+
readonly rootPath?: string;
|
|
3878
|
+
readonly engineName?: OpensteerEngineName;
|
|
3879
|
+
readonly browser?: OpensteerBrowserOptions;
|
|
3880
|
+
readonly launch?: OpensteerBrowserLaunchOptions;
|
|
3881
|
+
readonly context?: OpensteerBrowserContextOptions;
|
|
3882
|
+
readonly engine?: BrowserCoreEngine;
|
|
3883
|
+
readonly engineFactory?: OpensteerEngineFactory;
|
|
3884
|
+
readonly policy?: OpensteerPolicy;
|
|
3885
|
+
readonly descriptorStore?: DomDescriptorStore$1;
|
|
3886
|
+
readonly extractionDescriptorStore?: OpensteerExtractionDescriptorStore$1;
|
|
3887
|
+
readonly cleanupRootOnClose?: boolean;
|
|
3888
|
+
readonly observability?: Partial<ObservabilityConfig>;
|
|
3889
|
+
readonly observationSessionId?: string;
|
|
3890
|
+
readonly observationSink?: ObservationSink;
|
|
3891
|
+
}
|
|
3892
|
+
declare class OpensteerRuntime extends OpensteerSessionRuntime$1 {
|
|
3893
|
+
constructor(options?: OpensteerRuntimeOptions);
|
|
3894
|
+
}
|
|
3895
|
+
declare class OpensteerSessionRuntime extends OpensteerSessionRuntime$1 {
|
|
3896
|
+
constructor(options: OpensteerSessionRuntimeOptions);
|
|
3897
|
+
}
|
|
3898
|
+
|
|
4187
3899
|
interface OpensteerTargetOptions {
|
|
4188
3900
|
readonly element?: number;
|
|
4189
3901
|
readonly selector?: string;
|
|
4190
|
-
readonly
|
|
3902
|
+
readonly persist?: string;
|
|
4191
3903
|
readonly captureNetwork?: string;
|
|
4192
3904
|
}
|
|
4193
3905
|
interface OpensteerClickOptions extends OpensteerTargetOptions {
|
|
@@ -4204,7 +3916,7 @@ interface OpensteerScrollOptions extends OpensteerTargetOptions {
|
|
|
4204
3916
|
readonly amount: number;
|
|
4205
3917
|
}
|
|
4206
3918
|
interface OpensteerExtractOptions {
|
|
4207
|
-
readonly
|
|
3919
|
+
readonly persist: string;
|
|
4208
3920
|
readonly schema?: Record<string, unknown>;
|
|
4209
3921
|
}
|
|
4210
3922
|
interface OpensteerWaitForNetworkOptions extends OpensteerNetworkQueryInput {
|
|
@@ -4217,66 +3929,35 @@ interface OpensteerWaitForPageOptions {
|
|
|
4217
3929
|
readonly timeoutMs?: number;
|
|
4218
3930
|
readonly pollIntervalMs?: number;
|
|
4219
3931
|
}
|
|
4220
|
-
type
|
|
4221
|
-
type
|
|
4222
|
-
type OpensteerSnapshotResult = OpensteerPageSnapshotOutput;
|
|
4223
|
-
type OpensteerComputerExecuteOptions = OpensteerComputerExecuteInput;
|
|
4224
|
-
type OpensteerComputerExecuteResult = OpensteerComputerExecuteOutput;
|
|
3932
|
+
type OpensteerAddInitScriptOptions = OpensteerAddInitScriptInput;
|
|
3933
|
+
type OpensteerGotoOptions = Omit<OpensteerPageGotoInput, "url">;
|
|
4225
3934
|
type OpensteerNetworkQueryOptions = OpensteerNetworkQueryInput;
|
|
4226
3935
|
type OpensteerNetworkQueryResult = OpensteerNetworkQueryOutput;
|
|
4227
|
-
type
|
|
4228
|
-
type
|
|
4229
|
-
type
|
|
4230
|
-
type
|
|
4231
|
-
type
|
|
4232
|
-
type
|
|
4233
|
-
type
|
|
4234
|
-
|
|
4235
|
-
|
|
4236
|
-
|
|
4237
|
-
|
|
4238
|
-
|
|
4239
|
-
|
|
4240
|
-
|
|
4241
|
-
|
|
4242
|
-
|
|
4243
|
-
|
|
4244
|
-
|
|
4245
|
-
|
|
4246
|
-
|
|
4247
|
-
|
|
4248
|
-
|
|
4249
|
-
|
|
4250
|
-
|
|
4251
|
-
|
|
4252
|
-
type OpensteerReversePackagePatchResult = OpensteerReversePackagePatchOutput;
|
|
4253
|
-
type OpensteerInteractionCaptureOptions = OpensteerInteractionCaptureInput;
|
|
4254
|
-
type OpensteerInteractionCaptureResult = OpensteerInteractionCaptureOutput;
|
|
4255
|
-
type OpensteerInteractionGetOptions = OpensteerInteractionGetInput;
|
|
4256
|
-
type OpensteerInteractionGetResult = OpensteerInteractionGetOutput;
|
|
4257
|
-
type OpensteerInteractionDiffOptions = OpensteerInteractionDiffInput;
|
|
4258
|
-
type OpensteerInteractionDiffResult = OpensteerInteractionDiffOutput;
|
|
4259
|
-
type OpensteerInteractionReplayOptions = OpensteerInteractionReplayInput;
|
|
4260
|
-
type OpensteerInteractionReplayResult = OpensteerInteractionReplayOutput;
|
|
4261
|
-
type OpensteerNetworkClearOptions = OpensteerNetworkClearInput;
|
|
4262
|
-
type OpensteerNetworkClearResult = OpensteerNetworkClearOutput;
|
|
4263
|
-
type OpensteerRawRequestOptions = OpensteerRawRequestInput;
|
|
4264
|
-
type OpensteerRawRequestResult = OpensteerRawRequestOutput;
|
|
4265
|
-
type OpensteerRequestOptions = Omit<OpensteerRequestExecuteInput, "key">;
|
|
4266
|
-
type OpensteerRequestResult = OpensteerRequestExecuteOutput;
|
|
4267
|
-
type OpensteerCaptureScriptsOptions = OpensteerCaptureScriptsInput;
|
|
4268
|
-
type OpensteerCaptureScriptsResult = OpensteerCaptureScriptsOutput;
|
|
4269
|
-
type OpensteerScriptBeautifyOptions = OpensteerScriptBeautifyInput;
|
|
4270
|
-
type OpensteerScriptBeautifyResult = OpensteerScriptBeautifyOutput;
|
|
4271
|
-
type OpensteerScriptDeobfuscateOptions = OpensteerScriptDeobfuscateInput;
|
|
4272
|
-
type OpensteerScriptDeobfuscateResult = OpensteerScriptDeobfuscateOutput;
|
|
4273
|
-
type OpensteerScriptSandboxOptions = OpensteerScriptSandboxInput;
|
|
4274
|
-
type OpensteerScriptSandboxResult = OpensteerScriptSandboxOutput;
|
|
4275
|
-
type OpensteerArtifactReadOptions = OpensteerArtifactReadInput;
|
|
4276
|
-
type OpensteerArtifactReadResult = OpensteerArtifactReadOutput;
|
|
4277
|
-
type OpensteerCaptchaSolveOptions = OpensteerCaptchaSolveInput;
|
|
4278
|
-
type OpensteerCaptchaSolveResult = OpensteerCaptchaSolveOutput;
|
|
4279
|
-
type OpensteerAddInitScriptOptions = OpensteerAddInitScriptInput;
|
|
3936
|
+
type OpensteerNetworkDetailResult = OpensteerNetworkDetailOutput;
|
|
3937
|
+
type OpensteerNetworkReplayOptions = Omit<OpensteerNetworkReplayInput, "recordId">;
|
|
3938
|
+
type OpensteerNetworkReplayResult = OpensteerNetworkReplayOutput;
|
|
3939
|
+
type OpensteerFetchOptions = Omit<OpensteerSessionFetchInput, "url">;
|
|
3940
|
+
type OpensteerComputerExecuteOptions = OpensteerComputerExecuteInput;
|
|
3941
|
+
type OpensteerStorageMap = Readonly<Record<string, string>>;
|
|
3942
|
+
type OpensteerBrowserState = OpensteerStateQueryOutput;
|
|
3943
|
+
interface OpensteerCookieJar {
|
|
3944
|
+
readonly domain?: string;
|
|
3945
|
+
has(name: string): boolean;
|
|
3946
|
+
get(name: string): string | undefined;
|
|
3947
|
+
getAll(): readonly CookieRecord[];
|
|
3948
|
+
serialize(): string;
|
|
3949
|
+
}
|
|
3950
|
+
interface OpensteerDomController {
|
|
3951
|
+
click(input: OpensteerClickOptions): Promise<OpensteerActionResult>;
|
|
3952
|
+
hover(input: OpensteerTargetOptions): Promise<OpensteerActionResult>;
|
|
3953
|
+
input(input: OpensteerInputOptions): Promise<OpensteerActionResult>;
|
|
3954
|
+
scroll(input: OpensteerScrollOptions): Promise<OpensteerActionResult>;
|
|
3955
|
+
}
|
|
3956
|
+
interface OpensteerNetworkController {
|
|
3957
|
+
query(input?: OpensteerNetworkQueryOptions): Promise<OpensteerNetworkQueryResult>;
|
|
3958
|
+
detail(recordId: string): Promise<OpensteerNetworkDetailResult>;
|
|
3959
|
+
replay(recordId: string, overrides?: OpensteerNetworkReplayOptions): Promise<OpensteerNetworkReplayResult>;
|
|
3960
|
+
}
|
|
4280
3961
|
interface OpensteerOptions extends OpensteerRuntimeOptions {
|
|
4281
3962
|
readonly provider?: OpensteerProviderOptions;
|
|
4282
3963
|
}
|
|
@@ -4294,6 +3975,8 @@ declare class Opensteer {
|
|
|
4294
3975
|
private readonly runtime;
|
|
4295
3976
|
private readonly browserManager;
|
|
4296
3977
|
readonly browser: OpensteerBrowserController;
|
|
3978
|
+
readonly dom: OpensteerDomController;
|
|
3979
|
+
readonly network: OpensteerNetworkController;
|
|
4297
3980
|
constructor(options?: OpensteerOptions);
|
|
4298
3981
|
open(input?: string | OpensteerOpenInput): Promise<OpensteerOpenOutput>;
|
|
4299
3982
|
info(): Promise<OpensteerSessionInfo>;
|
|
@@ -4301,7 +3984,7 @@ declare class Opensteer {
|
|
|
4301
3984
|
newPage(input?: OpensteerPageNewInput): Promise<OpensteerPageNewOutput>;
|
|
4302
3985
|
activatePage(input: OpensteerPageActivateInput): Promise<OpensteerPageActivateOutput>;
|
|
4303
3986
|
closePage(input?: OpensteerPageCloseInput): Promise<OpensteerPageCloseOutput>;
|
|
4304
|
-
goto(
|
|
3987
|
+
goto(url: string, options?: OpensteerGotoOptions): Promise<OpensteerPageGotoOutput>;
|
|
4305
3988
|
evaluate(input: string | OpensteerPageEvaluateInput): Promise<OpensteerPageEvaluateOutput["value"]>;
|
|
4306
3989
|
evaluateJson(input: string | OpensteerPageEvaluateInput): Promise<OpensteerPageEvaluateOutput["value"]>;
|
|
4307
3990
|
addInitScript(input: string | OpensteerAddInitScriptInput): Promise<OpensteerAddInitScriptOutput>;
|
|
@@ -4309,60 +3992,19 @@ declare class Opensteer {
|
|
|
4309
3992
|
hover(input: OpensteerTargetOptions): Promise<OpensteerActionResult>;
|
|
4310
3993
|
input(input: OpensteerInputOptions): Promise<OpensteerActionResult>;
|
|
4311
3994
|
scroll(input: OpensteerScrollOptions): Promise<OpensteerActionResult>;
|
|
4312
|
-
extract(input: OpensteerExtractOptions): Promise<
|
|
3995
|
+
extract(input: OpensteerExtractOptions): Promise<unknown>;
|
|
4313
3996
|
queryNetwork(input?: OpensteerNetworkQueryOptions): Promise<OpensteerNetworkQueryResult>;
|
|
4314
3997
|
waitForNetwork(input: OpensteerWaitForNetworkOptions): Promise<OpensteerNetworkQueryResult["records"][number]>;
|
|
4315
3998
|
waitForResponse(input: OpensteerWaitForNetworkOptions): Promise<OpensteerNetworkQueryResult["records"][number]>;
|
|
4316
3999
|
waitForPage(input?: OpensteerWaitForPageOptions): Promise<OpensteerPageListOutput["pages"][number]>;
|
|
4317
|
-
snapshot(
|
|
4318
|
-
|
|
4319
|
-
|
|
4320
|
-
|
|
4321
|
-
|
|
4322
|
-
|
|
4323
|
-
reverseQuery(input: OpensteerReverseQueryOptions): Promise<OpensteerReverseQueryResult>;
|
|
4324
|
-
createReversePackage(input: OpensteerReversePackageCreateOptions): Promise<OpensteerReversePackageCreateResult>;
|
|
4325
|
-
runReversePackage(input: OpensteerReversePackageRunOptions): Promise<OpensteerReversePackageRunResult>;
|
|
4326
|
-
reverseExport(input: OpensteerReverseExportOptions): Promise<OpensteerReverseExportResult>;
|
|
4327
|
-
reverseReport(input: OpensteerReverseReportOptions): Promise<OpensteerReverseReportResult>;
|
|
4328
|
-
getReversePackage(input: OpensteerReversePackageGetOptions): Promise<OpensteerReversePackageGetResult>;
|
|
4329
|
-
listReversePackages(input?: OpensteerReversePackageListOptions): Promise<OpensteerReversePackageListResult>;
|
|
4330
|
-
patchReversePackage(input: OpensteerReversePackagePatchOptions): Promise<OpensteerReversePackagePatchResult>;
|
|
4331
|
-
interactionCapture(input: OpensteerInteractionCaptureOptions): Promise<OpensteerInteractionCaptureResult>;
|
|
4332
|
-
getInteraction(input: OpensteerInteractionGetOptions): Promise<OpensteerInteractionGetResult>;
|
|
4333
|
-
interactionDiff(input: OpensteerInteractionDiffOptions): Promise<OpensteerInteractionDiffResult>;
|
|
4334
|
-
interactionReplay(input: OpensteerInteractionReplayOptions): Promise<OpensteerInteractionReplayResult>;
|
|
4335
|
-
clearNetwork(input?: OpensteerNetworkClearOptions): Promise<OpensteerNetworkClearResult>;
|
|
4336
|
-
captureScripts(input?: OpensteerCaptureScriptsOptions): Promise<OpensteerCaptureScriptsResult>;
|
|
4337
|
-
readArtifact(input: OpensteerArtifactReadOptions): Promise<OpensteerArtifactReadResult>;
|
|
4338
|
-
beautifyScript(input: OpensteerScriptBeautifyOptions): Promise<OpensteerScriptBeautifyResult>;
|
|
4339
|
-
deobfuscateScript(input: OpensteerScriptDeobfuscateOptions): Promise<OpensteerScriptDeobfuscateResult>;
|
|
4340
|
-
sandboxScript(input: OpensteerScriptSandboxOptions): Promise<OpensteerScriptSandboxResult>;
|
|
4341
|
-
solveCaptcha(input: OpensteerCaptchaSolveOptions): Promise<OpensteerCaptchaSolveResult>;
|
|
4342
|
-
getCookies(input?: {
|
|
4343
|
-
readonly urls?: readonly string[];
|
|
4344
|
-
}): Promise<readonly CookieRecord[]>;
|
|
4345
|
-
getStorageSnapshot(input?: {
|
|
4346
|
-
readonly includeSessionStorage?: boolean;
|
|
4347
|
-
readonly includeIndexedDb?: boolean;
|
|
4348
|
-
}): Promise<StorageSnapshot>;
|
|
4349
|
-
writeRequestPlan(input: OpensteerWriteRequestPlanInput): Promise<RequestPlanRecord>;
|
|
4350
|
-
inferRequestPlan(input: OpensteerInferRequestPlanInput): Promise<RequestPlanRecord>;
|
|
4351
|
-
getRequestPlan(input: OpensteerGetRequestPlanInput): Promise<RequestPlanRecord>;
|
|
4352
|
-
listRequestPlans(input?: OpensteerListRequestPlansInput): Promise<OpensteerListRequestPlansOutput>;
|
|
4353
|
-
writeAuthRecipe(input: OpensteerWriteAuthRecipeInput): Promise<AuthRecipeRecord>;
|
|
4354
|
-
writeRecipe(input: OpensteerWriteRecipeInput): Promise<RecipeRecord>;
|
|
4355
|
-
getAuthRecipe(input: OpensteerGetAuthRecipeInput): Promise<AuthRecipeRecord>;
|
|
4356
|
-
getRecipe(input: OpensteerGetRecipeInput): Promise<RecipeRecord>;
|
|
4357
|
-
listAuthRecipes(input?: OpensteerListAuthRecipesInput): Promise<OpensteerListAuthRecipesOutput>;
|
|
4358
|
-
listRecipes(input?: OpensteerListRecipesInput): Promise<OpensteerListRecipesOutput>;
|
|
4359
|
-
runAuthRecipe(input: OpensteerRunAuthRecipeInput): Promise<OpensteerRunAuthRecipeOutput>;
|
|
4360
|
-
runRecipe(input: OpensteerRunRecipeInput): Promise<OpensteerRunRecipeOutput>;
|
|
4361
|
-
request(key: string, input?: OpensteerRequestOptions): Promise<OpensteerRequestResult>;
|
|
4362
|
-
rawRequest(input: OpensteerRawRequestOptions): Promise<OpensteerRawRequestResult>;
|
|
4000
|
+
snapshot(mode?: OpensteerSnapshotMode): Promise<string>;
|
|
4001
|
+
cookies(domain?: string): Promise<OpensteerCookieJar>;
|
|
4002
|
+
storage(domain?: string, type?: OpensteerStorageArea): Promise<OpensteerStorageMap>;
|
|
4003
|
+
state(domain?: string): Promise<OpensteerBrowserState>;
|
|
4004
|
+
fetch(url: string, options?: OpensteerFetchOptions): Promise<Response>;
|
|
4005
|
+
computerExecute(input: OpensteerComputerExecuteOptions): Promise<OpensteerComputerExecuteOutput>;
|
|
4363
4006
|
route(input: OpensteerRouteOptions): Promise<OpensteerRouteRegistration>;
|
|
4364
4007
|
interceptScript(input: OpensteerInterceptScriptOptions): Promise<OpensteerRouteRegistration>;
|
|
4365
|
-
computerExecute(input: OpensteerComputerExecuteOptions): Promise<OpensteerComputerExecuteResult>;
|
|
4366
4008
|
close(): Promise<OpensteerSessionCloseOutput>;
|
|
4367
4009
|
disconnect(): Promise<void>;
|
|
4368
4010
|
private requireOwnedInstrumentationRuntime;
|
|
@@ -4401,51 +4043,24 @@ interface OpensteerSemanticRuntime {
|
|
|
4401
4043
|
scroll(input: OpensteerDomScrollInput, options?: OpensteerRuntimeOperationOptions): Promise<OpensteerActionResult>;
|
|
4402
4044
|
extract(input: OpensteerDomExtractInput, options?: OpensteerRuntimeOperationOptions): Promise<OpensteerDomExtractOutput>;
|
|
4403
4045
|
queryNetwork(input?: OpensteerNetworkQueryInput, options?: OpensteerRuntimeOperationOptions): Promise<OpensteerNetworkQueryOutput>;
|
|
4404
|
-
|
|
4405
|
-
|
|
4406
|
-
|
|
4407
|
-
|
|
4408
|
-
discoverReverse(input: OpensteerReverseDiscoverInput, options?: OpensteerRuntimeOperationOptions): Promise<OpensteerReverseDiscoverOutput>;
|
|
4409
|
-
queryReverse(input: OpensteerReverseQueryInput, options?: OpensteerRuntimeOperationOptions): Promise<OpensteerReverseQueryOutput>;
|
|
4410
|
-
createReversePackage(input: OpensteerReversePackageCreateInput, options?: OpensteerRuntimeOperationOptions): Promise<OpensteerReversePackageCreateOutput>;
|
|
4411
|
-
runReversePackage(input: OpensteerReversePackageRunInput, options?: OpensteerRuntimeOperationOptions): Promise<OpensteerReversePackageRunOutput>;
|
|
4412
|
-
exportReverse(input: OpensteerReverseExportInput, options?: OpensteerRuntimeOperationOptions): Promise<OpensteerReverseExportOutput>;
|
|
4413
|
-
getReverseReport(input: OpensteerReverseReportInput, options?: OpensteerRuntimeOperationOptions): Promise<OpensteerReverseReportOutput>;
|
|
4414
|
-
getReversePackage(input: OpensteerReversePackageGetInput, options?: OpensteerRuntimeOperationOptions): Promise<OpensteerReversePackageGetOutput>;
|
|
4415
|
-
listReversePackages(input?: OpensteerReversePackageListInput, options?: OpensteerRuntimeOperationOptions): Promise<OpensteerReversePackageListOutput>;
|
|
4416
|
-
patchReversePackage(input: OpensteerReversePackagePatchInput, options?: OpensteerRuntimeOperationOptions): Promise<OpensteerReversePackagePatchOutput>;
|
|
4046
|
+
getNetworkDetail(input: {
|
|
4047
|
+
readonly recordId: string;
|
|
4048
|
+
}, options?: OpensteerRuntimeOperationOptions): Promise<OpensteerNetworkDetailOutput>;
|
|
4049
|
+
replayNetwork(input: OpensteerNetworkReplayInput, options?: OpensteerRuntimeOperationOptions): Promise<OpensteerNetworkReplayOutput>;
|
|
4417
4050
|
captureInteraction(input: OpensteerInteractionCaptureInput, options?: OpensteerRuntimeOperationOptions): Promise<OpensteerInteractionCaptureOutput>;
|
|
4418
4051
|
getInteraction(input: OpensteerInteractionGetInput, options?: OpensteerRuntimeOperationOptions): Promise<OpensteerInteractionGetOutput>;
|
|
4419
4052
|
diffInteraction(input: OpensteerInteractionDiffInput, options?: OpensteerRuntimeOperationOptions): Promise<OpensteerInteractionDiffOutput>;
|
|
4420
4053
|
replayInteraction(input: OpensteerInteractionReplayInput, options?: OpensteerRuntimeOperationOptions): Promise<OpensteerInteractionReplayOutput>;
|
|
4421
|
-
clearNetwork(input?: OpensteerNetworkClearInput, options?: OpensteerRuntimeOperationOptions): Promise<OpensteerNetworkClearOutput>;
|
|
4422
4054
|
captureScripts(input?: OpensteerCaptureScriptsInput, options?: OpensteerRuntimeOperationOptions): Promise<OpensteerCaptureScriptsOutput>;
|
|
4423
4055
|
readArtifact(input: OpensteerArtifactReadInput, options?: OpensteerRuntimeOperationOptions): Promise<OpensteerArtifactReadOutput>;
|
|
4424
4056
|
beautifyScript(input: OpensteerScriptBeautifyInput, options?: OpensteerRuntimeOperationOptions): Promise<OpensteerScriptBeautifyOutput>;
|
|
4425
4057
|
deobfuscateScript(input: OpensteerScriptDeobfuscateInput, options?: OpensteerRuntimeOperationOptions): Promise<OpensteerScriptDeobfuscateOutput>;
|
|
4426
4058
|
sandboxScript(input: OpensteerScriptSandboxInput, options?: OpensteerRuntimeOperationOptions): Promise<OpensteerScriptSandboxOutput>;
|
|
4427
4059
|
solveCaptcha(input: OpensteerCaptchaSolveInput, options?: OpensteerRuntimeOperationOptions): Promise<OpensteerCaptchaSolveOutput>;
|
|
4428
|
-
getCookies(input?:
|
|
4429
|
-
|
|
4430
|
-
|
|
4431
|
-
|
|
4432
|
-
readonly includeSessionStorage?: boolean;
|
|
4433
|
-
readonly includeIndexedDb?: boolean;
|
|
4434
|
-
}, options?: OpensteerRuntimeOperationOptions): Promise<StorageSnapshot>;
|
|
4435
|
-
rawRequest(input: OpensteerRawRequestInput, options?: OpensteerRuntimeOperationOptions): Promise<OpensteerRawRequestOutput>;
|
|
4436
|
-
inferRequestPlan(input: OpensteerInferRequestPlanInput, options?: OpensteerRuntimeOperationOptions): Promise<RequestPlanRecord>;
|
|
4437
|
-
writeRequestPlan(input: OpensteerWriteRequestPlanInput, options?: OpensteerRuntimeOperationOptions): Promise<RequestPlanRecord>;
|
|
4438
|
-
getRequestPlan(input: OpensteerGetRequestPlanInput, options?: OpensteerRuntimeOperationOptions): Promise<RequestPlanRecord>;
|
|
4439
|
-
listRequestPlans(input?: OpensteerListRequestPlansInput, options?: OpensteerRuntimeOperationOptions): Promise<OpensteerListRequestPlansOutput>;
|
|
4440
|
-
writeAuthRecipe(input: OpensteerWriteAuthRecipeInput, options?: OpensteerRuntimeOperationOptions): Promise<AuthRecipeRecord>;
|
|
4441
|
-
writeRecipe(input: OpensteerWriteRecipeInput, options?: OpensteerRuntimeOperationOptions): Promise<RecipeRecord>;
|
|
4442
|
-
getAuthRecipe(input: OpensteerGetAuthRecipeInput, options?: OpensteerRuntimeOperationOptions): Promise<AuthRecipeRecord>;
|
|
4443
|
-
getRecipe(input: OpensteerGetRecipeInput, options?: OpensteerRuntimeOperationOptions): Promise<RecipeRecord>;
|
|
4444
|
-
listAuthRecipes(input?: OpensteerListAuthRecipesInput, options?: OpensteerRuntimeOperationOptions): Promise<OpensteerListAuthRecipesOutput>;
|
|
4445
|
-
listRecipes(input?: OpensteerListRecipesInput, options?: OpensteerRuntimeOperationOptions): Promise<OpensteerListRecipesOutput>;
|
|
4446
|
-
runAuthRecipe(input: OpensteerRunAuthRecipeInput, options?: OpensteerRuntimeOperationOptions): Promise<OpensteerRunAuthRecipeOutput>;
|
|
4447
|
-
runRecipe(input: OpensteerRunRecipeInput, options?: OpensteerRuntimeOperationOptions): Promise<OpensteerRunRecipeOutput>;
|
|
4448
|
-
request(input: OpensteerRequestExecuteInput, options?: OpensteerRuntimeOperationOptions): Promise<OpensteerRequestExecuteOutput>;
|
|
4060
|
+
getCookies(input?: OpensteerCookieQueryInput, options?: OpensteerRuntimeOperationOptions): Promise<OpensteerCookieQueryOutput>;
|
|
4061
|
+
getStorageSnapshot(input?: OpensteerStorageQueryInput, options?: OpensteerRuntimeOperationOptions): Promise<OpensteerStorageQueryOutput>;
|
|
4062
|
+
getBrowserState(input?: OpensteerStateQueryInput, options?: OpensteerRuntimeOperationOptions): Promise<OpensteerStateQueryOutput>;
|
|
4063
|
+
fetch(input: OpensteerSessionFetchInput, options?: OpensteerRuntimeOperationOptions): Promise<OpensteerSessionFetchOutput>;
|
|
4449
4064
|
computerExecute(input: OpensteerComputerExecuteInput, options?: OpensteerRuntimeOperationOptions): Promise<OpensteerComputerExecuteOutput>;
|
|
4450
4065
|
close(options?: OpensteerRuntimeOperationOptions): Promise<OpensteerSessionCloseOutput>;
|
|
4451
4066
|
}
|
|
@@ -4522,11 +4137,6 @@ declare class OpensteerCloudClient {
|
|
|
4522
4137
|
syncBrowserProfileCookies(input: SyncBrowserProfileCookiesInput): Promise<BrowserProfileImportDescriptor>;
|
|
4523
4138
|
importSelectorCache(entries: readonly CloudSelectorCacheImportEntry[]): Promise<CloudSelectorCacheImportResponse>;
|
|
4524
4139
|
importDescriptors(entries: readonly CloudRegistryImportEntry[]): Promise<CloudRegistryImportResponse>;
|
|
4525
|
-
importRequestPlans(entries: readonly CloudRequestPlanImportEntry[]): Promise<CloudRegistryImportResponse>;
|
|
4526
|
-
importRecipes(entries: readonly CloudRegistryImportEntry[]): Promise<CloudRegistryImportResponse>;
|
|
4527
|
-
importAuthRecipes(entries: readonly CloudRegistryImportEntry[]): Promise<CloudRegistryImportResponse>;
|
|
4528
|
-
importReverseCases(entries: readonly CloudRegistryImportEntry[]): Promise<CloudRegistryImportResponse>;
|
|
4529
|
-
importReversePackages(entries: readonly CloudRegistryImportEntry[]): Promise<CloudRegistryImportResponse>;
|
|
4530
4140
|
buildAuthorizationHeader(): string;
|
|
4531
4141
|
private buildHeaders;
|
|
4532
4142
|
private request;
|
|
@@ -4609,53 +4219,26 @@ declare class CloudSessionProxy implements OpensteerDisconnectableRuntime {
|
|
|
4609
4219
|
scroll(input: OpensteerDomScrollInput): Promise<OpensteerActionResult>;
|
|
4610
4220
|
extract(input: OpensteerDomExtractInput): Promise<OpensteerDomExtractOutput>;
|
|
4611
4221
|
queryNetwork(input?: OpensteerNetworkQueryInput): Promise<OpensteerNetworkQueryOutput>;
|
|
4612
|
-
|
|
4613
|
-
|
|
4614
|
-
|
|
4615
|
-
|
|
4616
|
-
discoverReverse(input: OpensteerReverseDiscoverInput): Promise<OpensteerReverseDiscoverOutput>;
|
|
4617
|
-
queryReverse(input: OpensteerReverseQueryInput): Promise<OpensteerReverseQueryOutput>;
|
|
4618
|
-
createReversePackage(input: OpensteerReversePackageCreateInput): Promise<OpensteerReversePackageCreateOutput>;
|
|
4619
|
-
runReversePackage(input: OpensteerReversePackageRunInput): Promise<OpensteerReversePackageRunOutput>;
|
|
4620
|
-
exportReverse(input: OpensteerReverseExportInput): Promise<OpensteerReverseExportOutput>;
|
|
4621
|
-
getReverseReport(input: OpensteerReverseReportInput): Promise<OpensteerReverseReportOutput>;
|
|
4622
|
-
getReversePackage(input: OpensteerReversePackageGetInput): Promise<OpensteerReversePackageGetOutput>;
|
|
4623
|
-
listReversePackages(input?: OpensteerReversePackageListInput): Promise<OpensteerReversePackageListOutput>;
|
|
4624
|
-
patchReversePackage(input: OpensteerReversePackagePatchInput): Promise<OpensteerReversePackagePatchOutput>;
|
|
4222
|
+
getNetworkDetail(input: {
|
|
4223
|
+
readonly recordId: string;
|
|
4224
|
+
}): Promise<OpensteerNetworkDetailOutput>;
|
|
4225
|
+
replayNetwork(input: OpensteerNetworkReplayInput): Promise<OpensteerNetworkReplayOutput>;
|
|
4625
4226
|
captureInteraction(input: OpensteerInteractionCaptureInput): Promise<OpensteerInteractionCaptureOutput>;
|
|
4626
4227
|
getInteraction(input: OpensteerInteractionGetInput): Promise<OpensteerInteractionGetOutput>;
|
|
4627
4228
|
diffInteraction(input: OpensteerInteractionDiffInput): Promise<OpensteerInteractionDiffOutput>;
|
|
4628
4229
|
replayInteraction(input: OpensteerInteractionReplayInput): Promise<OpensteerInteractionReplayOutput>;
|
|
4629
|
-
clearNetwork(input?: OpensteerNetworkClearInput): Promise<OpensteerNetworkClearOutput>;
|
|
4630
4230
|
captureScripts(input?: OpensteerCaptureScriptsInput): Promise<OpensteerCaptureScriptsOutput>;
|
|
4631
4231
|
readArtifact(input: OpensteerArtifactReadInput): Promise<OpensteerArtifactReadOutput>;
|
|
4632
4232
|
beautifyScript(input: OpensteerScriptBeautifyInput): Promise<OpensteerScriptBeautifyOutput>;
|
|
4633
4233
|
deobfuscateScript(input: OpensteerScriptDeobfuscateInput): Promise<OpensteerScriptDeobfuscateOutput>;
|
|
4634
4234
|
sandboxScript(input: OpensteerScriptSandboxInput): Promise<OpensteerScriptSandboxOutput>;
|
|
4635
4235
|
solveCaptcha(input: OpensteerCaptchaSolveInput): Promise<OpensteerCaptchaSolveOutput>;
|
|
4636
|
-
getCookies(input?:
|
|
4637
|
-
readonly urls?: readonly string[];
|
|
4638
|
-
}): Promise<readonly CookieRecord[]>;
|
|
4236
|
+
getCookies(input?: OpensteerCookieQueryInput): Promise<OpensteerCookieQueryOutput>;
|
|
4639
4237
|
route(input: OpensteerRouteOptions): Promise<OpensteerRouteRegistration>;
|
|
4640
4238
|
interceptScript(input: OpensteerInterceptScriptOptions): Promise<OpensteerRouteRegistration>;
|
|
4641
|
-
getStorageSnapshot(input?:
|
|
4642
|
-
|
|
4643
|
-
|
|
4644
|
-
}): Promise<StorageSnapshot>;
|
|
4645
|
-
rawRequest(input: OpensteerRawRequestInput): Promise<OpensteerRawRequestOutput>;
|
|
4646
|
-
inferRequestPlan(input: OpensteerInferRequestPlanInput): Promise<RequestPlanRecord>;
|
|
4647
|
-
writeRequestPlan(input: OpensteerWriteRequestPlanInput): Promise<RequestPlanRecord>;
|
|
4648
|
-
getRequestPlan(input: OpensteerGetRequestPlanInput): Promise<RequestPlanRecord>;
|
|
4649
|
-
listRequestPlans(input?: OpensteerListRequestPlansInput): Promise<OpensteerListRequestPlansOutput>;
|
|
4650
|
-
writeAuthRecipe(input: OpensteerWriteAuthRecipeInput): Promise<AuthRecipeRecord>;
|
|
4651
|
-
writeRecipe(input: OpensteerWriteRecipeInput): Promise<RecipeRecord>;
|
|
4652
|
-
getAuthRecipe(input: OpensteerGetAuthRecipeInput): Promise<AuthRecipeRecord>;
|
|
4653
|
-
getRecipe(input: OpensteerGetRecipeInput): Promise<RecipeRecord>;
|
|
4654
|
-
listAuthRecipes(input?: OpensteerListAuthRecipesInput): Promise<OpensteerListAuthRecipesOutput>;
|
|
4655
|
-
listRecipes(input?: OpensteerListRecipesInput): Promise<OpensteerListRecipesOutput>;
|
|
4656
|
-
runAuthRecipe(input: OpensteerRunAuthRecipeInput): Promise<OpensteerRunAuthRecipeOutput>;
|
|
4657
|
-
runRecipe(input: OpensteerRunRecipeInput): Promise<OpensteerRunRecipeOutput>;
|
|
4658
|
-
request(input: OpensteerRequestExecuteInput): Promise<OpensteerRequestExecuteOutput>;
|
|
4239
|
+
getStorageSnapshot(input?: OpensteerStorageQueryInput): Promise<OpensteerStorageQueryOutput>;
|
|
4240
|
+
getBrowserState(input?: OpensteerStateQueryInput): Promise<OpensteerStateQueryOutput>;
|
|
4241
|
+
fetch(input: OpensteerSessionFetchInput): Promise<OpensteerSessionFetchOutput>;
|
|
4659
4242
|
computerExecute(input: OpensteerComputerExecuteInput): Promise<OpensteerComputerExecuteOutput>;
|
|
4660
4243
|
close(): Promise<OpensteerSessionCloseOutput>;
|
|
4661
4244
|
disconnect(): Promise<void>;
|
|
@@ -4713,4 +4296,4 @@ declare function discoverLocalCdpBrowsers(input?: {
|
|
|
4713
4296
|
readonly timeoutMs?: number;
|
|
4714
4297
|
}): Promise<readonly LocalCdpBrowserCandidate[]>;
|
|
4715
4298
|
|
|
4716
|
-
export { type AnchorTargetRef, type AppendTraceEntryInput, type ArtifactManifest, type ArtifactPayloadType, type ArtifactScope, type
|
|
4299
|
+
export { type AnchorTargetRef, type AppendTraceEntryInput, type ArtifactManifest, type ArtifactPayloadType, type ArtifactScope, type BrowserProfileArchiveFormat, type BrowserProfileCreateRequest, type BrowserProfileDescriptor, type BrowserProfileImportCreateRequest, type BrowserProfileImportCreateResponse, type BrowserProfileImportDescriptor, type BrowserProfileImportStatus, type BrowserProfileListResponse, type BrowserProfileStatus, type CloudBrowserContextConfig, type CloudBrowserExtensionConfig, type CloudBrowserLaunchConfig, type CloudBrowserProfileLaunchPreference, type CloudBrowserProfilePreference, type CloudFingerprintMode, type CloudFingerprintPreference, type CloudGeolocation, type CloudProxyMode, type CloudProxyPreference, type CloudProxyProtocol, type CloudRegistryImportEntry, type CloudRegistryImportRequest, type CloudRegistryImportResponse, type CloudRequestPlanImportEntry, type CloudRequestPlanImportRequest, type CloudSelectorCacheImportEntry, type CloudSelectorCacheImportRequest, type CloudSelectorCacheImportResponse, type CloudSessionLaunchConfig, CloudSessionProxy, type CloudSessionProxyOptions, type CloudSessionSourceType, type CloudSessionStatus, type CloudSessionSummary, type CloudSessionVisibilityScope, type CloudViewport, type ContextHop, type CreateFilesystemOpensteerWorkspaceOptions, type CreateTraceRunInput, DEFAULT_OPENSTEER_ENGINE, DEFERRED_MATCH_ATTR_KEYS, type DescriptorRecord, type DescriptorRegistryStore, type DomActionBridge, type DomActionBridgeProvider, type DomActionOutcome, type DomActionPolicyOperation, type DomActionScrollAlignment, type DomActionScrollOptions, type DomActionSettleOptions, type DomActionTargetInspection, type DomArrayFieldSelector, type DomArrayRowMetadata, type DomArraySelector, type DomBuildPathInput, type DomClickInput, type DomDescriptorPayload, type DomDescriptorRecord, type DomDescriptorStore, type DomExtractArrayRowsInput, type DomExtractFieldSelector, type DomExtractFieldsInput, type DomExtractedArrayRow, type DomHoverInput, type DomInputInput, type DomPath, type DomReadDescriptorInput, type DomResolveTargetInput, type DomRuntime, type DomScrollInput, type DomTargetRef, type DomWriteDescriptorInput, type ElementPath, ElementPathError, type FallbackDecision, type FallbackEvaluationInput, type FallbackPolicy, FilesystemArtifactStore, type FilesystemObservationStore, type FilesystemOpensteerWorkspace, type InspectedCdpEndpoint, type InteractionTraceRecord, type InteractionTraceRegistryStore, type JsonArray, type JsonObject, type JsonPrimitive, type JsonValue, type ListObservationArtifactsInput, type ListObservationEventsInput, type LocalCdpBrowserCandidate, type LocalChromeProfileDescriptor, MATCH_ATTRIBUTE_PRIORITY, type MatchClause, OPENSTEER_DOM_ACTION_BRIDGE_SYMBOL, OPENSTEER_ENGINE_NAMES, OPENSTEER_FILESYSTEM_WORKSPACE_LAYOUT, OPENSTEER_FILESYSTEM_WORKSPACE_VERSION, Opensteer, type OpensteerAddInitScriptOptions, type OpensteerArtifactStore, OpensteerAttachAmbiguousError, type OpensteerBrowserCloneOptions, type OpensteerBrowserController, OpensteerBrowserManager, type OpensteerBrowserManagerOptions, type OpensteerBrowserState, type OpensteerBrowserStatus, type OpensteerClickOptions, OpensteerCloudClient, type OpensteerCloudConfig, type OpensteerCloudProviderOptions, type OpensteerCloudSessionCreateInput, type OpensteerCloudSessionDescriptor, type OpensteerComputerExecuteOptions, type OpensteerCookieJar, type OpensteerDisconnectableRuntime, type OpensteerDomController, type OpensteerEngineName, type OpensteerExtractOptions, type OpensteerExtractionDescriptorPayload, type OpensteerExtractionDescriptorRecord, type OpensteerExtractionDescriptorStore, type OpensteerFetchOptions, type OpensteerFetchedRouteResponse, type OpensteerGotoOptions, type OpensteerInputOptions, type OpensteerInterceptScriptOptions, type OpensteerLiveSessionProvider, type OpensteerLocalProviderOptions, type OpensteerNetworkController, type OpensteerNetworkDetailResult, type OpensteerNetworkQueryOptions, type OpensteerNetworkQueryResult, type OpensteerNetworkReplayOptions, type OpensteerNetworkReplayResult, type OpensteerOptions, type OpensteerPolicy, type OpensteerProviderMode, type OpensteerProviderOptions, type OpensteerProviderSource, type OpensteerResolvedProvider, type OpensteerRouteHandlerResult, type OpensteerRouteOptions, type OpensteerRouteRegistration, OpensteerRuntime, type OpensteerRuntimeOptions, type OpensteerScrollOptions, type OpensteerSemanticRuntime, OpensteerSessionRuntime, type OpensteerSessionRuntimeOptions, type OpensteerStorageMap, type OpensteerTargetOptions, type OpensteerTraceStore, type OpensteerWaitForNetworkOptions, type OpensteerWaitForPageOptions, type OpensteerWorkspaceManifest, type PathNode, type PersistedCloudSessionRecord, type PersistedLocalBrowserSessionRecord, type PersistedSessionRecord, type ProtocolArtifactDelivery, type RegistryProvenance, type RegistryRecord, type ReplayElementPath, type ResolveRegistryRecordInput, type ResolvedDomTarget, type RetryDecision, type RetryEvaluationInput, type RetryPolicy, STABLE_PRIMARY_ATTR_KEYS, type SavedNetworkQueryInput, type SavedNetworkStore, type SettleContext, type SettleDelayInput, type SettleObserver, type SettlePolicy, type SettleTrigger, type StoredArtifactPayload, type StoredArtifactRecord, type StructuralElementAnchor, type StructuredArtifactKind, type SyncBrowserProfileCookiesInput, type TimeoutExecutionContext, type TimeoutPolicy, type TimeoutResolutionInput, type TraceEntryRecord, type TraceRunManifest, type WorkspaceBrowserBootstrap, type WorkspaceBrowserManifest, type WorkspaceLiveBrowserRecord, type WriteBinaryArtifactInput, type WriteDescriptorInput, type WriteInteractionTraceInput, type WriteStructuredArtifactInput, assertProviderSupportsEngine, buildArrayFieldPathCandidates, buildDomDescriptorKey, buildDomDescriptorPayload, buildDomDescriptorVersion, buildPathCandidates, buildPathSelectorHint, buildSegmentSelector, clearPersistedSessionRecord, cloneElementPath, cloneReplayElementPath, cloneStructuralElementAnchor, createArtifactStore, createDomDescriptorStore, createDomRuntime, createFilesystemOpensteerWorkspace, createObservationStore, createOpensteerExtractionDescriptorStore, createOpensteerSemanticRuntime, defaultFallbackPolicy, defaultPolicy, defaultRetryPolicy, defaultSettlePolicy, defaultTimeoutPolicy, delayWithSignal, discoverLocalCdpBrowsers, dispatchSemanticOperation, hashDomDescriptorName, inspectCdpEndpoint, isCurrentUrlField, isValidCssAttributeKey, listLocalChromeProfiles, manifestToExternalBinaryLocation, normalizeExtractedValue, normalizeObservabilityConfig, normalizeOpensteerEngineName, normalizeOpensteerProviderMode, normalizeWorkspaceId, parseDomDescriptorRecord, parseExtractionDescriptorRecord, readPersistedCloudSessionRecord, readPersistedLocalBrowserSessionRecord, readPersistedSessionRecord, resolveCloudConfig, resolveCloudSessionRecordPath, resolveDomActionBridge, resolveExtractedValueInContext, resolveFilesystemWorkspacePath, resolveLiveSessionRecordPath, resolveLocalSessionRecordPath, resolveOpensteerEngineName, resolveOpensteerProvider, resolveOpensteerRuntimeConfig, runWithPolicyTimeout, sanitizeElementPath, sanitizeReplayElementPath, sanitizeStructuralElementAnchor, settleWithPolicy, shouldKeepAttributeForPath, writePersistedSessionRecord };
|