patchright-bun-core 1.58.2 → 1.59.0
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/ThirdPartyNotices.txt +126 -650
- package/browsers.json +16 -14
- package/lib/bootstrap.js +77 -0
- package/lib/cli/browserActions.js +308 -0
- package/lib/cli/driver.js +3 -2
- package/lib/cli/installActions.js +171 -0
- package/lib/cli/program.js +47 -411
- package/lib/client/android.js +4 -4
- package/lib/client/api.js +3 -3
- package/lib/client/browser.js +8 -0
- package/lib/client/browserContext.js +18 -37
- package/lib/client/browserType.js +19 -51
- package/lib/client/cdpSession.js +6 -2
- package/lib/client/channelOwner.js +1 -1
- package/lib/client/{webSocket.js → connect.js} +57 -7
- package/lib/client/connection.js +8 -4
- package/lib/client/consoleMessage.js +3 -0
- package/lib/client/debugger.js +57 -0
- package/lib/client/dialog.js +8 -1
- package/lib/client/disposable.js +76 -0
- package/lib/client/electron.js +1 -0
- package/lib/client/elementHandle.js +1 -4
- package/lib/client/events.js +3 -3
- package/lib/client/fetch.js +0 -1
- package/lib/client/frame.js +0 -5
- package/lib/client/harRouter.js +13 -1
- package/lib/client/jsHandle.js +0 -4
- package/lib/client/locator.js +5 -7
- package/lib/client/network.js +14 -11
- package/lib/client/page.js +34 -48
- package/lib/client/platform.js +0 -3
- package/lib/client/screencast.js +88 -0
- package/lib/client/selectors.js +3 -1
- package/lib/client/tracing.js +11 -4
- package/lib/client/video.js +13 -20
- package/lib/generated/bindingsControllerSource.js +1 -1
- package/lib/generated/clockSource.js +1 -1
- package/lib/generated/injectedScriptSource.js +1 -1
- package/lib/generated/pollingRecorderSource.js +1 -1
- package/lib/generated/storageScriptSource.js +1 -1
- package/lib/generated/utilityScriptSource.js +1 -1
- package/lib/mcpBundle.js +0 -6
- package/lib/mcpBundleImpl.js +91 -0
- package/lib/protocol/validator.js +216 -118
- package/lib/protocol/validatorPrimitives.js +1 -1
- package/lib/remote/playwrightConnection.js +10 -8
- package/lib/remote/playwrightPipeServer.js +100 -0
- package/lib/remote/playwrightServer.js +13 -8
- package/lib/remote/playwrightWebSocketServer.js +73 -0
- package/lib/remote/serverTransport.js +96 -0
- package/lib/server/android/android.js +2 -2
- package/lib/server/bidi/bidiBrowser.js +30 -8
- package/lib/server/bidi/bidiChromium.js +18 -5
- package/lib/server/bidi/bidiNetworkManager.js +39 -11
- package/lib/server/bidi/bidiPage.js +31 -15
- package/lib/server/bidi/third_party/firefoxPrefs.js +3 -1
- package/lib/server/browser.js +84 -21
- package/lib/server/browserContext.js +97 -58
- package/lib/server/browserType.js +14 -12
- package/lib/server/chromium/chromium.js +15 -13
- package/lib/server/chromium/crBrowser.js +18 -10
- package/lib/server/chromium/crNetworkManager.js +4 -4
- package/lib/server/chromium/crPage.js +26 -64
- package/lib/server/chromium/crServiceWorker.js +5 -4
- package/lib/server/clock.js +33 -33
- package/lib/server/console.js +5 -1
- package/lib/server/debugController.js +12 -6
- package/lib/server/debugger.js +40 -47
- package/lib/server/deviceDescriptorsSource.json +137 -137
- package/lib/server/dispatchers/browserContextDispatcher.js +27 -30
- package/lib/server/dispatchers/browserDispatcher.js +11 -5
- package/lib/server/dispatchers/browserTypeDispatcher.js +7 -0
- package/lib/server/dispatchers/cdpSessionDispatcher.js +4 -1
- package/lib/server/dispatchers/debuggerDispatcher.js +84 -0
- package/lib/server/dispatchers/dispatcher.js +1 -1
- package/lib/server/dispatchers/disposableDispatcher.js +39 -0
- package/lib/server/dispatchers/electronDispatcher.js +2 -1
- package/lib/server/dispatchers/frameDispatcher.js +3 -3
- package/lib/server/dispatchers/localUtilsDispatcher.js +37 -1
- package/lib/server/dispatchers/networkDispatchers.js +6 -5
- package/lib/server/dispatchers/pageDispatcher.js +101 -38
- package/lib/server/dispatchers/webSocketRouteDispatcher.js +4 -5
- package/lib/server/disposable.js +41 -0
- package/lib/server/dom.js +44 -26
- package/lib/server/download.js +3 -2
- package/lib/server/electron/electron.js +12 -7
- package/lib/server/firefox/ffBrowser.js +9 -19
- package/lib/server/firefox/ffInput.js +21 -5
- package/lib/server/firefox/ffNetworkManager.js +2 -2
- package/lib/server/firefox/ffPage.js +24 -27
- package/lib/server/frames.js +40 -11
- package/lib/server/har/harRecorder.js +2 -2
- package/lib/server/har/harTracer.js +5 -4
- package/lib/server/input.js +49 -4
- package/lib/server/instrumentation.js +5 -0
- package/lib/server/launchApp.js +0 -1
- package/lib/server/localUtils.js +6 -6
- package/lib/server/network.js +9 -8
- package/lib/server/overlay.js +138 -0
- package/lib/server/page.js +111 -51
- package/lib/server/progress.js +6 -0
- package/lib/server/recorder/recorderApp.js +9 -8
- package/lib/server/recorder.js +76 -40
- package/lib/server/registry/index.js +54 -81
- package/lib/server/registry/nativeDeps.js +1 -0
- package/lib/server/screencast.js +90 -143
- package/lib/server/trace/recorder/snapshotter.js +2 -2
- package/lib/server/trace/recorder/tracing.js +87 -36
- package/lib/server/trace/viewer/traceViewer.js +3 -4
- package/lib/server/usKeyboardLayout.js +7 -0
- package/lib/server/utils/comparators.js +1 -1
- package/lib/server/utils/disposable.js +32 -0
- package/lib/server/utils/eventsHelper.js +3 -1
- package/lib/server/utils/fileUtils.js +16 -2
- package/lib/server/utils/happyEyeballs.js +15 -12
- package/lib/server/utils/hostPlatform.js +0 -15
- package/lib/server/utils/httpServer.js +5 -3
- package/lib/server/utils/network.js +2 -1
- package/lib/server/utils/nodePlatform.js +0 -6
- package/lib/server/utils/processLauncher.js +8 -6
- package/lib/server/utils/zipFile.js +2 -2
- package/lib/server/videoRecorder.js +82 -12
- package/lib/server/webkit/wkBrowser.js +1 -6
- package/lib/server/webkit/wkPage.js +27 -25
- package/lib/server/webkit/wkWorkers.js +2 -1
- package/lib/serverRegistry.js +156 -0
- package/lib/tools/backend/browserBackend.js +79 -0
- package/lib/tools/backend/common.js +63 -0
- package/lib/tools/backend/config.js +41 -0
- package/lib/tools/backend/console.js +66 -0
- package/lib/tools/backend/context.js +296 -0
- package/lib/tools/backend/cookies.js +152 -0
- package/lib/tools/backend/devtools.js +69 -0
- package/lib/tools/backend/dialogs.js +59 -0
- package/lib/tools/backend/evaluate.js +64 -0
- package/lib/tools/backend/files.js +60 -0
- package/lib/tools/backend/form.js +64 -0
- package/lib/tools/backend/keyboard.js +155 -0
- package/lib/tools/backend/logFile.js +95 -0
- package/lib/tools/backend/mouse.js +168 -0
- package/lib/tools/backend/navigate.js +106 -0
- package/lib/tools/backend/network.js +135 -0
- package/lib/tools/backend/pdf.js +48 -0
- package/lib/tools/backend/response.js +305 -0
- package/lib/tools/backend/route.js +140 -0
- package/lib/tools/backend/runCode.js +77 -0
- package/lib/tools/backend/screenshot.js +88 -0
- package/lib/tools/backend/sessionLog.js +74 -0
- package/lib/tools/backend/snapshot.js +208 -0
- package/lib/tools/backend/storage.js +68 -0
- package/lib/tools/backend/tab.js +445 -0
- package/lib/tools/backend/tabs.js +67 -0
- package/lib/tools/backend/tool.js +47 -0
- package/lib/tools/backend/tools.js +102 -0
- package/lib/tools/backend/tracing.js +78 -0
- package/lib/tools/backend/utils.js +83 -0
- package/lib/tools/backend/verify.js +151 -0
- package/lib/tools/backend/video.js +98 -0
- package/lib/tools/backend/wait.js +63 -0
- package/lib/tools/backend/webstorage.js +223 -0
- package/lib/tools/cli-client/cli.js +6 -0
- package/lib/tools/cli-client/help.json +399 -0
- package/lib/tools/cli-client/minimist.js +128 -0
- package/lib/tools/cli-client/program.js +350 -0
- package/lib/tools/cli-client/registry.js +176 -0
- package/lib/tools/cli-client/session.js +289 -0
- package/lib/tools/cli-client/skill/SKILL.md +328 -0
- package/lib/tools/cli-client/skill/references/element-attributes.md +23 -0
- package/lib/tools/cli-client/skill/references/playwright-tests.md +39 -0
- package/lib/tools/cli-client/skill/references/request-mocking.md +87 -0
- package/lib/tools/cli-client/skill/references/running-code.md +231 -0
- package/lib/tools/cli-client/skill/references/session-management.md +169 -0
- package/lib/tools/cli-client/skill/references/storage-state.md +275 -0
- package/lib/tools/cli-client/skill/references/test-generation.md +88 -0
- package/lib/tools/cli-client/skill/references/tracing.md +139 -0
- package/lib/tools/cli-client/skill/references/video-recording.md +143 -0
- package/lib/tools/cli-daemon/command.js +73 -0
- package/lib/tools/cli-daemon/commands.js +956 -0
- package/lib/tools/cli-daemon/daemon.js +157 -0
- package/lib/tools/cli-daemon/helpGenerator.js +177 -0
- package/lib/tools/cli-daemon/program.js +129 -0
- package/lib/tools/dashboard/appIcon.png +0 -0
- package/lib/tools/dashboard/dashboardApp.js +284 -0
- package/lib/tools/dashboard/dashboardController.js +296 -0
- package/lib/tools/exports.js +60 -0
- package/lib/tools/mcp/browserFactory.js +233 -0
- package/lib/tools/mcp/cdpRelay.js +352 -0
- package/lib/tools/mcp/cli-stub.js +7 -0
- package/lib/tools/mcp/config.d.js +16 -0
- package/lib/tools/mcp/config.js +446 -0
- package/lib/tools/mcp/configIni.js +189 -0
- package/lib/tools/mcp/extensionContextFactory.js +55 -0
- package/lib/tools/mcp/index.js +62 -0
- package/lib/tools/mcp/log.js +35 -0
- package/lib/tools/mcp/program.js +107 -0
- package/lib/tools/mcp/protocol.js +28 -0
- package/lib/tools/mcp/watchdog.js +44 -0
- package/lib/tools/trace/SKILL.md +171 -0
- package/lib/{server/trace/viewer/traceParser.js → tools/trace/installSkill.js} +15 -39
- package/lib/tools/trace/traceActions.js +142 -0
- package/lib/tools/trace/traceAttachments.js +69 -0
- package/lib/tools/trace/traceCli.js +87 -0
- package/lib/tools/trace/traceConsole.js +97 -0
- package/lib/tools/trace/traceErrors.js +55 -0
- package/lib/tools/trace/traceOpen.js +69 -0
- package/lib/tools/trace/traceParser.js +96 -0
- package/lib/tools/trace/traceRequests.js +182 -0
- package/lib/tools/trace/traceScreenshot.js +68 -0
- package/lib/tools/trace/traceSnapshot.js +149 -0
- package/lib/tools/trace/traceUtils.js +153 -0
- package/lib/tools/utils/connect.js +32 -0
- package/lib/tools/utils/mcp/http.js +152 -0
- package/lib/tools/utils/mcp/server.js +230 -0
- package/lib/tools/utils/mcp/tool.js +47 -0
- package/lib/tools/utils/socketConnection.js +108 -0
- package/lib/utils/isomorphic/formatUtils.js +64 -0
- package/lib/utils/isomorphic/jsonSchema.js +89 -0
- package/lib/utils/isomorphic/mimeType.js +7 -2
- package/lib/utils/isomorphic/protocolFormatter.js +2 -2
- package/lib/utils/isomorphic/protocolMetainfo.js +127 -106
- package/lib/utils/isomorphic/stringUtils.js +3 -3
- package/lib/utils/isomorphic/timeoutRunner.js +3 -3
- package/lib/utils/isomorphic/trace/snapshotRenderer.js +35 -42
- package/lib/utils/isomorphic/trace/traceLoader.js +15 -14
- package/lib/utils/isomorphic/trace/traceModel.js +3 -2
- package/lib/utils/isomorphic/trace/traceModernizer.js +1 -0
- package/lib/utils/isomorphic/urlMatch.js +54 -1
- package/lib/utils/isomorphic/utilityScriptSerializers.js +11 -0
- package/lib/utils.js +6 -2
- package/lib/utilsBundle.js +3 -21
- package/lib/utilsBundleImpl/index.js +132 -133
- package/lib/vite/dashboard/assets/index-BAOybkp8.js +50 -0
- package/lib/vite/dashboard/assets/index-CZAYOG76.css +1 -0
- package/lib/vite/dashboard/index.html +28 -0
- package/lib/vite/htmlReport/index.html +2 -70
- package/lib/vite/htmlReport/report.css +1 -0
- package/lib/vite/htmlReport/report.js +72 -0
- package/lib/vite/recorder/assets/{codeMirrorModule-DadYNm1I.js → codeMirrorModule-C8KMvO9L.js} +20 -20
- package/lib/vite/recorder/assets/index-CqAYX1I3.js +193 -0
- package/lib/vite/recorder/index.html +1 -1
- package/lib/vite/traceViewer/assets/{codeMirrorModule-a5XoALAZ.js → codeMirrorModule-DS0FLvoc.js} +20 -20
- package/lib/vite/traceViewer/assets/defaultSettingsView-GTWI-W_B.js +262 -0
- package/lib/vite/traceViewer/defaultSettingsView.B4dS75f0.css +1 -0
- package/lib/vite/traceViewer/{index.BVu7tZDe.css → index.CzXZzn5A.css} +1 -1
- package/lib/vite/traceViewer/{index.BDwrLSGN.js → index.Dtstcb7U.js} +1 -1
- package/lib/vite/traceViewer/index.html +4 -4
- package/lib/vite/traceViewer/sw.bundle.js +4 -4
- package/lib/vite/traceViewer/uiMode.Vipi55dB.js +6 -0
- package/lib/vite/traceViewer/uiMode.html +3 -3
- package/lib/zipBundleImpl.js +2 -2
- package/lib/zodBundle.js +39 -0
- package/lib/zodBundleImpl.js +40 -0
- package/package.json +6 -1
- package/types/protocol.d.ts +947 -51
- package/types/types.d.ts +854 -74
- package/lib/client/pageAgent.js +0 -64
- package/lib/mcpBundleImpl/index.js +0 -147
- package/lib/server/agent/actionRunner.js +0 -335
- package/lib/server/agent/actions.js +0 -128
- package/lib/server/agent/codegen.js +0 -111
- package/lib/server/agent/context.js +0 -150
- package/lib/server/agent/expectTools.js +0 -156
- package/lib/server/agent/pageAgent.js +0 -204
- package/lib/server/agent/performTools.js +0 -262
- package/lib/server/agent/tool.js +0 -109
- package/lib/server/dispatchers/pageAgentDispatcher.js +0 -96
- package/lib/vite/recorder/assets/index-BhTWtUlo.js +0 -193
- package/lib/vite/traceViewer/assets/defaultSettingsView-CJSZINFr.js +0 -266
- package/lib/vite/traceViewer/defaultSettingsView.7ch9cixO.css +0 -1
- package/lib/vite/traceViewer/uiMode.CQJ9SCIQ.js +0 -5
- /package/lib/{server/utils → utils/isomorphic}/imageUtils.js +0 -0
- /package/lib/utils/isomorphic/{traceUtils.js → trace/traceUtils.js} +0 -0
package/types/protocol.d.ts
CHANGED
|
@@ -695,7 +695,7 @@ percentage [0 - 100] for scroll driven animations
|
|
|
695
695
|
export interface AffectedFrame {
|
|
696
696
|
frameId: Page.FrameId;
|
|
697
697
|
}
|
|
698
|
-
export type CookieExclusionReason = "ExcludeSameSiteUnspecifiedTreatedAsLax"|"ExcludeSameSiteNoneInsecure"|"ExcludeSameSiteLax"|"ExcludeSameSiteStrict"|"
|
|
698
|
+
export type CookieExclusionReason = "ExcludeSameSiteUnspecifiedTreatedAsLax"|"ExcludeSameSiteNoneInsecure"|"ExcludeSameSiteLax"|"ExcludeSameSiteStrict"|"ExcludeDomainNonASCII"|"ExcludeThirdPartyCookieBlockedInFirstPartySet"|"ExcludeThirdPartyPhaseout"|"ExcludePortMismatch"|"ExcludeSchemeMismatch";
|
|
699
699
|
export type CookieWarningReason = "WarnSameSiteUnspecifiedCrossSiteContext"|"WarnSameSiteNoneInsecure"|"WarnSameSiteUnspecifiedLaxAllowUnsafe"|"WarnSameSiteStrictLaxDowngradeStrict"|"WarnSameSiteStrictCrossDowngradeStrict"|"WarnSameSiteStrictCrossDowngradeLax"|"WarnSameSiteLaxCrossDowngradeStrict"|"WarnSameSiteLaxCrossDowngradeLax"|"WarnAttributeValueExceedsMaxSize"|"WarnDomainNonASCII"|"WarnThirdPartyPhaseout"|"WarnCrossSiteRedirectDowngradeChangesInclusion"|"WarnDeprecationTrialMetadata"|"WarnThirdPartyCookieHeuristic";
|
|
700
700
|
export type CookieOperation = "SetCookie"|"ReadCookie";
|
|
701
701
|
/**
|
|
@@ -741,6 +741,14 @@ may be used by the front-end as additional context.
|
|
|
741
741
|
*/
|
|
742
742
|
insight?: CookieIssueInsight;
|
|
743
743
|
}
|
|
744
|
+
export type PerformanceIssueType = "DocumentCookie";
|
|
745
|
+
/**
|
|
746
|
+
* Details for a performance issue.
|
|
747
|
+
*/
|
|
748
|
+
export interface PerformanceIssueDetails {
|
|
749
|
+
performanceIssueType: PerformanceIssueType;
|
|
750
|
+
sourceCodeLocation?: SourceCodeLocation;
|
|
751
|
+
}
|
|
744
752
|
export type MixedContentResolutionStatus = "MixedContentBlocked"|"MixedContentAutomaticallyUpgraded"|"MixedContentWarning";
|
|
745
753
|
export type MixedContentResourceType = "AttributionSrc"|"Audio"|"Beacon"|"CSPReport"|"Download"|"EventSource"|"Favicon"|"Font"|"Form"|"Frame"|"Image"|"Import"|"JSON"|"Manifest"|"Ping"|"PluginData"|"PluginResource"|"Prefetch"|"Resource"|"Script"|"ServiceWorker"|"SharedWorker"|"SpeculationRules"|"Stylesheet"|"Track"|"Video"|"Worker"|"XMLHttpRequest"|"XSLT";
|
|
746
754
|
export interface MixedContentIssueDetails {
|
|
@@ -837,15 +845,6 @@ transferred to a context that is not cross-origin isolated.
|
|
|
837
845
|
isWarning: boolean;
|
|
838
846
|
type: SharedArrayBufferIssueType;
|
|
839
847
|
}
|
|
840
|
-
export interface LowTextContrastIssueDetails {
|
|
841
|
-
violatingNodeId: DOM.BackendNodeId;
|
|
842
|
-
violatingNodeSelector: string;
|
|
843
|
-
contrastRatio: number;
|
|
844
|
-
thresholdAA: number;
|
|
845
|
-
thresholdAAA: number;
|
|
846
|
-
fontSize: string;
|
|
847
|
-
fontWeight: string;
|
|
848
|
-
}
|
|
849
848
|
/**
|
|
850
849
|
* Details for a CORS related issue, e.g. a warning or error related to
|
|
851
850
|
CORS RFC1918 enforcement.
|
|
@@ -863,6 +862,7 @@ CORS RFC1918 enforcement.
|
|
|
863
862
|
export type SharedDictionaryError = "UseErrorCrossOriginNoCorsRequest"|"UseErrorDictionaryLoadFailure"|"UseErrorMatchingDictionaryNotUsed"|"UseErrorUnexpectedContentDictionaryHeader"|"WriteErrorCossOriginNoCorsRequest"|"WriteErrorDisallowedBySettings"|"WriteErrorExpiredResponse"|"WriteErrorFeatureDisabled"|"WriteErrorInsufficientResources"|"WriteErrorInvalidMatchField"|"WriteErrorInvalidStructuredHeader"|"WriteErrorInvalidTTLField"|"WriteErrorNavigationRequest"|"WriteErrorNoMatchField"|"WriteErrorNonIntegerTTLField"|"WriteErrorNonListMatchDestField"|"WriteErrorNonSecureContext"|"WriteErrorNonStringIdField"|"WriteErrorNonStringInMatchDestList"|"WriteErrorNonStringMatchField"|"WriteErrorNonTokenTypeField"|"WriteErrorRequestAborted"|"WriteErrorShuttingDown"|"WriteErrorTooLongIdField"|"WriteErrorUnsupportedType";
|
|
864
863
|
export type SRIMessageSignatureError = "MissingSignatureHeader"|"MissingSignatureInputHeader"|"InvalidSignatureHeader"|"InvalidSignatureInputHeader"|"SignatureHeaderValueIsNotByteSequence"|"SignatureHeaderValueIsParameterized"|"SignatureHeaderValueIsIncorrectLength"|"SignatureInputHeaderMissingLabel"|"SignatureInputHeaderValueNotInnerList"|"SignatureInputHeaderValueMissingComponents"|"SignatureInputHeaderInvalidComponentType"|"SignatureInputHeaderInvalidComponentName"|"SignatureInputHeaderInvalidHeaderComponentParameter"|"SignatureInputHeaderInvalidDerivedComponentParameter"|"SignatureInputHeaderKeyIdLength"|"SignatureInputHeaderInvalidParameter"|"SignatureInputHeaderMissingRequiredParameters"|"ValidationFailedSignatureExpired"|"ValidationFailedInvalidLength"|"ValidationFailedSignatureMismatch"|"ValidationFailedIntegrityMismatch";
|
|
865
864
|
export type UnencodedDigestError = "MalformedDictionary"|"UnknownAlgorithm"|"IncorrectDigestType"|"IncorrectDigestLength";
|
|
865
|
+
export type ConnectionAllowlistError = "InvalidHeader"|"MoreThanOneList"|"ItemNotInnerList"|"InvalidAllowlistItemType"|"ReportingEndpointNotToken"|"InvalidUrlPattern";
|
|
866
866
|
/**
|
|
867
867
|
* Details for issues around "Attribution Reporting API" usage.
|
|
868
868
|
Explainer: https://github.com/WICG/attribution-reporting-api
|
|
@@ -906,7 +906,11 @@ instead of "limited-quirks".
|
|
|
906
906
|
error: UnencodedDigestError;
|
|
907
907
|
request: AffectedRequest;
|
|
908
908
|
}
|
|
909
|
-
export
|
|
909
|
+
export interface ConnectionAllowlistIssueDetails {
|
|
910
|
+
error: ConnectionAllowlistError;
|
|
911
|
+
request: AffectedRequest;
|
|
912
|
+
}
|
|
913
|
+
export type GenericIssueErrorType = "FormLabelForNameError"|"FormDuplicateIdForInputError"|"FormInputWithNoLabelError"|"FormAutocompleteAttributeEmptyError"|"FormEmptyIdAndNameAttributesForInputError"|"FormAriaLabelledByToNonExistingIdError"|"FormInputAssignedAutocompleteValueToIdOrNameAttributeError"|"FormLabelHasNeitherForNorNestedInputError"|"FormLabelForMatchesNonExistingIdError"|"FormInputHasWrongButWellIntendedAutocompleteValueError"|"ResponseWasBlockedByORB"|"NavigationEntryMarkedSkippable"|"AutofillAndManualTextPolicyControlledFeaturesInfo"|"AutofillPolicyControlledFeatureInfo"|"ManualTextPolicyControlledFeatureInfo"|"FormModelContextParameterMissingTitleAndDescription";
|
|
910
914
|
/**
|
|
911
915
|
* Depending on the concrete errorType, different properties are set.
|
|
912
916
|
*/
|
|
@@ -965,7 +969,7 @@ Should be updated alongside RequestIdTokenStatus in
|
|
|
965
969
|
third_party/blink/public/mojom/devtools/inspector_issue.mojom to include
|
|
966
970
|
all cases except for success.
|
|
967
971
|
*/
|
|
968
|
-
export type FederatedAuthRequestIssueReason = "ShouldEmbargo"|"TooManyRequests"|"WellKnownHttpNotFound"|"WellKnownNoResponse"|"WellKnownInvalidResponse"|"WellKnownListEmpty"|"WellKnownInvalidContentType"|"ConfigNotInWellKnown"|"WellKnownTooBig"|"ConfigHttpNotFound"|"ConfigNoResponse"|"ConfigInvalidResponse"|"ConfigInvalidContentType"|"
|
|
972
|
+
export type FederatedAuthRequestIssueReason = "ShouldEmbargo"|"TooManyRequests"|"WellKnownHttpNotFound"|"WellKnownNoResponse"|"WellKnownInvalidResponse"|"WellKnownListEmpty"|"WellKnownInvalidContentType"|"ConfigNotInWellKnown"|"WellKnownTooBig"|"ConfigHttpNotFound"|"ConfigNoResponse"|"ConfigInvalidResponse"|"ConfigInvalidContentType"|"IdpNotPotentiallyTrustworthy"|"DisabledInSettings"|"DisabledInFlags"|"ErrorFetchingSignin"|"InvalidSigninResponse"|"AccountsHttpNotFound"|"AccountsNoResponse"|"AccountsInvalidResponse"|"AccountsListEmpty"|"AccountsInvalidContentType"|"IdTokenHttpNotFound"|"IdTokenNoResponse"|"IdTokenInvalidResponse"|"IdTokenIdpErrorResponse"|"IdTokenCrossSiteIdpErrorResponse"|"IdTokenInvalidRequest"|"IdTokenInvalidContentType"|"ErrorIdToken"|"Canceled"|"RpPageNotVisible"|"SilentMediationFailure"|"NotSignedInWithIdp"|"MissingTransientUserActivation"|"ReplacedByActiveMode"|"RelyingPartyOriginIsOpaque"|"TypeNotMatching"|"UiDismissedNoEmbargo"|"CorsError"|"SuppressedBySegmentationPlatform";
|
|
969
973
|
export interface FederatedAuthUserInfoRequestIssueDetails {
|
|
970
974
|
federatedAuthUserInfoRequestIssueReason: FederatedAuthUserInfoRequestIssueReason;
|
|
971
975
|
}
|
|
@@ -1103,12 +1107,66 @@ Used for messages that reference a specific permission name
|
|
|
1103
1107
|
*/
|
|
1104
1108
|
disableReason?: string;
|
|
1105
1109
|
}
|
|
1110
|
+
/**
|
|
1111
|
+
* Metadata about the ad script that was on the stack that caused the current
|
|
1112
|
+
script in the `AdAncestry` to be considered ad related.
|
|
1113
|
+
*/
|
|
1114
|
+
export interface AdScriptIdentifier {
|
|
1115
|
+
/**
|
|
1116
|
+
* The script's v8 identifier.
|
|
1117
|
+
*/
|
|
1118
|
+
scriptId: Runtime.ScriptId;
|
|
1119
|
+
/**
|
|
1120
|
+
* v8's debugging id for the v8::Context.
|
|
1121
|
+
*/
|
|
1122
|
+
debuggerId: Runtime.UniqueDebuggerId;
|
|
1123
|
+
/**
|
|
1124
|
+
* The script's url (or generated name based on id if inline script).
|
|
1125
|
+
*/
|
|
1126
|
+
name: string;
|
|
1127
|
+
}
|
|
1128
|
+
/**
|
|
1129
|
+
* Providence about how an ad script was determined to be such. It is an ad
|
|
1130
|
+
because its url matched a filterlist rule, or because some other ad script
|
|
1131
|
+
was on the stack when this script was loaded.
|
|
1132
|
+
*/
|
|
1133
|
+
export interface AdAncestry {
|
|
1134
|
+
/**
|
|
1135
|
+
* The ad-script in the stack when the offending script was loaded. This is
|
|
1136
|
+
recursive down to the root script that was tagged due to the filterlist
|
|
1137
|
+
rule.
|
|
1138
|
+
*/
|
|
1139
|
+
adAncestryChain: AdScriptIdentifier[];
|
|
1140
|
+
/**
|
|
1141
|
+
* The filterlist rule that caused the root (last) script in
|
|
1142
|
+
`adAncestry` to be ad-tagged.
|
|
1143
|
+
*/
|
|
1144
|
+
rootScriptFilterlistRule?: string;
|
|
1145
|
+
}
|
|
1146
|
+
/**
|
|
1147
|
+
* The issue warns about blocked calls to privacy sensitive APIs via the
|
|
1148
|
+
Selective Permissions Intervention.
|
|
1149
|
+
*/
|
|
1150
|
+
export interface SelectivePermissionsInterventionIssueDetails {
|
|
1151
|
+
/**
|
|
1152
|
+
* Which API was intervened on.
|
|
1153
|
+
*/
|
|
1154
|
+
apiName: string;
|
|
1155
|
+
/**
|
|
1156
|
+
* Why the ad script using the API is considered an ad.
|
|
1157
|
+
*/
|
|
1158
|
+
adAncestry: AdAncestry;
|
|
1159
|
+
/**
|
|
1160
|
+
* The stack trace at the time of the intervention.
|
|
1161
|
+
*/
|
|
1162
|
+
stackTrace?: Runtime.StackTrace;
|
|
1163
|
+
}
|
|
1106
1164
|
/**
|
|
1107
1165
|
* A unique identifier for the type of issue. Each type may use one of the
|
|
1108
1166
|
optional fields in InspectorIssueDetails to convey more specific
|
|
1109
1167
|
information about the kind of issue.
|
|
1110
1168
|
*/
|
|
1111
|
-
export type InspectorIssueCode = "CookieIssue"|"MixedContentIssue"|"BlockedByResponseIssue"|"HeavyAdIssue"|"ContentSecurityPolicyIssue"|"SharedArrayBufferIssue"|"
|
|
1169
|
+
export type InspectorIssueCode = "CookieIssue"|"MixedContentIssue"|"BlockedByResponseIssue"|"HeavyAdIssue"|"ContentSecurityPolicyIssue"|"SharedArrayBufferIssue"|"CorsIssue"|"AttributionReportingIssue"|"QuirksModeIssue"|"PartitioningBlobURLIssue"|"NavigatorUserAgentIssue"|"GenericIssue"|"DeprecationIssue"|"ClientHintIssue"|"FederatedAuthRequestIssue"|"BounceTrackingIssue"|"CookieDeprecationMetadataIssue"|"StylesheetLoadingIssue"|"FederatedAuthUserInfoRequestIssue"|"PropertyRuleIssue"|"SharedDictionaryIssue"|"ElementAccessibilityIssue"|"SRIMessageSignatureIssue"|"UnencodedDigestIssue"|"ConnectionAllowlistIssue"|"UserReidentificationIssue"|"PermissionElementIssue"|"PerformanceIssue"|"SelectivePermissionsInterventionIssue";
|
|
1112
1170
|
/**
|
|
1113
1171
|
* This struct holds a list of optional fields with additional information
|
|
1114
1172
|
specific to the kind of issue. When adding a new issue code, please also
|
|
@@ -1121,7 +1179,6 @@ add a new optional field to this type.
|
|
|
1121
1179
|
heavyAdIssueDetails?: HeavyAdIssueDetails;
|
|
1122
1180
|
contentSecurityPolicyIssueDetails?: ContentSecurityPolicyIssueDetails;
|
|
1123
1181
|
sharedArrayBufferIssueDetails?: SharedArrayBufferIssueDetails;
|
|
1124
|
-
lowTextContrastIssueDetails?: LowTextContrastIssueDetails;
|
|
1125
1182
|
corsIssueDetails?: CorsIssueDetails;
|
|
1126
1183
|
attributionReportingIssueDetails?: AttributionReportingIssueDetails;
|
|
1127
1184
|
quirksModeIssueDetails?: QuirksModeIssueDetails;
|
|
@@ -1140,8 +1197,11 @@ add a new optional field to this type.
|
|
|
1140
1197
|
elementAccessibilityIssueDetails?: ElementAccessibilityIssueDetails;
|
|
1141
1198
|
sriMessageSignatureIssueDetails?: SRIMessageSignatureIssueDetails;
|
|
1142
1199
|
unencodedDigestIssueDetails?: UnencodedDigestIssueDetails;
|
|
1200
|
+
connectionAllowlistIssueDetails?: ConnectionAllowlistIssueDetails;
|
|
1143
1201
|
userReidentificationIssueDetails?: UserReidentificationIssueDetails;
|
|
1144
1202
|
permissionElementIssueDetails?: PermissionElementIssueDetails;
|
|
1203
|
+
performanceIssueDetails?: PerformanceIssueDetails;
|
|
1204
|
+
selectivePermissionsInterventionIssueDetails?: SelectivePermissionsInterventionIssueDetails;
|
|
1145
1205
|
}
|
|
1146
1206
|
/**
|
|
1147
1207
|
* A unique id for a DevTools inspector issue. Allows other entities (e.g.
|
|
@@ -1216,18 +1276,6 @@ applies to images.
|
|
|
1216
1276
|
}
|
|
1217
1277
|
export type enableReturnValue = {
|
|
1218
1278
|
}
|
|
1219
|
-
/**
|
|
1220
|
-
* Runs the contrast check for the target page. Found issues are reported
|
|
1221
|
-
using Audits.issueAdded event.
|
|
1222
|
-
*/
|
|
1223
|
-
export type checkContrastParameters = {
|
|
1224
|
-
/**
|
|
1225
|
-
* Whether to report WCAG AAA level issues. Default is false.
|
|
1226
|
-
*/
|
|
1227
|
-
reportAAA?: boolean;
|
|
1228
|
-
}
|
|
1229
|
-
export type checkContrastReturnValue = {
|
|
1230
|
-
}
|
|
1231
1279
|
/**
|
|
1232
1280
|
* Runs the form issues check for the target page. Found issues are reported
|
|
1233
1281
|
using Audits.issueAdded event.
|
|
@@ -2565,12 +2613,17 @@ The array enumerates @scope at-rules starting with the innermost one, going outw
|
|
|
2565
2613
|
The array enumerates @starting-style at-rules starting with the innermost one, going outwards.
|
|
2566
2614
|
*/
|
|
2567
2615
|
startingStyles?: CSSStartingStyle[];
|
|
2616
|
+
/**
|
|
2617
|
+
* @navigation CSS at-rule array.
|
|
2618
|
+
The array enumerates @navigation at-rules starting with the innermost one, going outwards.
|
|
2619
|
+
*/
|
|
2620
|
+
navigations?: CSSNavigation[];
|
|
2568
2621
|
}
|
|
2569
2622
|
/**
|
|
2570
2623
|
* Enum indicating the type of a CSS rule, used to represent the order of a style rule's ancestors.
|
|
2571
2624
|
This list only contains rule types that are collected during the ancestor rule collection.
|
|
2572
2625
|
*/
|
|
2573
|
-
export type CSSRuleType = "MediaRule"|"SupportsRule"|"ContainerRule"|"LayerRule"|"ScopeRule"|"StyleRule"|"StartingStyleRule";
|
|
2626
|
+
export type CSSRuleType = "MediaRule"|"SupportsRule"|"ContainerRule"|"LayerRule"|"ScopeRule"|"StyleRule"|"StartingStyleRule"|"NavigationRule";
|
|
2574
2627
|
/**
|
|
2575
2628
|
* CSS coverage information.
|
|
2576
2629
|
*/
|
|
@@ -2837,6 +2890,28 @@ available).
|
|
|
2837
2890
|
active: boolean;
|
|
2838
2891
|
/**
|
|
2839
2892
|
* The associated rule header range in the enclosing stylesheet (if
|
|
2893
|
+
available).
|
|
2894
|
+
*/
|
|
2895
|
+
range?: SourceRange;
|
|
2896
|
+
/**
|
|
2897
|
+
* Identifier of the stylesheet containing this object (if exists).
|
|
2898
|
+
*/
|
|
2899
|
+
styleSheetId?: DOM.StyleSheetId;
|
|
2900
|
+
}
|
|
2901
|
+
/**
|
|
2902
|
+
* CSS Navigation at-rule descriptor.
|
|
2903
|
+
*/
|
|
2904
|
+
export interface CSSNavigation {
|
|
2905
|
+
/**
|
|
2906
|
+
* Navigation rule text.
|
|
2907
|
+
*/
|
|
2908
|
+
text: string;
|
|
2909
|
+
/**
|
|
2910
|
+
* Whether the navigation condition is satisfied.
|
|
2911
|
+
*/
|
|
2912
|
+
active?: boolean;
|
|
2913
|
+
/**
|
|
2914
|
+
* The associated rule header range in the enclosing stylesheet (if
|
|
2840
2915
|
available).
|
|
2841
2916
|
*/
|
|
2842
2917
|
range?: SourceRange;
|
|
@@ -3150,6 +3225,10 @@ stylesheet rules) this rule came from.
|
|
|
3150
3225
|
* @supports CSS at-rule condition. Only one type of condition should be set.
|
|
3151
3226
|
*/
|
|
3152
3227
|
supports?: CSSSupports;
|
|
3228
|
+
/**
|
|
3229
|
+
* @navigation condition. Only one type of condition should be set.
|
|
3230
|
+
*/
|
|
3231
|
+
navigation?: CSSNavigation;
|
|
3153
3232
|
/**
|
|
3154
3233
|
* Block body.
|
|
3155
3234
|
*/
|
|
@@ -3446,6 +3525,8 @@ they were property's declaration. If a value cannot be parsed according
|
|
|
3446
3525
|
to the provided property syntax, the value is parsed using combined
|
|
3447
3526
|
syntax as if null `propertyName` was provided. If the value cannot be
|
|
3448
3527
|
resolved even then, return the provided value without any changes.
|
|
3528
|
+
Note: this function currently does not resolve CSS random() function,
|
|
3529
|
+
it returns unmodified random() function parts.`
|
|
3449
3530
|
*/
|
|
3450
3531
|
export type resolveValuesParameters = {
|
|
3451
3532
|
/**
|
|
@@ -3769,6 +3850,20 @@ property
|
|
|
3769
3850
|
*/
|
|
3770
3851
|
supports: CSSSupports;
|
|
3771
3852
|
}
|
|
3853
|
+
/**
|
|
3854
|
+
* Modifies the expression of a navigation at-rule.
|
|
3855
|
+
*/
|
|
3856
|
+
export type setNavigationTextParameters = {
|
|
3857
|
+
styleSheetId: DOM.StyleSheetId;
|
|
3858
|
+
range: SourceRange;
|
|
3859
|
+
text: string;
|
|
3860
|
+
}
|
|
3861
|
+
export type setNavigationTextReturnValue = {
|
|
3862
|
+
/**
|
|
3863
|
+
* The resulting CSS Navigation rule after modification.
|
|
3864
|
+
*/
|
|
3865
|
+
navigation: CSSNavigation;
|
|
3866
|
+
}
|
|
3772
3867
|
/**
|
|
3773
3868
|
* Modifies the expression of a scope at-rule.
|
|
3774
3869
|
*/
|
|
@@ -4339,6 +4434,7 @@ The property is always undefined now.
|
|
|
4339
4434
|
isScrollable?: boolean;
|
|
4340
4435
|
affectedByStartingStyles?: boolean;
|
|
4341
4436
|
adoptedStyleSheets?: StyleSheetId[];
|
|
4437
|
+
isAdRelated?: boolean;
|
|
4342
4438
|
}
|
|
4343
4439
|
/**
|
|
4344
4440
|
* A structure to hold the top-level node of a detached tree and an array of its retained descendants.
|
|
@@ -4609,6 +4705,19 @@ The property is always undefined now.
|
|
|
4609
4705
|
*/
|
|
4610
4706
|
isScrollable: boolean;
|
|
4611
4707
|
}
|
|
4708
|
+
/**
|
|
4709
|
+
* Fired when a node's ad related state changes.
|
|
4710
|
+
*/
|
|
4711
|
+
export type adRelatedStateUpdatedPayload = {
|
|
4712
|
+
/**
|
|
4713
|
+
* The id of the node.
|
|
4714
|
+
*/
|
|
4715
|
+
nodeId: DOM.NodeId;
|
|
4716
|
+
/**
|
|
4717
|
+
* If the node is ad related.
|
|
4718
|
+
*/
|
|
4719
|
+
isAdRelated: boolean;
|
|
4720
|
+
}
|
|
4612
4721
|
/**
|
|
4613
4722
|
* Fired when a node's starting styles changes.
|
|
4614
4723
|
*/
|
|
@@ -6780,12 +6889,27 @@ see https://w3c.github.io/window-management/#screendetailed.
|
|
|
6780
6889
|
/**
|
|
6781
6890
|
* Enum of image types that can be disabled.
|
|
6782
6891
|
*/
|
|
6783
|
-
export type DisabledImageType = "avif"|"webp";
|
|
6892
|
+
export type DisabledImageType = "avif"|"jxl"|"webp";
|
|
6784
6893
|
|
|
6785
6894
|
/**
|
|
6786
6895
|
* Notification sent after the virtual time budget for the current VirtualTimePolicy has run out.
|
|
6787
6896
|
*/
|
|
6788
6897
|
export type virtualTimeBudgetExpiredPayload = void;
|
|
6898
|
+
/**
|
|
6899
|
+
* Fired when a page calls screen.orientation.lock() or screen.orientation.unlock()
|
|
6900
|
+
while device emulation is enabled. This allows the DevTools frontend to update the
|
|
6901
|
+
emulated device orientation accordingly.
|
|
6902
|
+
*/
|
|
6903
|
+
export type screenOrientationLockChangedPayload = {
|
|
6904
|
+
/**
|
|
6905
|
+
* Whether the screen orientation is currently locked.
|
|
6906
|
+
*/
|
|
6907
|
+
locked: boolean;
|
|
6908
|
+
/**
|
|
6909
|
+
* The orientation lock type requested by the page. Only set when locked is true.
|
|
6910
|
+
*/
|
|
6911
|
+
orientation?: ScreenOrientation;
|
|
6912
|
+
}
|
|
6789
6913
|
|
|
6790
6914
|
/**
|
|
6791
6915
|
* Tells whether emulation is supported.
|
|
@@ -6943,6 +7067,18 @@ to continuous.
|
|
|
6943
7067
|
Deprecated, use Emulation.setDevicePostureOverride.
|
|
6944
7068
|
*/
|
|
6945
7069
|
devicePosture?: DevicePosture;
|
|
7070
|
+
/**
|
|
7071
|
+
* Scrollbar type. Default: `default`.
|
|
7072
|
+
*/
|
|
7073
|
+
scrollbarType?: "overlay"|"default";
|
|
7074
|
+
/**
|
|
7075
|
+
* If set to true, enables screen orientation lock emulation, which
|
|
7076
|
+
intercepts screen.orientation.lock() calls from the page and reports
|
|
7077
|
+
orientation changes via screenOrientationLockChanged events. This is
|
|
7078
|
+
useful for emulating mobile device orientation lock behavior in
|
|
7079
|
+
responsive design mode.
|
|
7080
|
+
*/
|
|
7081
|
+
screenOrientationLockEmulation?: boolean;
|
|
6946
7082
|
}
|
|
6947
7083
|
export type setDeviceMetricsOverrideReturnValue = {
|
|
6948
7084
|
}
|
|
@@ -7365,7 +7501,8 @@ of size 100lvh.
|
|
|
7365
7501
|
export type setSmallViewportHeightDifferenceOverrideReturnValue = {
|
|
7366
7502
|
}
|
|
7367
7503
|
/**
|
|
7368
|
-
* Returns device's screen configuration.
|
|
7504
|
+
* Returns device's screen configuration. In headful mode, the physical screens configuration is returned,
|
|
7505
|
+
whereas in headless mode, a virtual headless screen configuration is provided instead.
|
|
7369
7506
|
*/
|
|
7370
7507
|
export type getScreenInfosParameters = {
|
|
7371
7508
|
}
|
|
@@ -7420,6 +7557,58 @@ of size 100lvh.
|
|
|
7420
7557
|
export type addScreenReturnValue = {
|
|
7421
7558
|
screenInfo: ScreenInfo;
|
|
7422
7559
|
}
|
|
7560
|
+
/**
|
|
7561
|
+
* Updates specified screen parameters. Only supported in headless mode.
|
|
7562
|
+
*/
|
|
7563
|
+
export type updateScreenParameters = {
|
|
7564
|
+
/**
|
|
7565
|
+
* Target screen identifier.
|
|
7566
|
+
*/
|
|
7567
|
+
screenId: ScreenId;
|
|
7568
|
+
/**
|
|
7569
|
+
* Offset of the left edge of the screen in pixels.
|
|
7570
|
+
*/
|
|
7571
|
+
left?: number;
|
|
7572
|
+
/**
|
|
7573
|
+
* Offset of the top edge of the screen in pixels.
|
|
7574
|
+
*/
|
|
7575
|
+
top?: number;
|
|
7576
|
+
/**
|
|
7577
|
+
* The width of the screen in pixels.
|
|
7578
|
+
*/
|
|
7579
|
+
width?: number;
|
|
7580
|
+
/**
|
|
7581
|
+
* The height of the screen in pixels.
|
|
7582
|
+
*/
|
|
7583
|
+
height?: number;
|
|
7584
|
+
/**
|
|
7585
|
+
* Specifies the screen's work area.
|
|
7586
|
+
*/
|
|
7587
|
+
workAreaInsets?: WorkAreaInsets;
|
|
7588
|
+
/**
|
|
7589
|
+
* Specifies the screen's device pixel ratio.
|
|
7590
|
+
*/
|
|
7591
|
+
devicePixelRatio?: number;
|
|
7592
|
+
/**
|
|
7593
|
+
* Specifies the screen's rotation angle. Available values are 0, 90, 180 and 270.
|
|
7594
|
+
*/
|
|
7595
|
+
rotation?: number;
|
|
7596
|
+
/**
|
|
7597
|
+
* Specifies the screen's color depth in bits.
|
|
7598
|
+
*/
|
|
7599
|
+
colorDepth?: number;
|
|
7600
|
+
/**
|
|
7601
|
+
* Specifies the descriptive label for the screen.
|
|
7602
|
+
*/
|
|
7603
|
+
label?: string;
|
|
7604
|
+
/**
|
|
7605
|
+
* Indicates whether the screen is internal to the device or external, attached to the device. Default is false.
|
|
7606
|
+
*/
|
|
7607
|
+
isInternal?: boolean;
|
|
7608
|
+
}
|
|
7609
|
+
export type updateScreenReturnValue = {
|
|
7610
|
+
screenInfo: ScreenInfo;
|
|
7611
|
+
}
|
|
7423
7612
|
/**
|
|
7424
7613
|
* Remove screen from the device. Only supported in headless mode.
|
|
7425
7614
|
*/
|
|
@@ -7428,6 +7617,17 @@ of size 100lvh.
|
|
|
7428
7617
|
}
|
|
7429
7618
|
export type removeScreenReturnValue = {
|
|
7430
7619
|
}
|
|
7620
|
+
/**
|
|
7621
|
+
* Set primary screen. Only supported in headless mode.
|
|
7622
|
+
Note that this changes the coordinate system origin to the top-left
|
|
7623
|
+
of the new primary screen, updating the bounds and work areas
|
|
7624
|
+
of all existing screens accordingly.
|
|
7625
|
+
*/
|
|
7626
|
+
export type setPrimaryScreenParameters = {
|
|
7627
|
+
screenId: ScreenId;
|
|
7628
|
+
}
|
|
7629
|
+
export type setPrimaryScreenReturnValue = {
|
|
7630
|
+
}
|
|
7431
7631
|
}
|
|
7432
7632
|
|
|
7433
7633
|
/**
|
|
@@ -7477,8 +7677,50 @@ reported through Debugger domain, similarly to regular breakpoints being hit.
|
|
|
7477
7677
|
* Storage areas.
|
|
7478
7678
|
*/
|
|
7479
7679
|
export type StorageArea = "session"|"local"|"sync"|"managed";
|
|
7680
|
+
/**
|
|
7681
|
+
* Detailed information about an extension.
|
|
7682
|
+
*/
|
|
7683
|
+
export interface ExtensionInfo {
|
|
7684
|
+
/**
|
|
7685
|
+
* Extension id.
|
|
7686
|
+
*/
|
|
7687
|
+
id: string;
|
|
7688
|
+
/**
|
|
7689
|
+
* Extension name.
|
|
7690
|
+
*/
|
|
7691
|
+
name: string;
|
|
7692
|
+
/**
|
|
7693
|
+
* Extension version.
|
|
7694
|
+
*/
|
|
7695
|
+
version: string;
|
|
7696
|
+
/**
|
|
7697
|
+
* The path from which the extension was loaded.
|
|
7698
|
+
*/
|
|
7699
|
+
path: string;
|
|
7700
|
+
/**
|
|
7701
|
+
* Extension enabled status.
|
|
7702
|
+
*/
|
|
7703
|
+
enabled: boolean;
|
|
7704
|
+
}
|
|
7480
7705
|
|
|
7481
7706
|
|
|
7707
|
+
/**
|
|
7708
|
+
* Runs an extension default action.
|
|
7709
|
+
Available if the client is connected using the --remote-debugging-pipe
|
|
7710
|
+
flag and the --enable-unsafe-extension-debugging flag is set.
|
|
7711
|
+
*/
|
|
7712
|
+
export type triggerActionParameters = {
|
|
7713
|
+
/**
|
|
7714
|
+
* Extension id.
|
|
7715
|
+
*/
|
|
7716
|
+
id: string;
|
|
7717
|
+
/**
|
|
7718
|
+
* A tab target ID to trigger the default extension action on.
|
|
7719
|
+
*/
|
|
7720
|
+
targetId: string;
|
|
7721
|
+
}
|
|
7722
|
+
export type triggerActionReturnValue = {
|
|
7723
|
+
}
|
|
7482
7724
|
/**
|
|
7483
7725
|
* Installs an unpacked extension from the filesystem similar to
|
|
7484
7726
|
--load-extension CLI flags. Returns extension ID once the extension
|
|
@@ -7491,6 +7733,10 @@ flag is set.
|
|
|
7491
7733
|
* Absolute file path.
|
|
7492
7734
|
*/
|
|
7493
7735
|
path: string;
|
|
7736
|
+
/**
|
|
7737
|
+
* Enable the extension in incognito
|
|
7738
|
+
*/
|
|
7739
|
+
enableInIncognito?: boolean;
|
|
7494
7740
|
}
|
|
7495
7741
|
export type loadUnpackedReturnValue = {
|
|
7496
7742
|
/**
|
|
@@ -7498,6 +7744,16 @@ flag is set.
|
|
|
7498
7744
|
*/
|
|
7499
7745
|
id: string;
|
|
7500
7746
|
}
|
|
7747
|
+
/**
|
|
7748
|
+
* Gets a list of all unpacked extensions.
|
|
7749
|
+
Available if the client is connected using the --remote-debugging-pipe flag
|
|
7750
|
+
and the --enable-unsafe-extension-debugging flag is set.
|
|
7751
|
+
*/
|
|
7752
|
+
export type getExtensionsParameters = {
|
|
7753
|
+
}
|
|
7754
|
+
export type getExtensionsReturnValue = {
|
|
7755
|
+
extensions: ExtensionInfo[];
|
|
7756
|
+
}
|
|
7501
7757
|
/**
|
|
7502
7758
|
* Uninstalls an unpacked extension (others not supported) from the profile.
|
|
7503
7759
|
Available if the client is connected using the --remote-debugging-pipe flag
|
|
@@ -10085,7 +10341,7 @@ milliseconds relatively to this requestTime.
|
|
|
10085
10341
|
*/
|
|
10086
10342
|
export type ResourcePriority = "VeryLow"|"Low"|"Medium"|"High"|"VeryHigh";
|
|
10087
10343
|
/**
|
|
10088
|
-
* The render
|
|
10344
|
+
* The render-blocking behavior of a resource request.
|
|
10089
10345
|
*/
|
|
10090
10346
|
export type RenderBlockingBehavior = "Blocking"|"InBodyParserBlocking"|"NonBlocking"|"NonBlockingDynamic"|"PotentiallyBlocking";
|
|
10091
10347
|
/**
|
|
@@ -10274,7 +10530,7 @@ applicable or not known.
|
|
|
10274
10530
|
/**
|
|
10275
10531
|
* The reason why request was blocked.
|
|
10276
10532
|
*/
|
|
10277
|
-
export type CorsError = "DisallowedByMode"|"InvalidResponse"|"WildcardOriginNotAllowed"|"MissingAllowOriginHeader"|"MultipleAllowOriginValues"|"InvalidAllowOriginValue"|"AllowOriginMismatch"|"InvalidAllowCredentials"|"CorsDisabledScheme"|"PreflightInvalidStatus"|"PreflightDisallowedRedirect"|"PreflightWildcardOriginNotAllowed"|"PreflightMissingAllowOriginHeader"|"PreflightMultipleAllowOriginValues"|"PreflightInvalidAllowOriginValue"|"PreflightAllowOriginMismatch"|"PreflightInvalidAllowCredentials"|"PreflightMissingAllowExternal"|"PreflightInvalidAllowExternal"|"
|
|
10533
|
+
export type CorsError = "DisallowedByMode"|"InvalidResponse"|"WildcardOriginNotAllowed"|"MissingAllowOriginHeader"|"MultipleAllowOriginValues"|"InvalidAllowOriginValue"|"AllowOriginMismatch"|"InvalidAllowCredentials"|"CorsDisabledScheme"|"PreflightInvalidStatus"|"PreflightDisallowedRedirect"|"PreflightWildcardOriginNotAllowed"|"PreflightMissingAllowOriginHeader"|"PreflightMultipleAllowOriginValues"|"PreflightInvalidAllowOriginValue"|"PreflightAllowOriginMismatch"|"PreflightInvalidAllowCredentials"|"PreflightMissingAllowExternal"|"PreflightInvalidAllowExternal"|"InvalidAllowMethodsPreflightResponse"|"InvalidAllowHeadersPreflightResponse"|"MethodDisallowedByPreflightResponse"|"HeaderDisallowedByPreflightResponse"|"RedirectContainsCredentials"|"InsecureLocalNetwork"|"InvalidLocalNetworkAccess"|"NoCorsRedirectModeNotFollow"|"LocalNetworkAccessPermissionDenied";
|
|
10278
10534
|
export interface CorsErrorStatus {
|
|
10279
10535
|
corsError: CorsError;
|
|
10280
10536
|
failedParameter: string;
|
|
@@ -10618,10 +10874,6 @@ JSON (±Inf).
|
|
|
10618
10874
|
* Cookie Priority
|
|
10619
10875
|
*/
|
|
10620
10876
|
priority: CookiePriority;
|
|
10621
|
-
/**
|
|
10622
|
-
* True if cookie is SameParty.
|
|
10623
|
-
*/
|
|
10624
|
-
sameParty: boolean;
|
|
10625
10877
|
/**
|
|
10626
10878
|
* Cookie source scheme type.
|
|
10627
10879
|
*/
|
|
@@ -10644,11 +10896,11 @@ This is a temporary ability and it will be removed in the future.
|
|
|
10644
10896
|
/**
|
|
10645
10897
|
* Types of reasons why a cookie may not be stored from a response.
|
|
10646
10898
|
*/
|
|
10647
|
-
export type SetCookieBlockedReason = "SecureOnly"|"SameSiteStrict"|"SameSiteLax"|"SameSiteUnspecifiedTreatedAsLax"|"SameSiteNoneInsecure"|"UserPreferences"|"ThirdPartyPhaseout"|"ThirdPartyBlockedInFirstPartySet"|"SyntaxError"|"SchemeNotSupported"|"OverwriteSecure"|"InvalidDomain"|"InvalidPrefix"|"UnknownError"|"SchemefulSameSiteStrict"|"SchemefulSameSiteLax"|"SchemefulSameSiteUnspecifiedTreatedAsLax"|"
|
|
10899
|
+
export type SetCookieBlockedReason = "SecureOnly"|"SameSiteStrict"|"SameSiteLax"|"SameSiteUnspecifiedTreatedAsLax"|"SameSiteNoneInsecure"|"UserPreferences"|"ThirdPartyPhaseout"|"ThirdPartyBlockedInFirstPartySet"|"SyntaxError"|"SchemeNotSupported"|"OverwriteSecure"|"InvalidDomain"|"InvalidPrefix"|"UnknownError"|"SchemefulSameSiteStrict"|"SchemefulSameSiteLax"|"SchemefulSameSiteUnspecifiedTreatedAsLax"|"NameValuePairExceedsMaxSize"|"DisallowedCharacter"|"NoCookieContent";
|
|
10648
10900
|
/**
|
|
10649
10901
|
* Types of reasons why a cookie may not be sent with a request.
|
|
10650
10902
|
*/
|
|
10651
|
-
export type CookieBlockedReason = "SecureOnly"|"NotOnPath"|"DomainMismatch"|"SameSiteStrict"|"SameSiteLax"|"SameSiteUnspecifiedTreatedAsLax"|"SameSiteNoneInsecure"|"UserPreferences"|"ThirdPartyPhaseout"|"ThirdPartyBlockedInFirstPartySet"|"UnknownError"|"SchemefulSameSiteStrict"|"SchemefulSameSiteLax"|"SchemefulSameSiteUnspecifiedTreatedAsLax"|"
|
|
10903
|
+
export type CookieBlockedReason = "SecureOnly"|"NotOnPath"|"DomainMismatch"|"SameSiteStrict"|"SameSiteLax"|"SameSiteUnspecifiedTreatedAsLax"|"SameSiteNoneInsecure"|"UserPreferences"|"ThirdPartyPhaseout"|"ThirdPartyBlockedInFirstPartySet"|"UnknownError"|"SchemefulSameSiteStrict"|"SchemefulSameSiteLax"|"SchemefulSameSiteUnspecifiedTreatedAsLax"|"NameValuePairExceedsMaxSize"|"PortMismatch"|"SchemeMismatch"|"AnonymousContext";
|
|
10652
10904
|
/**
|
|
10653
10905
|
* Types of reasons why a cookie should have been blocked by 3PCD but is exempted for the request.
|
|
10654
10906
|
*/
|
|
@@ -10755,10 +11007,6 @@ default domain, path, source port, and source scheme values of the created cooki
|
|
|
10755
11007
|
* Cookie Priority.
|
|
10756
11008
|
*/
|
|
10757
11009
|
priority?: CookiePriority;
|
|
10758
|
-
/**
|
|
10759
|
-
* True if cookie is SameParty.
|
|
10760
|
-
*/
|
|
10761
|
-
sameParty?: boolean;
|
|
10762
11010
|
/**
|
|
10763
11011
|
* Cookie source scheme type.
|
|
10764
11012
|
*/
|
|
@@ -11065,7 +11313,7 @@ Expected to be unsigned integer.
|
|
|
11065
11313
|
*/
|
|
11066
11314
|
remotePort?: number;
|
|
11067
11315
|
}
|
|
11068
|
-
export type
|
|
11316
|
+
export type LocalNetworkAccessRequestPolicy = "Allow"|"BlockFromInsecureToMorePrivate"|"WarnFromInsecureToMorePrivate"|"PermissionBlock"|"PermissionWarn";
|
|
11069
11317
|
export type IPAddressSpace = "Loopback"|"Local"|"Public"|"Unknown";
|
|
11070
11318
|
export interface ConnectTiming {
|
|
11071
11319
|
/**
|
|
@@ -11078,7 +11326,7 @@ the same request (but not for redirected requests).
|
|
|
11078
11326
|
export interface ClientSecurityState {
|
|
11079
11327
|
initiatorIsSecureContext: boolean;
|
|
11080
11328
|
initiatorIPAddressSpace: IPAddressSpace;
|
|
11081
|
-
|
|
11329
|
+
localNetworkAccessRequestPolicy: LocalNetworkAccessRequestPolicy;
|
|
11082
11330
|
}
|
|
11083
11331
|
export type CrossOriginOpenerPolicyValue = "SameOrigin"|"SameOriginAllowPopups"|"RestrictProperties"|"UnsafeNone"|"SameOriginPlusCoep"|"RestrictPropertiesPlusCoep"|"NoopenerAllowPopups";
|
|
11084
11332
|
export interface CrossOriginOpenerPolicyStatus {
|
|
@@ -11165,6 +11413,19 @@ the same request (but not for redirected requests).
|
|
|
11165
11413
|
*/
|
|
11166
11414
|
id: string;
|
|
11167
11415
|
}
|
|
11416
|
+
/**
|
|
11417
|
+
* How a device bound session was used during a request.
|
|
11418
|
+
*/
|
|
11419
|
+
export interface DeviceBoundSessionWithUsage {
|
|
11420
|
+
/**
|
|
11421
|
+
* The key for the session.
|
|
11422
|
+
*/
|
|
11423
|
+
sessionKey: DeviceBoundSessionKey;
|
|
11424
|
+
/**
|
|
11425
|
+
* How the session was used (or not used).
|
|
11426
|
+
*/
|
|
11427
|
+
usage: "NotInScope"|"InScopeRefreshNotYetNeeded"|"InScopeRefreshNotAllowed"|"ProactiveRefreshNotPossible"|"ProactiveRefreshAttempted"|"Deferred";
|
|
11428
|
+
}
|
|
11168
11429
|
/**
|
|
11169
11430
|
* A device bound session's cookie craving.
|
|
11170
11431
|
*/
|
|
@@ -11271,6 +11532,29 @@ details; this boolean is true if that value is populated.
|
|
|
11271
11532
|
* A fetch result for a device bound session creation or refresh.
|
|
11272
11533
|
*/
|
|
11273
11534
|
export type DeviceBoundSessionFetchResult = "Success"|"KeyError"|"SigningError"|"ServerRequestedTermination"|"InvalidSessionId"|"InvalidChallenge"|"TooManyChallenges"|"InvalidFetcherUrl"|"InvalidRefreshUrl"|"TransientHttpError"|"ScopeOriginSameSiteMismatch"|"RefreshUrlSameSiteMismatch"|"MismatchedSessionId"|"MissingScope"|"NoCredentials"|"SubdomainRegistrationWellKnownUnavailable"|"SubdomainRegistrationUnauthorized"|"SubdomainRegistrationWellKnownMalformed"|"SessionProviderWellKnownUnavailable"|"RelyingPartyWellKnownUnavailable"|"FederatedKeyThumbprintMismatch"|"InvalidFederatedSessionUrl"|"InvalidFederatedKey"|"TooManyRelyingOriginLabels"|"BoundCookieSetForbidden"|"NetError"|"ProxyError"|"EmptySessionConfig"|"InvalidCredentialsConfig"|"InvalidCredentialsType"|"InvalidCredentialsEmptyName"|"InvalidCredentialsCookie"|"PersistentHttpError"|"RegistrationAttemptedChallenge"|"InvalidScopeOrigin"|"ScopeOriginContainsPath"|"RefreshInitiatorNotString"|"RefreshInitiatorInvalidHostPattern"|"InvalidScopeSpecification"|"MissingScopeSpecificationType"|"EmptyScopeSpecificationDomain"|"EmptyScopeSpecificationPath"|"InvalidScopeSpecificationType"|"InvalidScopeIncludeSite"|"MissingScopeIncludeSite"|"FederatedNotAuthorizedByProvider"|"FederatedNotAuthorizedByRelyingParty"|"SessionProviderWellKnownMalformed"|"SessionProviderWellKnownHasProviderOrigin"|"RelyingPartyWellKnownMalformed"|"RelyingPartyWellKnownHasRelyingOrigins"|"InvalidFederatedSessionProviderSessionMissing"|"InvalidFederatedSessionWrongProviderOrigin"|"InvalidCredentialsCookieCreationTime"|"InvalidCredentialsCookieName"|"InvalidCredentialsCookieParsing"|"InvalidCredentialsCookieUnpermittedAttribute"|"InvalidCredentialsCookieInvalidDomain"|"InvalidCredentialsCookiePrefix"|"InvalidScopeRulePath"|"InvalidScopeRuleHostPattern"|"ScopeRuleOriginScopedHostPatternMismatch"|"ScopeRuleSiteScopedHostPatternMismatch"|"SigningQuotaExceeded"|"InvalidConfigJson"|"InvalidFederatedSessionProviderFailedToRestoreKey"|"FailedToUnwrapKey"|"SessionDeletedDuringRefresh";
|
|
11535
|
+
/**
|
|
11536
|
+
* Details about a failed device bound session network request.
|
|
11537
|
+
*/
|
|
11538
|
+
export interface DeviceBoundSessionFailedRequest {
|
|
11539
|
+
/**
|
|
11540
|
+
* The failed request URL.
|
|
11541
|
+
*/
|
|
11542
|
+
requestUrl: string;
|
|
11543
|
+
/**
|
|
11544
|
+
* The net error of the response if it was not OK.
|
|
11545
|
+
*/
|
|
11546
|
+
netError?: string;
|
|
11547
|
+
/**
|
|
11548
|
+
* The response code if the net error was OK and the response code was not
|
|
11549
|
+
200.
|
|
11550
|
+
*/
|
|
11551
|
+
responseError?: number;
|
|
11552
|
+
/**
|
|
11553
|
+
* The body of the response if the net error was OK, the response code was
|
|
11554
|
+
not 200, and the response body was not empty.
|
|
11555
|
+
*/
|
|
11556
|
+
responseErrorBody?: string;
|
|
11557
|
+
}
|
|
11274
11558
|
/**
|
|
11275
11559
|
* Session event details specific to creation.
|
|
11276
11560
|
*/
|
|
@@ -11284,6 +11568,11 @@ details; this boolean is true if that value is populated.
|
|
|
11284
11568
|
all successful creation events.
|
|
11285
11569
|
*/
|
|
11286
11570
|
newSession?: DeviceBoundSession;
|
|
11571
|
+
/**
|
|
11572
|
+
* Details about a failed device bound session network request if there was
|
|
11573
|
+
one.
|
|
11574
|
+
*/
|
|
11575
|
+
failedRequest?: DeviceBoundSessionFailedRequest;
|
|
11287
11576
|
}
|
|
11288
11577
|
/**
|
|
11289
11578
|
* Session event details specific to refresh.
|
|
@@ -11306,6 +11595,11 @@ for any refresh event that modifies the session config.
|
|
|
11306
11595
|
* See comments on `net::device_bound_sessions::RefreshEventResult::was_fully_proactive_refresh`.
|
|
11307
11596
|
*/
|
|
11308
11597
|
wasFullyProactiveRefresh: boolean;
|
|
11598
|
+
/**
|
|
11599
|
+
* Details about a failed device bound session network request if there was
|
|
11600
|
+
one.
|
|
11601
|
+
*/
|
|
11602
|
+
failedRequest?: DeviceBoundSessionFailedRequest;
|
|
11309
11603
|
}
|
|
11310
11604
|
/**
|
|
11311
11605
|
* Session event details specific to termination.
|
|
@@ -11582,7 +11876,7 @@ for the request which was just redirected.
|
|
|
11582
11876
|
*/
|
|
11583
11877
|
hasUserGesture?: boolean;
|
|
11584
11878
|
/**
|
|
11585
|
-
* The render
|
|
11879
|
+
* The render-blocking behavior of the request.
|
|
11586
11880
|
*/
|
|
11587
11881
|
renderBlockingBehavior?: RenderBlockingBehavior;
|
|
11588
11882
|
}
|
|
@@ -11967,6 +12261,10 @@ the request and the ones not sent; the latter are distinguished by having blocke
|
|
|
11967
12261
|
* Connection timing information for the request.
|
|
11968
12262
|
*/
|
|
11969
12263
|
connectTiming: ConnectTiming;
|
|
12264
|
+
/**
|
|
12265
|
+
* How the request site's device bound sessions were used during this request.
|
|
12266
|
+
*/
|
|
12267
|
+
deviceBoundSessionUsages?: DeviceBoundSessionWithUsage[];
|
|
11970
12268
|
/**
|
|
11971
12269
|
* The client security state set for the request.
|
|
11972
12270
|
*/
|
|
@@ -12386,6 +12684,8 @@ requests affected by a rule.
|
|
|
12386
12684
|
export type enableParameters = {
|
|
12387
12685
|
/**
|
|
12388
12686
|
* Buffer size in bytes to use when preserving network payloads (XHRs, etc).
|
|
12687
|
+
This is the maximum number of bytes that will be collected by this
|
|
12688
|
+
DevTools session.
|
|
12389
12689
|
*/
|
|
12390
12690
|
maxTotalBufferSize?: number;
|
|
12391
12691
|
/**
|
|
@@ -12663,10 +12963,6 @@ default domain, path, source port, and source scheme values of the created cooki
|
|
|
12663
12963
|
* Cookie Priority type.
|
|
12664
12964
|
*/
|
|
12665
12965
|
priority?: CookiePriority;
|
|
12666
|
-
/**
|
|
12667
|
-
* True if cookie is SameParty.
|
|
12668
|
-
*/
|
|
12669
|
-
sameParty?: boolean;
|
|
12670
12966
|
/**
|
|
12671
12967
|
* Cookie source scheme type.
|
|
12672
12968
|
*/
|
|
@@ -13261,6 +13557,16 @@ Page reload is required before the new cookie behavior will be observed
|
|
|
13261
13557
|
maskColor?: DOM.RGBA;
|
|
13262
13558
|
}
|
|
13263
13559
|
export type InspectMode = "searchForNode"|"searchForUAShadowDOM"|"captureAreaScreenshot"|"none";
|
|
13560
|
+
export interface InspectedElementAnchorConfig {
|
|
13561
|
+
/**
|
|
13562
|
+
* Identifier of the node to highlight.
|
|
13563
|
+
*/
|
|
13564
|
+
nodeId?: DOM.NodeId;
|
|
13565
|
+
/**
|
|
13566
|
+
* Identifier of the backend node to highlight.
|
|
13567
|
+
*/
|
|
13568
|
+
backendNodeId?: DOM.BackendNodeId;
|
|
13569
|
+
}
|
|
13264
13570
|
|
|
13265
13571
|
/**
|
|
13266
13572
|
* Fired when the node should be inspected. This happens after call to `setInspectMode` or when
|
|
@@ -13287,6 +13593,24 @@ user manually inspects an element.
|
|
|
13287
13593
|
*/
|
|
13288
13594
|
viewport: Page.Viewport;
|
|
13289
13595
|
}
|
|
13596
|
+
/**
|
|
13597
|
+
* Fired when user asks to show the Inspect panel.
|
|
13598
|
+
*/
|
|
13599
|
+
export type inspectPanelShowRequestedPayload = {
|
|
13600
|
+
/**
|
|
13601
|
+
* Id of the node to show in the panel.
|
|
13602
|
+
*/
|
|
13603
|
+
backendNodeId: DOM.BackendNodeId;
|
|
13604
|
+
}
|
|
13605
|
+
/**
|
|
13606
|
+
* Fired when user asks to restore the Inspected Element floating window.
|
|
13607
|
+
*/
|
|
13608
|
+
export type inspectedElementWindowRestoredPayload = {
|
|
13609
|
+
/**
|
|
13610
|
+
* Id of the node to restore the floating window for.
|
|
13611
|
+
*/
|
|
13612
|
+
backendNodeId: DOM.BackendNodeId;
|
|
13613
|
+
}
|
|
13290
13614
|
/**
|
|
13291
13615
|
* Fired when user cancels the inspect mode.
|
|
13292
13616
|
*/
|
|
@@ -13594,6 +13918,14 @@ Backend then generates 'inspectNodeRequested' event upon element selection.
|
|
|
13594
13918
|
}
|
|
13595
13919
|
export type setShowContainerQueryOverlaysReturnValue = {
|
|
13596
13920
|
}
|
|
13921
|
+
export type setShowInspectedElementAnchorParameters = {
|
|
13922
|
+
/**
|
|
13923
|
+
* Node identifier for which to show an anchor for.
|
|
13924
|
+
*/
|
|
13925
|
+
inspectedElementAnchorConfig: InspectedElementAnchorConfig;
|
|
13926
|
+
}
|
|
13927
|
+
export type setShowInspectedElementAnchorReturnValue = {
|
|
13928
|
+
}
|
|
13597
13929
|
/**
|
|
13598
13930
|
* Requests that backend shows paint rectangles
|
|
13599
13931
|
*/
|
|
@@ -14531,7 +14863,7 @@ https://github.com/WICG/manifest-incubations/blob/gh-pages/scope_extensions-expl
|
|
|
14531
14863
|
/**
|
|
14532
14864
|
* List of not restored reasons for back-forward cache.
|
|
14533
14865
|
*/
|
|
14534
|
-
export type BackForwardCacheNotRestoredReason = "NotPrimaryMainFrame"|"BackForwardCacheDisabled"|"RelatedActiveContentsExist"|"HTTPStatusNotOK"|"SchemeNotHTTPOrHTTPS"|"Loading"|"WasGrantedMediaAccess"|"DisableForRenderFrameHostCalled"|"DomainNotAllowed"|"HTTPMethodNotGET"|"SubframeIsNavigating"|"Timeout"|"CacheLimit"|"JavaScriptExecution"|"RendererProcessKilled"|"RendererProcessCrashed"|"SchedulerTrackedFeatureUsed"|"ConflictingBrowsingInstance"|"CacheFlushed"|"ServiceWorkerVersionActivation"|"SessionRestored"|"ServiceWorkerPostMessage"|"EnteredBackForwardCacheBeforeServiceWorkerHostAdded"|"RenderFrameHostReused_SameSite"|"RenderFrameHostReused_CrossSite"|"ServiceWorkerClaim"|"IgnoreEventAndEvict"|"HaveInnerContents"|"TimeoutPuttingInCache"|"BackForwardCacheDisabledByLowMemory"|"BackForwardCacheDisabledByCommandLine"|"NetworkRequestDatapipeDrainedAsBytesConsumer"|"NetworkRequestRedirected"|"NetworkRequestTimeout"|"NetworkExceedsBufferLimit"|"NavigationCancelledWhileRestoring"|"NotMostRecentNavigationEntry"|"BackForwardCacheDisabledForPrerender"|"UserAgentOverrideDiffers"|"ForegroundCacheLimit"|"BrowsingInstanceNotSwapped"|"BackForwardCacheDisabledForDelegate"|"UnloadHandlerExistsInMainFrame"|"UnloadHandlerExistsInSubFrame"|"ServiceWorkerUnregistration"|"CacheControlNoStore"|"CacheControlNoStoreCookieModified"|"CacheControlNoStoreHTTPOnlyCookieModified"|"NoResponseHead"|"Unknown"|"ActivationNavigationsDisallowedForBug1234857"|"ErrorDocument"|"FencedFramesEmbedder"|"CookieDisabled"|"HTTPAuthRequired"|"CookieFlushed"|"BroadcastChannelOnMessage"|"WebViewSettingsChanged"|"WebViewJavaScriptObjectChanged"|"WebViewMessageListenerInjected"|"WebViewSafeBrowsingAllowlistChanged"|"WebViewDocumentStartJavascriptChanged"|"WebSocket"|"WebTransport"|"WebRTC"|"MainResourceHasCacheControlNoStore"|"MainResourceHasCacheControlNoCache"|"SubresourceHasCacheControlNoStore"|"SubresourceHasCacheControlNoCache"|"ContainsPlugins"|"DocumentLoaded"|"OutstandingNetworkRequestOthers"|"RequestedMIDIPermission"|"RequestedAudioCapturePermission"|"RequestedVideoCapturePermission"|"RequestedBackForwardCacheBlockedSensors"|"RequestedBackgroundWorkPermission"|"BroadcastChannel"|"WebXR"|"SharedWorker"|"SharedWorkerMessage"|"SharedWorkerWithNoActiveClient"|"WebLocks"|"WebHID"|"WebBluetooth"|"WebShare"|"RequestedStorageAccessGrant"|"WebNfc"|"OutstandingNetworkRequestFetch"|"OutstandingNetworkRequestXHR"|"AppBanner"|"Printing"|"WebDatabase"|"PictureInPicture"|"SpeechRecognizer"|"IdleManager"|"PaymentManager"|"SpeechSynthesis"|"KeyboardLock"|"WebOTPService"|"OutstandingNetworkRequestDirectSocket"|"InjectedJavascript"|"InjectedStyleSheet"|"KeepaliveRequest"|"IndexedDBEvent"|"Dummy"|"JsNetworkRequestReceivedCacheControlNoStoreResource"|"WebRTCUsedWithCCNS"|"WebTransportUsedWithCCNS"|"WebSocketUsedWithCCNS"|"SmartCard"|"LiveMediaStreamTrack"|"UnloadHandler"|"ParserAborted"|"ContentSecurityHandler"|"ContentWebAuthenticationAPI"|"ContentFileChooser"|"ContentSerial"|"ContentFileSystemAccess"|"ContentMediaDevicesDispatcherHost"|"ContentWebBluetooth"|"ContentWebUSB"|"ContentMediaSessionService"|"ContentScreenReader"|"ContentDiscarded"|"EmbedderPopupBlockerTabHelper"|"EmbedderSafeBrowsingTriggeredPopupBlocker"|"EmbedderSafeBrowsingThreatDetails"|"EmbedderAppBannerManager"|"EmbedderDomDistillerViewerSource"|"EmbedderDomDistillerSelfDeletingRequestDelegate"|"EmbedderOomInterventionTabHelper"|"EmbedderOfflinePage"|"EmbedderChromePasswordManagerClientBindCredentialManager"|"EmbedderPermissionRequestManager"|"EmbedderModalDialog"|"EmbedderExtensions"|"EmbedderExtensionMessaging"|"EmbedderExtensionMessagingForOpenPort"|"EmbedderExtensionSentMessageToCachedFrame"|"RequestedByWebViewClient"|"PostMessageByWebViewClient"|"CacheControlNoStoreDeviceBoundSessionTerminated"|"CacheLimitPrunedOnModerateMemoryPressure"|"CacheLimitPrunedOnCriticalMemoryPressure";
|
|
14866
|
+
export type BackForwardCacheNotRestoredReason = "NotPrimaryMainFrame"|"BackForwardCacheDisabled"|"RelatedActiveContentsExist"|"HTTPStatusNotOK"|"SchemeNotHTTPOrHTTPS"|"Loading"|"WasGrantedMediaAccess"|"DisableForRenderFrameHostCalled"|"DomainNotAllowed"|"HTTPMethodNotGET"|"SubframeIsNavigating"|"Timeout"|"CacheLimit"|"JavaScriptExecution"|"RendererProcessKilled"|"RendererProcessCrashed"|"SchedulerTrackedFeatureUsed"|"ConflictingBrowsingInstance"|"CacheFlushed"|"ServiceWorkerVersionActivation"|"SessionRestored"|"ServiceWorkerPostMessage"|"EnteredBackForwardCacheBeforeServiceWorkerHostAdded"|"RenderFrameHostReused_SameSite"|"RenderFrameHostReused_CrossSite"|"ServiceWorkerClaim"|"IgnoreEventAndEvict"|"HaveInnerContents"|"TimeoutPuttingInCache"|"BackForwardCacheDisabledByLowMemory"|"BackForwardCacheDisabledByCommandLine"|"NetworkRequestDatapipeDrainedAsBytesConsumer"|"NetworkRequestRedirected"|"NetworkRequestTimeout"|"NetworkExceedsBufferLimit"|"NavigationCancelledWhileRestoring"|"NotMostRecentNavigationEntry"|"BackForwardCacheDisabledForPrerender"|"UserAgentOverrideDiffers"|"ForegroundCacheLimit"|"ForwardCacheDisabled"|"BrowsingInstanceNotSwapped"|"BackForwardCacheDisabledForDelegate"|"UnloadHandlerExistsInMainFrame"|"UnloadHandlerExistsInSubFrame"|"ServiceWorkerUnregistration"|"CacheControlNoStore"|"CacheControlNoStoreCookieModified"|"CacheControlNoStoreHTTPOnlyCookieModified"|"NoResponseHead"|"Unknown"|"ActivationNavigationsDisallowedForBug1234857"|"ErrorDocument"|"FencedFramesEmbedder"|"CookieDisabled"|"HTTPAuthRequired"|"CookieFlushed"|"BroadcastChannelOnMessage"|"WebViewSettingsChanged"|"WebViewJavaScriptObjectChanged"|"WebViewMessageListenerInjected"|"WebViewSafeBrowsingAllowlistChanged"|"WebViewDocumentStartJavascriptChanged"|"WebSocket"|"WebTransport"|"WebRTC"|"MainResourceHasCacheControlNoStore"|"MainResourceHasCacheControlNoCache"|"SubresourceHasCacheControlNoStore"|"SubresourceHasCacheControlNoCache"|"ContainsPlugins"|"DocumentLoaded"|"OutstandingNetworkRequestOthers"|"RequestedMIDIPermission"|"RequestedAudioCapturePermission"|"RequestedVideoCapturePermission"|"RequestedBackForwardCacheBlockedSensors"|"RequestedBackgroundWorkPermission"|"BroadcastChannel"|"WebXR"|"SharedWorker"|"SharedWorkerMessage"|"SharedWorkerWithNoActiveClient"|"WebLocks"|"WebLocksContention"|"WebHID"|"WebBluetooth"|"WebShare"|"RequestedStorageAccessGrant"|"WebNfc"|"OutstandingNetworkRequestFetch"|"OutstandingNetworkRequestXHR"|"AppBanner"|"Printing"|"WebDatabase"|"PictureInPicture"|"SpeechRecognizer"|"IdleManager"|"PaymentManager"|"SpeechSynthesis"|"KeyboardLock"|"WebOTPService"|"OutstandingNetworkRequestDirectSocket"|"InjectedJavascript"|"InjectedStyleSheet"|"KeepaliveRequest"|"IndexedDBEvent"|"Dummy"|"JsNetworkRequestReceivedCacheControlNoStoreResource"|"WebRTCUsedWithCCNS"|"WebTransportUsedWithCCNS"|"WebSocketUsedWithCCNS"|"SmartCard"|"LiveMediaStreamTrack"|"UnloadHandler"|"ParserAborted"|"ContentSecurityHandler"|"ContentWebAuthenticationAPI"|"ContentFileChooser"|"ContentSerial"|"ContentFileSystemAccess"|"ContentMediaDevicesDispatcherHost"|"ContentWebBluetooth"|"ContentWebUSB"|"ContentMediaSessionService"|"ContentScreenReader"|"ContentDiscarded"|"EmbedderPopupBlockerTabHelper"|"EmbedderSafeBrowsingTriggeredPopupBlocker"|"EmbedderSafeBrowsingThreatDetails"|"EmbedderAppBannerManager"|"EmbedderDomDistillerViewerSource"|"EmbedderDomDistillerSelfDeletingRequestDelegate"|"EmbedderOomInterventionTabHelper"|"EmbedderOfflinePage"|"EmbedderChromePasswordManagerClientBindCredentialManager"|"EmbedderPermissionRequestManager"|"EmbedderModalDialog"|"EmbedderExtensions"|"EmbedderExtensionMessaging"|"EmbedderExtensionMessagingForOpenPort"|"EmbedderExtensionSentMessageToCachedFrame"|"RequestedByWebViewClient"|"PostMessageByWebViewClient"|"CacheControlNoStoreDeviceBoundSessionTerminated"|"CacheLimitPrunedOnModerateMemoryPressure"|"CacheLimitPrunedOnCriticalMemoryPressure";
|
|
14535
14867
|
/**
|
|
14536
14868
|
* Types of not restored reasons for back-forward cache.
|
|
14537
14869
|
*/
|
|
@@ -16771,6 +17103,407 @@ For cached script it is the last time the cache entry was validated.
|
|
|
16771
17103
|
}
|
|
16772
17104
|
}
|
|
16773
17105
|
|
|
17106
|
+
export namespace SmartCardEmulation {
|
|
17107
|
+
/**
|
|
17108
|
+
* Indicates the PC/SC error code.
|
|
17109
|
+
|
|
17110
|
+
This maps to:
|
|
17111
|
+
PC/SC Lite: https://pcsclite.apdu.fr/api/group__ErrorCodes.html
|
|
17112
|
+
Microsoft: https://learn.microsoft.com/en-us/windows/win32/secauthn/authentication-return-values
|
|
17113
|
+
*/
|
|
17114
|
+
export type ResultCode = "success"|"removed-card"|"reset-card"|"unpowered-card"|"unresponsive-card"|"unsupported-card"|"reader-unavailable"|"sharing-violation"|"not-transacted"|"no-smartcard"|"proto-mismatch"|"system-cancelled"|"not-ready"|"cancelled"|"insufficient-buffer"|"invalid-handle"|"invalid-parameter"|"invalid-value"|"no-memory"|"timeout"|"unknown-reader"|"unsupported-feature"|"no-readers-available"|"service-stopped"|"no-service"|"comm-error"|"internal-error"|"server-too-busy"|"unexpected"|"shutdown"|"unknown-card"|"unknown";
|
|
17115
|
+
/**
|
|
17116
|
+
* Maps to the |SCARD_SHARE_*| values.
|
|
17117
|
+
*/
|
|
17118
|
+
export type ShareMode = "shared"|"exclusive"|"direct";
|
|
17119
|
+
/**
|
|
17120
|
+
* Indicates what the reader should do with the card.
|
|
17121
|
+
*/
|
|
17122
|
+
export type Disposition = "leave-card"|"reset-card"|"unpower-card"|"eject-card";
|
|
17123
|
+
/**
|
|
17124
|
+
* Maps to |SCARD_*| connection state values.
|
|
17125
|
+
*/
|
|
17126
|
+
export type ConnectionState = "absent"|"present"|"swallowed"|"powered"|"negotiable"|"specific";
|
|
17127
|
+
/**
|
|
17128
|
+
* Maps to the |SCARD_STATE_*| flags.
|
|
17129
|
+
*/
|
|
17130
|
+
export interface ReaderStateFlags {
|
|
17131
|
+
unaware?: boolean;
|
|
17132
|
+
ignore?: boolean;
|
|
17133
|
+
changed?: boolean;
|
|
17134
|
+
unknown?: boolean;
|
|
17135
|
+
unavailable?: boolean;
|
|
17136
|
+
empty?: boolean;
|
|
17137
|
+
present?: boolean;
|
|
17138
|
+
exclusive?: boolean;
|
|
17139
|
+
inuse?: boolean;
|
|
17140
|
+
mute?: boolean;
|
|
17141
|
+
unpowered?: boolean;
|
|
17142
|
+
}
|
|
17143
|
+
/**
|
|
17144
|
+
* Maps to the |SCARD_PROTOCOL_*| flags.
|
|
17145
|
+
*/
|
|
17146
|
+
export interface ProtocolSet {
|
|
17147
|
+
t0?: boolean;
|
|
17148
|
+
t1?: boolean;
|
|
17149
|
+
raw?: boolean;
|
|
17150
|
+
}
|
|
17151
|
+
/**
|
|
17152
|
+
* Maps to the |SCARD_PROTOCOL_*| values.
|
|
17153
|
+
*/
|
|
17154
|
+
export type Protocol = "t0"|"t1"|"raw";
|
|
17155
|
+
export interface ReaderStateIn {
|
|
17156
|
+
reader: string;
|
|
17157
|
+
currentState: ReaderStateFlags;
|
|
17158
|
+
currentInsertionCount: number;
|
|
17159
|
+
}
|
|
17160
|
+
export interface ReaderStateOut {
|
|
17161
|
+
reader: string;
|
|
17162
|
+
eventState: ReaderStateFlags;
|
|
17163
|
+
eventCount: number;
|
|
17164
|
+
atr: binary;
|
|
17165
|
+
}
|
|
17166
|
+
|
|
17167
|
+
/**
|
|
17168
|
+
* Fired when |SCardEstablishContext| is called.
|
|
17169
|
+
|
|
17170
|
+
This maps to:
|
|
17171
|
+
PC/SC Lite: https://pcsclite.apdu.fr/api/group__API.html#gaa1b8970169fd4883a6dc4a8f43f19b67
|
|
17172
|
+
Microsoft: https://learn.microsoft.com/en-us/windows/win32/api/winscard/nf-winscard-scardestablishcontext
|
|
17173
|
+
*/
|
|
17174
|
+
export type establishContextRequestedPayload = {
|
|
17175
|
+
requestId: string;
|
|
17176
|
+
}
|
|
17177
|
+
/**
|
|
17178
|
+
* Fired when |SCardReleaseContext| is called.
|
|
17179
|
+
|
|
17180
|
+
This maps to:
|
|
17181
|
+
PC/SC Lite: https://pcsclite.apdu.fr/api/group__API.html#ga6aabcba7744c5c9419fdd6404f73a934
|
|
17182
|
+
Microsoft: https://learn.microsoft.com/en-us/windows/win32/api/winscard/nf-winscard-scardreleasecontext
|
|
17183
|
+
*/
|
|
17184
|
+
export type releaseContextRequestedPayload = {
|
|
17185
|
+
requestId: string;
|
|
17186
|
+
contextId: number;
|
|
17187
|
+
}
|
|
17188
|
+
/**
|
|
17189
|
+
* Fired when |SCardListReaders| is called.
|
|
17190
|
+
|
|
17191
|
+
This maps to:
|
|
17192
|
+
PC/SC Lite: https://pcsclite.apdu.fr/api/group__API.html#ga93b07815789b3cf2629d439ecf20f0d9
|
|
17193
|
+
Microsoft: https://learn.microsoft.com/en-us/windows/win32/api/winscard/nf-winscard-scardlistreadersa
|
|
17194
|
+
*/
|
|
17195
|
+
export type listReadersRequestedPayload = {
|
|
17196
|
+
requestId: string;
|
|
17197
|
+
contextId: number;
|
|
17198
|
+
}
|
|
17199
|
+
/**
|
|
17200
|
+
* Fired when |SCardGetStatusChange| is called. Timeout is specified in milliseconds.
|
|
17201
|
+
|
|
17202
|
+
This maps to:
|
|
17203
|
+
PC/SC Lite: https://pcsclite.apdu.fr/api/group__API.html#ga33247d5d1257d59e55647c3bb717db24
|
|
17204
|
+
Microsoft: https://learn.microsoft.com/en-us/windows/win32/api/winscard/nf-winscard-scardgetstatuschangea
|
|
17205
|
+
*/
|
|
17206
|
+
export type getStatusChangeRequestedPayload = {
|
|
17207
|
+
requestId: string;
|
|
17208
|
+
contextId: number;
|
|
17209
|
+
readerStates: ReaderStateIn[];
|
|
17210
|
+
/**
|
|
17211
|
+
* in milliseconds, if absent, it means "infinite"
|
|
17212
|
+
*/
|
|
17213
|
+
timeout?: number;
|
|
17214
|
+
}
|
|
17215
|
+
/**
|
|
17216
|
+
* Fired when |SCardCancel| is called.
|
|
17217
|
+
|
|
17218
|
+
This maps to:
|
|
17219
|
+
PC/SC Lite: https://pcsclite.apdu.fr/api/group__API.html#gaacbbc0c6d6c0cbbeb4f4debf6fbeeee6
|
|
17220
|
+
Microsoft: https://learn.microsoft.com/en-us/windows/win32/api/winscard/nf-winscard-scardcancel
|
|
17221
|
+
*/
|
|
17222
|
+
export type cancelRequestedPayload = {
|
|
17223
|
+
requestId: string;
|
|
17224
|
+
contextId: number;
|
|
17225
|
+
}
|
|
17226
|
+
/**
|
|
17227
|
+
* Fired when |SCardConnect| is called.
|
|
17228
|
+
|
|
17229
|
+
This maps to:
|
|
17230
|
+
PC/SC Lite: https://pcsclite.apdu.fr/api/group__API.html#ga4e515829752e0a8dbc4d630696a8d6a5
|
|
17231
|
+
Microsoft: https://learn.microsoft.com/en-us/windows/win32/api/winscard/nf-winscard-scardconnecta
|
|
17232
|
+
*/
|
|
17233
|
+
export type connectRequestedPayload = {
|
|
17234
|
+
requestId: string;
|
|
17235
|
+
contextId: number;
|
|
17236
|
+
reader: string;
|
|
17237
|
+
shareMode: ShareMode;
|
|
17238
|
+
preferredProtocols: ProtocolSet;
|
|
17239
|
+
}
|
|
17240
|
+
/**
|
|
17241
|
+
* Fired when |SCardDisconnect| is called.
|
|
17242
|
+
|
|
17243
|
+
This maps to:
|
|
17244
|
+
PC/SC Lite: https://pcsclite.apdu.fr/api/group__API.html#ga4be198045c73ec0deb79e66c0ca1738a
|
|
17245
|
+
Microsoft: https://learn.microsoft.com/en-us/windows/win32/api/winscard/nf-winscard-scarddisconnect
|
|
17246
|
+
*/
|
|
17247
|
+
export type disconnectRequestedPayload = {
|
|
17248
|
+
requestId: string;
|
|
17249
|
+
handle: number;
|
|
17250
|
+
disposition: Disposition;
|
|
17251
|
+
}
|
|
17252
|
+
/**
|
|
17253
|
+
* Fired when |SCardTransmit| is called.
|
|
17254
|
+
|
|
17255
|
+
This maps to:
|
|
17256
|
+
PC/SC Lite: https://pcsclite.apdu.fr/api/group__API.html#ga9a2d77242a271310269065e64633ab99
|
|
17257
|
+
Microsoft: https://learn.microsoft.com/en-us/windows/win32/api/winscard/nf-winscard-scardtransmit
|
|
17258
|
+
*/
|
|
17259
|
+
export type transmitRequestedPayload = {
|
|
17260
|
+
requestId: string;
|
|
17261
|
+
handle: number;
|
|
17262
|
+
data: binary;
|
|
17263
|
+
protocol?: Protocol;
|
|
17264
|
+
}
|
|
17265
|
+
/**
|
|
17266
|
+
* Fired when |SCardControl| is called.
|
|
17267
|
+
|
|
17268
|
+
This maps to:
|
|
17269
|
+
PC/SC Lite: https://pcsclite.apdu.fr/api/group__API.html#gac3454d4657110fd7f753b2d3d8f4e32f
|
|
17270
|
+
Microsoft: https://learn.microsoft.com/en-us/windows/win32/api/winscard/nf-winscard-scardcontrol
|
|
17271
|
+
*/
|
|
17272
|
+
export type controlRequestedPayload = {
|
|
17273
|
+
requestId: string;
|
|
17274
|
+
handle: number;
|
|
17275
|
+
controlCode: number;
|
|
17276
|
+
data: binary;
|
|
17277
|
+
}
|
|
17278
|
+
/**
|
|
17279
|
+
* Fired when |SCardGetAttrib| is called.
|
|
17280
|
+
|
|
17281
|
+
This maps to:
|
|
17282
|
+
PC/SC Lite: https://pcsclite.apdu.fr/api/group__API.html#gaacfec51917255b7a25b94c5104961602
|
|
17283
|
+
Microsoft: https://learn.microsoft.com/en-us/windows/win32/api/winscard/nf-winscard-scardgetattrib
|
|
17284
|
+
*/
|
|
17285
|
+
export type getAttribRequestedPayload = {
|
|
17286
|
+
requestId: string;
|
|
17287
|
+
handle: number;
|
|
17288
|
+
attribId: number;
|
|
17289
|
+
}
|
|
17290
|
+
/**
|
|
17291
|
+
* Fired when |SCardSetAttrib| is called.
|
|
17292
|
+
|
|
17293
|
+
This maps to:
|
|
17294
|
+
PC/SC Lite: https://pcsclite.apdu.fr/api/group__API.html#ga060f0038a4ddfd5dd2b8fadf3c3a2e4f
|
|
17295
|
+
Microsoft: https://learn.microsoft.com/en-us/windows/win32/api/winscard/nf-winscard-scardsetattrib
|
|
17296
|
+
*/
|
|
17297
|
+
export type setAttribRequestedPayload = {
|
|
17298
|
+
requestId: string;
|
|
17299
|
+
handle: number;
|
|
17300
|
+
attribId: number;
|
|
17301
|
+
data: binary;
|
|
17302
|
+
}
|
|
17303
|
+
/**
|
|
17304
|
+
* Fired when |SCardStatus| is called.
|
|
17305
|
+
|
|
17306
|
+
This maps to:
|
|
17307
|
+
PC/SC Lite: https://pcsclite.apdu.fr/api/group__API.html#gae49c3c894ad7ac12a5b896bde70d0382
|
|
17308
|
+
Microsoft: https://learn.microsoft.com/en-us/windows/win32/api/winscard/nf-winscard-scardstatusa
|
|
17309
|
+
*/
|
|
17310
|
+
export type statusRequestedPayload = {
|
|
17311
|
+
requestId: string;
|
|
17312
|
+
handle: number;
|
|
17313
|
+
}
|
|
17314
|
+
/**
|
|
17315
|
+
* Fired when |SCardBeginTransaction| is called.
|
|
17316
|
+
|
|
17317
|
+
This maps to:
|
|
17318
|
+
PC/SC Lite: https://pcsclite.apdu.fr/api/group__API.html#gaddb835dce01a0da1d6ca02d33ee7d861
|
|
17319
|
+
Microsoft: https://learn.microsoft.com/en-us/windows/win32/api/winscard/nf-winscard-scardbegintransaction
|
|
17320
|
+
*/
|
|
17321
|
+
export type beginTransactionRequestedPayload = {
|
|
17322
|
+
requestId: string;
|
|
17323
|
+
handle: number;
|
|
17324
|
+
}
|
|
17325
|
+
/**
|
|
17326
|
+
* Fired when |SCardEndTransaction| is called.
|
|
17327
|
+
|
|
17328
|
+
This maps to:
|
|
17329
|
+
PC/SC Lite: https://pcsclite.apdu.fr/api/group__API.html#gae8742473b404363e5c587f570d7e2f3b
|
|
17330
|
+
Microsoft: https://learn.microsoft.com/en-us/windows/win32/api/winscard/nf-winscard-scardendtransaction
|
|
17331
|
+
*/
|
|
17332
|
+
export type endTransactionRequestedPayload = {
|
|
17333
|
+
requestId: string;
|
|
17334
|
+
handle: number;
|
|
17335
|
+
disposition: Disposition;
|
|
17336
|
+
}
|
|
17337
|
+
|
|
17338
|
+
/**
|
|
17339
|
+
* Enables the |SmartCardEmulation| domain.
|
|
17340
|
+
*/
|
|
17341
|
+
export type enableParameters = {
|
|
17342
|
+
}
|
|
17343
|
+
export type enableReturnValue = {
|
|
17344
|
+
}
|
|
17345
|
+
/**
|
|
17346
|
+
* Disables the |SmartCardEmulation| domain.
|
|
17347
|
+
*/
|
|
17348
|
+
export type disableParameters = {
|
|
17349
|
+
}
|
|
17350
|
+
export type disableReturnValue = {
|
|
17351
|
+
}
|
|
17352
|
+
/**
|
|
17353
|
+
* Reports the successful result of a |SCardEstablishContext| call.
|
|
17354
|
+
|
|
17355
|
+
This maps to:
|
|
17356
|
+
PC/SC Lite: https://pcsclite.apdu.fr/api/group__API.html#gaa1b8970169fd4883a6dc4a8f43f19b67
|
|
17357
|
+
Microsoft: https://learn.microsoft.com/en-us/windows/win32/api/winscard/nf-winscard-scardestablishcontext
|
|
17358
|
+
*/
|
|
17359
|
+
export type reportEstablishContextResultParameters = {
|
|
17360
|
+
requestId: string;
|
|
17361
|
+
contextId: number;
|
|
17362
|
+
}
|
|
17363
|
+
export type reportEstablishContextResultReturnValue = {
|
|
17364
|
+
}
|
|
17365
|
+
/**
|
|
17366
|
+
* Reports the successful result of a |SCardReleaseContext| call.
|
|
17367
|
+
|
|
17368
|
+
This maps to:
|
|
17369
|
+
PC/SC Lite: https://pcsclite.apdu.fr/api/group__API.html#ga6aabcba7744c5c9419fdd6404f73a934
|
|
17370
|
+
Microsoft: https://learn.microsoft.com/en-us/windows/win32/api/winscard/nf-winscard-scardreleasecontext
|
|
17371
|
+
*/
|
|
17372
|
+
export type reportReleaseContextResultParameters = {
|
|
17373
|
+
requestId: string;
|
|
17374
|
+
}
|
|
17375
|
+
export type reportReleaseContextResultReturnValue = {
|
|
17376
|
+
}
|
|
17377
|
+
/**
|
|
17378
|
+
* Reports the successful result of a |SCardListReaders| call.
|
|
17379
|
+
|
|
17380
|
+
This maps to:
|
|
17381
|
+
PC/SC Lite: https://pcsclite.apdu.fr/api/group__API.html#ga93b07815789b3cf2629d439ecf20f0d9
|
|
17382
|
+
Microsoft: https://learn.microsoft.com/en-us/windows/win32/api/winscard/nf-winscard-scardlistreadersa
|
|
17383
|
+
*/
|
|
17384
|
+
export type reportListReadersResultParameters = {
|
|
17385
|
+
requestId: string;
|
|
17386
|
+
readers: string[];
|
|
17387
|
+
}
|
|
17388
|
+
export type reportListReadersResultReturnValue = {
|
|
17389
|
+
}
|
|
17390
|
+
/**
|
|
17391
|
+
* Reports the successful result of a |SCardGetStatusChange| call.
|
|
17392
|
+
|
|
17393
|
+
This maps to:
|
|
17394
|
+
PC/SC Lite: https://pcsclite.apdu.fr/api/group__API.html#ga33247d5d1257d59e55647c3bb717db24
|
|
17395
|
+
Microsoft: https://learn.microsoft.com/en-us/windows/win32/api/winscard/nf-winscard-scardgetstatuschangea
|
|
17396
|
+
*/
|
|
17397
|
+
export type reportGetStatusChangeResultParameters = {
|
|
17398
|
+
requestId: string;
|
|
17399
|
+
readerStates: ReaderStateOut[];
|
|
17400
|
+
}
|
|
17401
|
+
export type reportGetStatusChangeResultReturnValue = {
|
|
17402
|
+
}
|
|
17403
|
+
/**
|
|
17404
|
+
* Reports the result of a |SCardBeginTransaction| call.
|
|
17405
|
+
On success, this creates a new transaction object.
|
|
17406
|
+
|
|
17407
|
+
This maps to:
|
|
17408
|
+
PC/SC Lite: https://pcsclite.apdu.fr/api/group__API.html#gaddb835dce01a0da1d6ca02d33ee7d861
|
|
17409
|
+
Microsoft: https://learn.microsoft.com/en-us/windows/win32/api/winscard/nf-winscard-scardbegintransaction
|
|
17410
|
+
*/
|
|
17411
|
+
export type reportBeginTransactionResultParameters = {
|
|
17412
|
+
requestId: string;
|
|
17413
|
+
handle: number;
|
|
17414
|
+
}
|
|
17415
|
+
export type reportBeginTransactionResultReturnValue = {
|
|
17416
|
+
}
|
|
17417
|
+
/**
|
|
17418
|
+
* Reports the successful result of a call that returns only a result code.
|
|
17419
|
+
Used for: |SCardCancel|, |SCardDisconnect|, |SCardSetAttrib|, |SCardEndTransaction|.
|
|
17420
|
+
|
|
17421
|
+
This maps to:
|
|
17422
|
+
1. SCardCancel
|
|
17423
|
+
PC/SC Lite: https://pcsclite.apdu.fr/api/group__API.html#gaacbbc0c6d6c0cbbeb4f4debf6fbeeee6
|
|
17424
|
+
Microsoft: https://learn.microsoft.com/en-us/windows/win32/api/winscard/nf-winscard-scardcancel
|
|
17425
|
+
|
|
17426
|
+
2. SCardDisconnect
|
|
17427
|
+
PC/SC Lite: https://pcsclite.apdu.fr/api/group__API.html#ga4be198045c73ec0deb79e66c0ca1738a
|
|
17428
|
+
Microsoft: https://learn.microsoft.com/en-us/windows/win32/api/winscard/nf-winscard-scarddisconnect
|
|
17429
|
+
|
|
17430
|
+
3. SCardSetAttrib
|
|
17431
|
+
PC/SC Lite: https://pcsclite.apdu.fr/api/group__API.html#ga060f0038a4ddfd5dd2b8fadf3c3a2e4f
|
|
17432
|
+
Microsoft: https://learn.microsoft.com/en-us/windows/win32/api/winscard/nf-winscard-scardsetattrib
|
|
17433
|
+
|
|
17434
|
+
4. SCardEndTransaction
|
|
17435
|
+
PC/SC Lite: https://pcsclite.apdu.fr/api/group__API.html#gae8742473b404363e5c587f570d7e2f3b
|
|
17436
|
+
Microsoft: https://learn.microsoft.com/en-us/windows/win32/api/winscard/nf-winscard-scardendtransaction
|
|
17437
|
+
*/
|
|
17438
|
+
export type reportPlainResultParameters = {
|
|
17439
|
+
requestId: string;
|
|
17440
|
+
}
|
|
17441
|
+
export type reportPlainResultReturnValue = {
|
|
17442
|
+
}
|
|
17443
|
+
/**
|
|
17444
|
+
* Reports the successful result of a |SCardConnect| call.
|
|
17445
|
+
|
|
17446
|
+
This maps to:
|
|
17447
|
+
PC/SC Lite: https://pcsclite.apdu.fr/api/group__API.html#ga4e515829752e0a8dbc4d630696a8d6a5
|
|
17448
|
+
Microsoft: https://learn.microsoft.com/en-us/windows/win32/api/winscard/nf-winscard-scardconnecta
|
|
17449
|
+
*/
|
|
17450
|
+
export type reportConnectResultParameters = {
|
|
17451
|
+
requestId: string;
|
|
17452
|
+
handle: number;
|
|
17453
|
+
activeProtocol?: Protocol;
|
|
17454
|
+
}
|
|
17455
|
+
export type reportConnectResultReturnValue = {
|
|
17456
|
+
}
|
|
17457
|
+
/**
|
|
17458
|
+
* Reports the successful result of a call that sends back data on success.
|
|
17459
|
+
Used for |SCardTransmit|, |SCardControl|, and |SCardGetAttrib|.
|
|
17460
|
+
|
|
17461
|
+
This maps to:
|
|
17462
|
+
1. SCardTransmit
|
|
17463
|
+
PC/SC Lite: https://pcsclite.apdu.fr/api/group__API.html#ga9a2d77242a271310269065e64633ab99
|
|
17464
|
+
Microsoft: https://learn.microsoft.com/en-us/windows/win32/api/winscard/nf-winscard-scardtransmit
|
|
17465
|
+
|
|
17466
|
+
2. SCardControl
|
|
17467
|
+
PC/SC Lite: https://pcsclite.apdu.fr/api/group__API.html#gac3454d4657110fd7f753b2d3d8f4e32f
|
|
17468
|
+
Microsoft: https://learn.microsoft.com/en-us/windows/win32/api/winscard/nf-winscard-scardcontrol
|
|
17469
|
+
|
|
17470
|
+
3. SCardGetAttrib
|
|
17471
|
+
PC/SC Lite: https://pcsclite.apdu.fr/api/group__API.html#gaacfec51917255b7a25b94c5104961602
|
|
17472
|
+
Microsoft: https://learn.microsoft.com/en-us/windows/win32/api/winscard/nf-winscard-scardgetattrib
|
|
17473
|
+
*/
|
|
17474
|
+
export type reportDataResultParameters = {
|
|
17475
|
+
requestId: string;
|
|
17476
|
+
data: binary;
|
|
17477
|
+
}
|
|
17478
|
+
export type reportDataResultReturnValue = {
|
|
17479
|
+
}
|
|
17480
|
+
/**
|
|
17481
|
+
* Reports the successful result of a |SCardStatus| call.
|
|
17482
|
+
|
|
17483
|
+
This maps to:
|
|
17484
|
+
PC/SC Lite: https://pcsclite.apdu.fr/api/group__API.html#gae49c3c894ad7ac12a5b896bde70d0382
|
|
17485
|
+
Microsoft: https://learn.microsoft.com/en-us/windows/win32/api/winscard/nf-winscard-scardstatusa
|
|
17486
|
+
*/
|
|
17487
|
+
export type reportStatusResultParameters = {
|
|
17488
|
+
requestId: string;
|
|
17489
|
+
readerName: string;
|
|
17490
|
+
state: ConnectionState;
|
|
17491
|
+
atr: binary;
|
|
17492
|
+
protocol?: Protocol;
|
|
17493
|
+
}
|
|
17494
|
+
export type reportStatusResultReturnValue = {
|
|
17495
|
+
}
|
|
17496
|
+
/**
|
|
17497
|
+
* Reports an error result for the given request.
|
|
17498
|
+
*/
|
|
17499
|
+
export type reportErrorParameters = {
|
|
17500
|
+
requestId: string;
|
|
17501
|
+
resultCode: ResultCode;
|
|
17502
|
+
}
|
|
17503
|
+
export type reportErrorReturnValue = {
|
|
17504
|
+
}
|
|
17505
|
+
}
|
|
17506
|
+
|
|
16774
17507
|
export namespace Storage {
|
|
16775
17508
|
export type SerializedStorageKey = string;
|
|
16776
17509
|
/**
|
|
@@ -18393,6 +19126,16 @@ present in the tab UI strip. Cannot be created with `forTab: true`, `newWindow:
|
|
|
18393
19126
|
`background: false`. The life-time of the tab is limited to the life-time of the session.
|
|
18394
19127
|
*/
|
|
18395
19128
|
hidden?: boolean;
|
|
19129
|
+
/**
|
|
19130
|
+
* If specified, the option is used to determine if the new target should
|
|
19131
|
+
be focused or not. By default, the focus behavior depends on the
|
|
19132
|
+
value of the background field. For example, background=false and focus=false
|
|
19133
|
+
will result in the target tab being opened but the browser window remain
|
|
19134
|
+
unchanged (if it was in the background, it will remain in the background)
|
|
19135
|
+
and background=false with focus=undefined will result in the window being focused.
|
|
19136
|
+
Using background: true and focus: true is not supported and will result in an error.
|
|
19137
|
+
*/
|
|
19138
|
+
focus?: boolean;
|
|
18396
19139
|
}
|
|
18397
19140
|
export type createTargetReturnValue = {
|
|
18398
19141
|
/**
|
|
@@ -19393,6 +20136,83 @@ https://w3c.github.io/webauthn/#sctn-automation-set-credential-properties
|
|
|
19393
20136
|
}
|
|
19394
20137
|
}
|
|
19395
20138
|
|
|
20139
|
+
export namespace WebMCP {
|
|
20140
|
+
/**
|
|
20141
|
+
* Tool annotations
|
|
20142
|
+
*/
|
|
20143
|
+
export interface Annotation {
|
|
20144
|
+
/**
|
|
20145
|
+
* A hint indicating that the tool does not modify any state.
|
|
20146
|
+
*/
|
|
20147
|
+
readOnly?: boolean;
|
|
20148
|
+
/**
|
|
20149
|
+
* If the declarative tool was declared with the autosubmit attribute.
|
|
20150
|
+
*/
|
|
20151
|
+
autosubmit?: boolean;
|
|
20152
|
+
}
|
|
20153
|
+
/**
|
|
20154
|
+
* Definition of a tool that can be invoked.
|
|
20155
|
+
*/
|
|
20156
|
+
export interface Tool {
|
|
20157
|
+
/**
|
|
20158
|
+
* Tool name.
|
|
20159
|
+
*/
|
|
20160
|
+
name: string;
|
|
20161
|
+
/**
|
|
20162
|
+
* Tool description.
|
|
20163
|
+
*/
|
|
20164
|
+
description: string;
|
|
20165
|
+
/**
|
|
20166
|
+
* Schema for the tool's input parameters.
|
|
20167
|
+
*/
|
|
20168
|
+
inputSchema?: { [key: string]: string };
|
|
20169
|
+
/**
|
|
20170
|
+
* Optional annotations for the tool.
|
|
20171
|
+
*/
|
|
20172
|
+
annotations?: Annotation;
|
|
20173
|
+
/**
|
|
20174
|
+
* Frame identifier associated with the tool registration.
|
|
20175
|
+
*/
|
|
20176
|
+
frameId: Page.FrameId;
|
|
20177
|
+
/**
|
|
20178
|
+
* Optional node ID for declarative tools.
|
|
20179
|
+
*/
|
|
20180
|
+
backendNodeId?: DOM.BackendNodeId;
|
|
20181
|
+
/**
|
|
20182
|
+
* The stack trace at the time of the registration.
|
|
20183
|
+
*/
|
|
20184
|
+
stackTrace?: Runtime.StackTrace;
|
|
20185
|
+
}
|
|
20186
|
+
|
|
20187
|
+
/**
|
|
20188
|
+
* Event fired when new tools are added.
|
|
20189
|
+
*/
|
|
20190
|
+
export type toolsAddedPayload = {
|
|
20191
|
+
/**
|
|
20192
|
+
* Array of tools that were added.
|
|
20193
|
+
*/
|
|
20194
|
+
tools: Tool[];
|
|
20195
|
+
}
|
|
20196
|
+
/**
|
|
20197
|
+
* Event fired when tools are removed.
|
|
20198
|
+
*/
|
|
20199
|
+
export type toolsRemovedPayload = {
|
|
20200
|
+
/**
|
|
20201
|
+
* Array of tools that were removed.
|
|
20202
|
+
*/
|
|
20203
|
+
tools: Tool[];
|
|
20204
|
+
}
|
|
20205
|
+
|
|
20206
|
+
/**
|
|
20207
|
+
* Enables the WebMCP domain, allowing events to be sent. Enabling the domain will trigger a toolsAdded event for
|
|
20208
|
+
all currently registered tools.
|
|
20209
|
+
*/
|
|
20210
|
+
export type enableParameters = {
|
|
20211
|
+
}
|
|
20212
|
+
export type enableReturnValue = {
|
|
20213
|
+
}
|
|
20214
|
+
}
|
|
20215
|
+
|
|
19396
20216
|
/**
|
|
19397
20217
|
* This domain is deprecated - use Runtime or Log instead.
|
|
19398
20218
|
*/
|
|
@@ -22116,6 +22936,7 @@ Error was thrown.
|
|
|
22116
22936
|
"DOM.pseudoElementAdded": DOM.pseudoElementAddedPayload;
|
|
22117
22937
|
"DOM.topLayerElementsUpdated": DOM.topLayerElementsUpdatedPayload;
|
|
22118
22938
|
"DOM.scrollableFlagUpdated": DOM.scrollableFlagUpdatedPayload;
|
|
22939
|
+
"DOM.adRelatedStateUpdated": DOM.adRelatedStateUpdatedPayload;
|
|
22119
22940
|
"DOM.affectedByStartingStylesFlagUpdated": DOM.affectedByStartingStylesFlagUpdatedPayload;
|
|
22120
22941
|
"DOM.pseudoElementRemoved": DOM.pseudoElementRemovedPayload;
|
|
22121
22942
|
"DOM.setChildNodes": DOM.setChildNodesPayload;
|
|
@@ -22127,6 +22948,7 @@ Error was thrown.
|
|
|
22127
22948
|
"DOMStorage.domStorageItemsCleared": DOMStorage.domStorageItemsClearedPayload;
|
|
22128
22949
|
"DeviceAccess.deviceRequestPrompted": DeviceAccess.deviceRequestPromptedPayload;
|
|
22129
22950
|
"Emulation.virtualTimeBudgetExpired": Emulation.virtualTimeBudgetExpiredPayload;
|
|
22951
|
+
"Emulation.screenOrientationLockChanged": Emulation.screenOrientationLockChangedPayload;
|
|
22130
22952
|
"FedCm.dialogShown": FedCm.dialogShownPayload;
|
|
22131
22953
|
"FedCm.dialogClosed": FedCm.dialogClosedPayload;
|
|
22132
22954
|
"Fetch.requestPaused": Fetch.requestPausedPayload;
|
|
@@ -22191,6 +23013,8 @@ Error was thrown.
|
|
|
22191
23013
|
"Overlay.inspectNodeRequested": Overlay.inspectNodeRequestedPayload;
|
|
22192
23014
|
"Overlay.nodeHighlightRequested": Overlay.nodeHighlightRequestedPayload;
|
|
22193
23015
|
"Overlay.screenshotRequested": Overlay.screenshotRequestedPayload;
|
|
23016
|
+
"Overlay.inspectPanelShowRequested": Overlay.inspectPanelShowRequestedPayload;
|
|
23017
|
+
"Overlay.inspectedElementWindowRestored": Overlay.inspectedElementWindowRestoredPayload;
|
|
22194
23018
|
"Overlay.inspectModeCanceled": Overlay.inspectModeCanceledPayload;
|
|
22195
23019
|
"Page.domContentEventFired": Page.domContentEventFiredPayload;
|
|
22196
23020
|
"Page.fileChooserOpened": Page.fileChooserOpenedPayload;
|
|
@@ -22234,6 +23058,20 @@ Error was thrown.
|
|
|
22234
23058
|
"ServiceWorker.workerErrorReported": ServiceWorker.workerErrorReportedPayload;
|
|
22235
23059
|
"ServiceWorker.workerRegistrationUpdated": ServiceWorker.workerRegistrationUpdatedPayload;
|
|
22236
23060
|
"ServiceWorker.workerVersionUpdated": ServiceWorker.workerVersionUpdatedPayload;
|
|
23061
|
+
"SmartCardEmulation.establishContextRequested": SmartCardEmulation.establishContextRequestedPayload;
|
|
23062
|
+
"SmartCardEmulation.releaseContextRequested": SmartCardEmulation.releaseContextRequestedPayload;
|
|
23063
|
+
"SmartCardEmulation.listReadersRequested": SmartCardEmulation.listReadersRequestedPayload;
|
|
23064
|
+
"SmartCardEmulation.getStatusChangeRequested": SmartCardEmulation.getStatusChangeRequestedPayload;
|
|
23065
|
+
"SmartCardEmulation.cancelRequested": SmartCardEmulation.cancelRequestedPayload;
|
|
23066
|
+
"SmartCardEmulation.connectRequested": SmartCardEmulation.connectRequestedPayload;
|
|
23067
|
+
"SmartCardEmulation.disconnectRequested": SmartCardEmulation.disconnectRequestedPayload;
|
|
23068
|
+
"SmartCardEmulation.transmitRequested": SmartCardEmulation.transmitRequestedPayload;
|
|
23069
|
+
"SmartCardEmulation.controlRequested": SmartCardEmulation.controlRequestedPayload;
|
|
23070
|
+
"SmartCardEmulation.getAttribRequested": SmartCardEmulation.getAttribRequestedPayload;
|
|
23071
|
+
"SmartCardEmulation.setAttribRequested": SmartCardEmulation.setAttribRequestedPayload;
|
|
23072
|
+
"SmartCardEmulation.statusRequested": SmartCardEmulation.statusRequestedPayload;
|
|
23073
|
+
"SmartCardEmulation.beginTransactionRequested": SmartCardEmulation.beginTransactionRequestedPayload;
|
|
23074
|
+
"SmartCardEmulation.endTransactionRequested": SmartCardEmulation.endTransactionRequestedPayload;
|
|
22237
23075
|
"Storage.cacheStorageContentUpdated": Storage.cacheStorageContentUpdatedPayload;
|
|
22238
23076
|
"Storage.cacheStorageListUpdated": Storage.cacheStorageListUpdatedPayload;
|
|
22239
23077
|
"Storage.indexedDBContentUpdated": Storage.indexedDBContentUpdatedPayload;
|
|
@@ -22277,6 +23115,8 @@ Error was thrown.
|
|
|
22277
23115
|
"WebAuthn.credentialDeleted": WebAuthn.credentialDeletedPayload;
|
|
22278
23116
|
"WebAuthn.credentialUpdated": WebAuthn.credentialUpdatedPayload;
|
|
22279
23117
|
"WebAuthn.credentialAsserted": WebAuthn.credentialAssertedPayload;
|
|
23118
|
+
"WebMCP.toolsAdded": WebMCP.toolsAddedPayload;
|
|
23119
|
+
"WebMCP.toolsRemoved": WebMCP.toolsRemovedPayload;
|
|
22280
23120
|
"Console.messageAdded": Console.messageAddedPayload;
|
|
22281
23121
|
"Debugger.breakpointResolved": Debugger.breakpointResolvedPayload;
|
|
22282
23122
|
"Debugger.paused": Debugger.pausedPayload;
|
|
@@ -22337,6 +23177,7 @@ Error was thrown.
|
|
|
22337
23177
|
["DOM.pseudoElementAdded"]: [DOM.pseudoElementAddedPayload];
|
|
22338
23178
|
["DOM.topLayerElementsUpdated"]: [DOM.topLayerElementsUpdatedPayload];
|
|
22339
23179
|
["DOM.scrollableFlagUpdated"]: [DOM.scrollableFlagUpdatedPayload];
|
|
23180
|
+
["DOM.adRelatedStateUpdated"]: [DOM.adRelatedStateUpdatedPayload];
|
|
22340
23181
|
["DOM.affectedByStartingStylesFlagUpdated"]: [DOM.affectedByStartingStylesFlagUpdatedPayload];
|
|
22341
23182
|
["DOM.pseudoElementRemoved"]: [DOM.pseudoElementRemovedPayload];
|
|
22342
23183
|
["DOM.setChildNodes"]: [DOM.setChildNodesPayload];
|
|
@@ -22348,6 +23189,7 @@ Error was thrown.
|
|
|
22348
23189
|
["DOMStorage.domStorageItemsCleared"]: [DOMStorage.domStorageItemsClearedPayload];
|
|
22349
23190
|
["DeviceAccess.deviceRequestPrompted"]: [DeviceAccess.deviceRequestPromptedPayload];
|
|
22350
23191
|
["Emulation.virtualTimeBudgetExpired"]: [Emulation.virtualTimeBudgetExpiredPayload];
|
|
23192
|
+
["Emulation.screenOrientationLockChanged"]: [Emulation.screenOrientationLockChangedPayload];
|
|
22351
23193
|
["FedCm.dialogShown"]: [FedCm.dialogShownPayload];
|
|
22352
23194
|
["FedCm.dialogClosed"]: [FedCm.dialogClosedPayload];
|
|
22353
23195
|
["Fetch.requestPaused"]: [Fetch.requestPausedPayload];
|
|
@@ -22412,6 +23254,8 @@ Error was thrown.
|
|
|
22412
23254
|
["Overlay.inspectNodeRequested"]: [Overlay.inspectNodeRequestedPayload];
|
|
22413
23255
|
["Overlay.nodeHighlightRequested"]: [Overlay.nodeHighlightRequestedPayload];
|
|
22414
23256
|
["Overlay.screenshotRequested"]: [Overlay.screenshotRequestedPayload];
|
|
23257
|
+
["Overlay.inspectPanelShowRequested"]: [Overlay.inspectPanelShowRequestedPayload];
|
|
23258
|
+
["Overlay.inspectedElementWindowRestored"]: [Overlay.inspectedElementWindowRestoredPayload];
|
|
22415
23259
|
["Overlay.inspectModeCanceled"]: [Overlay.inspectModeCanceledPayload];
|
|
22416
23260
|
["Page.domContentEventFired"]: [Page.domContentEventFiredPayload];
|
|
22417
23261
|
["Page.fileChooserOpened"]: [Page.fileChooserOpenedPayload];
|
|
@@ -22455,6 +23299,20 @@ Error was thrown.
|
|
|
22455
23299
|
["ServiceWorker.workerErrorReported"]: [ServiceWorker.workerErrorReportedPayload];
|
|
22456
23300
|
["ServiceWorker.workerRegistrationUpdated"]: [ServiceWorker.workerRegistrationUpdatedPayload];
|
|
22457
23301
|
["ServiceWorker.workerVersionUpdated"]: [ServiceWorker.workerVersionUpdatedPayload];
|
|
23302
|
+
["SmartCardEmulation.establishContextRequested"]: [SmartCardEmulation.establishContextRequestedPayload];
|
|
23303
|
+
["SmartCardEmulation.releaseContextRequested"]: [SmartCardEmulation.releaseContextRequestedPayload];
|
|
23304
|
+
["SmartCardEmulation.listReadersRequested"]: [SmartCardEmulation.listReadersRequestedPayload];
|
|
23305
|
+
["SmartCardEmulation.getStatusChangeRequested"]: [SmartCardEmulation.getStatusChangeRequestedPayload];
|
|
23306
|
+
["SmartCardEmulation.cancelRequested"]: [SmartCardEmulation.cancelRequestedPayload];
|
|
23307
|
+
["SmartCardEmulation.connectRequested"]: [SmartCardEmulation.connectRequestedPayload];
|
|
23308
|
+
["SmartCardEmulation.disconnectRequested"]: [SmartCardEmulation.disconnectRequestedPayload];
|
|
23309
|
+
["SmartCardEmulation.transmitRequested"]: [SmartCardEmulation.transmitRequestedPayload];
|
|
23310
|
+
["SmartCardEmulation.controlRequested"]: [SmartCardEmulation.controlRequestedPayload];
|
|
23311
|
+
["SmartCardEmulation.getAttribRequested"]: [SmartCardEmulation.getAttribRequestedPayload];
|
|
23312
|
+
["SmartCardEmulation.setAttribRequested"]: [SmartCardEmulation.setAttribRequestedPayload];
|
|
23313
|
+
["SmartCardEmulation.statusRequested"]: [SmartCardEmulation.statusRequestedPayload];
|
|
23314
|
+
["SmartCardEmulation.beginTransactionRequested"]: [SmartCardEmulation.beginTransactionRequestedPayload];
|
|
23315
|
+
["SmartCardEmulation.endTransactionRequested"]: [SmartCardEmulation.endTransactionRequestedPayload];
|
|
22458
23316
|
["Storage.cacheStorageContentUpdated"]: [Storage.cacheStorageContentUpdatedPayload];
|
|
22459
23317
|
["Storage.cacheStorageListUpdated"]: [Storage.cacheStorageListUpdatedPayload];
|
|
22460
23318
|
["Storage.indexedDBContentUpdated"]: [Storage.indexedDBContentUpdatedPayload];
|
|
@@ -22498,6 +23356,8 @@ Error was thrown.
|
|
|
22498
23356
|
["WebAuthn.credentialDeleted"]: [WebAuthn.credentialDeletedPayload];
|
|
22499
23357
|
["WebAuthn.credentialUpdated"]: [WebAuthn.credentialUpdatedPayload];
|
|
22500
23358
|
["WebAuthn.credentialAsserted"]: [WebAuthn.credentialAssertedPayload];
|
|
23359
|
+
["WebMCP.toolsAdded"]: [WebMCP.toolsAddedPayload];
|
|
23360
|
+
["WebMCP.toolsRemoved"]: [WebMCP.toolsRemovedPayload];
|
|
22501
23361
|
["Console.messageAdded"]: [Console.messageAddedPayload];
|
|
22502
23362
|
["Debugger.breakpointResolved"]: [Debugger.breakpointResolvedPayload];
|
|
22503
23363
|
["Debugger.paused"]: [Debugger.pausedPayload];
|
|
@@ -22543,7 +23403,6 @@ Error was thrown.
|
|
|
22543
23403
|
"Audits.getEncodedResponse": Audits.getEncodedResponseParameters;
|
|
22544
23404
|
"Audits.disable": Audits.disableParameters;
|
|
22545
23405
|
"Audits.enable": Audits.enableParameters;
|
|
22546
|
-
"Audits.checkContrast": Audits.checkContrastParameters;
|
|
22547
23406
|
"Audits.checkFormsIssues": Audits.checkFormsIssuesParameters;
|
|
22548
23407
|
"Autofill.trigger": Autofill.triggerParameters;
|
|
22549
23408
|
"Autofill.setAddresses": Autofill.setAddressesParameters;
|
|
@@ -22617,6 +23476,7 @@ Error was thrown.
|
|
|
22617
23476
|
"CSS.setMediaText": CSS.setMediaTextParameters;
|
|
22618
23477
|
"CSS.setContainerQueryText": CSS.setContainerQueryTextParameters;
|
|
22619
23478
|
"CSS.setSupportsText": CSS.setSupportsTextParameters;
|
|
23479
|
+
"CSS.setNavigationText": CSS.setNavigationTextParameters;
|
|
22620
23480
|
"CSS.setScopeText": CSS.setScopeTextParameters;
|
|
22621
23481
|
"CSS.setRuleSelector": CSS.setRuleSelectorParameters;
|
|
22622
23482
|
"CSS.setStyleSheetText": CSS.setStyleSheetTextParameters;
|
|
@@ -22760,11 +23620,15 @@ Error was thrown.
|
|
|
22760
23620
|
"Emulation.setSmallViewportHeightDifferenceOverride": Emulation.setSmallViewportHeightDifferenceOverrideParameters;
|
|
22761
23621
|
"Emulation.getScreenInfos": Emulation.getScreenInfosParameters;
|
|
22762
23622
|
"Emulation.addScreen": Emulation.addScreenParameters;
|
|
23623
|
+
"Emulation.updateScreen": Emulation.updateScreenParameters;
|
|
22763
23624
|
"Emulation.removeScreen": Emulation.removeScreenParameters;
|
|
23625
|
+
"Emulation.setPrimaryScreen": Emulation.setPrimaryScreenParameters;
|
|
22764
23626
|
"EventBreakpoints.setInstrumentationBreakpoint": EventBreakpoints.setInstrumentationBreakpointParameters;
|
|
22765
23627
|
"EventBreakpoints.removeInstrumentationBreakpoint": EventBreakpoints.removeInstrumentationBreakpointParameters;
|
|
22766
23628
|
"EventBreakpoints.disable": EventBreakpoints.disableParameters;
|
|
23629
|
+
"Extensions.triggerAction": Extensions.triggerActionParameters;
|
|
22767
23630
|
"Extensions.loadUnpacked": Extensions.loadUnpackedParameters;
|
|
23631
|
+
"Extensions.getExtensions": Extensions.getExtensionsParameters;
|
|
22768
23632
|
"Extensions.uninstall": Extensions.uninstallParameters;
|
|
22769
23633
|
"Extensions.getStorageItems": Extensions.getStorageItemsParameters;
|
|
22770
23634
|
"Extensions.removeStorageItems": Extensions.removeStorageItemsParameters;
|
|
@@ -22904,6 +23768,7 @@ Error was thrown.
|
|
|
22904
23768
|
"Overlay.setShowFlexOverlays": Overlay.setShowFlexOverlaysParameters;
|
|
22905
23769
|
"Overlay.setShowScrollSnapOverlays": Overlay.setShowScrollSnapOverlaysParameters;
|
|
22906
23770
|
"Overlay.setShowContainerQueryOverlays": Overlay.setShowContainerQueryOverlaysParameters;
|
|
23771
|
+
"Overlay.setShowInspectedElementAnchor": Overlay.setShowInspectedElementAnchorParameters;
|
|
22907
23772
|
"Overlay.setShowPaintRects": Overlay.setShowPaintRectsParameters;
|
|
22908
23773
|
"Overlay.setShowLayoutShiftRegions": Overlay.setShowLayoutShiftRegionsParameters;
|
|
22909
23774
|
"Overlay.setShowScrollBottleneckRects": Overlay.setShowScrollBottleneckRectsParameters;
|
|
@@ -23005,6 +23870,18 @@ Error was thrown.
|
|
|
23005
23870
|
"ServiceWorker.stopWorker": ServiceWorker.stopWorkerParameters;
|
|
23006
23871
|
"ServiceWorker.unregister": ServiceWorker.unregisterParameters;
|
|
23007
23872
|
"ServiceWorker.updateRegistration": ServiceWorker.updateRegistrationParameters;
|
|
23873
|
+
"SmartCardEmulation.enable": SmartCardEmulation.enableParameters;
|
|
23874
|
+
"SmartCardEmulation.disable": SmartCardEmulation.disableParameters;
|
|
23875
|
+
"SmartCardEmulation.reportEstablishContextResult": SmartCardEmulation.reportEstablishContextResultParameters;
|
|
23876
|
+
"SmartCardEmulation.reportReleaseContextResult": SmartCardEmulation.reportReleaseContextResultParameters;
|
|
23877
|
+
"SmartCardEmulation.reportListReadersResult": SmartCardEmulation.reportListReadersResultParameters;
|
|
23878
|
+
"SmartCardEmulation.reportGetStatusChangeResult": SmartCardEmulation.reportGetStatusChangeResultParameters;
|
|
23879
|
+
"SmartCardEmulation.reportBeginTransactionResult": SmartCardEmulation.reportBeginTransactionResultParameters;
|
|
23880
|
+
"SmartCardEmulation.reportPlainResult": SmartCardEmulation.reportPlainResultParameters;
|
|
23881
|
+
"SmartCardEmulation.reportConnectResult": SmartCardEmulation.reportConnectResultParameters;
|
|
23882
|
+
"SmartCardEmulation.reportDataResult": SmartCardEmulation.reportDataResultParameters;
|
|
23883
|
+
"SmartCardEmulation.reportStatusResult": SmartCardEmulation.reportStatusResultParameters;
|
|
23884
|
+
"SmartCardEmulation.reportError": SmartCardEmulation.reportErrorParameters;
|
|
23008
23885
|
"Storage.getStorageKeyForFrame": Storage.getStorageKeyForFrameParameters;
|
|
23009
23886
|
"Storage.getStorageKey": Storage.getStorageKeyParameters;
|
|
23010
23887
|
"Storage.clearDataForOrigin": Storage.clearDataForOriginParameters;
|
|
@@ -23089,6 +23966,7 @@ Error was thrown.
|
|
|
23089
23966
|
"WebAuthn.setUserVerified": WebAuthn.setUserVerifiedParameters;
|
|
23090
23967
|
"WebAuthn.setAutomaticPresenceSimulation": WebAuthn.setAutomaticPresenceSimulationParameters;
|
|
23091
23968
|
"WebAuthn.setCredentialProperties": WebAuthn.setCredentialPropertiesParameters;
|
|
23969
|
+
"WebMCP.enable": WebMCP.enableParameters;
|
|
23092
23970
|
"Console.clearMessages": Console.clearMessagesParameters;
|
|
23093
23971
|
"Console.disable": Console.disableParameters;
|
|
23094
23972
|
"Console.enable": Console.enableParameters;
|
|
@@ -23193,7 +24071,6 @@ Error was thrown.
|
|
|
23193
24071
|
"Audits.getEncodedResponse": Audits.getEncodedResponseReturnValue;
|
|
23194
24072
|
"Audits.disable": Audits.disableReturnValue;
|
|
23195
24073
|
"Audits.enable": Audits.enableReturnValue;
|
|
23196
|
-
"Audits.checkContrast": Audits.checkContrastReturnValue;
|
|
23197
24074
|
"Audits.checkFormsIssues": Audits.checkFormsIssuesReturnValue;
|
|
23198
24075
|
"Autofill.trigger": Autofill.triggerReturnValue;
|
|
23199
24076
|
"Autofill.setAddresses": Autofill.setAddressesReturnValue;
|
|
@@ -23267,6 +24144,7 @@ Error was thrown.
|
|
|
23267
24144
|
"CSS.setMediaText": CSS.setMediaTextReturnValue;
|
|
23268
24145
|
"CSS.setContainerQueryText": CSS.setContainerQueryTextReturnValue;
|
|
23269
24146
|
"CSS.setSupportsText": CSS.setSupportsTextReturnValue;
|
|
24147
|
+
"CSS.setNavigationText": CSS.setNavigationTextReturnValue;
|
|
23270
24148
|
"CSS.setScopeText": CSS.setScopeTextReturnValue;
|
|
23271
24149
|
"CSS.setRuleSelector": CSS.setRuleSelectorReturnValue;
|
|
23272
24150
|
"CSS.setStyleSheetText": CSS.setStyleSheetTextReturnValue;
|
|
@@ -23410,11 +24288,15 @@ Error was thrown.
|
|
|
23410
24288
|
"Emulation.setSmallViewportHeightDifferenceOverride": Emulation.setSmallViewportHeightDifferenceOverrideReturnValue;
|
|
23411
24289
|
"Emulation.getScreenInfos": Emulation.getScreenInfosReturnValue;
|
|
23412
24290
|
"Emulation.addScreen": Emulation.addScreenReturnValue;
|
|
24291
|
+
"Emulation.updateScreen": Emulation.updateScreenReturnValue;
|
|
23413
24292
|
"Emulation.removeScreen": Emulation.removeScreenReturnValue;
|
|
24293
|
+
"Emulation.setPrimaryScreen": Emulation.setPrimaryScreenReturnValue;
|
|
23414
24294
|
"EventBreakpoints.setInstrumentationBreakpoint": EventBreakpoints.setInstrumentationBreakpointReturnValue;
|
|
23415
24295
|
"EventBreakpoints.removeInstrumentationBreakpoint": EventBreakpoints.removeInstrumentationBreakpointReturnValue;
|
|
23416
24296
|
"EventBreakpoints.disable": EventBreakpoints.disableReturnValue;
|
|
24297
|
+
"Extensions.triggerAction": Extensions.triggerActionReturnValue;
|
|
23417
24298
|
"Extensions.loadUnpacked": Extensions.loadUnpackedReturnValue;
|
|
24299
|
+
"Extensions.getExtensions": Extensions.getExtensionsReturnValue;
|
|
23418
24300
|
"Extensions.uninstall": Extensions.uninstallReturnValue;
|
|
23419
24301
|
"Extensions.getStorageItems": Extensions.getStorageItemsReturnValue;
|
|
23420
24302
|
"Extensions.removeStorageItems": Extensions.removeStorageItemsReturnValue;
|
|
@@ -23554,6 +24436,7 @@ Error was thrown.
|
|
|
23554
24436
|
"Overlay.setShowFlexOverlays": Overlay.setShowFlexOverlaysReturnValue;
|
|
23555
24437
|
"Overlay.setShowScrollSnapOverlays": Overlay.setShowScrollSnapOverlaysReturnValue;
|
|
23556
24438
|
"Overlay.setShowContainerQueryOverlays": Overlay.setShowContainerQueryOverlaysReturnValue;
|
|
24439
|
+
"Overlay.setShowInspectedElementAnchor": Overlay.setShowInspectedElementAnchorReturnValue;
|
|
23557
24440
|
"Overlay.setShowPaintRects": Overlay.setShowPaintRectsReturnValue;
|
|
23558
24441
|
"Overlay.setShowLayoutShiftRegions": Overlay.setShowLayoutShiftRegionsReturnValue;
|
|
23559
24442
|
"Overlay.setShowScrollBottleneckRects": Overlay.setShowScrollBottleneckRectsReturnValue;
|
|
@@ -23655,6 +24538,18 @@ Error was thrown.
|
|
|
23655
24538
|
"ServiceWorker.stopWorker": ServiceWorker.stopWorkerReturnValue;
|
|
23656
24539
|
"ServiceWorker.unregister": ServiceWorker.unregisterReturnValue;
|
|
23657
24540
|
"ServiceWorker.updateRegistration": ServiceWorker.updateRegistrationReturnValue;
|
|
24541
|
+
"SmartCardEmulation.enable": SmartCardEmulation.enableReturnValue;
|
|
24542
|
+
"SmartCardEmulation.disable": SmartCardEmulation.disableReturnValue;
|
|
24543
|
+
"SmartCardEmulation.reportEstablishContextResult": SmartCardEmulation.reportEstablishContextResultReturnValue;
|
|
24544
|
+
"SmartCardEmulation.reportReleaseContextResult": SmartCardEmulation.reportReleaseContextResultReturnValue;
|
|
24545
|
+
"SmartCardEmulation.reportListReadersResult": SmartCardEmulation.reportListReadersResultReturnValue;
|
|
24546
|
+
"SmartCardEmulation.reportGetStatusChangeResult": SmartCardEmulation.reportGetStatusChangeResultReturnValue;
|
|
24547
|
+
"SmartCardEmulation.reportBeginTransactionResult": SmartCardEmulation.reportBeginTransactionResultReturnValue;
|
|
24548
|
+
"SmartCardEmulation.reportPlainResult": SmartCardEmulation.reportPlainResultReturnValue;
|
|
24549
|
+
"SmartCardEmulation.reportConnectResult": SmartCardEmulation.reportConnectResultReturnValue;
|
|
24550
|
+
"SmartCardEmulation.reportDataResult": SmartCardEmulation.reportDataResultReturnValue;
|
|
24551
|
+
"SmartCardEmulation.reportStatusResult": SmartCardEmulation.reportStatusResultReturnValue;
|
|
24552
|
+
"SmartCardEmulation.reportError": SmartCardEmulation.reportErrorReturnValue;
|
|
23658
24553
|
"Storage.getStorageKeyForFrame": Storage.getStorageKeyForFrameReturnValue;
|
|
23659
24554
|
"Storage.getStorageKey": Storage.getStorageKeyReturnValue;
|
|
23660
24555
|
"Storage.clearDataForOrigin": Storage.clearDataForOriginReturnValue;
|
|
@@ -23739,6 +24634,7 @@ Error was thrown.
|
|
|
23739
24634
|
"WebAuthn.setUserVerified": WebAuthn.setUserVerifiedReturnValue;
|
|
23740
24635
|
"WebAuthn.setAutomaticPresenceSimulation": WebAuthn.setAutomaticPresenceSimulationReturnValue;
|
|
23741
24636
|
"WebAuthn.setCredentialProperties": WebAuthn.setCredentialPropertiesReturnValue;
|
|
24637
|
+
"WebMCP.enable": WebMCP.enableReturnValue;
|
|
23742
24638
|
"Console.clearMessages": Console.clearMessagesReturnValue;
|
|
23743
24639
|
"Console.disable": Console.disableReturnValue;
|
|
23744
24640
|
"Console.enable": Console.enableReturnValue;
|