@opensteer/protocol 0.8.0 → 0.8.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +117 -2158
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +128 -1049
- package/dist/index.d.ts +128 -1049
- package/dist/index.js +118 -2056
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/index.d.cts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { SessionRef, PageRef, FrameRef, DocumentRef, NodeRef, NetworkRequestId, DownloadRef, DialogRef, ChooserRef, WorkerRef, BodyPayloadEncoding, NetworkRecordKind, HeaderEntry, NetworkResourceType, NetworkInitiator, NetworkTiming, NetworkTransferSizes, NetworkSourceMetadata, NetworkCaptureState, CookieRecord, StorageEntry, DocumentEpoch, Size, CoordinateSpace, Rect, DomSnapshot, HtmlSnapshot,
|
|
1
|
+
import { SessionRef, PageRef, FrameRef, DocumentRef, NodeRef, NetworkRequestId, DownloadRef, DialogRef, ChooserRef, WorkerRef, BodyPayloadEncoding, NetworkRecordKind, HeaderEntry, NetworkResourceType, NetworkInitiator, NetworkTiming, NetworkTransferSizes, NetworkSourceMetadata, NetworkCaptureState, CookieRecord, StorageEntry, StorageSnapshot, DocumentEpoch, Size, CoordinateSpace, Rect, DomSnapshot, HtmlSnapshot, StepEvent, Point, ScreenshotFormat, ViewportMetrics, HitTestResult, PageInfo, FrameInfo, NodeLocator, ActionBoundarySnapshot, ActionBoundarySettleTrigger, ScreenshotArtifact as ScreenshotArtifact$1, ActionBoundaryOutcome, BrowserCoreEngine, Quad, KeyModifier as KeyModifier$1 } from '@opensteer/browser-core';
|
|
2
2
|
export { BodyPayloadEncoding, ChooserOpenedStepEvent as ChooserOpenedEvent, ChooserRef, ConsoleStepEvent as ConsoleEvent, ConsoleLevel, CookiePriority, CookieRecord, CookieSameSite, CoordinateSpace, DevicePixelRatio, DialogOpenedStepEvent as DialogOpenedEvent, DialogRef, DocumentEpoch, DocumentRef, DomSnapshot, DomSnapshotNode, DownloadFinishedStepEvent as DownloadFinishedEvent, DownloadRef, DownloadStartedStepEvent as DownloadStartedEvent, EventStreamMessageStepEvent as EventStreamMessageEvent, FrameInfo, FrameRef, FrozenStepEvent as FrozenEvent, HeaderEntry, HitTestResult, HtmlSnapshot, IndexedDbDatabaseSnapshot, IndexedDbIndexSnapshot, IndexedDbObjectStoreSnapshot, IndexedDbRecord, LayoutViewport, NetworkCaptureState, NetworkInitiator, NetworkInitiatorType, NetworkRecordKind, NetworkRequestId, NetworkResourceType, NetworkSourceMetadata, NetworkTiming, NetworkTransferSizes, NodeLocator, NodeRef, StepEvent as OpensteerEvent, PageClosedStepEvent as PageClosedEvent, PageCreatedStepEvent as PageCreatedEvent, PageErrorStepEvent as PageErrorEvent, PageInfo, PageLifecycleState, PageRef, PageScaleFactor, PageZoomFactor, PausedStepEvent as PausedEvent, Point, PopupOpenedStepEvent as PopupOpenedEvent, Quad, Rect, ResumedStepEvent as ResumedEvent, ScreenshotFormat, ScrollOffset, SessionRef, SessionStorageSnapshot, ShadowDomSnapshotMode, Size, StorageEntry, StorageOriginSnapshot, StorageSnapshot, ViewportMetrics, VisualViewport, WebSocketClosedStepEvent as WebSocketClosedEvent, WebSocketFrameStepEvent as WebSocketFrameEvent, WebSocketOpenedStepEvent as WebSocketOpenedEvent, WorkerCreatedStepEvent as WorkerCreatedEvent, WorkerDestroyedStepEvent as WorkerDestroyedEvent, WorkerRef, createChooserRef, createDialogRef, createDocumentEpoch, createDocumentRef, createDownloadRef, createFrameRef, createHeaderEntry, createNetworkRequestId, createNodeLocator, createNodeRef, createPageRef, createSessionRef, createWorkerRef, findDomSnapshotNode, findDomSnapshotNodeByRef, isChooserRef, isDialogRef, isDocumentRef, isDownloadRef, isFrameRef, isNetworkRequestId, isNodeRef, isPageRef, isSessionRef, isWorkerRef, nextDocumentEpoch, serializeDocumentEpoch, serializeRef } from '@opensteer/browser-core';
|
|
3
3
|
|
|
4
4
|
type JsonPrimitive = boolean | number | string | null;
|
|
@@ -199,34 +199,6 @@ declare const networkRecordSchema: JsonSchema;
|
|
|
199
199
|
declare const networkQueryRecordSchema: JsonSchema;
|
|
200
200
|
declare const orderedHeadersSchema: JsonSchema;
|
|
201
201
|
|
|
202
|
-
type CaptchaType = "recaptcha-v2" | "hcaptcha" | "turnstile";
|
|
203
|
-
type CaptchaProvider = "2captcha" | "capsolver";
|
|
204
|
-
interface CaptchaDetectionResult {
|
|
205
|
-
readonly type: CaptchaType;
|
|
206
|
-
readonly siteKey: string;
|
|
207
|
-
readonly pageUrl: string;
|
|
208
|
-
}
|
|
209
|
-
interface OpensteerCaptchaSolveInput {
|
|
210
|
-
readonly provider: CaptchaProvider;
|
|
211
|
-
readonly apiKey: string;
|
|
212
|
-
readonly pageRef?: PageRef;
|
|
213
|
-
readonly timeoutMs?: number;
|
|
214
|
-
readonly type?: CaptchaType;
|
|
215
|
-
readonly siteKey?: string;
|
|
216
|
-
readonly pageUrl?: string;
|
|
217
|
-
}
|
|
218
|
-
interface OpensteerCaptchaSolveOutput {
|
|
219
|
-
readonly captcha: CaptchaDetectionResult;
|
|
220
|
-
readonly token: string;
|
|
221
|
-
readonly injected: boolean;
|
|
222
|
-
readonly provider: CaptchaProvider;
|
|
223
|
-
}
|
|
224
|
-
declare const captchaTypeSchema: JsonSchema;
|
|
225
|
-
declare const captchaProviderSchema: JsonSchema;
|
|
226
|
-
declare const captchaDetectionResultSchema: JsonSchema;
|
|
227
|
-
declare const opensteerCaptchaSolveInputSchema: JsonSchema;
|
|
228
|
-
declare const opensteerCaptchaSolveOutputSchema: JsonSchema;
|
|
229
|
-
|
|
230
202
|
declare const cookieSameSiteSchema: JsonSchema;
|
|
231
203
|
declare const cookiePrioritySchema: JsonSchema;
|
|
232
204
|
declare const cookieRecordSchema: JsonSchema;
|
|
@@ -279,11 +251,6 @@ interface OpensteerRequestPlanResponseExpectation {
|
|
|
279
251
|
readonly status: number | readonly number[];
|
|
280
252
|
readonly contentType?: string;
|
|
281
253
|
}
|
|
282
|
-
interface OpensteerRecipeRef {
|
|
283
|
-
readonly key: string;
|
|
284
|
-
readonly version?: string;
|
|
285
|
-
}
|
|
286
|
-
type OpensteerAuthRecipeRef = OpensteerRecipeRef;
|
|
287
254
|
interface OpensteerRequestFailurePolicyHeaderMatch {
|
|
288
255
|
readonly name: string;
|
|
289
256
|
readonly valueIncludes: string;
|
|
@@ -305,21 +272,8 @@ interface OpensteerRequestRetryPolicy {
|
|
|
305
272
|
readonly respectRetryAfter?: boolean;
|
|
306
273
|
readonly failurePolicy?: OpensteerRequestFailurePolicy;
|
|
307
274
|
}
|
|
308
|
-
type OpensteerRecipeCachePolicy = "none" | "untilFailure";
|
|
309
|
-
interface OpensteerRequestPlanRecipeBinding {
|
|
310
|
-
readonly recipe: OpensteerRecipeRef;
|
|
311
|
-
readonly cachePolicy?: OpensteerRecipeCachePolicy;
|
|
312
|
-
}
|
|
313
|
-
interface OpensteerRequestPlanRecoverBinding extends OpensteerRequestPlanRecipeBinding {
|
|
314
|
-
readonly failurePolicy: OpensteerRequestFailurePolicy;
|
|
315
|
-
}
|
|
316
|
-
interface OpensteerRequestPlanRecipes {
|
|
317
|
-
readonly prepare?: OpensteerRequestPlanRecipeBinding;
|
|
318
|
-
readonly recover?: OpensteerRequestPlanRecoverBinding;
|
|
319
|
-
}
|
|
320
275
|
interface OpensteerRequestPlanAuth {
|
|
321
276
|
readonly strategy: "session-cookie" | "bearer-token" | "api-key" | "custom";
|
|
322
|
-
readonly recipe?: OpensteerRecipeRef;
|
|
323
277
|
readonly failurePolicy?: OpensteerRequestFailurePolicy;
|
|
324
278
|
readonly description?: string;
|
|
325
279
|
}
|
|
@@ -329,7 +283,6 @@ interface OpensteerRequestPlanPayload {
|
|
|
329
283
|
readonly parameters?: readonly OpensteerRequestPlanParameter[];
|
|
330
284
|
readonly body?: OpensteerRequestPlanBody;
|
|
331
285
|
readonly response?: OpensteerRequestPlanResponseExpectation;
|
|
332
|
-
readonly recipes?: OpensteerRequestPlanRecipes;
|
|
333
286
|
readonly retryPolicy?: OpensteerRequestRetryPolicy;
|
|
334
287
|
readonly auth?: OpensteerRequestPlanAuth;
|
|
335
288
|
}
|
|
@@ -356,159 +309,6 @@ interface OpensteerRequestPlanRecord {
|
|
|
356
309
|
readonly freshness?: OpensteerRequestPlanFreshness;
|
|
357
310
|
readonly payload: OpensteerRequestPlanPayload;
|
|
358
311
|
}
|
|
359
|
-
interface OpensteerRecipeStepHeaderCapture {
|
|
360
|
-
readonly name: string;
|
|
361
|
-
readonly saveAs: string;
|
|
362
|
-
}
|
|
363
|
-
interface OpensteerRecipeStepBodyJsonPointerCapture {
|
|
364
|
-
readonly pointer: string;
|
|
365
|
-
readonly saveAs: string;
|
|
366
|
-
}
|
|
367
|
-
interface OpensteerRecipeStepBodyTextCapture {
|
|
368
|
-
readonly saveAs: string;
|
|
369
|
-
}
|
|
370
|
-
interface OpensteerRecipeStepResponseCapture {
|
|
371
|
-
readonly header?: OpensteerRecipeStepHeaderCapture;
|
|
372
|
-
readonly bodyJsonPointer?: OpensteerRecipeStepBodyJsonPointerCapture;
|
|
373
|
-
readonly bodyText?: OpensteerRecipeStepBodyTextCapture;
|
|
374
|
-
}
|
|
375
|
-
interface OpensteerRecipeRequestStepInput {
|
|
376
|
-
readonly url: string;
|
|
377
|
-
readonly transport?: TransportKind;
|
|
378
|
-
readonly pageRef?: PageRef;
|
|
379
|
-
readonly cookieJar?: string;
|
|
380
|
-
readonly method?: string;
|
|
381
|
-
readonly headers?: Readonly<Record<string, string>>;
|
|
382
|
-
readonly query?: Readonly<Record<string, string>>;
|
|
383
|
-
readonly body?: OpensteerRequestBodyInput;
|
|
384
|
-
readonly followRedirects?: boolean;
|
|
385
|
-
}
|
|
386
|
-
interface OpensteerRecipeGotoStep {
|
|
387
|
-
readonly kind: "goto";
|
|
388
|
-
readonly url: string;
|
|
389
|
-
}
|
|
390
|
-
interface OpensteerRecipeReloadStep {
|
|
391
|
-
readonly kind: "reload";
|
|
392
|
-
}
|
|
393
|
-
interface OpensteerRecipeWaitForUrlStep {
|
|
394
|
-
readonly kind: "waitForUrl";
|
|
395
|
-
readonly includes: string;
|
|
396
|
-
readonly timeoutMs?: number;
|
|
397
|
-
}
|
|
398
|
-
interface OpensteerRecipeWaitForNetworkStep {
|
|
399
|
-
readonly kind: "waitForNetwork";
|
|
400
|
-
readonly url?: string;
|
|
401
|
-
readonly hostname?: string;
|
|
402
|
-
readonly path?: string;
|
|
403
|
-
readonly method?: string;
|
|
404
|
-
readonly status?: string;
|
|
405
|
-
readonly includeBodies?: boolean;
|
|
406
|
-
readonly timeoutMs?: number;
|
|
407
|
-
readonly saveAs?: string;
|
|
408
|
-
}
|
|
409
|
-
interface OpensteerRecipeWaitForCookieStep {
|
|
410
|
-
readonly kind: "waitForCookie";
|
|
411
|
-
readonly name: string;
|
|
412
|
-
readonly url?: string;
|
|
413
|
-
readonly timeoutMs?: number;
|
|
414
|
-
readonly saveAs?: string;
|
|
415
|
-
}
|
|
416
|
-
interface OpensteerRecipeWaitForStorageStep {
|
|
417
|
-
readonly kind: "waitForStorage";
|
|
418
|
-
readonly area: "local" | "session";
|
|
419
|
-
readonly origin: string;
|
|
420
|
-
readonly key: string;
|
|
421
|
-
readonly timeoutMs?: number;
|
|
422
|
-
readonly saveAs?: string;
|
|
423
|
-
}
|
|
424
|
-
interface OpensteerRecipeReadCookieStep {
|
|
425
|
-
readonly kind: "readCookie";
|
|
426
|
-
readonly name: string;
|
|
427
|
-
readonly url?: string;
|
|
428
|
-
readonly saveAs: string;
|
|
429
|
-
}
|
|
430
|
-
interface OpensteerRecipeReadStorageStep {
|
|
431
|
-
readonly kind: "readStorage";
|
|
432
|
-
readonly area: "local" | "session";
|
|
433
|
-
readonly origin: string;
|
|
434
|
-
readonly key: string;
|
|
435
|
-
readonly pageUrl?: string;
|
|
436
|
-
readonly saveAs: string;
|
|
437
|
-
}
|
|
438
|
-
interface OpensteerRecipeEvaluateStep {
|
|
439
|
-
readonly kind: "evaluate";
|
|
440
|
-
readonly script: string;
|
|
441
|
-
readonly args?: readonly JsonValue[];
|
|
442
|
-
readonly pageRef?: PageRef;
|
|
443
|
-
readonly saveAs?: string;
|
|
444
|
-
}
|
|
445
|
-
interface OpensteerRecipeSyncCookiesToJarStep {
|
|
446
|
-
readonly kind: "syncCookiesToJar";
|
|
447
|
-
readonly jar: string;
|
|
448
|
-
readonly urls?: readonly string[];
|
|
449
|
-
}
|
|
450
|
-
interface OpensteerRecipeRequestStep {
|
|
451
|
-
readonly kind: "request";
|
|
452
|
-
readonly request: OpensteerRecipeRequestStepInput;
|
|
453
|
-
readonly capture?: OpensteerRecipeStepResponseCapture;
|
|
454
|
-
}
|
|
455
|
-
interface OpensteerAuthRecipeSessionRequestStep {
|
|
456
|
-
readonly kind: "sessionRequest";
|
|
457
|
-
readonly request: OpensteerRecipeRequestStepInput;
|
|
458
|
-
readonly capture?: OpensteerRecipeStepResponseCapture;
|
|
459
|
-
}
|
|
460
|
-
interface OpensteerAuthRecipeDirectRequestStep {
|
|
461
|
-
readonly kind: "directRequest";
|
|
462
|
-
readonly request: OpensteerRecipeRequestStepInput;
|
|
463
|
-
readonly capture?: OpensteerRecipeStepResponseCapture;
|
|
464
|
-
}
|
|
465
|
-
interface OpensteerRecipeSolveCaptchaStep {
|
|
466
|
-
readonly kind: "solveCaptcha";
|
|
467
|
-
readonly provider: CaptchaProvider;
|
|
468
|
-
readonly apiKey: string;
|
|
469
|
-
readonly pageRef?: PageRef;
|
|
470
|
-
readonly timeoutMs?: number;
|
|
471
|
-
readonly type?: CaptchaType;
|
|
472
|
-
readonly siteKey?: string;
|
|
473
|
-
readonly pageUrl?: string;
|
|
474
|
-
readonly saveAs?: string;
|
|
475
|
-
}
|
|
476
|
-
interface OpensteerRecipeHookRef {
|
|
477
|
-
readonly specifier: string;
|
|
478
|
-
readonly export: string;
|
|
479
|
-
}
|
|
480
|
-
type OpensteerAuthRecipeHookRef = OpensteerRecipeHookRef;
|
|
481
|
-
interface OpensteerRecipeHookStep {
|
|
482
|
-
readonly kind: "hook";
|
|
483
|
-
readonly hook: OpensteerRecipeHookRef;
|
|
484
|
-
}
|
|
485
|
-
type OpensteerRecipeStep = OpensteerRecipeGotoStep | OpensteerRecipeReloadStep | OpensteerRecipeWaitForUrlStep | OpensteerRecipeWaitForNetworkStep | OpensteerRecipeWaitForCookieStep | OpensteerRecipeWaitForStorageStep | OpensteerRecipeReadCookieStep | OpensteerRecipeReadStorageStep | OpensteerRecipeEvaluateStep | OpensteerRecipeSyncCookiesToJarStep | OpensteerRecipeRequestStep | OpensteerAuthRecipeSessionRequestStep | OpensteerAuthRecipeDirectRequestStep | OpensteerRecipeSolveCaptchaStep | OpensteerRecipeHookStep;
|
|
486
|
-
type OpensteerAuthRecipeStep = OpensteerRecipeStep;
|
|
487
|
-
interface OpensteerRecipeRetryOverrides {
|
|
488
|
-
readonly params?: Readonly<Record<string, string>>;
|
|
489
|
-
readonly headers?: Readonly<Record<string, string>>;
|
|
490
|
-
readonly query?: Readonly<Record<string, string>>;
|
|
491
|
-
readonly body?: Readonly<Record<string, string>>;
|
|
492
|
-
}
|
|
493
|
-
type OpensteerAuthRecipeRetryOverrides = OpensteerRecipeRetryOverrides;
|
|
494
|
-
interface OpensteerRecipePayload {
|
|
495
|
-
readonly description?: string;
|
|
496
|
-
readonly steps: readonly OpensteerRecipeStep[];
|
|
497
|
-
readonly outputs?: OpensteerRecipeRetryOverrides;
|
|
498
|
-
}
|
|
499
|
-
type OpensteerAuthRecipePayload = OpensteerRecipePayload;
|
|
500
|
-
interface OpensteerRecipeRecord {
|
|
501
|
-
readonly id: string;
|
|
502
|
-
readonly key: string;
|
|
503
|
-
readonly version: string;
|
|
504
|
-
readonly createdAt: number;
|
|
505
|
-
readonly updatedAt: number;
|
|
506
|
-
readonly contentHash: string;
|
|
507
|
-
readonly tags: readonly string[];
|
|
508
|
-
readonly provenance?: OpensteerRegistryProvenance;
|
|
509
|
-
readonly payload: OpensteerRecipePayload;
|
|
510
|
-
}
|
|
511
|
-
type OpensteerAuthRecipeRecord = OpensteerRecipeRecord;
|
|
512
312
|
interface OpensteerNetworkQueryInput {
|
|
513
313
|
readonly pageRef?: PageRef;
|
|
514
314
|
readonly recordId?: string;
|
|
@@ -723,44 +523,6 @@ interface OpensteerListRequestPlansInput {
|
|
|
723
523
|
interface OpensteerListRequestPlansOutput {
|
|
724
524
|
readonly plans: readonly OpensteerRequestPlanRecord[];
|
|
725
525
|
}
|
|
726
|
-
interface OpensteerWriteRecipeInput {
|
|
727
|
-
readonly id?: string;
|
|
728
|
-
readonly key: string;
|
|
729
|
-
readonly version: string;
|
|
730
|
-
readonly tags?: readonly string[];
|
|
731
|
-
readonly provenance?: OpensteerRegistryProvenance;
|
|
732
|
-
readonly payload: OpensteerRecipePayload;
|
|
733
|
-
}
|
|
734
|
-
type OpensteerWriteAuthRecipeInput = OpensteerWriteRecipeInput;
|
|
735
|
-
interface OpensteerGetRecipeInput {
|
|
736
|
-
readonly key: string;
|
|
737
|
-
readonly version?: string;
|
|
738
|
-
}
|
|
739
|
-
type OpensteerGetAuthRecipeInput = OpensteerGetRecipeInput;
|
|
740
|
-
interface OpensteerListRecipesInput {
|
|
741
|
-
readonly key?: string;
|
|
742
|
-
}
|
|
743
|
-
type OpensteerListAuthRecipesInput = OpensteerListRecipesInput;
|
|
744
|
-
interface OpensteerListRecipesOutput {
|
|
745
|
-
readonly recipes: readonly OpensteerRecipeRecord[];
|
|
746
|
-
}
|
|
747
|
-
type OpensteerListAuthRecipesOutput = OpensteerListRecipesOutput;
|
|
748
|
-
interface OpensteerRunRecipeInput {
|
|
749
|
-
readonly key: string;
|
|
750
|
-
readonly version?: string;
|
|
751
|
-
readonly variables?: Readonly<Record<string, string>>;
|
|
752
|
-
}
|
|
753
|
-
type OpensteerRunAuthRecipeInput = OpensteerRunRecipeInput;
|
|
754
|
-
interface OpensteerRunRecipeOutput {
|
|
755
|
-
readonly recipe: {
|
|
756
|
-
readonly id: string;
|
|
757
|
-
readonly key: string;
|
|
758
|
-
readonly version: string;
|
|
759
|
-
};
|
|
760
|
-
readonly variables: Readonly<Record<string, string>>;
|
|
761
|
-
readonly overrides?: OpensteerRecipeRetryOverrides;
|
|
762
|
-
}
|
|
763
|
-
type OpensteerRunAuthRecipeOutput = OpensteerRunRecipeOutput;
|
|
764
526
|
type OpensteerRequestScalarMap = Readonly<Record<string, OpensteerRequestScalar>>;
|
|
765
527
|
interface OpensteerJsonRequestBodyInput {
|
|
766
528
|
readonly json: JsonValue;
|
|
@@ -823,10 +585,6 @@ interface OpensteerRequestExecuteOutput {
|
|
|
823
585
|
readonly attempted: boolean;
|
|
824
586
|
readonly succeeded: boolean;
|
|
825
587
|
readonly matchedFailurePolicy?: boolean;
|
|
826
|
-
readonly recipe?: {
|
|
827
|
-
readonly key: string;
|
|
828
|
-
readonly version: string;
|
|
829
|
-
};
|
|
830
588
|
};
|
|
831
589
|
readonly data?: unknown;
|
|
832
590
|
}
|
|
@@ -851,30 +609,16 @@ declare const opensteerRequestPlanEndpointSchema: JsonSchema;
|
|
|
851
609
|
declare const opensteerRequestPlanBodySchema: JsonSchema;
|
|
852
610
|
declare const transportKindSchema: JsonSchema;
|
|
853
611
|
declare const opensteerRequestPlanResponseExpectationSchema: JsonSchema;
|
|
854
|
-
declare const opensteerRecipeRefSchema: JsonSchema;
|
|
855
|
-
declare const opensteerAuthRecipeRefSchema: JsonSchema;
|
|
856
612
|
declare const opensteerRequestFailurePolicyHeaderMatchSchema: JsonSchema;
|
|
857
613
|
declare const opensteerRequestFailurePolicySchema: JsonSchema;
|
|
858
614
|
declare const opensteerRequestRetryBackoffPolicySchema: JsonSchema;
|
|
859
615
|
declare const opensteerRequestRetryPolicySchema: JsonSchema;
|
|
860
|
-
declare const opensteerRecipeCachePolicySchema: JsonSchema;
|
|
861
|
-
declare const opensteerRequestPlanRecipeBindingSchema: JsonSchema;
|
|
862
|
-
declare const opensteerRequestPlanRecoverBindingSchema: JsonSchema;
|
|
863
|
-
declare const opensteerRequestPlanRecipesSchema: JsonSchema;
|
|
864
616
|
declare const opensteerRequestPlanAuthSchema: JsonSchema;
|
|
865
617
|
declare const opensteerRequestPlanPayloadSchema: JsonSchema;
|
|
866
618
|
declare const opensteerRegistryProvenanceSchema: JsonSchema;
|
|
867
619
|
declare const opensteerRequestPlanFreshnessSchema: JsonSchema;
|
|
868
620
|
declare const opensteerRequestPlanRecordSchema: JsonSchema;
|
|
869
621
|
declare const opensteerRequestBodyInputSchema: JsonSchema;
|
|
870
|
-
declare const opensteerRecipeHookRefSchema: JsonSchema;
|
|
871
|
-
declare const opensteerAuthRecipeHookRefSchema: JsonSchema;
|
|
872
|
-
declare const opensteerRecipeStepSchema: JsonSchema;
|
|
873
|
-
declare const opensteerAuthRecipeStepSchema: JsonSchema;
|
|
874
|
-
declare const opensteerRecipePayloadSchema: JsonSchema;
|
|
875
|
-
declare const opensteerAuthRecipePayloadSchema: JsonSchema;
|
|
876
|
-
declare const opensteerRecipeRecordSchema: JsonSchema;
|
|
877
|
-
declare const opensteerAuthRecipeRecordSchema: JsonSchema;
|
|
878
622
|
declare const opensteerNetworkQueryInputSchema: JsonSchema;
|
|
879
623
|
declare const opensteerNetworkSummaryRecordSchema: JsonSchema;
|
|
880
624
|
declare const opensteerNetworkQueryOutputSchema: JsonSchema;
|
|
@@ -898,18 +642,6 @@ declare const opensteerWriteRequestPlanInputSchema: JsonSchema;
|
|
|
898
642
|
declare const opensteerGetRequestPlanInputSchema: JsonSchema;
|
|
899
643
|
declare const opensteerListRequestPlansInputSchema: JsonSchema;
|
|
900
644
|
declare const opensteerListRequestPlansOutputSchema: JsonSchema;
|
|
901
|
-
declare const opensteerWriteRecipeInputSchema: JsonSchema;
|
|
902
|
-
declare const opensteerWriteAuthRecipeInputSchema: JsonSchema;
|
|
903
|
-
declare const opensteerGetRecipeInputSchema: JsonSchema;
|
|
904
|
-
declare const opensteerGetAuthRecipeInputSchema: JsonSchema;
|
|
905
|
-
declare const opensteerListRecipesInputSchema: JsonSchema;
|
|
906
|
-
declare const opensteerListAuthRecipesInputSchema: JsonSchema;
|
|
907
|
-
declare const opensteerListRecipesOutputSchema: JsonSchema;
|
|
908
|
-
declare const opensteerListAuthRecipesOutputSchema: JsonSchema;
|
|
909
|
-
declare const opensteerRunRecipeInputSchema: JsonSchema;
|
|
910
|
-
declare const opensteerRunAuthRecipeInputSchema: JsonSchema;
|
|
911
|
-
declare const opensteerRunRecipeOutputSchema: JsonSchema;
|
|
912
|
-
declare const opensteerRunAuthRecipeOutputSchema: JsonSchema;
|
|
913
645
|
declare const opensteerRequestExecuteInputSchema: JsonSchema;
|
|
914
646
|
declare const opensteerRawRequestInputSchema: JsonSchema;
|
|
915
647
|
declare const opensteerRequestTransportResultSchema: JsonSchema;
|
|
@@ -918,6 +650,43 @@ declare const opensteerRequestExecuteOutputSchema: JsonSchema;
|
|
|
918
650
|
declare const opensteerRawRequestOutputSchema: JsonSchema;
|
|
919
651
|
declare const opensteerInferRequestPlanInputSchema: JsonSchema;
|
|
920
652
|
|
|
653
|
+
interface OpensteerStateSnapshot {
|
|
654
|
+
readonly id: string;
|
|
655
|
+
readonly capturedAt: number;
|
|
656
|
+
readonly pageRef?: PageRef;
|
|
657
|
+
readonly url?: string;
|
|
658
|
+
readonly cookies?: readonly {
|
|
659
|
+
readonly name: string;
|
|
660
|
+
readonly value: string;
|
|
661
|
+
readonly domain: string;
|
|
662
|
+
readonly path: string;
|
|
663
|
+
readonly secure: boolean;
|
|
664
|
+
readonly httpOnly: boolean;
|
|
665
|
+
readonly sameSite?: "strict" | "lax" | "none";
|
|
666
|
+
readonly priority?: "low" | "medium" | "high";
|
|
667
|
+
readonly partitionKey?: string;
|
|
668
|
+
readonly session: boolean;
|
|
669
|
+
readonly expiresAt?: number | null;
|
|
670
|
+
}[];
|
|
671
|
+
readonly storage?: StorageSnapshot;
|
|
672
|
+
readonly hiddenFields?: readonly {
|
|
673
|
+
readonly path: string;
|
|
674
|
+
readonly name: string;
|
|
675
|
+
readonly value: string;
|
|
676
|
+
}[];
|
|
677
|
+
readonly globals?: Readonly<Record<string, unknown>>;
|
|
678
|
+
}
|
|
679
|
+
interface OpensteerStateDelta {
|
|
680
|
+
readonly beforeStateId?: string;
|
|
681
|
+
readonly afterStateId?: string;
|
|
682
|
+
readonly cookiesChanged: readonly string[];
|
|
683
|
+
readonly storageChanged: readonly string[];
|
|
684
|
+
readonly hiddenFieldsChanged: readonly string[];
|
|
685
|
+
readonly globalsChanged: readonly string[];
|
|
686
|
+
}
|
|
687
|
+
declare const opensteerStateSnapshotSchema: JsonSchema;
|
|
688
|
+
declare const opensteerStateDeltaSchema: JsonSchema;
|
|
689
|
+
|
|
921
690
|
interface ScreenshotArtifact {
|
|
922
691
|
readonly pageRef: PageRef;
|
|
923
692
|
readonly frameRef?: FrameRef;
|
|
@@ -1319,6 +1088,34 @@ declare const artifactReferenceSchema: JsonSchema;
|
|
|
1319
1088
|
declare const opensteerArtifactReadInputSchema: JsonSchema;
|
|
1320
1089
|
declare const opensteerArtifactReadOutputSchema: JsonSchema;
|
|
1321
1090
|
|
|
1091
|
+
type CaptchaType = "recaptcha-v2" | "hcaptcha" | "turnstile";
|
|
1092
|
+
type CaptchaProvider = "2captcha" | "capsolver";
|
|
1093
|
+
interface CaptchaDetectionResult {
|
|
1094
|
+
readonly type: CaptchaType;
|
|
1095
|
+
readonly siteKey: string;
|
|
1096
|
+
readonly pageUrl: string;
|
|
1097
|
+
}
|
|
1098
|
+
interface OpensteerCaptchaSolveInput {
|
|
1099
|
+
readonly provider: CaptchaProvider;
|
|
1100
|
+
readonly apiKey: string;
|
|
1101
|
+
readonly pageRef?: PageRef;
|
|
1102
|
+
readonly timeoutMs?: number;
|
|
1103
|
+
readonly type?: CaptchaType;
|
|
1104
|
+
readonly siteKey?: string;
|
|
1105
|
+
readonly pageUrl?: string;
|
|
1106
|
+
}
|
|
1107
|
+
interface OpensteerCaptchaSolveOutput {
|
|
1108
|
+
readonly captcha: CaptchaDetectionResult;
|
|
1109
|
+
readonly token: string;
|
|
1110
|
+
readonly injected: boolean;
|
|
1111
|
+
readonly provider: CaptchaProvider;
|
|
1112
|
+
}
|
|
1113
|
+
declare const captchaTypeSchema: JsonSchema;
|
|
1114
|
+
declare const captchaProviderSchema: JsonSchema;
|
|
1115
|
+
declare const captchaDetectionResultSchema: JsonSchema;
|
|
1116
|
+
declare const opensteerCaptchaSolveInputSchema: JsonSchema;
|
|
1117
|
+
declare const opensteerCaptchaSolveOutputSchema: JsonSchema;
|
|
1118
|
+
|
|
1322
1119
|
type TraceOutcome = "ok" | "error";
|
|
1323
1120
|
interface TraceContext {
|
|
1324
1121
|
readonly sessionRef?: SessionRef;
|
|
@@ -1935,6 +1732,67 @@ interface OpensteerSessionInfo {
|
|
|
1935
1732
|
readonly runtime?: OpensteerRuntimeVersionInfo;
|
|
1936
1733
|
}
|
|
1937
1734
|
|
|
1735
|
+
interface OpensteerViewport {
|
|
1736
|
+
readonly width: number;
|
|
1737
|
+
readonly height: number;
|
|
1738
|
+
}
|
|
1739
|
+
interface OpensteerViewStreamTab {
|
|
1740
|
+
readonly index: number;
|
|
1741
|
+
readonly targetId?: string;
|
|
1742
|
+
readonly url: string;
|
|
1743
|
+
readonly title: string;
|
|
1744
|
+
readonly active: boolean;
|
|
1745
|
+
}
|
|
1746
|
+
type OpensteerViewStreamControlMessage = {
|
|
1747
|
+
readonly type: "hello";
|
|
1748
|
+
readonly sessionId: string;
|
|
1749
|
+
readonly ts: number;
|
|
1750
|
+
readonly mimeType: "image/jpeg";
|
|
1751
|
+
readonly fps: number;
|
|
1752
|
+
readonly quality: number;
|
|
1753
|
+
readonly viewport: OpensteerViewport;
|
|
1754
|
+
} | {
|
|
1755
|
+
readonly type: "tabs";
|
|
1756
|
+
readonly sessionId: string;
|
|
1757
|
+
readonly ts: number;
|
|
1758
|
+
readonly activeTabIndex: number;
|
|
1759
|
+
readonly tabs: readonly OpensteerViewStreamTab[];
|
|
1760
|
+
} | {
|
|
1761
|
+
readonly type: "status";
|
|
1762
|
+
readonly sessionId: string;
|
|
1763
|
+
readonly ts: number;
|
|
1764
|
+
readonly status: string;
|
|
1765
|
+
} | {
|
|
1766
|
+
readonly type: "error";
|
|
1767
|
+
readonly sessionId: string;
|
|
1768
|
+
readonly ts: number;
|
|
1769
|
+
readonly error: string;
|
|
1770
|
+
};
|
|
1771
|
+
interface OpensteerViewStreamClientMessage {
|
|
1772
|
+
readonly type: "stream-config";
|
|
1773
|
+
readonly renderWidth: number;
|
|
1774
|
+
readonly renderHeight: number;
|
|
1775
|
+
}
|
|
1776
|
+
interface OpensteerLocalViewSessionSummary {
|
|
1777
|
+
readonly sessionId: string;
|
|
1778
|
+
readonly label: string;
|
|
1779
|
+
readonly status: "live" | "stale";
|
|
1780
|
+
readonly workspace?: string;
|
|
1781
|
+
readonly rootPath: string;
|
|
1782
|
+
readonly engine: "playwright" | "abp";
|
|
1783
|
+
readonly ownership: OpensteerSessionOwnership;
|
|
1784
|
+
readonly pid: number;
|
|
1785
|
+
readonly startedAt: number;
|
|
1786
|
+
readonly browserName?: string;
|
|
1787
|
+
}
|
|
1788
|
+
interface OpensteerLocalViewSessionsResponse {
|
|
1789
|
+
readonly sessions: readonly OpensteerLocalViewSessionSummary[];
|
|
1790
|
+
}
|
|
1791
|
+
interface OpensteerLocalViewSessionCloseResponse {
|
|
1792
|
+
readonly sessionId: string;
|
|
1793
|
+
readonly closed: true;
|
|
1794
|
+
}
|
|
1795
|
+
|
|
1938
1796
|
declare const opensteerAutomationOperationNames: readonly ["route.register", "route.unregister", "route.resolve", "session.info", "network.stream.subscribe", "network.stream.unsubscribe"];
|
|
1939
1797
|
type OpensteerAutomationOperationName = OpensteerSemanticOperationName | (typeof opensteerAutomationOperationNames)[number];
|
|
1940
1798
|
interface OpensteerAutomationHelloMessage {
|
|
@@ -2358,785 +2216,6 @@ declare const opensteerScriptSandboxInputSchema: JsonSchema;
|
|
|
2358
2216
|
declare const sandboxCapturedAjaxCallSchema: JsonSchema;
|
|
2359
2217
|
declare const opensteerScriptSandboxOutputSchema: JsonSchema;
|
|
2360
2218
|
|
|
2361
|
-
type OpensteerStateSourceKind = "temporary" | "persistent" | "attach";
|
|
2362
|
-
type OpensteerReverseCaseStatus = "capturing" | "analyzing" | "ready" | "attention";
|
|
2363
|
-
type OpensteerReverseChannelKind = "http" | "event-stream" | "websocket";
|
|
2364
|
-
type OpensteerReverseManualCalibrationMode = "allow" | "avoid" | "require";
|
|
2365
|
-
type OpensteerReverseCandidateBoundary = "first-party" | "same-site" | "third-party";
|
|
2366
|
-
type OpensteerReverseAdvisoryTag = "data" | "facet" | "telemetry" | "subscription" | "navigation" | "document" | "route-data" | "search" | "tracking" | "unknown";
|
|
2367
|
-
type OpensteerReverseConstraintKind = "requires-browser" | "requires-cookie" | "requires-storage" | "requires-script" | "requires-guard" | "requires-live-state" | "opaque-body" | "unsupported";
|
|
2368
|
-
type OpensteerRequestInputLocation = "path" | "query" | "header" | "cookie" | "body-field";
|
|
2369
|
-
type OpensteerRequestInputRequiredness = "required" | "optional" | "unknown";
|
|
2370
|
-
type OpensteerRequestInputClassification = "managed" | "static" | "contextual" | "volatile";
|
|
2371
|
-
type OpensteerRequestInputSource = "literal" | "cookie" | "storage" | "prior-response" | "page" | "script" | "guard-output" | "runtime-managed" | "unknown";
|
|
2372
|
-
type OpensteerRequestInputMaterializationPolicy = "copy" | "omit" | "recompute" | "resolve";
|
|
2373
|
-
type OpensteerRequestInputExportPolicy = "portable" | "browser-bound" | "blocked";
|
|
2374
|
-
type OpensteerReverseQueryView = "records" | "clusters" | "candidates";
|
|
2375
|
-
type OpensteerReverseSortKey = "observed-at" | "advisory-rank" | "target-hint-matches" | "response-richness" | "portability" | "boundary" | "success";
|
|
2376
|
-
type OpensteerReverseSortPreset = "advisory-rank" | "observed-at" | "portability" | "first-party" | "hint-match" | "response-richness";
|
|
2377
|
-
type OpensteerReverseSortDirection = "asc" | "desc";
|
|
2378
|
-
type OpensteerObservationClusterRelationshipKind = "seed" | "preflight" | "redirect" | "retry" | "duplicate" | "follow-on";
|
|
2379
|
-
type OpensteerReversePackageKind = "portable-http" | "browser-workflow";
|
|
2380
|
-
type OpensteerReversePackageReadiness = "runnable" | "draft" | "unsupported";
|
|
2381
|
-
type OpensteerReverseReportKind = "discovery" | "package";
|
|
2382
|
-
type OpensteerBodyCodecKind = "json" | "form-urlencoded" | "multipart" | "graphql" | "persisted-graphql" | "text" | "opaque-binary" | "sse" | "websocket-json" | "websocket-text" | "unknown";
|
|
2383
|
-
type OpensteerExecutableResolverKind = "literal" | "cookie" | "storage" | "prior-record" | "binding" | "candidate" | "case" | "state-snapshot" | "artifact" | "manual" | "runtime-managed";
|
|
2384
|
-
type OpensteerValueReferenceKind = "literal" | "resolver" | "binding" | "candidate" | "case" | "record" | "artifact" | "state-snapshot" | "runtime" | "manual";
|
|
2385
|
-
type OpensteerRuntimeValueKey = "pageRef" | "packageId" | "caseId" | "candidateId" | "objective";
|
|
2386
|
-
type OpensteerValidationRuleKind = "status" | "json-structure" | "text-includes" | "stream-first-chunk" | "websocket-open" | "message-count-at-least";
|
|
2387
|
-
type OpensteerReverseWorkflowStepKind = "operation" | "await-record" | "assert";
|
|
2388
|
-
type OpensteerReverseRequirementKind = "resolver" | "guard" | "workflow-step" | "state" | "channel" | "unsupported";
|
|
2389
|
-
type OpensteerReverseRequirementStatus = "required" | "recommended";
|
|
2390
|
-
type OpensteerReverseSuggestedEditKind = "set-resolver" | "attach-trace" | "replace-workflow" | "patch-step-input" | "switch-state-source" | "inspect-evidence" | "mark-unsupported";
|
|
2391
|
-
interface OpensteerValueReference {
|
|
2392
|
-
readonly kind: OpensteerValueReferenceKind;
|
|
2393
|
-
readonly pointer?: string;
|
|
2394
|
-
readonly resolverId?: string;
|
|
2395
|
-
readonly binding?: string;
|
|
2396
|
-
readonly recordId?: string;
|
|
2397
|
-
readonly artifactId?: string;
|
|
2398
|
-
readonly stateSnapshotId?: string;
|
|
2399
|
-
readonly runtimeKey?: OpensteerRuntimeValueKey;
|
|
2400
|
-
readonly value?: JsonValue;
|
|
2401
|
-
readonly placeholder?: string;
|
|
2402
|
-
}
|
|
2403
|
-
interface OpensteerValueReferenceEnvelope {
|
|
2404
|
-
readonly $ref: OpensteerValueReference;
|
|
2405
|
-
}
|
|
2406
|
-
interface OpensteerValueTemplateObject {
|
|
2407
|
-
readonly [key: string]: OpensteerValueTemplate;
|
|
2408
|
-
}
|
|
2409
|
-
type OpensteerValueTemplate = JsonValue | OpensteerValueReferenceEnvelope | OpensteerValueTemplateObject | readonly OpensteerValueTemplate[];
|
|
2410
|
-
interface OpensteerReverseTargetHints {
|
|
2411
|
-
readonly hosts?: readonly string[];
|
|
2412
|
-
readonly paths?: readonly string[];
|
|
2413
|
-
readonly operationNames?: readonly string[];
|
|
2414
|
-
readonly channels?: readonly OpensteerReverseChannelKind[];
|
|
2415
|
-
}
|
|
2416
|
-
interface OpensteerBodyCodecDescriptor {
|
|
2417
|
-
readonly kind: OpensteerBodyCodecKind;
|
|
2418
|
-
readonly contentType?: string;
|
|
2419
|
-
readonly operationName?: string;
|
|
2420
|
-
readonly fieldPaths: readonly string[];
|
|
2421
|
-
}
|
|
2422
|
-
interface OpensteerObservationCluster {
|
|
2423
|
-
readonly id: string;
|
|
2424
|
-
readonly observationId: string;
|
|
2425
|
-
readonly label: string;
|
|
2426
|
-
readonly channel: OpensteerReverseChannelKind;
|
|
2427
|
-
readonly method?: string;
|
|
2428
|
-
readonly url: string;
|
|
2429
|
-
readonly matchedTargetHints: readonly string[];
|
|
2430
|
-
readonly members: readonly OpensteerObservationClusterMember[];
|
|
2431
|
-
}
|
|
2432
|
-
interface OpensteerObservationClusterMember {
|
|
2433
|
-
readonly recordId: string;
|
|
2434
|
-
readonly observedAt?: number;
|
|
2435
|
-
readonly resourceType?: string;
|
|
2436
|
-
readonly status?: number;
|
|
2437
|
-
readonly relation: OpensteerObservationClusterRelationshipKind;
|
|
2438
|
-
readonly relatedRecordId?: string;
|
|
2439
|
-
readonly matchedTargetHints: readonly string[];
|
|
2440
|
-
}
|
|
2441
|
-
interface OpensteerStateSnapshot {
|
|
2442
|
-
readonly id: string;
|
|
2443
|
-
readonly capturedAt: number;
|
|
2444
|
-
readonly pageRef?: PageRef;
|
|
2445
|
-
readonly url?: string;
|
|
2446
|
-
readonly cookies?: readonly {
|
|
2447
|
-
readonly name: string;
|
|
2448
|
-
readonly value: string;
|
|
2449
|
-
readonly domain: string;
|
|
2450
|
-
readonly path: string;
|
|
2451
|
-
readonly secure: boolean;
|
|
2452
|
-
readonly httpOnly: boolean;
|
|
2453
|
-
readonly sameSite?: "strict" | "lax" | "none";
|
|
2454
|
-
readonly priority?: "low" | "medium" | "high";
|
|
2455
|
-
readonly partitionKey?: string;
|
|
2456
|
-
readonly session: boolean;
|
|
2457
|
-
readonly expiresAt?: number | null;
|
|
2458
|
-
}[];
|
|
2459
|
-
readonly storage?: StorageSnapshot;
|
|
2460
|
-
readonly hiddenFields?: readonly {
|
|
2461
|
-
readonly path: string;
|
|
2462
|
-
readonly name: string;
|
|
2463
|
-
readonly value: string;
|
|
2464
|
-
}[];
|
|
2465
|
-
readonly globals?: Readonly<Record<string, unknown>>;
|
|
2466
|
-
}
|
|
2467
|
-
interface OpensteerStateDelta {
|
|
2468
|
-
readonly beforeStateId?: string;
|
|
2469
|
-
readonly afterStateId?: string;
|
|
2470
|
-
readonly cookiesChanged: readonly string[];
|
|
2471
|
-
readonly storageChanged: readonly string[];
|
|
2472
|
-
readonly hiddenFieldsChanged: readonly string[];
|
|
2473
|
-
readonly globalsChanged: readonly string[];
|
|
2474
|
-
}
|
|
2475
|
-
interface OpensteerRequestInputDescriptor {
|
|
2476
|
-
readonly name: string;
|
|
2477
|
-
readonly location: OpensteerRequestInputLocation;
|
|
2478
|
-
readonly path?: string;
|
|
2479
|
-
readonly wireName?: string;
|
|
2480
|
-
readonly requiredness: OpensteerRequestInputRequiredness;
|
|
2481
|
-
readonly classification: OpensteerRequestInputClassification;
|
|
2482
|
-
readonly source: OpensteerRequestInputSource;
|
|
2483
|
-
readonly materializationPolicy: OpensteerRequestInputMaterializationPolicy;
|
|
2484
|
-
readonly exportPolicy: OpensteerRequestInputExportPolicy;
|
|
2485
|
-
readonly originalValue?: string;
|
|
2486
|
-
readonly provenance?: {
|
|
2487
|
-
readonly recordId?: string;
|
|
2488
|
-
readonly observationId?: string;
|
|
2489
|
-
readonly sourcePointer?: string;
|
|
2490
|
-
readonly notes?: string;
|
|
2491
|
-
};
|
|
2492
|
-
readonly unlockedByGuardIds?: readonly string[];
|
|
2493
|
-
}
|
|
2494
|
-
interface OpensteerExecutableResolver {
|
|
2495
|
-
readonly id: string;
|
|
2496
|
-
readonly kind: OpensteerExecutableResolverKind;
|
|
2497
|
-
readonly label: string;
|
|
2498
|
-
readonly status: "ready" | "missing";
|
|
2499
|
-
readonly requiresBrowser: boolean;
|
|
2500
|
-
readonly requiresLiveState: boolean;
|
|
2501
|
-
readonly description?: string;
|
|
2502
|
-
readonly inputNames?: readonly string[];
|
|
2503
|
-
readonly guardId?: string;
|
|
2504
|
-
readonly traceId?: string;
|
|
2505
|
-
readonly valueRef?: OpensteerValueReference;
|
|
2506
|
-
}
|
|
2507
|
-
interface OpensteerReverseAdvisorySignals {
|
|
2508
|
-
readonly advisoryRank: number;
|
|
2509
|
-
readonly observedAt?: number;
|
|
2510
|
-
readonly targetHintMatches: number;
|
|
2511
|
-
readonly responseRichness: number;
|
|
2512
|
-
readonly portabilityWeight: number;
|
|
2513
|
-
readonly boundaryWeight: number;
|
|
2514
|
-
readonly successfulStatus: boolean;
|
|
2515
|
-
readonly fetchLike: boolean;
|
|
2516
|
-
readonly hasResponseBody: boolean;
|
|
2517
|
-
readonly dataPathMatch: boolean;
|
|
2518
|
-
readonly cookieInputCount: number;
|
|
2519
|
-
readonly storageInputCount: number;
|
|
2520
|
-
readonly volatileInputCount: number;
|
|
2521
|
-
readonly guardCount: number;
|
|
2522
|
-
}
|
|
2523
|
-
interface OpensteerValidationRule {
|
|
2524
|
-
readonly id: string;
|
|
2525
|
-
readonly kind: OpensteerValidationRuleKind;
|
|
2526
|
-
readonly label: string;
|
|
2527
|
-
readonly required: boolean;
|
|
2528
|
-
readonly expectedStatus?: number;
|
|
2529
|
-
readonly structureHash?: string;
|
|
2530
|
-
readonly textIncludes?: string;
|
|
2531
|
-
readonly minimumCount?: number;
|
|
2532
|
-
}
|
|
2533
|
-
interface OpensteerReverseOperationWorkflowStep {
|
|
2534
|
-
readonly id: string;
|
|
2535
|
-
readonly kind: "operation";
|
|
2536
|
-
readonly label: string;
|
|
2537
|
-
readonly operation: OpensteerSemanticOperationName | string;
|
|
2538
|
-
readonly input: OpensteerValueTemplate;
|
|
2539
|
-
readonly bindAs?: string;
|
|
2540
|
-
}
|
|
2541
|
-
interface OpensteerReverseAwaitRecordMatch {
|
|
2542
|
-
readonly recordId?: string;
|
|
2543
|
-
readonly host?: string;
|
|
2544
|
-
readonly path?: string;
|
|
2545
|
-
readonly method?: string;
|
|
2546
|
-
readonly channel?: OpensteerReverseChannelKind;
|
|
2547
|
-
readonly status?: number;
|
|
2548
|
-
readonly text?: string;
|
|
2549
|
-
}
|
|
2550
|
-
interface OpensteerReverseAwaitRecordWorkflowStep {
|
|
2551
|
-
readonly id: string;
|
|
2552
|
-
readonly kind: "await-record";
|
|
2553
|
-
readonly label: string;
|
|
2554
|
-
readonly channel: OpensteerChannelDescriptor;
|
|
2555
|
-
readonly recordId?: string;
|
|
2556
|
-
readonly match?: OpensteerReverseAwaitRecordMatch;
|
|
2557
|
-
readonly validationRuleIds?: readonly string[];
|
|
2558
|
-
readonly timeoutMs?: number;
|
|
2559
|
-
readonly bindAs?: string;
|
|
2560
|
-
}
|
|
2561
|
-
interface OpensteerReverseAssertWorkflowStep {
|
|
2562
|
-
readonly id: string;
|
|
2563
|
-
readonly kind: "assert";
|
|
2564
|
-
readonly label: string;
|
|
2565
|
-
readonly validationRuleIds: readonly string[];
|
|
2566
|
-
readonly binding?: string;
|
|
2567
|
-
}
|
|
2568
|
-
type OpensteerReverseWorkflowStep = OpensteerReverseOperationWorkflowStep | OpensteerReverseAwaitRecordWorkflowStep | OpensteerReverseAssertWorkflowStep;
|
|
2569
|
-
interface OpensteerReversePackageRequirements {
|
|
2570
|
-
readonly requiresBrowser: boolean;
|
|
2571
|
-
readonly requiresLiveState: boolean;
|
|
2572
|
-
readonly manualCalibration: "not-needed" | "recommended" | "required";
|
|
2573
|
-
readonly stateSources: readonly OpensteerStateSourceKind[];
|
|
2574
|
-
}
|
|
2575
|
-
interface OpensteerChannelDescriptor {
|
|
2576
|
-
readonly kind: OpensteerReverseChannelKind;
|
|
2577
|
-
readonly recordKind: "http" | "event-stream" | "websocket";
|
|
2578
|
-
readonly method?: string;
|
|
2579
|
-
readonly url: string;
|
|
2580
|
-
readonly subprotocol?: string;
|
|
2581
|
-
}
|
|
2582
|
-
interface OpensteerReverseAdvisoryTemplate {
|
|
2583
|
-
readonly id: string;
|
|
2584
|
-
readonly label: string;
|
|
2585
|
-
readonly channel: OpensteerReverseChannelKind;
|
|
2586
|
-
readonly execution: "transport" | "page-observation";
|
|
2587
|
-
readonly stateSource: OpensteerStateSourceKind;
|
|
2588
|
-
readonly observationId?: string;
|
|
2589
|
-
readonly transport?: TransportKind;
|
|
2590
|
-
readonly guardIds: readonly string[];
|
|
2591
|
-
readonly resolverIds: readonly string[];
|
|
2592
|
-
readonly requiresBrowser: boolean;
|
|
2593
|
-
readonly requiresLiveState: boolean;
|
|
2594
|
-
readonly viability: "ready" | "draft" | "unsupported";
|
|
2595
|
-
readonly notes?: string;
|
|
2596
|
-
}
|
|
2597
|
-
interface OpensteerReverseGuardRecord {
|
|
2598
|
-
readonly id: string;
|
|
2599
|
-
readonly kind: "interaction" | "state" | "script" | "manual";
|
|
2600
|
-
readonly label: string;
|
|
2601
|
-
readonly status: "required" | "satisfied" | "unresolved";
|
|
2602
|
-
readonly interactionTraceId?: string;
|
|
2603
|
-
readonly notes?: string;
|
|
2604
|
-
}
|
|
2605
|
-
interface OpensteerReverseObservationRecord {
|
|
2606
|
-
readonly id: string;
|
|
2607
|
-
readonly capturedAt: number;
|
|
2608
|
-
readonly pageRef?: PageRef;
|
|
2609
|
-
readonly url?: string;
|
|
2610
|
-
readonly stateSource: OpensteerStateSourceKind;
|
|
2611
|
-
readonly networkRecordIds: readonly string[];
|
|
2612
|
-
readonly scriptArtifactIds: readonly string[];
|
|
2613
|
-
readonly interactionTraceIds: readonly string[];
|
|
2614
|
-
readonly stateSnapshotIds: readonly string[];
|
|
2615
|
-
readonly notes?: string;
|
|
2616
|
-
}
|
|
2617
|
-
interface OpensteerReverseCandidateRecord {
|
|
2618
|
-
readonly id: string;
|
|
2619
|
-
readonly observationId: string;
|
|
2620
|
-
readonly clusterId: string;
|
|
2621
|
-
readonly recordId: string;
|
|
2622
|
-
readonly channel: OpensteerChannelDescriptor;
|
|
2623
|
-
readonly bodyCodec: OpensteerBodyCodecDescriptor;
|
|
2624
|
-
readonly boundary: OpensteerReverseCandidateBoundary;
|
|
2625
|
-
readonly summary: string;
|
|
2626
|
-
readonly matchedTargetHints: readonly string[];
|
|
2627
|
-
readonly advisoryTags: readonly OpensteerReverseAdvisoryTag[];
|
|
2628
|
-
readonly constraints: readonly OpensteerReverseConstraintKind[];
|
|
2629
|
-
readonly signals: OpensteerReverseAdvisorySignals;
|
|
2630
|
-
readonly inputs: readonly OpensteerRequestInputDescriptor[];
|
|
2631
|
-
readonly resolvers: readonly OpensteerExecutableResolver[];
|
|
2632
|
-
readonly guardIds: readonly string[];
|
|
2633
|
-
readonly scriptArtifactIds: readonly string[];
|
|
2634
|
-
readonly advisoryTemplates: readonly OpensteerReverseAdvisoryTemplate[];
|
|
2635
|
-
}
|
|
2636
|
-
interface OpensteerReverseReplayValidation {
|
|
2637
|
-
readonly statusMatches?: boolean;
|
|
2638
|
-
readonly structureMatches?: boolean;
|
|
2639
|
-
readonly opened?: boolean;
|
|
2640
|
-
readonly firstChunkObserved?: boolean;
|
|
2641
|
-
readonly firstChunkMatches?: boolean;
|
|
2642
|
-
readonly messageObserved?: boolean;
|
|
2643
|
-
readonly messageCount?: number;
|
|
2644
|
-
}
|
|
2645
|
-
interface OpensteerReverseReplayRunRecord {
|
|
2646
|
-
readonly id: string;
|
|
2647
|
-
readonly createdAt: number;
|
|
2648
|
-
readonly candidateId?: string;
|
|
2649
|
-
readonly templateId?: string;
|
|
2650
|
-
readonly packageId: string;
|
|
2651
|
-
readonly success: boolean;
|
|
2652
|
-
readonly channel?: OpensteerReverseChannelKind;
|
|
2653
|
-
readonly kind: OpensteerReversePackageKind;
|
|
2654
|
-
readonly readiness: OpensteerReversePackageReadiness;
|
|
2655
|
-
readonly transport?: TransportKind;
|
|
2656
|
-
readonly stateSource?: OpensteerStateSourceKind;
|
|
2657
|
-
readonly executedStepIds: readonly string[];
|
|
2658
|
-
readonly failedStepId?: string;
|
|
2659
|
-
readonly bindings?: Readonly<Record<string, JsonValue>>;
|
|
2660
|
-
readonly recordId?: string;
|
|
2661
|
-
readonly status?: number;
|
|
2662
|
-
readonly validation: OpensteerReverseReplayValidation;
|
|
2663
|
-
readonly error?: string;
|
|
2664
|
-
}
|
|
2665
|
-
interface OpensteerReverseExperimentRecord {
|
|
2666
|
-
readonly id: string;
|
|
2667
|
-
readonly createdAt: number;
|
|
2668
|
-
readonly candidateId?: string;
|
|
2669
|
-
readonly templateId?: string;
|
|
2670
|
-
readonly kind: "replay-attempt" | "field-variation";
|
|
2671
|
-
readonly hypothesis: string;
|
|
2672
|
-
readonly success: boolean;
|
|
2673
|
-
readonly status?: number;
|
|
2674
|
-
readonly notes?: string;
|
|
2675
|
-
readonly validation?: OpensteerReverseReplayValidation;
|
|
2676
|
-
}
|
|
2677
|
-
interface OpensteerReverseRequirement {
|
|
2678
|
-
readonly id: string;
|
|
2679
|
-
readonly kind: OpensteerReverseRequirementKind;
|
|
2680
|
-
readonly status: OpensteerReverseRequirementStatus;
|
|
2681
|
-
readonly label: string;
|
|
2682
|
-
readonly description?: string;
|
|
2683
|
-
readonly blocking: boolean;
|
|
2684
|
-
readonly resolverId?: string;
|
|
2685
|
-
readonly guardId?: string;
|
|
2686
|
-
readonly stepId?: string;
|
|
2687
|
-
readonly inputNames?: readonly string[];
|
|
2688
|
-
readonly traceId?: string;
|
|
2689
|
-
readonly artifactId?: string;
|
|
2690
|
-
readonly recordId?: string;
|
|
2691
|
-
}
|
|
2692
|
-
interface OpensteerReverseSuggestedEdit {
|
|
2693
|
-
readonly id: string;
|
|
2694
|
-
readonly kind: OpensteerReverseSuggestedEditKind;
|
|
2695
|
-
readonly label: string;
|
|
2696
|
-
readonly description?: string;
|
|
2697
|
-
readonly resolverId?: string;
|
|
2698
|
-
readonly guardId?: string;
|
|
2699
|
-
readonly stepId?: string;
|
|
2700
|
-
readonly traceId?: string;
|
|
2701
|
-
readonly artifactId?: string;
|
|
2702
|
-
readonly recordId?: string;
|
|
2703
|
-
readonly payload?: JsonValue;
|
|
2704
|
-
}
|
|
2705
|
-
interface OpensteerReverseExportRecord {
|
|
2706
|
-
readonly id: string;
|
|
2707
|
-
readonly createdAt: number;
|
|
2708
|
-
readonly candidateId?: string;
|
|
2709
|
-
readonly templateId?: string;
|
|
2710
|
-
readonly packageId: string;
|
|
2711
|
-
readonly kind: OpensteerReversePackageKind;
|
|
2712
|
-
readonly readiness: OpensteerReversePackageReadiness;
|
|
2713
|
-
readonly requestPlanId?: string;
|
|
2714
|
-
}
|
|
2715
|
-
interface OpensteerReverseCasePayload {
|
|
2716
|
-
readonly objective: string;
|
|
2717
|
-
readonly notes?: string;
|
|
2718
|
-
readonly status: OpensteerReverseCaseStatus;
|
|
2719
|
-
readonly stateSource: OpensteerStateSourceKind;
|
|
2720
|
-
readonly observations: readonly OpensteerReverseObservationRecord[];
|
|
2721
|
-
readonly observationClusters: readonly OpensteerObservationCluster[];
|
|
2722
|
-
readonly observedRecords: readonly OpensteerReverseObservedRecord[];
|
|
2723
|
-
readonly candidates: readonly OpensteerReverseCandidateRecord[];
|
|
2724
|
-
readonly guards: readonly OpensteerReverseGuardRecord[];
|
|
2725
|
-
readonly stateSnapshots: readonly OpensteerStateSnapshot[];
|
|
2726
|
-
readonly stateDeltas: readonly OpensteerStateDelta[];
|
|
2727
|
-
readonly experiments: readonly OpensteerReverseExperimentRecord[];
|
|
2728
|
-
readonly replayRuns: readonly OpensteerReverseReplayRunRecord[];
|
|
2729
|
-
readonly exports: readonly OpensteerReverseExportRecord[];
|
|
2730
|
-
}
|
|
2731
|
-
interface OpensteerReverseCaseRecord {
|
|
2732
|
-
readonly id: string;
|
|
2733
|
-
readonly key: string;
|
|
2734
|
-
readonly version: string;
|
|
2735
|
-
readonly createdAt: number;
|
|
2736
|
-
readonly updatedAt: number;
|
|
2737
|
-
readonly contentHash: string;
|
|
2738
|
-
readonly tags: readonly string[];
|
|
2739
|
-
readonly provenance?: OpensteerRegistryProvenance;
|
|
2740
|
-
readonly payload: OpensteerReverseCasePayload;
|
|
2741
|
-
}
|
|
2742
|
-
interface OpensteerReversePackagePayload {
|
|
2743
|
-
readonly kind: OpensteerReversePackageKind;
|
|
2744
|
-
readonly readiness: OpensteerReversePackageReadiness;
|
|
2745
|
-
readonly caseId: string;
|
|
2746
|
-
readonly objective: string;
|
|
2747
|
-
readonly source: {
|
|
2748
|
-
readonly kind: "record" | "candidate";
|
|
2749
|
-
readonly id: string;
|
|
2750
|
-
};
|
|
2751
|
-
readonly sourceRecordId: string;
|
|
2752
|
-
readonly candidateId?: string;
|
|
2753
|
-
readonly candidate?: OpensteerReverseCandidateRecord;
|
|
2754
|
-
readonly templateId?: string;
|
|
2755
|
-
readonly template?: OpensteerReverseAdvisoryTemplate;
|
|
2756
|
-
readonly channel?: OpensteerChannelDescriptor;
|
|
2757
|
-
readonly stateSource?: OpensteerStateSourceKind;
|
|
2758
|
-
readonly observationId?: string;
|
|
2759
|
-
readonly transport?: TransportKind;
|
|
2760
|
-
readonly guardIds: readonly string[];
|
|
2761
|
-
readonly workflow: readonly OpensteerReverseWorkflowStep[];
|
|
2762
|
-
readonly resolvers: readonly OpensteerExecutableResolver[];
|
|
2763
|
-
readonly validators: readonly OpensteerValidationRule[];
|
|
2764
|
-
readonly stateSnapshots: readonly OpensteerStateSnapshot[];
|
|
2765
|
-
readonly requirements: OpensteerReversePackageRequirements;
|
|
2766
|
-
readonly requestPlanId?: string;
|
|
2767
|
-
readonly unresolvedRequirements: readonly OpensteerReverseRequirement[];
|
|
2768
|
-
readonly suggestedEdits: readonly OpensteerReverseSuggestedEdit[];
|
|
2769
|
-
readonly attachedTraceIds: readonly string[];
|
|
2770
|
-
readonly attachedArtifactIds: readonly string[];
|
|
2771
|
-
readonly attachedRecordIds: readonly string[];
|
|
2772
|
-
readonly notes?: string;
|
|
2773
|
-
readonly parentPackageId?: string;
|
|
2774
|
-
}
|
|
2775
|
-
interface OpensteerReversePackageRecord {
|
|
2776
|
-
readonly id: string;
|
|
2777
|
-
readonly key: string;
|
|
2778
|
-
readonly version: string;
|
|
2779
|
-
readonly createdAt: number;
|
|
2780
|
-
readonly updatedAt: number;
|
|
2781
|
-
readonly contentHash: string;
|
|
2782
|
-
readonly tags: readonly string[];
|
|
2783
|
-
readonly provenance?: OpensteerRegistryProvenance;
|
|
2784
|
-
readonly payload: OpensteerReversePackagePayload;
|
|
2785
|
-
}
|
|
2786
|
-
interface OpensteerReverseCandidateAdvisoryItem {
|
|
2787
|
-
readonly candidateId: string;
|
|
2788
|
-
readonly clusterId: string;
|
|
2789
|
-
readonly advisoryRank: number;
|
|
2790
|
-
readonly bodyCodec: OpensteerBodyCodecDescriptor;
|
|
2791
|
-
readonly summary: string;
|
|
2792
|
-
readonly advisoryTags: readonly OpensteerReverseAdvisoryTag[];
|
|
2793
|
-
readonly constraints: readonly OpensteerReverseConstraintKind[];
|
|
2794
|
-
readonly signals: OpensteerReverseAdvisorySignals;
|
|
2795
|
-
readonly reasons: readonly string[];
|
|
2796
|
-
}
|
|
2797
|
-
interface OpensteerReverseDiscoverySummaryCounts {
|
|
2798
|
-
readonly hosts: Readonly<Record<string, number>>;
|
|
2799
|
-
readonly channels: Readonly<Record<string, number>>;
|
|
2800
|
-
readonly resourceTypes: Readonly<Record<string, number>>;
|
|
2801
|
-
readonly advisoryTags: Readonly<Record<string, number>>;
|
|
2802
|
-
readonly constraints: Readonly<Record<string, number>>;
|
|
2803
|
-
readonly relationKinds: Readonly<Record<string, number>>;
|
|
2804
|
-
}
|
|
2805
|
-
interface OpensteerReverseReportPayload {
|
|
2806
|
-
readonly kind: OpensteerReverseReportKind;
|
|
2807
|
-
readonly caseId: string;
|
|
2808
|
-
readonly objective: string;
|
|
2809
|
-
readonly observations: readonly OpensteerReverseObservationRecord[];
|
|
2810
|
-
readonly observationClusters: readonly OpensteerObservationCluster[];
|
|
2811
|
-
readonly observedRecords: readonly OpensteerReverseObservedRecord[];
|
|
2812
|
-
readonly guards: readonly OpensteerReverseGuardRecord[];
|
|
2813
|
-
readonly stateDeltas: readonly OpensteerStateDelta[];
|
|
2814
|
-
readonly summaryCounts: OpensteerReverseDiscoverySummaryCounts;
|
|
2815
|
-
readonly candidateAdvisories: readonly OpensteerReverseCandidateAdvisoryItem[];
|
|
2816
|
-
readonly query?: OpensteerReverseQuerySnapshot;
|
|
2817
|
-
readonly experiments: readonly OpensteerReverseExperimentRecord[];
|
|
2818
|
-
readonly replayRuns: readonly OpensteerReverseReplayRunRecord[];
|
|
2819
|
-
readonly linkedNetworkRecordIds: readonly string[];
|
|
2820
|
-
readonly linkedInteractionTraceIds: readonly string[];
|
|
2821
|
-
readonly linkedArtifactIds: readonly string[];
|
|
2822
|
-
readonly linkedStateSnapshotIds: readonly string[];
|
|
2823
|
-
readonly packageId?: string;
|
|
2824
|
-
readonly packageKind?: OpensteerReversePackageKind;
|
|
2825
|
-
readonly packageReadiness?: OpensteerReversePackageReadiness;
|
|
2826
|
-
readonly unresolvedRequirements?: readonly OpensteerReverseRequirement[];
|
|
2827
|
-
readonly suggestedEdits?: readonly OpensteerReverseSuggestedEdit[];
|
|
2828
|
-
readonly package?: OpensteerReversePackageRecord;
|
|
2829
|
-
}
|
|
2830
|
-
interface OpensteerReverseReportRecord {
|
|
2831
|
-
readonly id: string;
|
|
2832
|
-
readonly key: string;
|
|
2833
|
-
readonly version: string;
|
|
2834
|
-
readonly createdAt: number;
|
|
2835
|
-
readonly updatedAt: number;
|
|
2836
|
-
readonly contentHash: string;
|
|
2837
|
-
readonly tags: readonly string[];
|
|
2838
|
-
readonly provenance?: OpensteerRegistryProvenance;
|
|
2839
|
-
readonly payload: OpensteerReverseReportPayload;
|
|
2840
|
-
}
|
|
2841
|
-
interface OpensteerReverseObservedRecord {
|
|
2842
|
-
readonly recordId: string;
|
|
2843
|
-
readonly observationId: string;
|
|
2844
|
-
readonly clusterId: string;
|
|
2845
|
-
readonly observedAt?: number;
|
|
2846
|
-
readonly channel: OpensteerChannelDescriptor;
|
|
2847
|
-
readonly bodyCodec: OpensteerBodyCodecDescriptor;
|
|
2848
|
-
readonly resourceType?: string;
|
|
2849
|
-
readonly status?: number;
|
|
2850
|
-
readonly matchedTargetHints: readonly string[];
|
|
2851
|
-
readonly relationKinds: readonly OpensteerObservationClusterRelationshipKind[];
|
|
2852
|
-
}
|
|
2853
|
-
interface OpensteerReverseQueryFilters {
|
|
2854
|
-
readonly recordId?: string;
|
|
2855
|
-
readonly clusterId?: string;
|
|
2856
|
-
readonly candidateId?: string;
|
|
2857
|
-
readonly host?: string;
|
|
2858
|
-
readonly path?: string;
|
|
2859
|
-
readonly method?: string;
|
|
2860
|
-
readonly status?: string;
|
|
2861
|
-
readonly resourceType?: string;
|
|
2862
|
-
readonly channel?: OpensteerReverseChannelKind;
|
|
2863
|
-
readonly boundary?: OpensteerReverseCandidateBoundary;
|
|
2864
|
-
readonly advisoryTag?: OpensteerReverseAdvisoryTag;
|
|
2865
|
-
readonly constraint?: OpensteerReverseConstraintKind;
|
|
2866
|
-
readonly bodyCodec?: OpensteerBodyCodecKind;
|
|
2867
|
-
readonly relationKind?: OpensteerObservationClusterRelationshipKind;
|
|
2868
|
-
readonly hasGuards?: boolean;
|
|
2869
|
-
readonly hasResolvers?: boolean;
|
|
2870
|
-
readonly artifactId?: string;
|
|
2871
|
-
readonly stateSnapshotId?: string;
|
|
2872
|
-
readonly traceId?: string;
|
|
2873
|
-
readonly evidenceRef?: string;
|
|
2874
|
-
readonly text?: string;
|
|
2875
|
-
}
|
|
2876
|
-
interface OpensteerReverseSortTerm {
|
|
2877
|
-
readonly key: OpensteerReverseSortKey;
|
|
2878
|
-
readonly direction?: OpensteerReverseSortDirection;
|
|
2879
|
-
}
|
|
2880
|
-
interface OpensteerReverseQuerySort {
|
|
2881
|
-
readonly preset?: OpensteerReverseSortPreset;
|
|
2882
|
-
readonly keys?: readonly OpensteerReverseSortTerm[];
|
|
2883
|
-
}
|
|
2884
|
-
interface OpensteerReverseQuerySnapshot {
|
|
2885
|
-
readonly view: OpensteerReverseQueryView;
|
|
2886
|
-
readonly filters?: OpensteerReverseQueryFilters;
|
|
2887
|
-
readonly sort: OpensteerReverseQuerySort;
|
|
2888
|
-
readonly limit: number;
|
|
2889
|
-
readonly totalCount: number;
|
|
2890
|
-
readonly nextCursor?: string;
|
|
2891
|
-
readonly resultIds: readonly string[];
|
|
2892
|
-
}
|
|
2893
|
-
interface OpensteerReverseQueryRecordItem {
|
|
2894
|
-
readonly record: OpensteerReverseObservedRecord;
|
|
2895
|
-
readonly candidateIds: readonly string[];
|
|
2896
|
-
}
|
|
2897
|
-
interface OpensteerReverseQueryClusterItem {
|
|
2898
|
-
readonly cluster: OpensteerObservationCluster;
|
|
2899
|
-
readonly candidateIds: readonly string[];
|
|
2900
|
-
}
|
|
2901
|
-
interface OpensteerReverseQueryCandidateItem {
|
|
2902
|
-
readonly candidate: OpensteerReverseCandidateRecord;
|
|
2903
|
-
readonly reasons: readonly string[];
|
|
2904
|
-
}
|
|
2905
|
-
interface OpensteerReverseDiscoverInput {
|
|
2906
|
-
readonly caseId?: string;
|
|
2907
|
-
readonly key?: string;
|
|
2908
|
-
readonly objective?: string;
|
|
2909
|
-
readonly notes?: string;
|
|
2910
|
-
readonly tags?: readonly string[];
|
|
2911
|
-
readonly pageRef?: PageRef;
|
|
2912
|
-
readonly stateSource?: OpensteerStateSourceKind;
|
|
2913
|
-
readonly network?: {
|
|
2914
|
-
readonly url?: string;
|
|
2915
|
-
readonly hostname?: string;
|
|
2916
|
-
readonly path?: string;
|
|
2917
|
-
readonly method?: string;
|
|
2918
|
-
readonly resourceType?: string;
|
|
2919
|
-
readonly includeBodies?: boolean;
|
|
2920
|
-
};
|
|
2921
|
-
readonly includeScripts?: boolean;
|
|
2922
|
-
readonly includeStorage?: boolean;
|
|
2923
|
-
readonly includeSessionStorage?: boolean;
|
|
2924
|
-
readonly includeIndexedDb?: boolean;
|
|
2925
|
-
readonly interactionTraceIds?: readonly string[];
|
|
2926
|
-
readonly targetHints?: OpensteerReverseTargetHints;
|
|
2927
|
-
readonly captureWindowMs?: number;
|
|
2928
|
-
readonly manualCalibration?: OpensteerReverseManualCalibrationMode;
|
|
2929
|
-
}
|
|
2930
|
-
interface OpensteerReverseDiscoverOutput {
|
|
2931
|
-
readonly caseId: string;
|
|
2932
|
-
readonly reportId: string;
|
|
2933
|
-
readonly summary: {
|
|
2934
|
-
readonly observationIds: readonly string[];
|
|
2935
|
-
readonly recordCount: number;
|
|
2936
|
-
readonly clusterCount: number;
|
|
2937
|
-
readonly candidateCount: number;
|
|
2938
|
-
};
|
|
2939
|
-
readonly index: {
|
|
2940
|
-
readonly views: readonly OpensteerReverseQueryView[];
|
|
2941
|
-
readonly sortableKeys: readonly OpensteerReverseSortKey[];
|
|
2942
|
-
readonly channels: readonly OpensteerReverseChannelKind[];
|
|
2943
|
-
readonly hosts: readonly string[];
|
|
2944
|
-
readonly relationKinds: readonly OpensteerObservationClusterRelationshipKind[];
|
|
2945
|
-
};
|
|
2946
|
-
}
|
|
2947
|
-
interface OpensteerReverseQueryInput {
|
|
2948
|
-
readonly caseId: string;
|
|
2949
|
-
readonly view?: OpensteerReverseQueryView;
|
|
2950
|
-
readonly filters?: OpensteerReverseQueryFilters;
|
|
2951
|
-
readonly sort?: OpensteerReverseQuerySort;
|
|
2952
|
-
readonly limit?: number;
|
|
2953
|
-
readonly cursor?: string;
|
|
2954
|
-
}
|
|
2955
|
-
interface OpensteerReverseQueryOutput {
|
|
2956
|
-
readonly caseId: string;
|
|
2957
|
-
readonly view: OpensteerReverseQueryView;
|
|
2958
|
-
readonly query: OpensteerReverseQuerySnapshot;
|
|
2959
|
-
readonly totalCount: number;
|
|
2960
|
-
readonly nextCursor?: string;
|
|
2961
|
-
readonly records?: readonly OpensteerReverseQueryRecordItem[];
|
|
2962
|
-
readonly clusters?: readonly OpensteerReverseQueryClusterItem[];
|
|
2963
|
-
readonly candidates?: readonly OpensteerReverseQueryCandidateItem[];
|
|
2964
|
-
}
|
|
2965
|
-
interface OpensteerReversePackageCreateInput {
|
|
2966
|
-
readonly caseId: string;
|
|
2967
|
-
readonly source: {
|
|
2968
|
-
readonly kind: "record" | "candidate";
|
|
2969
|
-
readonly id: string;
|
|
2970
|
-
};
|
|
2971
|
-
readonly templateId?: string;
|
|
2972
|
-
readonly key?: string;
|
|
2973
|
-
readonly version?: string;
|
|
2974
|
-
readonly notes?: string;
|
|
2975
|
-
}
|
|
2976
|
-
interface OpensteerReversePackageCreateOutput {
|
|
2977
|
-
readonly package: OpensteerReversePackageRecord;
|
|
2978
|
-
readonly report: OpensteerReverseReportRecord;
|
|
2979
|
-
}
|
|
2980
|
-
interface OpensteerReversePackageRunInput {
|
|
2981
|
-
readonly packageId: string;
|
|
2982
|
-
readonly pageRef?: PageRef;
|
|
2983
|
-
}
|
|
2984
|
-
interface OpensteerReversePackageRunOutput {
|
|
2985
|
-
readonly packageId: string;
|
|
2986
|
-
readonly caseId?: string;
|
|
2987
|
-
readonly source: {
|
|
2988
|
-
readonly kind: "record" | "candidate";
|
|
2989
|
-
readonly id: string;
|
|
2990
|
-
};
|
|
2991
|
-
readonly candidateId?: string;
|
|
2992
|
-
readonly templateId?: string;
|
|
2993
|
-
readonly success: boolean;
|
|
2994
|
-
readonly kind: OpensteerReversePackageKind;
|
|
2995
|
-
readonly readiness: OpensteerReversePackageReadiness;
|
|
2996
|
-
readonly channel?: OpensteerReverseChannelKind;
|
|
2997
|
-
readonly transport?: TransportKind;
|
|
2998
|
-
readonly stateSource?: OpensteerStateSourceKind;
|
|
2999
|
-
readonly recordId?: string;
|
|
3000
|
-
readonly status?: number;
|
|
3001
|
-
readonly validation: OpensteerReverseReplayValidation;
|
|
3002
|
-
readonly executedStepIds: readonly string[];
|
|
3003
|
-
readonly failedStepId?: string;
|
|
3004
|
-
readonly bindings: Readonly<Record<string, JsonValue>>;
|
|
3005
|
-
readonly replayRunId?: string;
|
|
3006
|
-
readonly unresolvedRequirements: readonly OpensteerReverseRequirement[];
|
|
3007
|
-
readonly suggestedEdits: readonly OpensteerReverseSuggestedEdit[];
|
|
3008
|
-
readonly error?: string;
|
|
3009
|
-
}
|
|
3010
|
-
interface OpensteerReverseExportInput {
|
|
3011
|
-
readonly packageId: string;
|
|
3012
|
-
readonly key?: string;
|
|
3013
|
-
readonly version?: string;
|
|
3014
|
-
}
|
|
3015
|
-
interface OpensteerReverseExportOutput {
|
|
3016
|
-
readonly package: OpensteerReversePackageRecord;
|
|
3017
|
-
readonly requestPlan?: OpensteerRequestPlanRecord;
|
|
3018
|
-
}
|
|
3019
|
-
interface OpensteerReverseReportInput {
|
|
3020
|
-
readonly caseId?: string;
|
|
3021
|
-
readonly packageId?: string;
|
|
3022
|
-
readonly reportId?: string;
|
|
3023
|
-
readonly kind?: OpensteerReverseReportKind;
|
|
3024
|
-
}
|
|
3025
|
-
interface OpensteerReverseReportOutput {
|
|
3026
|
-
readonly report: OpensteerReverseReportRecord;
|
|
3027
|
-
}
|
|
3028
|
-
interface OpensteerReversePackageGetInput {
|
|
3029
|
-
readonly packageId: string;
|
|
3030
|
-
}
|
|
3031
|
-
interface OpensteerReversePackageGetOutput {
|
|
3032
|
-
readonly package: OpensteerReversePackageRecord;
|
|
3033
|
-
}
|
|
3034
|
-
interface OpensteerReversePackageListInput {
|
|
3035
|
-
readonly caseId?: string;
|
|
3036
|
-
readonly key?: string;
|
|
3037
|
-
readonly kind?: OpensteerReversePackageKind;
|
|
3038
|
-
readonly readiness?: OpensteerReversePackageReadiness;
|
|
3039
|
-
}
|
|
3040
|
-
interface OpensteerReversePackageListOutput {
|
|
3041
|
-
readonly packages: readonly OpensteerReversePackageRecord[];
|
|
3042
|
-
}
|
|
3043
|
-
interface OpensteerReversePackagePatchInput {
|
|
3044
|
-
readonly packageId: string;
|
|
3045
|
-
readonly key?: string;
|
|
3046
|
-
readonly version?: string;
|
|
3047
|
-
readonly notes?: string;
|
|
3048
|
-
readonly workflow?: readonly OpensteerReverseWorkflowStep[];
|
|
3049
|
-
readonly resolvers?: readonly OpensteerExecutableResolver[];
|
|
3050
|
-
readonly validators?: readonly OpensteerValidationRule[];
|
|
3051
|
-
readonly attachedTraceIds?: readonly string[];
|
|
3052
|
-
readonly attachedArtifactIds?: readonly string[];
|
|
3053
|
-
readonly attachedRecordIds?: readonly string[];
|
|
3054
|
-
readonly stateSnapshotIds?: readonly string[];
|
|
3055
|
-
}
|
|
3056
|
-
interface OpensteerReversePackagePatchOutput {
|
|
3057
|
-
readonly package: OpensteerReversePackageRecord;
|
|
3058
|
-
readonly report: OpensteerReverseReportRecord;
|
|
3059
|
-
}
|
|
3060
|
-
declare const opensteerStateSourceKindSchema: JsonSchema;
|
|
3061
|
-
declare const opensteerReverseCaseStatusSchema: JsonSchema;
|
|
3062
|
-
declare const opensteerReverseChannelKindSchema: JsonSchema;
|
|
3063
|
-
declare const opensteerReverseManualCalibrationModeSchema: JsonSchema;
|
|
3064
|
-
declare const opensteerReverseCandidateBoundarySchema: JsonSchema;
|
|
3065
|
-
declare const opensteerReverseAdvisoryTagSchema: JsonSchema;
|
|
3066
|
-
declare const opensteerReverseConstraintKindSchema: JsonSchema;
|
|
3067
|
-
declare const opensteerRequestInputLocationSchema: JsonSchema;
|
|
3068
|
-
declare const opensteerRequestInputRequirednessSchema: JsonSchema;
|
|
3069
|
-
declare const opensteerRequestInputClassificationSchema: JsonSchema;
|
|
3070
|
-
declare const opensteerRequestInputSourceSchema: JsonSchema;
|
|
3071
|
-
declare const opensteerRequestInputMaterializationPolicySchema: JsonSchema;
|
|
3072
|
-
declare const opensteerRequestInputExportPolicySchema: JsonSchema;
|
|
3073
|
-
declare const opensteerReverseQueryViewSchema: JsonSchema;
|
|
3074
|
-
declare const opensteerReverseSortKeySchema: JsonSchema;
|
|
3075
|
-
declare const opensteerReverseSortPresetSchema: JsonSchema;
|
|
3076
|
-
declare const opensteerReverseSortDirectionSchema: JsonSchema;
|
|
3077
|
-
declare const opensteerObservationClusterRelationshipKindSchema: JsonSchema;
|
|
3078
|
-
declare const opensteerReverseReportKindSchema: JsonSchema;
|
|
3079
|
-
declare const opensteerReversePackageKindSchema: JsonSchema;
|
|
3080
|
-
declare const opensteerReversePackageReadinessSchema: JsonSchema;
|
|
3081
|
-
declare const opensteerBodyCodecKindSchema: JsonSchema;
|
|
3082
|
-
declare const opensteerExecutableResolverKindSchema: JsonSchema;
|
|
3083
|
-
declare const opensteerValueReferenceKindSchema: JsonSchema;
|
|
3084
|
-
declare const opensteerRuntimeValueKeySchema: JsonSchema;
|
|
3085
|
-
declare const opensteerValidationRuleKindSchema: JsonSchema;
|
|
3086
|
-
declare const opensteerReverseWorkflowStepKindSchema: JsonSchema;
|
|
3087
|
-
declare const opensteerReverseRequirementKindSchema: JsonSchema;
|
|
3088
|
-
declare const opensteerReverseRequirementStatusSchema: JsonSchema;
|
|
3089
|
-
declare const opensteerReverseSuggestedEditKindSchema: JsonSchema;
|
|
3090
|
-
declare const opensteerValueReferenceSchema: JsonSchema;
|
|
3091
|
-
declare const opensteerValueTemplateSchema: JsonSchema;
|
|
3092
|
-
declare const opensteerReverseTargetHintsSchema: JsonSchema;
|
|
3093
|
-
declare const opensteerBodyCodecDescriptorSchema: JsonSchema;
|
|
3094
|
-
declare const opensteerObservationClusterSchema: JsonSchema;
|
|
3095
|
-
declare const opensteerStateSnapshotSchema: JsonSchema;
|
|
3096
|
-
declare const opensteerStateDeltaSchema: JsonSchema;
|
|
3097
|
-
declare const opensteerRequestInputDescriptorSchema: JsonSchema;
|
|
3098
|
-
declare const opensteerExecutableResolverSchema: JsonSchema;
|
|
3099
|
-
declare const opensteerReverseAdvisorySignalsSchema: JsonSchema;
|
|
3100
|
-
declare const opensteerValidationRuleSchema: JsonSchema;
|
|
3101
|
-
declare const opensteerReverseWorkflowStepSchema: JsonSchema;
|
|
3102
|
-
declare const opensteerReversePackageRequirementsSchema: JsonSchema;
|
|
3103
|
-
declare const opensteerReverseAdvisoryTemplateSchema: JsonSchema;
|
|
3104
|
-
declare const opensteerReverseGuardRecordSchema: JsonSchema;
|
|
3105
|
-
declare const opensteerReverseObservationRecordSchema: JsonSchema;
|
|
3106
|
-
declare const opensteerReverseObservedRecordSchema: JsonSchema;
|
|
3107
|
-
declare const opensteerReverseCandidateRecordSchema: JsonSchema;
|
|
3108
|
-
declare const opensteerReverseReplayValidationSchema: JsonSchema;
|
|
3109
|
-
declare const opensteerReverseReplayRunRecordSchema: JsonSchema;
|
|
3110
|
-
declare const opensteerReverseExperimentRecordSchema: JsonSchema;
|
|
3111
|
-
declare const opensteerReverseRequirementSchema: JsonSchema;
|
|
3112
|
-
declare const opensteerReverseSuggestedEditSchema: JsonSchema;
|
|
3113
|
-
declare const opensteerReverseExportRecordSchema: JsonSchema;
|
|
3114
|
-
declare const opensteerReverseCasePayloadSchema: JsonSchema;
|
|
3115
|
-
declare const opensteerReverseCaseRecordSchema: JsonSchema;
|
|
3116
|
-
declare const opensteerReversePackagePayloadSchema: JsonSchema;
|
|
3117
|
-
declare const opensteerReversePackageRecordSchema: JsonSchema;
|
|
3118
|
-
declare const opensteerReverseCandidateReportItemSchema: JsonSchema;
|
|
3119
|
-
declare const opensteerReverseReportPayloadSchema: JsonSchema;
|
|
3120
|
-
declare const opensteerReverseReportRecordSchema: JsonSchema;
|
|
3121
|
-
declare const opensteerReverseDiscoverInputSchema: JsonSchema;
|
|
3122
|
-
declare const opensteerReverseDiscoverOutputSchema: JsonSchema;
|
|
3123
|
-
declare const opensteerReverseQueryInputSchema: JsonSchema;
|
|
3124
|
-
declare const opensteerReverseQueryOutputSchema: JsonSchema;
|
|
3125
|
-
declare const opensteerReversePackageCreateInputSchema: JsonSchema;
|
|
3126
|
-
declare const opensteerReversePackageCreateOutputSchema: JsonSchema;
|
|
3127
|
-
declare const opensteerReversePackageRunInputSchema: JsonSchema;
|
|
3128
|
-
declare const opensteerReversePackageRunOutputSchema: JsonSchema;
|
|
3129
|
-
declare const opensteerReverseExportInputSchema: JsonSchema;
|
|
3130
|
-
declare const opensteerReverseExportOutputSchema: JsonSchema;
|
|
3131
|
-
declare const opensteerReverseReportInputSchema: JsonSchema;
|
|
3132
|
-
declare const opensteerReverseReportOutputSchema: JsonSchema;
|
|
3133
|
-
declare const opensteerReversePackageGetInputSchema: JsonSchema;
|
|
3134
|
-
declare const opensteerReversePackageGetOutputSchema: JsonSchema;
|
|
3135
|
-
declare const opensteerReversePackageListInputSchema: JsonSchema;
|
|
3136
|
-
declare const opensteerReversePackageListOutputSchema: JsonSchema;
|
|
3137
|
-
declare const opensteerReversePackagePatchInputSchema: JsonSchema;
|
|
3138
|
-
declare const opensteerReversePackagePatchOutputSchema: JsonSchema;
|
|
3139
|
-
|
|
3140
2219
|
type OpensteerInteractionCaptureStep = {
|
|
3141
2220
|
readonly kind: "goto";
|
|
3142
2221
|
readonly url: string;
|
|
@@ -3374,4 +2453,4 @@ interface DomActionBridgeProvider {
|
|
|
3374
2453
|
}
|
|
3375
2454
|
declare function resolveDomActionBridge(engine: BrowserCoreEngine | DomActionBridgeProvider): DomActionBridge | undefined;
|
|
3376
2455
|
|
|
3377
|
-
export { type ActionFailure, type ActionFailureBlocker, type ActionFailureClassificationSource, type ActionFailureCode, type ActionFailureDetails, type ActivatePageInput, type AppendObservationEventInput, type ArtifactExternalLocation, type ArtifactInline, type ArtifactProvenance, type ArtifactReference, type ArtifactRelation, type AttributeEntry, type AttributeMatchClause, type BodyPayload, type BrowserProfileArchiveFormat, type BrowserProfileCreateRequest, type BrowserProfileDescriptor, type BrowserProfileImportCreateRequest, type BrowserProfileImportCreateResponse, type BrowserProfileImportDescriptor, type BrowserProfileImportSnapshotSummary, type BrowserProfileImportStatus, type BrowserProfileListResponse, type BrowserProfileProxyPolicy, type BrowserProfileStatus, type CaptchaDetectionResult, type CaptchaProvider, type CaptchaType, type CaptureScreenshotInput, type ClosePageInput, type ClosePageOutput, type CloseSessionInput, type CloseSessionOutput, type CloudActionFailure, type CloudActionFailureDetails, type CloudActionMethod, type CloudActionRequest, type CloudActionResponse, type CloudActionSuccess, type CloudBrowserContextConfig, type CloudBrowserExtensionConfig, type CloudBrowserLaunchConfig, type CloudBrowserProfileLaunchPreference, type CloudBrowserProfilePreference, type CloudErrorCode, type CloudFingerprintMode, type CloudFingerprintPreference, type CloudGeolocation, type CloudProxyMode, type CloudProxyPreference, type CloudProxyProtocol, type CloudRegistryImportEntry, type CloudRegistryImportRequest, type CloudRegistryImportResponse, type CloudRequestPlanImportEntry, type CloudRequestPlanImportRequest, type CloudSessionLaunchConfig, type CloudSessionRecordingResult, type CloudSessionRecordingState, type CloudSessionRecordingStatus, type CloudSessionSourceType, type CloudSessionStatus, type CloudSessionSummary, type CloudSessionVisibilityScope, type CloudViewport, type ComputerUseBridge, type ComputerUseBridgeInput, type ComputerUseBridgeOutput, type ComputerUseBridgeProvider, type ContextHop, type CookiesArtifactRecord, type CreatePageInput, type CreatePageOutput, type CreateSessionInput, type CreateSessionOutput, type DocumentTargetInput, type DomActionBridge, type DomActionBridgeProvider, type DomActionKeyPressInput, type DomActionScrollAlignment, type DomActionScrollOptions, type DomActionSettleOptions, type DomActionTargetInspection, type DomPointerHitAssessment, type DomPointerHitRelation, type DomSnapshotArtifactRecord, type ExecuteSessionRequestInput, type ExternalBinaryLocation, type GetCookiesInput, type GetCookiesOutput, type GetDomSnapshotInput, type GetFrameInfoInput, type GetHtmlSnapshotInput, type GetNetworkRecordsInput, type GetNetworkRecordsOutput, type GetPageInfoInput, type GetStorageSnapshotInput, type GetViewportMetricsInput, type HistoryNavigationInput, type HistoryNavigationOutput, type HitTestInput, type HtmlSnapshotArtifactRecord, JSON_SCHEMA_DRAFT_2020_12, type JsonArray, type JsonObject, type JsonPrimitive, type JsonSchema, type JsonSchemaType, type JsonSchemaValidationIssue, type JsonValue, type KeyModifier, type KeyPressInput, type KeyPressOutput, type ListFramesInput, type ListFramesOutput, type ListPagesInput, type ListPagesOutput, type MatchClause, type MatchOperator, type MouseButton, type MouseClickInput, type MouseClickOutput, type MouseMoveInput, type MouseMoveOutput, type MouseScrollInput, type MouseScrollOutput, type NavigatePageInput, type NavigatePageOutput, type NetworkQueryRecord, type NetworkRecord, type NormalizedComputerScreenshotOptions, OPENSTEER_COMPUTER_USE_BRIDGE_SYMBOL, OPENSTEER_DOM_ACTION_BRIDGE_SYMBOL, OPENSTEER_PROTOCOL_COMPATIBILITY_REVISION, OPENSTEER_PROTOCOL_MEDIA_TYPE, OPENSTEER_PROTOCOL_NAME, OPENSTEER_PROTOCOL_REST_BASE_PATH, OPENSTEER_PROTOCOL_REVISION_DATE, OPENSTEER_PROTOCOL_VERSION, type ObservabilityConfig, type ObservabilityProfile, type ObservabilityRedactionConfig, type ObservabilityTraceContext, type ObservationArtifact, type ObservationArtifactKind, type ObservationContext, type ObservationEvent, type ObservationEventError, type ObservationEventKind, type ObservationEventPhase, type ObservationSession, type ObservationSink, type OpenObservationSessionInput, type OpensteerActionResult, type OpensteerAddInitScriptInput, type OpensteerAddInitScriptOutput, type OpensteerArtifact, type OpensteerArtifactKind, type OpensteerArtifactReadInput, type OpensteerArtifactReadOutput, type OpensteerAttachBrowserOptions, type OpensteerAuthRecipeDirectRequestStep, type OpensteerAuthRecipeHookRef, type OpensteerAuthRecipePayload, type OpensteerAuthRecipeRecord, type OpensteerAuthRecipeRef, type OpensteerAuthRecipeRetryOverrides, type OpensteerAuthRecipeSessionRequestStep, type OpensteerAuthRecipeStep, type OpensteerAutomationCancelMessage, type OpensteerAutomationClientMessage, type OpensteerAutomationErrorMessage, type OpensteerAutomationEventMessage, type OpensteerAutomationHelloMessage, type OpensteerAutomationInvokeMessage, type OpensteerAutomationOperationName, type OpensteerAutomationPingMessage, type OpensteerAutomationPongMessage, type OpensteerAutomationResultMessage, type OpensteerAutomationResumeMessage, type OpensteerAutomationServerMessage, type OpensteerBase64RequestBodyInput, type OpensteerBodyCodecDescriptor, type OpensteerBodyCodecKind, type OpensteerBrowserContextOptions, type OpensteerBrowserLaunchOptions, type OpensteerBrowserMode, type OpensteerBrowserOptions, type OpensteerCapability, type OpensteerCapabilityDescriptor, type OpensteerCaptchaSolveInput, type OpensteerCaptchaSolveOutput, type OpensteerCaptureScriptsInput, type OpensteerCaptureScriptsOutput, type OpensteerCapturedScript, type OpensteerChannelDescriptor, type OpensteerComputerAction, type OpensteerComputerAnnotation, type OpensteerComputerClickAction, type OpensteerComputerDisplayScale, type OpensteerComputerDragAction, type OpensteerComputerExecuteInput, type OpensteerComputerExecuteOutput, type OpensteerComputerExecuteTiming, type OpensteerComputerKeyAction, type OpensteerComputerKeyModifier, type OpensteerComputerMouseButton, type OpensteerComputerMoveAction, type OpensteerComputerScreenshotAction, type OpensteerComputerScreenshotOptions, type OpensteerComputerScrollAction, type OpensteerComputerTraceEnrichment, type OpensteerComputerTracePoint, type OpensteerComputerTypeAction, type OpensteerComputerWaitAction, type OpensteerCookieQueryInput, type OpensteerCookieQueryOutput, type OpensteerDomClickInput, type OpensteerDomExtractInput, type OpensteerDomExtractOutput, type OpensteerDomHoverInput, type OpensteerDomInputInput, type OpensteerDomScrollInput, type OpensteerError, type OpensteerErrorCode, type OpensteerErrorEnvelope, type OpensteerErrorOptions, type OpensteerExecutableResolver, type OpensteerExecutableResolverKind, type OpensteerGetAuthRecipeInput, type OpensteerGetRecipeInput, type OpensteerGetRequestPlanInput, type OpensteerGraphqlSummary, type OpensteerHiddenField, type OpensteerHttpMethod, type OpensteerInferRequestPlanInput, type OpensteerInspectCookiesInput, type OpensteerInspectStorageInput, type OpensteerInteractionCaptureInput, type OpensteerInteractionCaptureOutput, type OpensteerInteractionCaptureStep, type OpensteerInteractionDiffInput, type OpensteerInteractionDiffOutput, type OpensteerInteractionEventRecord, type OpensteerInteractionGetInput, type OpensteerInteractionGetOutput, type OpensteerInteractionReplayInput, type OpensteerInteractionReplayOutput, type OpensteerInteractionTracePayload, type OpensteerInteractionTraceRecord, type OpensteerJsonRequestBodyInput, type OpensteerListAuthRecipesInput, type OpensteerListAuthRecipesOutput, type OpensteerListRecipesInput, type OpensteerListRecipesOutput, type OpensteerListRequestPlansInput, type OpensteerListRequestPlansOutput, type OpensteerMcpContent, type OpensteerMcpImageContent, type OpensteerMcpTextContent, type OpensteerMcpToolAnnotations, type OpensteerMcpToolDescriptor, type OpensteerMcpToolResult, type OpensteerNetworkBodySummary, type OpensteerNetworkClearInput, type OpensteerNetworkClearOutput, type OpensteerNetworkDetailInput, type OpensteerNetworkDetailOutput, type OpensteerNetworkQueryInput, type OpensteerNetworkQueryOutput, type OpensteerNetworkRedirectHop, type OpensteerNetworkReplayInput, type OpensteerNetworkReplayOutput, type OpensteerNetworkReplayOverrides, type OpensteerNetworkSummaryRecord, type OpensteerNetworkTagInput, type OpensteerNetworkTagOutput, type OpensteerObservationCluster, type OpensteerObservationClusterMember, type OpensteerObservationClusterRelationshipKind, type OpensteerOpenInput, type OpensteerOpenOutput, type OpensteerOperationName, type OpensteerOperationSpec, type OpensteerPageActivateInput, type OpensteerPageActivateOutput, type OpensteerPageCloseInput, type OpensteerPageCloseOutput, type OpensteerPageEvaluateInput, type OpensteerPageEvaluateOutput, type OpensteerPageGotoInput, type OpensteerPageGotoOutput, type OpensteerPageListInput, type OpensteerPageListOutput, type OpensteerPageNewInput, type OpensteerPageNewOutput, type OpensteerPageSnapshotInput, type OpensteerPageSnapshotOutput, type OpensteerParsedCookie, type OpensteerProtocolDescriptor, OpensteerProtocolError, type OpensteerProtocolName, type OpensteerProtocolVersion, type OpensteerProviderDescriptor, type OpensteerProviderMode, type OpensteerRawRequestInput, type OpensteerRawRequestOutput, type OpensteerRecipeCachePolicy, type OpensteerRecipeEvaluateStep, type OpensteerRecipeGotoStep, type OpensteerRecipeHookRef, type OpensteerRecipeHookStep, type OpensteerRecipePayload, type OpensteerRecipeReadCookieStep, type OpensteerRecipeReadStorageStep, type OpensteerRecipeRecord, type OpensteerRecipeRef, type OpensteerRecipeReloadStep, type OpensteerRecipeRequestStep, type OpensteerRecipeRequestStepInput, type OpensteerRecipeRetryOverrides, type OpensteerRecipeSolveCaptchaStep, type OpensteerRecipeStep, type OpensteerRecipeStepBodyJsonPointerCapture, type OpensteerRecipeStepBodyTextCapture, type OpensteerRecipeStepHeaderCapture, type OpensteerRecipeStepResponseCapture, type OpensteerRecipeSyncCookiesToJarStep, type OpensteerRecipeWaitForCookieStep, type OpensteerRecipeWaitForNetworkStep, type OpensteerRecipeWaitForStorageStep, type OpensteerRecipeWaitForUrlStep, type OpensteerRef, type OpensteerRegistryProvenance, type OpensteerReplayAttempt, type OpensteerRequestBodyInput, type OpensteerRequestEntry, type OpensteerRequestEnvelope, type OpensteerRequestExecuteInput, type OpensteerRequestExecuteOutput, type OpensteerRequestFailurePolicy, type OpensteerRequestFailurePolicyHeaderMatch, type OpensteerRequestInputClassification, type OpensteerRequestInputDescriptor, type OpensteerRequestInputExportPolicy, type OpensteerRequestInputLocation, type OpensteerRequestInputMaterializationPolicy, type OpensteerRequestInputRequiredness, type OpensteerRequestInputSource, type OpensteerRequestParameterLocation, type OpensteerRequestPlanAuth, type OpensteerRequestPlanBody, type OpensteerRequestPlanBodyKind, type OpensteerRequestPlanEndpoint, type OpensteerRequestPlanFreshness, type OpensteerRequestPlanParameter, type OpensteerRequestPlanPayload, type OpensteerRequestPlanRecipeBinding, type OpensteerRequestPlanRecipes, type OpensteerRequestPlanRecord, type OpensteerRequestPlanRecoverBinding, type OpensteerRequestPlanResponseExpectation, type OpensteerRequestPlanTransport, type OpensteerRequestResponseResult, type OpensteerRequestRetryBackoffPolicy, type OpensteerRequestRetryPolicy, type OpensteerRequestScalar, type OpensteerRequestScalarMap, type OpensteerRequestTransportResult, type OpensteerResolvedTarget, type OpensteerResponseEnvelope, type OpensteerRestEndpointDescriptor, type OpensteerReverseAdvisorySignals, type OpensteerReverseAdvisoryTag, type OpensteerReverseAdvisoryTemplate, type OpensteerReverseAssertWorkflowStep, type OpensteerReverseAwaitRecordMatch, type OpensteerReverseAwaitRecordWorkflowStep, type OpensteerReverseCandidateAdvisoryItem, type OpensteerReverseCandidateBoundary, type OpensteerReverseCandidateRecord, type OpensteerReverseCasePayload, type OpensteerReverseCaseRecord, type OpensteerReverseCaseStatus, type OpensteerReverseChannelKind, type OpensteerReverseConstraintKind, type OpensteerReverseDiscoverInput, type OpensteerReverseDiscoverOutput, type OpensteerReverseDiscoverySummaryCounts, type OpensteerReverseExperimentRecord, type OpensteerReverseExportInput, type OpensteerReverseExportOutput, type OpensteerReverseExportRecord, type OpensteerReverseGuardRecord, type OpensteerReverseManualCalibrationMode, type OpensteerReverseObservationRecord, type OpensteerReverseObservedRecord, type OpensteerReverseOperationWorkflowStep, type OpensteerReversePackageCreateInput, type OpensteerReversePackageCreateOutput, type OpensteerReversePackageGetInput, type OpensteerReversePackageGetOutput, type OpensteerReversePackageKind, type OpensteerReversePackageListInput, type OpensteerReversePackageListOutput, type OpensteerReversePackagePatchInput, type OpensteerReversePackagePatchOutput, type OpensteerReversePackagePayload, type OpensteerReversePackageReadiness, type OpensteerReversePackageRecord, type OpensteerReversePackageRequirements, type OpensteerReversePackageRunInput, type OpensteerReversePackageRunOutput, type OpensteerReverseQueryCandidateItem, type OpensteerReverseQueryClusterItem, type OpensteerReverseQueryFilters, type OpensteerReverseQueryInput, type OpensteerReverseQueryOutput, type OpensteerReverseQueryRecordItem, type OpensteerReverseQuerySnapshot, type OpensteerReverseQuerySort, type OpensteerReverseQueryView, type OpensteerReverseReplayRunRecord, type OpensteerReverseReplayValidation, type OpensteerReverseReportInput, type OpensteerReverseReportKind, type OpensteerReverseReportOutput, type OpensteerReverseReportPayload, type OpensteerReverseReportRecord, type OpensteerReverseRequirement, type OpensteerReverseRequirementKind, type OpensteerReverseRequirementStatus, type OpensteerReverseSortDirection, type OpensteerReverseSortKey, type OpensteerReverseSortPreset, type OpensteerReverseSortTerm, type OpensteerReverseSuggestedEdit, type OpensteerReverseSuggestedEditKind, type OpensteerReverseTargetHints, type OpensteerReverseWorkflowStep, type OpensteerReverseWorkflowStepKind, type OpensteerRunAuthRecipeInput, type OpensteerRunAuthRecipeOutput, type OpensteerRunRecipeInput, type OpensteerRunRecipeOutput, type OpensteerRuntimeValueKey, type OpensteerRuntimeVersionInfo, type OpensteerScriptBeautifyInput, type OpensteerScriptBeautifyOutput, type OpensteerScriptDeobfuscateInput, type OpensteerScriptDeobfuscateOutput, type OpensteerScriptSandboxInput, type OpensteerScriptSandboxOutput, type OpensteerSemanticOperationName, type OpensteerSemanticOperationSpec, type OpensteerSemanticRestEndpointDescriptor, type OpensteerSessionAccessGrantResponse, type OpensteerSessionCapabilities, type OpensteerSessionCloseInput, type OpensteerSessionCloseOutput, type OpensteerSessionFetchInput, type OpensteerSessionFetchOutput, type OpensteerSessionFetchTransport, type OpensteerSessionGrant, type OpensteerSessionGrantKind, type OpensteerSessionGrantTransport, type OpensteerSessionInfo, type OpensteerSessionInfoResult, type OpensteerSessionOwnership, type OpensteerSessionState, type OpensteerSnapshotCounter, type OpensteerSnapshotMode, type OpensteerStateDelta, type OpensteerStateDomainSnapshot, type OpensteerStateQueryInput, type OpensteerStateQueryOutput, type OpensteerStateSnapshot, type OpensteerStateSourceKind, type OpensteerStealthProfileInput, type OpensteerStorageArea, type OpensteerStorageDomainSnapshot, type OpensteerStorageQueryInput, type OpensteerStorageQueryOutput, type OpensteerStructuredBodyPreview, type OpensteerSuccessEnvelope, type OpensteerTargetByElement, type OpensteerTargetByPersist, type OpensteerTargetBySelector, type OpensteerTargetInput, type OpensteerTextRequestBodyInput, type OpensteerValidationRule, type OpensteerValidationRuleKind, type OpensteerValueReference, type OpensteerValueReferenceEnvelope, type OpensteerValueReferenceKind, type OpensteerValueTemplate, type OpensteerValueTemplateObject, type OpensteerWriteAuthRecipeInput, type OpensteerWriteRecipeInput, type OpensteerWriteRequestPlanInput, type ParsedOpensteerRef, type PathNode, type PathNodePosition, type PortableBrowserFamily, type PortableBrowserProfileCookieRecord, type PortableBrowserProfileSnapshot, type PortableBrowserProfileSnapshotFormat, type PortableBrowserProfileSnapshotSource, type PositionMatchClause, type ReadAttributesInput, type ReadAttributesOutput, type ReadTextInput, type ReadTextOutput, type ReloadPageInput, type ReplayElementPath, type SandboxAjaxMode, type SandboxAjaxRoute, type SandboxCapturedAjaxCall, type SandboxFidelity, type ScreenshotArtifact, type ScreenshotArtifactRecord, type ScriptSourceArtifactData, type ScriptSourceArtifactRecord, type SessionObservationSink, type SessionTransportRequest, type SessionTransportResponse, type SetExecutionStateInput, type SetExecutionStateOutput, type StopLoadingInput, type StopLoadingOutput, type StorageSnapshotArtifactRecord, type StructuralElementAnchor, type TextInputInput, type TextInputOutput, type TraceBundle, type TraceContext, type TraceOutcome, type TraceRecord, type TransportKind, type WriteObservationArtifactInput, arraySchema, artifactReferenceSchema, assertSupportedProtocolVersion, assertValidSemanticOperationInput, bodyPayloadEncodingSchema, bodyPayloadFromUtf8, bodyPayloadSchema, captchaDetectionResultSchema, captchaProviderSchema, captchaTypeSchema, chooserRefSchema, cloudActionMethods, cloudErrorCodes, cloudSessionRecordingStatuses, cloudSessionSourceTypes, cloudSessionStatuses, cookiePrioritySchema, cookieRecordSchema, cookieSameSiteSchema, coordinateSpaceSchema, createBodyPayload, createErrorEnvelope, createOpensteerError, createRequestEnvelope, createStructuredToolResult, createSuccessEnvelope, defineSchema, dialogRefSchema, documentEpochSchema, documentRefSchema, domSnapshotNodeSchema, domSnapshotSchema, downloadRefSchema, enumSchema, externalBinaryLocationSchema, frameInfoSchema, frameRefSchema, hasCapability, headerEntrySchema, hitTestResultSchema, htmlSnapshotSchema, httpStatusForOpensteerError, indexedDbDatabaseSnapshotSchema, indexedDbIndexSnapshotSchema, indexedDbObjectStoreSnapshotSchema, indexedDbRecordSchema, integerSchema, isCloudActionMethod, isCloudErrorCode, isCloudSessionRecordingStatus, isCloudSessionSourceType, isCloudSessionStatus, isErrorEnvelope, isOpensteerProtocolError, isOpensteerRef, isSupportedProtocolVersion, layoutViewportSchema, literalSchema, networkCaptureStateSchema, networkInitiatorSchema, networkInitiatorTypeSchema, networkQueryRecordSchema, networkRecordKindSchema, networkRecordSchema, networkRequestIdSchema, networkResourceTypeSchema, networkSourceMetadataSchema, networkTimingSchema, networkTransferSizesSchema, nodeLocatorSchema, nodeRefSchema, numberSchema, objectSchema, observabilityConfigSchema, observabilityProfileSchema, observabilityProfiles, observabilityRedactionConfigSchema, observabilityTraceContextSchema, observationArtifactKinds, observationArtifactSchema, observationContextSchema, observationEventErrorSchema, observationEventKinds, observationEventPhases, observationEventSchema, observationSessionSchema, oneOfSchema, opensteerArtifactReadInputSchema, opensteerArtifactReadOutputSchema, opensteerArtifactSchema, opensteerAuthRecipeHookRefSchema, opensteerAuthRecipePayloadSchema, opensteerAuthRecipeRecordSchema, opensteerAuthRecipeRefSchema, opensteerAuthRecipeStepSchema, opensteerAutomationOperationNames, opensteerBodyCodecDescriptorSchema, opensteerBodyCodecKindSchema, opensteerCapabilities, opensteerCapabilityDescriptorListSchema, opensteerCapabilityDescriptorSchema, opensteerCapabilityDescriptors, opensteerCapabilitySchema, opensteerCapabilitySetSchema, opensteerCaptchaSolveInputSchema, opensteerCaptchaSolveOutputSchema, opensteerComputerAnnotationNames, opensteerCookieQueryInputSchema, opensteerCookieQueryOutputSchema, opensteerErrorCodeSchema, opensteerErrorCodes, opensteerErrorEnvelopeSchema, opensteerErrorSchema, opensteerEventSchema, opensteerExecutableResolverKindSchema, opensteerExecutableResolverSchema, opensteerExposedSemanticOperationNames, opensteerGetAuthRecipeInputSchema, opensteerGetRecipeInputSchema, opensteerGetRequestPlanInputSchema, opensteerInferRequestPlanInputSchema, opensteerInteractionCaptureInputSchema, opensteerInteractionCaptureOutputSchema, opensteerInteractionDiffInputSchema, opensteerInteractionDiffOutputSchema, opensteerInteractionEventRecordSchema, opensteerInteractionGetInputSchema, opensteerInteractionGetOutputSchema, opensteerInteractionReplayInputSchema, opensteerInteractionReplayOutputSchema, opensteerInteractionTracePayloadSchema, opensteerInteractionTraceRecordSchema, opensteerListAuthRecipesInputSchema, opensteerListAuthRecipesOutputSchema, opensteerListRecipesInputSchema, opensteerListRecipesOutputSchema, opensteerListRequestPlansInputSchema, opensteerListRequestPlansOutputSchema, opensteerMcpTools, opensteerNetworkClearInputSchema, opensteerNetworkClearOutputSchema, opensteerNetworkDetailInputSchema, opensteerNetworkDetailOutputSchema, opensteerNetworkQueryInputSchema, opensteerNetworkQueryOutputSchema, opensteerNetworkReplayInputSchema, opensteerNetworkReplayOutputSchema, opensteerNetworkSummaryRecordSchema, opensteerNetworkTagInputSchema, opensteerNetworkTagOutputSchema, opensteerObservationClusterRelationshipKindSchema, opensteerObservationClusterSchema, opensteerOperationNames, opensteerOperationSpecificationMap, opensteerOperationSpecifications, opensteerProtocolDescriptor, opensteerProtocolDescriptorSchema, opensteerRawRequestInputSchema, opensteerRawRequestOutputSchema, opensteerRecipeCachePolicySchema, opensteerRecipeHookRefSchema, opensteerRecipePayloadSchema, opensteerRecipeRecordSchema, opensteerRecipeRefSchema, opensteerRecipeStepSchema, opensteerRefKindSchema, opensteerRefSchema, opensteerRegistryProvenanceSchema, opensteerRequestBodyInputSchema, opensteerRequestEntrySchema, opensteerRequestExecuteInputSchema, opensteerRequestExecuteOutputSchema, opensteerRequestFailurePolicyHeaderMatchSchema, opensteerRequestFailurePolicySchema, opensteerRequestInputClassificationSchema, opensteerRequestInputDescriptorSchema, opensteerRequestInputExportPolicySchema, opensteerRequestInputLocationSchema, opensteerRequestInputMaterializationPolicySchema, opensteerRequestInputRequirednessSchema, opensteerRequestInputSourceSchema, opensteerRequestPlanAuthSchema, opensteerRequestPlanBodySchema, opensteerRequestPlanEndpointSchema, opensteerRequestPlanFreshnessSchema, opensteerRequestPlanParameterLocationSchema, opensteerRequestPlanParameterSchema, opensteerRequestPlanPayloadSchema, opensteerRequestPlanRecipeBindingSchema, opensteerRequestPlanRecipesSchema, opensteerRequestPlanRecordSchema, opensteerRequestPlanRecoverBindingSchema, opensteerRequestPlanResponseExpectationSchema, opensteerRequestPlanTransportSchema, opensteerRequestResponseResultSchema, opensteerRequestRetryBackoffPolicySchema, opensteerRequestRetryPolicySchema, opensteerRequestScalarSchema, opensteerRequestTransportResultSchema, opensteerRestEndpoints, opensteerReverseAdvisorySignalsSchema, opensteerReverseAdvisoryTagSchema, opensteerReverseAdvisoryTemplateSchema, opensteerReverseCandidateBoundarySchema, opensteerReverseCandidateRecordSchema, opensteerReverseCandidateReportItemSchema, opensteerReverseCasePayloadSchema, opensteerReverseCaseRecordSchema, opensteerReverseCaseStatusSchema, opensteerReverseChannelKindSchema, opensteerReverseConstraintKindSchema, opensteerReverseDiscoverInputSchema, opensteerReverseDiscoverOutputSchema, opensteerReverseExperimentRecordSchema, opensteerReverseExportInputSchema, opensteerReverseExportOutputSchema, opensteerReverseExportRecordSchema, opensteerReverseGuardRecordSchema, opensteerReverseManualCalibrationModeSchema, opensteerReverseObservationRecordSchema, opensteerReverseObservedRecordSchema, opensteerReversePackageCreateInputSchema, opensteerReversePackageCreateOutputSchema, opensteerReversePackageGetInputSchema, opensteerReversePackageGetOutputSchema, opensteerReversePackageKindSchema, opensteerReversePackageListInputSchema, opensteerReversePackageListOutputSchema, opensteerReversePackagePatchInputSchema, opensteerReversePackagePatchOutputSchema, opensteerReversePackagePayloadSchema, opensteerReversePackageReadinessSchema, opensteerReversePackageRecordSchema, opensteerReversePackageRequirementsSchema, opensteerReversePackageRunInputSchema, opensteerReversePackageRunOutputSchema, opensteerReverseQueryInputSchema, opensteerReverseQueryOutputSchema, opensteerReverseQueryViewSchema, opensteerReverseReplayRunRecordSchema, opensteerReverseReplayValidationSchema, opensteerReverseReportInputSchema, opensteerReverseReportKindSchema, opensteerReverseReportOutputSchema, opensteerReverseReportPayloadSchema, opensteerReverseReportRecordSchema, opensteerReverseRequirementKindSchema, opensteerReverseRequirementSchema, opensteerReverseRequirementStatusSchema, opensteerReverseSortDirectionSchema, opensteerReverseSortKeySchema, opensteerReverseSortPresetSchema, opensteerReverseSuggestedEditKindSchema, opensteerReverseSuggestedEditSchema, opensteerReverseTargetHintsSchema, opensteerReverseWorkflowStepKindSchema, opensteerReverseWorkflowStepSchema, opensteerRunAuthRecipeInputSchema, opensteerRunAuthRecipeOutputSchema, opensteerRunRecipeInputSchema, opensteerRunRecipeOutputSchema, opensteerRuntimeValueKeySchema, opensteerScriptBeautifyInputSchema, opensteerScriptBeautifyOutputSchema, opensteerScriptDeobfuscateInputSchema, opensteerScriptDeobfuscateOutputSchema, opensteerScriptSandboxInputSchema, opensteerScriptSandboxOutputSchema, opensteerSemanticOperationNames, opensteerSemanticOperationSpecificationMap, opensteerSemanticOperationSpecifications, opensteerSemanticRestEndpoints, opensteerSessionFetchInputSchema, opensteerSessionFetchOutputSchema, opensteerSessionGrantKinds, opensteerStateDeltaSchema, opensteerStateQueryInputSchema, opensteerStateQueryOutputSchema, opensteerStateSnapshotSchema, opensteerStateSourceKindSchema, opensteerStorageQueryInputSchema, opensteerStorageQueryOutputSchema, opensteerValidationRuleKindSchema, opensteerValidationRuleSchema, opensteerValueReferenceKindSchema, opensteerValueReferenceSchema, opensteerValueTemplateSchema, opensteerWriteAuthRecipeInputSchema, opensteerWriteRecipeInputSchema, opensteerWriteRequestPlanInputSchema, orderedHeadersSchema, pageInfoSchema, pageLifecycleStateSchema, pageRefSchema, parseOpensteerRef, pointSchema, quadSchema, recordSchema, rectSchema, requestEnvelopeSchema, resolveComputerUseBridge, resolveDomActionBridge, resolveRequiredCapabilities, resolveSemanticRequiredCapabilities, responseEnvelopeSchema, sandboxAjaxModeSchema, sandboxAjaxRouteSchema, sandboxCapturedAjaxCallSchema, sandboxFidelitySchema, screenshotArtifactSchema, screenshotFormatSchema, scriptSourceArtifactDataSchema, scrollOffsetSchema, sessionRefSchema, sessionStorageSnapshotSchema, shadowDomSnapshotModeSchema, sizeSchema, storageEntrySchema, storageOriginSnapshotSchema, storageSnapshotSchema, stringSchema, successEnvelopeSchema, toOpensteerError, traceBundleSchema, traceContextSchema, traceRecordSchema, transportKindSchema, unsupportedCapabilityError, unsupportedVersionError, validateJsonSchema, viewportMetricsSchema, visualViewportSchema, workerRefSchema };
|
|
2456
|
+
export { type ActionFailure, type ActionFailureBlocker, type ActionFailureClassificationSource, type ActionFailureCode, type ActionFailureDetails, type ActivatePageInput, type AppendObservationEventInput, type ArtifactExternalLocation, type ArtifactInline, type ArtifactProvenance, type ArtifactReference, type ArtifactRelation, type AttributeEntry, type AttributeMatchClause, type BodyPayload, type BrowserProfileArchiveFormat, type BrowserProfileCreateRequest, type BrowserProfileDescriptor, type BrowserProfileImportCreateRequest, type BrowserProfileImportCreateResponse, type BrowserProfileImportDescriptor, type BrowserProfileImportSnapshotSummary, type BrowserProfileImportStatus, type BrowserProfileListResponse, type BrowserProfileProxyPolicy, type BrowserProfileStatus, type CaptchaDetectionResult, type CaptchaProvider, type CaptchaType, type CaptureScreenshotInput, type ClosePageInput, type ClosePageOutput, type CloseSessionInput, type CloseSessionOutput, type CloudActionFailure, type CloudActionFailureDetails, type CloudActionMethod, type CloudActionRequest, type CloudActionResponse, type CloudActionSuccess, type CloudBrowserContextConfig, type CloudBrowserExtensionConfig, type CloudBrowserLaunchConfig, type CloudBrowserProfileLaunchPreference, type CloudBrowserProfilePreference, type CloudErrorCode, type CloudFingerprintMode, type CloudFingerprintPreference, type CloudGeolocation, type CloudProxyMode, type CloudProxyPreference, type CloudProxyProtocol, type CloudRegistryImportEntry, type CloudRegistryImportRequest, type CloudRegistryImportResponse, type CloudRequestPlanImportEntry, type CloudRequestPlanImportRequest, type CloudSessionLaunchConfig, type CloudSessionRecordingResult, type CloudSessionRecordingState, type CloudSessionRecordingStatus, type CloudSessionSourceType, type CloudSessionStatus, type CloudSessionSummary, type CloudSessionVisibilityScope, type CloudViewport, type ComputerUseBridge, type ComputerUseBridgeInput, type ComputerUseBridgeOutput, type ComputerUseBridgeProvider, type ContextHop, type CookiesArtifactRecord, type CreatePageInput, type CreatePageOutput, type CreateSessionInput, type CreateSessionOutput, type DocumentTargetInput, type DomActionBridge, type DomActionBridgeProvider, type DomActionKeyPressInput, type DomActionScrollAlignment, type DomActionScrollOptions, type DomActionSettleOptions, type DomActionTargetInspection, type DomPointerHitAssessment, type DomPointerHitRelation, type DomSnapshotArtifactRecord, type ExecuteSessionRequestInput, type ExternalBinaryLocation, type GetCookiesInput, type GetCookiesOutput, type GetDomSnapshotInput, type GetFrameInfoInput, type GetHtmlSnapshotInput, type GetNetworkRecordsInput, type GetNetworkRecordsOutput, type GetPageInfoInput, type GetStorageSnapshotInput, type GetViewportMetricsInput, type HistoryNavigationInput, type HistoryNavigationOutput, type HitTestInput, type HtmlSnapshotArtifactRecord, JSON_SCHEMA_DRAFT_2020_12, type JsonArray, type JsonObject, type JsonPrimitive, type JsonSchema, type JsonSchemaType, type JsonSchemaValidationIssue, type JsonValue, type KeyModifier, type KeyPressInput, type KeyPressOutput, type ListFramesInput, type ListFramesOutput, type ListPagesInput, type ListPagesOutput, type MatchClause, type MatchOperator, type MouseButton, type MouseClickInput, type MouseClickOutput, type MouseMoveInput, type MouseMoveOutput, type MouseScrollInput, type MouseScrollOutput, type NavigatePageInput, type NavigatePageOutput, type NetworkQueryRecord, type NetworkRecord, type NormalizedComputerScreenshotOptions, OPENSTEER_COMPUTER_USE_BRIDGE_SYMBOL, OPENSTEER_DOM_ACTION_BRIDGE_SYMBOL, OPENSTEER_PROTOCOL_COMPATIBILITY_REVISION, OPENSTEER_PROTOCOL_MEDIA_TYPE, OPENSTEER_PROTOCOL_NAME, OPENSTEER_PROTOCOL_REST_BASE_PATH, OPENSTEER_PROTOCOL_REVISION_DATE, OPENSTEER_PROTOCOL_VERSION, type ObservabilityConfig, type ObservabilityProfile, type ObservabilityRedactionConfig, type ObservabilityTraceContext, type ObservationArtifact, type ObservationArtifactKind, type ObservationContext, type ObservationEvent, type ObservationEventError, type ObservationEventKind, type ObservationEventPhase, type ObservationSession, type ObservationSink, type OpenObservationSessionInput, type OpensteerActionResult, type OpensteerAddInitScriptInput, type OpensteerAddInitScriptOutput, type OpensteerArtifact, type OpensteerArtifactKind, type OpensteerArtifactReadInput, type OpensteerArtifactReadOutput, type OpensteerAttachBrowserOptions, type OpensteerAutomationCancelMessage, type OpensteerAutomationClientMessage, type OpensteerAutomationErrorMessage, type OpensteerAutomationEventMessage, type OpensteerAutomationHelloMessage, type OpensteerAutomationInvokeMessage, type OpensteerAutomationOperationName, type OpensteerAutomationPingMessage, type OpensteerAutomationPongMessage, type OpensteerAutomationResultMessage, type OpensteerAutomationResumeMessage, type OpensteerAutomationServerMessage, type OpensteerBase64RequestBodyInput, type OpensteerBrowserContextOptions, type OpensteerBrowserLaunchOptions, type OpensteerBrowserMode, type OpensteerBrowserOptions, type OpensteerCapability, type OpensteerCapabilityDescriptor, type OpensteerCaptchaSolveInput, type OpensteerCaptchaSolveOutput, type OpensteerCaptureScriptsInput, type OpensteerCaptureScriptsOutput, type OpensteerCapturedScript, type OpensteerComputerAction, type OpensteerComputerAnnotation, type OpensteerComputerClickAction, type OpensteerComputerDisplayScale, type OpensteerComputerDragAction, type OpensteerComputerExecuteInput, type OpensteerComputerExecuteOutput, type OpensteerComputerExecuteTiming, type OpensteerComputerKeyAction, type OpensteerComputerKeyModifier, type OpensteerComputerMouseButton, type OpensteerComputerMoveAction, type OpensteerComputerScreenshotAction, type OpensteerComputerScreenshotOptions, type OpensteerComputerScrollAction, type OpensteerComputerTraceEnrichment, type OpensteerComputerTracePoint, type OpensteerComputerTypeAction, type OpensteerComputerWaitAction, type OpensteerCookieQueryInput, type OpensteerCookieQueryOutput, type OpensteerDomClickInput, type OpensteerDomExtractInput, type OpensteerDomExtractOutput, type OpensteerDomHoverInput, type OpensteerDomInputInput, type OpensteerDomScrollInput, type OpensteerError, type OpensteerErrorCode, type OpensteerErrorEnvelope, type OpensteerErrorOptions, type OpensteerGetRequestPlanInput, type OpensteerGraphqlSummary, type OpensteerHiddenField, type OpensteerHttpMethod, type OpensteerInferRequestPlanInput, type OpensteerInspectCookiesInput, type OpensteerInspectStorageInput, type OpensteerInteractionCaptureInput, type OpensteerInteractionCaptureOutput, type OpensteerInteractionCaptureStep, type OpensteerInteractionDiffInput, type OpensteerInteractionDiffOutput, type OpensteerInteractionEventRecord, type OpensteerInteractionGetInput, type OpensteerInteractionGetOutput, type OpensteerInteractionReplayInput, type OpensteerInteractionReplayOutput, type OpensteerInteractionTracePayload, type OpensteerInteractionTraceRecord, type OpensteerJsonRequestBodyInput, type OpensteerListRequestPlansInput, type OpensteerListRequestPlansOutput, type OpensteerLocalViewSessionCloseResponse, type OpensteerLocalViewSessionSummary, type OpensteerLocalViewSessionsResponse, type OpensteerMcpContent, type OpensteerMcpImageContent, type OpensteerMcpTextContent, type OpensteerMcpToolAnnotations, type OpensteerMcpToolDescriptor, type OpensteerMcpToolResult, type OpensteerNetworkBodySummary, type OpensteerNetworkClearInput, type OpensteerNetworkClearOutput, type OpensteerNetworkDetailInput, type OpensteerNetworkDetailOutput, type OpensteerNetworkQueryInput, type OpensteerNetworkQueryOutput, type OpensteerNetworkRedirectHop, type OpensteerNetworkReplayInput, type OpensteerNetworkReplayOutput, type OpensteerNetworkReplayOverrides, type OpensteerNetworkSummaryRecord, type OpensteerNetworkTagInput, type OpensteerNetworkTagOutput, type OpensteerOpenInput, type OpensteerOpenOutput, type OpensteerOperationName, type OpensteerOperationSpec, type OpensteerPageActivateInput, type OpensteerPageActivateOutput, type OpensteerPageCloseInput, type OpensteerPageCloseOutput, type OpensteerPageEvaluateInput, type OpensteerPageEvaluateOutput, type OpensteerPageGotoInput, type OpensteerPageGotoOutput, type OpensteerPageListInput, type OpensteerPageListOutput, type OpensteerPageNewInput, type OpensteerPageNewOutput, type OpensteerPageSnapshotInput, type OpensteerPageSnapshotOutput, type OpensteerParsedCookie, type OpensteerProtocolDescriptor, OpensteerProtocolError, type OpensteerProtocolName, type OpensteerProtocolVersion, type OpensteerProviderDescriptor, type OpensteerProviderMode, type OpensteerRawRequestInput, type OpensteerRawRequestOutput, type OpensteerRef, type OpensteerRegistryProvenance, type OpensteerReplayAttempt, type OpensteerRequestBodyInput, type OpensteerRequestEntry, type OpensteerRequestEnvelope, type OpensteerRequestExecuteInput, type OpensteerRequestExecuteOutput, type OpensteerRequestFailurePolicy, type OpensteerRequestFailurePolicyHeaderMatch, type OpensteerRequestParameterLocation, type OpensteerRequestPlanAuth, type OpensteerRequestPlanBody, type OpensteerRequestPlanBodyKind, type OpensteerRequestPlanEndpoint, type OpensteerRequestPlanFreshness, type OpensteerRequestPlanParameter, type OpensteerRequestPlanPayload, type OpensteerRequestPlanRecord, type OpensteerRequestPlanResponseExpectation, type OpensteerRequestPlanTransport, type OpensteerRequestResponseResult, type OpensteerRequestRetryBackoffPolicy, type OpensteerRequestRetryPolicy, type OpensteerRequestScalar, type OpensteerRequestScalarMap, type OpensteerRequestTransportResult, type OpensteerResolvedTarget, type OpensteerResponseEnvelope, type OpensteerRestEndpointDescriptor, type OpensteerRuntimeVersionInfo, type OpensteerScriptBeautifyInput, type OpensteerScriptBeautifyOutput, type OpensteerScriptDeobfuscateInput, type OpensteerScriptDeobfuscateOutput, type OpensteerScriptSandboxInput, type OpensteerScriptSandboxOutput, type OpensteerSemanticOperationName, type OpensteerSemanticOperationSpec, type OpensteerSemanticRestEndpointDescriptor, type OpensteerSessionAccessGrantResponse, type OpensteerSessionCapabilities, type OpensteerSessionCloseInput, type OpensteerSessionCloseOutput, type OpensteerSessionFetchInput, type OpensteerSessionFetchOutput, type OpensteerSessionFetchTransport, type OpensteerSessionGrant, type OpensteerSessionGrantKind, type OpensteerSessionGrantTransport, type OpensteerSessionInfo, type OpensteerSessionInfoResult, type OpensteerSessionOwnership, type OpensteerSessionState, type OpensteerSnapshotCounter, type OpensteerSnapshotMode, type OpensteerStateDelta, type OpensteerStateDomainSnapshot, type OpensteerStateQueryInput, type OpensteerStateQueryOutput, type OpensteerStateSnapshot, type OpensteerStealthProfileInput, type OpensteerStorageArea, type OpensteerStorageDomainSnapshot, type OpensteerStorageQueryInput, type OpensteerStorageQueryOutput, type OpensteerStructuredBodyPreview, type OpensteerSuccessEnvelope, type OpensteerTargetByElement, type OpensteerTargetByPersist, type OpensteerTargetBySelector, type OpensteerTargetInput, type OpensteerTextRequestBodyInput, type OpensteerViewStreamClientMessage, type OpensteerViewStreamControlMessage, type OpensteerViewStreamTab, type OpensteerViewport, type OpensteerWriteRequestPlanInput, type ParsedOpensteerRef, type PathNode, type PathNodePosition, type PortableBrowserFamily, type PortableBrowserProfileCookieRecord, type PortableBrowserProfileSnapshot, type PortableBrowserProfileSnapshotFormat, type PortableBrowserProfileSnapshotSource, type PositionMatchClause, type ReadAttributesInput, type ReadAttributesOutput, type ReadTextInput, type ReadTextOutput, type ReloadPageInput, type ReplayElementPath, type SandboxAjaxMode, type SandboxAjaxRoute, type SandboxCapturedAjaxCall, type SandboxFidelity, type ScreenshotArtifact, type ScreenshotArtifactRecord, type ScriptSourceArtifactData, type ScriptSourceArtifactRecord, type SessionObservationSink, type SessionTransportRequest, type SessionTransportResponse, type SetExecutionStateInput, type SetExecutionStateOutput, type StopLoadingInput, type StopLoadingOutput, type StorageSnapshotArtifactRecord, type StructuralElementAnchor, type TextInputInput, type TextInputOutput, type TraceBundle, type TraceContext, type TraceOutcome, type TraceRecord, type TransportKind, type WriteObservationArtifactInput, arraySchema, artifactReferenceSchema, assertSupportedProtocolVersion, assertValidSemanticOperationInput, bodyPayloadEncodingSchema, bodyPayloadFromUtf8, bodyPayloadSchema, captchaDetectionResultSchema, captchaProviderSchema, captchaTypeSchema, chooserRefSchema, cloudActionMethods, cloudErrorCodes, cloudSessionRecordingStatuses, cloudSessionSourceTypes, cloudSessionStatuses, cookiePrioritySchema, cookieRecordSchema, cookieSameSiteSchema, coordinateSpaceSchema, createBodyPayload, createErrorEnvelope, createOpensteerError, createRequestEnvelope, createStructuredToolResult, createSuccessEnvelope, defineSchema, dialogRefSchema, documentEpochSchema, documentRefSchema, domSnapshotNodeSchema, domSnapshotSchema, downloadRefSchema, enumSchema, externalBinaryLocationSchema, frameInfoSchema, frameRefSchema, hasCapability, headerEntrySchema, hitTestResultSchema, htmlSnapshotSchema, httpStatusForOpensteerError, indexedDbDatabaseSnapshotSchema, indexedDbIndexSnapshotSchema, indexedDbObjectStoreSnapshotSchema, indexedDbRecordSchema, integerSchema, isCloudActionMethod, isCloudErrorCode, isCloudSessionRecordingStatus, isCloudSessionSourceType, isCloudSessionStatus, isErrorEnvelope, isOpensteerProtocolError, isOpensteerRef, isSupportedProtocolVersion, layoutViewportSchema, literalSchema, networkCaptureStateSchema, networkInitiatorSchema, networkInitiatorTypeSchema, networkQueryRecordSchema, networkRecordKindSchema, networkRecordSchema, networkRequestIdSchema, networkResourceTypeSchema, networkSourceMetadataSchema, networkTimingSchema, networkTransferSizesSchema, nodeLocatorSchema, nodeRefSchema, numberSchema, objectSchema, observabilityConfigSchema, observabilityProfileSchema, observabilityProfiles, observabilityRedactionConfigSchema, observabilityTraceContextSchema, observationArtifactKinds, observationArtifactSchema, observationContextSchema, observationEventErrorSchema, observationEventKinds, observationEventPhases, observationEventSchema, observationSessionSchema, oneOfSchema, opensteerArtifactReadInputSchema, opensteerArtifactReadOutputSchema, opensteerArtifactSchema, opensteerAutomationOperationNames, opensteerCapabilities, opensteerCapabilityDescriptorListSchema, opensteerCapabilityDescriptorSchema, opensteerCapabilityDescriptors, opensteerCapabilitySchema, opensteerCapabilitySetSchema, opensteerCaptchaSolveInputSchema, opensteerCaptchaSolveOutputSchema, opensteerComputerAnnotationNames, opensteerCookieQueryInputSchema, opensteerCookieQueryOutputSchema, opensteerErrorCodeSchema, opensteerErrorCodes, opensteerErrorEnvelopeSchema, opensteerErrorSchema, opensteerEventSchema, opensteerExposedSemanticOperationNames, opensteerGetRequestPlanInputSchema, opensteerInferRequestPlanInputSchema, opensteerInteractionCaptureInputSchema, opensteerInteractionCaptureOutputSchema, opensteerInteractionDiffInputSchema, opensteerInteractionDiffOutputSchema, opensteerInteractionEventRecordSchema, opensteerInteractionGetInputSchema, opensteerInteractionGetOutputSchema, opensteerInteractionReplayInputSchema, opensteerInteractionReplayOutputSchema, opensteerInteractionTracePayloadSchema, opensteerInteractionTraceRecordSchema, opensteerListRequestPlansInputSchema, opensteerListRequestPlansOutputSchema, opensteerMcpTools, opensteerNetworkClearInputSchema, opensteerNetworkClearOutputSchema, opensteerNetworkDetailInputSchema, opensteerNetworkDetailOutputSchema, opensteerNetworkQueryInputSchema, opensteerNetworkQueryOutputSchema, opensteerNetworkReplayInputSchema, opensteerNetworkReplayOutputSchema, opensteerNetworkSummaryRecordSchema, opensteerNetworkTagInputSchema, opensteerNetworkTagOutputSchema, opensteerOperationNames, opensteerOperationSpecificationMap, opensteerOperationSpecifications, opensteerProtocolDescriptor, opensteerProtocolDescriptorSchema, opensteerRawRequestInputSchema, opensteerRawRequestOutputSchema, opensteerRefKindSchema, opensteerRefSchema, opensteerRegistryProvenanceSchema, opensteerRequestBodyInputSchema, opensteerRequestEntrySchema, opensteerRequestExecuteInputSchema, opensteerRequestExecuteOutputSchema, opensteerRequestFailurePolicyHeaderMatchSchema, opensteerRequestFailurePolicySchema, opensteerRequestPlanAuthSchema, opensteerRequestPlanBodySchema, opensteerRequestPlanEndpointSchema, opensteerRequestPlanFreshnessSchema, opensteerRequestPlanParameterLocationSchema, opensteerRequestPlanParameterSchema, opensteerRequestPlanPayloadSchema, opensteerRequestPlanRecordSchema, opensteerRequestPlanResponseExpectationSchema, opensteerRequestPlanTransportSchema, opensteerRequestResponseResultSchema, opensteerRequestRetryBackoffPolicySchema, opensteerRequestRetryPolicySchema, opensteerRequestScalarSchema, opensteerRequestTransportResultSchema, opensteerRestEndpoints, opensteerScriptBeautifyInputSchema, opensteerScriptBeautifyOutputSchema, opensteerScriptDeobfuscateInputSchema, opensteerScriptDeobfuscateOutputSchema, opensteerScriptSandboxInputSchema, opensteerScriptSandboxOutputSchema, opensteerSemanticOperationNames, opensteerSemanticOperationSpecificationMap, opensteerSemanticOperationSpecifications, opensteerSemanticRestEndpoints, opensteerSessionFetchInputSchema, opensteerSessionFetchOutputSchema, opensteerSessionGrantKinds, opensteerStateDeltaSchema, opensteerStateQueryInputSchema, opensteerStateQueryOutputSchema, opensteerStateSnapshotSchema, opensteerStorageQueryInputSchema, opensteerStorageQueryOutputSchema, opensteerWriteRequestPlanInputSchema, orderedHeadersSchema, pageInfoSchema, pageLifecycleStateSchema, pageRefSchema, parseOpensteerRef, pointSchema, quadSchema, recordSchema, rectSchema, requestEnvelopeSchema, resolveComputerUseBridge, resolveDomActionBridge, resolveRequiredCapabilities, resolveSemanticRequiredCapabilities, responseEnvelopeSchema, sandboxAjaxModeSchema, sandboxAjaxRouteSchema, sandboxCapturedAjaxCallSchema, sandboxFidelitySchema, screenshotArtifactSchema, screenshotFormatSchema, scriptSourceArtifactDataSchema, scrollOffsetSchema, sessionRefSchema, sessionStorageSnapshotSchema, shadowDomSnapshotModeSchema, sizeSchema, storageEntrySchema, storageOriginSnapshotSchema, storageSnapshotSchema, stringSchema, successEnvelopeSchema, toOpensteerError, traceBundleSchema, traceContextSchema, traceRecordSchema, transportKindSchema, unsupportedCapabilityError, unsupportedVersionError, validateJsonSchema, viewportMetricsSchema, visualViewportSchema, workerRefSchema };
|