opensteer 0.8.13 → 0.8.15
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-BW2BH7HA.js → chunk-DFQCK2U6.js} +8377 -15604
- package/dist/chunk-DFQCK2U6.js.map +1 -0
- package/dist/cli/bin.cjs +10620 -16671
- 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 +7881 -15156
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +271 -686
- package/dist/index.d.ts +271 -686
- 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 +69 -212
- package/skills/opensteer/references/request-workflow.md +95 -342
- package/skills/opensteer/references/sdk-reference.md +83 -339
- package/dist/chunk-BW2BH7HA.js.map +0 -1
package/dist/index.d.cts
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
|
+
};
|
|
1175
1171
|
}
|
|
1176
|
-
interface
|
|
1177
|
-
readonly
|
|
1172
|
+
interface OpensteerNetworkQueryOutput {
|
|
1173
|
+
readonly records: readonly OpensteerNetworkSummaryRecord[];
|
|
1174
|
+
}
|
|
1175
|
+
interface OpensteerParsedCookie {
|
|
1176
|
+
readonly name: string;
|
|
1177
|
+
readonly value: string;
|
|
1178
1178
|
}
|
|
1179
|
-
interface
|
|
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;
|
|
1185
|
+
}
|
|
1186
|
+
interface OpensteerNetworkRedirectHop {
|
|
1187
|
+
readonly method: string;
|
|
1188
|
+
readonly status?: number;
|
|
1189
|
+
readonly url: string;
|
|
1190
|
+
readonly location?: string;
|
|
1191
|
+
readonly setCookie?: readonly string[];
|
|
1192
|
+
}
|
|
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 persistHash: string;
|
|
1444
|
+
readonly persist?: 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 persist: 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,6 @@ interface OpensteerActionResult {
|
|
|
1866
1856
|
readonly x: number;
|
|
1867
1857
|
readonly y: number;
|
|
1868
1858
|
};
|
|
1869
|
-
readonly persistedDescription?: string;
|
|
1870
1859
|
}
|
|
1871
1860
|
interface OpensteerSnapshotCounter {
|
|
1872
1861
|
readonly element: number;
|
|
@@ -1982,30 +1971,30 @@ interface OpensteerDomClickInput {
|
|
|
1982
1971
|
readonly button?: OpensteerComputerMouseButton;
|
|
1983
1972
|
readonly clickCount?: number;
|
|
1984
1973
|
readonly modifiers?: readonly OpensteerComputerKeyModifier[];
|
|
1985
|
-
readonly
|
|
1974
|
+
readonly persist?: string;
|
|
1986
1975
|
readonly captureNetwork?: string;
|
|
1987
1976
|
}
|
|
1988
1977
|
interface OpensteerDomHoverInput {
|
|
1989
1978
|
readonly target: OpensteerTargetInput;
|
|
1990
|
-
readonly
|
|
1979
|
+
readonly persist?: string;
|
|
1991
1980
|
readonly captureNetwork?: string;
|
|
1992
1981
|
}
|
|
1993
1982
|
interface OpensteerDomInputInput {
|
|
1994
1983
|
readonly target: OpensteerTargetInput;
|
|
1995
1984
|
readonly text: string;
|
|
1996
1985
|
readonly pressEnter?: boolean;
|
|
1997
|
-
readonly
|
|
1986
|
+
readonly persist?: string;
|
|
1998
1987
|
readonly captureNetwork?: string;
|
|
1999
1988
|
}
|
|
2000
1989
|
interface OpensteerDomScrollInput {
|
|
2001
1990
|
readonly target: OpensteerTargetInput;
|
|
2002
1991
|
readonly direction: "up" | "down" | "left" | "right";
|
|
2003
1992
|
readonly amount: number;
|
|
2004
|
-
readonly
|
|
1993
|
+
readonly persist?: string;
|
|
2005
1994
|
readonly captureNetwork?: string;
|
|
2006
1995
|
}
|
|
2007
1996
|
interface OpensteerDomExtractInput {
|
|
2008
|
-
readonly
|
|
1997
|
+
readonly persist?: string;
|
|
2009
1998
|
readonly schema?: Readonly<Record<string, unknown>>;
|
|
2010
1999
|
}
|
|
2011
2000
|
interface OpensteerDomExtractOutput {
|
|
@@ -2100,7 +2089,7 @@ interface OpensteerComputerExecuteOutput {
|
|
|
2100
2089
|
readonly timing: OpensteerComputerExecuteTiming;
|
|
2101
2090
|
readonly trace?: OpensteerComputerTraceEnrichment;
|
|
2102
2091
|
}
|
|
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.
|
|
2092
|
+
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
2093
|
type OpensteerSemanticOperationName = (typeof opensteerSemanticOperationNames)[number];
|
|
2105
2094
|
|
|
2106
2095
|
declare const opensteerSessionGrantKinds: readonly ["semantic", "automation", "view", "cdp"];
|
|
@@ -2153,79 +2142,6 @@ interface OpensteerSessionInfo {
|
|
|
2153
2142
|
readonly runtime?: OpensteerRuntimeVersionInfo;
|
|
2154
2143
|
}
|
|
2155
2144
|
|
|
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
2145
|
interface OpensteerScriptBeautifyInput {
|
|
2230
2146
|
readonly artifactId?: string;
|
|
2231
2147
|
readonly content?: string;
|
|
@@ -2287,7 +2203,6 @@ interface OpensteerScriptSandboxOutput {
|
|
|
2287
2203
|
type OpensteerStateSourceKind = "temporary" | "persistent" | "attach";
|
|
2288
2204
|
type OpensteerReverseCaseStatus = "capturing" | "analyzing" | "ready" | "attention";
|
|
2289
2205
|
type OpensteerReverseChannelKind = "http" | "event-stream" | "websocket";
|
|
2290
|
-
type OpensteerReverseManualCalibrationMode = "allow" | "avoid" | "require";
|
|
2291
2206
|
type OpensteerReverseCandidateBoundary = "first-party" | "same-site" | "third-party";
|
|
2292
2207
|
type OpensteerReverseAdvisoryTag = "data" | "facet" | "telemetry" | "subscription" | "navigation" | "document" | "route-data" | "search" | "tracking" | "unknown";
|
|
2293
2208
|
type OpensteerReverseConstraintKind = "requires-browser" | "requires-cookie" | "requires-storage" | "requires-script" | "requires-guard" | "requires-live-state" | "opaque-body" | "unsupported";
|
|
@@ -2332,12 +2247,6 @@ interface OpensteerValueTemplateObject {
|
|
|
2332
2247
|
readonly [key: string]: OpensteerValueTemplate;
|
|
2333
2248
|
}
|
|
2334
2249
|
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
2250
|
interface OpensteerBodyCodecDescriptor {
|
|
2342
2251
|
readonly kind: OpensteerBodyCodecKind;
|
|
2343
2252
|
readonly contentType?: string;
|
|
@@ -2741,17 +2650,6 @@ interface OpensteerReverseReportPayload {
|
|
|
2741
2650
|
readonly suggestedEdits?: readonly OpensteerReverseSuggestedEdit[];
|
|
2742
2651
|
readonly package?: OpensteerReversePackageRecord;
|
|
2743
2652
|
}
|
|
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
2653
|
interface OpensteerReverseObservedRecord {
|
|
2756
2654
|
readonly recordId: string;
|
|
2757
2655
|
readonly observationId: string;
|
|
@@ -2804,173 +2702,6 @@ interface OpensteerReverseQuerySnapshot {
|
|
|
2804
2702
|
readonly nextCursor?: string;
|
|
2805
2703
|
readonly resultIds: readonly string[];
|
|
2806
2704
|
}
|
|
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
2705
|
|
|
2975
2706
|
type OpensteerInteractionCaptureStep = {
|
|
2976
2707
|
readonly kind: "goto";
|
|
@@ -3416,7 +3147,7 @@ interface SavedNetworkQueryInput {
|
|
|
3416
3147
|
readonly hostname?: string;
|
|
3417
3148
|
readonly path?: string;
|
|
3418
3149
|
readonly method?: string;
|
|
3419
|
-
readonly status?: string;
|
|
3150
|
+
readonly status?: string | number;
|
|
3420
3151
|
readonly resourceType?: NetworkResourceType;
|
|
3421
3152
|
readonly includeBodies?: boolean;
|
|
3422
3153
|
readonly limit?: number;
|
|
@@ -3661,7 +3392,7 @@ type ElementPath = ReplayElementPath;
|
|
|
3661
3392
|
interface DomDescriptorPayload {
|
|
3662
3393
|
readonly kind: "dom-target";
|
|
3663
3394
|
readonly method: string;
|
|
3664
|
-
readonly
|
|
3395
|
+
readonly persist: string;
|
|
3665
3396
|
readonly path: ReplayElementPath;
|
|
3666
3397
|
readonly sourceUrl?: string;
|
|
3667
3398
|
}
|
|
@@ -3675,28 +3406,28 @@ interface DomDescriptorRecord {
|
|
|
3675
3406
|
}
|
|
3676
3407
|
interface DescriptorTargetRef {
|
|
3677
3408
|
readonly kind: "descriptor";
|
|
3678
|
-
readonly
|
|
3409
|
+
readonly persist: string;
|
|
3679
3410
|
}
|
|
3680
3411
|
interface LiveTargetRef {
|
|
3681
3412
|
readonly kind: "live";
|
|
3682
3413
|
readonly locator: NodeLocator;
|
|
3683
3414
|
readonly anchor?: StructuralElementAnchor;
|
|
3684
|
-
readonly
|
|
3415
|
+
readonly persist?: string;
|
|
3685
3416
|
}
|
|
3686
3417
|
interface AnchorTargetRef {
|
|
3687
3418
|
readonly kind: "anchor";
|
|
3688
3419
|
readonly anchor: StructuralElementAnchor;
|
|
3689
|
-
readonly
|
|
3420
|
+
readonly persist?: string;
|
|
3690
3421
|
}
|
|
3691
3422
|
interface PathTargetRef {
|
|
3692
3423
|
readonly kind: "path";
|
|
3693
3424
|
readonly path: ReplayElementPath;
|
|
3694
|
-
readonly
|
|
3425
|
+
readonly persist?: string;
|
|
3695
3426
|
}
|
|
3696
3427
|
interface SelectorTargetRef {
|
|
3697
3428
|
readonly kind: "selector";
|
|
3698
3429
|
readonly selector: string;
|
|
3699
|
-
readonly
|
|
3430
|
+
readonly persist?: string;
|
|
3700
3431
|
readonly frameRef?: FrameRef;
|
|
3701
3432
|
readonly documentRef?: DocumentRef;
|
|
3702
3433
|
}
|
|
@@ -3713,7 +3444,7 @@ interface ResolvedDomTarget {
|
|
|
3713
3444
|
readonly node: DomSnapshotNode;
|
|
3714
3445
|
readonly anchor: StructuralElementAnchor;
|
|
3715
3446
|
readonly replayPath?: ReplayElementPath;
|
|
3716
|
-
readonly
|
|
3447
|
+
readonly persist?: string;
|
|
3717
3448
|
readonly selectorUsed?: string;
|
|
3718
3449
|
readonly descriptor?: DomDescriptorRecord;
|
|
3719
3450
|
}
|
|
@@ -3727,7 +3458,7 @@ interface DomResolveTargetInput {
|
|
|
3727
3458
|
}
|
|
3728
3459
|
interface DomWriteDescriptorInput {
|
|
3729
3460
|
readonly method: string;
|
|
3730
|
-
readonly
|
|
3461
|
+
readonly persist: string;
|
|
3731
3462
|
readonly path: ReplayElementPath;
|
|
3732
3463
|
readonly sourceUrl?: string;
|
|
3733
3464
|
readonly createdAt?: number;
|
|
@@ -3735,7 +3466,7 @@ interface DomWriteDescriptorInput {
|
|
|
3735
3466
|
}
|
|
3736
3467
|
interface DomReadDescriptorInput {
|
|
3737
3468
|
readonly method: string;
|
|
3738
|
-
readonly
|
|
3469
|
+
readonly persist: string;
|
|
3739
3470
|
}
|
|
3740
3471
|
interface DomActionOutcome {
|
|
3741
3472
|
readonly resolved: ResolvedDomTarget;
|
|
@@ -3835,11 +3566,11 @@ declare function createDomDescriptorStore(options: {
|
|
|
3835
3566
|
readonly root?: FilesystemOpensteerWorkspace;
|
|
3836
3567
|
readonly namespace?: string;
|
|
3837
3568
|
}): DomDescriptorStore;
|
|
3838
|
-
declare function
|
|
3569
|
+
declare function hashDomDescriptorPersist(persist: string): string;
|
|
3839
3570
|
declare function buildDomDescriptorKey(options: {
|
|
3840
3571
|
readonly namespace?: string;
|
|
3841
3572
|
readonly method: string;
|
|
3842
|
-
readonly
|
|
3573
|
+
readonly persist: string;
|
|
3843
3574
|
}): string;
|
|
3844
3575
|
declare function buildDomDescriptorPayload(input: DomWriteDescriptorInput): DomDescriptorPayload;
|
|
3845
3576
|
declare function buildDomDescriptorVersion(payload: DomDescriptorPayload): string;
|
|
@@ -3914,7 +3645,7 @@ type PersistedOpensteerExtractionNode = PersistedOpensteerExtractionValueNode |
|
|
|
3914
3645
|
type PersistedOpensteerExtractionPayload = PersistedOpensteerExtractionObjectNode;
|
|
3915
3646
|
interface OpensteerExtractionDescriptorPayload {
|
|
3916
3647
|
readonly kind: "dom-extraction";
|
|
3917
|
-
readonly
|
|
3648
|
+
readonly persist: string;
|
|
3918
3649
|
readonly root: PersistedOpensteerExtractionPayload;
|
|
3919
3650
|
readonly schemaHash?: string;
|
|
3920
3651
|
readonly sourceUrl?: string;
|
|
@@ -3929,10 +3660,10 @@ interface OpensteerExtractionDescriptorRecord {
|
|
|
3929
3660
|
}
|
|
3930
3661
|
interface OpensteerExtractionDescriptorStore {
|
|
3931
3662
|
read(input: {
|
|
3932
|
-
readonly
|
|
3663
|
+
readonly persist: string;
|
|
3933
3664
|
}): Promise<OpensteerExtractionDescriptorRecord | undefined>;
|
|
3934
3665
|
write(input: {
|
|
3935
|
-
readonly
|
|
3666
|
+
readonly persist: string;
|
|
3936
3667
|
readonly root: PersistedOpensteerExtractionPayload;
|
|
3937
3668
|
readonly schemaHash?: string;
|
|
3938
3669
|
readonly sourceUrl?: string;
|
|
@@ -3987,13 +3718,7 @@ interface OpensteerBrowserStatus {
|
|
|
3987
3718
|
readonly mode: "temporary" | "persistent" | "attach";
|
|
3988
3719
|
readonly engine: OpensteerEngineName;
|
|
3989
3720
|
readonly workspace?: string;
|
|
3990
|
-
readonly rootPath: string;
|
|
3991
3721
|
readonly live: boolean;
|
|
3992
|
-
readonly browserPath?: string;
|
|
3993
|
-
readonly userDataDir?: string;
|
|
3994
|
-
readonly endpoint?: string;
|
|
3995
|
-
readonly baseUrl?: string;
|
|
3996
|
-
readonly manifest?: WorkspaceBrowserManifest;
|
|
3997
3722
|
}
|
|
3998
3723
|
interface OpensteerBrowserManagerOptions {
|
|
3999
3724
|
readonly rootDir?: string;
|
|
@@ -4044,63 +3769,6 @@ declare class OpensteerBrowserManager {
|
|
|
4044
3769
|
private requirePersistentMode;
|
|
4045
3770
|
}
|
|
4046
3771
|
|
|
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
3772
|
declare const OPENSTEER_PROVIDER_MODES: readonly ["local", "cloud"];
|
|
4105
3773
|
type OpensteerProviderMode = (typeof OPENSTEER_PROVIDER_MODES)[number];
|
|
4106
3774
|
type OpensteerProviderSource = "explicit" | "env" | "default";
|
|
@@ -4184,10 +3852,53 @@ interface OpensteerInterceptScriptOptions {
|
|
|
4184
3852
|
}) => string | Promise<string>;
|
|
4185
3853
|
}
|
|
4186
3854
|
|
|
3855
|
+
interface OpensteerRuntimeOptions {
|
|
3856
|
+
readonly workspace?: string;
|
|
3857
|
+
readonly rootDir?: string;
|
|
3858
|
+
readonly rootPath?: string;
|
|
3859
|
+
readonly engineName?: OpensteerEngineName;
|
|
3860
|
+
readonly browser?: OpensteerBrowserOptions;
|
|
3861
|
+
readonly launch?: OpensteerBrowserLaunchOptions;
|
|
3862
|
+
readonly context?: OpensteerBrowserContextOptions;
|
|
3863
|
+
readonly engine?: BrowserCoreEngine;
|
|
3864
|
+
readonly engineFactory?: OpensteerEngineFactory;
|
|
3865
|
+
readonly policy?: OpensteerPolicy;
|
|
3866
|
+
readonly descriptorStore?: DomDescriptorStore$1;
|
|
3867
|
+
readonly extractionDescriptorStore?: OpensteerExtractionDescriptorStore$1;
|
|
3868
|
+
readonly cleanupRootOnClose?: boolean;
|
|
3869
|
+
readonly observability?: Partial<ObservabilityConfig>;
|
|
3870
|
+
readonly observationSessionId?: string;
|
|
3871
|
+
readonly observationSink?: ObservationSink;
|
|
3872
|
+
}
|
|
3873
|
+
interface OpensteerSessionRuntimeOptions {
|
|
3874
|
+
readonly name: string;
|
|
3875
|
+
readonly rootDir?: string;
|
|
3876
|
+
readonly rootPath?: string;
|
|
3877
|
+
readonly engineName?: OpensteerEngineName;
|
|
3878
|
+
readonly browser?: OpensteerBrowserOptions;
|
|
3879
|
+
readonly launch?: OpensteerBrowserLaunchOptions;
|
|
3880
|
+
readonly context?: OpensteerBrowserContextOptions;
|
|
3881
|
+
readonly engine?: BrowserCoreEngine;
|
|
3882
|
+
readonly engineFactory?: OpensteerEngineFactory;
|
|
3883
|
+
readonly policy?: OpensteerPolicy;
|
|
3884
|
+
readonly descriptorStore?: DomDescriptorStore$1;
|
|
3885
|
+
readonly extractionDescriptorStore?: OpensteerExtractionDescriptorStore$1;
|
|
3886
|
+
readonly cleanupRootOnClose?: boolean;
|
|
3887
|
+
readonly observability?: Partial<ObservabilityConfig>;
|
|
3888
|
+
readonly observationSessionId?: string;
|
|
3889
|
+
readonly observationSink?: ObservationSink;
|
|
3890
|
+
}
|
|
3891
|
+
declare class OpensteerRuntime extends OpensteerSessionRuntime$1 {
|
|
3892
|
+
constructor(options?: OpensteerRuntimeOptions);
|
|
3893
|
+
}
|
|
3894
|
+
declare class OpensteerSessionRuntime extends OpensteerSessionRuntime$1 {
|
|
3895
|
+
constructor(options: OpensteerSessionRuntimeOptions);
|
|
3896
|
+
}
|
|
3897
|
+
|
|
4187
3898
|
interface OpensteerTargetOptions {
|
|
4188
3899
|
readonly element?: number;
|
|
4189
3900
|
readonly selector?: string;
|
|
4190
|
-
readonly
|
|
3901
|
+
readonly persist?: string;
|
|
4191
3902
|
readonly captureNetwork?: string;
|
|
4192
3903
|
}
|
|
4193
3904
|
interface OpensteerClickOptions extends OpensteerTargetOptions {
|
|
@@ -4203,10 +3914,13 @@ interface OpensteerScrollOptions extends OpensteerTargetOptions {
|
|
|
4203
3914
|
readonly direction: "up" | "down" | "left" | "right";
|
|
4204
3915
|
readonly amount: number;
|
|
4205
3916
|
}
|
|
4206
|
-
|
|
4207
|
-
readonly
|
|
3917
|
+
type OpensteerExtractOptions = {
|
|
3918
|
+
readonly persist: string;
|
|
4208
3919
|
readonly schema?: Record<string, unknown>;
|
|
4209
|
-
}
|
|
3920
|
+
} | {
|
|
3921
|
+
readonly persist?: string;
|
|
3922
|
+
readonly schema: Record<string, unknown>;
|
|
3923
|
+
};
|
|
4210
3924
|
interface OpensteerWaitForNetworkOptions extends OpensteerNetworkQueryInput {
|
|
4211
3925
|
readonly timeoutMs?: number;
|
|
4212
3926
|
readonly pollIntervalMs?: number;
|
|
@@ -4217,66 +3931,35 @@ interface OpensteerWaitForPageOptions {
|
|
|
4217
3931
|
readonly timeoutMs?: number;
|
|
4218
3932
|
readonly pollIntervalMs?: number;
|
|
4219
3933
|
}
|
|
4220
|
-
type
|
|
4221
|
-
type
|
|
4222
|
-
type OpensteerSnapshotResult = OpensteerPageSnapshotOutput;
|
|
4223
|
-
type OpensteerComputerExecuteOptions = OpensteerComputerExecuteInput;
|
|
4224
|
-
type OpensteerComputerExecuteResult = OpensteerComputerExecuteOutput;
|
|
3934
|
+
type OpensteerAddInitScriptOptions = OpensteerAddInitScriptInput;
|
|
3935
|
+
type OpensteerGotoOptions = Omit<OpensteerPageGotoInput, "url">;
|
|
4225
3936
|
type OpensteerNetworkQueryOptions = OpensteerNetworkQueryInput;
|
|
4226
3937
|
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;
|
|
3938
|
+
type OpensteerNetworkDetailResult = OpensteerNetworkDetailOutput;
|
|
3939
|
+
type OpensteerNetworkReplayOptions = Omit<OpensteerNetworkReplayInput, "recordId">;
|
|
3940
|
+
type OpensteerNetworkReplayResult = OpensteerNetworkReplayOutput;
|
|
3941
|
+
type OpensteerFetchOptions = Omit<OpensteerSessionFetchInput, "url">;
|
|
3942
|
+
type OpensteerComputerExecuteOptions = OpensteerComputerExecuteInput;
|
|
3943
|
+
type OpensteerStorageMap = Readonly<Record<string, string>>;
|
|
3944
|
+
type OpensteerBrowserState = OpensteerStateQueryOutput;
|
|
3945
|
+
interface OpensteerCookieJar {
|
|
3946
|
+
readonly domain?: string;
|
|
3947
|
+
has(name: string): boolean;
|
|
3948
|
+
get(name: string): string | undefined;
|
|
3949
|
+
getAll(): readonly CookieRecord[];
|
|
3950
|
+
serialize(): string;
|
|
3951
|
+
}
|
|
3952
|
+
interface OpensteerDomController {
|
|
3953
|
+
click(input: OpensteerClickOptions): Promise<OpensteerActionResult>;
|
|
3954
|
+
hover(input: OpensteerTargetOptions): Promise<OpensteerActionResult>;
|
|
3955
|
+
input(input: OpensteerInputOptions): Promise<OpensteerActionResult>;
|
|
3956
|
+
scroll(input: OpensteerScrollOptions): Promise<OpensteerActionResult>;
|
|
3957
|
+
}
|
|
3958
|
+
interface OpensteerNetworkController {
|
|
3959
|
+
query(input?: OpensteerNetworkQueryOptions): Promise<OpensteerNetworkQueryResult>;
|
|
3960
|
+
detail(recordId: string): Promise<OpensteerNetworkDetailResult>;
|
|
3961
|
+
replay(recordId: string, overrides?: OpensteerNetworkReplayOptions): Promise<OpensteerNetworkReplayResult>;
|
|
3962
|
+
}
|
|
4280
3963
|
interface OpensteerOptions extends OpensteerRuntimeOptions {
|
|
4281
3964
|
readonly provider?: OpensteerProviderOptions;
|
|
4282
3965
|
}
|
|
@@ -4294,6 +3977,8 @@ declare class Opensteer {
|
|
|
4294
3977
|
private readonly runtime;
|
|
4295
3978
|
private readonly browserManager;
|
|
4296
3979
|
readonly browser: OpensteerBrowserController;
|
|
3980
|
+
readonly dom: OpensteerDomController;
|
|
3981
|
+
readonly network: OpensteerNetworkController;
|
|
4297
3982
|
constructor(options?: OpensteerOptions);
|
|
4298
3983
|
open(input?: string | OpensteerOpenInput): Promise<OpensteerOpenOutput>;
|
|
4299
3984
|
info(): Promise<OpensteerSessionInfo>;
|
|
@@ -4301,7 +3986,7 @@ declare class Opensteer {
|
|
|
4301
3986
|
newPage(input?: OpensteerPageNewInput): Promise<OpensteerPageNewOutput>;
|
|
4302
3987
|
activatePage(input: OpensteerPageActivateInput): Promise<OpensteerPageActivateOutput>;
|
|
4303
3988
|
closePage(input?: OpensteerPageCloseInput): Promise<OpensteerPageCloseOutput>;
|
|
4304
|
-
goto(
|
|
3989
|
+
goto(url: string, options?: OpensteerGotoOptions): Promise<OpensteerPageGotoOutput>;
|
|
4305
3990
|
evaluate(input: string | OpensteerPageEvaluateInput): Promise<OpensteerPageEvaluateOutput["value"]>;
|
|
4306
3991
|
evaluateJson(input: string | OpensteerPageEvaluateInput): Promise<OpensteerPageEvaluateOutput["value"]>;
|
|
4307
3992
|
addInitScript(input: string | OpensteerAddInitScriptInput): Promise<OpensteerAddInitScriptOutput>;
|
|
@@ -4309,60 +3994,19 @@ declare class Opensteer {
|
|
|
4309
3994
|
hover(input: OpensteerTargetOptions): Promise<OpensteerActionResult>;
|
|
4310
3995
|
input(input: OpensteerInputOptions): Promise<OpensteerActionResult>;
|
|
4311
3996
|
scroll(input: OpensteerScrollOptions): Promise<OpensteerActionResult>;
|
|
4312
|
-
extract(input: OpensteerExtractOptions): Promise<
|
|
3997
|
+
extract(input: OpensteerExtractOptions): Promise<unknown>;
|
|
4313
3998
|
queryNetwork(input?: OpensteerNetworkQueryOptions): Promise<OpensteerNetworkQueryResult>;
|
|
4314
3999
|
waitForNetwork(input: OpensteerWaitForNetworkOptions): Promise<OpensteerNetworkQueryResult["records"][number]>;
|
|
4315
4000
|
waitForResponse(input: OpensteerWaitForNetworkOptions): Promise<OpensteerNetworkQueryResult["records"][number]>;
|
|
4316
4001
|
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>;
|
|
4002
|
+
snapshot(mode?: OpensteerSnapshotMode): Promise<string>;
|
|
4003
|
+
cookies(domain?: string): Promise<OpensteerCookieJar>;
|
|
4004
|
+
storage(domain?: string, type?: OpensteerStorageArea): Promise<OpensteerStorageMap>;
|
|
4005
|
+
state(domain?: string): Promise<OpensteerBrowserState>;
|
|
4006
|
+
fetch(url: string, options?: OpensteerFetchOptions): Promise<Response>;
|
|
4007
|
+
computerExecute(input: OpensteerComputerExecuteOptions): Promise<OpensteerComputerExecuteOutput>;
|
|
4363
4008
|
route(input: OpensteerRouteOptions): Promise<OpensteerRouteRegistration>;
|
|
4364
4009
|
interceptScript(input: OpensteerInterceptScriptOptions): Promise<OpensteerRouteRegistration>;
|
|
4365
|
-
computerExecute(input: OpensteerComputerExecuteOptions): Promise<OpensteerComputerExecuteResult>;
|
|
4366
4010
|
close(): Promise<OpensteerSessionCloseOutput>;
|
|
4367
4011
|
disconnect(): Promise<void>;
|
|
4368
4012
|
private requireOwnedInstrumentationRuntime;
|
|
@@ -4401,51 +4045,24 @@ interface OpensteerSemanticRuntime {
|
|
|
4401
4045
|
scroll(input: OpensteerDomScrollInput, options?: OpensteerRuntimeOperationOptions): Promise<OpensteerActionResult>;
|
|
4402
4046
|
extract(input: OpensteerDomExtractInput, options?: OpensteerRuntimeOperationOptions): Promise<OpensteerDomExtractOutput>;
|
|
4403
4047
|
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>;
|
|
4048
|
+
getNetworkDetail(input: {
|
|
4049
|
+
readonly recordId: string;
|
|
4050
|
+
}, options?: OpensteerRuntimeOperationOptions): Promise<OpensteerNetworkDetailOutput>;
|
|
4051
|
+
replayNetwork(input: OpensteerNetworkReplayInput, options?: OpensteerRuntimeOperationOptions): Promise<OpensteerNetworkReplayOutput>;
|
|
4417
4052
|
captureInteraction(input: OpensteerInteractionCaptureInput, options?: OpensteerRuntimeOperationOptions): Promise<OpensteerInteractionCaptureOutput>;
|
|
4418
4053
|
getInteraction(input: OpensteerInteractionGetInput, options?: OpensteerRuntimeOperationOptions): Promise<OpensteerInteractionGetOutput>;
|
|
4419
4054
|
diffInteraction(input: OpensteerInteractionDiffInput, options?: OpensteerRuntimeOperationOptions): Promise<OpensteerInteractionDiffOutput>;
|
|
4420
4055
|
replayInteraction(input: OpensteerInteractionReplayInput, options?: OpensteerRuntimeOperationOptions): Promise<OpensteerInteractionReplayOutput>;
|
|
4421
|
-
clearNetwork(input?: OpensteerNetworkClearInput, options?: OpensteerRuntimeOperationOptions): Promise<OpensteerNetworkClearOutput>;
|
|
4422
4056
|
captureScripts(input?: OpensteerCaptureScriptsInput, options?: OpensteerRuntimeOperationOptions): Promise<OpensteerCaptureScriptsOutput>;
|
|
4423
4057
|
readArtifact(input: OpensteerArtifactReadInput, options?: OpensteerRuntimeOperationOptions): Promise<OpensteerArtifactReadOutput>;
|
|
4424
4058
|
beautifyScript(input: OpensteerScriptBeautifyInput, options?: OpensteerRuntimeOperationOptions): Promise<OpensteerScriptBeautifyOutput>;
|
|
4425
4059
|
deobfuscateScript(input: OpensteerScriptDeobfuscateInput, options?: OpensteerRuntimeOperationOptions): Promise<OpensteerScriptDeobfuscateOutput>;
|
|
4426
4060
|
sandboxScript(input: OpensteerScriptSandboxInput, options?: OpensteerRuntimeOperationOptions): Promise<OpensteerScriptSandboxOutput>;
|
|
4427
4061
|
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>;
|
|
4062
|
+
getCookies(input?: OpensteerCookieQueryInput, options?: OpensteerRuntimeOperationOptions): Promise<OpensteerCookieQueryOutput>;
|
|
4063
|
+
getStorageSnapshot(input?: OpensteerStorageQueryInput, options?: OpensteerRuntimeOperationOptions): Promise<OpensteerStorageQueryOutput>;
|
|
4064
|
+
getBrowserState(input?: OpensteerStateQueryInput, options?: OpensteerRuntimeOperationOptions): Promise<OpensteerStateQueryOutput>;
|
|
4065
|
+
fetch(input: OpensteerSessionFetchInput, options?: OpensteerRuntimeOperationOptions): Promise<OpensteerSessionFetchOutput>;
|
|
4449
4066
|
computerExecute(input: OpensteerComputerExecuteInput, options?: OpensteerRuntimeOperationOptions): Promise<OpensteerComputerExecuteOutput>;
|
|
4450
4067
|
close(options?: OpensteerRuntimeOperationOptions): Promise<OpensteerSessionCloseOutput>;
|
|
4451
4068
|
}
|
|
@@ -4522,11 +4139,6 @@ declare class OpensteerCloudClient {
|
|
|
4522
4139
|
syncBrowserProfileCookies(input: SyncBrowserProfileCookiesInput): Promise<BrowserProfileImportDescriptor>;
|
|
4523
4140
|
importSelectorCache(entries: readonly CloudSelectorCacheImportEntry[]): Promise<CloudSelectorCacheImportResponse>;
|
|
4524
4141
|
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
4142
|
buildAuthorizationHeader(): string;
|
|
4531
4143
|
private buildHeaders;
|
|
4532
4144
|
private request;
|
|
@@ -4609,53 +4221,26 @@ declare class CloudSessionProxy implements OpensteerDisconnectableRuntime {
|
|
|
4609
4221
|
scroll(input: OpensteerDomScrollInput): Promise<OpensteerActionResult>;
|
|
4610
4222
|
extract(input: OpensteerDomExtractInput): Promise<OpensteerDomExtractOutput>;
|
|
4611
4223
|
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>;
|
|
4224
|
+
getNetworkDetail(input: {
|
|
4225
|
+
readonly recordId: string;
|
|
4226
|
+
}): Promise<OpensteerNetworkDetailOutput>;
|
|
4227
|
+
replayNetwork(input: OpensteerNetworkReplayInput): Promise<OpensteerNetworkReplayOutput>;
|
|
4625
4228
|
captureInteraction(input: OpensteerInteractionCaptureInput): Promise<OpensteerInteractionCaptureOutput>;
|
|
4626
4229
|
getInteraction(input: OpensteerInteractionGetInput): Promise<OpensteerInteractionGetOutput>;
|
|
4627
4230
|
diffInteraction(input: OpensteerInteractionDiffInput): Promise<OpensteerInteractionDiffOutput>;
|
|
4628
4231
|
replayInteraction(input: OpensteerInteractionReplayInput): Promise<OpensteerInteractionReplayOutput>;
|
|
4629
|
-
clearNetwork(input?: OpensteerNetworkClearInput): Promise<OpensteerNetworkClearOutput>;
|
|
4630
4232
|
captureScripts(input?: OpensteerCaptureScriptsInput): Promise<OpensteerCaptureScriptsOutput>;
|
|
4631
4233
|
readArtifact(input: OpensteerArtifactReadInput): Promise<OpensteerArtifactReadOutput>;
|
|
4632
4234
|
beautifyScript(input: OpensteerScriptBeautifyInput): Promise<OpensteerScriptBeautifyOutput>;
|
|
4633
4235
|
deobfuscateScript(input: OpensteerScriptDeobfuscateInput): Promise<OpensteerScriptDeobfuscateOutput>;
|
|
4634
4236
|
sandboxScript(input: OpensteerScriptSandboxInput): Promise<OpensteerScriptSandboxOutput>;
|
|
4635
4237
|
solveCaptcha(input: OpensteerCaptchaSolveInput): Promise<OpensteerCaptchaSolveOutput>;
|
|
4636
|
-
getCookies(input?:
|
|
4637
|
-
readonly urls?: readonly string[];
|
|
4638
|
-
}): Promise<readonly CookieRecord[]>;
|
|
4238
|
+
getCookies(input?: OpensteerCookieQueryInput): Promise<OpensteerCookieQueryOutput>;
|
|
4639
4239
|
route(input: OpensteerRouteOptions): Promise<OpensteerRouteRegistration>;
|
|
4640
4240
|
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>;
|
|
4241
|
+
getStorageSnapshot(input?: OpensteerStorageQueryInput): Promise<OpensteerStorageQueryOutput>;
|
|
4242
|
+
getBrowserState(input?: OpensteerStateQueryInput): Promise<OpensteerStateQueryOutput>;
|
|
4243
|
+
fetch(input: OpensteerSessionFetchInput): Promise<OpensteerSessionFetchOutput>;
|
|
4659
4244
|
computerExecute(input: OpensteerComputerExecuteInput): Promise<OpensteerComputerExecuteOutput>;
|
|
4660
4245
|
close(): Promise<OpensteerSessionCloseOutput>;
|
|
4661
4246
|
disconnect(): Promise<void>;
|
|
@@ -4713,4 +4298,4 @@ declare function discoverLocalCdpBrowsers(input?: {
|
|
|
4713
4298
|
readonly timeoutMs?: number;
|
|
4714
4299
|
}): Promise<readonly LocalCdpBrowserCandidate[]>;
|
|
4715
4300
|
|
|
4716
|
-
export { type AnchorTargetRef, type AppendTraceEntryInput, type ArtifactManifest, type ArtifactPayloadType, type ArtifactScope, type
|
|
4301
|
+
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, hashDomDescriptorPersist, inspectCdpEndpoint, isCurrentUrlField, isValidCssAttributeKey, listLocalChromeProfiles, manifestToExternalBinaryLocation, normalizeExtractedValue, normalizeObservabilityConfig, normalizeOpensteerEngineName, normalizeOpensteerProviderMode, normalizeWorkspaceId, parseDomDescriptorRecord, parseExtractionDescriptorRecord, readPersistedCloudSessionRecord, readPersistedLocalBrowserSessionRecord, readPersistedSessionRecord, resolveCloudConfig, resolveCloudSessionRecordPath, resolveDomActionBridge, resolveExtractedValueInContext, resolveFilesystemWorkspacePath, resolveLiveSessionRecordPath, resolveLocalSessionRecordPath, resolveOpensteerEngineName, resolveOpensteerProvider, resolveOpensteerRuntimeConfig, runWithPolicyTimeout, sanitizeElementPath, sanitizeReplayElementPath, sanitizeStructuralElementAnchor, settleWithPolicy, shouldKeepAttributeForPath, writePersistedSessionRecord };
|