@smoothdeploy/playwright-core 1.58.4 → 1.60.0-beta-1780662356000
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 +7 -4070
- package/browsers.json +16 -14
- package/cli.js +4 -1
- package/index.js +1 -1
- package/lib/bootstrap.js +77 -0
- package/lib/coreBundle.js +70057 -0
- package/lib/entry/cliDaemon.js +5 -0
- package/lib/entry/dashboardApp.js +3 -0
- package/lib/entry/mcp.js +10 -0
- package/lib/entry/oopBrowserDownload.js +3 -0
- package/lib/{server/deviceDescriptors.js → package.js} +18 -7
- package/lib/server/deviceDescriptorsSource.json +137 -137
- package/lib/server/electron/loader.js +99 -13
- package/lib/serverRegistry.js +7343 -0
- package/lib/serverRegistry.js.LICENSE +354 -0
- package/lib/tools/cli-client/channelSessions.js +141 -0
- package/lib/tools/cli-client/cli.js +6 -0
- package/lib/tools/cli-client/help.json +679 -0
- package/lib/tools/cli-client/minimist.js +128 -0
- package/lib/tools/cli-client/output.js +343 -0
- package/lib/tools/cli-client/program.js +380 -0
- package/lib/tools/cli-client/registry.js +176 -0
- package/lib/tools/cli-client/session.js +265 -0
- package/lib/tools/cli-client/skill/SKILL.md +388 -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 +241 -0
- package/lib/tools/cli-client/skill/references/session-management.md +225 -0
- package/lib/tools/cli-client/skill/references/spec-driven-testing.md +305 -0
- package/lib/tools/cli-client/skill/references/storage-state.md +275 -0
- package/lib/tools/cli-client/skill/references/test-generation.md +134 -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/dashboard/appIcon.png +0 -0
- package/lib/tools/trace/SKILL.md +171 -0
- package/lib/{server/utils/profiler.js → tools/utils/extension.js} +42 -29
- package/lib/tools/utils/socketConnection.js +108 -0
- package/lib/utilsBundle.js +85377 -68
- package/lib/utilsBundle.js.LICENSE +2002 -0
- package/lib/vite/dashboard/assets/codicon-DCmgc-ay.ttf +0 -0
- package/lib/vite/dashboard/assets/firefox-1bWoP6pv.svg +1 -0
- package/lib/vite/dashboard/assets/firefox-beta-k3eOH_eK.svg +1 -0
- package/lib/vite/dashboard/assets/firefox-nightly-Cp5nfeDT.svg +1 -0
- package/lib/vite/dashboard/assets/index-BY2S1tHT.css +1 -0
- package/lib/vite/dashboard/assets/index-DpEq2p62.js +52 -0
- package/lib/vite/dashboard/assets/safari-na3_-uQk.svg +1 -0
- package/lib/vite/dashboard/index.html +29 -0
- package/lib/vite/dashboard/playwright-logo.svg +24 -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-SGmxtuwi.js → codeMirrorModule-DyIpd_mA.js} +20 -20
- package/lib/vite/recorder/assets/index-4ZiSSCmn.css +1 -0
- package/lib/vite/recorder/assets/index-5q9Mg4LR.js +195 -0
- package/lib/vite/recorder/index.html +2 -2
- package/lib/vite/traceViewer/assets/{codeMirrorModule-BOUrQdmH.js → codeMirrorModule-DZq9EItR.js} +20 -20
- package/lib/vite/traceViewer/assets/defaultSettingsView-D4EpQvB-.js +262 -0
- package/lib/vite/traceViewer/assets/urlMatch-BYQrIQwR.js +1 -0
- package/lib/vite/traceViewer/defaultSettingsView.BDKsFU3c.css +1 -0
- package/lib/vite/traceViewer/index.CcoKXsOB.js +2 -0
- package/lib/vite/traceViewer/{index.BVu7tZDe.css → index.CzXZzn5A.css} +1 -1
- package/lib/vite/traceViewer/index.html +5 -4
- package/lib/vite/traceViewer/snapshot.html +4 -15
- package/lib/vite/traceViewer/snapshot.v8KI4P3m.js +2 -0
- package/lib/vite/traceViewer/sw.bundle.js +4 -4
- package/lib/vite/traceViewer/uiMode.B1W9rAxj.js +6 -0
- package/lib/vite/traceViewer/uiMode.html +4 -3
- package/package.json +4 -14
- package/types/protocol.d.ts +1084 -343
- package/types/types.d.ts +6035 -4360
- package/lib/androidServerImpl.js +0 -65
- package/lib/browserServerImpl.js +0 -120
- package/lib/cli/driver.js +0 -97
- package/lib/cli/program.js +0 -589
- package/lib/cli/programWithTestStub.js +0 -74
- package/lib/client/android.js +0 -361
- package/lib/client/api.js +0 -137
- package/lib/client/artifact.js +0 -79
- package/lib/client/browser.js +0 -161
- package/lib/client/browserContext.js +0 -582
- package/lib/client/browserType.js +0 -185
- package/lib/client/cdpSession.js +0 -51
- package/lib/client/channelOwner.js +0 -195
- package/lib/client/clientHelper.js +0 -64
- package/lib/client/clientInstrumentation.js +0 -65
- package/lib/client/clientStackTrace.js +0 -69
- package/lib/client/clock.js +0 -68
- package/lib/client/connection.js +0 -318
- package/lib/client/consoleMessage.js +0 -58
- package/lib/client/coverage.js +0 -44
- package/lib/client/dialog.js +0 -56
- package/lib/client/download.js +0 -62
- package/lib/client/electron.js +0 -138
- package/lib/client/elementHandle.js +0 -284
- package/lib/client/errors.js +0 -77
- package/lib/client/eventEmitter.js +0 -314
- package/lib/client/events.js +0 -103
- package/lib/client/fetch.js +0 -368
- package/lib/client/fileChooser.js +0 -46
- package/lib/client/fileUtils.js +0 -34
- package/lib/client/frame.js +0 -409
- package/lib/client/harRouter.js +0 -87
- package/lib/client/input.js +0 -84
- package/lib/client/jsHandle.js +0 -109
- package/lib/client/jsonPipe.js +0 -39
- package/lib/client/localUtils.js +0 -60
- package/lib/client/locator.js +0 -369
- package/lib/client/network.js +0 -747
- package/lib/client/page.js +0 -745
- package/lib/client/pageAgent.js +0 -64
- package/lib/client/platform.js +0 -77
- package/lib/client/playwright.js +0 -71
- package/lib/client/selectors.js +0 -55
- package/lib/client/stream.js +0 -39
- package/lib/client/timeoutSettings.js +0 -79
- package/lib/client/tracing.js +0 -119
- package/lib/client/types.js +0 -28
- package/lib/client/video.js +0 -59
- package/lib/client/waiter.js +0 -142
- package/lib/client/webError.js +0 -39
- package/lib/client/webSocket.js +0 -93
- package/lib/client/worker.js +0 -85
- package/lib/client/writableStream.js +0 -39
- package/lib/generated/bindingsControllerSource.js +0 -28
- package/lib/generated/clockSource.js +0 -28
- package/lib/generated/injectedScriptSource.js +0 -28
- package/lib/generated/pollingRecorderSource.js +0 -28
- package/lib/generated/storageScriptSource.js +0 -28
- package/lib/generated/utilityScriptSource.js +0 -28
- package/lib/generated/webSocketMockSource.js +0 -336
- package/lib/inProcessFactory.js +0 -60
- package/lib/inprocess.js +0 -3
- package/lib/mcpBundle.js +0 -84
- package/lib/mcpBundleImpl/index.js +0 -147
- package/lib/outofprocess.js +0 -76
- package/lib/protocol/serializers.js +0 -197
- package/lib/protocol/validator.js +0 -3023
- package/lib/protocol/validatorPrimitives.js +0 -193
- package/lib/remote/playwrightConnection.js +0 -129
- package/lib/remote/playwrightServer.js +0 -334
- 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/android/android.js +0 -465
- package/lib/server/android/backendAdb.js +0 -177
- package/lib/server/artifact.js +0 -127
- package/lib/server/bidi/bidiBrowser.js +0 -549
- package/lib/server/bidi/bidiChromium.js +0 -149
- package/lib/server/bidi/bidiConnection.js +0 -213
- package/lib/server/bidi/bidiDeserializer.js +0 -116
- package/lib/server/bidi/bidiExecutionContext.js +0 -267
- package/lib/server/bidi/bidiFirefox.js +0 -128
- package/lib/server/bidi/bidiInput.js +0 -146
- package/lib/server/bidi/bidiNetworkManager.js +0 -383
- package/lib/server/bidi/bidiOverCdp.js +0 -102
- package/lib/server/bidi/bidiPage.js +0 -583
- package/lib/server/bidi/bidiPdf.js +0 -106
- package/lib/server/bidi/third_party/bidiCommands.d.js +0 -22
- package/lib/server/bidi/third_party/bidiKeyboard.js +0 -256
- package/lib/server/bidi/third_party/bidiProtocol.js +0 -24
- package/lib/server/bidi/third_party/bidiProtocolCore.js +0 -180
- package/lib/server/bidi/third_party/bidiProtocolPermissions.js +0 -42
- package/lib/server/bidi/third_party/bidiSerializer.js +0 -148
- package/lib/server/bidi/third_party/firefoxPrefs.js +0 -259
- package/lib/server/browser.js +0 -149
- package/lib/server/browserContext.js +0 -700
- package/lib/server/browserType.js +0 -336
- package/lib/server/callLog.js +0 -82
- package/lib/server/chromium/chromium.js +0 -397
- package/lib/server/chromium/chromiumSwitches.js +0 -104
- package/lib/server/chromium/crBrowser.js +0 -520
- package/lib/server/chromium/crConnection.js +0 -197
- package/lib/server/chromium/crCoverage.js +0 -235
- package/lib/server/chromium/crDevTools.js +0 -111
- package/lib/server/chromium/crDragDrop.js +0 -131
- package/lib/server/chromium/crExecutionContext.js +0 -146
- package/lib/server/chromium/crInput.js +0 -187
- package/lib/server/chromium/crNetworkManager.js +0 -707
- package/lib/server/chromium/crPage.js +0 -1001
- package/lib/server/chromium/crPdf.js +0 -121
- package/lib/server/chromium/crProtocolHelper.js +0 -145
- package/lib/server/chromium/crServiceWorker.js +0 -136
- package/lib/server/chromium/defaultFontFamilies.js +0 -162
- package/lib/server/chromium/protocol.d.js +0 -16
- package/lib/server/clock.js +0 -149
- package/lib/server/codegen/csharp.js +0 -327
- package/lib/server/codegen/java.js +0 -274
- package/lib/server/codegen/javascript.js +0 -247
- package/lib/server/codegen/jsonl.js +0 -52
- package/lib/server/codegen/language.js +0 -133
- package/lib/server/codegen/languages.js +0 -68
- package/lib/server/codegen/python.js +0 -279
- package/lib/server/codegen/types.js +0 -16
- package/lib/server/console.js +0 -57
- package/lib/server/cookieStore.js +0 -206
- package/lib/server/debugController.js +0 -181
- package/lib/server/debugger.js +0 -119
- package/lib/server/dialog.js +0 -116
- package/lib/server/dispatchers/androidDispatcher.js +0 -325
- package/lib/server/dispatchers/artifactDispatcher.js +0 -118
- package/lib/server/dispatchers/browserContextDispatcher.js +0 -384
- package/lib/server/dispatchers/browserDispatcher.js +0 -118
- package/lib/server/dispatchers/browserTypeDispatcher.js +0 -64
- package/lib/server/dispatchers/cdpSessionDispatcher.js +0 -44
- package/lib/server/dispatchers/debugControllerDispatcher.js +0 -78
- package/lib/server/dispatchers/dialogDispatcher.js +0 -47
- package/lib/server/dispatchers/dispatcher.js +0 -364
- package/lib/server/dispatchers/electronDispatcher.js +0 -89
- package/lib/server/dispatchers/elementHandlerDispatcher.js +0 -181
- package/lib/server/dispatchers/frameDispatcher.js +0 -227
- package/lib/server/dispatchers/jsHandleDispatcher.js +0 -85
- package/lib/server/dispatchers/jsonPipeDispatcher.js +0 -58
- package/lib/server/dispatchers/localUtilsDispatcher.js +0 -149
- package/lib/server/dispatchers/networkDispatchers.js +0 -213
- package/lib/server/dispatchers/pageAgentDispatcher.js +0 -96
- package/lib/server/dispatchers/pageDispatcher.js +0 -393
- package/lib/server/dispatchers/playwrightDispatcher.js +0 -108
- package/lib/server/dispatchers/streamDispatcher.js +0 -67
- package/lib/server/dispatchers/tracingDispatcher.js +0 -68
- package/lib/server/dispatchers/webSocketRouteDispatcher.js +0 -165
- package/lib/server/dispatchers/writableStreamDispatcher.js +0 -79
- package/lib/server/dom.js +0 -815
- package/lib/server/download.js +0 -70
- package/lib/server/electron/electron.js +0 -273
- package/lib/server/errors.js +0 -69
- package/lib/server/fetch.js +0 -621
- package/lib/server/fileChooser.js +0 -43
- package/lib/server/fileUploadUtils.js +0 -84
- package/lib/server/firefox/ffBrowser.js +0 -418
- package/lib/server/firefox/ffConnection.js +0 -142
- package/lib/server/firefox/ffExecutionContext.js +0 -150
- package/lib/server/firefox/ffInput.js +0 -159
- package/lib/server/firefox/ffNetworkManager.js +0 -256
- package/lib/server/firefox/ffPage.js +0 -497
- package/lib/server/firefox/firefox.js +0 -114
- package/lib/server/firefox/protocol.d.js +0 -16
- package/lib/server/formData.js +0 -147
- package/lib/server/frameSelectors.js +0 -160
- package/lib/server/frames.js +0 -1471
- package/lib/server/har/harRecorder.js +0 -147
- package/lib/server/har/harTracer.js +0 -607
- package/lib/server/harBackend.js +0 -157
- package/lib/server/helper.js +0 -96
- package/lib/server/index.js +0 -58
- package/lib/server/input.js +0 -277
- package/lib/server/instrumentation.js +0 -72
- package/lib/server/javascript.js +0 -291
- package/lib/server/launchApp.js +0 -128
- package/lib/server/localUtils.js +0 -214
- package/lib/server/macEditingCommands.js +0 -143
- package/lib/server/network.js +0 -667
- package/lib/server/page.js +0 -830
- package/lib/server/pipeTransport.js +0 -89
- package/lib/server/playwright.js +0 -69
- package/lib/server/progress.js +0 -132
- package/lib/server/protocolError.js +0 -52
- package/lib/server/recorder/chat.js +0 -161
- package/lib/server/recorder/recorderApp.js +0 -366
- package/lib/server/recorder/recorderRunner.js +0 -138
- package/lib/server/recorder/recorderSignalProcessor.js +0 -83
- package/lib/server/recorder/recorderUtils.js +0 -157
- package/lib/server/recorder/throttledFile.js +0 -57
- package/lib/server/recorder.js +0 -554
- package/lib/server/registry/browserFetcher.js +0 -177
- package/lib/server/registry/dependencies.js +0 -371
- package/lib/server/registry/index.js +0 -1422
- package/lib/server/registry/nativeDeps.js +0 -1280
- package/lib/server/registry/oopDownloadBrowserMain.js +0 -127
- package/lib/server/screencast.js +0 -190
- package/lib/server/screenshotCompositor.js +0 -153
- package/lib/server/screenshotter.js +0 -333
- package/lib/server/selectors.js +0 -112
- package/lib/server/socksClientCertificatesInterceptor.js +0 -383
- package/lib/server/socksInterceptor.js +0 -95
- package/lib/server/trace/recorder/snapshotter.js +0 -147
- package/lib/server/trace/recorder/snapshotterInjected.js +0 -561
- package/lib/server/trace/recorder/tracing.js +0 -604
- package/lib/server/trace/viewer/traceParser.js +0 -72
- package/lib/server/trace/viewer/traceViewer.js +0 -245
- package/lib/server/transport.js +0 -181
- package/lib/server/types.js +0 -28
- package/lib/server/usKeyboardLayout.js +0 -145
- package/lib/server/utils/ascii.js +0 -44
- package/lib/server/utils/comparators.js +0 -139
- package/lib/server/utils/crypto.js +0 -216
- package/lib/server/utils/debug.js +0 -42
- package/lib/server/utils/debugLogger.js +0 -122
- package/lib/server/utils/env.js +0 -73
- package/lib/server/utils/eventsHelper.js +0 -39
- package/lib/server/utils/expectUtils.js +0 -123
- package/lib/server/utils/fileUtils.js +0 -191
- package/lib/server/utils/happyEyeballs.js +0 -207
- package/lib/server/utils/hostPlatform.js +0 -138
- package/lib/server/utils/httpServer.js +0 -203
- package/lib/server/utils/imageUtils.js +0 -141
- package/lib/server/utils/image_tools/colorUtils.js +0 -89
- package/lib/server/utils/image_tools/compare.js +0 -109
- package/lib/server/utils/image_tools/imageChannel.js +0 -78
- package/lib/server/utils/image_tools/stats.js +0 -102
- package/lib/server/utils/linuxUtils.js +0 -71
- package/lib/server/utils/network.js +0 -242
- package/lib/server/utils/nodePlatform.js +0 -154
- package/lib/server/utils/pipeTransport.js +0 -84
- package/lib/server/utils/processLauncher.js +0 -241
- package/lib/server/utils/socksProxy.js +0 -511
- package/lib/server/utils/spawnAsync.js +0 -41
- package/lib/server/utils/task.js +0 -51
- package/lib/server/utils/userAgent.js +0 -98
- package/lib/server/utils/wsServer.js +0 -121
- package/lib/server/utils/zipFile.js +0 -74
- package/lib/server/utils/zones.js +0 -57
- package/lib/server/videoRecorder.js +0 -124
- package/lib/server/webkit/protocol.d.js +0 -16
- package/lib/server/webkit/webkit.js +0 -108
- package/lib/server/webkit/wkBrowser.js +0 -335
- package/lib/server/webkit/wkConnection.js +0 -144
- package/lib/server/webkit/wkExecutionContext.js +0 -154
- package/lib/server/webkit/wkInput.js +0 -181
- package/lib/server/webkit/wkInterceptableRequest.js +0 -197
- package/lib/server/webkit/wkPage.js +0 -1159
- package/lib/server/webkit/wkProvisionalPage.js +0 -83
- package/lib/server/webkit/wkWorkers.js +0 -105
- package/lib/third_party/pixelmatch.js +0 -255
- package/lib/utils/isomorphic/ariaSnapshot.js +0 -455
- package/lib/utils/isomorphic/assert.js +0 -31
- package/lib/utils/isomorphic/colors.js +0 -72
- package/lib/utils/isomorphic/cssParser.js +0 -245
- package/lib/utils/isomorphic/cssTokenizer.js +0 -1051
- package/lib/utils/isomorphic/headers.js +0 -53
- package/lib/utils/isomorphic/locatorGenerators.js +0 -689
- package/lib/utils/isomorphic/locatorParser.js +0 -176
- package/lib/utils/isomorphic/locatorUtils.js +0 -81
- package/lib/utils/isomorphic/lruCache.js +0 -51
- package/lib/utils/isomorphic/manualPromise.js +0 -114
- package/lib/utils/isomorphic/mimeType.js +0 -459
- package/lib/utils/isomorphic/multimap.js +0 -80
- package/lib/utils/isomorphic/protocolFormatter.js +0 -81
- package/lib/utils/isomorphic/protocolMetainfo.js +0 -330
- package/lib/utils/isomorphic/rtti.js +0 -43
- package/lib/utils/isomorphic/selectorParser.js +0 -386
- package/lib/utils/isomorphic/semaphore.js +0 -54
- package/lib/utils/isomorphic/stackTrace.js +0 -158
- package/lib/utils/isomorphic/stringUtils.js +0 -204
- package/lib/utils/isomorphic/time.js +0 -49
- package/lib/utils/isomorphic/timeoutRunner.js +0 -66
- package/lib/utils/isomorphic/trace/entries.js +0 -16
- package/lib/utils/isomorphic/trace/snapshotRenderer.js +0 -499
- package/lib/utils/isomorphic/trace/snapshotServer.js +0 -120
- package/lib/utils/isomorphic/trace/snapshotStorage.js +0 -89
- package/lib/utils/isomorphic/trace/traceLoader.js +0 -131
- package/lib/utils/isomorphic/trace/traceModel.js +0 -365
- package/lib/utils/isomorphic/trace/traceModernizer.js +0 -400
- package/lib/utils/isomorphic/trace/versions/traceV3.js +0 -16
- package/lib/utils/isomorphic/trace/versions/traceV4.js +0 -16
- package/lib/utils/isomorphic/trace/versions/traceV5.js +0 -16
- package/lib/utils/isomorphic/trace/versions/traceV6.js +0 -16
- package/lib/utils/isomorphic/trace/versions/traceV7.js +0 -16
- package/lib/utils/isomorphic/trace/versions/traceV8.js +0 -16
- package/lib/utils/isomorphic/traceUtils.js +0 -58
- package/lib/utils/isomorphic/types.js +0 -16
- package/lib/utils/isomorphic/urlMatch.js +0 -190
- package/lib/utils/isomorphic/utilityScriptSerializers.js +0 -251
- package/lib/utils/isomorphic/yaml.js +0 -84
- package/lib/utils.js +0 -111
- package/lib/utilsBundleImpl/index.js +0 -218
- package/lib/vite/recorder/assets/index-BSjZa4pk.css +0 -1
- package/lib/vite/recorder/assets/index-xK8wYVpV.js +0 -195
- package/lib/vite/traceViewer/assets/defaultSettingsView-k0nPICvc.js +0 -266
- package/lib/vite/traceViewer/defaultSettingsView.7ch9cixO.css +0 -1
- package/lib/vite/traceViewer/index.CVz8LATg.js +0 -2
- package/lib/vite/traceViewer/uiMode.C7uDu3VD.js +0 -5
- package/lib/zipBundle.js +0 -34
- package/lib/zipBundleImpl.js +0 -5
- /package/lib/{utilsBundleImpl/xdg-open → xdg-open} +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,30 @@ Used for messages that reference a specific permission name
|
|
|
1103
1107
|
*/
|
|
1104
1108
|
disableReason?: string;
|
|
1105
1109
|
}
|
|
1110
|
+
/**
|
|
1111
|
+
* The issue warns about blocked calls to privacy sensitive APIs via the
|
|
1112
|
+
Selective Permissions Intervention.
|
|
1113
|
+
*/
|
|
1114
|
+
export interface SelectivePermissionsInterventionIssueDetails {
|
|
1115
|
+
/**
|
|
1116
|
+
* Which API was intervened on.
|
|
1117
|
+
*/
|
|
1118
|
+
apiName: string;
|
|
1119
|
+
/**
|
|
1120
|
+
* Why the ad script using the API is considered an ad.
|
|
1121
|
+
*/
|
|
1122
|
+
adAncestry: Network.AdAncestry;
|
|
1123
|
+
/**
|
|
1124
|
+
* The stack trace at the time of the intervention.
|
|
1125
|
+
*/
|
|
1126
|
+
stackTrace?: Runtime.StackTrace;
|
|
1127
|
+
}
|
|
1106
1128
|
/**
|
|
1107
1129
|
* A unique identifier for the type of issue. Each type may use one of the
|
|
1108
1130
|
optional fields in InspectorIssueDetails to convey more specific
|
|
1109
1131
|
information about the kind of issue.
|
|
1110
1132
|
*/
|
|
1111
|
-
export type InspectorIssueCode = "CookieIssue"|"MixedContentIssue"|"BlockedByResponseIssue"|"HeavyAdIssue"|"ContentSecurityPolicyIssue"|"SharedArrayBufferIssue"|"
|
|
1133
|
+
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
1134
|
/**
|
|
1113
1135
|
* This struct holds a list of optional fields with additional information
|
|
1114
1136
|
specific to the kind of issue. When adding a new issue code, please also
|
|
@@ -1121,7 +1143,6 @@ add a new optional field to this type.
|
|
|
1121
1143
|
heavyAdIssueDetails?: HeavyAdIssueDetails;
|
|
1122
1144
|
contentSecurityPolicyIssueDetails?: ContentSecurityPolicyIssueDetails;
|
|
1123
1145
|
sharedArrayBufferIssueDetails?: SharedArrayBufferIssueDetails;
|
|
1124
|
-
lowTextContrastIssueDetails?: LowTextContrastIssueDetails;
|
|
1125
1146
|
corsIssueDetails?: CorsIssueDetails;
|
|
1126
1147
|
attributionReportingIssueDetails?: AttributionReportingIssueDetails;
|
|
1127
1148
|
quirksModeIssueDetails?: QuirksModeIssueDetails;
|
|
@@ -1140,8 +1161,11 @@ add a new optional field to this type.
|
|
|
1140
1161
|
elementAccessibilityIssueDetails?: ElementAccessibilityIssueDetails;
|
|
1141
1162
|
sriMessageSignatureIssueDetails?: SRIMessageSignatureIssueDetails;
|
|
1142
1163
|
unencodedDigestIssueDetails?: UnencodedDigestIssueDetails;
|
|
1164
|
+
connectionAllowlistIssueDetails?: ConnectionAllowlistIssueDetails;
|
|
1143
1165
|
userReidentificationIssueDetails?: UserReidentificationIssueDetails;
|
|
1144
1166
|
permissionElementIssueDetails?: PermissionElementIssueDetails;
|
|
1167
|
+
performanceIssueDetails?: PerformanceIssueDetails;
|
|
1168
|
+
selectivePermissionsInterventionIssueDetails?: SelectivePermissionsInterventionIssueDetails;
|
|
1145
1169
|
}
|
|
1146
1170
|
/**
|
|
1147
1171
|
* A unique id for a DevTools inspector issue. Allows other entities (e.g.
|
|
@@ -1216,18 +1240,6 @@ applies to images.
|
|
|
1216
1240
|
}
|
|
1217
1241
|
export type enableReturnValue = {
|
|
1218
1242
|
}
|
|
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
1243
|
/**
|
|
1232
1244
|
* Runs the form issues check for the target page. Found issues are reported
|
|
1233
1245
|
using Audits.issueAdded event.
|
|
@@ -2565,12 +2577,17 @@ The array enumerates @scope at-rules starting with the innermost one, going outw
|
|
|
2565
2577
|
The array enumerates @starting-style at-rules starting with the innermost one, going outwards.
|
|
2566
2578
|
*/
|
|
2567
2579
|
startingStyles?: CSSStartingStyle[];
|
|
2580
|
+
/**
|
|
2581
|
+
* @navigation CSS at-rule array.
|
|
2582
|
+
The array enumerates @navigation at-rules starting with the innermost one, going outwards.
|
|
2583
|
+
*/
|
|
2584
|
+
navigations?: CSSNavigation[];
|
|
2568
2585
|
}
|
|
2569
2586
|
/**
|
|
2570
2587
|
* Enum indicating the type of a CSS rule, used to represent the order of a style rule's ancestors.
|
|
2571
2588
|
This list only contains rule types that are collected during the ancestor rule collection.
|
|
2572
2589
|
*/
|
|
2573
|
-
export type CSSRuleType = "MediaRule"|"SupportsRule"|"ContainerRule"|"LayerRule"|"ScopeRule"|"StyleRule"|"StartingStyleRule";
|
|
2590
|
+
export type CSSRuleType = "MediaRule"|"SupportsRule"|"ContainerRule"|"LayerRule"|"ScopeRule"|"StyleRule"|"StartingStyleRule"|"NavigationRule";
|
|
2574
2591
|
/**
|
|
2575
2592
|
* CSS coverage information.
|
|
2576
2593
|
*/
|
|
@@ -2837,6 +2854,28 @@ available).
|
|
|
2837
2854
|
active: boolean;
|
|
2838
2855
|
/**
|
|
2839
2856
|
* The associated rule header range in the enclosing stylesheet (if
|
|
2857
|
+
available).
|
|
2858
|
+
*/
|
|
2859
|
+
range?: SourceRange;
|
|
2860
|
+
/**
|
|
2861
|
+
* Identifier of the stylesheet containing this object (if exists).
|
|
2862
|
+
*/
|
|
2863
|
+
styleSheetId?: DOM.StyleSheetId;
|
|
2864
|
+
}
|
|
2865
|
+
/**
|
|
2866
|
+
* CSS Navigation at-rule descriptor.
|
|
2867
|
+
*/
|
|
2868
|
+
export interface CSSNavigation {
|
|
2869
|
+
/**
|
|
2870
|
+
* Navigation rule text.
|
|
2871
|
+
*/
|
|
2872
|
+
text: string;
|
|
2873
|
+
/**
|
|
2874
|
+
* Whether the navigation condition is satisfied.
|
|
2875
|
+
*/
|
|
2876
|
+
active?: boolean;
|
|
2877
|
+
/**
|
|
2878
|
+
* The associated rule header range in the enclosing stylesheet (if
|
|
2840
2879
|
available).
|
|
2841
2880
|
*/
|
|
2842
2881
|
range?: SourceRange;
|
|
@@ -3150,6 +3189,10 @@ stylesheet rules) this rule came from.
|
|
|
3150
3189
|
* @supports CSS at-rule condition. Only one type of condition should be set.
|
|
3151
3190
|
*/
|
|
3152
3191
|
supports?: CSSSupports;
|
|
3192
|
+
/**
|
|
3193
|
+
* @navigation condition. Only one type of condition should be set.
|
|
3194
|
+
*/
|
|
3195
|
+
navigation?: CSSNavigation;
|
|
3153
3196
|
/**
|
|
3154
3197
|
* Block body.
|
|
3155
3198
|
*/
|
|
@@ -3197,6 +3240,10 @@ stylesheet rules) this rule came from.
|
|
|
3197
3240
|
* Function body.
|
|
3198
3241
|
*/
|
|
3199
3242
|
children: CSSFunctionNode[];
|
|
3243
|
+
/**
|
|
3244
|
+
* The BackendNodeId of the DOM node that constitutes the origin tree scope of this rule.
|
|
3245
|
+
*/
|
|
3246
|
+
originTreeScopeNodeId?: DOM.BackendNodeId;
|
|
3200
3247
|
}
|
|
3201
3248
|
/**
|
|
3202
3249
|
* CSS keyframe rule representation.
|
|
@@ -3446,6 +3493,8 @@ they were property's declaration. If a value cannot be parsed according
|
|
|
3446
3493
|
to the provided property syntax, the value is parsed using combined
|
|
3447
3494
|
syntax as if null `propertyName` was provided. If the value cannot be
|
|
3448
3495
|
resolved even then, return the provided value without any changes.
|
|
3496
|
+
Note: this function currently does not resolve CSS random() function,
|
|
3497
|
+
it returns unmodified random() function parts.`
|
|
3449
3498
|
*/
|
|
3450
3499
|
export type resolveValuesParameters = {
|
|
3451
3500
|
/**
|
|
@@ -3769,6 +3818,20 @@ property
|
|
|
3769
3818
|
*/
|
|
3770
3819
|
supports: CSSSupports;
|
|
3771
3820
|
}
|
|
3821
|
+
/**
|
|
3822
|
+
* Modifies the expression of a navigation at-rule.
|
|
3823
|
+
*/
|
|
3824
|
+
export type setNavigationTextParameters = {
|
|
3825
|
+
styleSheetId: DOM.StyleSheetId;
|
|
3826
|
+
range: SourceRange;
|
|
3827
|
+
text: string;
|
|
3828
|
+
}
|
|
3829
|
+
export type setNavigationTextReturnValue = {
|
|
3830
|
+
/**
|
|
3831
|
+
* The resulting CSS Navigation rule after modification.
|
|
3832
|
+
*/
|
|
3833
|
+
navigation: CSSNavigation;
|
|
3834
|
+
}
|
|
3772
3835
|
/**
|
|
3773
3836
|
* Modifies the expression of a scope at-rule.
|
|
3774
3837
|
*/
|
|
@@ -4147,6 +4210,33 @@ sink via Presentation API, Remote Playback API, or Cast SDK.
|
|
|
4147
4210
|
}
|
|
4148
4211
|
}
|
|
4149
4212
|
|
|
4213
|
+
/**
|
|
4214
|
+
* This domain exposes the current state of the CrashReportContext API.
|
|
4215
|
+
*/
|
|
4216
|
+
export namespace CrashReportContext {
|
|
4217
|
+
/**
|
|
4218
|
+
* Key-value pair in CrashReportContext.
|
|
4219
|
+
*/
|
|
4220
|
+
export interface CrashReportContextEntry {
|
|
4221
|
+
key: string;
|
|
4222
|
+
value: string;
|
|
4223
|
+
/**
|
|
4224
|
+
* The ID of the frame where the key-value pair was set.
|
|
4225
|
+
*/
|
|
4226
|
+
frameId: Page.FrameId;
|
|
4227
|
+
}
|
|
4228
|
+
|
|
4229
|
+
|
|
4230
|
+
/**
|
|
4231
|
+
* Returns all entries in the CrashReportContext across all frames in the page.
|
|
4232
|
+
*/
|
|
4233
|
+
export type getEntriesParameters = {
|
|
4234
|
+
}
|
|
4235
|
+
export type getEntriesReturnValue = {
|
|
4236
|
+
entries: CrashReportContextEntry[];
|
|
4237
|
+
}
|
|
4238
|
+
}
|
|
4239
|
+
|
|
4150
4240
|
/**
|
|
4151
4241
|
* This domain exposes DOM read/write operations. Each DOM Node is represented with its mirror object
|
|
4152
4242
|
that has an `id`. This `id` can be used to get additional information on the Node, resolve it into
|
|
@@ -4187,7 +4277,7 @@ front-end.
|
|
|
4187
4277
|
/**
|
|
4188
4278
|
* Pseudo element type.
|
|
4189
4279
|
*/
|
|
4190
|
-
export type PseudoType = "first-line"|"first-letter"|"checkmark"|"before"|"after"|"picker-icon"|"interest-hint"|"marker"|"backdrop"|"column"|"selection"|"search-text"|"target-text"|"spelling-error"|"grammar-error"|"highlight"|"first-line-inherited"|"scroll-marker"|"scroll-marker-group"|"scroll-button"|"scrollbar"|"scrollbar-thumb"|"scrollbar-button"|"scrollbar-track"|"scrollbar-track-piece"|"scrollbar-corner"|"resizer"|"input-list-button"|"view-transition"|"view-transition-group"|"view-transition-image-pair"|"view-transition-group-children"|"view-transition-old"|"view-transition-new"|"placeholder"|"file-selector-button"|"details-content"|"picker"|"permission-icon"|"overscroll-area-parent";
|
|
4280
|
+
export type PseudoType = "first-line"|"first-letter"|"checkmark"|"before"|"after"|"expand-icon"|"picker-icon"|"interest-hint"|"marker"|"backdrop"|"column"|"selection"|"search-text"|"target-text"|"spelling-error"|"grammar-error"|"highlight"|"first-line-inherited"|"scroll-marker"|"scroll-marker-group"|"scroll-button"|"scrollbar"|"scrollbar-thumb"|"scrollbar-button"|"scrollbar-track"|"scrollbar-track-piece"|"scrollbar-corner"|"resizer"|"input-list-button"|"view-transition"|"view-transition-group"|"view-transition-image-pair"|"view-transition-group-children"|"view-transition-old"|"view-transition-new"|"placeholder"|"file-selector-button"|"details-content"|"picker"|"permission-icon"|"overscroll-area-parent";
|
|
4191
4281
|
/**
|
|
4192
4282
|
* Shadow root type.
|
|
4193
4283
|
*/
|
|
@@ -4339,6 +4429,7 @@ The property is always undefined now.
|
|
|
4339
4429
|
isScrollable?: boolean;
|
|
4340
4430
|
affectedByStartingStyles?: boolean;
|
|
4341
4431
|
adoptedStyleSheets?: StyleSheetId[];
|
|
4432
|
+
adProvenance?: Network.AdProvenance;
|
|
4342
4433
|
}
|
|
4343
4434
|
/**
|
|
4344
4435
|
* A structure to hold the top-level node of a detached tree and an array of its retained descendants.
|
|
@@ -4609,6 +4700,19 @@ The property is always undefined now.
|
|
|
4609
4700
|
*/
|
|
4610
4701
|
isScrollable: boolean;
|
|
4611
4702
|
}
|
|
4703
|
+
/**
|
|
4704
|
+
* Fired when a node's ad related state changes.
|
|
4705
|
+
*/
|
|
4706
|
+
export type adRelatedStateUpdatedPayload = {
|
|
4707
|
+
/**
|
|
4708
|
+
* The id of the node.
|
|
4709
|
+
*/
|
|
4710
|
+
nodeId: DOM.NodeId;
|
|
4711
|
+
/**
|
|
4712
|
+
* The provenance of the ad related node, if it is ad related.
|
|
4713
|
+
*/
|
|
4714
|
+
adProvenance?: Network.AdProvenance;
|
|
4715
|
+
}
|
|
4612
4716
|
/**
|
|
4613
4717
|
* Fired when a node's starting styles changes.
|
|
4614
4718
|
*/
|
|
@@ -6780,12 +6884,27 @@ see https://w3c.github.io/window-management/#screendetailed.
|
|
|
6780
6884
|
/**
|
|
6781
6885
|
* Enum of image types that can be disabled.
|
|
6782
6886
|
*/
|
|
6783
|
-
export type DisabledImageType = "avif"|"webp";
|
|
6887
|
+
export type DisabledImageType = "avif"|"jxl"|"webp";
|
|
6784
6888
|
|
|
6785
6889
|
/**
|
|
6786
6890
|
* Notification sent after the virtual time budget for the current VirtualTimePolicy has run out.
|
|
6787
6891
|
*/
|
|
6788
6892
|
export type virtualTimeBudgetExpiredPayload = void;
|
|
6893
|
+
/**
|
|
6894
|
+
* Fired when a page calls screen.orientation.lock() or screen.orientation.unlock()
|
|
6895
|
+
while device emulation is enabled. This allows the DevTools frontend to update the
|
|
6896
|
+
emulated device orientation accordingly.
|
|
6897
|
+
*/
|
|
6898
|
+
export type screenOrientationLockChangedPayload = {
|
|
6899
|
+
/**
|
|
6900
|
+
* Whether the screen orientation is currently locked.
|
|
6901
|
+
*/
|
|
6902
|
+
locked: boolean;
|
|
6903
|
+
/**
|
|
6904
|
+
* The orientation lock type requested by the page. Only set when locked is true.
|
|
6905
|
+
*/
|
|
6906
|
+
orientation?: ScreenOrientation;
|
|
6907
|
+
}
|
|
6789
6908
|
|
|
6790
6909
|
/**
|
|
6791
6910
|
* Tells whether emulation is supported.
|
|
@@ -6943,6 +7062,18 @@ to continuous.
|
|
|
6943
7062
|
Deprecated, use Emulation.setDevicePostureOverride.
|
|
6944
7063
|
*/
|
|
6945
7064
|
devicePosture?: DevicePosture;
|
|
7065
|
+
/**
|
|
7066
|
+
* Scrollbar type. Default: `default`.
|
|
7067
|
+
*/
|
|
7068
|
+
scrollbarType?: "overlay"|"default";
|
|
7069
|
+
/**
|
|
7070
|
+
* If set to true, enables screen orientation lock emulation, which
|
|
7071
|
+
intercepts screen.orientation.lock() calls from the page and reports
|
|
7072
|
+
orientation changes via screenOrientationLockChanged events. This is
|
|
7073
|
+
useful for emulating mobile device orientation lock behavior in
|
|
7074
|
+
responsive design mode.
|
|
7075
|
+
*/
|
|
7076
|
+
screenOrientationLockEmulation?: boolean;
|
|
6946
7077
|
}
|
|
6947
7078
|
export type setDeviceMetricsOverrideReturnValue = {
|
|
6948
7079
|
}
|
|
@@ -7365,7 +7496,8 @@ of size 100lvh.
|
|
|
7365
7496
|
export type setSmallViewportHeightDifferenceOverrideReturnValue = {
|
|
7366
7497
|
}
|
|
7367
7498
|
/**
|
|
7368
|
-
* Returns device's screen configuration.
|
|
7499
|
+
* Returns device's screen configuration. In headful mode, the physical screens configuration is returned,
|
|
7500
|
+
whereas in headless mode, a virtual headless screen configuration is provided instead.
|
|
7369
7501
|
*/
|
|
7370
7502
|
export type getScreenInfosParameters = {
|
|
7371
7503
|
}
|
|
@@ -7420,6 +7552,58 @@ of size 100lvh.
|
|
|
7420
7552
|
export type addScreenReturnValue = {
|
|
7421
7553
|
screenInfo: ScreenInfo;
|
|
7422
7554
|
}
|
|
7555
|
+
/**
|
|
7556
|
+
* Updates specified screen parameters. Only supported in headless mode.
|
|
7557
|
+
*/
|
|
7558
|
+
export type updateScreenParameters = {
|
|
7559
|
+
/**
|
|
7560
|
+
* Target screen identifier.
|
|
7561
|
+
*/
|
|
7562
|
+
screenId: ScreenId;
|
|
7563
|
+
/**
|
|
7564
|
+
* Offset of the left edge of the screen in pixels.
|
|
7565
|
+
*/
|
|
7566
|
+
left?: number;
|
|
7567
|
+
/**
|
|
7568
|
+
* Offset of the top edge of the screen in pixels.
|
|
7569
|
+
*/
|
|
7570
|
+
top?: number;
|
|
7571
|
+
/**
|
|
7572
|
+
* The width of the screen in pixels.
|
|
7573
|
+
*/
|
|
7574
|
+
width?: number;
|
|
7575
|
+
/**
|
|
7576
|
+
* The height of the screen in pixels.
|
|
7577
|
+
*/
|
|
7578
|
+
height?: number;
|
|
7579
|
+
/**
|
|
7580
|
+
* Specifies the screen's work area.
|
|
7581
|
+
*/
|
|
7582
|
+
workAreaInsets?: WorkAreaInsets;
|
|
7583
|
+
/**
|
|
7584
|
+
* Specifies the screen's device pixel ratio.
|
|
7585
|
+
*/
|
|
7586
|
+
devicePixelRatio?: number;
|
|
7587
|
+
/**
|
|
7588
|
+
* Specifies the screen's rotation angle. Available values are 0, 90, 180 and 270.
|
|
7589
|
+
*/
|
|
7590
|
+
rotation?: number;
|
|
7591
|
+
/**
|
|
7592
|
+
* Specifies the screen's color depth in bits.
|
|
7593
|
+
*/
|
|
7594
|
+
colorDepth?: number;
|
|
7595
|
+
/**
|
|
7596
|
+
* Specifies the descriptive label for the screen.
|
|
7597
|
+
*/
|
|
7598
|
+
label?: string;
|
|
7599
|
+
/**
|
|
7600
|
+
* Indicates whether the screen is internal to the device or external, attached to the device. Default is false.
|
|
7601
|
+
*/
|
|
7602
|
+
isInternal?: boolean;
|
|
7603
|
+
}
|
|
7604
|
+
export type updateScreenReturnValue = {
|
|
7605
|
+
screenInfo: ScreenInfo;
|
|
7606
|
+
}
|
|
7423
7607
|
/**
|
|
7424
7608
|
* Remove screen from the device. Only supported in headless mode.
|
|
7425
7609
|
*/
|
|
@@ -7428,6 +7612,17 @@ of size 100lvh.
|
|
|
7428
7612
|
}
|
|
7429
7613
|
export type removeScreenReturnValue = {
|
|
7430
7614
|
}
|
|
7615
|
+
/**
|
|
7616
|
+
* Set primary screen. Only supported in headless mode.
|
|
7617
|
+
Note that this changes the coordinate system origin to the top-left
|
|
7618
|
+
of the new primary screen, updating the bounds and work areas
|
|
7619
|
+
of all existing screens accordingly.
|
|
7620
|
+
*/
|
|
7621
|
+
export type setPrimaryScreenParameters = {
|
|
7622
|
+
screenId: ScreenId;
|
|
7623
|
+
}
|
|
7624
|
+
export type setPrimaryScreenReturnValue = {
|
|
7625
|
+
}
|
|
7431
7626
|
}
|
|
7432
7627
|
|
|
7433
7628
|
/**
|
|
@@ -7477,8 +7672,50 @@ reported through Debugger domain, similarly to regular breakpoints being hit.
|
|
|
7477
7672
|
* Storage areas.
|
|
7478
7673
|
*/
|
|
7479
7674
|
export type StorageArea = "session"|"local"|"sync"|"managed";
|
|
7675
|
+
/**
|
|
7676
|
+
* Detailed information about an extension.
|
|
7677
|
+
*/
|
|
7678
|
+
export interface ExtensionInfo {
|
|
7679
|
+
/**
|
|
7680
|
+
* Extension id.
|
|
7681
|
+
*/
|
|
7682
|
+
id: string;
|
|
7683
|
+
/**
|
|
7684
|
+
* Extension name.
|
|
7685
|
+
*/
|
|
7686
|
+
name: string;
|
|
7687
|
+
/**
|
|
7688
|
+
* Extension version.
|
|
7689
|
+
*/
|
|
7690
|
+
version: string;
|
|
7691
|
+
/**
|
|
7692
|
+
* The path from which the extension was loaded.
|
|
7693
|
+
*/
|
|
7694
|
+
path: string;
|
|
7695
|
+
/**
|
|
7696
|
+
* Extension enabled status.
|
|
7697
|
+
*/
|
|
7698
|
+
enabled: boolean;
|
|
7699
|
+
}
|
|
7480
7700
|
|
|
7481
7701
|
|
|
7702
|
+
/**
|
|
7703
|
+
* Runs an extension default action.
|
|
7704
|
+
Available if the client is connected using the --remote-debugging-pipe
|
|
7705
|
+
flag and the --enable-unsafe-extension-debugging flag is set.
|
|
7706
|
+
*/
|
|
7707
|
+
export type triggerActionParameters = {
|
|
7708
|
+
/**
|
|
7709
|
+
* Extension id.
|
|
7710
|
+
*/
|
|
7711
|
+
id: string;
|
|
7712
|
+
/**
|
|
7713
|
+
* A tab target ID to trigger the default extension action on.
|
|
7714
|
+
*/
|
|
7715
|
+
targetId: string;
|
|
7716
|
+
}
|
|
7717
|
+
export type triggerActionReturnValue = {
|
|
7718
|
+
}
|
|
7482
7719
|
/**
|
|
7483
7720
|
* Installs an unpacked extension from the filesystem similar to
|
|
7484
7721
|
--load-extension CLI flags. Returns extension ID once the extension
|
|
@@ -7491,6 +7728,10 @@ flag is set.
|
|
|
7491
7728
|
* Absolute file path.
|
|
7492
7729
|
*/
|
|
7493
7730
|
path: string;
|
|
7731
|
+
/**
|
|
7732
|
+
* Enable the extension in incognito
|
|
7733
|
+
*/
|
|
7734
|
+
enableInIncognito?: boolean;
|
|
7494
7735
|
}
|
|
7495
7736
|
export type loadUnpackedReturnValue = {
|
|
7496
7737
|
/**
|
|
@@ -7498,6 +7739,16 @@ flag is set.
|
|
|
7498
7739
|
*/
|
|
7499
7740
|
id: string;
|
|
7500
7741
|
}
|
|
7742
|
+
/**
|
|
7743
|
+
* Gets a list of all unpacked extensions.
|
|
7744
|
+
Available if the client is connected using the --remote-debugging-pipe flag
|
|
7745
|
+
and the --enable-unsafe-extension-debugging flag is set.
|
|
7746
|
+
*/
|
|
7747
|
+
export type getExtensionsParameters = {
|
|
7748
|
+
}
|
|
7749
|
+
export type getExtensionsReturnValue = {
|
|
7750
|
+
extensions: ExtensionInfo[];
|
|
7751
|
+
}
|
|
7501
7752
|
/**
|
|
7502
7753
|
* Uninstalls an unpacked extension (others not supported) from the profile.
|
|
7503
7754
|
Available if the client is connected using the --remote-debugging-pipe flag
|
|
@@ -10085,7 +10336,7 @@ milliseconds relatively to this requestTime.
|
|
|
10085
10336
|
*/
|
|
10086
10337
|
export type ResourcePriority = "VeryLow"|"Low"|"Medium"|"High"|"VeryHigh";
|
|
10087
10338
|
/**
|
|
10088
|
-
* The render
|
|
10339
|
+
* The render-blocking behavior of a resource request.
|
|
10089
10340
|
*/
|
|
10090
10341
|
export type RenderBlockingBehavior = "Blocking"|"InBodyParserBlocking"|"NonBlocking"|"NonBlockingDynamic"|"PotentiallyBlocking";
|
|
10091
10342
|
/**
|
|
@@ -10274,7 +10525,7 @@ applicable or not known.
|
|
|
10274
10525
|
/**
|
|
10275
10526
|
* The reason why request was blocked.
|
|
10276
10527
|
*/
|
|
10277
|
-
export type CorsError = "DisallowedByMode"|"InvalidResponse"|"WildcardOriginNotAllowed"|"MissingAllowOriginHeader"|"MultipleAllowOriginValues"|"InvalidAllowOriginValue"|"AllowOriginMismatch"|"InvalidAllowCredentials"|"CorsDisabledScheme"|"PreflightInvalidStatus"|"PreflightDisallowedRedirect"|"PreflightWildcardOriginNotAllowed"|"PreflightMissingAllowOriginHeader"|"PreflightMultipleAllowOriginValues"|"PreflightInvalidAllowOriginValue"|"PreflightAllowOriginMismatch"|"PreflightInvalidAllowCredentials"|"PreflightMissingAllowExternal"|"PreflightInvalidAllowExternal"|"
|
|
10528
|
+
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
10529
|
export interface CorsErrorStatus {
|
|
10279
10530
|
corsError: CorsError;
|
|
10280
10531
|
failedParameter: string;
|
|
@@ -10618,10 +10869,6 @@ JSON (±Inf).
|
|
|
10618
10869
|
* Cookie Priority
|
|
10619
10870
|
*/
|
|
10620
10871
|
priority: CookiePriority;
|
|
10621
|
-
/**
|
|
10622
|
-
* True if cookie is SameParty.
|
|
10623
|
-
*/
|
|
10624
|
-
sameParty: boolean;
|
|
10625
10872
|
/**
|
|
10626
10873
|
* Cookie source scheme type.
|
|
10627
10874
|
*/
|
|
@@ -10644,11 +10891,11 @@ This is a temporary ability and it will be removed in the future.
|
|
|
10644
10891
|
/**
|
|
10645
10892
|
* Types of reasons why a cookie may not be stored from a response.
|
|
10646
10893
|
*/
|
|
10647
|
-
export type SetCookieBlockedReason = "SecureOnly"|"SameSiteStrict"|"SameSiteLax"|"SameSiteUnspecifiedTreatedAsLax"|"SameSiteNoneInsecure"|"UserPreferences"|"ThirdPartyPhaseout"|"ThirdPartyBlockedInFirstPartySet"|"SyntaxError"|"SchemeNotSupported"|"OverwriteSecure"|"InvalidDomain"|"InvalidPrefix"|"UnknownError"|"SchemefulSameSiteStrict"|"SchemefulSameSiteLax"|"SchemefulSameSiteUnspecifiedTreatedAsLax"|"
|
|
10894
|
+
export type SetCookieBlockedReason = "SecureOnly"|"SameSiteStrict"|"SameSiteLax"|"SameSiteUnspecifiedTreatedAsLax"|"SameSiteNoneInsecure"|"UserPreferences"|"ThirdPartyPhaseout"|"ThirdPartyBlockedInFirstPartySet"|"SyntaxError"|"SchemeNotSupported"|"OverwriteSecure"|"InvalidDomain"|"InvalidPrefix"|"UnknownError"|"SchemefulSameSiteStrict"|"SchemefulSameSiteLax"|"SchemefulSameSiteUnspecifiedTreatedAsLax"|"NameValuePairExceedsMaxSize"|"DisallowedCharacter"|"NoCookieContent";
|
|
10648
10895
|
/**
|
|
10649
10896
|
* Types of reasons why a cookie may not be sent with a request.
|
|
10650
10897
|
*/
|
|
10651
|
-
export type CookieBlockedReason = "SecureOnly"|"NotOnPath"|"DomainMismatch"|"SameSiteStrict"|"SameSiteLax"|"SameSiteUnspecifiedTreatedAsLax"|"SameSiteNoneInsecure"|"UserPreferences"|"ThirdPartyPhaseout"|"ThirdPartyBlockedInFirstPartySet"|"UnknownError"|"SchemefulSameSiteStrict"|"SchemefulSameSiteLax"|"SchemefulSameSiteUnspecifiedTreatedAsLax"|"
|
|
10898
|
+
export type CookieBlockedReason = "SecureOnly"|"NotOnPath"|"DomainMismatch"|"SameSiteStrict"|"SameSiteLax"|"SameSiteUnspecifiedTreatedAsLax"|"SameSiteNoneInsecure"|"UserPreferences"|"ThirdPartyPhaseout"|"ThirdPartyBlockedInFirstPartySet"|"UnknownError"|"SchemefulSameSiteStrict"|"SchemefulSameSiteLax"|"SchemefulSameSiteUnspecifiedTreatedAsLax"|"NameValuePairExceedsMaxSize"|"PortMismatch"|"SchemeMismatch"|"AnonymousContext";
|
|
10652
10899
|
/**
|
|
10653
10900
|
* Types of reasons why a cookie should have been blocked by 3PCD but is exempted for the request.
|
|
10654
10901
|
*/
|
|
@@ -10755,10 +11002,6 @@ default domain, path, source port, and source scheme values of the created cooki
|
|
|
10755
11002
|
* Cookie Priority.
|
|
10756
11003
|
*/
|
|
10757
11004
|
priority?: CookiePriority;
|
|
10758
|
-
/**
|
|
10759
|
-
* True if cookie is SameParty.
|
|
10760
|
-
*/
|
|
10761
|
-
sameParty?: boolean;
|
|
10762
11005
|
/**
|
|
10763
11006
|
* Cookie source scheme type.
|
|
10764
11007
|
*/
|
|
@@ -11065,7 +11308,7 @@ Expected to be unsigned integer.
|
|
|
11065
11308
|
*/
|
|
11066
11309
|
remotePort?: number;
|
|
11067
11310
|
}
|
|
11068
|
-
export type
|
|
11311
|
+
export type LocalNetworkAccessRequestPolicy = "Allow"|"BlockFromInsecureToMorePrivate"|"WarnFromInsecureToMorePrivate"|"PermissionBlock"|"PermissionWarn";
|
|
11069
11312
|
export type IPAddressSpace = "Loopback"|"Local"|"Public"|"Unknown";
|
|
11070
11313
|
export interface ConnectTiming {
|
|
11071
11314
|
/**
|
|
@@ -11078,7 +11321,63 @@ the same request (but not for redirected requests).
|
|
|
11078
11321
|
export interface ClientSecurityState {
|
|
11079
11322
|
initiatorIsSecureContext: boolean;
|
|
11080
11323
|
initiatorIPAddressSpace: IPAddressSpace;
|
|
11081
|
-
|
|
11324
|
+
localNetworkAccessRequestPolicy: LocalNetworkAccessRequestPolicy;
|
|
11325
|
+
}
|
|
11326
|
+
/**
|
|
11327
|
+
* Identifies the script on the stack that caused a resource or element to be
|
|
11328
|
+
labeled as an ad. For resources, this indicates the context that triggered
|
|
11329
|
+
the fetch. For elements, this indicates the context that caused the element
|
|
11330
|
+
to be appended to the DOM.
|
|
11331
|
+
*/
|
|
11332
|
+
export interface AdScriptIdentifier {
|
|
11333
|
+
/**
|
|
11334
|
+
* The script's V8 identifier.
|
|
11335
|
+
*/
|
|
11336
|
+
scriptId: Runtime.ScriptId;
|
|
11337
|
+
/**
|
|
11338
|
+
* V8's debugging ID for the v8::Context.
|
|
11339
|
+
*/
|
|
11340
|
+
debuggerId: Runtime.UniqueDebuggerId;
|
|
11341
|
+
/**
|
|
11342
|
+
* The script's url (or generated name based on id if inline script).
|
|
11343
|
+
*/
|
|
11344
|
+
name: string;
|
|
11345
|
+
}
|
|
11346
|
+
/**
|
|
11347
|
+
* Encapsulates the script ancestry and the root script filter list rule that
|
|
11348
|
+
caused the resource or element to be labeled as an ad.
|
|
11349
|
+
*/
|
|
11350
|
+
export interface AdAncestry {
|
|
11351
|
+
/**
|
|
11352
|
+
* A chain of `AdScriptIdentifier`s representing the ancestry of an ad
|
|
11353
|
+
script that led to the creation of a resource or element. The chain is
|
|
11354
|
+
ordered from the script itself (lowest level) up to its root ancestor
|
|
11355
|
+
that was flagged by a filter list.
|
|
11356
|
+
*/
|
|
11357
|
+
ancestryChain: AdScriptIdentifier[];
|
|
11358
|
+
/**
|
|
11359
|
+
* The filter list rule that caused the root (last) script in
|
|
11360
|
+
`ancestryChain` to be tagged as an ad.
|
|
11361
|
+
*/
|
|
11362
|
+
rootScriptFilterlistRule?: string;
|
|
11363
|
+
}
|
|
11364
|
+
/**
|
|
11365
|
+
* Represents the provenance of an ad resource or element. Only one of
|
|
11366
|
+
`filterlistRule` or `adScriptAncestry` can be set. If `filterlistRule`
|
|
11367
|
+
is provided, the resource URL directly matches a filter list rule. If
|
|
11368
|
+
`adScriptAncestry` is provided, an ad script initiated the resource fetch or
|
|
11369
|
+
appended the element to the DOM. If neither is provided, the entity is
|
|
11370
|
+
known to be an ad, but provenance tracking information is unavailable.
|
|
11371
|
+
*/
|
|
11372
|
+
export interface AdProvenance {
|
|
11373
|
+
/**
|
|
11374
|
+
* The filterlist rule that matched, if any.
|
|
11375
|
+
*/
|
|
11376
|
+
filterlistRule?: string;
|
|
11377
|
+
/**
|
|
11378
|
+
* The script ancestry that created the ad, if any.
|
|
11379
|
+
*/
|
|
11380
|
+
adScriptAncestry?: AdAncestry;
|
|
11082
11381
|
}
|
|
11083
11382
|
export type CrossOriginOpenerPolicyValue = "SameOrigin"|"SameOriginAllowPopups"|"RestrictProperties"|"UnsafeNone"|"SameOriginPlusCoep"|"RestrictPropertiesPlusCoep"|"NoopenerAllowPopups";
|
|
11084
11383
|
export interface CrossOriginOpenerPolicyStatus {
|
|
@@ -11165,6 +11464,19 @@ the same request (but not for redirected requests).
|
|
|
11165
11464
|
*/
|
|
11166
11465
|
id: string;
|
|
11167
11466
|
}
|
|
11467
|
+
/**
|
|
11468
|
+
* How a device bound session was used during a request.
|
|
11469
|
+
*/
|
|
11470
|
+
export interface DeviceBoundSessionWithUsage {
|
|
11471
|
+
/**
|
|
11472
|
+
* The key for the session.
|
|
11473
|
+
*/
|
|
11474
|
+
sessionKey: DeviceBoundSessionKey;
|
|
11475
|
+
/**
|
|
11476
|
+
* How the session was used (or not used).
|
|
11477
|
+
*/
|
|
11478
|
+
usage: "NotInScope"|"InScopeRefreshNotYetNeeded"|"InScopeRefreshNotAllowed"|"ProactiveRefreshNotPossible"|"ProactiveRefreshAttempted"|"Deferred";
|
|
11479
|
+
}
|
|
11168
11480
|
/**
|
|
11169
11481
|
* A device bound session's cookie craving.
|
|
11170
11482
|
*/
|
|
@@ -11271,6 +11583,29 @@ details; this boolean is true if that value is populated.
|
|
|
11271
11583
|
* A fetch result for a device bound session creation or refresh.
|
|
11272
11584
|
*/
|
|
11273
11585
|
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";
|
|
11586
|
+
/**
|
|
11587
|
+
* Details about a failed device bound session network request.
|
|
11588
|
+
*/
|
|
11589
|
+
export interface DeviceBoundSessionFailedRequest {
|
|
11590
|
+
/**
|
|
11591
|
+
* The failed request URL.
|
|
11592
|
+
*/
|
|
11593
|
+
requestUrl: string;
|
|
11594
|
+
/**
|
|
11595
|
+
* The net error of the response if it was not OK.
|
|
11596
|
+
*/
|
|
11597
|
+
netError?: string;
|
|
11598
|
+
/**
|
|
11599
|
+
* The response code if the net error was OK and the response code was not
|
|
11600
|
+
200.
|
|
11601
|
+
*/
|
|
11602
|
+
responseError?: number;
|
|
11603
|
+
/**
|
|
11604
|
+
* The body of the response if the net error was OK, the response code was
|
|
11605
|
+
not 200, and the response body was not empty.
|
|
11606
|
+
*/
|
|
11607
|
+
responseErrorBody?: string;
|
|
11608
|
+
}
|
|
11274
11609
|
/**
|
|
11275
11610
|
* Session event details specific to creation.
|
|
11276
11611
|
*/
|
|
@@ -11284,6 +11619,11 @@ details; this boolean is true if that value is populated.
|
|
|
11284
11619
|
all successful creation events.
|
|
11285
11620
|
*/
|
|
11286
11621
|
newSession?: DeviceBoundSession;
|
|
11622
|
+
/**
|
|
11623
|
+
* Details about a failed device bound session network request if there was
|
|
11624
|
+
one.
|
|
11625
|
+
*/
|
|
11626
|
+
failedRequest?: DeviceBoundSessionFailedRequest;
|
|
11287
11627
|
}
|
|
11288
11628
|
/**
|
|
11289
11629
|
* Session event details specific to refresh.
|
|
@@ -11306,6 +11646,11 @@ for any refresh event that modifies the session config.
|
|
|
11306
11646
|
* See comments on `net::device_bound_sessions::RefreshEventResult::was_fully_proactive_refresh`.
|
|
11307
11647
|
*/
|
|
11308
11648
|
wasFullyProactiveRefresh: boolean;
|
|
11649
|
+
/**
|
|
11650
|
+
* Details about a failed device bound session network request if there was
|
|
11651
|
+
one.
|
|
11652
|
+
*/
|
|
11653
|
+
failedRequest?: DeviceBoundSessionFailedRequest;
|
|
11309
11654
|
}
|
|
11310
11655
|
/**
|
|
11311
11656
|
* Session event details specific to termination.
|
|
@@ -11582,7 +11927,7 @@ for the request which was just redirected.
|
|
|
11582
11927
|
*/
|
|
11583
11928
|
hasUserGesture?: boolean;
|
|
11584
11929
|
/**
|
|
11585
|
-
* The render
|
|
11930
|
+
* The render-blocking behavior of the request.
|
|
11586
11931
|
*/
|
|
11587
11932
|
renderBlockingBehavior?: RenderBlockingBehavior;
|
|
11588
11933
|
}
|
|
@@ -11967,6 +12312,10 @@ the request and the ones not sent; the latter are distinguished by having blocke
|
|
|
11967
12312
|
* Connection timing information for the request.
|
|
11968
12313
|
*/
|
|
11969
12314
|
connectTiming: ConnectTiming;
|
|
12315
|
+
/**
|
|
12316
|
+
* How the request site's device bound sessions were used during this request.
|
|
12317
|
+
*/
|
|
12318
|
+
deviceBoundSessionUsages?: DeviceBoundSessionWithUsage[];
|
|
11970
12319
|
/**
|
|
11971
12320
|
* The client security state set for the request.
|
|
11972
12321
|
*/
|
|
@@ -12386,6 +12735,8 @@ requests affected by a rule.
|
|
|
12386
12735
|
export type enableParameters = {
|
|
12387
12736
|
/**
|
|
12388
12737
|
* Buffer size in bytes to use when preserving network payloads (XHRs, etc).
|
|
12738
|
+
This is the maximum number of bytes that will be collected by this
|
|
12739
|
+
DevTools session.
|
|
12389
12740
|
*/
|
|
12390
12741
|
maxTotalBufferSize?: number;
|
|
12391
12742
|
/**
|
|
@@ -12663,10 +13014,6 @@ default domain, path, source port, and source scheme values of the created cooki
|
|
|
12663
13014
|
* Cookie Priority type.
|
|
12664
13015
|
*/
|
|
12665
13016
|
priority?: CookiePriority;
|
|
12666
|
-
/**
|
|
12667
|
-
* True if cookie is SameParty.
|
|
12668
|
-
*/
|
|
12669
|
-
sameParty?: boolean;
|
|
12670
13017
|
/**
|
|
12671
13018
|
* Cookie source scheme type.
|
|
12672
13019
|
*/
|
|
@@ -13261,6 +13608,16 @@ Page reload is required before the new cookie behavior will be observed
|
|
|
13261
13608
|
maskColor?: DOM.RGBA;
|
|
13262
13609
|
}
|
|
13263
13610
|
export type InspectMode = "searchForNode"|"searchForUAShadowDOM"|"captureAreaScreenshot"|"none";
|
|
13611
|
+
export interface InspectedElementAnchorConfig {
|
|
13612
|
+
/**
|
|
13613
|
+
* Identifier of the node to highlight.
|
|
13614
|
+
*/
|
|
13615
|
+
nodeId?: DOM.NodeId;
|
|
13616
|
+
/**
|
|
13617
|
+
* Identifier of the backend node to highlight.
|
|
13618
|
+
*/
|
|
13619
|
+
backendNodeId?: DOM.BackendNodeId;
|
|
13620
|
+
}
|
|
13264
13621
|
|
|
13265
13622
|
/**
|
|
13266
13623
|
* Fired when the node should be inspected. This happens after call to `setInspectMode` or when
|
|
@@ -13288,10 +13645,28 @@ user manually inspects an element.
|
|
|
13288
13645
|
viewport: Page.Viewport;
|
|
13289
13646
|
}
|
|
13290
13647
|
/**
|
|
13291
|
-
* Fired when user
|
|
13648
|
+
* Fired when user asks to show the Inspect panel.
|
|
13292
13649
|
*/
|
|
13293
|
-
export type
|
|
13294
|
-
|
|
13650
|
+
export type inspectPanelShowRequestedPayload = {
|
|
13651
|
+
/**
|
|
13652
|
+
* Id of the node to show in the panel.
|
|
13653
|
+
*/
|
|
13654
|
+
backendNodeId: DOM.BackendNodeId;
|
|
13655
|
+
}
|
|
13656
|
+
/**
|
|
13657
|
+
* Fired when user asks to restore the Inspected Element floating window.
|
|
13658
|
+
*/
|
|
13659
|
+
export type inspectedElementWindowRestoredPayload = {
|
|
13660
|
+
/**
|
|
13661
|
+
* Id of the node to restore the floating window for.
|
|
13662
|
+
*/
|
|
13663
|
+
backendNodeId: DOM.BackendNodeId;
|
|
13664
|
+
}
|
|
13665
|
+
/**
|
|
13666
|
+
* Fired when user cancels the inspect mode.
|
|
13667
|
+
*/
|
|
13668
|
+
export type inspectModeCanceledPayload = void;
|
|
13669
|
+
|
|
13295
13670
|
/**
|
|
13296
13671
|
* Disables domain notifications.
|
|
13297
13672
|
*/
|
|
@@ -13594,6 +13969,14 @@ Backend then generates 'inspectNodeRequested' event upon element selection.
|
|
|
13594
13969
|
}
|
|
13595
13970
|
export type setShowContainerQueryOverlaysReturnValue = {
|
|
13596
13971
|
}
|
|
13972
|
+
export type setShowInspectedElementAnchorParameters = {
|
|
13973
|
+
/**
|
|
13974
|
+
* Node identifier for which to show an anchor for.
|
|
13975
|
+
*/
|
|
13976
|
+
inspectedElementAnchorConfig: InspectedElementAnchorConfig;
|
|
13977
|
+
}
|
|
13978
|
+
export type setShowInspectedElementAnchorReturnValue = {
|
|
13979
|
+
}
|
|
13597
13980
|
/**
|
|
13598
13981
|
* Requests that backend shows paint rectangles
|
|
13599
13982
|
*/
|
|
@@ -13883,41 +14266,6 @@ supported yet.
|
|
|
13883
14266
|
adFrameType: AdFrameType;
|
|
13884
14267
|
explanations?: AdFrameExplanation[];
|
|
13885
14268
|
}
|
|
13886
|
-
/**
|
|
13887
|
-
* Identifies the script which caused a script or frame to be labelled as an
|
|
13888
|
-
ad.
|
|
13889
|
-
*/
|
|
13890
|
-
export interface AdScriptId {
|
|
13891
|
-
/**
|
|
13892
|
-
* Script Id of the script which caused a script or frame to be labelled as
|
|
13893
|
-
an ad.
|
|
13894
|
-
*/
|
|
13895
|
-
scriptId: Runtime.ScriptId;
|
|
13896
|
-
/**
|
|
13897
|
-
* Id of scriptId's debugger.
|
|
13898
|
-
*/
|
|
13899
|
-
debuggerId: Runtime.UniqueDebuggerId;
|
|
13900
|
-
}
|
|
13901
|
-
/**
|
|
13902
|
-
* Encapsulates the script ancestry and the root script filterlist rule that
|
|
13903
|
-
caused the frame to be labelled as an ad. Only created when `ancestryChain`
|
|
13904
|
-
is not empty.
|
|
13905
|
-
*/
|
|
13906
|
-
export interface AdScriptAncestry {
|
|
13907
|
-
/**
|
|
13908
|
-
* A chain of `AdScriptId`s representing the ancestry of an ad script that
|
|
13909
|
-
led to the creation of a frame. The chain is ordered from the script
|
|
13910
|
-
itself (lower level) up to its root ancestor that was flagged by
|
|
13911
|
-
filterlist.
|
|
13912
|
-
*/
|
|
13913
|
-
ancestryChain: AdScriptId[];
|
|
13914
|
-
/**
|
|
13915
|
-
* The filterlist rule that caused the root (last) script in
|
|
13916
|
-
`ancestryChain` to be ad-tagged. Only populated if the rule is
|
|
13917
|
-
available.
|
|
13918
|
-
*/
|
|
13919
|
-
rootScriptFilterlistRule?: string;
|
|
13920
|
-
}
|
|
13921
14269
|
/**
|
|
13922
14270
|
* Indicates whether the frame is a secure context and why it is the case.
|
|
13923
14271
|
*/
|
|
@@ -13932,7 +14280,7 @@ available.
|
|
|
13932
14280
|
in services/network/public/cpp/permissions_policy/permissions_policy_features.json5.
|
|
13933
14281
|
LINT.IfChange(PermissionsPolicyFeature)
|
|
13934
14282
|
*/
|
|
13935
|
-
export type PermissionsPolicyFeature = "accelerometer"|"all-screens-capture"|"ambient-light-sensor"|"aria-notify"|"attribution-reporting"|"autofill"|"autoplay"|"bluetooth"|"browsing-topics"|"camera"|"captured-surface-control"|"ch-dpr"|"ch-device-memory"|"ch-downlink"|"ch-ect"|"ch-prefers-color-scheme"|"ch-prefers-reduced-motion"|"ch-prefers-reduced-transparency"|"ch-rtt"|"ch-save-data"|"ch-ua"|"ch-ua-arch"|"ch-ua-bitness"|"ch-ua-high-entropy-values"|"ch-ua-platform"|"ch-ua-model"|"ch-ua-mobile"|"ch-ua-form-factors"|"ch-ua-full-version"|"ch-ua-full-version-list"|"ch-ua-platform-version"|"ch-ua-wow64"|"ch-viewport-height"|"ch-viewport-width"|"ch-width"|"clipboard-read"|"clipboard-write"|"compute-pressure"|"controlled-frame"|"cross-origin-isolated"|"deferred-fetch"|"deferred-fetch-minimal"|"device-attributes"|"digital-credentials-create"|"digital-credentials-get"|"direct-sockets"|"direct-sockets-multicast"|"direct-sockets-private"|"display-capture"|"document-domain"|"encrypted-media"|"execution-while-out-of-viewport"|"execution-while-not-rendered"|"
|
|
14283
|
+
export type PermissionsPolicyFeature = "accelerometer"|"all-screens-capture"|"ambient-light-sensor"|"aria-notify"|"attribution-reporting"|"autofill"|"autoplay"|"bluetooth"|"browsing-topics"|"camera"|"captured-surface-control"|"ch-dpr"|"ch-device-memory"|"ch-downlink"|"ch-ect"|"ch-prefers-color-scheme"|"ch-prefers-reduced-motion"|"ch-prefers-reduced-transparency"|"ch-rtt"|"ch-save-data"|"ch-ua"|"ch-ua-arch"|"ch-ua-bitness"|"ch-ua-high-entropy-values"|"ch-ua-platform"|"ch-ua-model"|"ch-ua-mobile"|"ch-ua-form-factors"|"ch-ua-full-version"|"ch-ua-full-version-list"|"ch-ua-platform-version"|"ch-ua-wow64"|"ch-viewport-height"|"ch-viewport-width"|"ch-width"|"clipboard-read"|"clipboard-write"|"compute-pressure"|"controlled-frame"|"cross-origin-isolated"|"deferred-fetch"|"deferred-fetch-minimal"|"device-attributes"|"digital-credentials-create"|"digital-credentials-get"|"direct-sockets"|"direct-sockets-multicast"|"direct-sockets-private"|"display-capture"|"document-domain"|"encrypted-media"|"execution-while-out-of-viewport"|"execution-while-not-rendered"|"focus-without-user-activation"|"fullscreen"|"frobulate"|"gamepad"|"geolocation"|"gyroscope"|"hid"|"identity-credentials-get"|"idle-detection"|"interest-cohort"|"join-ad-interest-group"|"keyboard-map"|"language-detector"|"language-model"|"local-fonts"|"local-network"|"local-network-access"|"loopback-network"|"magnetometer"|"manual-text"|"media-playback-while-not-visible"|"microphone"|"midi"|"on-device-speech-recognition"|"otp-credentials"|"payment"|"picture-in-picture"|"private-aggregation"|"private-state-token-issuance"|"private-state-token-redemption"|"publickey-credentials-create"|"publickey-credentials-get"|"record-ad-auction-events"|"rewriter"|"run-ad-auction"|"screen-wake-lock"|"serial"|"shared-storage"|"shared-storage-select-url"|"smart-card"|"speaker-selection"|"storage-access"|"sub-apps"|"summarizer"|"sync-xhr"|"translator"|"unload"|"usb"|"usb-unrestricted"|"vertical-scroll"|"web-app-installation"|"web-printing"|"web-share"|"window-management"|"writer"|"xr-spatial-tracking";
|
|
13936
14284
|
/**
|
|
13937
14285
|
* Reason for a permissions policy feature to be disabled.
|
|
13938
14286
|
*/
|
|
@@ -14531,7 +14879,7 @@ https://github.com/WICG/manifest-incubations/blob/gh-pages/scope_extensions-expl
|
|
|
14531
14879
|
/**
|
|
14532
14880
|
* List of not restored reasons for back-forward cache.
|
|
14533
14881
|
*/
|
|
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";
|
|
14882
|
+
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
14883
|
/**
|
|
14536
14884
|
* Types of not restored reasons for back-forward cache.
|
|
14537
14885
|
*/
|
|
@@ -15225,7 +15573,7 @@ chain is ordered from the most immediate script (in the frame creation
|
|
|
15225
15573
|
stack) to more distant ancestors (that created the immediately preceding
|
|
15226
15574
|
script). Only sent if frame is labelled as an ad and ids are available.
|
|
15227
15575
|
*/
|
|
15228
|
-
adScriptAncestry?:
|
|
15576
|
+
adScriptAncestry?: Network.AdAncestry;
|
|
15229
15577
|
}
|
|
15230
15578
|
/**
|
|
15231
15579
|
* Returns present frame tree structure.
|
|
@@ -16230,6 +16578,7 @@ still keyed with the initial URL.
|
|
|
16230
16578
|
loaderId: Network.LoaderId;
|
|
16231
16579
|
action: SpeculationAction;
|
|
16232
16580
|
url: string;
|
|
16581
|
+
formSubmission?: boolean;
|
|
16233
16582
|
targetHint?: SpeculationTargetHint;
|
|
16234
16583
|
}
|
|
16235
16584
|
/**
|
|
@@ -16257,7 +16606,7 @@ CDP events for them are emitted separately but they share
|
|
|
16257
16606
|
/**
|
|
16258
16607
|
* List of FinalStatus reasons for Prerender2.
|
|
16259
16608
|
*/
|
|
16260
|
-
export type PrerenderFinalStatus = "Activated"|"Destroyed"|"LowEndDevice"|"InvalidSchemeRedirect"|"InvalidSchemeNavigation"|"NavigationRequestBlockedByCsp"|"MojoBinderPolicy"|"RendererProcessCrashed"|"RendererProcessKilled"|"Download"|"TriggerDestroyed"|"NavigationNotCommitted"|"NavigationBadHttpStatus"|"ClientCertRequested"|"NavigationRequestNetworkError"|"CancelAllHostsForTesting"|"DidFailLoad"|"Stop"|"SslCertificateError"|"LoginAuthRequested"|"UaChangeRequiresReload"|"BlockedByClient"|"AudioOutputDeviceRequested"|"MixedContent"|"TriggerBackgrounded"|"MemoryLimitExceeded"|"DataSaverEnabled"|"TriggerUrlHasEffectiveUrl"|"ActivatedBeforeStarted"|"InactivePageRestriction"|"StartFailed"|"TimeoutBackgrounded"|"CrossSiteRedirectInInitialNavigation"|"CrossSiteNavigationInInitialNavigation"|"SameSiteCrossOriginRedirectNotOptInInInitialNavigation"|"SameSiteCrossOriginNavigationNotOptInInInitialNavigation"|"ActivationNavigationParameterMismatch"|"ActivatedInBackground"|"EmbedderHostDisallowed"|"ActivationNavigationDestroyedBeforeSuccess"|"TabClosedByUserGesture"|"TabClosedWithoutUserGesture"|"PrimaryMainFrameRendererProcessCrashed"|"PrimaryMainFrameRendererProcessKilled"|"ActivationFramePolicyNotCompatible"|"PreloadingDisabled"|"BatterySaverEnabled"|"ActivatedDuringMainFrameNavigation"|"PreloadingUnsupportedByWebContents"|"CrossSiteRedirectInMainFrameNavigation"|"CrossSiteNavigationInMainFrameNavigation"|"SameSiteCrossOriginRedirectNotOptInInMainFrameNavigation"|"SameSiteCrossOriginNavigationNotOptInInMainFrameNavigation"|"MemoryPressureOnTrigger"|"MemoryPressureAfterTriggered"|"PrerenderingDisabledByDevTools"|"SpeculationRuleRemoved"|"ActivatedWithAuxiliaryBrowsingContexts"|"MaxNumOfRunningEagerPrerendersExceeded"|"MaxNumOfRunningNonEagerPrerendersExceeded"|"MaxNumOfRunningEmbedderPrerendersExceeded"|"PrerenderingUrlHasEffectiveUrl"|"RedirectedPrerenderingUrlHasEffectiveUrl"|"ActivationUrlHasEffectiveUrl"|"JavaScriptInterfaceAdded"|"JavaScriptInterfaceRemoved"|"AllPrerenderingCanceled"|"WindowClosed"|"SlowNetwork"|"OtherPrerenderedPageActivated"|"V8OptimizerDisabled"|"PrerenderFailedDuringPrefetch"|"BrowsingDataRemoved"|"PrerenderHostReused";
|
|
16609
|
+
export type PrerenderFinalStatus = "Activated"|"Destroyed"|"LowEndDevice"|"InvalidSchemeRedirect"|"InvalidSchemeNavigation"|"NavigationRequestBlockedByCsp"|"MojoBinderPolicy"|"RendererProcessCrashed"|"RendererProcessKilled"|"Download"|"TriggerDestroyed"|"NavigationNotCommitted"|"NavigationBadHttpStatus"|"ClientCertRequested"|"NavigationRequestNetworkError"|"CancelAllHostsForTesting"|"DidFailLoad"|"Stop"|"SslCertificateError"|"LoginAuthRequested"|"UaChangeRequiresReload"|"BlockedByClient"|"AudioOutputDeviceRequested"|"MixedContent"|"TriggerBackgrounded"|"MemoryLimitExceeded"|"DataSaverEnabled"|"TriggerUrlHasEffectiveUrl"|"ActivatedBeforeStarted"|"InactivePageRestriction"|"StartFailed"|"TimeoutBackgrounded"|"CrossSiteRedirectInInitialNavigation"|"CrossSiteNavigationInInitialNavigation"|"SameSiteCrossOriginRedirectNotOptInInInitialNavigation"|"SameSiteCrossOriginNavigationNotOptInInInitialNavigation"|"ActivationNavigationParameterMismatch"|"ActivatedInBackground"|"EmbedderHostDisallowed"|"ActivationNavigationDestroyedBeforeSuccess"|"TabClosedByUserGesture"|"TabClosedWithoutUserGesture"|"PrimaryMainFrameRendererProcessCrashed"|"PrimaryMainFrameRendererProcessKilled"|"ActivationFramePolicyNotCompatible"|"PreloadingDisabled"|"BatterySaverEnabled"|"ActivatedDuringMainFrameNavigation"|"PreloadingUnsupportedByWebContents"|"CrossSiteRedirectInMainFrameNavigation"|"CrossSiteNavigationInMainFrameNavigation"|"SameSiteCrossOriginRedirectNotOptInInMainFrameNavigation"|"SameSiteCrossOriginNavigationNotOptInInMainFrameNavigation"|"MemoryPressureOnTrigger"|"MemoryPressureAfterTriggered"|"PrerenderingDisabledByDevTools"|"SpeculationRuleRemoved"|"ActivatedWithAuxiliaryBrowsingContexts"|"MaxNumOfRunningEagerPrerendersExceeded"|"MaxNumOfRunningNonEagerPrerendersExceeded"|"MaxNumOfRunningEmbedderPrerendersExceeded"|"PrerenderingUrlHasEffectiveUrl"|"RedirectedPrerenderingUrlHasEffectiveUrl"|"ActivationUrlHasEffectiveUrl"|"JavaScriptInterfaceAdded"|"JavaScriptInterfaceRemoved"|"AllPrerenderingCanceled"|"WindowClosed"|"SlowNetwork"|"OtherPrerenderedPageActivated"|"V8OptimizerDisabled"|"PrerenderFailedDuringPrefetch"|"BrowsingDataRemoved"|"PrerenderHostReused"|"FormSubmitWhenPrerendering";
|
|
16261
16610
|
/**
|
|
16262
16611
|
* Preloading status values, see also PreloadingTriggeringOutcome. This
|
|
16263
16612
|
status is shared by prefetchStatusUpdated and prerenderStatusUpdated.
|
|
@@ -16771,6 +17120,407 @@ For cached script it is the last time the cache entry was validated.
|
|
|
16771
17120
|
}
|
|
16772
17121
|
}
|
|
16773
17122
|
|
|
17123
|
+
export namespace SmartCardEmulation {
|
|
17124
|
+
/**
|
|
17125
|
+
* Indicates the PC/SC error code.
|
|
17126
|
+
|
|
17127
|
+
This maps to:
|
|
17128
|
+
PC/SC Lite: https://pcsclite.apdu.fr/api/group__ErrorCodes.html
|
|
17129
|
+
Microsoft: https://learn.microsoft.com/en-us/windows/win32/secauthn/authentication-return-values
|
|
17130
|
+
*/
|
|
17131
|
+
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";
|
|
17132
|
+
/**
|
|
17133
|
+
* Maps to the |SCARD_SHARE_*| values.
|
|
17134
|
+
*/
|
|
17135
|
+
export type ShareMode = "shared"|"exclusive"|"direct";
|
|
17136
|
+
/**
|
|
17137
|
+
* Indicates what the reader should do with the card.
|
|
17138
|
+
*/
|
|
17139
|
+
export type Disposition = "leave-card"|"reset-card"|"unpower-card"|"eject-card";
|
|
17140
|
+
/**
|
|
17141
|
+
* Maps to |SCARD_*| connection state values.
|
|
17142
|
+
*/
|
|
17143
|
+
export type ConnectionState = "absent"|"present"|"swallowed"|"powered"|"negotiable"|"specific";
|
|
17144
|
+
/**
|
|
17145
|
+
* Maps to the |SCARD_STATE_*| flags.
|
|
17146
|
+
*/
|
|
17147
|
+
export interface ReaderStateFlags {
|
|
17148
|
+
unaware?: boolean;
|
|
17149
|
+
ignore?: boolean;
|
|
17150
|
+
changed?: boolean;
|
|
17151
|
+
unknown?: boolean;
|
|
17152
|
+
unavailable?: boolean;
|
|
17153
|
+
empty?: boolean;
|
|
17154
|
+
present?: boolean;
|
|
17155
|
+
exclusive?: boolean;
|
|
17156
|
+
inuse?: boolean;
|
|
17157
|
+
mute?: boolean;
|
|
17158
|
+
unpowered?: boolean;
|
|
17159
|
+
}
|
|
17160
|
+
/**
|
|
17161
|
+
* Maps to the |SCARD_PROTOCOL_*| flags.
|
|
17162
|
+
*/
|
|
17163
|
+
export interface ProtocolSet {
|
|
17164
|
+
t0?: boolean;
|
|
17165
|
+
t1?: boolean;
|
|
17166
|
+
raw?: boolean;
|
|
17167
|
+
}
|
|
17168
|
+
/**
|
|
17169
|
+
* Maps to the |SCARD_PROTOCOL_*| values.
|
|
17170
|
+
*/
|
|
17171
|
+
export type Protocol = "t0"|"t1"|"raw";
|
|
17172
|
+
export interface ReaderStateIn {
|
|
17173
|
+
reader: string;
|
|
17174
|
+
currentState: ReaderStateFlags;
|
|
17175
|
+
currentInsertionCount: number;
|
|
17176
|
+
}
|
|
17177
|
+
export interface ReaderStateOut {
|
|
17178
|
+
reader: string;
|
|
17179
|
+
eventState: ReaderStateFlags;
|
|
17180
|
+
eventCount: number;
|
|
17181
|
+
atr: binary;
|
|
17182
|
+
}
|
|
17183
|
+
|
|
17184
|
+
/**
|
|
17185
|
+
* Fired when |SCardEstablishContext| is called.
|
|
17186
|
+
|
|
17187
|
+
This maps to:
|
|
17188
|
+
PC/SC Lite: https://pcsclite.apdu.fr/api/group__API.html#gaa1b8970169fd4883a6dc4a8f43f19b67
|
|
17189
|
+
Microsoft: https://learn.microsoft.com/en-us/windows/win32/api/winscard/nf-winscard-scardestablishcontext
|
|
17190
|
+
*/
|
|
17191
|
+
export type establishContextRequestedPayload = {
|
|
17192
|
+
requestId: string;
|
|
17193
|
+
}
|
|
17194
|
+
/**
|
|
17195
|
+
* Fired when |SCardReleaseContext| is called.
|
|
17196
|
+
|
|
17197
|
+
This maps to:
|
|
17198
|
+
PC/SC Lite: https://pcsclite.apdu.fr/api/group__API.html#ga6aabcba7744c5c9419fdd6404f73a934
|
|
17199
|
+
Microsoft: https://learn.microsoft.com/en-us/windows/win32/api/winscard/nf-winscard-scardreleasecontext
|
|
17200
|
+
*/
|
|
17201
|
+
export type releaseContextRequestedPayload = {
|
|
17202
|
+
requestId: string;
|
|
17203
|
+
contextId: number;
|
|
17204
|
+
}
|
|
17205
|
+
/**
|
|
17206
|
+
* Fired when |SCardListReaders| is called.
|
|
17207
|
+
|
|
17208
|
+
This maps to:
|
|
17209
|
+
PC/SC Lite: https://pcsclite.apdu.fr/api/group__API.html#ga93b07815789b3cf2629d439ecf20f0d9
|
|
17210
|
+
Microsoft: https://learn.microsoft.com/en-us/windows/win32/api/winscard/nf-winscard-scardlistreadersa
|
|
17211
|
+
*/
|
|
17212
|
+
export type listReadersRequestedPayload = {
|
|
17213
|
+
requestId: string;
|
|
17214
|
+
contextId: number;
|
|
17215
|
+
}
|
|
17216
|
+
/**
|
|
17217
|
+
* Fired when |SCardGetStatusChange| is called. Timeout is specified in milliseconds.
|
|
17218
|
+
|
|
17219
|
+
This maps to:
|
|
17220
|
+
PC/SC Lite: https://pcsclite.apdu.fr/api/group__API.html#ga33247d5d1257d59e55647c3bb717db24
|
|
17221
|
+
Microsoft: https://learn.microsoft.com/en-us/windows/win32/api/winscard/nf-winscard-scardgetstatuschangea
|
|
17222
|
+
*/
|
|
17223
|
+
export type getStatusChangeRequestedPayload = {
|
|
17224
|
+
requestId: string;
|
|
17225
|
+
contextId: number;
|
|
17226
|
+
readerStates: ReaderStateIn[];
|
|
17227
|
+
/**
|
|
17228
|
+
* in milliseconds, if absent, it means "infinite"
|
|
17229
|
+
*/
|
|
17230
|
+
timeout?: number;
|
|
17231
|
+
}
|
|
17232
|
+
/**
|
|
17233
|
+
* Fired when |SCardCancel| is called.
|
|
17234
|
+
|
|
17235
|
+
This maps to:
|
|
17236
|
+
PC/SC Lite: https://pcsclite.apdu.fr/api/group__API.html#gaacbbc0c6d6c0cbbeb4f4debf6fbeeee6
|
|
17237
|
+
Microsoft: https://learn.microsoft.com/en-us/windows/win32/api/winscard/nf-winscard-scardcancel
|
|
17238
|
+
*/
|
|
17239
|
+
export type cancelRequestedPayload = {
|
|
17240
|
+
requestId: string;
|
|
17241
|
+
contextId: number;
|
|
17242
|
+
}
|
|
17243
|
+
/**
|
|
17244
|
+
* Fired when |SCardConnect| is called.
|
|
17245
|
+
|
|
17246
|
+
This maps to:
|
|
17247
|
+
PC/SC Lite: https://pcsclite.apdu.fr/api/group__API.html#ga4e515829752e0a8dbc4d630696a8d6a5
|
|
17248
|
+
Microsoft: https://learn.microsoft.com/en-us/windows/win32/api/winscard/nf-winscard-scardconnecta
|
|
17249
|
+
*/
|
|
17250
|
+
export type connectRequestedPayload = {
|
|
17251
|
+
requestId: string;
|
|
17252
|
+
contextId: number;
|
|
17253
|
+
reader: string;
|
|
17254
|
+
shareMode: ShareMode;
|
|
17255
|
+
preferredProtocols: ProtocolSet;
|
|
17256
|
+
}
|
|
17257
|
+
/**
|
|
17258
|
+
* Fired when |SCardDisconnect| is called.
|
|
17259
|
+
|
|
17260
|
+
This maps to:
|
|
17261
|
+
PC/SC Lite: https://pcsclite.apdu.fr/api/group__API.html#ga4be198045c73ec0deb79e66c0ca1738a
|
|
17262
|
+
Microsoft: https://learn.microsoft.com/en-us/windows/win32/api/winscard/nf-winscard-scarddisconnect
|
|
17263
|
+
*/
|
|
17264
|
+
export type disconnectRequestedPayload = {
|
|
17265
|
+
requestId: string;
|
|
17266
|
+
handle: number;
|
|
17267
|
+
disposition: Disposition;
|
|
17268
|
+
}
|
|
17269
|
+
/**
|
|
17270
|
+
* Fired when |SCardTransmit| is called.
|
|
17271
|
+
|
|
17272
|
+
This maps to:
|
|
17273
|
+
PC/SC Lite: https://pcsclite.apdu.fr/api/group__API.html#ga9a2d77242a271310269065e64633ab99
|
|
17274
|
+
Microsoft: https://learn.microsoft.com/en-us/windows/win32/api/winscard/nf-winscard-scardtransmit
|
|
17275
|
+
*/
|
|
17276
|
+
export type transmitRequestedPayload = {
|
|
17277
|
+
requestId: string;
|
|
17278
|
+
handle: number;
|
|
17279
|
+
data: binary;
|
|
17280
|
+
protocol?: Protocol;
|
|
17281
|
+
}
|
|
17282
|
+
/**
|
|
17283
|
+
* Fired when |SCardControl| is called.
|
|
17284
|
+
|
|
17285
|
+
This maps to:
|
|
17286
|
+
PC/SC Lite: https://pcsclite.apdu.fr/api/group__API.html#gac3454d4657110fd7f753b2d3d8f4e32f
|
|
17287
|
+
Microsoft: https://learn.microsoft.com/en-us/windows/win32/api/winscard/nf-winscard-scardcontrol
|
|
17288
|
+
*/
|
|
17289
|
+
export type controlRequestedPayload = {
|
|
17290
|
+
requestId: string;
|
|
17291
|
+
handle: number;
|
|
17292
|
+
controlCode: number;
|
|
17293
|
+
data: binary;
|
|
17294
|
+
}
|
|
17295
|
+
/**
|
|
17296
|
+
* Fired when |SCardGetAttrib| is called.
|
|
17297
|
+
|
|
17298
|
+
This maps to:
|
|
17299
|
+
PC/SC Lite: https://pcsclite.apdu.fr/api/group__API.html#gaacfec51917255b7a25b94c5104961602
|
|
17300
|
+
Microsoft: https://learn.microsoft.com/en-us/windows/win32/api/winscard/nf-winscard-scardgetattrib
|
|
17301
|
+
*/
|
|
17302
|
+
export type getAttribRequestedPayload = {
|
|
17303
|
+
requestId: string;
|
|
17304
|
+
handle: number;
|
|
17305
|
+
attribId: number;
|
|
17306
|
+
}
|
|
17307
|
+
/**
|
|
17308
|
+
* Fired when |SCardSetAttrib| is called.
|
|
17309
|
+
|
|
17310
|
+
This maps to:
|
|
17311
|
+
PC/SC Lite: https://pcsclite.apdu.fr/api/group__API.html#ga060f0038a4ddfd5dd2b8fadf3c3a2e4f
|
|
17312
|
+
Microsoft: https://learn.microsoft.com/en-us/windows/win32/api/winscard/nf-winscard-scardsetattrib
|
|
17313
|
+
*/
|
|
17314
|
+
export type setAttribRequestedPayload = {
|
|
17315
|
+
requestId: string;
|
|
17316
|
+
handle: number;
|
|
17317
|
+
attribId: number;
|
|
17318
|
+
data: binary;
|
|
17319
|
+
}
|
|
17320
|
+
/**
|
|
17321
|
+
* Fired when |SCardStatus| is called.
|
|
17322
|
+
|
|
17323
|
+
This maps to:
|
|
17324
|
+
PC/SC Lite: https://pcsclite.apdu.fr/api/group__API.html#gae49c3c894ad7ac12a5b896bde70d0382
|
|
17325
|
+
Microsoft: https://learn.microsoft.com/en-us/windows/win32/api/winscard/nf-winscard-scardstatusa
|
|
17326
|
+
*/
|
|
17327
|
+
export type statusRequestedPayload = {
|
|
17328
|
+
requestId: string;
|
|
17329
|
+
handle: number;
|
|
17330
|
+
}
|
|
17331
|
+
/**
|
|
17332
|
+
* Fired when |SCardBeginTransaction| is called.
|
|
17333
|
+
|
|
17334
|
+
This maps to:
|
|
17335
|
+
PC/SC Lite: https://pcsclite.apdu.fr/api/group__API.html#gaddb835dce01a0da1d6ca02d33ee7d861
|
|
17336
|
+
Microsoft: https://learn.microsoft.com/en-us/windows/win32/api/winscard/nf-winscard-scardbegintransaction
|
|
17337
|
+
*/
|
|
17338
|
+
export type beginTransactionRequestedPayload = {
|
|
17339
|
+
requestId: string;
|
|
17340
|
+
handle: number;
|
|
17341
|
+
}
|
|
17342
|
+
/**
|
|
17343
|
+
* Fired when |SCardEndTransaction| is called.
|
|
17344
|
+
|
|
17345
|
+
This maps to:
|
|
17346
|
+
PC/SC Lite: https://pcsclite.apdu.fr/api/group__API.html#gae8742473b404363e5c587f570d7e2f3b
|
|
17347
|
+
Microsoft: https://learn.microsoft.com/en-us/windows/win32/api/winscard/nf-winscard-scardendtransaction
|
|
17348
|
+
*/
|
|
17349
|
+
export type endTransactionRequestedPayload = {
|
|
17350
|
+
requestId: string;
|
|
17351
|
+
handle: number;
|
|
17352
|
+
disposition: Disposition;
|
|
17353
|
+
}
|
|
17354
|
+
|
|
17355
|
+
/**
|
|
17356
|
+
* Enables the |SmartCardEmulation| domain.
|
|
17357
|
+
*/
|
|
17358
|
+
export type enableParameters = {
|
|
17359
|
+
}
|
|
17360
|
+
export type enableReturnValue = {
|
|
17361
|
+
}
|
|
17362
|
+
/**
|
|
17363
|
+
* Disables the |SmartCardEmulation| domain.
|
|
17364
|
+
*/
|
|
17365
|
+
export type disableParameters = {
|
|
17366
|
+
}
|
|
17367
|
+
export type disableReturnValue = {
|
|
17368
|
+
}
|
|
17369
|
+
/**
|
|
17370
|
+
* Reports the successful result of a |SCardEstablishContext| call.
|
|
17371
|
+
|
|
17372
|
+
This maps to:
|
|
17373
|
+
PC/SC Lite: https://pcsclite.apdu.fr/api/group__API.html#gaa1b8970169fd4883a6dc4a8f43f19b67
|
|
17374
|
+
Microsoft: https://learn.microsoft.com/en-us/windows/win32/api/winscard/nf-winscard-scardestablishcontext
|
|
17375
|
+
*/
|
|
17376
|
+
export type reportEstablishContextResultParameters = {
|
|
17377
|
+
requestId: string;
|
|
17378
|
+
contextId: number;
|
|
17379
|
+
}
|
|
17380
|
+
export type reportEstablishContextResultReturnValue = {
|
|
17381
|
+
}
|
|
17382
|
+
/**
|
|
17383
|
+
* Reports the successful result of a |SCardReleaseContext| call.
|
|
17384
|
+
|
|
17385
|
+
This maps to:
|
|
17386
|
+
PC/SC Lite: https://pcsclite.apdu.fr/api/group__API.html#ga6aabcba7744c5c9419fdd6404f73a934
|
|
17387
|
+
Microsoft: https://learn.microsoft.com/en-us/windows/win32/api/winscard/nf-winscard-scardreleasecontext
|
|
17388
|
+
*/
|
|
17389
|
+
export type reportReleaseContextResultParameters = {
|
|
17390
|
+
requestId: string;
|
|
17391
|
+
}
|
|
17392
|
+
export type reportReleaseContextResultReturnValue = {
|
|
17393
|
+
}
|
|
17394
|
+
/**
|
|
17395
|
+
* Reports the successful result of a |SCardListReaders| call.
|
|
17396
|
+
|
|
17397
|
+
This maps to:
|
|
17398
|
+
PC/SC Lite: https://pcsclite.apdu.fr/api/group__API.html#ga93b07815789b3cf2629d439ecf20f0d9
|
|
17399
|
+
Microsoft: https://learn.microsoft.com/en-us/windows/win32/api/winscard/nf-winscard-scardlistreadersa
|
|
17400
|
+
*/
|
|
17401
|
+
export type reportListReadersResultParameters = {
|
|
17402
|
+
requestId: string;
|
|
17403
|
+
readers: string[];
|
|
17404
|
+
}
|
|
17405
|
+
export type reportListReadersResultReturnValue = {
|
|
17406
|
+
}
|
|
17407
|
+
/**
|
|
17408
|
+
* Reports the successful result of a |SCardGetStatusChange| call.
|
|
17409
|
+
|
|
17410
|
+
This maps to:
|
|
17411
|
+
PC/SC Lite: https://pcsclite.apdu.fr/api/group__API.html#ga33247d5d1257d59e55647c3bb717db24
|
|
17412
|
+
Microsoft: https://learn.microsoft.com/en-us/windows/win32/api/winscard/nf-winscard-scardgetstatuschangea
|
|
17413
|
+
*/
|
|
17414
|
+
export type reportGetStatusChangeResultParameters = {
|
|
17415
|
+
requestId: string;
|
|
17416
|
+
readerStates: ReaderStateOut[];
|
|
17417
|
+
}
|
|
17418
|
+
export type reportGetStatusChangeResultReturnValue = {
|
|
17419
|
+
}
|
|
17420
|
+
/**
|
|
17421
|
+
* Reports the result of a |SCardBeginTransaction| call.
|
|
17422
|
+
On success, this creates a new transaction object.
|
|
17423
|
+
|
|
17424
|
+
This maps to:
|
|
17425
|
+
PC/SC Lite: https://pcsclite.apdu.fr/api/group__API.html#gaddb835dce01a0da1d6ca02d33ee7d861
|
|
17426
|
+
Microsoft: https://learn.microsoft.com/en-us/windows/win32/api/winscard/nf-winscard-scardbegintransaction
|
|
17427
|
+
*/
|
|
17428
|
+
export type reportBeginTransactionResultParameters = {
|
|
17429
|
+
requestId: string;
|
|
17430
|
+
handle: number;
|
|
17431
|
+
}
|
|
17432
|
+
export type reportBeginTransactionResultReturnValue = {
|
|
17433
|
+
}
|
|
17434
|
+
/**
|
|
17435
|
+
* Reports the successful result of a call that returns only a result code.
|
|
17436
|
+
Used for: |SCardCancel|, |SCardDisconnect|, |SCardSetAttrib|, |SCardEndTransaction|.
|
|
17437
|
+
|
|
17438
|
+
This maps to:
|
|
17439
|
+
1. SCardCancel
|
|
17440
|
+
PC/SC Lite: https://pcsclite.apdu.fr/api/group__API.html#gaacbbc0c6d6c0cbbeb4f4debf6fbeeee6
|
|
17441
|
+
Microsoft: https://learn.microsoft.com/en-us/windows/win32/api/winscard/nf-winscard-scardcancel
|
|
17442
|
+
|
|
17443
|
+
2. SCardDisconnect
|
|
17444
|
+
PC/SC Lite: https://pcsclite.apdu.fr/api/group__API.html#ga4be198045c73ec0deb79e66c0ca1738a
|
|
17445
|
+
Microsoft: https://learn.microsoft.com/en-us/windows/win32/api/winscard/nf-winscard-scarddisconnect
|
|
17446
|
+
|
|
17447
|
+
3. SCardSetAttrib
|
|
17448
|
+
PC/SC Lite: https://pcsclite.apdu.fr/api/group__API.html#ga060f0038a4ddfd5dd2b8fadf3c3a2e4f
|
|
17449
|
+
Microsoft: https://learn.microsoft.com/en-us/windows/win32/api/winscard/nf-winscard-scardsetattrib
|
|
17450
|
+
|
|
17451
|
+
4. SCardEndTransaction
|
|
17452
|
+
PC/SC Lite: https://pcsclite.apdu.fr/api/group__API.html#gae8742473b404363e5c587f570d7e2f3b
|
|
17453
|
+
Microsoft: https://learn.microsoft.com/en-us/windows/win32/api/winscard/nf-winscard-scardendtransaction
|
|
17454
|
+
*/
|
|
17455
|
+
export type reportPlainResultParameters = {
|
|
17456
|
+
requestId: string;
|
|
17457
|
+
}
|
|
17458
|
+
export type reportPlainResultReturnValue = {
|
|
17459
|
+
}
|
|
17460
|
+
/**
|
|
17461
|
+
* Reports the successful result of a |SCardConnect| call.
|
|
17462
|
+
|
|
17463
|
+
This maps to:
|
|
17464
|
+
PC/SC Lite: https://pcsclite.apdu.fr/api/group__API.html#ga4e515829752e0a8dbc4d630696a8d6a5
|
|
17465
|
+
Microsoft: https://learn.microsoft.com/en-us/windows/win32/api/winscard/nf-winscard-scardconnecta
|
|
17466
|
+
*/
|
|
17467
|
+
export type reportConnectResultParameters = {
|
|
17468
|
+
requestId: string;
|
|
17469
|
+
handle: number;
|
|
17470
|
+
activeProtocol?: Protocol;
|
|
17471
|
+
}
|
|
17472
|
+
export type reportConnectResultReturnValue = {
|
|
17473
|
+
}
|
|
17474
|
+
/**
|
|
17475
|
+
* Reports the successful result of a call that sends back data on success.
|
|
17476
|
+
Used for |SCardTransmit|, |SCardControl|, and |SCardGetAttrib|.
|
|
17477
|
+
|
|
17478
|
+
This maps to:
|
|
17479
|
+
1. SCardTransmit
|
|
17480
|
+
PC/SC Lite: https://pcsclite.apdu.fr/api/group__API.html#ga9a2d77242a271310269065e64633ab99
|
|
17481
|
+
Microsoft: https://learn.microsoft.com/en-us/windows/win32/api/winscard/nf-winscard-scardtransmit
|
|
17482
|
+
|
|
17483
|
+
2. SCardControl
|
|
17484
|
+
PC/SC Lite: https://pcsclite.apdu.fr/api/group__API.html#gac3454d4657110fd7f753b2d3d8f4e32f
|
|
17485
|
+
Microsoft: https://learn.microsoft.com/en-us/windows/win32/api/winscard/nf-winscard-scardcontrol
|
|
17486
|
+
|
|
17487
|
+
3. SCardGetAttrib
|
|
17488
|
+
PC/SC Lite: https://pcsclite.apdu.fr/api/group__API.html#gaacfec51917255b7a25b94c5104961602
|
|
17489
|
+
Microsoft: https://learn.microsoft.com/en-us/windows/win32/api/winscard/nf-winscard-scardgetattrib
|
|
17490
|
+
*/
|
|
17491
|
+
export type reportDataResultParameters = {
|
|
17492
|
+
requestId: string;
|
|
17493
|
+
data: binary;
|
|
17494
|
+
}
|
|
17495
|
+
export type reportDataResultReturnValue = {
|
|
17496
|
+
}
|
|
17497
|
+
/**
|
|
17498
|
+
* Reports the successful result of a |SCardStatus| call.
|
|
17499
|
+
|
|
17500
|
+
This maps to:
|
|
17501
|
+
PC/SC Lite: https://pcsclite.apdu.fr/api/group__API.html#gae49c3c894ad7ac12a5b896bde70d0382
|
|
17502
|
+
Microsoft: https://learn.microsoft.com/en-us/windows/win32/api/winscard/nf-winscard-scardstatusa
|
|
17503
|
+
*/
|
|
17504
|
+
export type reportStatusResultParameters = {
|
|
17505
|
+
requestId: string;
|
|
17506
|
+
readerName: string;
|
|
17507
|
+
state: ConnectionState;
|
|
17508
|
+
atr: binary;
|
|
17509
|
+
protocol?: Protocol;
|
|
17510
|
+
}
|
|
17511
|
+
export type reportStatusResultReturnValue = {
|
|
17512
|
+
}
|
|
17513
|
+
/**
|
|
17514
|
+
* Reports an error result for the given request.
|
|
17515
|
+
*/
|
|
17516
|
+
export type reportErrorParameters = {
|
|
17517
|
+
requestId: string;
|
|
17518
|
+
resultCode: ResultCode;
|
|
17519
|
+
}
|
|
17520
|
+
export type reportErrorReturnValue = {
|
|
17521
|
+
}
|
|
17522
|
+
}
|
|
17523
|
+
|
|
16774
17524
|
export namespace Storage {
|
|
16775
17525
|
export type SerializedStorageKey = string;
|
|
16776
17526
|
/**
|
|
@@ -17016,159 +17766,6 @@ Present only for SharedStorageAccessMethod: batchUpdate.
|
|
|
17016
17766
|
persistent: boolean;
|
|
17017
17767
|
durability: StorageBucketsDurability;
|
|
17018
17768
|
}
|
|
17019
|
-
export type AttributionReportingSourceType = "navigation"|"event";
|
|
17020
|
-
export type UnsignedInt64AsBase10 = string;
|
|
17021
|
-
export type UnsignedInt128AsBase16 = string;
|
|
17022
|
-
export type SignedInt64AsBase10 = string;
|
|
17023
|
-
export interface AttributionReportingFilterDataEntry {
|
|
17024
|
-
key: string;
|
|
17025
|
-
values: string[];
|
|
17026
|
-
}
|
|
17027
|
-
export interface AttributionReportingFilterConfig {
|
|
17028
|
-
filterValues: AttributionReportingFilterDataEntry[];
|
|
17029
|
-
/**
|
|
17030
|
-
* duration in seconds
|
|
17031
|
-
*/
|
|
17032
|
-
lookbackWindow?: number;
|
|
17033
|
-
}
|
|
17034
|
-
export interface AttributionReportingFilterPair {
|
|
17035
|
-
filters: AttributionReportingFilterConfig[];
|
|
17036
|
-
notFilters: AttributionReportingFilterConfig[];
|
|
17037
|
-
}
|
|
17038
|
-
export interface AttributionReportingAggregationKeysEntry {
|
|
17039
|
-
key: string;
|
|
17040
|
-
value: UnsignedInt128AsBase16;
|
|
17041
|
-
}
|
|
17042
|
-
export interface AttributionReportingEventReportWindows {
|
|
17043
|
-
/**
|
|
17044
|
-
* duration in seconds
|
|
17045
|
-
*/
|
|
17046
|
-
start: number;
|
|
17047
|
-
/**
|
|
17048
|
-
* duration in seconds
|
|
17049
|
-
*/
|
|
17050
|
-
ends: number[];
|
|
17051
|
-
}
|
|
17052
|
-
export type AttributionReportingTriggerDataMatching = "exact"|"modulus";
|
|
17053
|
-
export interface AttributionReportingAggregatableDebugReportingData {
|
|
17054
|
-
keyPiece: UnsignedInt128AsBase16;
|
|
17055
|
-
/**
|
|
17056
|
-
* number instead of integer because not all uint32 can be represented by
|
|
17057
|
-
int
|
|
17058
|
-
*/
|
|
17059
|
-
value: number;
|
|
17060
|
-
types: string[];
|
|
17061
|
-
}
|
|
17062
|
-
export interface AttributionReportingAggregatableDebugReportingConfig {
|
|
17063
|
-
/**
|
|
17064
|
-
* number instead of integer because not all uint32 can be represented by
|
|
17065
|
-
int, only present for source registrations
|
|
17066
|
-
*/
|
|
17067
|
-
budget?: number;
|
|
17068
|
-
keyPiece: UnsignedInt128AsBase16;
|
|
17069
|
-
debugData: AttributionReportingAggregatableDebugReportingData[];
|
|
17070
|
-
aggregationCoordinatorOrigin?: string;
|
|
17071
|
-
}
|
|
17072
|
-
export interface AttributionScopesData {
|
|
17073
|
-
values: string[];
|
|
17074
|
-
/**
|
|
17075
|
-
* number instead of integer because not all uint32 can be represented by
|
|
17076
|
-
int
|
|
17077
|
-
*/
|
|
17078
|
-
limit: number;
|
|
17079
|
-
maxEventStates: number;
|
|
17080
|
-
}
|
|
17081
|
-
export interface AttributionReportingNamedBudgetDef {
|
|
17082
|
-
name: string;
|
|
17083
|
-
budget: number;
|
|
17084
|
-
}
|
|
17085
|
-
export interface AttributionReportingSourceRegistration {
|
|
17086
|
-
time: Network.TimeSinceEpoch;
|
|
17087
|
-
/**
|
|
17088
|
-
* duration in seconds
|
|
17089
|
-
*/
|
|
17090
|
-
expiry: number;
|
|
17091
|
-
/**
|
|
17092
|
-
* number instead of integer because not all uint32 can be represented by
|
|
17093
|
-
int
|
|
17094
|
-
*/
|
|
17095
|
-
triggerData: number[];
|
|
17096
|
-
eventReportWindows: AttributionReportingEventReportWindows;
|
|
17097
|
-
/**
|
|
17098
|
-
* duration in seconds
|
|
17099
|
-
*/
|
|
17100
|
-
aggregatableReportWindow: number;
|
|
17101
|
-
type: AttributionReportingSourceType;
|
|
17102
|
-
sourceOrigin: string;
|
|
17103
|
-
reportingOrigin: string;
|
|
17104
|
-
destinationSites: string[];
|
|
17105
|
-
eventId: UnsignedInt64AsBase10;
|
|
17106
|
-
priority: SignedInt64AsBase10;
|
|
17107
|
-
filterData: AttributionReportingFilterDataEntry[];
|
|
17108
|
-
aggregationKeys: AttributionReportingAggregationKeysEntry[];
|
|
17109
|
-
debugKey?: UnsignedInt64AsBase10;
|
|
17110
|
-
triggerDataMatching: AttributionReportingTriggerDataMatching;
|
|
17111
|
-
destinationLimitPriority: SignedInt64AsBase10;
|
|
17112
|
-
aggregatableDebugReportingConfig: AttributionReportingAggregatableDebugReportingConfig;
|
|
17113
|
-
scopesData?: AttributionScopesData;
|
|
17114
|
-
maxEventLevelReports: number;
|
|
17115
|
-
namedBudgets: AttributionReportingNamedBudgetDef[];
|
|
17116
|
-
debugReporting: boolean;
|
|
17117
|
-
eventLevelEpsilon: number;
|
|
17118
|
-
}
|
|
17119
|
-
export type AttributionReportingSourceRegistrationResult = "success"|"internalError"|"insufficientSourceCapacity"|"insufficientUniqueDestinationCapacity"|"excessiveReportingOrigins"|"prohibitedByBrowserPolicy"|"successNoised"|"destinationReportingLimitReached"|"destinationGlobalLimitReached"|"destinationBothLimitsReached"|"reportingOriginsPerSiteLimitReached"|"exceedsMaxChannelCapacity"|"exceedsMaxScopesChannelCapacity"|"exceedsMaxTriggerStateCardinality"|"exceedsMaxEventStatesLimit"|"destinationPerDayReportingLimitReached";
|
|
17120
|
-
export type AttributionReportingSourceRegistrationTimeConfig = "include"|"exclude";
|
|
17121
|
-
export interface AttributionReportingAggregatableValueDictEntry {
|
|
17122
|
-
key: string;
|
|
17123
|
-
/**
|
|
17124
|
-
* number instead of integer because not all uint32 can be represented by
|
|
17125
|
-
int
|
|
17126
|
-
*/
|
|
17127
|
-
value: number;
|
|
17128
|
-
filteringId: UnsignedInt64AsBase10;
|
|
17129
|
-
}
|
|
17130
|
-
export interface AttributionReportingAggregatableValueEntry {
|
|
17131
|
-
values: AttributionReportingAggregatableValueDictEntry[];
|
|
17132
|
-
filters: AttributionReportingFilterPair;
|
|
17133
|
-
}
|
|
17134
|
-
export interface AttributionReportingEventTriggerData {
|
|
17135
|
-
data: UnsignedInt64AsBase10;
|
|
17136
|
-
priority: SignedInt64AsBase10;
|
|
17137
|
-
dedupKey?: UnsignedInt64AsBase10;
|
|
17138
|
-
filters: AttributionReportingFilterPair;
|
|
17139
|
-
}
|
|
17140
|
-
export interface AttributionReportingAggregatableTriggerData {
|
|
17141
|
-
keyPiece: UnsignedInt128AsBase16;
|
|
17142
|
-
sourceKeys: string[];
|
|
17143
|
-
filters: AttributionReportingFilterPair;
|
|
17144
|
-
}
|
|
17145
|
-
export interface AttributionReportingAggregatableDedupKey {
|
|
17146
|
-
dedupKey?: UnsignedInt64AsBase10;
|
|
17147
|
-
filters: AttributionReportingFilterPair;
|
|
17148
|
-
}
|
|
17149
|
-
export interface AttributionReportingNamedBudgetCandidate {
|
|
17150
|
-
name?: string;
|
|
17151
|
-
filters: AttributionReportingFilterPair;
|
|
17152
|
-
}
|
|
17153
|
-
export interface AttributionReportingTriggerRegistration {
|
|
17154
|
-
filters: AttributionReportingFilterPair;
|
|
17155
|
-
debugKey?: UnsignedInt64AsBase10;
|
|
17156
|
-
aggregatableDedupKeys: AttributionReportingAggregatableDedupKey[];
|
|
17157
|
-
eventTriggerData: AttributionReportingEventTriggerData[];
|
|
17158
|
-
aggregatableTriggerData: AttributionReportingAggregatableTriggerData[];
|
|
17159
|
-
aggregatableValues: AttributionReportingAggregatableValueEntry[];
|
|
17160
|
-
aggregatableFilteringIdMaxBytes: number;
|
|
17161
|
-
debugReporting: boolean;
|
|
17162
|
-
aggregationCoordinatorOrigin?: string;
|
|
17163
|
-
sourceRegistrationTimeConfig: AttributionReportingSourceRegistrationTimeConfig;
|
|
17164
|
-
triggerContextId?: string;
|
|
17165
|
-
aggregatableDebugReportingConfig: AttributionReportingAggregatableDebugReportingConfig;
|
|
17166
|
-
scopes: string[];
|
|
17167
|
-
namedBudgets: AttributionReportingNamedBudgetCandidate[];
|
|
17168
|
-
}
|
|
17169
|
-
export type AttributionReportingEventLevelResult = "success"|"successDroppedLowerPriority"|"internalError"|"noCapacityForAttributionDestination"|"noMatchingSources"|"deduplicated"|"excessiveAttributions"|"priorityTooLow"|"neverAttributedSource"|"excessiveReportingOrigins"|"noMatchingSourceFilterData"|"prohibitedByBrowserPolicy"|"noMatchingConfigurations"|"excessiveReports"|"falselyAttributedSource"|"reportWindowPassed"|"notRegistered"|"reportWindowNotStarted"|"noMatchingTriggerData";
|
|
17170
|
-
export type AttributionReportingAggregatableResult = "success"|"internalError"|"noCapacityForAttributionDestination"|"noMatchingSources"|"excessiveAttributions"|"excessiveReportingOrigins"|"noHistograms"|"insufficientBudget"|"insufficientNamedBudget"|"noMatchingSourceFilterData"|"notRegistered"|"prohibitedByBrowserPolicy"|"deduplicated"|"reportWindowPassed"|"excessiveReports";
|
|
17171
|
-
export type AttributionReportingReportResult = "sent"|"prohibited"|"failedToAssemble"|"expired";
|
|
17172
17769
|
/**
|
|
17173
17770
|
* A single Related Website Set object.
|
|
17174
17771
|
*/
|
|
@@ -17401,33 +17998,6 @@ associated shared storage worklet.
|
|
|
17401
17998
|
export type storageBucketDeletedPayload = {
|
|
17402
17999
|
bucketId: string;
|
|
17403
18000
|
}
|
|
17404
|
-
export type attributionReportingSourceRegisteredPayload = {
|
|
17405
|
-
registration: AttributionReportingSourceRegistration;
|
|
17406
|
-
result: AttributionReportingSourceRegistrationResult;
|
|
17407
|
-
}
|
|
17408
|
-
export type attributionReportingTriggerRegisteredPayload = {
|
|
17409
|
-
registration: AttributionReportingTriggerRegistration;
|
|
17410
|
-
eventLevel: AttributionReportingEventLevelResult;
|
|
17411
|
-
aggregatable: AttributionReportingAggregatableResult;
|
|
17412
|
-
}
|
|
17413
|
-
export type attributionReportingReportSentPayload = {
|
|
17414
|
-
url: string;
|
|
17415
|
-
body: { [key: string]: string };
|
|
17416
|
-
result: AttributionReportingReportResult;
|
|
17417
|
-
/**
|
|
17418
|
-
* If result is `sent`, populated with net/HTTP status.
|
|
17419
|
-
*/
|
|
17420
|
-
netError?: number;
|
|
17421
|
-
netErrorName?: string;
|
|
17422
|
-
httpStatusCode?: number;
|
|
17423
|
-
}
|
|
17424
|
-
export type attributionReportingVerboseDebugReportSentPayload = {
|
|
17425
|
-
url: string;
|
|
17426
|
-
body?: { [key: string]: string }[];
|
|
17427
|
-
netError?: number;
|
|
17428
|
-
netErrorName?: string;
|
|
17429
|
-
httpStatusCode?: number;
|
|
17430
|
-
}
|
|
17431
18001
|
|
|
17432
18002
|
/**
|
|
17433
18003
|
* Returns a storage key given a frame id.
|
|
@@ -17802,37 +18372,6 @@ interestGroupAuctionNetworkRequestCreated.
|
|
|
17802
18372
|
export type runBounceTrackingMitigationsReturnValue = {
|
|
17803
18373
|
deletedSites: string[];
|
|
17804
18374
|
}
|
|
17805
|
-
/**
|
|
17806
|
-
* https://wicg.github.io/attribution-reporting-api/
|
|
17807
|
-
*/
|
|
17808
|
-
export type setAttributionReportingLocalTestingModeParameters = {
|
|
17809
|
-
/**
|
|
17810
|
-
* If enabled, noise is suppressed and reports are sent immediately.
|
|
17811
|
-
*/
|
|
17812
|
-
enabled: boolean;
|
|
17813
|
-
}
|
|
17814
|
-
export type setAttributionReportingLocalTestingModeReturnValue = {
|
|
17815
|
-
}
|
|
17816
|
-
/**
|
|
17817
|
-
* Enables/disables issuing of Attribution Reporting events.
|
|
17818
|
-
*/
|
|
17819
|
-
export type setAttributionReportingTrackingParameters = {
|
|
17820
|
-
enable: boolean;
|
|
17821
|
-
}
|
|
17822
|
-
export type setAttributionReportingTrackingReturnValue = {
|
|
17823
|
-
}
|
|
17824
|
-
/**
|
|
17825
|
-
* Sends all pending Attribution Reports immediately, regardless of their
|
|
17826
|
-
scheduled report time.
|
|
17827
|
-
*/
|
|
17828
|
-
export type sendPendingAttributionReportsParameters = {
|
|
17829
|
-
}
|
|
17830
|
-
export type sendPendingAttributionReportsReturnValue = {
|
|
17831
|
-
/**
|
|
17832
|
-
* The number of reports that were sent.
|
|
17833
|
-
*/
|
|
17834
|
-
numSent: number;
|
|
17835
|
-
}
|
|
17836
18375
|
/**
|
|
17837
18376
|
* Returns the effective Related Website Sets in use by this profile for the browser
|
|
17838
18377
|
session. The effective Related Website Sets will not change during a browser session.
|
|
@@ -17842,28 +18381,6 @@ session. The effective Related Website Sets will not change during a browser ses
|
|
|
17842
18381
|
export type getRelatedWebsiteSetsReturnValue = {
|
|
17843
18382
|
sets: RelatedWebsiteSet[];
|
|
17844
18383
|
}
|
|
17845
|
-
/**
|
|
17846
|
-
* Returns the list of URLs from a page and its embedded resources that match
|
|
17847
|
-
existing grace period URL pattern rules.
|
|
17848
|
-
https://developers.google.com/privacy-sandbox/cookies/temporary-exceptions/grace-period
|
|
17849
|
-
*/
|
|
17850
|
-
export type getAffectedUrlsForThirdPartyCookieMetadataParameters = {
|
|
17851
|
-
/**
|
|
17852
|
-
* The URL of the page currently being visited.
|
|
17853
|
-
*/
|
|
17854
|
-
firstPartyUrl: string;
|
|
17855
|
-
/**
|
|
17856
|
-
* The list of embedded resource URLs from the page.
|
|
17857
|
-
*/
|
|
17858
|
-
thirdPartyUrls: string[];
|
|
17859
|
-
}
|
|
17860
|
-
export type getAffectedUrlsForThirdPartyCookieMetadataReturnValue = {
|
|
17861
|
-
/**
|
|
17862
|
-
* Array of matching URLs. If there is a primary pattern match for the first-
|
|
17863
|
-
party URL, only the first-party URL is returned in the array.
|
|
17864
|
-
*/
|
|
17865
|
-
matchedUrls: string[];
|
|
17866
|
-
}
|
|
17867
18384
|
export type setProtectedAudienceKAnonymityParameters = {
|
|
17868
18385
|
owner: string;
|
|
17869
18386
|
name: string;
|
|
@@ -18393,6 +18910,16 @@ present in the tab UI strip. Cannot be created with `forTab: true`, `newWindow:
|
|
|
18393
18910
|
`background: false`. The life-time of the tab is limited to the life-time of the session.
|
|
18394
18911
|
*/
|
|
18395
18912
|
hidden?: boolean;
|
|
18913
|
+
/**
|
|
18914
|
+
* If specified, the option is used to determine if the new target should
|
|
18915
|
+
be focused or not. By default, the focus behavior depends on the
|
|
18916
|
+
value of the background field. For example, background=false and focus=false
|
|
18917
|
+
will result in the target tab being opened but the browser window remain
|
|
18918
|
+
unchanged (if it was in the background, it will remain in the background)
|
|
18919
|
+
and background=false with focus=undefined will result in the window being focused.
|
|
18920
|
+
Using background: true and focus: true is not supported and will result in an error.
|
|
18921
|
+
*/
|
|
18922
|
+
focus?: boolean;
|
|
18396
18923
|
}
|
|
18397
18924
|
export type createTargetReturnValue = {
|
|
18398
18925
|
/**
|
|
@@ -19102,7 +19629,7 @@ API.
|
|
|
19102
19629
|
export namespace WebAuthn {
|
|
19103
19630
|
export type AuthenticatorId = string;
|
|
19104
19631
|
export type AuthenticatorProtocol = "u2f"|"ctap2";
|
|
19105
|
-
export type Ctap2Version = "ctap2_0"|"ctap2_1";
|
|
19632
|
+
export type Ctap2Version = "ctap2_0"|"ctap2_1"|"ctap2_2";
|
|
19106
19633
|
export type AuthenticatorTransport = "usb"|"nfc"|"ble"|"cable"|"internal";
|
|
19107
19634
|
export interface VirtualAuthenticatorOptions {
|
|
19108
19635
|
protocol: AuthenticatorProtocol;
|
|
@@ -19143,6 +19670,18 @@ https://w3c.github.io/webauthn/#prf-extension
|
|
|
19143
19670
|
Defaults to false.
|
|
19144
19671
|
*/
|
|
19145
19672
|
hasPrf?: boolean;
|
|
19673
|
+
/**
|
|
19674
|
+
* If set to true, the authenticator will support the hmac-secret extension.
|
|
19675
|
+
https://fidoalliance.org/specs/fido-v2.1-ps-20210615/fido-client-to-authenticator-protocol-v2.1-ps-20210615.html#sctn-hmac-secret-extension
|
|
19676
|
+
Defaults to false.
|
|
19677
|
+
*/
|
|
19678
|
+
hasHmacSecret?: boolean;
|
|
19679
|
+
/**
|
|
19680
|
+
* If set to true, the authenticator will support the hmac-secret-mc extension.
|
|
19681
|
+
https://fidoalliance.org/specs/fido-v2.2-rd-20241003/fido-client-to-authenticator-protocol-v2.2-rd-20241003.html#sctn-hmac-secret-make-cred-extension
|
|
19682
|
+
Defaults to false.
|
|
19683
|
+
*/
|
|
19684
|
+
hasHmacSecretMc?: boolean;
|
|
19146
19685
|
/**
|
|
19147
19686
|
* If set to true, tests of user presence will succeed immediately.
|
|
19148
19687
|
Otherwise, they will not be resolved. Defaults to true.
|
|
@@ -19393,6 +19932,140 @@ https://w3c.github.io/webauthn/#sctn-automation-set-credential-properties
|
|
|
19393
19932
|
}
|
|
19394
19933
|
}
|
|
19395
19934
|
|
|
19935
|
+
export namespace WebMCP {
|
|
19936
|
+
/**
|
|
19937
|
+
* Tool annotations
|
|
19938
|
+
*/
|
|
19939
|
+
export interface Annotation {
|
|
19940
|
+
/**
|
|
19941
|
+
* A hint indicating that the tool does not modify any state.
|
|
19942
|
+
*/
|
|
19943
|
+
readOnly?: boolean;
|
|
19944
|
+
/**
|
|
19945
|
+
* If the declarative tool was declared with the autosubmit attribute.
|
|
19946
|
+
*/
|
|
19947
|
+
autosubmit?: boolean;
|
|
19948
|
+
}
|
|
19949
|
+
/**
|
|
19950
|
+
* Represents the status of a tool invocation.
|
|
19951
|
+
*/
|
|
19952
|
+
export type InvocationStatus = "Success"|"Canceled"|"Error";
|
|
19953
|
+
/**
|
|
19954
|
+
* Definition of a tool that can be invoked.
|
|
19955
|
+
*/
|
|
19956
|
+
export interface Tool {
|
|
19957
|
+
/**
|
|
19958
|
+
* Tool name.
|
|
19959
|
+
*/
|
|
19960
|
+
name: string;
|
|
19961
|
+
/**
|
|
19962
|
+
* Tool description.
|
|
19963
|
+
*/
|
|
19964
|
+
description: string;
|
|
19965
|
+
/**
|
|
19966
|
+
* Schema for the tool's input parameters.
|
|
19967
|
+
*/
|
|
19968
|
+
inputSchema?: { [key: string]: string };
|
|
19969
|
+
/**
|
|
19970
|
+
* Optional annotations for the tool.
|
|
19971
|
+
*/
|
|
19972
|
+
annotations?: Annotation;
|
|
19973
|
+
/**
|
|
19974
|
+
* Frame identifier associated with the tool registration.
|
|
19975
|
+
*/
|
|
19976
|
+
frameId: Page.FrameId;
|
|
19977
|
+
/**
|
|
19978
|
+
* Optional node ID for declarative tools.
|
|
19979
|
+
*/
|
|
19980
|
+
backendNodeId?: DOM.BackendNodeId;
|
|
19981
|
+
/**
|
|
19982
|
+
* The stack trace at the time of the registration.
|
|
19983
|
+
*/
|
|
19984
|
+
stackTrace?: Runtime.StackTrace;
|
|
19985
|
+
}
|
|
19986
|
+
|
|
19987
|
+
/**
|
|
19988
|
+
* Event fired when new tools are added.
|
|
19989
|
+
*/
|
|
19990
|
+
export type toolsAddedPayload = {
|
|
19991
|
+
/**
|
|
19992
|
+
* Array of tools that were added.
|
|
19993
|
+
*/
|
|
19994
|
+
tools: Tool[];
|
|
19995
|
+
}
|
|
19996
|
+
/**
|
|
19997
|
+
* Event fired when tools are removed.
|
|
19998
|
+
*/
|
|
19999
|
+
export type toolsRemovedPayload = {
|
|
20000
|
+
/**
|
|
20001
|
+
* Array of tools that were removed.
|
|
20002
|
+
*/
|
|
20003
|
+
tools: Tool[];
|
|
20004
|
+
}
|
|
20005
|
+
/**
|
|
20006
|
+
* Event fired when a tool invocation starts.
|
|
20007
|
+
*/
|
|
20008
|
+
export type toolInvokedPayload = {
|
|
20009
|
+
/**
|
|
20010
|
+
* Name of the tool to invoke.
|
|
20011
|
+
*/
|
|
20012
|
+
toolName: string;
|
|
20013
|
+
/**
|
|
20014
|
+
* Frame id
|
|
20015
|
+
*/
|
|
20016
|
+
frameId: Page.FrameId;
|
|
20017
|
+
/**
|
|
20018
|
+
* Invocation identifier.
|
|
20019
|
+
*/
|
|
20020
|
+
invocationId: string;
|
|
20021
|
+
/**
|
|
20022
|
+
* The input parameters used for the invocation.
|
|
20023
|
+
*/
|
|
20024
|
+
input: string;
|
|
20025
|
+
}
|
|
20026
|
+
/**
|
|
20027
|
+
* Event fired when a tool invocation completes or fails.
|
|
20028
|
+
*/
|
|
20029
|
+
export type toolRespondedPayload = {
|
|
20030
|
+
/**
|
|
20031
|
+
* Invocation identifier.
|
|
20032
|
+
*/
|
|
20033
|
+
invocationId: string;
|
|
20034
|
+
/**
|
|
20035
|
+
* Status of the invocation.
|
|
20036
|
+
*/
|
|
20037
|
+
status: InvocationStatus;
|
|
20038
|
+
/**
|
|
20039
|
+
* Output or error delivered as delivered to the agent. Missing if `status` is anything other than Success.
|
|
20040
|
+
*/
|
|
20041
|
+
output?: any;
|
|
20042
|
+
/**
|
|
20043
|
+
* Error text for protocol users.
|
|
20044
|
+
*/
|
|
20045
|
+
errorText?: string;
|
|
20046
|
+
/**
|
|
20047
|
+
* The exception object, if the javascript tool threw an error>
|
|
20048
|
+
*/
|
|
20049
|
+
exception?: Runtime.RemoteObject;
|
|
20050
|
+
}
|
|
20051
|
+
|
|
20052
|
+
/**
|
|
20053
|
+
* Enables the WebMCP domain, allowing events to be sent. Enabling the domain will trigger a toolsAdded event for
|
|
20054
|
+
all currently registered tools.
|
|
20055
|
+
*/
|
|
20056
|
+
export type enableParameters = {
|
|
20057
|
+
}
|
|
20058
|
+
export type enableReturnValue = {
|
|
20059
|
+
}
|
|
20060
|
+
/**
|
|
20061
|
+
* Disables the WebMCP domain.
|
|
20062
|
+
*/
|
|
20063
|
+
export type disableParameters = {
|
|
20064
|
+
}
|
|
20065
|
+
export type disableReturnValue = {
|
|
20066
|
+
}
|
|
20067
|
+
}
|
|
20068
|
+
|
|
19396
20069
|
/**
|
|
19397
20070
|
* This domain is deprecated - use Runtime or Log instead.
|
|
19398
20071
|
*/
|
|
@@ -22116,6 +22789,7 @@ Error was thrown.
|
|
|
22116
22789
|
"DOM.pseudoElementAdded": DOM.pseudoElementAddedPayload;
|
|
22117
22790
|
"DOM.topLayerElementsUpdated": DOM.topLayerElementsUpdatedPayload;
|
|
22118
22791
|
"DOM.scrollableFlagUpdated": DOM.scrollableFlagUpdatedPayload;
|
|
22792
|
+
"DOM.adRelatedStateUpdated": DOM.adRelatedStateUpdatedPayload;
|
|
22119
22793
|
"DOM.affectedByStartingStylesFlagUpdated": DOM.affectedByStartingStylesFlagUpdatedPayload;
|
|
22120
22794
|
"DOM.pseudoElementRemoved": DOM.pseudoElementRemovedPayload;
|
|
22121
22795
|
"DOM.setChildNodes": DOM.setChildNodesPayload;
|
|
@@ -22127,6 +22801,7 @@ Error was thrown.
|
|
|
22127
22801
|
"DOMStorage.domStorageItemsCleared": DOMStorage.domStorageItemsClearedPayload;
|
|
22128
22802
|
"DeviceAccess.deviceRequestPrompted": DeviceAccess.deviceRequestPromptedPayload;
|
|
22129
22803
|
"Emulation.virtualTimeBudgetExpired": Emulation.virtualTimeBudgetExpiredPayload;
|
|
22804
|
+
"Emulation.screenOrientationLockChanged": Emulation.screenOrientationLockChangedPayload;
|
|
22130
22805
|
"FedCm.dialogShown": FedCm.dialogShownPayload;
|
|
22131
22806
|
"FedCm.dialogClosed": FedCm.dialogClosedPayload;
|
|
22132
22807
|
"Fetch.requestPaused": Fetch.requestPausedPayload;
|
|
@@ -22191,6 +22866,8 @@ Error was thrown.
|
|
|
22191
22866
|
"Overlay.inspectNodeRequested": Overlay.inspectNodeRequestedPayload;
|
|
22192
22867
|
"Overlay.nodeHighlightRequested": Overlay.nodeHighlightRequestedPayload;
|
|
22193
22868
|
"Overlay.screenshotRequested": Overlay.screenshotRequestedPayload;
|
|
22869
|
+
"Overlay.inspectPanelShowRequested": Overlay.inspectPanelShowRequestedPayload;
|
|
22870
|
+
"Overlay.inspectedElementWindowRestored": Overlay.inspectedElementWindowRestoredPayload;
|
|
22194
22871
|
"Overlay.inspectModeCanceled": Overlay.inspectModeCanceledPayload;
|
|
22195
22872
|
"Page.domContentEventFired": Page.domContentEventFiredPayload;
|
|
22196
22873
|
"Page.fileChooserOpened": Page.fileChooserOpenedPayload;
|
|
@@ -22234,6 +22911,20 @@ Error was thrown.
|
|
|
22234
22911
|
"ServiceWorker.workerErrorReported": ServiceWorker.workerErrorReportedPayload;
|
|
22235
22912
|
"ServiceWorker.workerRegistrationUpdated": ServiceWorker.workerRegistrationUpdatedPayload;
|
|
22236
22913
|
"ServiceWorker.workerVersionUpdated": ServiceWorker.workerVersionUpdatedPayload;
|
|
22914
|
+
"SmartCardEmulation.establishContextRequested": SmartCardEmulation.establishContextRequestedPayload;
|
|
22915
|
+
"SmartCardEmulation.releaseContextRequested": SmartCardEmulation.releaseContextRequestedPayload;
|
|
22916
|
+
"SmartCardEmulation.listReadersRequested": SmartCardEmulation.listReadersRequestedPayload;
|
|
22917
|
+
"SmartCardEmulation.getStatusChangeRequested": SmartCardEmulation.getStatusChangeRequestedPayload;
|
|
22918
|
+
"SmartCardEmulation.cancelRequested": SmartCardEmulation.cancelRequestedPayload;
|
|
22919
|
+
"SmartCardEmulation.connectRequested": SmartCardEmulation.connectRequestedPayload;
|
|
22920
|
+
"SmartCardEmulation.disconnectRequested": SmartCardEmulation.disconnectRequestedPayload;
|
|
22921
|
+
"SmartCardEmulation.transmitRequested": SmartCardEmulation.transmitRequestedPayload;
|
|
22922
|
+
"SmartCardEmulation.controlRequested": SmartCardEmulation.controlRequestedPayload;
|
|
22923
|
+
"SmartCardEmulation.getAttribRequested": SmartCardEmulation.getAttribRequestedPayload;
|
|
22924
|
+
"SmartCardEmulation.setAttribRequested": SmartCardEmulation.setAttribRequestedPayload;
|
|
22925
|
+
"SmartCardEmulation.statusRequested": SmartCardEmulation.statusRequestedPayload;
|
|
22926
|
+
"SmartCardEmulation.beginTransactionRequested": SmartCardEmulation.beginTransactionRequestedPayload;
|
|
22927
|
+
"SmartCardEmulation.endTransactionRequested": SmartCardEmulation.endTransactionRequestedPayload;
|
|
22237
22928
|
"Storage.cacheStorageContentUpdated": Storage.cacheStorageContentUpdatedPayload;
|
|
22238
22929
|
"Storage.cacheStorageListUpdated": Storage.cacheStorageListUpdatedPayload;
|
|
22239
22930
|
"Storage.indexedDBContentUpdated": Storage.indexedDBContentUpdatedPayload;
|
|
@@ -22245,10 +22936,6 @@ Error was thrown.
|
|
|
22245
22936
|
"Storage.sharedStorageWorkletOperationExecutionFinished": Storage.sharedStorageWorkletOperationExecutionFinishedPayload;
|
|
22246
22937
|
"Storage.storageBucketCreatedOrUpdated": Storage.storageBucketCreatedOrUpdatedPayload;
|
|
22247
22938
|
"Storage.storageBucketDeleted": Storage.storageBucketDeletedPayload;
|
|
22248
|
-
"Storage.attributionReportingSourceRegistered": Storage.attributionReportingSourceRegisteredPayload;
|
|
22249
|
-
"Storage.attributionReportingTriggerRegistered": Storage.attributionReportingTriggerRegisteredPayload;
|
|
22250
|
-
"Storage.attributionReportingReportSent": Storage.attributionReportingReportSentPayload;
|
|
22251
|
-
"Storage.attributionReportingVerboseDebugReportSent": Storage.attributionReportingVerboseDebugReportSentPayload;
|
|
22252
22939
|
"Target.attachedToTarget": Target.attachedToTargetPayload;
|
|
22253
22940
|
"Target.detachedFromTarget": Target.detachedFromTargetPayload;
|
|
22254
22941
|
"Target.receivedMessageFromTarget": Target.receivedMessageFromTargetPayload;
|
|
@@ -22277,6 +22964,10 @@ Error was thrown.
|
|
|
22277
22964
|
"WebAuthn.credentialDeleted": WebAuthn.credentialDeletedPayload;
|
|
22278
22965
|
"WebAuthn.credentialUpdated": WebAuthn.credentialUpdatedPayload;
|
|
22279
22966
|
"WebAuthn.credentialAsserted": WebAuthn.credentialAssertedPayload;
|
|
22967
|
+
"WebMCP.toolsAdded": WebMCP.toolsAddedPayload;
|
|
22968
|
+
"WebMCP.toolsRemoved": WebMCP.toolsRemovedPayload;
|
|
22969
|
+
"WebMCP.toolInvoked": WebMCP.toolInvokedPayload;
|
|
22970
|
+
"WebMCP.toolResponded": WebMCP.toolRespondedPayload;
|
|
22280
22971
|
"Console.messageAdded": Console.messageAddedPayload;
|
|
22281
22972
|
"Debugger.breakpointResolved": Debugger.breakpointResolvedPayload;
|
|
22282
22973
|
"Debugger.paused": Debugger.pausedPayload;
|
|
@@ -22337,6 +23028,7 @@ Error was thrown.
|
|
|
22337
23028
|
["DOM.pseudoElementAdded"]: [DOM.pseudoElementAddedPayload];
|
|
22338
23029
|
["DOM.topLayerElementsUpdated"]: [DOM.topLayerElementsUpdatedPayload];
|
|
22339
23030
|
["DOM.scrollableFlagUpdated"]: [DOM.scrollableFlagUpdatedPayload];
|
|
23031
|
+
["DOM.adRelatedStateUpdated"]: [DOM.adRelatedStateUpdatedPayload];
|
|
22340
23032
|
["DOM.affectedByStartingStylesFlagUpdated"]: [DOM.affectedByStartingStylesFlagUpdatedPayload];
|
|
22341
23033
|
["DOM.pseudoElementRemoved"]: [DOM.pseudoElementRemovedPayload];
|
|
22342
23034
|
["DOM.setChildNodes"]: [DOM.setChildNodesPayload];
|
|
@@ -22348,6 +23040,7 @@ Error was thrown.
|
|
|
22348
23040
|
["DOMStorage.domStorageItemsCleared"]: [DOMStorage.domStorageItemsClearedPayload];
|
|
22349
23041
|
["DeviceAccess.deviceRequestPrompted"]: [DeviceAccess.deviceRequestPromptedPayload];
|
|
22350
23042
|
["Emulation.virtualTimeBudgetExpired"]: [Emulation.virtualTimeBudgetExpiredPayload];
|
|
23043
|
+
["Emulation.screenOrientationLockChanged"]: [Emulation.screenOrientationLockChangedPayload];
|
|
22351
23044
|
["FedCm.dialogShown"]: [FedCm.dialogShownPayload];
|
|
22352
23045
|
["FedCm.dialogClosed"]: [FedCm.dialogClosedPayload];
|
|
22353
23046
|
["Fetch.requestPaused"]: [Fetch.requestPausedPayload];
|
|
@@ -22412,6 +23105,8 @@ Error was thrown.
|
|
|
22412
23105
|
["Overlay.inspectNodeRequested"]: [Overlay.inspectNodeRequestedPayload];
|
|
22413
23106
|
["Overlay.nodeHighlightRequested"]: [Overlay.nodeHighlightRequestedPayload];
|
|
22414
23107
|
["Overlay.screenshotRequested"]: [Overlay.screenshotRequestedPayload];
|
|
23108
|
+
["Overlay.inspectPanelShowRequested"]: [Overlay.inspectPanelShowRequestedPayload];
|
|
23109
|
+
["Overlay.inspectedElementWindowRestored"]: [Overlay.inspectedElementWindowRestoredPayload];
|
|
22415
23110
|
["Overlay.inspectModeCanceled"]: [Overlay.inspectModeCanceledPayload];
|
|
22416
23111
|
["Page.domContentEventFired"]: [Page.domContentEventFiredPayload];
|
|
22417
23112
|
["Page.fileChooserOpened"]: [Page.fileChooserOpenedPayload];
|
|
@@ -22455,6 +23150,20 @@ Error was thrown.
|
|
|
22455
23150
|
["ServiceWorker.workerErrorReported"]: [ServiceWorker.workerErrorReportedPayload];
|
|
22456
23151
|
["ServiceWorker.workerRegistrationUpdated"]: [ServiceWorker.workerRegistrationUpdatedPayload];
|
|
22457
23152
|
["ServiceWorker.workerVersionUpdated"]: [ServiceWorker.workerVersionUpdatedPayload];
|
|
23153
|
+
["SmartCardEmulation.establishContextRequested"]: [SmartCardEmulation.establishContextRequestedPayload];
|
|
23154
|
+
["SmartCardEmulation.releaseContextRequested"]: [SmartCardEmulation.releaseContextRequestedPayload];
|
|
23155
|
+
["SmartCardEmulation.listReadersRequested"]: [SmartCardEmulation.listReadersRequestedPayload];
|
|
23156
|
+
["SmartCardEmulation.getStatusChangeRequested"]: [SmartCardEmulation.getStatusChangeRequestedPayload];
|
|
23157
|
+
["SmartCardEmulation.cancelRequested"]: [SmartCardEmulation.cancelRequestedPayload];
|
|
23158
|
+
["SmartCardEmulation.connectRequested"]: [SmartCardEmulation.connectRequestedPayload];
|
|
23159
|
+
["SmartCardEmulation.disconnectRequested"]: [SmartCardEmulation.disconnectRequestedPayload];
|
|
23160
|
+
["SmartCardEmulation.transmitRequested"]: [SmartCardEmulation.transmitRequestedPayload];
|
|
23161
|
+
["SmartCardEmulation.controlRequested"]: [SmartCardEmulation.controlRequestedPayload];
|
|
23162
|
+
["SmartCardEmulation.getAttribRequested"]: [SmartCardEmulation.getAttribRequestedPayload];
|
|
23163
|
+
["SmartCardEmulation.setAttribRequested"]: [SmartCardEmulation.setAttribRequestedPayload];
|
|
23164
|
+
["SmartCardEmulation.statusRequested"]: [SmartCardEmulation.statusRequestedPayload];
|
|
23165
|
+
["SmartCardEmulation.beginTransactionRequested"]: [SmartCardEmulation.beginTransactionRequestedPayload];
|
|
23166
|
+
["SmartCardEmulation.endTransactionRequested"]: [SmartCardEmulation.endTransactionRequestedPayload];
|
|
22458
23167
|
["Storage.cacheStorageContentUpdated"]: [Storage.cacheStorageContentUpdatedPayload];
|
|
22459
23168
|
["Storage.cacheStorageListUpdated"]: [Storage.cacheStorageListUpdatedPayload];
|
|
22460
23169
|
["Storage.indexedDBContentUpdated"]: [Storage.indexedDBContentUpdatedPayload];
|
|
@@ -22466,10 +23175,6 @@ Error was thrown.
|
|
|
22466
23175
|
["Storage.sharedStorageWorkletOperationExecutionFinished"]: [Storage.sharedStorageWorkletOperationExecutionFinishedPayload];
|
|
22467
23176
|
["Storage.storageBucketCreatedOrUpdated"]: [Storage.storageBucketCreatedOrUpdatedPayload];
|
|
22468
23177
|
["Storage.storageBucketDeleted"]: [Storage.storageBucketDeletedPayload];
|
|
22469
|
-
["Storage.attributionReportingSourceRegistered"]: [Storage.attributionReportingSourceRegisteredPayload];
|
|
22470
|
-
["Storage.attributionReportingTriggerRegistered"]: [Storage.attributionReportingTriggerRegisteredPayload];
|
|
22471
|
-
["Storage.attributionReportingReportSent"]: [Storage.attributionReportingReportSentPayload];
|
|
22472
|
-
["Storage.attributionReportingVerboseDebugReportSent"]: [Storage.attributionReportingVerboseDebugReportSentPayload];
|
|
22473
23178
|
["Target.attachedToTarget"]: [Target.attachedToTargetPayload];
|
|
22474
23179
|
["Target.detachedFromTarget"]: [Target.detachedFromTargetPayload];
|
|
22475
23180
|
["Target.receivedMessageFromTarget"]: [Target.receivedMessageFromTargetPayload];
|
|
@@ -22498,6 +23203,10 @@ Error was thrown.
|
|
|
22498
23203
|
["WebAuthn.credentialDeleted"]: [WebAuthn.credentialDeletedPayload];
|
|
22499
23204
|
["WebAuthn.credentialUpdated"]: [WebAuthn.credentialUpdatedPayload];
|
|
22500
23205
|
["WebAuthn.credentialAsserted"]: [WebAuthn.credentialAssertedPayload];
|
|
23206
|
+
["WebMCP.toolsAdded"]: [WebMCP.toolsAddedPayload];
|
|
23207
|
+
["WebMCP.toolsRemoved"]: [WebMCP.toolsRemovedPayload];
|
|
23208
|
+
["WebMCP.toolInvoked"]: [WebMCP.toolInvokedPayload];
|
|
23209
|
+
["WebMCP.toolResponded"]: [WebMCP.toolRespondedPayload];
|
|
22501
23210
|
["Console.messageAdded"]: [Console.messageAddedPayload];
|
|
22502
23211
|
["Debugger.breakpointResolved"]: [Debugger.breakpointResolvedPayload];
|
|
22503
23212
|
["Debugger.paused"]: [Debugger.pausedPayload];
|
|
@@ -22543,7 +23252,6 @@ Error was thrown.
|
|
|
22543
23252
|
"Audits.getEncodedResponse": Audits.getEncodedResponseParameters;
|
|
22544
23253
|
"Audits.disable": Audits.disableParameters;
|
|
22545
23254
|
"Audits.enable": Audits.enableParameters;
|
|
22546
|
-
"Audits.checkContrast": Audits.checkContrastParameters;
|
|
22547
23255
|
"Audits.checkFormsIssues": Audits.checkFormsIssuesParameters;
|
|
22548
23256
|
"Autofill.trigger": Autofill.triggerParameters;
|
|
22549
23257
|
"Autofill.setAddresses": Autofill.setAddressesParameters;
|
|
@@ -22617,6 +23325,7 @@ Error was thrown.
|
|
|
22617
23325
|
"CSS.setMediaText": CSS.setMediaTextParameters;
|
|
22618
23326
|
"CSS.setContainerQueryText": CSS.setContainerQueryTextParameters;
|
|
22619
23327
|
"CSS.setSupportsText": CSS.setSupportsTextParameters;
|
|
23328
|
+
"CSS.setNavigationText": CSS.setNavigationTextParameters;
|
|
22620
23329
|
"CSS.setScopeText": CSS.setScopeTextParameters;
|
|
22621
23330
|
"CSS.setRuleSelector": CSS.setRuleSelectorParameters;
|
|
22622
23331
|
"CSS.setStyleSheetText": CSS.setStyleSheetTextParameters;
|
|
@@ -22636,6 +23345,7 @@ Error was thrown.
|
|
|
22636
23345
|
"Cast.startDesktopMirroring": Cast.startDesktopMirroringParameters;
|
|
22637
23346
|
"Cast.startTabMirroring": Cast.startTabMirroringParameters;
|
|
22638
23347
|
"Cast.stopCasting": Cast.stopCastingParameters;
|
|
23348
|
+
"CrashReportContext.getEntries": CrashReportContext.getEntriesParameters;
|
|
22639
23349
|
"DOM.collectClassNamesFromSubtree": DOM.collectClassNamesFromSubtreeParameters;
|
|
22640
23350
|
"DOM.copyTo": DOM.copyToParameters;
|
|
22641
23351
|
"DOM.describeNode": DOM.describeNodeParameters;
|
|
@@ -22760,11 +23470,15 @@ Error was thrown.
|
|
|
22760
23470
|
"Emulation.setSmallViewportHeightDifferenceOverride": Emulation.setSmallViewportHeightDifferenceOverrideParameters;
|
|
22761
23471
|
"Emulation.getScreenInfos": Emulation.getScreenInfosParameters;
|
|
22762
23472
|
"Emulation.addScreen": Emulation.addScreenParameters;
|
|
23473
|
+
"Emulation.updateScreen": Emulation.updateScreenParameters;
|
|
22763
23474
|
"Emulation.removeScreen": Emulation.removeScreenParameters;
|
|
23475
|
+
"Emulation.setPrimaryScreen": Emulation.setPrimaryScreenParameters;
|
|
22764
23476
|
"EventBreakpoints.setInstrumentationBreakpoint": EventBreakpoints.setInstrumentationBreakpointParameters;
|
|
22765
23477
|
"EventBreakpoints.removeInstrumentationBreakpoint": EventBreakpoints.removeInstrumentationBreakpointParameters;
|
|
22766
23478
|
"EventBreakpoints.disable": EventBreakpoints.disableParameters;
|
|
23479
|
+
"Extensions.triggerAction": Extensions.triggerActionParameters;
|
|
22767
23480
|
"Extensions.loadUnpacked": Extensions.loadUnpackedParameters;
|
|
23481
|
+
"Extensions.getExtensions": Extensions.getExtensionsParameters;
|
|
22768
23482
|
"Extensions.uninstall": Extensions.uninstallParameters;
|
|
22769
23483
|
"Extensions.getStorageItems": Extensions.getStorageItemsParameters;
|
|
22770
23484
|
"Extensions.removeStorageItems": Extensions.removeStorageItemsParameters;
|
|
@@ -22904,6 +23618,7 @@ Error was thrown.
|
|
|
22904
23618
|
"Overlay.setShowFlexOverlays": Overlay.setShowFlexOverlaysParameters;
|
|
22905
23619
|
"Overlay.setShowScrollSnapOverlays": Overlay.setShowScrollSnapOverlaysParameters;
|
|
22906
23620
|
"Overlay.setShowContainerQueryOverlays": Overlay.setShowContainerQueryOverlaysParameters;
|
|
23621
|
+
"Overlay.setShowInspectedElementAnchor": Overlay.setShowInspectedElementAnchorParameters;
|
|
22907
23622
|
"Overlay.setShowPaintRects": Overlay.setShowPaintRectsParameters;
|
|
22908
23623
|
"Overlay.setShowLayoutShiftRegions": Overlay.setShowLayoutShiftRegionsParameters;
|
|
22909
23624
|
"Overlay.setShowScrollBottleneckRects": Overlay.setShowScrollBottleneckRectsParameters;
|
|
@@ -23005,6 +23720,18 @@ Error was thrown.
|
|
|
23005
23720
|
"ServiceWorker.stopWorker": ServiceWorker.stopWorkerParameters;
|
|
23006
23721
|
"ServiceWorker.unregister": ServiceWorker.unregisterParameters;
|
|
23007
23722
|
"ServiceWorker.updateRegistration": ServiceWorker.updateRegistrationParameters;
|
|
23723
|
+
"SmartCardEmulation.enable": SmartCardEmulation.enableParameters;
|
|
23724
|
+
"SmartCardEmulation.disable": SmartCardEmulation.disableParameters;
|
|
23725
|
+
"SmartCardEmulation.reportEstablishContextResult": SmartCardEmulation.reportEstablishContextResultParameters;
|
|
23726
|
+
"SmartCardEmulation.reportReleaseContextResult": SmartCardEmulation.reportReleaseContextResultParameters;
|
|
23727
|
+
"SmartCardEmulation.reportListReadersResult": SmartCardEmulation.reportListReadersResultParameters;
|
|
23728
|
+
"SmartCardEmulation.reportGetStatusChangeResult": SmartCardEmulation.reportGetStatusChangeResultParameters;
|
|
23729
|
+
"SmartCardEmulation.reportBeginTransactionResult": SmartCardEmulation.reportBeginTransactionResultParameters;
|
|
23730
|
+
"SmartCardEmulation.reportPlainResult": SmartCardEmulation.reportPlainResultParameters;
|
|
23731
|
+
"SmartCardEmulation.reportConnectResult": SmartCardEmulation.reportConnectResultParameters;
|
|
23732
|
+
"SmartCardEmulation.reportDataResult": SmartCardEmulation.reportDataResultParameters;
|
|
23733
|
+
"SmartCardEmulation.reportStatusResult": SmartCardEmulation.reportStatusResultParameters;
|
|
23734
|
+
"SmartCardEmulation.reportError": SmartCardEmulation.reportErrorParameters;
|
|
23008
23735
|
"Storage.getStorageKeyForFrame": Storage.getStorageKeyForFrameParameters;
|
|
23009
23736
|
"Storage.getStorageKey": Storage.getStorageKeyParameters;
|
|
23010
23737
|
"Storage.clearDataForOrigin": Storage.clearDataForOriginParameters;
|
|
@@ -23037,11 +23764,7 @@ Error was thrown.
|
|
|
23037
23764
|
"Storage.setStorageBucketTracking": Storage.setStorageBucketTrackingParameters;
|
|
23038
23765
|
"Storage.deleteStorageBucket": Storage.deleteStorageBucketParameters;
|
|
23039
23766
|
"Storage.runBounceTrackingMitigations": Storage.runBounceTrackingMitigationsParameters;
|
|
23040
|
-
"Storage.setAttributionReportingLocalTestingMode": Storage.setAttributionReportingLocalTestingModeParameters;
|
|
23041
|
-
"Storage.setAttributionReportingTracking": Storage.setAttributionReportingTrackingParameters;
|
|
23042
|
-
"Storage.sendPendingAttributionReports": Storage.sendPendingAttributionReportsParameters;
|
|
23043
23767
|
"Storage.getRelatedWebsiteSets": Storage.getRelatedWebsiteSetsParameters;
|
|
23044
|
-
"Storage.getAffectedUrlsForThirdPartyCookieMetadata": Storage.getAffectedUrlsForThirdPartyCookieMetadataParameters;
|
|
23045
23768
|
"Storage.setProtectedAudienceKAnonymity": Storage.setProtectedAudienceKAnonymityParameters;
|
|
23046
23769
|
"SystemInfo.getInfo": SystemInfo.getInfoParameters;
|
|
23047
23770
|
"SystemInfo.getFeatureState": SystemInfo.getFeatureStateParameters;
|
|
@@ -23089,6 +23812,8 @@ Error was thrown.
|
|
|
23089
23812
|
"WebAuthn.setUserVerified": WebAuthn.setUserVerifiedParameters;
|
|
23090
23813
|
"WebAuthn.setAutomaticPresenceSimulation": WebAuthn.setAutomaticPresenceSimulationParameters;
|
|
23091
23814
|
"WebAuthn.setCredentialProperties": WebAuthn.setCredentialPropertiesParameters;
|
|
23815
|
+
"WebMCP.enable": WebMCP.enableParameters;
|
|
23816
|
+
"WebMCP.disable": WebMCP.disableParameters;
|
|
23092
23817
|
"Console.clearMessages": Console.clearMessagesParameters;
|
|
23093
23818
|
"Console.disable": Console.disableParameters;
|
|
23094
23819
|
"Console.enable": Console.enableParameters;
|
|
@@ -23193,7 +23918,6 @@ Error was thrown.
|
|
|
23193
23918
|
"Audits.getEncodedResponse": Audits.getEncodedResponseReturnValue;
|
|
23194
23919
|
"Audits.disable": Audits.disableReturnValue;
|
|
23195
23920
|
"Audits.enable": Audits.enableReturnValue;
|
|
23196
|
-
"Audits.checkContrast": Audits.checkContrastReturnValue;
|
|
23197
23921
|
"Audits.checkFormsIssues": Audits.checkFormsIssuesReturnValue;
|
|
23198
23922
|
"Autofill.trigger": Autofill.triggerReturnValue;
|
|
23199
23923
|
"Autofill.setAddresses": Autofill.setAddressesReturnValue;
|
|
@@ -23267,6 +23991,7 @@ Error was thrown.
|
|
|
23267
23991
|
"CSS.setMediaText": CSS.setMediaTextReturnValue;
|
|
23268
23992
|
"CSS.setContainerQueryText": CSS.setContainerQueryTextReturnValue;
|
|
23269
23993
|
"CSS.setSupportsText": CSS.setSupportsTextReturnValue;
|
|
23994
|
+
"CSS.setNavigationText": CSS.setNavigationTextReturnValue;
|
|
23270
23995
|
"CSS.setScopeText": CSS.setScopeTextReturnValue;
|
|
23271
23996
|
"CSS.setRuleSelector": CSS.setRuleSelectorReturnValue;
|
|
23272
23997
|
"CSS.setStyleSheetText": CSS.setStyleSheetTextReturnValue;
|
|
@@ -23286,6 +24011,7 @@ Error was thrown.
|
|
|
23286
24011
|
"Cast.startDesktopMirroring": Cast.startDesktopMirroringReturnValue;
|
|
23287
24012
|
"Cast.startTabMirroring": Cast.startTabMirroringReturnValue;
|
|
23288
24013
|
"Cast.stopCasting": Cast.stopCastingReturnValue;
|
|
24014
|
+
"CrashReportContext.getEntries": CrashReportContext.getEntriesReturnValue;
|
|
23289
24015
|
"DOM.collectClassNamesFromSubtree": DOM.collectClassNamesFromSubtreeReturnValue;
|
|
23290
24016
|
"DOM.copyTo": DOM.copyToReturnValue;
|
|
23291
24017
|
"DOM.describeNode": DOM.describeNodeReturnValue;
|
|
@@ -23410,11 +24136,15 @@ Error was thrown.
|
|
|
23410
24136
|
"Emulation.setSmallViewportHeightDifferenceOverride": Emulation.setSmallViewportHeightDifferenceOverrideReturnValue;
|
|
23411
24137
|
"Emulation.getScreenInfos": Emulation.getScreenInfosReturnValue;
|
|
23412
24138
|
"Emulation.addScreen": Emulation.addScreenReturnValue;
|
|
24139
|
+
"Emulation.updateScreen": Emulation.updateScreenReturnValue;
|
|
23413
24140
|
"Emulation.removeScreen": Emulation.removeScreenReturnValue;
|
|
24141
|
+
"Emulation.setPrimaryScreen": Emulation.setPrimaryScreenReturnValue;
|
|
23414
24142
|
"EventBreakpoints.setInstrumentationBreakpoint": EventBreakpoints.setInstrumentationBreakpointReturnValue;
|
|
23415
24143
|
"EventBreakpoints.removeInstrumentationBreakpoint": EventBreakpoints.removeInstrumentationBreakpointReturnValue;
|
|
23416
24144
|
"EventBreakpoints.disable": EventBreakpoints.disableReturnValue;
|
|
24145
|
+
"Extensions.triggerAction": Extensions.triggerActionReturnValue;
|
|
23417
24146
|
"Extensions.loadUnpacked": Extensions.loadUnpackedReturnValue;
|
|
24147
|
+
"Extensions.getExtensions": Extensions.getExtensionsReturnValue;
|
|
23418
24148
|
"Extensions.uninstall": Extensions.uninstallReturnValue;
|
|
23419
24149
|
"Extensions.getStorageItems": Extensions.getStorageItemsReturnValue;
|
|
23420
24150
|
"Extensions.removeStorageItems": Extensions.removeStorageItemsReturnValue;
|
|
@@ -23554,6 +24284,7 @@ Error was thrown.
|
|
|
23554
24284
|
"Overlay.setShowFlexOverlays": Overlay.setShowFlexOverlaysReturnValue;
|
|
23555
24285
|
"Overlay.setShowScrollSnapOverlays": Overlay.setShowScrollSnapOverlaysReturnValue;
|
|
23556
24286
|
"Overlay.setShowContainerQueryOverlays": Overlay.setShowContainerQueryOverlaysReturnValue;
|
|
24287
|
+
"Overlay.setShowInspectedElementAnchor": Overlay.setShowInspectedElementAnchorReturnValue;
|
|
23557
24288
|
"Overlay.setShowPaintRects": Overlay.setShowPaintRectsReturnValue;
|
|
23558
24289
|
"Overlay.setShowLayoutShiftRegions": Overlay.setShowLayoutShiftRegionsReturnValue;
|
|
23559
24290
|
"Overlay.setShowScrollBottleneckRects": Overlay.setShowScrollBottleneckRectsReturnValue;
|
|
@@ -23655,6 +24386,18 @@ Error was thrown.
|
|
|
23655
24386
|
"ServiceWorker.stopWorker": ServiceWorker.stopWorkerReturnValue;
|
|
23656
24387
|
"ServiceWorker.unregister": ServiceWorker.unregisterReturnValue;
|
|
23657
24388
|
"ServiceWorker.updateRegistration": ServiceWorker.updateRegistrationReturnValue;
|
|
24389
|
+
"SmartCardEmulation.enable": SmartCardEmulation.enableReturnValue;
|
|
24390
|
+
"SmartCardEmulation.disable": SmartCardEmulation.disableReturnValue;
|
|
24391
|
+
"SmartCardEmulation.reportEstablishContextResult": SmartCardEmulation.reportEstablishContextResultReturnValue;
|
|
24392
|
+
"SmartCardEmulation.reportReleaseContextResult": SmartCardEmulation.reportReleaseContextResultReturnValue;
|
|
24393
|
+
"SmartCardEmulation.reportListReadersResult": SmartCardEmulation.reportListReadersResultReturnValue;
|
|
24394
|
+
"SmartCardEmulation.reportGetStatusChangeResult": SmartCardEmulation.reportGetStatusChangeResultReturnValue;
|
|
24395
|
+
"SmartCardEmulation.reportBeginTransactionResult": SmartCardEmulation.reportBeginTransactionResultReturnValue;
|
|
24396
|
+
"SmartCardEmulation.reportPlainResult": SmartCardEmulation.reportPlainResultReturnValue;
|
|
24397
|
+
"SmartCardEmulation.reportConnectResult": SmartCardEmulation.reportConnectResultReturnValue;
|
|
24398
|
+
"SmartCardEmulation.reportDataResult": SmartCardEmulation.reportDataResultReturnValue;
|
|
24399
|
+
"SmartCardEmulation.reportStatusResult": SmartCardEmulation.reportStatusResultReturnValue;
|
|
24400
|
+
"SmartCardEmulation.reportError": SmartCardEmulation.reportErrorReturnValue;
|
|
23658
24401
|
"Storage.getStorageKeyForFrame": Storage.getStorageKeyForFrameReturnValue;
|
|
23659
24402
|
"Storage.getStorageKey": Storage.getStorageKeyReturnValue;
|
|
23660
24403
|
"Storage.clearDataForOrigin": Storage.clearDataForOriginReturnValue;
|
|
@@ -23687,11 +24430,7 @@ Error was thrown.
|
|
|
23687
24430
|
"Storage.setStorageBucketTracking": Storage.setStorageBucketTrackingReturnValue;
|
|
23688
24431
|
"Storage.deleteStorageBucket": Storage.deleteStorageBucketReturnValue;
|
|
23689
24432
|
"Storage.runBounceTrackingMitigations": Storage.runBounceTrackingMitigationsReturnValue;
|
|
23690
|
-
"Storage.setAttributionReportingLocalTestingMode": Storage.setAttributionReportingLocalTestingModeReturnValue;
|
|
23691
|
-
"Storage.setAttributionReportingTracking": Storage.setAttributionReportingTrackingReturnValue;
|
|
23692
|
-
"Storage.sendPendingAttributionReports": Storage.sendPendingAttributionReportsReturnValue;
|
|
23693
24433
|
"Storage.getRelatedWebsiteSets": Storage.getRelatedWebsiteSetsReturnValue;
|
|
23694
|
-
"Storage.getAffectedUrlsForThirdPartyCookieMetadata": Storage.getAffectedUrlsForThirdPartyCookieMetadataReturnValue;
|
|
23695
24434
|
"Storage.setProtectedAudienceKAnonymity": Storage.setProtectedAudienceKAnonymityReturnValue;
|
|
23696
24435
|
"SystemInfo.getInfo": SystemInfo.getInfoReturnValue;
|
|
23697
24436
|
"SystemInfo.getFeatureState": SystemInfo.getFeatureStateReturnValue;
|
|
@@ -23739,6 +24478,8 @@ Error was thrown.
|
|
|
23739
24478
|
"WebAuthn.setUserVerified": WebAuthn.setUserVerifiedReturnValue;
|
|
23740
24479
|
"WebAuthn.setAutomaticPresenceSimulation": WebAuthn.setAutomaticPresenceSimulationReturnValue;
|
|
23741
24480
|
"WebAuthn.setCredentialProperties": WebAuthn.setCredentialPropertiesReturnValue;
|
|
24481
|
+
"WebMCP.enable": WebMCP.enableReturnValue;
|
|
24482
|
+
"WebMCP.disable": WebMCP.disableReturnValue;
|
|
23742
24483
|
"Console.clearMessages": Console.clearMessagesReturnValue;
|
|
23743
24484
|
"Console.disable": Console.disableReturnValue;
|
|
23744
24485
|
"Console.enable": Console.enableReturnValue;
|