opensteer 0.9.1 → 0.9.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (34) hide show
  1. package/README.md +0 -3
  2. package/dist/{chunk-4LP7QP2O.js → chunk-2TIVULZY.js} +3 -236
  3. package/dist/chunk-2TIVULZY.js.map +1 -0
  4. package/dist/{chunk-Z53HNZ7Z.js → chunk-FIMNKEG5.js} +3 -3
  5. package/dist/{chunk-Z53HNZ7Z.js.map → chunk-FIMNKEG5.js.map} +1 -1
  6. package/dist/{chunk-6PGXWW3X.js → chunk-GREXSYNC.js} +120 -2047
  7. package/dist/chunk-GREXSYNC.js.map +1 -0
  8. package/dist/{chunk-L4FWHBQJ.js → chunk-UM2Q4JD2.js} +5 -36
  9. package/dist/chunk-UM2Q4JD2.js.map +1 -0
  10. package/dist/cli/bin.cjs +422 -2616
  11. package/dist/cli/bin.cjs.map +1 -1
  12. package/dist/cli/bin.js +5 -5
  13. package/dist/cli/bin.js.map +1 -1
  14. package/dist/index.cjs +170 -2361
  15. package/dist/index.cjs.map +1 -1
  16. package/dist/index.d.cts +59 -757
  17. package/dist/index.d.ts +59 -757
  18. package/dist/index.js +3 -3
  19. package/dist/local-view/public/assets/app.css +219 -55
  20. package/dist/local-view/public/assets/app.js +58 -2
  21. package/dist/local-view/public/index.html +101 -26
  22. package/dist/local-view/serve-entry.cjs +2 -235
  23. package/dist/local-view/serve-entry.cjs.map +1 -1
  24. package/dist/local-view/serve-entry.js +1 -1
  25. package/dist/opensteer-IBDPRIEX.js +6 -0
  26. package/dist/{opensteer-KZCRP425.js.map → opensteer-IBDPRIEX.js.map} +1 -1
  27. package/dist/{session-control-VGBFOH3Y.js → session-control-IFE3IPS3.js} +3 -3
  28. package/dist/{session-control-VGBFOH3Y.js.map → session-control-IFE3IPS3.js.map} +1 -1
  29. package/package.json +6 -6
  30. package/skills/opensteer/SKILL.md +1 -1
  31. package/dist/chunk-4LP7QP2O.js.map +0 -1
  32. package/dist/chunk-6PGXWW3X.js.map +0 -1
  33. package/dist/chunk-L4FWHBQJ.js.map +0 -1
  34. package/dist/opensteer-KZCRP425.js +0 -6
package/dist/index.d.ts CHANGED
@@ -860,29 +860,6 @@ interface NetworkQueryRecord {
860
860
  readonly record: NetworkRecord;
861
861
  }
862
862
 
863
- type CaptchaType = "recaptcha-v2" | "hcaptcha" | "turnstile";
864
- type CaptchaProvider = "2captcha" | "capsolver";
865
- interface CaptchaDetectionResult {
866
- readonly type: CaptchaType;
867
- readonly siteKey: string;
868
- readonly pageUrl: string;
869
- }
870
- interface OpensteerCaptchaSolveInput {
871
- readonly provider: CaptchaProvider;
872
- readonly apiKey: string;
873
- readonly pageRef?: PageRef;
874
- readonly timeoutMs?: number;
875
- readonly type?: CaptchaType;
876
- readonly siteKey?: string;
877
- readonly pageUrl?: string;
878
- }
879
- interface OpensteerCaptchaSolveOutput {
880
- readonly captcha: CaptchaDetectionResult;
881
- readonly token: string;
882
- readonly injected: boolean;
883
- readonly provider: CaptchaProvider;
884
- }
885
-
886
863
  type OpensteerRequestScalar = string | number | boolean;
887
864
  type TransportKind = "direct-http" | "matched-tls" | "context-http" | "page-http" | "session-http";
