@opensteer/protocol 0.7.0 → 0.7.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 +32 -61
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +56 -35
- package/dist/index.d.ts +56 -35
- package/dist/index.js +31 -58
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
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
|
-
|
|
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", "
|
|
827
|
+
required: ["recordId", "record"]
|
|
832
828
|
}
|
|
833
829
|
);
|
|
834
830
|
var orderedHeadersSchema = arraySchema(headerEntrySchema, {
|
|
@@ -1139,12 +1135,6 @@ var opensteerRegistryProvenanceSchema = objectSchema(
|
|
|
1139
1135
|
required: ["source"]
|
|
1140
1136
|
}
|
|
1141
1137
|
);
|
|
1142
|
-
var opensteerRequestPlanLifecycleSchema = enumSchema(
|
|
1143
|
-
["draft", "active", "deprecated", "retired"],
|
|
1144
|
-
{
|
|
1145
|
-
title: "OpensteerRequestPlanLifecycle"
|
|
1146
|
-
}
|
|
1147
|
-
);
|
|
1148
1138
|
var opensteerRequestPlanFreshnessSchema = objectSchema(
|
|
1149
1139
|
{
|
|
1150
1140
|
lastValidatedAt: integerSchema({ minimum: 0 }),
|
|
@@ -1167,23 +1157,12 @@ var opensteerRequestPlanRecordSchema = objectSchema(
|
|
|
1167
1157
|
uniqueItems: true
|
|
1168
1158
|
}),
|
|
1169
1159
|
provenance: opensteerRegistryProvenanceSchema,
|
|
1170
|
-
lifecycle: opensteerRequestPlanLifecycleSchema,
|
|
1171
1160
|
freshness: opensteerRequestPlanFreshnessSchema,
|
|
1172
1161
|
payload: opensteerRequestPlanPayloadSchema
|
|
1173
1162
|
},
|
|
1174
1163
|
{
|
|
1175
1164
|
title: "OpensteerRequestPlanRecord",
|
|
1176
|
-
required: [
|
|
1177
|
-
"id",
|
|
1178
|
-
"key",
|
|
1179
|
-
"version",
|
|
1180
|
-
"createdAt",
|
|
1181
|
-
"updatedAt",
|
|
1182
|
-
"contentHash",
|
|
1183
|
-
"tags",
|
|
1184
|
-
"lifecycle",
|
|
1185
|
-
"payload"
|
|
1186
|
-
]
|
|
1165
|
+
required: ["id", "key", "version", "createdAt", "updatedAt", "contentHash", "tags", "payload"]
|
|
1187
1166
|
}
|
|
1188
1167
|
);
|
|
1189
1168
|
var jsonValueSchema = defineSchema({
|
|
@@ -1318,8 +1297,7 @@ var opensteerRecipeStepSchema = oneOfSchema(
|
|
|
1318
1297
|
objectSchema(
|
|
1319
1298
|
{
|
|
1320
1299
|
kind: enumSchema(["goto"]),
|
|
1321
|
-
url: stringSchema({ minLength: 1 })
|
|
1322
|
-
networkTag: stringSchema({ minLength: 1 })
|
|
1300
|
+
url: stringSchema({ minLength: 1 })
|
|
1323
1301
|
},
|
|
1324
1302
|
{
|
|
1325
1303
|
title: "OpensteerAuthRecipeGotoStep",
|
|
@@ -1328,8 +1306,7 @@ var opensteerRecipeStepSchema = oneOfSchema(
|
|
|
1328
1306
|
),
|
|
1329
1307
|
objectSchema(
|
|
1330
1308
|
{
|
|
1331
|
-
kind: enumSchema(["reload"])
|
|
1332
|
-
networkTag: stringSchema({ minLength: 1 })
|
|
1309
|
+
kind: enumSchema(["reload"])
|
|
1333
1310
|
},
|
|
1334
1311
|
{
|
|
1335
1312
|
title: "OpensteerAuthRecipeReloadStep",
|
|
@@ -1545,13 +1522,10 @@ var opensteerRecipeRecordSchema = objectSchema(
|
|
|
1545
1522
|
var opensteerAuthRecipeRecordSchema = opensteerRecipeRecordSchema;
|
|
1546
1523
|
var opensteerNetworkQueryInputSchema = objectSchema(
|
|
1547
1524
|
{
|
|
1548
|
-
source: enumSchema(["live", "saved"], {
|
|
1549
|
-
title: "OpensteerNetworkQuerySource"
|
|
1550
|
-
}),
|
|
1551
1525
|
pageRef: pageRefSchema,
|
|
1552
1526
|
recordId: stringSchema({ minLength: 1 }),
|
|
1553
1527
|
requestId: stringSchema({ minLength: 1 }),
|
|
1554
|
-
|
|
1528
|
+
capture: stringSchema({ minLength: 1 }),
|
|
1555
1529
|
tag: stringSchema({ minLength: 1 }),
|
|
1556
1530
|
url: stringSchema({ minLength: 1 }),
|
|
1557
1531
|
hostname: stringSchema({ minLength: 1 }),
|
|
@@ -1575,12 +1549,12 @@ var opensteerNetworkQueryOutputSchema = objectSchema(
|
|
|
1575
1549
|
required: ["records"]
|
|
1576
1550
|
}
|
|
1577
1551
|
);
|
|
1578
|
-
var
|
|
1552
|
+
var opensteerNetworkTagInputSchema = objectSchema(
|
|
1579
1553
|
{
|
|
1580
1554
|
pageRef: pageRefSchema,
|
|
1581
1555
|
recordId: stringSchema({ minLength: 1 }),
|
|
1582
1556
|
requestId: stringSchema({ minLength: 1 }),
|
|
1583
|
-
|
|
1557
|
+
capture: stringSchema({ minLength: 1 }),
|
|
1584
1558
|
tag: stringSchema({ minLength: 1 }),
|
|
1585
1559
|
url: stringSchema({ minLength: 1 }),
|
|
1586
1560
|
hostname: stringSchema({ minLength: 1 }),
|
|
@@ -1590,21 +1564,22 @@ var opensteerNetworkSaveInputSchema = objectSchema(
|
|
|
1590
1564
|
resourceType: networkResourceTypeSchema
|
|
1591
1565
|
},
|
|
1592
1566
|
{
|
|
1593
|
-
title: "
|
|
1567
|
+
title: "OpensteerNetworkTagInput",
|
|
1594
1568
|
required: ["tag"]
|
|
1595
1569
|
}
|
|
1596
1570
|
);
|
|
1597
|
-
var
|
|
1571
|
+
var opensteerNetworkTagOutputSchema = objectSchema(
|
|
1598
1572
|
{
|
|
1599
|
-
|
|
1573
|
+
taggedCount: integerSchema({ minimum: 0 })
|
|
1600
1574
|
},
|
|
1601
1575
|
{
|
|
1602
|
-
title: "
|
|
1603
|
-
required: ["
|
|
1576
|
+
title: "OpensteerNetworkTagOutput",
|
|
1577
|
+
required: ["taggedCount"]
|
|
1604
1578
|
}
|
|
1605
1579
|
);
|
|
1606
1580
|
var opensteerNetworkClearInputSchema = objectSchema(
|
|
1607
1581
|
{
|
|
1582
|
+
capture: stringSchema({ minLength: 1 }),
|
|
1608
1583
|
tag: stringSchema({ minLength: 1 })
|
|
1609
1584
|
},
|
|
1610
1585
|
{
|
|
@@ -1629,7 +1604,6 @@ var opensteerWriteRequestPlanInputSchema = objectSchema(
|
|
|
1629
1604
|
uniqueItems: true
|
|
1630
1605
|
}),
|
|
1631
1606
|
provenance: opensteerRegistryProvenanceSchema,
|
|
1632
|
-
lifecycle: opensteerRequestPlanLifecycleSchema,
|
|
1633
1607
|
freshness: opensteerRequestPlanFreshnessSchema,
|
|
1634
1608
|
payload: opensteerRequestPlanPayloadSchema
|
|
1635
1609
|
},
|
|
@@ -1870,7 +1844,7 @@ var opensteerInferRequestPlanInputSchema = objectSchema(
|
|
|
1870
1844
|
recordId: stringSchema({ minLength: 1 }),
|
|
1871
1845
|
key: stringSchema({ minLength: 1 }),
|
|
1872
1846
|
version: stringSchema({ minLength: 1 }),
|
|
1873
|
-
|
|
1847
|
+
transport: transportKindSchema
|
|
1874
1848
|
},
|
|
1875
1849
|
{
|
|
1876
1850
|
title: "OpensteerInferRequestPlanInput",
|
|
@@ -6255,7 +6229,7 @@ var opensteerSemanticOperationNames = [
|
|
|
6255
6229
|
"dom.scroll",
|
|
6256
6230
|
"dom.extract",
|
|
6257
6231
|
"network.query",
|
|
6258
|
-
"network.
|
|
6232
|
+
"network.tag",
|
|
6259
6233
|
"network.clear",
|
|
6260
6234
|
"network.minimize",
|
|
6261
6235
|
"network.diff",
|
|
@@ -6316,7 +6290,7 @@ var opensteerPackageRunnableSemanticOperationNames = /* @__PURE__ */ new Set([
|
|
|
6316
6290
|
"dom.scroll",
|
|
6317
6291
|
"dom.extract",
|
|
6318
6292
|
"network.query",
|
|
6319
|
-
"network.
|
|
6293
|
+
"network.tag",
|
|
6320
6294
|
"network.clear",
|
|
6321
6295
|
"network.minimize",
|
|
6322
6296
|
"network.diff",
|
|
@@ -6636,7 +6610,7 @@ var opensteerPageCloseOutputSchema = objectSchema(
|
|
|
6636
6610
|
var opensteerPageGotoInputSchema = objectSchema(
|
|
6637
6611
|
{
|
|
6638
6612
|
url: stringSchema(),
|
|
6639
|
-
|
|
6613
|
+
captureNetwork: stringSchema({ minLength: 1 })
|
|
6640
6614
|
},
|
|
6641
6615
|
{
|
|
6642
6616
|
title: "OpensteerPageGotoInput",
|
|
@@ -6787,7 +6761,7 @@ var opensteerDomClickInputSchema = objectSchema(
|
|
|
6787
6761
|
{
|
|
6788
6762
|
target: opensteerTargetInputSchema,
|
|
6789
6763
|
persistAsDescription: stringSchema(),
|
|
6790
|
-
|
|
6764
|
+
captureNetwork: stringSchema({ minLength: 1 })
|
|
6791
6765
|
},
|
|
6792
6766
|
{
|
|
6793
6767
|
title: "OpensteerDomClickInput",
|
|
@@ -6798,7 +6772,7 @@ var opensteerDomHoverInputSchema = objectSchema(
|
|
|
6798
6772
|
{
|
|
6799
6773
|
target: opensteerTargetInputSchema,
|
|
6800
6774
|
persistAsDescription: stringSchema(),
|
|
6801
|
-
|
|
6775
|
+
captureNetwork: stringSchema({ minLength: 1 })
|
|
6802
6776
|
},
|
|
6803
6777
|
{
|
|
6804
6778
|
title: "OpensteerDomHoverInput",
|
|
@@ -6811,7 +6785,7 @@ var opensteerDomInputInputSchema = objectSchema(
|
|
|
6811
6785
|
text: stringSchema(),
|
|
6812
6786
|
pressEnter: { type: "boolean" },
|
|
6813
6787
|
persistAsDescription: stringSchema(),
|
|
6814
|
-
|
|
6788
|
+
captureNetwork: stringSchema({ minLength: 1 })
|
|
6815
6789
|
},
|
|
6816
6790
|
{
|
|
6817
6791
|
title: "OpensteerDomInputInput",
|
|
@@ -6824,7 +6798,7 @@ var opensteerDomScrollInputSchema = objectSchema(
|
|
|
6824
6798
|
direction: enumSchema(["up", "down", "left", "right"]),
|
|
6825
6799
|
amount: integerSchema({ minimum: 1 }),
|
|
6826
6800
|
persistAsDescription: stringSchema(),
|
|
6827
|
-
|
|
6801
|
+
captureNetwork: stringSchema({ minLength: 1 })
|
|
6828
6802
|
},
|
|
6829
6803
|
{
|
|
6830
6804
|
title: "OpensteerDomScrollInput",
|
|
@@ -7025,7 +6999,7 @@ var opensteerComputerExecuteInputSchema = objectSchema(
|
|
|
7025
6999
|
{
|
|
7026
7000
|
action: opensteerComputerActionSchema,
|
|
7027
7001
|
screenshot: opensteerComputerScreenshotOptionsSchema,
|
|
7028
|
-
|
|
7002
|
+
captureNetwork: stringSchema({ minLength: 1 })
|
|
7029
7003
|
},
|
|
7030
7004
|
{
|
|
7031
7005
|
title: "OpensteerComputerExecuteInput",
|
|
@@ -7229,18 +7203,17 @@ var opensteerSemanticOperationSpecificationsBase = [
|
|
|
7229
7203
|
}),
|
|
7230
7204
|
defineSemanticOperationSpec({
|
|
7231
7205
|
name: "network.query",
|
|
7232
|
-
description: "Query
|
|
7206
|
+
description: "Query persisted network records for reverse engineering workflows.",
|
|
7233
7207
|
inputSchema: opensteerNetworkQueryInputSchema,
|
|
7234
7208
|
outputSchema: opensteerNetworkQueryOutputSchema,
|
|
7235
|
-
requiredCapabilities: []
|
|
7236
|
-
resolveRequiredCapabilities: (input) => input.source === "saved" ? [] : input.includeBodies === true ? ["inspect.network", "inspect.networkBodies"] : ["inspect.network"]
|
|
7209
|
+
requiredCapabilities: []
|
|
7237
7210
|
}),
|
|
7238
7211
|
defineSemanticOperationSpec({
|
|
7239
|
-
name: "network.
|
|
7240
|
-
description: "
|
|
7241
|
-
inputSchema:
|
|
7242
|
-
outputSchema:
|
|
7243
|
-
requiredCapabilities: [
|
|
7212
|
+
name: "network.tag",
|
|
7213
|
+
description: "Apply a tag to persisted network records matching the provided filters.",
|
|
7214
|
+
inputSchema: opensteerNetworkTagInputSchema,
|
|
7215
|
+
outputSchema: opensteerNetworkTagOutputSchema,
|
|
7216
|
+
requiredCapabilities: []
|
|
7244
7217
|
}),
|
|
7245
7218
|
defineSemanticOperationSpec({
|
|
7246
7219
|
name: "network.clear",
|
|
@@ -7655,6 +7628,6 @@ function resolveDomActionBridge(engine) {
|
|
|
7655
7628
|
return isDomActionBridgeFactory(candidate) ? candidate.call(engine) : void 0;
|
|
7656
7629
|
}
|
|
7657
7630
|
|
|
7658
|
-
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, opensteerRequestPlanLifecycleSchema, 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 };
|
|
7631
|
+
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, 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 };
|
|
7659
7632
|
//# sourceMappingURL=index.js.map
|
|
7660
7633
|
//# sourceMappingURL=index.js.map
|