@opensteer/protocol 0.7.1 → 0.7.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -812,14 +812,10 @@ var networkRecordSchema = objectSchema(
812
812
  ]
813
813
  }
814
814
  );
815
- var networkQuerySourceSchema = enumSchema(["live", "saved"], {
816
- title: "NetworkQuerySource"
817
- });
818
815
  var networkQueryRecordSchema = objectSchema(
819
816
  {
820
817
  recordId: stringSchema({ minLength: 1 }),
821
- source: networkQuerySourceSchema,
822
- actionId: stringSchema({ minLength: 1 }),
818
+ capture: stringSchema({ minLength: 1 }),
823
819
  tags: arraySchema(stringSchema({ minLength: 1 }), {
824
820
  uniqueItems: true
825
821
  }),
@@ -828,7 +824,7 @@ var networkQueryRecordSchema = objectSchema(
828
824
  },
829
825
  {
830
826
  title: "NetworkQueryRecord",
831
- required: ["recordId", "source", "record"]
827
+ required: ["recordId", "record"]
832
828
  }
833
829
  );
834
830
  var orderedHeadersSchema = arraySchema(headerEntrySchema, {
@@ -1301,8 +1297,7 @@ var opensteerRecipeStepSchema = oneOfSchema(
1301
1297
  objectSchema(
1302
1298
  {
1303
1299
  kind: enumSchema(["goto"]),
1304
- url: stringSchema({ minLength: 1 }),
1305
- networkTag: stringSchema({ minLength: 1 })
1300
+ url: stringSchema({ minLength: 1 })
1306
1301
  },
1307
1302
  {
1308
1303
  title: "OpensteerAuthRecipeGotoStep",
@@ -1311,8 +1306,7 @@ var opensteerRecipeStepSchema = oneOfSchema(
1311
1306
  ),
1312
1307
  objectSchema(
1313
1308
  {
1314
- kind: enumSchema(["reload"]),
1315
- networkTag: stringSchema({ minLength: 1 })
1309
+ kind: enumSchema(["reload"])
1316
1310
  },
1317
1311
  {
1318
1312
  title: "OpensteerAuthRecipeReloadStep",
@@ -1528,13 +1522,10 @@ var opensteerRecipeRecordSchema = objectSchema(
1528
1522
  var opensteerAuthRecipeRecordSchema = opensteerRecipeRecordSchema;
1529
1523
  var opensteerNetworkQueryInputSchema = objectSchema(
1530
1524
  {
1531
- source: enumSchema(["live", "saved"], {
1532
- title: "OpensteerNetworkQuerySource"
1533
- }),
1534
1525
  pageRef: pageRefSchema,
1535
1526
  recordId: stringSchema({ minLength: 1 }),
1536
1527
  requestId: stringSchema({ minLength: 1 }),
1537
- actionId: stringSchema({ minLength: 1 }),
1528
+ capture: stringSchema({ minLength: 1 }),
1538
1529
  tag: stringSchema({ minLength: 1 }),
1539
1530
  url: stringSchema({ minLength: 1 }),
1540
1531
  hostname: stringSchema({ minLength: 1 }),
@@ -1558,12 +1549,12 @@ var opensteerNetworkQueryOutputSchema = objectSchema(
1558
1549
  required: ["records"]
1559
1550
  }
1560
1551
  );
1561
- var opensteerNetworkSaveInputSchema = objectSchema(
1552
+ var opensteerNetworkTagInputSchema = objectSchema(
1562
1553
  {
1563
1554
  pageRef: pageRefSchema,
1564
1555
  recordId: stringSchema({ minLength: 1 }),
1565
1556
  requestId: stringSchema({ minLength: 1 }),
1566
- actionId: stringSchema({ minLength: 1 }),
1557
+ capture: stringSchema({ minLength: 1 }),
1567
1558
  tag: stringSchema({ minLength: 1 }),
1568
1559
  url: stringSchema({ minLength: 1 }),
1569
1560
  hostname: stringSchema({ minLength: 1 }),
@@ -1573,21 +1564,22 @@ var opensteerNetworkSaveInputSchema = objectSchema(
1573
1564
  resourceType: networkResourceTypeSchema
1574
1565
  },
1575
1566
  {
1576
- title: "OpensteerNetworkSaveInput",
1567
+ title: "OpensteerNetworkTagInput",
1577
1568
  required: ["tag"]
1578
1569
  }
1579
1570
  );
1580
- var opensteerNetworkSaveOutputSchema = objectSchema(
1571
+ var opensteerNetworkTagOutputSchema = objectSchema(
1581
1572
  {
1582
- savedCount: integerSchema({ minimum: 0 })
1573
+ taggedCount: integerSchema({ minimum: 0 })
1583
1574
  },
1584
1575
  {
1585
- title: "OpensteerNetworkSaveOutput",
1586
- required: ["savedCount"]
1576
+ title: "OpensteerNetworkTagOutput",
1577
+ required: ["taggedCount"]
1587
1578
  }
1588
1579
  );
1589
1580
  var opensteerNetworkClearInputSchema = objectSchema(
1590
1581
  {
1582
+ capture: stringSchema({ minLength: 1 }),
1591
1583
  tag: stringSchema({ minLength: 1 })
1592
1584
  },
1593
1585
  {
@@ -2456,6 +2448,7 @@ var cloudActionMethods = [
2456
2448
  var cloudErrorCodes = [
2457
2449
  "CLOUD_AUTH_FAILED",
2458
2450
  "CLOUD_SESSION_NOT_FOUND",
2451
+ "CLOUD_ARTIFACT_NOT_FOUND",
2459
2452
  "CLOUD_SESSION_CLOSED",
2460
2453
  "CLOUD_UNSUPPORTED_METHOD",
2461
2454
  "CLOUD_INVALID_REQUEST",
@@ -3162,6 +3155,164 @@ function traceBundleSchema(dataSchema = {}) {
3162
3155
  );
3163
3156
  }
3164
3157
 
3158
+ // src/observability.ts
3159
+ var observabilityProfiles = ["off", "baseline", "diagnostic"];
3160
+ var observationEventPhases = [
3161
+ "started",
3162
+ "updated",
3163
+ "completed",
3164
+ "failed",
3165
+ "occurred"
3166
+ ];
3167
+ var observationEventKinds = [
3168
+ "session",
3169
+ "operation",
3170
+ "page",
3171
+ "console",
3172
+ "error",
3173
+ "network",
3174
+ "artifact",
3175
+ "annotation",
3176
+ "runtime",
3177
+ "observability"
3178
+ ];
3179
+ var observationArtifactKinds = [
3180
+ "screenshot",
3181
+ "dom-snapshot",
3182
+ "html-snapshot",
3183
+ "trace-bundle",
3184
+ "frame-buffer",
3185
+ "request-body",
3186
+ "response-body",
3187
+ "log",
3188
+ "other"
3189
+ ];
3190
+ var observabilityProfileSchema = enumSchema(observabilityProfiles, {
3191
+ title: "ObservabilityProfile"
3192
+ });
3193
+ var observabilityTraceContextSchema = objectSchema(
3194
+ {
3195
+ traceparent: stringSchema(),
3196
+ baggage: stringSchema()
3197
+ },
3198
+ {
3199
+ title: "ObservabilityTraceContext"
3200
+ }
3201
+ );
3202
+ var observabilityRedactionConfigSchema = objectSchema(
3203
+ {
3204
+ sensitiveKeys: arraySchema(stringSchema()),
3205
+ sensitiveValues: arraySchema(stringSchema())
3206
+ },
3207
+ {
3208
+ title: "ObservabilityRedactionConfig"
3209
+ }
3210
+ );
3211
+ var observabilityConfigSchema = objectSchema(
3212
+ {
3213
+ profile: observabilityProfileSchema,
3214
+ labels: recordSchema(stringSchema()),
3215
+ traceContext: observabilityTraceContextSchema,
3216
+ redaction: observabilityRedactionConfigSchema
3217
+ },
3218
+ {
3219
+ title: "ObservabilityConfig",
3220
+ required: ["profile"]
3221
+ }
3222
+ );
3223
+ var observationContextSchema = objectSchema(
3224
+ {
3225
+ sessionRef: sessionRefSchema,
3226
+ pageRef: pageRefSchema,
3227
+ frameRef: frameRefSchema,
3228
+ documentRef: documentRefSchema,
3229
+ documentEpoch: documentEpochSchema
3230
+ },
3231
+ {
3232
+ title: "ObservationContext"
3233
+ }
3234
+ );
3235
+ var observationEventErrorSchema = objectSchema(
3236
+ {
3237
+ code: stringSchema(),
3238
+ message: stringSchema(),
3239
+ retriable: {
3240
+ type: "boolean"
3241
+ },
3242
+ details: {}
3243
+ },
3244
+ {
3245
+ title: "ObservationEventError",
3246
+ required: ["message"]
3247
+ }
3248
+ );
3249
+ var observationEventSchema = objectSchema(
3250
+ {
3251
+ eventId: stringSchema(),
3252
+ sessionId: stringSchema(),
3253
+ sequence: integerSchema({ minimum: 1 }),
3254
+ kind: enumSchema(observationEventKinds),
3255
+ phase: enumSchema(observationEventPhases),
3256
+ createdAt: integerSchema({ minimum: 0 }),
3257
+ correlationId: stringSchema(),
3258
+ spanId: stringSchema(),
3259
+ parentSpanId: stringSchema(),
3260
+ context: observationContextSchema,
3261
+ data: {},
3262
+ error: observationEventErrorSchema,
3263
+ artifactIds: arraySchema(stringSchema())
3264
+ },
3265
+ {
3266
+ title: "ObservationEvent",
3267
+ required: ["eventId", "sessionId", "sequence", "kind", "phase", "createdAt", "correlationId"]
3268
+ }
3269
+ );
3270
+ var observationArtifactSchema = objectSchema(
3271
+ {
3272
+ artifactId: stringSchema(),
3273
+ sessionId: stringSchema(),
3274
+ kind: enumSchema(observationArtifactKinds),
3275
+ createdAt: integerSchema({ minimum: 0 }),
3276
+ context: observationContextSchema,
3277
+ mediaType: stringSchema(),
3278
+ byteLength: integerSchema({ minimum: 0 }),
3279
+ sha256: stringSchema(),
3280
+ opensteerArtifactId: stringSchema(),
3281
+ storageKey: stringSchema(),
3282
+ metadata: {}
3283
+ },
3284
+ {
3285
+ title: "ObservationArtifact",
3286
+ required: ["artifactId", "sessionId", "kind", "createdAt"]
3287
+ }
3288
+ );
3289
+ var observationSessionSchema = objectSchema(
3290
+ {
3291
+ sessionId: stringSchema(),
3292
+ profile: observabilityProfileSchema,
3293
+ labels: recordSchema(stringSchema()),
3294
+ traceContext: observabilityTraceContextSchema,
3295
+ openedAt: integerSchema({ minimum: 0 }),
3296
+ updatedAt: integerSchema({ minimum: 0 }),
3297
+ closedAt: integerSchema({ minimum: 0 }),
3298
+ currentSequence: integerSchema({ minimum: 0 }),
3299
+ eventCount: integerSchema({ minimum: 0 }),
3300
+ artifactCount: integerSchema({ minimum: 0 })
3301
+ },
3302
+ {
3303
+ title: "ObservationSession",
3304
+ required: [
3305
+ "sessionId",
3306
+ "profile",
3307
+ "openedAt",
3308
+ "updatedAt",
3309
+ "currentSequence",
3310
+ "eventCount",
3311
+ "artifactCount"
3312
+ ]
3313
+ }
3314
+ );
3315
+
3165
3316
  // src/envelopes.ts
3166
3317
  function createRequestEnvelope(operation, input, options) {
3167
3318
  return {
@@ -3274,7 +3425,7 @@ function responseEnvelopeSchema(dataSchema, operation) {
3274
3425
  }
3275
3426
 
3276
3427
  // src/session-info.ts
3277
- var opensteerSessionGrantKinds = ["automation", "view", "cdp"];
3428
+ var opensteerSessionGrantKinds = ["semantic", "automation", "view", "cdp"];
3278
3429
 
3279
3430
  // src/automation.ts
3280
3431
  var opensteerAutomationOperationNames = [
@@ -6237,7 +6388,7 @@ var opensteerSemanticOperationNames = [
6237
6388
  "dom.scroll",
6238
6389
  "dom.extract",
6239
6390
  "network.query",
6240
- "network.save",
6391
+ "network.tag",
6241
6392
  "network.clear",
6242
6393
  "network.minimize",
6243
6394
  "network.diff",
@@ -6298,7 +6449,7 @@ var opensteerPackageRunnableSemanticOperationNames = /* @__PURE__ */ new Set([
6298
6449
  "dom.scroll",
6299
6450
  "dom.extract",
6300
6451
  "network.query",
6301
- "network.save",
6452
+ "network.tag",
6302
6453
  "network.clear",
6303
6454
  "network.minimize",
6304
6455
  "network.diff",
@@ -6618,7 +6769,7 @@ var opensteerPageCloseOutputSchema = objectSchema(
6618
6769
  var opensteerPageGotoInputSchema = objectSchema(
6619
6770
  {
6620
6771
  url: stringSchema(),
6621
- networkTag: stringSchema({ minLength: 1 })
6772
+ captureNetwork: stringSchema({ minLength: 1 })
6622
6773
  },
6623
6774
  {
6624
6775
  title: "OpensteerPageGotoInput",
@@ -6765,11 +6916,25 @@ var opensteerInspectStorageInputSchema = objectSchema(
6765
6916
  title: "OpensteerInspectStorageInput"
6766
6917
  }
6767
6918
  );
6919
+ var opensteerComputerMouseButtonSchema = enumSchema(["left", "middle", "right"], {
6920
+ title: "OpensteerComputerMouseButton"
6921
+ });
6922
+ var opensteerComputerKeyModifierSchema = enumSchema(
6923
+ ["Shift", "Control", "Alt", "Meta"],
6924
+ {
6925
+ title: "OpensteerComputerKeyModifier"
6926
+ }
6927
+ );
6768
6928
  var opensteerDomClickInputSchema = objectSchema(
6769
6929
  {
6770
6930
  target: opensteerTargetInputSchema,
6931
+ button: opensteerComputerMouseButtonSchema,
6932
+ clickCount: integerSchema({ minimum: 1 }),
6933
+ modifiers: arraySchema(opensteerComputerKeyModifierSchema, {
6934
+ uniqueItems: true
6935
+ }),
6771
6936
  persistAsDescription: stringSchema(),
6772
- networkTag: stringSchema({ minLength: 1 })
6937
+ captureNetwork: stringSchema({ minLength: 1 })
6773
6938
  },
6774
6939
  {
6775
6940
  title: "OpensteerDomClickInput",
@@ -6780,7 +6945,7 @@ var opensteerDomHoverInputSchema = objectSchema(
6780
6945
  {
6781
6946
  target: opensteerTargetInputSchema,
6782
6947
  persistAsDescription: stringSchema(),
6783
- networkTag: stringSchema({ minLength: 1 })
6948
+ captureNetwork: stringSchema({ minLength: 1 })
6784
6949
  },
6785
6950
  {
6786
6951
  title: "OpensteerDomHoverInput",
@@ -6793,7 +6958,7 @@ var opensteerDomInputInputSchema = objectSchema(
6793
6958
  text: stringSchema(),
6794
6959
  pressEnter: { type: "boolean" },
6795
6960
  persistAsDescription: stringSchema(),
6796
- networkTag: stringSchema({ minLength: 1 })
6961
+ captureNetwork: stringSchema({ minLength: 1 })
6797
6962
  },
6798
6963
  {
6799
6964
  title: "OpensteerDomInputInput",
@@ -6806,7 +6971,7 @@ var opensteerDomScrollInputSchema = objectSchema(
6806
6971
  direction: enumSchema(["up", "down", "left", "right"]),
6807
6972
  amount: integerSchema({ minimum: 1 }),
6808
6973
  persistAsDescription: stringSchema(),
6809
- networkTag: stringSchema({ minLength: 1 })
6974
+ captureNetwork: stringSchema({ minLength: 1 })
6810
6975
  },
6811
6976
  {
6812
6977
  title: "OpensteerDomScrollInput",
@@ -6867,18 +7032,6 @@ var opensteerSessionCloseOutputSchema = objectSchema(
6867
7032
  required: ["closed"]
6868
7033
  }
6869
7034
  );
6870
- var opensteerComputerMouseButtonSchema = enumSchema(
6871
- ["left", "middle", "right"],
6872
- {
6873
- title: "OpensteerComputerMouseButton"
6874
- }
6875
- );
6876
- var opensteerComputerKeyModifierSchema = enumSchema(
6877
- ["Shift", "Control", "Alt", "Meta"],
6878
- {
6879
- title: "OpensteerComputerKeyModifier"
6880
- }
6881
- );
6882
7035
  var opensteerComputerAnnotationSchema = enumSchema(opensteerComputerAnnotationNames, {
6883
7036
  title: "OpensteerComputerAnnotation"
6884
7037
  });
@@ -7007,7 +7160,7 @@ var opensteerComputerExecuteInputSchema = objectSchema(
7007
7160
  {
7008
7161
  action: opensteerComputerActionSchema,
7009
7162
  screenshot: opensteerComputerScreenshotOptionsSchema,
7010
- networkTag: stringSchema({ minLength: 1 })
7163
+ captureNetwork: stringSchema({ minLength: 1 })
7011
7164
  },
7012
7165
  {
7013
7166
  title: "OpensteerComputerExecuteInput",
@@ -7211,18 +7364,17 @@ var opensteerSemanticOperationSpecificationsBase = [
7211
7364
  }),
7212
7365
  defineSemanticOperationSpec({
7213
7366
  name: "network.query",
7214
- description: "Query live or saved network records for reverse engineering workflows.",
7367
+ description: "Query persisted network records for reverse engineering workflows.",
7215
7368
  inputSchema: opensteerNetworkQueryInputSchema,
7216
7369
  outputSchema: opensteerNetworkQueryOutputSchema,
7217
- requiredCapabilities: [],
7218
- resolveRequiredCapabilities: (input) => input.source === "saved" ? [] : input.includeBodies === true ? ["inspect.network", "inspect.networkBodies"] : ["inspect.network"]
7370
+ requiredCapabilities: []
7219
7371
  }),
7220
7372
  defineSemanticOperationSpec({
7221
- name: "network.save",
7222
- description: "Persist filtered live network records into the saved network registry under a tag.",
7223
- inputSchema: opensteerNetworkSaveInputSchema,
7224
- outputSchema: opensteerNetworkSaveOutputSchema,
7225
- requiredCapabilities: ["inspect.network"]
7373
+ name: "network.tag",
7374
+ description: "Apply a tag to persisted network records matching the provided filters.",
7375
+ inputSchema: opensteerNetworkTagInputSchema,
7376
+ outputSchema: opensteerNetworkTagOutputSchema,
7377
+ requiredCapabilities: []
7226
7378
  }),
7227
7379
  defineSemanticOperationSpec({
7228
7380
  name: "network.clear",
@@ -7637,6 +7789,6 @@ function resolveDomActionBridge(engine) {
7637
7789
  return isDomActionBridgeFactory(candidate) ? candidate.call(engine) : void 0;
7638
7790
  }
7639
7791
 
7640
- export { JSON_SCHEMA_DRAFT_2020_12, 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, OpensteerProtocolError, arraySchema, artifactReferenceSchema, assertSupportedProtocolVersion, assertValidSemanticOperationInput, bodyPayloadEncodingSchema, bodyPayloadFromUtf8, bodyPayloadSchema, captchaDetectionResultSchema, captchaProviderSchema, captchaTypeSchema, chooserRefSchema, cloudActionMethods, cloudErrorCodes, 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, isCloudSessionSourceType, isCloudSessionStatus, isErrorEnvelope, isOpensteerProtocolError, isOpensteerRef, isSupportedProtocolVersion, layoutViewportSchema, literalSchema, minimizationFieldClassificationSchema, minimizationFieldResultSchema, networkCaptureStateSchema, networkDiffEntropySchema, networkDiffFieldKindSchema, networkDiffFieldSchema, networkInitiatorSchema, networkInitiatorTypeSchema, networkQueryRecordSchema, networkQuerySourceSchema, networkRecordKindSchema, networkRecordSchema, networkRequestIdSchema, networkResourceTypeSchema, networkSourceMetadataSchema, networkTimingSchema, networkTransferSizesSchema, nodeLocatorSchema, nodeRefSchema, numberSchema, objectSchema, oneOfSchema, opensteerArtifactReadInputSchema, opensteerArtifactReadOutputSchema, opensteerArtifactSchema, opensteerAuthRecipeHookRefSchema, opensteerAuthRecipePayloadSchema, opensteerAuthRecipeRecordSchema, opensteerAuthRecipeRefSchema, opensteerAuthRecipeStepSchema, opensteerAutomationOperationNames, opensteerBodyCodecDescriptorSchema, opensteerBodyCodecKindSchema, opensteerCapabilities, opensteerCapabilityDescriptorListSchema, opensteerCapabilityDescriptorSchema, opensteerCapabilityDescriptors, opensteerCapabilitySchema, opensteerCapabilitySetSchema, opensteerCaptchaSolveInputSchema, opensteerCaptchaSolveOutputSchema, opensteerComputerAnnotationNames, opensteerErrorCodeSchema, opensteerErrorCodes, opensteerErrorEnvelopeSchema, opensteerErrorSchema, opensteerEventSchema, opensteerExecutableResolverKindSchema, opensteerExecutableResolverSchema, opensteerGetAuthRecipeInputSchema, opensteerGetRecipeInputSchema, opensteerGetRequestPlanInputSchema, opensteerInferRequestPlanInputSchema, opensteerInteractionCaptureInputSchema, opensteerInteractionCaptureOutputSchema, opensteerInteractionDiffInputSchema, opensteerInteractionDiffOutputSchema, opensteerInteractionEventRecordSchema, opensteerInteractionGetInputSchema, opensteerInteractionGetOutputSchema, opensteerInteractionReplayInputSchema, opensteerInteractionReplayOutputSchema, opensteerInteractionTracePayloadSchema, opensteerInteractionTraceRecordSchema, opensteerListAuthRecipesInputSchema, opensteerListAuthRecipesOutputSchema, opensteerListRecipesInputSchema, opensteerListRecipesOutputSchema, opensteerListRequestPlansInputSchema, opensteerListRequestPlansOutputSchema, opensteerMcpTools, opensteerNetworkClearInputSchema, opensteerNetworkClearOutputSchema, opensteerNetworkDiffInputSchema, opensteerNetworkDiffOutputSchema, opensteerNetworkMinimizeInputSchema, opensteerNetworkMinimizeOutputSchema, opensteerNetworkMinimizeSuccessPolicySchema, opensteerNetworkQueryInputSchema, opensteerNetworkQueryOutputSchema, opensteerNetworkSaveInputSchema, opensteerNetworkSaveOutputSchema, 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, opensteerSessionGrantKinds, opensteerStateDeltaSchema, opensteerStateSnapshotSchema, opensteerStateSourceKindSchema, opensteerTransportProbeInputSchema, opensteerTransportProbeOutputSchema, 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, transportProbeLevelSchema, transportProbeResultSchema, unsupportedCapabilityError, unsupportedVersionError, validateJsonSchema, viewportMetricsSchema, visualViewportSchema, workerRefSchema };
7792
+ export { JSON_SCHEMA_DRAFT_2020_12, 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, OpensteerProtocolError, arraySchema, artifactReferenceSchema, assertSupportedProtocolVersion, assertValidSemanticOperationInput, bodyPayloadEncodingSchema, bodyPayloadFromUtf8, bodyPayloadSchema, captchaDetectionResultSchema, captchaProviderSchema, captchaTypeSchema, chooserRefSchema, cloudActionMethods, cloudErrorCodes, 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, isCloudSessionSourceType, isCloudSessionStatus, isErrorEnvelope, isOpensteerProtocolError, isOpensteerRef, isSupportedProtocolVersion, layoutViewportSchema, literalSchema, minimizationFieldClassificationSchema, minimizationFieldResultSchema, networkCaptureStateSchema, networkDiffEntropySchema, networkDiffFieldKindSchema, networkDiffFieldSchema, 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, opensteerErrorCodeSchema, opensteerErrorCodes, opensteerErrorEnvelopeSchema, opensteerErrorSchema, opensteerEventSchema, opensteerExecutableResolverKindSchema, opensteerExecutableResolverSchema, opensteerGetAuthRecipeInputSchema, opensteerGetRecipeInputSchema, opensteerGetRequestPlanInputSchema, opensteerInferRequestPlanInputSchema, opensteerInteractionCaptureInputSchema, opensteerInteractionCaptureOutputSchema, opensteerInteractionDiffInputSchema, opensteerInteractionDiffOutputSchema, opensteerInteractionEventRecordSchema, opensteerInteractionGetInputSchema, opensteerInteractionGetOutputSchema, opensteerInteractionReplayInputSchema, opensteerInteractionReplayOutputSchema, opensteerInteractionTracePayloadSchema, opensteerInteractionTraceRecordSchema, opensteerListAuthRecipesInputSchema, opensteerListAuthRecipesOutputSchema, opensteerListRecipesInputSchema, opensteerListRecipesOutputSchema, opensteerListRequestPlansInputSchema, opensteerListRequestPlansOutputSchema, opensteerMcpTools, opensteerNetworkClearInputSchema, opensteerNetworkClearOutputSchema, opensteerNetworkDiffInputSchema, opensteerNetworkDiffOutputSchema, opensteerNetworkMinimizeInputSchema, opensteerNetworkMinimizeOutputSchema, opensteerNetworkMinimizeSuccessPolicySchema, opensteerNetworkQueryInputSchema, opensteerNetworkQueryOutputSchema, 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, opensteerSessionGrantKinds, opensteerStateDeltaSchema, opensteerStateSnapshotSchema, opensteerStateSourceKindSchema, opensteerTransportProbeInputSchema, opensteerTransportProbeOutputSchema, 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, transportProbeLevelSchema, transportProbeResultSchema, unsupportedCapabilityError, unsupportedVersionError, validateJsonSchema, viewportMetricsSchema, visualViewportSchema, workerRefSchema };
7641
7793
  //# sourceMappingURL=index.js.map
7642
7794
  //# sourceMappingURL=index.js.map