888
865
  interface OpensteerRequestEntry {
@@ -923,10 +900,6 @@ interface OpensteerRequestPlanResponseExpectation {
923
900
  readonly status: number | readonly number[];
924
901
  readonly contentType?: string;
925
902
  }
926
- interface OpensteerRecipeRef {
927
- readonly key: string;
928
- readonly version?: string;
929
- }
930
903
  interface OpensteerRequestFailurePolicyHeaderMatch {
931
904
  readonly name: string;
932
905
  readonly valueIncludes: string;
@@ -948,21 +921,8 @@ interface OpensteerRequestRetryPolicy {
948
921
  readonly respectRetryAfter?: boolean;
949
922
  readonly failurePolicy?: OpensteerRequestFailurePolicy;
950
923
  }
951
- type OpensteerRecipeCachePolicy = "none" | "untilFailure";
952
- interface OpensteerRequestPlanRecipeBinding {
953
- readonly recipe: OpensteerRecipeRef;
954
- readonly cachePolicy?: OpensteerRecipeCachePolicy;
955
- }
956
- interface OpensteerRequestPlanRecoverBinding extends OpensteerRequestPlanRecipeBinding {
957
- readonly failurePolicy: OpensteerRequestFailurePolicy;
958
- }
959
- interface OpensteerRequestPlanRecipes {
960
- readonly prepare?: OpensteerRequestPlanRecipeBinding;
961
- readonly recover?: OpensteerRequestPlanRecoverBinding;
962
- }
963
924
  interface OpensteerRequestPlanAuth {
964
925
  readonly strategy: "session-cookie" | "bearer-token" | "api-key" | "custom";
965
- readonly recipe?: OpensteerRecipeRef;
966
926
  readonly failurePolicy?: OpensteerRequestFailurePolicy;
967
927
  readonly description?: string;
968
928
  }
@@ -972,7 +932,6 @@ interface OpensteerRequestPlanPayload {
972
932
  readonly parameters?: readonly OpensteerRequestPlanParameter[];
973
933
  readonly body?: OpensteerRequestPlanBody;
974
934
  readonly response?: OpensteerRequestPlanResponseExpectation;
975
- readonly recipes?: OpensteerRequestPlanRecipes;
976
935
  readonly retryPolicy?: OpensteerRequestRetryPolicy;
977
936
  readonly auth?: OpensteerRequestPlanAuth;
978
937
  }
@@ -987,144 +946,6 @@ interface OpensteerRequestPlanFreshness {
987
946
  readonly staleAt?: number;
988
947
  readonly expiresAt?: number;
989
948
  }
990
- interface OpensteerRecipeStepHeaderCapture {
991
- readonly name: string;
992
- readonly saveAs: string;
993
- }
994
- interface OpensteerRecipeStepBodyJsonPointerCapture {
995
- readonly pointer: string;
996
- readonly saveAs: string;
997
- }
998
- interface OpensteerRecipeStepBodyTextCapture {
999
- readonly saveAs: string;
1000
- }
1001
- interface OpensteerRecipeStepResponseCapture {
1002
- readonly header?: OpensteerRecipeStepHeaderCapture;
1003
- readonly bodyJsonPointer?: OpensteerRecipeStepBodyJsonPointerCapture;
1004
- readonly bodyText?: OpensteerRecipeStepBodyTextCapture;
1005
- }
1006
- interface OpensteerRecipeRequestStepInput {
1007
- readonly url: string;
1008
- readonly transport?: TransportKind;
1009
- readonly pageRef?: PageRef;
1010
- readonly cookieJar?: string;
1011
- readonly method?: string;
1012
- readonly headers?: Readonly<Record<string, string>>;
1013
- readonly query?: Readonly<Record<string, string>>;
1014
- readonly body?: OpensteerRequestBodyInput;
1015
- readonly followRedirects?: boolean;
1016
- }
1017
- interface OpensteerRecipeGotoStep {
1018
- readonly kind: "goto";
1019
- readonly url: string;
1020
- }
1021
- interface OpensteerRecipeReloadStep {
1022
- readonly kind: "reload";
1023
- }
1024
- interface OpensteerRecipeWaitForUrlStep {
1025
- readonly kind: "waitForUrl";
1026
- readonly includes: string;
1027
- readonly timeoutMs?: number;
1028
- }
1029
- interface OpensteerRecipeWaitForNetworkStep {
1030
- readonly kind: "waitForNetwork";
1031
- readonly url?: string;
1032
- readonly hostname?: string;
1033
- readonly path?: string;
1034
- readonly method?: string;
1035
- readonly status?: string;
1036
- readonly includeBodies?: boolean;
1037
- readonly timeoutMs?: number;
1038
- readonly saveAs?: string;
1039
- }
1040
- interface OpensteerRecipeWaitForCookieStep {
1041
- readonly kind: "waitForCookie";
1042
- readonly name: string;
1043
- readonly url?: string;
1044
- readonly timeoutMs?: number;
1045
- readonly saveAs?: string;
1046
- }
1047
- interface OpensteerRecipeWaitForStorageStep {
1048
- readonly kind: "waitForStorage";
1049
- readonly area: "local" | "session";
1050
- readonly origin: string;
1051
- readonly key: string;
1052
- readonly timeoutMs?: number;
1053
- readonly saveAs?: string;
1054
- }
1055
- interface OpensteerRecipeReadCookieStep {
1056
- readonly kind: "readCookie";
1057
- readonly name: string;
1058
- readonly url?: string;
1059
- readonly saveAs: string;
1060
- }
1061
- interface OpensteerRecipeReadStorageStep {
1062
- readonly kind: "readStorage";
1063
- readonly area: "local" | "session";
1064
- readonly origin: string;
1065
- readonly key: string;
1066
- readonly pageUrl?: string;
1067
- readonly saveAs: string;
1068
- }
1069
- interface OpensteerRecipeEvaluateStep {
1070
- readonly kind: "evaluate";
1071
- readonly script: string;
1072
- readonly args?: readonly JsonValue$1[];
1073
- readonly pageRef?: PageRef;
1074
- readonly saveAs?: string;
1075
- }
1076
- interface OpensteerRecipeSyncCookiesToJarStep {
1077
- readonly kind: "syncCookiesToJar";
1078
- readonly jar: string;
1079
- readonly urls?: readonly string[];
1080
- }
1081
- interface OpensteerRecipeRequestStep {
1082
- readonly kind: "request";
1083
- readonly request: OpensteerRecipeRequestStepInput;
1084
- readonly capture?: OpensteerRecipeStepResponseCapture;
1085
- }
1086
- interface OpensteerAuthRecipeSessionRequestStep {
1087
- readonly kind: "sessionRequest";
1088
- readonly request: OpensteerRecipeRequestStepInput;
1089
- readonly capture?: OpensteerRecipeStepResponseCapture;
1090
- }
1091
- interface OpensteerAuthRecipeDirectRequestStep {
1092
- readonly kind: "directRequest";
1093
- readonly request: OpensteerRecipeRequestStepInput;
1094
- readonly capture?: OpensteerRecipeStepResponseCapture;
1095
- }
1096
- interface OpensteerRecipeSolveCaptchaStep {
1097
- readonly kind: "solveCaptcha";
1098
- readonly provider: CaptchaProvider;
1099
- readonly apiKey: string;
1100
- readonly pageRef?: PageRef;
1101
- readonly timeoutMs?: number;
1102
- readonly type?: CaptchaType;
1103
- readonly siteKey?: string;
1104
- readonly pageUrl?: string;
1105
- readonly saveAs?: string;
1106
- }
1107
- interface OpensteerRecipeHookRef {
1108
- readonly specifier: string;
1109
- readonly export: string;
1110
- }
1111
- interface OpensteerRecipeHookStep {
1112
- readonly kind: "hook";
1113
- readonly hook: OpensteerRecipeHookRef;
1114
- }
1115
- type OpensteerRecipeStep = OpensteerRecipeGotoStep | OpensteerRecipeReloadStep | OpensteerRecipeWaitForUrlStep | OpensteerRecipeWaitForNetworkStep | OpensteerRecipeWaitForCookieStep | OpensteerRecipeWaitForStorageStep | OpensteerRecipeReadCookieStep | OpensteerRecipeReadStorageStep | OpensteerRecipeEvaluateStep | OpensteerRecipeSyncCookiesToJarStep | OpensteerRecipeRequestStep | OpensteerAuthRecipeSessionRequestStep | OpensteerAuthRecipeDirectRequestStep | OpensteerRecipeSolveCaptchaStep | OpensteerRecipeHookStep;
1116
- interface OpensteerRecipeRetryOverrides {
1117
- readonly params?: Readonly<Record<string, string>>;
1118
- readonly headers?: Readonly<Record<string, string>>;
1119
- readonly query?: Readonly<Record<string, string>>;
1120
- readonly body?: Readonly<Record<string, string>>;
1121
- }
1122
- interface OpensteerRecipePayload {
1123
- readonly description?: string;
1124
- readonly steps: readonly OpensteerRecipeStep[];
1125
- readonly outputs?: OpensteerRecipeRetryOverrides;
1126
- }
1127
- type OpensteerAuthRecipePayload = OpensteerRecipePayload;
1128
949
  interface OpensteerNetworkQueryInput {
1129
950
  readonly pageRef?: PageRef;
1130
951
  readonly recordId?: string;
@@ -1302,6 +1123,41 @@ interface OpensteerRequestResponseResult {
1302
1123
  readonly redirected: boolean;
1303
1124
  }
1304
1125
 
1126
+ interface OpensteerStateSnapshot {
1127
+ readonly id: string;
1128
+ readonly capturedAt: number;
1129
+ readonly pageRef?: PageRef;
1130
+ readonly url?: string;
1131
+ readonly cookies?: readonly {
1132
+ readonly name: string;
1133
+ readonly value: string;
1134
+ readonly domain: string;
1135
+ readonly path: string;
1136
+ readonly secure: boolean;
1137
+ readonly httpOnly: boolean;
1138
+ readonly sameSite?: "strict" | "lax" | "none";
1139
+ readonly priority?: "low" | "medium" | "high";
1140
+ readonly partitionKey?: string;
1141
+ readonly session: boolean;
1142
+ readonly expiresAt?: number | null;
1143
+ }[];
1144
+ readonly storage?: StorageSnapshot;
1145
+ readonly hiddenFields?: readonly {
1146
+ readonly path: string;
1147
+ readonly name: string;
1148
+ readonly value: string;
1149
+ }[];
1150
+ readonly globals?: Readonly<Record<string, unknown>>;
1151
+ }
1152
+ interface OpensteerStateDelta {
1153
+ readonly beforeStateId?: string;
1154
+ readonly afterStateId?: string;
1155
+ readonly cookiesChanged: readonly string[];
1156
+ readonly storageChanged: readonly string[];
1157
+ readonly hiddenFieldsChanged: readonly string[];
1158
+ readonly globalsChanged: readonly string[];
1159
+ }
1160
+
1305
1161
  interface ScreenshotArtifact {
1306
1162
  readonly pageRef: PageRef;
1307
1163
  readonly frameRef?: FrameRef;
@@ -1599,6 +1455,29 @@ interface OpensteerArtifactReadOutput {
1599
1455
  readonly artifact: OpensteerArtifact;
1600
1456
  }
1601
1457
 
1458
+ type CaptchaType = "recaptcha-v2" | "hcaptcha" | "turnstile";
1459
+ type CaptchaProvider = "2captcha" | "capsolver";
1460
+ interface CaptchaDetectionResult {
1461
+ readonly type: CaptchaType;
1462
+ readonly siteKey: string;
1463
+ readonly pageUrl: string;
1464
+ }
1465
+ interface OpensteerCaptchaSolveInput {
1466
+ readonly provider: CaptchaProvider;
1467
+ readonly apiKey: string;
1468
+ readonly pageRef?: PageRef;
1469
+ readonly timeoutMs?: number;
1470
+ readonly type?: CaptchaType;
1471
+ readonly siteKey?: string;
1472
+ readonly pageUrl?: string;
1473
+ }
1474
+ interface OpensteerCaptchaSolveOutput {
1475
+ readonly captcha: CaptchaDetectionResult;
1476
+ readonly token: string;
1477
+ readonly injected: boolean;
1478
+ readonly provider: CaptchaProvider;
1479
+ }
1480
+
1602
1481
  type TraceOutcome = "ok" | "error";
1603
1482
  interface TraceContext {
1604
1483
  readonly sessionRef?: SessionRef;
@@ -2171,509 +2050,6 @@ interface OpensteerScriptSandboxOutput {
2171
2050
  readonly durationMs: number;
2172
2051
  }
2173
2052
 
2174
- type OpensteerStateSourceKind = "temporary" | "persistent" | "attach";
2175
- type OpensteerReverseCaseStatus = "capturing" | "analyzing" | "ready" | "attention";
2176
- type OpensteerReverseChannelKind = "http" | "event-stream" | "websocket";
2177
- type OpensteerReverseCandidateBoundary = "first-party" | "same-site" | "third-party";
2178
- type OpensteerReverseAdvisoryTag = "data" | "facet" | "telemetry" | "subscription" | "navigation" | "document" | "route-data" | "search" | "tracking" | "unknown";
2179
- type OpensteerReverseConstraintKind = "requires-browser" | "requires-cookie" | "requires-storage" | "requires-script" | "requires-guard" | "requires-live-state" | "opaque-body" | "unsupported";
2180
- type OpensteerRequestInputLocation = "path" | "query" | "header" | "cookie" | "body-field";
2181
- type OpensteerRequestInputRequiredness = "required" | "optional" | "unknown";
2182
- type OpensteerRequestInputClassification = "managed" | "static" | "contextual" | "volatile";
2183
- type OpensteerRequestInputSource = "literal" | "cookie" | "storage" | "prior-response" | "page" | "script" | "guard-output" | "runtime-managed" | "unknown";
2184
- type OpensteerRequestInputMaterializationPolicy = "copy" | "omit" | "recompute" | "resolve";
2185
- type OpensteerRequestInputExportPolicy = "portable" | "browser-bound" | "blocked";
2186
- type OpensteerReverseQueryView = "records" | "clusters" | "candidates";
2187
- type OpensteerReverseSortKey = "observed-at" | "advisory-rank" | "target-hint-matches" | "response-richness" | "portability" | "boundary" | "success";
2188
- type OpensteerReverseSortPreset = "advisory-rank" | "observed-at" | "portability" | "first-party" | "hint-match" | "response-richness";
2189
- type OpensteerReverseSortDirection = "asc" | "desc";
2190
- type OpensteerObservationClusterRelationshipKind = "seed" | "preflight" | "redirect" | "retry" | "duplicate" | "follow-on";
2191
- type OpensteerReversePackageKind = "portable-http" | "browser-workflow";
2192
- type OpensteerReversePackageReadiness = "runnable" | "draft" | "unsupported";
2193
- type OpensteerReverseReportKind = "discovery" | "package";
2194
- type OpensteerBodyCodecKind = "json" | "form-urlencoded" | "multipart" | "graphql" | "persisted-graphql" | "text" | "opaque-binary" | "sse" | "websocket-json" | "websocket-text" | "unknown";
2195
- type OpensteerExecutableResolverKind = "literal" | "cookie" | "storage" | "prior-record" | "binding" | "candidate" | "case" | "state-snapshot" | "artifact" | "manual" | "runtime-managed";
2196
- type OpensteerValueReferenceKind = "literal" | "resolver" | "binding" | "candidate" | "case" | "record" | "artifact" | "state-snapshot" | "runtime" | "manual";
2197
- type OpensteerRuntimeValueKey = "pageRef" | "packageId" | "caseId" | "candidateId" | "objective";
2198
- type OpensteerValidationRuleKind = "status" | "json-structure" | "text-includes" | "stream-first-chunk" | "websocket-open" | "message-count-at-least";
2199
- type OpensteerReverseRequirementKind = "resolver" | "guard" | "workflow-step" | "state" | "channel" | "unsupported";
2200
- type OpensteerReverseRequirementStatus = "required" | "recommended";
2201
- type OpensteerReverseSuggestedEditKind = "set-resolver" | "attach-trace" | "replace-workflow" | "patch-step-input" | "switch-state-source" | "inspect-evidence" | "mark-unsupported";
2202
- interface OpensteerValueReference {
2203
- readonly kind: OpensteerValueReferenceKind;
2204
- readonly pointer?: string;
2205
- readonly resolverId?: string;
2206
- readonly binding?: string;
2207
- readonly recordId?: string;
2208
- readonly artifactId?: string;
2209
- readonly stateSnapshotId?: string;
2210
- readonly runtimeKey?: OpensteerRuntimeValueKey;
2211
- readonly value?: JsonValue$1;
2212
- readonly placeholder?: string;
2213
- }
2214
- interface OpensteerValueReferenceEnvelope {
2215
- readonly $ref: OpensteerValueReference;
2216
- }
2217
- interface OpensteerValueTemplateObject {
2218
- readonly [key: string]: OpensteerValueTemplate;
2219
- }
2220
- type OpensteerValueTemplate = JsonValue$1 | OpensteerValueReferenceEnvelope | OpensteerValueTemplateObject | readonly OpensteerValueTemplate[];
2221
- interface OpensteerBodyCodecDescriptor {
2222
- readonly kind: OpensteerBodyCodecKind;
2223
- readonly contentType?: string;
2224
- readonly operationName?: string;
2225
- readonly fieldPaths: readonly string[];
2226
- }
2227
- interface OpensteerObservationCluster {
2228
- readonly id: string;
2229
- readonly observationId: string;
2230
- readonly label: string;
2231
- readonly channel: OpensteerReverseChannelKind;
2232
- readonly method?: string;
2233
- readonly url: string;
2234
- readonly matchedTargetHints: readonly string[];
2235
- readonly members: readonly OpensteerObservationClusterMember[];
2236
- }
2237
- interface OpensteerObservationClusterMember {
2238
- readonly recordId: string;
2239
- readonly observedAt?: number;
2240
- readonly resourceType?: string;
2241
- readonly status?: number;
2242
- readonly relation: OpensteerObservationClusterRelationshipKind;
2243
- readonly relatedRecordId?: string;
2244
- readonly matchedTargetHints: readonly string[];
2245
- }
2246
- interface OpensteerStateSnapshot {
2247
- readonly id: string;
2248
- readonly capturedAt: number;
2249
- readonly pageRef?: PageRef;
2250
- readonly url?: string;
2251
- readonly cookies?: readonly {
2252
- readonly name: string;
2253
- readonly value: string;
2254
- readonly domain: string;
2255
- readonly path: string;
2256
- readonly secure: boolean;
2257
- readonly httpOnly: boolean;
2258
- readonly sameSite?: "strict" | "lax" | "none";
2259
- readonly priority?: "low" | "medium" | "high";
2260
- readonly partitionKey?: string;
2261
- readonly session: boolean;
2262
- readonly expiresAt?: number | null;
2263
- }[];
2264
- readonly storage?: StorageSnapshot;
2265
- readonly hiddenFields?: readonly {
2266
- readonly path: string;
2267
- readonly name: string;
2268
- readonly value: string;
2269
- }[];
2270
- readonly globals?: Readonly<Record<string, unknown>>;
2271
- }
2272
- interface OpensteerStateDelta {
2273
- readonly beforeStateId?: string;
2274
- readonly afterStateId?: string;
2275
- readonly cookiesChanged: readonly string[];
2276
- readonly storageChanged: readonly string[];
2277
- readonly hiddenFieldsChanged: readonly string[];
2278
- readonly globalsChanged: readonly string[];
2279
- }
2280
- interface OpensteerRequestInputDescriptor {
2281
- readonly name: string;
2282
- readonly location: OpensteerRequestInputLocation;
2283
- readonly path?: string;
2284
- readonly wireName?: string;
2285
- readonly requiredness: OpensteerRequestInputRequiredness;
2286
- readonly classification: OpensteerRequestInputClassification;
2287
- readonly source: OpensteerRequestInputSource;
2288
- readonly materializationPolicy: OpensteerRequestInputMaterializationPolicy;
2289
- readonly exportPolicy: OpensteerRequestInputExportPolicy;
2290
- readonly originalValue?: string;
2291
- readonly provenance?: {
2292
- readonly recordId?: string;
2293
- readonly observationId?: string;
2294
- readonly sourcePointer?: string;
2295
- readonly notes?: string;
2296
- };
2297
- readonly unlockedByGuardIds?: readonly string[];
2298
- }
2299
- interface OpensteerExecutableResolver {
2300
- readonly id: string;
2301
- readonly kind: OpensteerExecutableResolverKind;
2302
- readonly label: string;
2303
- readonly status: "ready" | "missing";
2304
- readonly requiresBrowser: boolean;
2305
- readonly requiresLiveState: boolean;
2306
- readonly description?: string;
2307
- readonly inputNames?: readonly string[];
2308
- readonly guardId?: string;
2309
- readonly traceId?: string;
2310
- readonly valueRef?: OpensteerValueReference;
2311
- }
2312
- interface OpensteerReverseAdvisorySignals {
2313
- readonly advisoryRank: number;
2314
- readonly observedAt?: number;
2315
- readonly targetHintMatches: number;
2316
- readonly responseRichness: number;
2317
- readonly portabilityWeight: number;
2318
- readonly boundaryWeight: number;
2319
- readonly successfulStatus: boolean;
2320
- readonly fetchLike: boolean;
2321
- readonly hasResponseBody: boolean;
2322
- readonly dataPathMatch: boolean;
2323
- readonly cookieInputCount: number;
2324
- readonly storageInputCount: number;
2325
- readonly volatileInputCount: number;
2326
- readonly guardCount: number;
2327
- }
2328
- interface OpensteerValidationRule {
2329
- readonly id: string;
2330
- readonly kind: OpensteerValidationRuleKind;
2331
- readonly label: string;
2332
- readonly required: boolean;
2333
- readonly expectedStatus?: number;
2334
- readonly structureHash?: string;
2335
- readonly textIncludes?: string;
2336
- readonly minimumCount?: number;
2337
- }
2338
- interface OpensteerReverseOperationWorkflowStep {
2339
- readonly id: string;
2340
- readonly kind: "operation";
2341
- readonly label: string;
2342
- readonly operation: OpensteerSemanticOperationName | string;
2343
- readonly input: OpensteerValueTemplate;
2344
- readonly bindAs?: string;
2345
- }
2346
- interface OpensteerReverseAwaitRecordMatch {
2347
- readonly recordId?: string;
2348
- readonly host?: string;
2349
- readonly path?: string;
2350
- readonly method?: string;
2351
- readonly channel?: OpensteerReverseChannelKind;
2352
- readonly status?: number;
2353
- readonly text?: string;
2354
- }
2355
- interface OpensteerReverseAwaitRecordWorkflowStep {
2356
- readonly id: string;
2357
- readonly kind: "await-record";
2358
- readonly label: string;
2359
- readonly channel: OpensteerChannelDescriptor;
2360
- readonly recordId?: string;
2361
- readonly match?: OpensteerReverseAwaitRecordMatch;
2362
- readonly validationRuleIds?: readonly string[];
2363
- readonly timeoutMs?: number;
2364
- readonly bindAs?: string;
2365
- }
2366
- interface OpensteerReverseAssertWorkflowStep {
2367
- readonly id: string;
2368
- readonly kind: "assert";
2369
- readonly label: string;
2370
- readonly validationRuleIds: readonly string[];
2371
- readonly binding?: string;
2372
- }
2373
- type OpensteerReverseWorkflowStep = OpensteerReverseOperationWorkflowStep | OpensteerReverseAwaitRecordWorkflowStep | OpensteerReverseAssertWorkflowStep;
2374
- interface OpensteerReversePackageRequirements {
2375
- readonly requiresBrowser: boolean;
2376
- readonly requiresLiveState: boolean;
2377
- readonly manualCalibration: "not-needed" | "recommended" | "required";
2378
- readonly stateSources: readonly OpensteerStateSourceKind[];
2379
- }
2380
- interface OpensteerChannelDescriptor {
2381
- readonly kind: OpensteerReverseChannelKind;
2382
- readonly recordKind: "http" | "event-stream" | "websocket";
2383
- readonly method?: string;
2384
- readonly url: string;
2385
- readonly subprotocol?: string;
2386
- }
2387
- interface OpensteerReverseAdvisoryTemplate {
2388
- readonly id: string;
2389
- readonly label: string;
2390
- readonly channel: OpensteerReverseChannelKind;
2391
- readonly execution: "transport" | "page-observation";
2392
- readonly stateSource: OpensteerStateSourceKind;
2393
- readonly observationId?: string;
2394
- readonly transport?: TransportKind;
2395
- readonly guardIds: readonly string[];
2396
- readonly resolverIds: readonly string[];
2397
- readonly requiresBrowser: boolean;
2398
- readonly requiresLiveState: boolean;
2399
- readonly viability: "ready" | "draft" | "unsupported";
2400
- readonly notes?: string;
2401
- }
2402
- interface OpensteerReverseGuardRecord {
2403
- readonly id: string;
2404
- readonly kind: "interaction" | "state" | "script" | "manual";
2405
- readonly label: string;
2406
- readonly status: "required" | "satisfied" | "unresolved";
2407
- readonly interactionTraceId?: string;
2408
- readonly notes?: string;
2409
- }
2410
- interface OpensteerReverseObservationRecord {
2411
- readonly id: string;
2412
- readonly capturedAt: number;
2413
- readonly pageRef?: PageRef;
2414
- readonly url?: string;
2415
- readonly stateSource: OpensteerStateSourceKind;
2416
- readonly networkRecordIds: readonly string[];
2417
- readonly scriptArtifactIds: readonly string[];
2418
- readonly interactionTraceIds: readonly string[];
2419
- readonly stateSnapshotIds: readonly string[];
2420
- readonly notes?: string;
2421
- }
2422
- interface OpensteerReverseCandidateRecord {
2423
- readonly id: string;
2424
- readonly observationId: string;
2425
- readonly clusterId: string;
2426
- readonly recordId: string;
2427
- readonly channel: OpensteerChannelDescriptor;
2428
- readonly bodyCodec: OpensteerBodyCodecDescriptor;
2429
- readonly boundary: OpensteerReverseCandidateBoundary;
2430
- readonly summary: string;
2431
- readonly matchedTargetHints: readonly string[];
2432
- readonly advisoryTags: readonly OpensteerReverseAdvisoryTag[];
2433
- readonly constraints: readonly OpensteerReverseConstraintKind[];
2434
- readonly signals: OpensteerReverseAdvisorySignals;
2435
- readonly inputs: readonly OpensteerRequestInputDescriptor[];
2436
- readonly resolvers: readonly OpensteerExecutableResolver[];
2437
- readonly guardIds: readonly string[];
2438
- readonly scriptArtifactIds: readonly string[];
2439
- readonly advisoryTemplates: readonly OpensteerReverseAdvisoryTemplate[];
2440
- }
2441
- interface OpensteerReverseReplayValidation {
2442
- readonly statusMatches?: boolean;
2443
- readonly structureMatches?: boolean;
2444
- readonly opened?: boolean;
2445
- readonly firstChunkObserved?: boolean;
2446
- readonly firstChunkMatches?: boolean;
2447
- readonly messageObserved?: boolean;
2448
- readonly messageCount?: number;
2449
- }
2450
- interface OpensteerReverseReplayRunRecord {
2451
- readonly id: string;
2452
- readonly createdAt: number;
2453
- readonly candidateId?: string;
2454
- readonly templateId?: string;
2455
- readonly packageId: string;
2456
- readonly success: boolean;
2457
- readonly channel?: OpensteerReverseChannelKind;
2458
- readonly kind: OpensteerReversePackageKind;
2459
- readonly readiness: OpensteerReversePackageReadiness;
2460
- readonly transport?: TransportKind;
2461
- readonly stateSource?: OpensteerStateSourceKind;
2462
- readonly executedStepIds: readonly string[];
2463
- readonly failedStepId?: string;
2464
- readonly bindings?: Readonly<Record<string, JsonValue$1>>;
2465
- readonly recordId?: string;
2466
- readonly status?: number;
2467
- readonly validation: OpensteerReverseReplayValidation;
2468
- readonly error?: string;
2469
- }
2470
- interface OpensteerReverseExperimentRecord {
2471
- readonly id: string;
2472
- readonly createdAt: number;
2473
- readonly candidateId?: string;
2474
- readonly templateId?: string;
2475
- readonly kind: "replay-attempt" | "field-variation";
2476
- readonly hypothesis: string;
2477
- readonly success: boolean;
2478
- readonly status?: number;
2479
- readonly notes?: string;
2480
- readonly validation?: OpensteerReverseReplayValidation;
2481
- }
2482
- interface OpensteerReverseRequirement {
2483
- readonly id: string;
2484
- readonly kind: OpensteerReverseRequirementKind;
2485
- readonly status: OpensteerReverseRequirementStatus;
2486
- readonly label: string;
2487
- readonly description?: string;
2488
- readonly blocking: boolean;
2489
- readonly resolverId?: string;
2490
- readonly guardId?: string;
2491
- readonly stepId?: string;
2492
- readonly inputNames?: readonly string[];
2493
- readonly traceId?: string;
2494
- readonly artifactId?: string;
2495
- readonly recordId?: string;
2496
- }
2497
- interface OpensteerReverseSuggestedEdit {
2498
- readonly id: string;
2499
- readonly kind: OpensteerReverseSuggestedEditKind;
2500
- readonly label: string;
2501
- readonly description?: string;
2502
- readonly resolverId?: string;
2503
- readonly guardId?: string;
2504
- readonly stepId?: string;
2505
- readonly traceId?: string;
2506
- readonly artifactId?: string;
2507
- readonly recordId?: string;
2508
- readonly payload?: JsonValue$1;
2509
- }
2510
- interface OpensteerReverseExportRecord {
2511
- readonly id: string;
2512
- readonly createdAt: number;
2513
- readonly candidateId?: string;
2514
- readonly templateId?: string;
2515
- readonly packageId: string;
2516
- readonly kind: OpensteerReversePackageKind;
2517
- readonly readiness: OpensteerReversePackageReadiness;
2518
- readonly requestPlanId?: string;
2519
- }
2520
- interface OpensteerReverseCasePayload {
2521
- readonly objective: string;
2522
- readonly notes?: string;
2523
- readonly status: OpensteerReverseCaseStatus;
2524
- readonly stateSource: OpensteerStateSourceKind;
2525
- readonly observations: readonly OpensteerReverseObservationRecord[];
2526
- readonly observationClusters: readonly OpensteerObservationCluster[];
2527
- readonly observedRecords: readonly OpensteerReverseObservedRecord[];
2528
- readonly candidates: readonly OpensteerReverseCandidateRecord[];
2529
- readonly guards: readonly OpensteerReverseGuardRecord[];
2530
- readonly stateSnapshots: readonly OpensteerStateSnapshot[];
2531
- readonly stateDeltas: readonly OpensteerStateDelta[];
2532
- readonly experiments: readonly OpensteerReverseExperimentRecord[];
2533
- readonly replayRuns: readonly OpensteerReverseReplayRunRecord[];
2534
- readonly exports: readonly OpensteerReverseExportRecord[];
2535
- }
2536
- interface OpensteerReversePackagePayload {
2537
- readonly kind: OpensteerReversePackageKind;
2538
- readonly readiness: OpensteerReversePackageReadiness;
2539
- readonly caseId: string;
2540
- readonly objective: string;
2541
- readonly source: {
2542
- readonly kind: "record" | "candidate";
2543
- readonly id: string;
2544
- };
2545
- readonly sourceRecordId: string;
2546
- readonly candidateId?: string;
2547
- readonly candidate?: OpensteerReverseCandidateRecord;
2548
- readonly templateId?: string;
2549
- readonly template?: OpensteerReverseAdvisoryTemplate;
2550
- readonly channel?: OpensteerChannelDescriptor;
2551
- readonly stateSource?: OpensteerStateSourceKind;
2552
- readonly observationId?: string;
2553
- readonly transport?: TransportKind;
2554
- readonly guardIds: readonly string[];
2555
- readonly workflow: readonly OpensteerReverseWorkflowStep[];
2556
- readonly resolvers: readonly OpensteerExecutableResolver[];
2557
- readonly validators: readonly OpensteerValidationRule[];
2558
- readonly stateSnapshots: readonly OpensteerStateSnapshot[];
2559
- readonly requirements: OpensteerReversePackageRequirements;
2560
- readonly requestPlanId?: string;
2561
- readonly unresolvedRequirements: readonly OpensteerReverseRequirement[];
2562
- readonly suggestedEdits: readonly OpensteerReverseSuggestedEdit[];
2563
- readonly attachedTraceIds: readonly string[];
2564
- readonly attachedArtifactIds: readonly string[];
2565
- readonly attachedRecordIds: readonly string[];
2566
- readonly notes?: string;
2567
- readonly parentPackageId?: string;
2568
- }
2569
- interface OpensteerReversePackageRecord {
2570
- readonly id: string;
2571
- readonly key: string;
2572
- readonly version: string;
2573
- readonly createdAt: number;
2574
- readonly updatedAt: number;
2575
- readonly contentHash: string;
2576
- readonly tags: readonly string[];
2577
- readonly provenance?: OpensteerRegistryProvenance;
2578
- readonly payload: OpensteerReversePackagePayload;
2579
- }
2580
- interface OpensteerReverseCandidateAdvisoryItem {
2581
- readonly candidateId: string;
2582
- readonly clusterId: string;
2583
- readonly advisoryRank: number;
2584
- readonly bodyCodec: OpensteerBodyCodecDescriptor;
2585
- readonly summary: string;
2586
- readonly advisoryTags: readonly OpensteerReverseAdvisoryTag[];
2587
- readonly constraints: readonly OpensteerReverseConstraintKind[];
2588
- readonly signals: OpensteerReverseAdvisorySignals;
2589
- readonly reasons: readonly string[];
2590
- }
2591
- interface OpensteerReverseDiscoverySummaryCounts {
2592
- readonly hosts: Readonly<Record<string, number>>;
2593
- readonly channels: Readonly<Record<string, number>>;
2594
- readonly resourceTypes: Readonly<Record<string, number>>;
2595
- readonly advisoryTags: Readonly<Record<string, number>>;
2596
- readonly constraints: Readonly<Record<string, number>>;
2597
- readonly relationKinds: Readonly<Record<string, number>>;
2598
- }
2599
- interface OpensteerReverseReportPayload {
2600
- readonly kind: OpensteerReverseReportKind;
2601
- readonly caseId: string;
2602
- readonly objective: string;
2603
- readonly observations: readonly OpensteerReverseObservationRecord[];
2604
- readonly observationClusters: readonly OpensteerObservationCluster[];
2605
- readonly observedRecords: readonly OpensteerReverseObservedRecord[];
2606
- readonly guards: readonly OpensteerReverseGuardRecord[];
2607
- readonly stateDeltas: readonly OpensteerStateDelta[];
2608
- readonly summaryCounts: OpensteerReverseDiscoverySummaryCounts;
2609
- readonly candidateAdvisories: readonly OpensteerReverseCandidateAdvisoryItem[];
2610
- readonly query?: OpensteerReverseQuerySnapshot;
2611
- readonly experiments: readonly OpensteerReverseExperimentRecord[];
2612
- readonly replayRuns: readonly OpensteerReverseReplayRunRecord[];
2613
- readonly linkedNetworkRecordIds: readonly string[];
2614
- readonly linkedInteractionTraceIds: readonly string[];
2615
- readonly linkedArtifactIds: readonly string[];
2616
- readonly linkedStateSnapshotIds: readonly string[];
2617
- readonly packageId?: string;
2618
- readonly packageKind?: OpensteerReversePackageKind;
2619
- readonly packageReadiness?: OpensteerReversePackageReadiness;
2620
- readonly unresolvedRequirements?: readonly OpensteerReverseRequirement[];
2621
- readonly suggestedEdits?: readonly OpensteerReverseSuggestedEdit[];
2622
- readonly package?: OpensteerReversePackageRecord;
2623
- }
2624
- interface OpensteerReverseObservedRecord {
2625
- readonly recordId: string;
2626
- readonly observationId: string;
2627
- readonly clusterId: string;
2628
- readonly observedAt?: number;
2629
- readonly channel: OpensteerChannelDescriptor;
2630
- readonly bodyCodec: OpensteerBodyCodecDescriptor;
2631
- readonly resourceType?: string;
2632
- readonly status?: number;
2633
- readonly matchedTargetHints: readonly string[];
2634
- readonly relationKinds: readonly OpensteerObservationClusterRelationshipKind[];
2635
- }
2636
- interface OpensteerReverseQueryFilters {
2637
- readonly recordId?: string;
2638
- readonly clusterId?: string;
2639
- readonly candidateId?: string;
2640
- readonly host?: string;
2641
- readonly path?: string;
2642
- readonly method?: string;
2643
- readonly status?: string;
2644
- readonly resourceType?: string;
2645
- readonly channel?: OpensteerReverseChannelKind;
2646
- readonly boundary?: OpensteerReverseCandidateBoundary;
2647
- readonly advisoryTag?: OpensteerReverseAdvisoryTag;
2648
- readonly constraint?: OpensteerReverseConstraintKind;
2649
- readonly bodyCodec?: OpensteerBodyCodecKind;
2650
- readonly relationKind?: OpensteerObservationClusterRelationshipKind;
2651
- readonly hasGuards?: boolean;
2652
- readonly hasResolvers?: boolean;
2653
- readonly artifactId?: string;
2654
- readonly stateSnapshotId?: string;
2655
- readonly traceId?: string;
2656
- readonly evidenceRef?: string;
2657
- readonly text?: string;
2658
- }
2659
- interface OpensteerReverseSortTerm {
2660
- readonly key: OpensteerReverseSortKey;
2661
- readonly direction?: OpensteerReverseSortDirection;
2662
- }
2663
- interface OpensteerReverseQuerySort {
2664
- readonly preset?: OpensteerReverseSortPreset;
2665
- readonly keys?: readonly OpensteerReverseSortTerm[];
2666
- }
2667
- interface OpensteerReverseQuerySnapshot {
2668
- readonly view: OpensteerReverseQueryView;
2669
- readonly filters?: OpensteerReverseQueryFilters;
2670
- readonly sort: OpensteerReverseQuerySort;
2671
- readonly limit: number;
2672
- readonly totalCount: number;
2673
- readonly nextCursor?: string;
2674
- readonly resultIds: readonly string[];
2675
- }
2676
-
2677
2053
  type OpensteerInteractionCaptureStep = {
2678
2054
  readonly kind: "goto";
2679
2055
  readonly url: string;
@@ -2989,12 +2365,7 @@ interface RegistryRecord<TPayload = JsonValue> {
2989
2365
  readonly payload: TPayload;
2990
2366
  }
2991
2367
  type DescriptorRecord = RegistryRecord;
2992
- type AuthRecipeRecord = RegistryRecord<OpensteerAuthRecipePayload>;
2993
- type RecipeRecord = RegistryRecord<OpensteerRecipePayload>;
2994
2368
  type InteractionTraceRecord = RegistryRecord<OpensteerInteractionTracePayload>;
2995
- type ReverseCaseRecord = RegistryRecord<OpensteerReverseCasePayload>;
2996
- type ReversePackageRecord = RegistryRecord<OpensteerReversePackagePayload>;
2997
- type ReverseReportRecord = RegistryRecord<OpensteerReverseReportPayload>;
2998
2369
  type RequestPlanFreshness = OpensteerRequestPlanFreshness;
2999
2370
  interface RequestPlanRecord extends RegistryRecord<OpensteerRequestPlanPayload> {
3000
2371
  readonly freshness?: RequestPlanFreshness;
@@ -3016,18 +2387,8 @@ interface WriteDescriptorInput<TPayload = JsonValue> {
3016
2387
  interface WriteRequestPlanInput extends WriteDescriptorInput<OpensteerRequestPlanPayload> {
3017
2388
  readonly freshness?: RequestPlanFreshness;
3018
2389
  }
3019
- interface WriteAuthRecipeInput extends WriteDescriptorInput<OpensteerAuthRecipePayload> {
3020
- }
3021
- interface WriteRecipeInput extends WriteDescriptorInput<OpensteerRecipePayload> {
3022
- }
3023
2390
  interface WriteInteractionTraceInput extends WriteDescriptorInput<OpensteerInteractionTracePayload> {
3024
2391
  }
3025
- interface WriteReverseCaseInput extends WriteDescriptorInput<OpensteerReverseCasePayload> {
3026
- }
3027
- interface WriteReversePackageInput extends WriteDescriptorInput<OpensteerReversePackagePayload> {
3028
- }
3029
- interface WriteReverseReportInput extends WriteDescriptorInput<OpensteerReverseReportPayload> {
3030
- }
3031
2392
  interface ListRegistryRecordsInput {
3032
2393
  readonly key?: string;
3033
2394
  }
@@ -3036,13 +2397,6 @@ interface UpdateRequestPlanFreshnessInput {
3036
2397
  readonly updatedAt?: number;
3037
2398
  readonly freshness?: RequestPlanFreshness;
3038
2399
  }
3039
- interface UpdateReverseCaseInput {
3040
- readonly id: string;
3041
- readonly updatedAt?: number;
3042
- readonly tags?: readonly string[];
3043
- readonly provenance?: RegistryProvenance;
3044
- readonly payload: OpensteerReverseCasePayload;
3045
- }
3046
2400
  interface DescriptorRegistryStore {
3047
2401
  readonly recordsDirectory: string;
3048
2402
  readonly indexesDirectory: string;
@@ -3060,20 +2414,6 @@ interface RequestPlanRegistryStore {
3060
2414
  resolve(input: ResolveRegistryRecordInput): Promise<RequestPlanRecord | undefined>;
3061
2415
  updateFreshness(input: UpdateRequestPlanFreshnessInput): Promise<RequestPlanRecord>;
3062
2416
  }
3063
- interface AuthRecipeRegistryStore {
3064
- readonly recordsDirectory: string;
3065
- readonly indexesDirectory: string;
3066
- write(input: WriteAuthRecipeInput): Promise<AuthRecipeRecord>;
3067
- getById(id: string): Promise<AuthRecipeRecord | undefined>;
3068
- list(input?: ListRegistryRecordsInput): Promise<readonly AuthRecipeRecord[]>;
3069
- resolve(input: ResolveRegistryRecordInput): Promise<AuthRecipeRecord | undefined>;
3070
- }
3071
- interface RecipeRegistryStore extends AuthRecipeRegistryStore {
3072
- write(input: WriteRecipeInput): Promise<RecipeRecord>;
3073
- getById(id: string): Promise<RecipeRecord | undefined>;
3074
- list(input?: ListRegistryRecordsInput): Promise<readonly RecipeRecord[]>;
3075
- resolve(input: ResolveRegistryRecordInput): Promise<RecipeRecord | undefined>;
3076
- }
3077
2417
  interface InteractionTraceRegistryStore {
3078
2418
  readonly recordsDirectory: string;
3079
2419
  readonly indexesDirectory: string;
@@ -3082,31 +2422,6 @@ interface InteractionTraceRegistryStore {
3082
2422
  list(input?: ListRegistryRecordsInput): Promise<readonly InteractionTraceRecord[]>;
3083
2423
  resolve(input: ResolveRegistryRecordInput): Promise<InteractionTraceRecord | undefined>;
3084
2424
  }
3085
- interface ReverseCaseRegistryStore {
3086
- readonly recordsDirectory: string;
3087
- readonly indexesDirectory: string;
3088
- write(input: WriteReverseCaseInput): Promise<ReverseCaseRecord>;
3089
- getById(id: string): Promise<ReverseCaseRecord | undefined>;
3090
- list(input?: ListRegistryRecordsInput): Promise<readonly ReverseCaseRecord[]>;
3091
- resolve(input: ResolveRegistryRecordInput): Promise<ReverseCaseRecord | undefined>;
3092
- update(input: UpdateReverseCaseInput): Promise<ReverseCaseRecord>;
3093
- }
3094
- interface ReversePackageRegistryStore {
3095
- readonly recordsDirectory: string;
3096
- readonly indexesDirectory: string;
3097
- write(input: WriteReversePackageInput): Promise<ReversePackageRecord>;
3098
- getById(id: string): Promise<ReversePackageRecord | undefined>;
3099
- list(input?: ListRegistryRecordsInput): Promise<readonly ReversePackageRecord[]>;
3100
- resolve(input: ResolveRegistryRecordInput): Promise<ReversePackageRecord | undefined>;
3101
- }
3102
- interface ReverseReportRegistryStore {
3103
- readonly recordsDirectory: string;
3104
- readonly indexesDirectory: string;
3105
- write(input: WriteReverseReportInput): Promise<ReverseReportRecord>;
3106
- getById(id: string): Promise<ReverseReportRecord | undefined>;
3107
- list(input?: ListRegistryRecordsInput): Promise<readonly ReverseReportRecord[]>;
3108
- resolve(input: ResolveRegistryRecordInput): Promise<ReverseReportRecord | undefined>;
3109
- }
3110
2425
 
3111
2426
  interface SavedNetworkQueryInput {
3112
2427
  readonly pageRef?: NetworkQueryRecord["record"]["pageRef"];
@@ -3269,13 +2584,8 @@ interface FilesystemOpensteerWorkspace {
3269
2584
  readonly registry: {
3270
2585
  readonly descriptors: DescriptorRegistryStore;
3271
2586
  readonly requestPlans: RequestPlanRegistryStore;
3272
- readonly authRecipes: AuthRecipeRegistryStore;
3273
- readonly recipes: RecipeRegistryStore;
3274
2587
  readonly savedNetwork: SavedNetworkStore;
3275
- readonly reverseCases: ReverseCaseRegistryStore;
3276
2588
  readonly interactionTraces: InteractionTraceRegistryStore;
3277
- readonly reversePackages: ReversePackageRegistryStore;
3278
- readonly reverseReports: ReverseReportRegistryStore;
3279
2589
  };
3280
2590
  lock<T>(task: () => Promise<T>): Promise<T>;
3281
2591
  }
@@ -3893,10 +3203,6 @@ type OpensteerExtractOptions = {
3893
3203
  readonly persist?: string;
3894
3204
  readonly schema: Record<string, unknown>;
3895
3205
  };
3896
- interface OpensteerWaitForNetworkOptions extends OpensteerNetworkQueryInput {
3897
- readonly timeoutMs?: number;
3898
- readonly pollIntervalMs?: number;
3899
- }
3900
3206
  interface OpensteerWaitForPageOptions {
3901
3207
  readonly openerPageRef?: string;
3902
3208
  readonly urlIncludes?: string;
@@ -3961,16 +3267,12 @@ declare class Opensteer {
3961
3267
  closePage(input?: OpensteerPageCloseInput): Promise<OpensteerPageCloseOutput>;
3962
3268
  goto(url: string, options?: OpensteerGotoOptions): Promise<OpensteerPageGotoOutput>;
3963
3269
  evaluate(input: string | OpensteerPageEvaluateInput): Promise<OpensteerPageEvaluateOutput["value"]>;
3964
- evaluateJson(input: string | OpensteerPageEvaluateInput): Promise<OpensteerPageEvaluateOutput["value"]>;
3965
3270
  addInitScript(input: string | OpensteerAddInitScriptInput): Promise<OpensteerAddInitScriptOutput>;
3966
3271
  click(input: OpensteerClickOptions): Promise<OpensteerActionResult>;
3967
3272
  hover(input: OpensteerTargetOptions): Promise<OpensteerActionResult>;
3968
3273
  input(input: OpensteerInputOptions): Promise<OpensteerActionResult>;
3969
3274
  scroll(input: OpensteerScrollOptions): Promise<OpensteerActionResult>;
3970
3275
  extract(input: OpensteerExtractOptions): Promise<unknown>;
3971
- queryNetwork(input?: OpensteerNetworkQueryOptions): Promise<OpensteerNetworkQueryResult>;
3972
- waitForNetwork(input: OpensteerWaitForNetworkOptions): Promise<OpensteerNetworkQueryResult["records"][number]>;
3973
- waitForResponse(input: OpensteerWaitForNetworkOptions): Promise<OpensteerNetworkQueryResult["records"][number]>;
3974
3276
  waitForPage(input?: OpensteerWaitForPageOptions): Promise<OpensteerPageListOutput["pages"][number]>;
3975
3277
  snapshot(mode?: OpensteerSnapshotMode): Promise<string>;
3976
3278
  cookies(domain?: string): Promise<OpensteerCookieJar>;
@@ -4276,4 +3578,4 @@ declare function discoverLocalCdpBrowsers(input?: {
4276
3578
  readonly timeoutMs?: number;
4277
3579
  }): Promise<readonly LocalCdpBrowserCandidate[]>;
4278
3580
 
4279
- 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 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 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 RequestPlanRecord, type RequestPlanRegistryStore, 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 UpdateRequestPlanFreshnessInput, type WorkspaceBrowserBootstrap, type WorkspaceBrowserManifest, type WorkspaceLiveBrowserRecord, type WriteBinaryArtifactInput, type WriteDescriptorInput, type WriteInteractionTraceInput, type WriteRequestPlanInput, 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 };
3581
+ 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 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 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 OpensteerWaitForPageOptions, type OpensteerWorkspaceManifest, type PathNode, type PersistedCloudSessionRecord, type PersistedLocalBrowserSessionRecord, type PersistedSessionRecord, type ProtocolArtifactDelivery, type RegistryProvenance, type RegistryRecord, type ReplayElementPath, type RequestPlanRecord, type RequestPlanRegistryStore, 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 UpdateRequestPlanFreshnessInput, type WorkspaceBrowserBootstrap, type WorkspaceBrowserManifest, type WorkspaceLiveBrowserRecord, type WriteBinaryArtifactInput, type WriteDescriptorInput, type WriteInteractionTraceInput, type WriteRequestPlanInput, 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 };