@checkly/playwright-core 1.42.17 → 1.47.11
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 +144 -109
- package/browsers.json +15 -25
- package/lib/androidServerImpl.js +1 -1
- package/lib/browserServerImpl.js +1 -1
- package/lib/cli/driver.js +1 -3
- package/lib/cli/program.js +5 -10
- package/lib/client/android.js +1 -1
- package/lib/client/api.js +7 -0
- package/lib/client/browserContext.js +37 -5
- package/lib/client/browserType.js +19 -11
- package/lib/client/channelOwner.js +19 -16
- package/lib/client/clientInstrumentation.js +17 -7
- package/lib/client/clock.js +68 -0
- package/lib/client/connection.js +9 -6
- package/lib/client/electron.js +7 -5
- package/lib/client/elementHandle.js +44 -14
- package/lib/client/eventEmitter.js +314 -0
- package/lib/client/fetch.js +81 -28
- package/lib/client/frame.js +2 -4
- package/lib/client/jsHandle.js +7 -1
- package/lib/client/locator.js +9 -0
- package/lib/client/network.js +12 -9
- package/lib/client/page.js +45 -23
- package/lib/client/playwright.js +3 -0
- package/lib/client/tracing.js +7 -4
- package/lib/common/socksProxy.js +2 -2
- package/lib/generated/clockSource.js +7 -0
- package/lib/generated/injectedScriptSource.js +1 -1
- package/lib/generated/recorderSource.js +1 -1
- package/lib/generated/utilityScriptSource.js +1 -1
- package/lib/protocol/serializers.js +12 -11
- package/lib/protocol/validator.js +137 -55
- package/lib/server/bidi/bidiBrowser.js +296 -0
- package/lib/server/bidi/bidiConnection.js +206 -0
- package/lib/server/bidi/bidiExecutionContext.js +162 -0
- package/lib/server/bidi/bidiFirefox.js +110 -0
- package/lib/server/bidi/bidiInput.js +174 -0
- package/lib/server/bidi/bidiNetworkManager.js +304 -0
- package/lib/server/bidi/bidiPage.js +456 -0
- package/lib/server/bidi/third_party/bidiDeserializer.js +93 -0
- package/lib/server/bidi/third_party/bidiKeyboard.js +238 -0
- package/lib/server/bidi/third_party/bidiProtocol.js +139 -0
- package/lib/server/bidi/third_party/bidiSerializer.js +144 -0
- package/lib/server/browser.js +9 -1
- package/lib/server/browserContext.js +97 -22
- package/lib/server/browserType.js +27 -20
- package/lib/server/chromium/chromium.js +30 -15
- package/lib/server/chromium/chromiumSwitches.js +6 -3
- package/lib/server/chromium/crBrowser.js +11 -17
- package/lib/server/chromium/crConnection.js +2 -2
- package/lib/server/chromium/crDragDrop.js +28 -29
- package/lib/server/chromium/crNetworkManager.js +130 -84
- package/lib/server/chromium/crPage.js +34 -79
- package/lib/server/chromium/crProtocolHelper.js +3 -1
- package/lib/server/chromium/crServiceWorker.js +20 -23
- package/lib/server/chromium/videoRecorder.js +1 -1
- package/lib/server/clock.js +125 -0
- package/lib/server/codegen/csharp.js +299 -0
- package/lib/server/codegen/java.js +235 -0
- package/lib/server/codegen/javascript.js +223 -0
- package/lib/server/codegen/jsonl.js +47 -0
- package/lib/server/codegen/language.js +76 -0
- package/lib/server/codegen/languages.js +30 -0
- package/lib/server/codegen/python.js +265 -0
- package/lib/server/codegen/types.js +5 -0
- package/lib/server/debugController.js +3 -5
- package/lib/server/deviceDescriptors.js +9 -4
- package/lib/server/deviceDescriptorsSource.json +239 -119
- package/lib/server/dispatchers/androidDispatcher.js +1 -1
- package/lib/server/dispatchers/browserContextDispatcher.js +51 -7
- package/lib/server/dispatchers/dispatcher.js +36 -40
- package/lib/server/dispatchers/frameDispatcher.js +1 -2
- package/lib/server/dispatchers/jsHandleDispatcher.js +1 -1
- package/lib/server/dispatchers/jsonPipeDispatcher.js +4 -6
- package/lib/server/dispatchers/localUtilsDispatcher.js +19 -5
- package/lib/server/dispatchers/networkDispatchers.js +2 -2
- package/lib/server/dispatchers/pageDispatcher.js +5 -2
- package/lib/server/dispatchers/playwrightDispatcher.js +1 -0
- package/lib/server/dispatchers/writableStreamDispatcher.js +8 -5
- package/lib/server/dom.js +90 -53
- package/lib/server/electron/electron.js +21 -4
- package/lib/server/fetch.js +74 -25
- package/lib/server/fileUploadUtils.js +7 -3
- package/lib/server/firefox/ffBrowser.js +36 -25
- package/lib/server/firefox/ffConnection.js +2 -2
- package/lib/server/firefox/ffNetworkManager.js +6 -4
- package/lib/server/firefox/ffPage.js +22 -24
- package/lib/server/firefox/firefox.js +25 -6
- package/lib/server/frameSelectors.js +2 -2
- package/lib/server/frames.js +205 -159
- package/lib/server/har/harTracer.js +4 -12
- package/lib/server/helper.js +3 -3
- package/lib/server/index.js +18 -0
- package/lib/server/input.js +18 -8
- package/lib/server/instrumentation.js +0 -4
- package/lib/server/isomorphic/utilityScriptSerializers.js +19 -5
- package/lib/server/javascript.js +3 -2
- package/lib/server/launchApp.js +3 -2
- package/lib/server/network.js +14 -4
- package/lib/server/page.js +75 -46
- package/lib/server/playwright.js +5 -2
- package/lib/server/recorder/codeGenerator.js +2 -1
- package/lib/server/recorder/contextRecorder.js +316 -0
- package/lib/server/recorder/csharp.js +2 -1
- package/lib/server/recorder/java.js +2 -1
- package/lib/server/recorder/javascript.js +2 -1
- package/lib/server/recorder/jsonl.js +2 -1
- package/lib/server/recorder/language.js +2 -1
- package/lib/server/recorder/python.js +2 -1
- package/lib/server/recorder/recorderApp.js +14 -5
- package/lib/server/recorder/recorderCollection.js +127 -0
- package/lib/server/recorder/recorderRunner.js +177 -0
- package/lib/server/recorder/recorderUtils.js +23 -0
- package/lib/server/recorder/throttledFile.js +46 -0
- package/lib/server/recorder/utils.js +2 -1
- package/lib/server/recorder.js +42 -418
- package/lib/server/registry/index.js +99 -100
- package/lib/server/registry/nativeDeps.js +107 -0
- package/lib/server/screenshotter.js +6 -12
- package/lib/server/socksClientCertificatesInterceptor.js +328 -0
- package/lib/server/trace/recorder/snapshotter.js +4 -1
- package/lib/server/trace/recorder/tracing.js +27 -96
- package/lib/server/trace/viewer/traceViewer.js +54 -67
- package/lib/server/transport.js +1 -1
- package/lib/server/webkit/webkit.js +5 -5
- package/lib/server/webkit/wkBrowser.js +14 -14
- package/lib/server/webkit/wkConnection.js +3 -3
- package/lib/server/webkit/wkInterceptableRequest.js +8 -4
- package/lib/server/webkit/wkPage.js +52 -34
- package/lib/server/webkit/wkProvisionalPage.js +36 -1
- package/lib/utils/crypto.js +141 -0
- package/lib/utils/debugLogger.js +2 -0
- package/lib/utils/env.js +4 -2
- package/lib/utils/expectUtils.js +33 -0
- package/lib/utils/fileUtils.js +140 -1
- package/lib/utils/glob.js +2 -1
- package/lib/utils/happy-eyeballs.js +29 -2
- package/lib/utils/hostPlatform.js +13 -4
- package/lib/utils/httpServer.js +54 -13
- package/lib/utils/index.js +53 -31
- package/lib/utils/isomorphic/cssTokenizer.js +1 -1
- package/lib/utils/isomorphic/locatorParser.js +1 -1
- package/lib/utils/isomorphic/mimeType.js +29 -0
- package/lib/utils/isomorphic/stringUtils.js +28 -1
- package/lib/utils/isomorphic/urlMatch.js +120 -0
- package/lib/utils/mimeType.js +2 -1
- package/lib/utils/network.js +7 -35
- package/lib/utils/stackTrace.js +2 -4
- package/lib/utils/timeoutRunner.js +11 -76
- package/lib/utils/zones.js +23 -60
- package/lib/utilsBundle.js +2 -1
- package/lib/utilsBundleImpl/index.js +33 -31
- package/lib/vite/htmlReport/index.html +12 -12
- package/lib/vite/recorder/assets/codeMirrorModule-BN0yUF4I.js +24 -0
- package/lib/vite/recorder/assets/{codicon-zGuYmc9o.ttf → codicon-DCmgc-ay.ttf} +0 -0
- package/lib/vite/recorder/assets/index-B-MT5gKo.css +1 -0
- package/lib/vite/recorder/assets/index-DVt3E1Ef.js +47 -0
- package/lib/vite/recorder/index.html +2 -2
- package/lib/vite/traceViewer/assets/codeMirrorModule-5yiV-3wl.js +16831 -0
- package/lib/vite/traceViewer/assets/codeMirrorModule-B7Z3vq11.js +24 -0
- package/lib/vite/traceViewer/assets/codeMirrorModule-C6p3E9Zg.js +24 -0
- package/lib/vite/traceViewer/assets/codeMirrorModule-CcviAl53.js +16831 -0
- package/lib/vite/traceViewer/assets/codeMirrorModule-CqYUz5ms.js +24 -0
- package/lib/vite/traceViewer/assets/codeMirrorModule-DS3v0XrQ.js +24 -0
- package/lib/vite/traceViewer/assets/codeMirrorModule-Dx6AXgMV.js +16838 -0
- package/lib/vite/traceViewer/assets/codeMirrorModule-T_sdMrbM.js +24 -0
- package/lib/vite/traceViewer/assets/codeMirrorModule-V7N6ppkd.js +15585 -0
- package/lib/vite/traceViewer/assets/testServerConnection-D-tXL3sj.js +224 -0
- package/lib/vite/traceViewer/assets/testServerConnection-DeE2kSzz.js +1 -0
- package/lib/vite/traceViewer/assets/workbench-Bjkiwcr1.js +19119 -0
- package/lib/vite/traceViewer/assets/workbench-C43LWZEX.js +72 -0
- package/lib/vite/traceViewer/assets/workbench-C5OQh9VX.js +19119 -0
- package/lib/vite/traceViewer/assets/workbench-Crj6jzdv.js +19119 -0
- package/lib/vite/traceViewer/assets/workbench-DrQjKdyE.js +72 -0
- package/lib/vite/traceViewer/assets/workbench-Pa1v1Ojh.js +72 -0
- package/lib/vite/traceViewer/assets/workbench-caTaZnzx.js +72 -0
- package/lib/vite/traceViewer/assets/workbench-u2lRPMOT.js +72 -0
- package/lib/vite/traceViewer/assets/wsPort-EUvw-dwH.js +18540 -0
- package/lib/vite/traceViewer/assets/xtermModule-CZ7sDYXB.js +6529 -0
- package/lib/vite/traceViewer/assets/xtermModule-_6TC5FYT.js +6529 -0
- package/lib/vite/traceViewer/codeMirrorModule.Cy8X9Wtw.css +344 -0
- package/lib/vite/traceViewer/codeMirrorModule.svF_VrcJ.css +344 -0
- package/lib/vite/traceViewer/codicon.DCmgc-ay.ttf +0 -0
- package/lib/vite/traceViewer/embedded.BBZ9gQEw.js +104 -0
- package/lib/vite/traceViewer/embedded.BQq6Psnz.js +104 -0
- package/lib/vite/traceViewer/embedded.BVDVQOzc.js +2 -0
- package/lib/vite/traceViewer/embedded.Bn8Ptzv6.js +2 -0
- package/lib/vite/traceViewer/embedded.CvhnUgIi.js +2 -0
- package/lib/vite/traceViewer/embedded.D27cnKiB.js +104 -0
- package/lib/vite/traceViewer/embedded.DPqrDeET.js +2 -0
- package/lib/vite/traceViewer/embedded.DbzY7Q8w.js +2 -0
- package/lib/vite/traceViewer/embedded.DjZq4InJ.css +68 -0
- package/lib/vite/traceViewer/embedded.html +16 -0
- package/lib/vite/traceViewer/embedded.w7WN2u1R.css +1 -0
- package/lib/vite/traceViewer/index.5mge2rY_.css +124 -0
- package/lib/vite/traceViewer/index.6KJ-JQ0L.js +180 -0
- package/lib/vite/traceViewer/index.B8dgQwuN.js +2 -0
- package/lib/vite/traceViewer/index.BGj8jY3H.js +2 -0
- package/lib/vite/traceViewer/index.BSak5QT9.js +2 -0
- package/lib/vite/traceViewer/index.C0EgJ4oW.js +195 -0
- package/lib/vite/traceViewer/index.CUpI-BFe.js +195 -0
- package/lib/vite/traceViewer/{index.-g_5lMbJ.css → index.CrbWWHbf.css} +1 -1
- package/lib/vite/traceViewer/index.DkRbtWVo.js +195 -0
- package/lib/vite/traceViewer/index.QanXxRUb.css +131 -0
- package/lib/vite/traceViewer/index._cX8k4co.js +2 -0
- package/lib/vite/traceViewer/index.html +5 -4
- package/lib/vite/traceViewer/index.pMAN88y-.js +2 -0
- package/lib/vite/traceViewer/snapshot.html +1 -1
- package/lib/vite/traceViewer/sw.bundle.js +3 -4
- package/lib/vite/traceViewer/uiMode.D-tg1Oci.js +1730 -0
- package/lib/vite/traceViewer/uiMode.D3cNFP6u.css +1 -0
- package/lib/vite/traceViewer/uiMode.DKjMBMlc.js +1730 -0
- package/lib/vite/traceViewer/uiMode.DVWUEIHq.css +1424 -0
- package/lib/vite/traceViewer/uiMode.DVrL7a1K.js +10 -0
- package/lib/vite/traceViewer/uiMode.Dg9oJCQU.js +10 -0
- package/lib/vite/traceViewer/uiMode.DwZAzstF.js +10 -0
- package/lib/vite/traceViewer/uiMode.O07awP3T.js +10 -0
- package/lib/vite/traceViewer/uiMode.gGHHTsyL.js +1730 -0
- package/lib/vite/traceViewer/uiMode.html +5 -4
- package/lib/vite/traceViewer/uiMode.iq7CyYy7.js +1490 -0
- package/lib/vite/traceViewer/uiMode.jY2s-9ps.js +10 -0
- package/lib/vite/traceViewer/uiMode.xvJHbkzl.css +1324 -0
- package/lib/vite/traceViewer/workbench.B3X2QtYa.css +3702 -0
- package/lib/vite/traceViewer/workbench.DjbIuxix.css +1 -0
- package/lib/vite/traceViewer/workbench.DyTpxWVb.css +1 -0
- package/lib/vite/traceViewer/workbench.wuxQoE2z.css +3703 -0
- package/lib/vite/traceViewer/wsPort.p5jUwABW.css +3450 -0
- package/lib/vite/traceViewer/xtermModule.4oRVGWQ-.css +209 -0
- package/lib/vite/traceViewer/xtermModule.OKEVRlkP.css +209 -0
- package/package.json +2 -2
- package/types/protocol.d.ts +960 -78
- package/types/structs.d.ts +1 -1
- package/types/types.d.ts +3083 -2448
- package/lib/vite/recorder/assets/codeMirrorModule-I9ks4y7D.js +0 -24
- package/lib/vite/recorder/assets/index-ljsTwXtJ.css +0 -1
- package/lib/vite/recorder/assets/index-yg8ypzl6.js +0 -47
- package/lib/vite/traceViewer/assets/codeMirrorModule-0bpaqixv.js +0 -24
- package/lib/vite/traceViewer/assets/wsPort-_JBDEilC.js +0 -69
- package/lib/vite/traceViewer/index.u51inEcm.js +0 -2
- package/lib/vite/traceViewer/uiMode.Fb0bNA4H.js +0 -10
- package/lib/vite/traceViewer/uiMode.pWy0Re7G.css +0 -1
- package/lib/vite/traceViewer/wsPort.zR1WIy9-.css +0 -1
- /package/lib/vite/recorder/assets/{codeMirrorModule-Hs9-1ZG4.css → codeMirrorModule-ez37Vkbh.css} +0 -0
- /package/lib/vite/traceViewer/assets/{xtermModule-Yt6xwiJ_.js → xtermModule-BeNbaIVa.js} +0 -0
- /package/lib/vite/traceViewer/{codeMirrorModule.Hs9-1ZG4.css → codeMirrorModule.ez37Vkbh.css} +0 -0
- /package/lib/vite/traceViewer/{xtermModule.0lwXJFHT.css → xtermModule.DSXBckUd.css} +0 -0
package/types/protocol.d.ts
CHANGED
|
@@ -112,7 +112,7 @@ export module Protocol {
|
|
|
112
112
|
- from 'checked' to 'selected': states which apply to widgets
|
|
113
113
|
- from 'activedescendant' to 'owns' - relationships between elements other than parent/child/sibling.
|
|
114
114
|
*/
|
|
115
|
-
export type AXPropertyName = "busy"|"disabled"|"editable"|"focusable"|"focused"|"hidden"|"hiddenRoot"|"invalid"|"keyshortcuts"|"settable"|"roledescription"|"live"|"atomic"|"relevant"|"root"|"autocomplete"|"hasPopup"|"level"|"multiselectable"|"orientation"|"multiline"|"readonly"|"required"|"valuemin"|"valuemax"|"valuetext"|"checked"|"expanded"|"modal"|"pressed"|"selected"|"activedescendant"|"controls"|"describedby"|"details"|"errormessage"|"flowto"|"labelledby"|"owns";
|
|
115
|
+
export type AXPropertyName = "busy"|"disabled"|"editable"|"focusable"|"focused"|"hidden"|"hiddenRoot"|"invalid"|"keyshortcuts"|"settable"|"roledescription"|"live"|"atomic"|"relevant"|"root"|"autocomplete"|"hasPopup"|"level"|"multiselectable"|"orientation"|"multiline"|"readonly"|"required"|"valuemin"|"valuemax"|"valuetext"|"checked"|"expanded"|"modal"|"pressed"|"selected"|"activedescendant"|"controls"|"describedby"|"details"|"errormessage"|"flowto"|"labelledby"|"owns"|"url";
|
|
116
116
|
/**
|
|
117
117
|
* A node in the accessibility tree.
|
|
118
118
|
*/
|
|
@@ -525,6 +525,15 @@ percentage [0 - 100] for scroll driven animations
|
|
|
525
525
|
*/
|
|
526
526
|
animation: Animation;
|
|
527
527
|
}
|
|
528
|
+
/**
|
|
529
|
+
* Event for animation that has been updated.
|
|
530
|
+
*/
|
|
531
|
+
export type animationUpdatedPayload = {
|
|
532
|
+
/**
|
|
533
|
+
* Animation that was updated.
|
|
534
|
+
*/
|
|
535
|
+
animation: Animation;
|
|
536
|
+
}
|
|
528
537
|
|
|
529
538
|
/**
|
|
530
539
|
* Disables animation domain notifications.
|
|
@@ -749,7 +758,7 @@ Does not always exist (e.g. for unsafe form submission urls).
|
|
|
749
758
|
* Enum indicating the reason a response has been blocked. These reasons are
|
|
750
759
|
refinements of the net error BLOCKED_BY_RESPONSE.
|
|
751
760
|
*/
|
|
752
|
-
export type BlockedByResponseReason = "CoepFrameResourceNeedsCoepHeader"|"CoopSandboxedIFrameCannotNavigateToCoopPage"|"CorpNotSameOrigin"|"CorpNotSameOriginAfterDefaultedToSameOriginByCoep"|"CorpNotSameSite";
|
|
761
|
+
export type BlockedByResponseReason = "CoepFrameResourceNeedsCoepHeader"|"CoopSandboxedIFrameCannotNavigateToCoopPage"|"CorpNotSameOrigin"|"CorpNotSameOriginAfterDefaultedToSameOriginByCoep"|"CorpNotSameOriginAfterDefaultedToSameOriginByDip"|"CorpNotSameOriginAfterDefaultedToSameOriginByCoepAndDip"|"CorpNotSameSite";
|
|
753
762
|
/**
|
|
754
763
|
* Details for a request that has been blocked with the BLOCKED_BY_RESPONSE
|
|
755
764
|
code. Currently only used for COEP/COOP, but may be extended to include
|
|
@@ -831,7 +840,8 @@ CORS RFC1918 enforcement.
|
|
|
831
840
|
resourceIPAddressSpace?: Network.IPAddressSpace;
|
|
832
841
|
clientSecurityState?: Network.ClientSecurityState;
|
|
833
842
|
}
|
|
834
|
-
export type AttributionReportingIssueType = "PermissionPolicyDisabled"|"UntrustworthyReportingOrigin"|"InsecureContext"|"InvalidHeader"|"InvalidRegisterTriggerHeader"|"SourceAndTriggerHeaders"|"SourceIgnored"|"TriggerIgnored"|"OsSourceIgnored"|"OsTriggerIgnored"|"InvalidRegisterOsSourceHeader"|"InvalidRegisterOsTriggerHeader"|"WebAndOsHeaders"|"NoWebOrOsSupport"|"NavigationRegistrationWithoutTransientUserActivation";
|
|
843
|
+
export type AttributionReportingIssueType = "PermissionPolicyDisabled"|"UntrustworthyReportingOrigin"|"InsecureContext"|"InvalidHeader"|"InvalidRegisterTriggerHeader"|"SourceAndTriggerHeaders"|"SourceIgnored"|"TriggerIgnored"|"OsSourceIgnored"|"OsTriggerIgnored"|"InvalidRegisterOsSourceHeader"|"InvalidRegisterOsTriggerHeader"|"WebAndOsHeaders"|"NoWebOrOsSupport"|"NavigationRegistrationWithoutTransientUserActivation"|"InvalidInfoHeader"|"NoRegisterSourceHeader"|"NoRegisterTriggerHeader"|"NoRegisterOsSourceHeader"|"NoRegisterOsTriggerHeader";
|
|
844
|
+
export type SharedDictionaryError = "UseErrorCrossOriginNoCorsRequest"|"UseErrorDictionaryLoadFailure"|"UseErrorMatchingDictionaryNotUsed"|"UseErrorUnexpectedContentDictionaryHeader"|"WriteErrorCossOriginNoCorsRequest"|"WriteErrorDisallowedBySettings"|"WriteErrorExpiredResponse"|"WriteErrorFeatureDisabled"|"WriteErrorInsufficientResources"|"WriteErrorInvalidMatchField"|"WriteErrorInvalidStructuredHeader"|"WriteErrorNavigationRequest"|"WriteErrorNoMatchField"|"WriteErrorNonListMatchDestField"|"WriteErrorNonSecureContext"|"WriteErrorNonStringIdField"|"WriteErrorNonStringInMatchDestList"|"WriteErrorNonStringMatchField"|"WriteErrorNonTokenTypeField"|"WriteErrorRequestAborted"|"WriteErrorShuttingDown"|"WriteErrorTooLongIdField"|"WriteErrorUnsupportedType";
|
|
835
845
|
/**
|
|
836
846
|
* Details for issues around "Attribution Reporting API" usage.
|
|
837
847
|
Explainer: https://github.com/WICG/attribution-reporting-api
|
|
@@ -861,7 +871,11 @@ instead of "limited-quirks".
|
|
|
861
871
|
url: string;
|
|
862
872
|
location?: SourceCodeLocation;
|
|
863
873
|
}
|
|
864
|
-
export
|
|
874
|
+
export interface SharedDictionaryIssueDetails {
|
|
875
|
+
sharedDictionaryError: SharedDictionaryError;
|
|
876
|
+
request: AffectedRequest;
|
|
877
|
+
}
|
|
878
|
+
export type GenericIssueErrorType = "FormLabelForNameError"|"FormDuplicateIdForInputError"|"FormInputWithNoLabelError"|"FormAutocompleteAttributeEmptyError"|"FormEmptyIdAndNameAttributesForInputError"|"FormAriaLabelledByToNonExistingId"|"FormInputAssignedAutocompleteValueToIdOrNameAttributeError"|"FormLabelHasNeitherForNorNestedInput"|"FormLabelForMatchesNonExistingIdError"|"FormInputHasWrongButWellIntendedAutocompleteValueError"|"ResponseWasBlockedByORB";
|
|
865
879
|
/**
|
|
866
880
|
* Depending on the concrete errorType, different properties are set.
|
|
867
881
|
*/
|
|
@@ -906,6 +920,9 @@ would be `example.test`.
|
|
|
906
920
|
*/
|
|
907
921
|
export interface CookieDeprecationMetadataIssueDetails {
|
|
908
922
|
allowedSites: string[];
|
|
923
|
+
optOutPercentage: number;
|
|
924
|
+
isOptOutTopLevel: boolean;
|
|
925
|
+
operation: CookieOperation;
|
|
909
926
|
}
|
|
910
927
|
export type ClientHintIssueReason = "MetaTagAllowListInvalidOrigin"|"MetaTagModifiedHTML";
|
|
911
928
|
export interface FederatedAuthRequestIssueDetails {
|
|
@@ -917,7 +934,7 @@ Should be updated alongside RequestIdTokenStatus in
|
|
|
917
934
|
third_party/blink/public/mojom/devtools/inspector_issue.mojom to include
|
|
918
935
|
all cases except for success.
|
|
919
936
|
*/
|
|
920
|
-
export type FederatedAuthRequestIssueReason = "ShouldEmbargo"|"TooManyRequests"|"WellKnownHttpNotFound"|"WellKnownNoResponse"|"WellKnownInvalidResponse"|"WellKnownListEmpty"|"WellKnownInvalidContentType"|"ConfigNotInWellKnown"|"WellKnownTooBig"|"ConfigHttpNotFound"|"ConfigNoResponse"|"ConfigInvalidResponse"|"ConfigInvalidContentType"|"ClientMetadataHttpNotFound"|"ClientMetadataNoResponse"|"ClientMetadataInvalidResponse"|"ClientMetadataInvalidContentType"|"DisabledInSettings"|"ErrorFetchingSignin"|"InvalidSigninResponse"|"AccountsHttpNotFound"|"AccountsNoResponse"|"AccountsInvalidResponse"|"AccountsListEmpty"|"AccountsInvalidContentType"|"IdTokenHttpNotFound"|"IdTokenNoResponse"|"IdTokenInvalidResponse"|"IdTokenIdpErrorResponse"|"IdTokenCrossSiteIdpErrorResponse"|"IdTokenInvalidRequest"|"IdTokenInvalidContentType"|"ErrorIdToken"|"Canceled"|"RpPageNotVisible"|"SilentMediationFailure"|"ThirdPartyCookiesBlocked"|"NotSignedInWithIdp";
|
|
937
|
+
export type FederatedAuthRequestIssueReason = "ShouldEmbargo"|"TooManyRequests"|"WellKnownHttpNotFound"|"WellKnownNoResponse"|"WellKnownInvalidResponse"|"WellKnownListEmpty"|"WellKnownInvalidContentType"|"ConfigNotInWellKnown"|"WellKnownTooBig"|"ConfigHttpNotFound"|"ConfigNoResponse"|"ConfigInvalidResponse"|"ConfigInvalidContentType"|"ClientMetadataHttpNotFound"|"ClientMetadataNoResponse"|"ClientMetadataInvalidResponse"|"ClientMetadataInvalidContentType"|"IdpNotPotentiallyTrustworthy"|"DisabledInSettings"|"DisabledInFlags"|"ErrorFetchingSignin"|"InvalidSigninResponse"|"AccountsHttpNotFound"|"AccountsNoResponse"|"AccountsInvalidResponse"|"AccountsListEmpty"|"AccountsInvalidContentType"|"IdTokenHttpNotFound"|"IdTokenNoResponse"|"IdTokenInvalidResponse"|"IdTokenIdpErrorResponse"|"IdTokenCrossSiteIdpErrorResponse"|"IdTokenInvalidRequest"|"IdTokenInvalidContentType"|"ErrorIdToken"|"Canceled"|"RpPageNotVisible"|"SilentMediationFailure"|"ThirdPartyCookiesBlocked"|"NotSignedInWithIdp"|"MissingTransientUserActivation"|"ReplacedByButtonMode"|"InvalidFieldsSpecified"|"RelyingPartyOriginIsOpaque"|"TypeNotMatching";
|
|
921
938
|
export interface FederatedAuthUserInfoRequestIssueDetails {
|
|
922
939
|
federatedAuthUserInfoRequestIssueReason: FederatedAuthUserInfoRequestIssueReason;
|
|
923
940
|
}
|
|
@@ -988,7 +1005,7 @@ registrations being ignored.
|
|
|
988
1005
|
optional fields in InspectorIssueDetails to convey more specific
|
|
989
1006
|
information about the kind of issue.
|
|
990
1007
|
*/
|
|
991
|
-
export type InspectorIssueCode = "CookieIssue"|"MixedContentIssue"|"BlockedByResponseIssue"|"HeavyAdIssue"|"ContentSecurityPolicyIssue"|"SharedArrayBufferIssue"|"LowTextContrastIssue"|"CorsIssue"|"AttributionReportingIssue"|"QuirksModeIssue"|"NavigatorUserAgentIssue"|"GenericIssue"|"DeprecationIssue"|"ClientHintIssue"|"FederatedAuthRequestIssue"|"BounceTrackingIssue"|"CookieDeprecationMetadataIssue"|"StylesheetLoadingIssue"|"FederatedAuthUserInfoRequestIssue"|"PropertyRuleIssue";
|
|
1008
|
+
export type InspectorIssueCode = "CookieIssue"|"MixedContentIssue"|"BlockedByResponseIssue"|"HeavyAdIssue"|"ContentSecurityPolicyIssue"|"SharedArrayBufferIssue"|"LowTextContrastIssue"|"CorsIssue"|"AttributionReportingIssue"|"QuirksModeIssue"|"NavigatorUserAgentIssue"|"GenericIssue"|"DeprecationIssue"|"ClientHintIssue"|"FederatedAuthRequestIssue"|"BounceTrackingIssue"|"CookieDeprecationMetadataIssue"|"StylesheetLoadingIssue"|"FederatedAuthUserInfoRequestIssue"|"PropertyRuleIssue"|"SharedDictionaryIssue";
|
|
992
1009
|
/**
|
|
993
1010
|
* This struct holds a list of optional fields with additional information
|
|
994
1011
|
specific to the kind of issue. When adding a new issue code, please also
|
|
@@ -1015,6 +1032,7 @@ add a new optional field to this type.
|
|
|
1015
1032
|
stylesheetLoadingIssueDetails?: StylesheetLoadingIssueDetails;
|
|
1016
1033
|
propertyRuleIssueDetails?: PropertyRuleIssueDetails;
|
|
1017
1034
|
federatedAuthUserInfoRequestIssueDetails?: FederatedAuthUserInfoRequestIssueDetails;
|
|
1035
|
+
sharedDictionaryIssueDetails?: SharedDictionaryIssueDetails;
|
|
1018
1036
|
}
|
|
1019
1037
|
/**
|
|
1020
1038
|
* A unique id for a DevTools inspector issue. Allows other entities (e.g.
|
|
@@ -1112,6 +1130,112 @@ using Audits.issueAdded event.
|
|
|
1112
1130
|
}
|
|
1113
1131
|
}
|
|
1114
1132
|
|
|
1133
|
+
/**
|
|
1134
|
+
* Defines commands and events for browser extensions.
|
|
1135
|
+
*/
|
|
1136
|
+
export module Extensions {
|
|
1137
|
+
/**
|
|
1138
|
+
* Storage areas.
|
|
1139
|
+
*/
|
|
1140
|
+
export type StorageArea = "session"|"local"|"sync"|"managed";
|
|
1141
|
+
|
|
1142
|
+
|
|
1143
|
+
/**
|
|
1144
|
+
* Installs an unpacked extension from the filesystem similar to
|
|
1145
|
+
--load-extension CLI flags. Returns extension ID once the extension
|
|
1146
|
+
has been installed. Available if the client is connected using the
|
|
1147
|
+
--remote-debugging-pipe flag and the --enable-unsafe-extension-debugging
|
|
1148
|
+
flag is set.
|
|
1149
|
+
*/
|
|
1150
|
+
export type loadUnpackedParameters = {
|
|
1151
|
+
/**
|
|
1152
|
+
* Absolute file path.
|
|
1153
|
+
*/
|
|
1154
|
+
path: string;
|
|
1155
|
+
}
|
|
1156
|
+
export type loadUnpackedReturnValue = {
|
|
1157
|
+
/**
|
|
1158
|
+
* Extension id.
|
|
1159
|
+
*/
|
|
1160
|
+
id: string;
|
|
1161
|
+
}
|
|
1162
|
+
/**
|
|
1163
|
+
* Gets data from extension storage in the given `storageArea`. If `keys` is
|
|
1164
|
+
specified, these are used to filter the result.
|
|
1165
|
+
*/
|
|
1166
|
+
export type getStorageItemsParameters = {
|
|
1167
|
+
/**
|
|
1168
|
+
* ID of extension.
|
|
1169
|
+
*/
|
|
1170
|
+
id: string;
|
|
1171
|
+
/**
|
|
1172
|
+
* StorageArea to retrieve data from.
|
|
1173
|
+
*/
|
|
1174
|
+
storageArea: StorageArea;
|
|
1175
|
+
/**
|
|
1176
|
+
* Keys to retrieve.
|
|
1177
|
+
*/
|
|
1178
|
+
keys?: string[];
|
|
1179
|
+
}
|
|
1180
|
+
export type getStorageItemsReturnValue = {
|
|
1181
|
+
data: { [key: string]: string };
|
|
1182
|
+
}
|
|
1183
|
+
/**
|
|
1184
|
+
* Removes `keys` from extension storage in the given `storageArea`.
|
|
1185
|
+
*/
|
|
1186
|
+
export type removeStorageItemsParameters = {
|
|
1187
|
+
/**
|
|
1188
|
+
* ID of extension.
|
|
1189
|
+
*/
|
|
1190
|
+
id: string;
|
|
1191
|
+
/**
|
|
1192
|
+
* StorageArea to remove data from.
|
|
1193
|
+
*/
|
|
1194
|
+
storageArea: StorageArea;
|
|
1195
|
+
/**
|
|
1196
|
+
* Keys to remove.
|
|
1197
|
+
*/
|
|
1198
|
+
keys: string[];
|
|
1199
|
+
}
|
|
1200
|
+
export type removeStorageItemsReturnValue = {
|
|
1201
|
+
}
|
|
1202
|
+
/**
|
|
1203
|
+
* Clears extension storage in the given `storageArea`.
|
|
1204
|
+
*/
|
|
1205
|
+
export type clearStorageItemsParameters = {
|
|
1206
|
+
/**
|
|
1207
|
+
* ID of extension.
|
|
1208
|
+
*/
|
|
1209
|
+
id: string;
|
|
1210
|
+
/**
|
|
1211
|
+
* StorageArea to remove data from.
|
|
1212
|
+
*/
|
|
1213
|
+
storageArea: StorageArea;
|
|
1214
|
+
}
|
|
1215
|
+
export type clearStorageItemsReturnValue = {
|
|
1216
|
+
}
|
|
1217
|
+
/**
|
|
1218
|
+
* Sets `values` in extension storage in the given `storageArea`. The provided `values`
|
|
1219
|
+
will be merged with existing values in the storage area.
|
|
1220
|
+
*/
|
|
1221
|
+
export type setStorageItemsParameters = {
|
|
1222
|
+
/**
|
|
1223
|
+
* ID of extension.
|
|
1224
|
+
*/
|
|
1225
|
+
id: string;
|
|
1226
|
+
/**
|
|
1227
|
+
* StorageArea to set data in.
|
|
1228
|
+
*/
|
|
1229
|
+
storageArea: StorageArea;
|
|
1230
|
+
/**
|
|
1231
|
+
* Values to set.
|
|
1232
|
+
*/
|
|
1233
|
+
values: { [key: string]: string };
|
|
1234
|
+
}
|
|
1235
|
+
export type setStorageItemsReturnValue = {
|
|
1236
|
+
}
|
|
1237
|
+
}
|
|
1238
|
+
|
|
1115
1239
|
/**
|
|
1116
1240
|
* Defines commands and events for Autofill.
|
|
1117
1241
|
*/
|
|
@@ -1435,6 +1559,10 @@ Note that userVisibleOnly = true is the only currently supported type.
|
|
|
1435
1559
|
* For "clipboard" permission, may specify allowWithoutSanitization.
|
|
1436
1560
|
*/
|
|
1437
1561
|
allowWithoutSanitization?: boolean;
|
|
1562
|
+
/**
|
|
1563
|
+
* For "fullscreen" permission, must specify allowWithoutGesture:true.
|
|
1564
|
+
*/
|
|
1565
|
+
allowWithoutGesture?: boolean;
|
|
1438
1566
|
/**
|
|
1439
1567
|
* For "camera" permission, may specify panTiltZoom.
|
|
1440
1568
|
*/
|
|
@@ -2484,14 +2612,27 @@ stylesheet rules) this rule came from.
|
|
|
2484
2612
|
style: CSSStyle;
|
|
2485
2613
|
}
|
|
2486
2614
|
/**
|
|
2487
|
-
* CSS position-
|
|
2615
|
+
* CSS @position-try rule representation.
|
|
2488
2616
|
*/
|
|
2489
|
-
export interface
|
|
2617
|
+
export interface CSSPositionTryRule {
|
|
2618
|
+
/**
|
|
2619
|
+
* The prelude dashed-ident name
|
|
2620
|
+
*/
|
|
2490
2621
|
name: Value;
|
|
2491
2622
|
/**
|
|
2492
|
-
*
|
|
2623
|
+
* The css style sheet identifier (absent for user agent stylesheet and user-specified
|
|
2624
|
+
stylesheet rules) this rule came from.
|
|
2493
2625
|
*/
|
|
2494
|
-
|
|
2626
|
+
styleSheetId?: StyleSheetId;
|
|
2627
|
+
/**
|
|
2628
|
+
* Parent stylesheet's origin.
|
|
2629
|
+
*/
|
|
2630
|
+
origin: StyleSheetOrigin;
|
|
2631
|
+
/**
|
|
2632
|
+
* Associated style declaration.
|
|
2633
|
+
*/
|
|
2634
|
+
style: CSSStyle;
|
|
2635
|
+
active: boolean;
|
|
2495
2636
|
}
|
|
2496
2637
|
/**
|
|
2497
2638
|
* CSS keyframes rule representation.
|
|
@@ -2817,9 +2958,14 @@ attributes) for a DOM node identified by `nodeId`.
|
|
|
2817
2958
|
*/
|
|
2818
2959
|
cssKeyframesRules?: CSSKeyframesRule[];
|
|
2819
2960
|
/**
|
|
2820
|
-
* A list of CSS position
|
|
2961
|
+
* A list of CSS @position-try rules matching this node, based on the position-try-fallbacks property.
|
|
2821
2962
|
*/
|
|
2822
|
-
|
|
2963
|
+
cssPositionTryRules?: CSSPositionTryRule[];
|
|
2964
|
+
/**
|
|
2965
|
+
* Index of the active fallback in the applied position-try-fallback property,
|
|
2966
|
+
will not be set if there is no active position-try fallback.
|
|
2967
|
+
*/
|
|
2968
|
+
activePositionFallbackIndex?: number;
|
|
2823
2969
|
/**
|
|
2824
2970
|
* A list of CSS at-property rules matching this node.
|
|
2825
2971
|
*/
|
|
@@ -2882,6 +3028,17 @@ the full layer tree for the tree scope and their ordering.
|
|
|
2882
3028
|
export type getLayersForNodeReturnValue = {
|
|
2883
3029
|
rootLayer: CSSLayerData;
|
|
2884
3030
|
}
|
|
3031
|
+
/**
|
|
3032
|
+
* Given a CSS selector text and a style sheet ID, getLocationForSelector
|
|
3033
|
+
returns an array of locations of the CSS selector in the style sheet.
|
|
3034
|
+
*/
|
|
3035
|
+
export type getLocationForSelectorParameters = {
|
|
3036
|
+
styleSheetId: StyleSheetId;
|
|
3037
|
+
selectorText: string;
|
|
3038
|
+
}
|
|
3039
|
+
export type getLocationForSelectorReturnValue = {
|
|
3040
|
+
ranges: SourceRange[];
|
|
3041
|
+
}
|
|
2885
3042
|
/**
|
|
2886
3043
|
* Starts tracking the given computed styles for updates. The specified array of properties
|
|
2887
3044
|
replaces the one previously specified. Pass empty array to disable tracking.
|
|
@@ -3404,7 +3561,7 @@ front-end.
|
|
|
3404
3561
|
/**
|
|
3405
3562
|
* Pseudo element type.
|
|
3406
3563
|
*/
|
|
3407
|
-
export type PseudoType = "first-line"|"first-letter"|"before"|"after"|"marker"|"backdrop"|"selection"|"target-text"|"spelling-error"|"grammar-error"|"highlight"|"first-line-inherited"|"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-old"|"view-transition-new";
|
|
3564
|
+
export type PseudoType = "first-line"|"first-letter"|"before"|"after"|"marker"|"backdrop"|"selection"|"search-text"|"target-text"|"spelling-error"|"grammar-error"|"highlight"|"first-line-inherited"|"scroll-marker"|"scroll-marker-group"|"scroll-next-button"|"scroll-prev-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-old"|"view-transition-new";
|
|
3408
3565
|
/**
|
|
3409
3566
|
* Shadow root type.
|
|
3410
3567
|
*/
|
|
@@ -3554,6 +3711,13 @@ The property is always undefined now.
|
|
|
3554
3711
|
compatibilityMode?: CompatibilityMode;
|
|
3555
3712
|
assignedSlot?: BackendNode;
|
|
3556
3713
|
}
|
|
3714
|
+
/**
|
|
3715
|
+
* A structure to hold the top-level node of a detached tree and an array of its retained descendants.
|
|
3716
|
+
*/
|
|
3717
|
+
export interface DetachedElementInfo {
|
|
3718
|
+
treeNode: Node;
|
|
3719
|
+
retainedNodeIds: NodeId[];
|
|
3720
|
+
}
|
|
3557
3721
|
/**
|
|
3558
3722
|
* A structure holding an RGBA color.
|
|
3559
3723
|
*/
|
|
@@ -4380,6 +4544,25 @@ appear on top of all other content.
|
|
|
4380
4544
|
*/
|
|
4381
4545
|
nodeIds: NodeId[];
|
|
4382
4546
|
}
|
|
4547
|
+
/**
|
|
4548
|
+
* Returns the NodeId of the matched element according to certain relations.
|
|
4549
|
+
*/
|
|
4550
|
+
export type getElementByRelationParameters = {
|
|
4551
|
+
/**
|
|
4552
|
+
* Id of the node from which to query the relation.
|
|
4553
|
+
*/
|
|
4554
|
+
nodeId: NodeId;
|
|
4555
|
+
/**
|
|
4556
|
+
* Type of relation to get.
|
|
4557
|
+
*/
|
|
4558
|
+
relation: "PopoverTarget";
|
|
4559
|
+
}
|
|
4560
|
+
export type getElementByRelationReturnValue = {
|
|
4561
|
+
/**
|
|
4562
|
+
* NodeId of the element matching the queried relation.
|
|
4563
|
+
*/
|
|
4564
|
+
nodeId: NodeId;
|
|
4565
|
+
}
|
|
4383
4566
|
/**
|
|
4384
4567
|
* Re-does the last undone action.
|
|
4385
4568
|
*/
|
|
@@ -4582,6 +4765,17 @@ File wrapper.
|
|
|
4582
4765
|
export type getFileInfoReturnValue = {
|
|
4583
4766
|
path: string;
|
|
4584
4767
|
}
|
|
4768
|
+
/**
|
|
4769
|
+
* Returns list of detached nodes
|
|
4770
|
+
*/
|
|
4771
|
+
export type getDetachedDomNodesParameters = {
|
|
4772
|
+
}
|
|
4773
|
+
export type getDetachedDomNodesReturnValue = {
|
|
4774
|
+
/**
|
|
4775
|
+
* The list of detached nodes
|
|
4776
|
+
*/
|
|
4777
|
+
detachedNodes: DetachedElementInfo[];
|
|
4778
|
+
}
|
|
4585
4779
|
/**
|
|
4586
4780
|
* Enables console to refer to the node with given id via $x (see Command Line API for more details
|
|
4587
4781
|
$x functions).
|
|
@@ -4700,6 +4894,29 @@ container queries against this container.
|
|
|
4700
4894
|
*/
|
|
4701
4895
|
nodeIds: NodeId[];
|
|
4702
4896
|
}
|
|
4897
|
+
/**
|
|
4898
|
+
* Returns the target anchor element of the given anchor query according to
|
|
4899
|
+
https://www.w3.org/TR/css-anchor-position-1/#target.
|
|
4900
|
+
*/
|
|
4901
|
+
export type getAnchorElementParameters = {
|
|
4902
|
+
/**
|
|
4903
|
+
* Id of the positioned element from which to find the anchor.
|
|
4904
|
+
*/
|
|
4905
|
+
nodeId: NodeId;
|
|
4906
|
+
/**
|
|
4907
|
+
* An optional anchor specifier, as defined in
|
|
4908
|
+
https://www.w3.org/TR/css-anchor-position-1/#anchor-specifier.
|
|
4909
|
+
If not provided, it will return the implicit anchor element for
|
|
4910
|
+
the given positioned element.
|
|
4911
|
+
*/
|
|
4912
|
+
anchorSpecifier?: string;
|
|
4913
|
+
}
|
|
4914
|
+
export type getAnchorElementReturnValue = {
|
|
4915
|
+
/**
|
|
4916
|
+
* The anchor element of the given anchor query.
|
|
4917
|
+
*/
|
|
4918
|
+
nodeId: NodeId;
|
|
4919
|
+
}
|
|
4703
4920
|
}
|
|
4704
4921
|
|
|
4705
4922
|
/**
|
|
@@ -5783,6 +6000,11 @@ See https://w3c.github.io/sensors/#automation for more information.
|
|
|
5783
6000
|
xyz?: SensorReadingXYZ;
|
|
5784
6001
|
quaternion?: SensorReadingQuaternion;
|
|
5785
6002
|
}
|
|
6003
|
+
export type PressureSource = "cpu";
|
|
6004
|
+
export type PressureState = "nominal"|"fair"|"serious"|"critical";
|
|
6005
|
+
export interface PressureMetadata {
|
|
6006
|
+
available?: boolean;
|
|
6007
|
+
}
|
|
5786
6008
|
/**
|
|
5787
6009
|
* Enum of image types that can be disabled.
|
|
5788
6010
|
*/
|
|
@@ -5936,11 +6158,31 @@ is turned-off.
|
|
|
5936
6158
|
/**
|
|
5937
6159
|
* If set, the posture of a foldable device. If not set the posture is set
|
|
5938
6160
|
to continuous.
|
|
6161
|
+
Deprecated, use Emulation.setDevicePostureOverride.
|
|
5939
6162
|
*/
|
|
5940
6163
|
devicePosture?: DevicePosture;
|
|
5941
6164
|
}
|
|
5942
6165
|
export type setDeviceMetricsOverrideReturnValue = {
|
|
5943
6166
|
}
|
|
6167
|
+
/**
|
|
6168
|
+
* Start reporting the given posture value to the Device Posture API.
|
|
6169
|
+
This override can also be set in setDeviceMetricsOverride().
|
|
6170
|
+
*/
|
|
6171
|
+
export type setDevicePostureOverrideParameters = {
|
|
6172
|
+
posture: DevicePosture;
|
|
6173
|
+
}
|
|
6174
|
+
export type setDevicePostureOverrideReturnValue = {
|
|
6175
|
+
}
|
|
6176
|
+
/**
|
|
6177
|
+
* Clears a device posture override set with either setDeviceMetricsOverride()
|
|
6178
|
+
or setDevicePostureOverride() and starts using posture information from the
|
|
6179
|
+
platform again.
|
|
6180
|
+
Does nothing if no override is set.
|
|
6181
|
+
*/
|
|
6182
|
+
export type clearDevicePostureOverrideParameters = {
|
|
6183
|
+
}
|
|
6184
|
+
export type clearDevicePostureOverrideReturnValue = {
|
|
6185
|
+
}
|
|
5944
6186
|
export type setScrollbarsHiddenParameters = {
|
|
5945
6187
|
/**
|
|
5946
6188
|
* Whether scrollbars should be always hidden.
|
|
@@ -6046,6 +6288,30 @@ by setSensorOverrideEnabled.
|
|
|
6046
6288
|
}
|
|
6047
6289
|
export type setSensorOverrideReadingsReturnValue = {
|
|
6048
6290
|
}
|
|
6291
|
+
/**
|
|
6292
|
+
* Overrides a pressure source of a given type, as used by the Compute
|
|
6293
|
+
Pressure API, so that updates to PressureObserver.observe() are provided
|
|
6294
|
+
via setPressureStateOverride instead of being retrieved from
|
|
6295
|
+
platform-provided telemetry data.
|
|
6296
|
+
*/
|
|
6297
|
+
export type setPressureSourceOverrideEnabledParameters = {
|
|
6298
|
+
enabled: boolean;
|
|
6299
|
+
source: PressureSource;
|
|
6300
|
+
metadata?: PressureMetadata;
|
|
6301
|
+
}
|
|
6302
|
+
export type setPressureSourceOverrideEnabledReturnValue = {
|
|
6303
|
+
}
|
|
6304
|
+
/**
|
|
6305
|
+
* Provides a given pressure state that will be processed and eventually be
|
|
6306
|
+
delivered to PressureObserver users. |source| must have been previously
|
|
6307
|
+
overridden by setPressureSourceOverrideEnabled.
|
|
6308
|
+
*/
|
|
6309
|
+
export type setPressureStateOverrideParameters = {
|
|
6310
|
+
source: PressureSource;
|
|
6311
|
+
state: PressureState;
|
|
6312
|
+
}
|
|
6313
|
+
export type setPressureStateOverrideReturnValue = {
|
|
6314
|
+
}
|
|
6049
6315
|
/**
|
|
6050
6316
|
* Overrides the Idle state.
|
|
6051
6317
|
*/
|
|
@@ -6389,6 +6655,54 @@ following the last read). Some types of streams may only support sequential read
|
|
|
6389
6655
|
}
|
|
6390
6656
|
}
|
|
6391
6657
|
|
|
6658
|
+
export module FileSystem {
|
|
6659
|
+
export interface File {
|
|
6660
|
+
name: string;
|
|
6661
|
+
/**
|
|
6662
|
+
* Timestamp
|
|
6663
|
+
*/
|
|
6664
|
+
lastModified: Network.TimeSinceEpoch;
|
|
6665
|
+
/**
|
|
6666
|
+
* Size in bytes
|
|
6667
|
+
*/
|
|
6668
|
+
size: number;
|
|
6669
|
+
type: string;
|
|
6670
|
+
}
|
|
6671
|
+
export interface Directory {
|
|
6672
|
+
name: string;
|
|
6673
|
+
nestedDirectories: string[];
|
|
6674
|
+
/**
|
|
6675
|
+
* Files that are directly nested under this directory.
|
|
6676
|
+
*/
|
|
6677
|
+
nestedFiles: File[];
|
|
6678
|
+
}
|
|
6679
|
+
export interface BucketFileSystemLocator {
|
|
6680
|
+
/**
|
|
6681
|
+
* Storage key
|
|
6682
|
+
*/
|
|
6683
|
+
storageKey: Storage.SerializedStorageKey;
|
|
6684
|
+
/**
|
|
6685
|
+
* Bucket name. Not passing a `bucketName` will retrieve the default Bucket. (https://developer.mozilla.org/en-US/docs/Web/API/Storage_API#storage_buckets)
|
|
6686
|
+
*/
|
|
6687
|
+
bucketName?: string;
|
|
6688
|
+
/**
|
|
6689
|
+
* Path to the directory using each path component as an array item.
|
|
6690
|
+
*/
|
|
6691
|
+
pathComponents: string[];
|
|
6692
|
+
}
|
|
6693
|
+
|
|
6694
|
+
|
|
6695
|
+
export type getDirectoryParameters = {
|
|
6696
|
+
bucketFileSystemLocator: BucketFileSystemLocator;
|
|
6697
|
+
}
|
|
6698
|
+
export type getDirectoryReturnValue = {
|
|
6699
|
+
/**
|
|
6700
|
+
* Returns the directory object at the path.
|
|
6701
|
+
*/
|
|
6702
|
+
directory: Directory;
|
|
6703
|
+
}
|
|
6704
|
+
}
|
|
6705
|
+
|
|
6392
6706
|
export module IndexedDB {
|
|
6393
6707
|
/**
|
|
6394
6708
|
* Database with an array of object stores.
|
|
@@ -7995,6 +8309,14 @@ milliseconds relatively to this requestTime.
|
|
|
7995
8309
|
* Settled fetch event respondWith promise.
|
|
7996
8310
|
*/
|
|
7997
8311
|
workerRespondWithSettled: number;
|
|
8312
|
+
/**
|
|
8313
|
+
* Started ServiceWorker static routing source evaluation.
|
|
8314
|
+
*/
|
|
8315
|
+
workerRouterEvaluationStart?: number;
|
|
8316
|
+
/**
|
|
8317
|
+
* Started cache lookup when the source was evaluated to `cache`.
|
|
8318
|
+
*/
|
|
8319
|
+
workerCacheLookupStart?: number;
|
|
7998
8320
|
/**
|
|
7999
8321
|
* Started sending request.
|
|
8000
8322
|
*/
|
|
@@ -8052,6 +8374,7 @@ milliseconds relatively to this requestTime.
|
|
|
8052
8374
|
headers: Headers;
|
|
8053
8375
|
/**
|
|
8054
8376
|
* HTTP POST request data.
|
|
8377
|
+
Use postDataEntries instead.
|
|
8055
8378
|
*/
|
|
8056
8379
|
postData?: string;
|
|
8057
8380
|
/**
|
|
@@ -8059,7 +8382,7 @@ milliseconds relatively to this requestTime.
|
|
|
8059
8382
|
*/
|
|
8060
8383
|
hasPostData?: boolean;
|
|
8061
8384
|
/**
|
|
8062
|
-
* Request body elements
|
|
8385
|
+
* Request body elements (post data broken into individual entries).
|
|
8063
8386
|
*/
|
|
8064
8387
|
postDataEntries?: PostDataEntry[];
|
|
8065
8388
|
/**
|
|
@@ -8201,7 +8524,7 @@ applicable or not known.
|
|
|
8201
8524
|
/**
|
|
8202
8525
|
* The reason why request was blocked.
|
|
8203
8526
|
*/
|
|
8204
|
-
export type BlockedReason = "other"|"csp"|"mixed-content"|"origin"|"inspector"|"subresource-filter"|"content-type"|"coep-frame-resource-needs-coep-header"|"coop-sandboxed-iframe-cannot-navigate-to-coop-page"|"corp-not-same-origin"|"corp-not-same-origin-after-defaulted-to-same-origin-by-coep"|"corp-not-same-site";
|
|
8527
|
+
export type BlockedReason = "other"|"csp"|"mixed-content"|"origin"|"inspector"|"subresource-filter"|"content-type"|"coep-frame-resource-needs-coep-header"|"coop-sandboxed-iframe-cannot-navigate-to-coop-page"|"corp-not-same-origin"|"corp-not-same-origin-after-defaulted-to-same-origin-by-coep"|"corp-not-same-origin-after-defaulted-to-same-origin-by-dip"|"corp-not-same-origin-after-defaulted-to-same-origin-by-coep-and-dip"|"corp-not-same-site";
|
|
8205
8528
|
/**
|
|
8206
8529
|
* The reason why request was blocked.
|
|
8207
8530
|
*/
|
|
@@ -8242,8 +8565,20 @@ records.
|
|
|
8242
8565
|
*/
|
|
8243
8566
|
export type ServiceWorkerRouterSource = "network"|"cache"|"fetch-event"|"race-network-and-fetch-handler";
|
|
8244
8567
|
export interface ServiceWorkerRouterInfo {
|
|
8245
|
-
|
|
8246
|
-
|
|
8568
|
+
/**
|
|
8569
|
+
* ID of the rule matched. If there is a matched rule, this field will
|
|
8570
|
+
be set, otherwiser no value will be set.
|
|
8571
|
+
*/
|
|
8572
|
+
ruleIdMatched?: number;
|
|
8573
|
+
/**
|
|
8574
|
+
* The router source of the matched rule. If there is a matched rule, this
|
|
8575
|
+
field will be set, otherwise no value will be set.
|
|
8576
|
+
*/
|
|
8577
|
+
matchedSourceType?: ServiceWorkerRouterSource;
|
|
8578
|
+
/**
|
|
8579
|
+
* The actual router source used.
|
|
8580
|
+
*/
|
|
8581
|
+
actualSourceType?: ServiceWorkerRouterSource;
|
|
8247
8582
|
}
|
|
8248
8583
|
/**
|
|
8249
8584
|
* HTTP response data.
|
|
@@ -8314,7 +8649,14 @@ records.
|
|
|
8314
8649
|
*/
|
|
8315
8650
|
fromPrefetchCache?: boolean;
|
|
8316
8651
|
/**
|
|
8317
|
-
*
|
|
8652
|
+
* Specifies that the request was served from the prefetch cache.
|
|
8653
|
+
*/
|
|
8654
|
+
fromEarlyHints?: boolean;
|
|
8655
|
+
/**
|
|
8656
|
+
* Information about how ServiceWorker Static Router API was used. If this
|
|
8657
|
+
field is set with `matchedSourceType` field, a matching rule is found.
|
|
8658
|
+
If this field is set without `matchedSource`, no matching rule is found.
|
|
8659
|
+
Otherwise, the API is not used.
|
|
8318
8660
|
*/
|
|
8319
8661
|
serviceWorkerRouterInfo?: ServiceWorkerRouterInfo;
|
|
8320
8662
|
/**
|
|
@@ -8463,6 +8805,21 @@ module) (0-based).
|
|
|
8463
8805
|
*/
|
|
8464
8806
|
requestId?: RequestId;
|
|
8465
8807
|
}
|
|
8808
|
+
/**
|
|
8809
|
+
* cookiePartitionKey object
|
|
8810
|
+
The representation of the components of the key that are created by the cookiePartitionKey class contained in net/cookies/cookie_partition_key.h.
|
|
8811
|
+
*/
|
|
8812
|
+
export interface CookiePartitionKey {
|
|
8813
|
+
/**
|
|
8814
|
+
* The site of the top-level URL the browser was visiting at the start
|
|
8815
|
+
of the request to the endpoint that set the cookie.
|
|
8816
|
+
*/
|
|
8817
|
+
topLevelSite: string;
|
|
8818
|
+
/**
|
|
8819
|
+
* Indicates if the cookie has any ancestors that are cross-site to the topLevelSite.
|
|
8820
|
+
*/
|
|
8821
|
+
hasCrossSiteAncestor: boolean;
|
|
8822
|
+
}
|
|
8466
8823
|
/**
|
|
8467
8824
|
* Cookie object
|
|
8468
8825
|
*/
|
|
@@ -8526,10 +8883,9 @@ This is a temporary ability and it will be removed in the future.
|
|
|
8526
8883
|
*/
|
|
8527
8884
|
sourcePort: number;
|
|
8528
8885
|
/**
|
|
8529
|
-
* Cookie partition key.
|
|
8530
|
-
of the request to the endpoint that set the cookie.
|
|
8886
|
+
* Cookie partition key.
|
|
8531
8887
|
*/
|
|
8532
|
-
partitionKey?:
|
|
8888
|
+
partitionKey?: CookiePartitionKey;
|
|
8533
8889
|
/**
|
|
8534
8890
|
* True if cookie partition key is opaque.
|
|
8535
8891
|
*/
|
|
@@ -8546,7 +8902,7 @@ of the request to the endpoint that set the cookie.
|
|
|
8546
8902
|
/**
|
|
8547
8903
|
* Types of reasons why a cookie should have been blocked by 3PCD but is exempted for the request.
|
|
8548
8904
|
*/
|
|
8549
|
-
export type CookieExemptionReason = "None"|"UserSetting"|"TPCDMetadata"|"TPCDDeprecationTrial"|"TPCDHeuristics"|"EnterprisePolicy"|"StorageAccess"|"TopLevelStorageAccess"|"CorsOptIn";
|
|
8905
|
+
export type CookieExemptionReason = "None"|"UserSetting"|"TPCDMetadata"|"TPCDDeprecationTrial"|"TPCDHeuristics"|"EnterprisePolicy"|"StorageAccess"|"TopLevelStorageAccess"|"CorsOptIn"|"Scheme";
|
|
8550
8906
|
/**
|
|
8551
8907
|
* A cookie which was not stored from a response with the corresponding reason.
|
|
8552
8908
|
*/
|
|
@@ -8576,6 +8932,10 @@ corresponding reason. A cookie could only have at most one exemption reason.
|
|
|
8576
8932
|
* The reason the cookie was exempted.
|
|
8577
8933
|
*/
|
|
8578
8934
|
exemptionReason: CookieExemptionReason;
|
|
8935
|
+
/**
|
|
8936
|
+
* The string representing this individual cookie as it would appear in the header.
|
|
8937
|
+
*/
|
|
8938
|
+
cookieLine: string;
|
|
8579
8939
|
/**
|
|
8580
8940
|
* The cookie object representing the cookie.
|
|
8581
8941
|
*/
|
|
@@ -8660,11 +9020,9 @@ This is a temporary ability and it will be removed in the future.
|
|
|
8660
9020
|
*/
|
|
8661
9021
|
sourcePort?: number;
|
|
8662
9022
|
/**
|
|
8663
|
-
* Cookie partition key.
|
|
8664
|
-
of the request to the endpoint that set the cookie.
|
|
8665
|
-
If not set, the cookie will be set as not partitioned.
|
|
9023
|
+
* Cookie partition key. If not set, the cookie will be set as not partitioned.
|
|
8666
9024
|
*/
|
|
8667
|
-
partitionKey?:
|
|
9025
|
+
partitionKey?: CookiePartitionKey;
|
|
8668
9026
|
}
|
|
8669
9027
|
/**
|
|
8670
9028
|
* Authorization challenge for HTTP status code 401 or 407.
|
|
@@ -8860,7 +9218,7 @@ the same request (but not for redirected requests).
|
|
|
8860
9218
|
initiatorIPAddressSpace: IPAddressSpace;
|
|
8861
9219
|
privateNetworkRequestPolicy: PrivateNetworkRequestPolicy;
|
|
8862
9220
|
}
|
|
8863
|
-
export type CrossOriginOpenerPolicyValue = "SameOrigin"|"SameOriginAllowPopups"|"RestrictProperties"|"UnsafeNone"|"SameOriginPlusCoep"|"RestrictPropertiesPlusCoep";
|
|
9221
|
+
export type CrossOriginOpenerPolicyValue = "SameOrigin"|"SameOriginAllowPopups"|"RestrictProperties"|"UnsafeNone"|"SameOriginPlusCoep"|"RestrictPropertiesPlusCoep"|"NoopenerAllowPopups";
|
|
8864
9222
|
export interface CrossOriginOpenerPolicyStatus {
|
|
8865
9223
|
value: CrossOriginOpenerPolicyValue;
|
|
8866
9224
|
reportOnlyValue: CrossOriginOpenerPolicyValue;
|
|
@@ -9488,7 +9846,7 @@ available, such as in the case of HTTP/2 or QUIC.
|
|
|
9488
9846
|
* The cookie partition key that will be used to store partitioned cookies set in this response.
|
|
9489
9847
|
Only sent when partitioned cookies are enabled.
|
|
9490
9848
|
*/
|
|
9491
|
-
cookiePartitionKey?:
|
|
9849
|
+
cookiePartitionKey?: CookiePartitionKey;
|
|
9492
9850
|
/**
|
|
9493
9851
|
* True if partitioned cookies are enabled, but the partition key is not serializable to string.
|
|
9494
9852
|
*/
|
|
@@ -9499,6 +9857,21 @@ the response with the corresponding reason.
|
|
|
9499
9857
|
*/
|
|
9500
9858
|
exemptedCookies?: ExemptedSetCookieWithReason[];
|
|
9501
9859
|
}
|
|
9860
|
+
/**
|
|
9861
|
+
* Fired when 103 Early Hints headers is received in addition to the common response.
|
|
9862
|
+
Not every responseReceived event will have an responseReceivedEarlyHints fired.
|
|
9863
|
+
Only one responseReceivedEarlyHints may be fired for eached responseReceived event.
|
|
9864
|
+
*/
|
|
9865
|
+
export type responseReceivedEarlyHintsPayload = {
|
|
9866
|
+
/**
|
|
9867
|
+
* Request identifier. Used to match this information to another responseReceived event.
|
|
9868
|
+
*/
|
|
9869
|
+
requestId: RequestId;
|
|
9870
|
+
/**
|
|
9871
|
+
* Raw response headers as they were received over the wire.
|
|
9872
|
+
*/
|
|
9873
|
+
headers: Headers;
|
|
9874
|
+
}
|
|
9502
9875
|
/**
|
|
9503
9876
|
* Fired exactly once for each Trust Token operation. Depending on
|
|
9504
9877
|
the type of the operation and whether the operation succeeded or
|
|
@@ -9512,7 +9885,7 @@ or after the response was received.
|
|
|
9512
9885
|
of the operation already exists und thus, the operation was abort
|
|
9513
9886
|
preemptively (e.g. a cache hit).
|
|
9514
9887
|
*/
|
|
9515
|
-
status: "Ok"|"InvalidArgument"|"MissingIssuerKeys"|"FailedPrecondition"|"ResourceExhausted"|"AlreadyExists"|"
|
|
9888
|
+
status: "Ok"|"InvalidArgument"|"MissingIssuerKeys"|"FailedPrecondition"|"ResourceExhausted"|"AlreadyExists"|"ResourceLimited"|"Unauthorized"|"BadResponse"|"InternalError"|"UnknownError"|"FulfilledLocally";
|
|
9516
9889
|
type: TrustTokenOperationType;
|
|
9517
9890
|
requestId: RequestId;
|
|
9518
9891
|
/**
|
|
@@ -9528,6 +9901,10 @@ preemptively (e.g. a cache hit).
|
|
|
9528
9901
|
*/
|
|
9529
9902
|
issuedTokenCount?: number;
|
|
9530
9903
|
}
|
|
9904
|
+
/**
|
|
9905
|
+
* Fired once security policy has been updated.
|
|
9906
|
+
*/
|
|
9907
|
+
export type policyUpdatedPayload = void;
|
|
9531
9908
|
/**
|
|
9532
9909
|
* Fired once when parsing the .wbn file has succeeded.
|
|
9533
9910
|
The event contains the information about the web bundle contents.
|
|
@@ -9749,10 +10126,10 @@ provided URL.
|
|
|
9749
10126
|
*/
|
|
9750
10127
|
path?: string;
|
|
9751
10128
|
/**
|
|
9752
|
-
* If specified, deletes only cookies with the the given name and partitionKey where
|
|
9753
|
-
|
|
10129
|
+
* If specified, deletes only cookies with the the given name and partitionKey where
|
|
10130
|
+
all partition key attributes match the cookie partition key attribute.
|
|
9754
10131
|
*/
|
|
9755
|
-
partitionKey?:
|
|
10132
|
+
partitionKey?: CookiePartitionKey;
|
|
9756
10133
|
}
|
|
9757
10134
|
export type deleteCookiesReturnValue = {
|
|
9758
10135
|
}
|
|
@@ -9787,6 +10164,18 @@ matches provided URL.
|
|
|
9787
10164
|
* Connection type if known.
|
|
9788
10165
|
*/
|
|
9789
10166
|
connectionType?: ConnectionType;
|
|
10167
|
+
/**
|
|
10168
|
+
* WebRTC packet loss (percent, 0-100). 0 disables packet loss emulation, 100 drops all the packets.
|
|
10169
|
+
*/
|
|
10170
|
+
packetLoss?: number;
|
|
10171
|
+
/**
|
|
10172
|
+
* WebRTC packet queue length (packet). 0 removes any queue length limitations.
|
|
10173
|
+
*/
|
|
10174
|
+
packetQueueLength?: number;
|
|
10175
|
+
/**
|
|
10176
|
+
* WebRTC packetReordering feature.
|
|
10177
|
+
*/
|
|
10178
|
+
packetReordering?: boolean;
|
|
9790
10179
|
}
|
|
9791
10180
|
export type emulateNetworkConditionsReturnValue = {
|
|
9792
10181
|
}
|
|
@@ -10050,11 +10439,9 @@ This is a temporary ability and it will be removed in the future.
|
|
|
10050
10439
|
*/
|
|
10051
10440
|
sourcePort?: number;
|
|
10052
10441
|
/**
|
|
10053
|
-
* Cookie partition key.
|
|
10054
|
-
of the request to the endpoint that set the cookie.
|
|
10055
|
-
If not set, the cookie will be set as not partitioned.
|
|
10442
|
+
* Cookie partition key. If not set, the cookie will be set as not partitioned.
|
|
10056
10443
|
*/
|
|
10057
|
-
partitionKey?:
|
|
10444
|
+
partitionKey?: CookiePartitionKey;
|
|
10058
10445
|
}
|
|
10059
10446
|
export type setCookieReturnValue = {
|
|
10060
10447
|
/**
|
|
@@ -11065,7 +11452,7 @@ as an ad.
|
|
|
11065
11452
|
* All Permissions Policy features. This enum should match the one defined
|
|
11066
11453
|
in third_party/blink/renderer/core/permissions_policy/permissions_policy_features.json5.
|
|
11067
11454
|
*/
|
|
11068
|
-
export type PermissionsPolicyFeature = "accelerometer"|"ambient-light-sensor"|"attribution-reporting"|"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-platform"|"ch-ua-model"|"ch-ua-mobile"|"ch-ua-form-
|
|
11455
|
+
export type PermissionsPolicyFeature = "accelerometer"|"all-screens-capture"|"ambient-light-sensor"|"attribution-reporting"|"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-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"|"cross-origin-isolated"|"deferred-fetch"|"digital-credentials-get"|"direct-sockets"|"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"|"local-fonts"|"magnetometer"|"media-playback-while-not-visible"|"microphone"|"midi"|"otp-credentials"|"payment"|"picture-in-picture"|"private-aggregation"|"private-state-token-issuance"|"private-state-token-redemption"|"publickey-credentials-create"|"publickey-credentials-get"|"run-ad-auction"|"screen-wake-lock"|"serial"|"shared-autofill"|"shared-storage"|"shared-storage-select-url"|"smart-card"|"speaker-selection"|"storage-access"|"sub-apps"|"sync-xhr"|"unload"|"usb"|"usb-unrestricted"|"vertical-scroll"|"web-printing"|"web-share"|"window-management"|"xr-spatial-tracking";
|
|
11069
11456
|
/**
|
|
11070
11457
|
* Reason for a permissions policy feature to be disabled.
|
|
11071
11458
|
*/
|
|
@@ -11480,7 +11867,7 @@ Example URLs: http://www.google.com/file.html -> "google.com"
|
|
|
11480
11867
|
*/
|
|
11481
11868
|
fixed?: number;
|
|
11482
11869
|
}
|
|
11483
|
-
export type ClientNavigationReason = "formSubmissionGet"|"formSubmissionPost"|"httpHeaderRefresh"|"
|
|
11870
|
+
export type ClientNavigationReason = "anchorClick"|"formSubmissionGet"|"formSubmissionPost"|"httpHeaderRefresh"|"initialFrameNavigation"|"metaTagRefresh"|"other"|"pageBlockInterstitial"|"reload"|"scriptInitiated";
|
|
11484
11871
|
export type ClientNavigationDisposition = "currentTab"|"newTab"|"newWindow"|"download";
|
|
11485
11872
|
export interface InstallabilityErrorArgument {
|
|
11486
11873
|
/**
|
|
@@ -11523,6 +11910,125 @@ Example URLs: http://www.google.com/file.html -> "google.com"
|
|
|
11523
11910
|
*/
|
|
11524
11911
|
eager?: boolean;
|
|
11525
11912
|
}
|
|
11913
|
+
export interface FileFilter {
|
|
11914
|
+
name?: string;
|
|
11915
|
+
accepts?: string[];
|
|
11916
|
+
}
|
|
11917
|
+
export interface FileHandler {
|
|
11918
|
+
action: string;
|
|
11919
|
+
name: string;
|
|
11920
|
+
icons?: ImageResource[];
|
|
11921
|
+
/**
|
|
11922
|
+
* Mimic a map, name is the key, accepts is the value.
|
|
11923
|
+
*/
|
|
11924
|
+
accepts?: FileFilter[];
|
|
11925
|
+
/**
|
|
11926
|
+
* Won't repeat the enums, using string for easy comparison. Same as the
|
|
11927
|
+
other enums below.
|
|
11928
|
+
*/
|
|
11929
|
+
launchType: string;
|
|
11930
|
+
}
|
|
11931
|
+
/**
|
|
11932
|
+
* The image definition used in both icon and screenshot.
|
|
11933
|
+
*/
|
|
11934
|
+
export interface ImageResource {
|
|
11935
|
+
/**
|
|
11936
|
+
* The src field in the definition, but changing to url in favor of
|
|
11937
|
+
consistency.
|
|
11938
|
+
*/
|
|
11939
|
+
url: string;
|
|
11940
|
+
sizes?: string;
|
|
11941
|
+
type?: string;
|
|
11942
|
+
}
|
|
11943
|
+
export interface LaunchHandler {
|
|
11944
|
+
clientMode: string;
|
|
11945
|
+
}
|
|
11946
|
+
export interface ProtocolHandler {
|
|
11947
|
+
protocol: string;
|
|
11948
|
+
url: string;
|
|
11949
|
+
}
|
|
11950
|
+
export interface RelatedApplication {
|
|
11951
|
+
id?: string;
|
|
11952
|
+
url: string;
|
|
11953
|
+
}
|
|
11954
|
+
export interface ScopeExtension {
|
|
11955
|
+
/**
|
|
11956
|
+
* Instead of using tuple, this field always returns the serialized string
|
|
11957
|
+
for easy understanding and comparison.
|
|
11958
|
+
*/
|
|
11959
|
+
origin: string;
|
|
11960
|
+
hasOriginWildcard: boolean;
|
|
11961
|
+
}
|
|
11962
|
+
export interface Screenshot {
|
|
11963
|
+
image: ImageResource;
|
|
11964
|
+
formFactor: string;
|
|
11965
|
+
label?: string;
|
|
11966
|
+
}
|
|
11967
|
+
export interface ShareTarget {
|
|
11968
|
+
action: string;
|
|
11969
|
+
method: string;
|
|
11970
|
+
enctype: string;
|
|
11971
|
+
/**
|
|
11972
|
+
* Embed the ShareTargetParams
|
|
11973
|
+
*/
|
|
11974
|
+
title?: string;
|
|
11975
|
+
text?: string;
|
|
11976
|
+
url?: string;
|
|
11977
|
+
files?: FileFilter[];
|
|
11978
|
+
}
|
|
11979
|
+
export interface Shortcut {
|
|
11980
|
+
name: string;
|
|
11981
|
+
url: string;
|
|
11982
|
+
}
|
|
11983
|
+
export interface WebAppManifest {
|
|
11984
|
+
backgroundColor?: string;
|
|
11985
|
+
/**
|
|
11986
|
+
* The extra description provided by the manifest.
|
|
11987
|
+
*/
|
|
11988
|
+
description?: string;
|
|
11989
|
+
dir?: string;
|
|
11990
|
+
display?: string;
|
|
11991
|
+
/**
|
|
11992
|
+
* The overrided display mode controlled by the user.
|
|
11993
|
+
*/
|
|
11994
|
+
displayOverrides?: string[];
|
|
11995
|
+
/**
|
|
11996
|
+
* The handlers to open files.
|
|
11997
|
+
*/
|
|
11998
|
+
fileHandlers?: FileHandler[];
|
|
11999
|
+
icons?: ImageResource[];
|
|
12000
|
+
id?: string;
|
|
12001
|
+
lang?: string;
|
|
12002
|
+
/**
|
|
12003
|
+
* TODO(crbug.com/1231886): This field is non-standard and part of a Chrome
|
|
12004
|
+
experiment. See:
|
|
12005
|
+
https://github.com/WICG/web-app-launch/blob/main/launch_handler.md
|
|
12006
|
+
*/
|
|
12007
|
+
launchHandler?: LaunchHandler;
|
|
12008
|
+
name?: string;
|
|
12009
|
+
orientation?: string;
|
|
12010
|
+
preferRelatedApplications?: boolean;
|
|
12011
|
+
/**
|
|
12012
|
+
* The handlers to open protocols.
|
|
12013
|
+
*/
|
|
12014
|
+
protocolHandlers?: ProtocolHandler[];
|
|
12015
|
+
relatedApplications?: RelatedApplication[];
|
|
12016
|
+
scope?: string;
|
|
12017
|
+
/**
|
|
12018
|
+
* Non-standard, see
|
|
12019
|
+
https://github.com/WICG/manifest-incubations/blob/gh-pages/scope_extensions-explainer.md
|
|
12020
|
+
*/
|
|
12021
|
+
scopeExtensions?: ScopeExtension[];
|
|
12022
|
+
/**
|
|
12023
|
+
* The screenshots used by chromium.
|
|
12024
|
+
*/
|
|
12025
|
+
screenshots?: Screenshot[];
|
|
12026
|
+
shareTarget?: ShareTarget;
|
|
12027
|
+
shortName?: string;
|
|
12028
|
+
shortcuts?: Shortcut[];
|
|
12029
|
+
startUrl?: string;
|
|
12030
|
+
themeColor?: string;
|
|
12031
|
+
}
|
|
11526
12032
|
/**
|
|
11527
12033
|
* Enum of possible auto-response for permission / prompt dialogs.
|
|
11528
12034
|
*/
|
|
@@ -11534,7 +12040,7 @@ Example URLs: http://www.google.com/file.html -> "google.com"
|
|
|
11534
12040
|
/**
|
|
11535
12041
|
* List of not restored reasons for back-forward cache.
|
|
11536
12042
|
*/
|
|
11537
|
-
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"|"WebSocket"|"WebTransport"|"WebRTC"|"MainResourceHasCacheControlNoStore"|"MainResourceHasCacheControlNoCache"|"SubresourceHasCacheControlNoStore"|"SubresourceHasCacheControlNoCache"|"ContainsPlugins"|"DocumentLoaded"|"OutstandingNetworkRequestOthers"|"RequestedMIDIPermission"|"RequestedAudioCapturePermission"|"RequestedVideoCapturePermission"|"RequestedBackForwardCacheBlockedSensors"|"RequestedBackgroundWorkPermission"|"BroadcastChannel"|"WebXR"|"SharedWorker"|"WebLocks"|"WebHID"|"WebShare"|"RequestedStorageAccessGrant"|"WebNfc"|"OutstandingNetworkRequestFetch"|"OutstandingNetworkRequestXHR"|"AppBanner"|"Printing"|"WebDatabase"|"PictureInPicture"|"
|
|
12043
|
+
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"|"WebLocks"|"WebHID"|"WebShare"|"RequestedStorageAccessGrant"|"WebNfc"|"OutstandingNetworkRequestFetch"|"OutstandingNetworkRequestXHR"|"AppBanner"|"Printing"|"WebDatabase"|"PictureInPicture"|"SpeechRecognizer"|"IdleManager"|"PaymentManager"|"SpeechSynthesis"|"KeyboardLock"|"WebOTPService"|"OutstandingNetworkRequestDirectSocket"|"InjectedJavascript"|"InjectedStyleSheet"|"KeepaliveRequest"|"IndexedDBEvent"|"Dummy"|"JsNetworkRequestReceivedCacheControlNoStoreResource"|"WebRTCSticky"|"WebTransportSticky"|"WebSocketSticky"|"SmartCard"|"LiveMediaStreamTrack"|"UnloadHandler"|"ParserAborted"|"ContentSecurityHandler"|"ContentWebAuthenticationAPI"|"ContentFileChooser"|"ContentSerial"|"ContentFileSystemAccess"|"ContentMediaDevicesDispatcherHost"|"ContentWebBluetooth"|"ContentWebUSB"|"ContentMediaSessionService"|"ContentScreenReader"|"EmbedderPopupBlockerTabHelper"|"EmbedderSafeBrowsingTriggeredPopupBlocker"|"EmbedderSafeBrowsingThreatDetails"|"EmbedderAppBannerManager"|"EmbedderDomDistillerViewerSource"|"EmbedderDomDistillerSelfDeletingRequestDelegate"|"EmbedderOomInterventionTabHelper"|"EmbedderOfflinePage"|"EmbedderChromePasswordManagerClientBindCredentialManager"|"EmbedderPermissionRequestManager"|"EmbedderModalDialog"|"EmbedderExtensions"|"EmbedderExtensionMessaging"|"EmbedderExtensionMessagingForOpenPort"|"EmbedderExtensionSentMessageToCachedFrame"|"RequestedByWebViewClient";
|
|
11538
12044
|
/**
|
|
11539
12045
|
* Types of not restored reasons for back-forward cache.
|
|
11540
12046
|
*/
|
|
@@ -11811,7 +12317,7 @@ open.
|
|
|
11811
12317
|
*/
|
|
11812
12318
|
type: DialogType;
|
|
11813
12319
|
/**
|
|
11814
|
-
* True
|
|
12320
|
+
* True iff browser is capable showing or acting on the given dialog. When browser has no
|
|
11815
12321
|
dialog handler for given target, calling alert while Page domain is engaged will stall
|
|
11816
12322
|
the page execution. Execution can be resumed via calling Page.handleJavaScriptDialog.
|
|
11817
12323
|
*/
|
|
@@ -11875,6 +12381,10 @@ when bfcache navigation fails.
|
|
|
11875
12381
|
* Frame's new url.
|
|
11876
12382
|
*/
|
|
11877
12383
|
url: string;
|
|
12384
|
+
/**
|
|
12385
|
+
* Navigation type
|
|
12386
|
+
*/
|
|
12387
|
+
navigationType: "fragment"|"historyApi"|"other";
|
|
11878
12388
|
}
|
|
11879
12389
|
/**
|
|
11880
12390
|
* Compressed image data requested by the `startScreencast`.
|
|
@@ -12108,7 +12618,15 @@ option, use with caution.
|
|
|
12108
12618
|
}
|
|
12109
12619
|
export type enableReturnValue = {
|
|
12110
12620
|
}
|
|
12621
|
+
/**
|
|
12622
|
+
* Gets the processed manifest for this current document.
|
|
12623
|
+
This API always waits for the manifest to be loaded.
|
|
12624
|
+
If manifestId is provided, and it does not match the manifest of the
|
|
12625
|
+
current document, this API errors out.
|
|
12626
|
+
If there is not a loaded page, this API errors out immediately.
|
|
12627
|
+
*/
|
|
12111
12628
|
export type getAppManifestParameters = {
|
|
12629
|
+
manifestId?: string;
|
|
12112
12630
|
}
|
|
12113
12631
|
export type getAppManifestReturnValue = {
|
|
12114
12632
|
/**
|
|
@@ -12121,9 +12639,10 @@ option, use with caution.
|
|
|
12121
12639
|
*/
|
|
12122
12640
|
data?: string;
|
|
12123
12641
|
/**
|
|
12124
|
-
* Parsed manifest properties
|
|
12642
|
+
* Parsed manifest properties. Deprecated, use manifest instead.
|
|
12125
12643
|
*/
|
|
12126
12644
|
parsed?: AppManifestParsedProperties;
|
|
12645
|
+
manifest: WebAppManifest;
|
|
12127
12646
|
}
|
|
12128
12647
|
export type getInstallabilityErrorsParameters = {
|
|
12129
12648
|
}
|
|
@@ -12441,6 +12960,12 @@ in which case the content will be scaled to fit the paper size.
|
|
|
12441
12960
|
Argument will be ignored if reloading dataURL origin.
|
|
12442
12961
|
*/
|
|
12443
12962
|
scriptToEvaluateOnLoad?: string;
|
|
12963
|
+
/**
|
|
12964
|
+
* If set, an error will be thrown if the target page's main frame's
|
|
12965
|
+
loader id does not match the provided id. This prevents accidentally
|
|
12966
|
+
reloading an unintended target in case there's a racing navigation.
|
|
12967
|
+
*/
|
|
12968
|
+
loaderId?: Network.LoaderId;
|
|
12444
12969
|
}
|
|
12445
12970
|
export type reloadReturnValue = {
|
|
12446
12971
|
}
|
|
@@ -13533,34 +14058,10 @@ Tokens from that issuer.
|
|
|
13533
14058
|
* Enum of network fetches auctions can do.
|
|
13534
14059
|
*/
|
|
13535
14060
|
export type InterestGroupAuctionFetchType = "bidderJs"|"bidderWasm"|"sellerJs"|"bidderTrustedSignals"|"sellerTrustedSignals";
|
|
13536
|
-
/**
|
|
13537
|
-
* Ad advertising element inside an interest group.
|
|
13538
|
-
*/
|
|
13539
|
-
export interface InterestGroupAd {
|
|
13540
|
-
renderURL: string;
|
|
13541
|
-
metadata?: string;
|
|
13542
|
-
}
|
|
13543
|
-
/**
|
|
13544
|
-
* The full details of an interest group.
|
|
13545
|
-
*/
|
|
13546
|
-
export interface InterestGroupDetails {
|
|
13547
|
-
ownerOrigin: string;
|
|
13548
|
-
name: string;
|
|
13549
|
-
expirationTime: Network.TimeSinceEpoch;
|
|
13550
|
-
joiningOrigin: string;
|
|
13551
|
-
biddingLogicURL?: string;
|
|
13552
|
-
biddingWasmHelperURL?: string;
|
|
13553
|
-
updateURL?: string;
|
|
13554
|
-
trustedBiddingSignalsURL?: string;
|
|
13555
|
-
trustedBiddingSignalsKeys: string[];
|
|
13556
|
-
userBiddingSignals?: string;
|
|
13557
|
-
ads: InterestGroupAd[];
|
|
13558
|
-
adComponents: InterestGroupAd[];
|
|
13559
|
-
}
|
|
13560
14061
|
/**
|
|
13561
14062
|
* Enum of shared storage access types.
|
|
13562
14063
|
*/
|
|
13563
|
-
export type SharedStorageAccessType = "documentAddModule"|"documentSelectURL"|"documentRun"|"documentSet"|"documentAppend"|"documentDelete"|"documentClear"|"workletSet"|"workletAppend"|"workletDelete"|"workletClear"|"workletGet"|"workletKeys"|"workletEntries"|"workletLength"|"workletRemainingBudget";
|
|
14064
|
+
export type SharedStorageAccessType = "documentAddModule"|"documentSelectURL"|"documentRun"|"documentSet"|"documentAppend"|"documentDelete"|"documentClear"|"documentGet"|"workletSet"|"workletAppend"|"workletDelete"|"workletClear"|"workletGet"|"workletKeys"|"workletEntries"|"workletLength"|"workletRemainingBudget"|"headerSet"|"headerAppend"|"headerDelete"|"headerClear";
|
|
13564
14065
|
/**
|
|
13565
14066
|
* Struct for a single key-value pair in an origin's shared storage.
|
|
13566
14067
|
*/
|
|
@@ -13644,22 +14145,28 @@ SharedStorageAccessType.documentAppend,
|
|
|
13644
14145
|
SharedStorageAccessType.documentDelete,
|
|
13645
14146
|
SharedStorageAccessType.workletSet,
|
|
13646
14147
|
SharedStorageAccessType.workletAppend,
|
|
13647
|
-
SharedStorageAccessType.workletDelete,
|
|
13648
|
-
SharedStorageAccessType.workletGet
|
|
14148
|
+
SharedStorageAccessType.workletDelete,
|
|
14149
|
+
SharedStorageAccessType.workletGet,
|
|
14150
|
+
SharedStorageAccessType.headerSet,
|
|
14151
|
+
SharedStorageAccessType.headerAppend, and
|
|
14152
|
+
SharedStorageAccessType.headerDelete.
|
|
13649
14153
|
*/
|
|
13650
14154
|
key?: string;
|
|
13651
14155
|
/**
|
|
13652
14156
|
* Value for a specific entry in an origin's shared storage.
|
|
13653
14157
|
Present only for SharedStorageAccessType.documentSet,
|
|
13654
14158
|
SharedStorageAccessType.documentAppend,
|
|
13655
|
-
SharedStorageAccessType.workletSet,
|
|
13656
|
-
SharedStorageAccessType.workletAppend
|
|
14159
|
+
SharedStorageAccessType.workletSet,
|
|
14160
|
+
SharedStorageAccessType.workletAppend,
|
|
14161
|
+
SharedStorageAccessType.headerSet, and
|
|
14162
|
+
SharedStorageAccessType.headerAppend.
|
|
13657
14163
|
*/
|
|
13658
14164
|
value?: string;
|
|
13659
14165
|
/**
|
|
13660
14166
|
* Whether or not to set an entry for a key if that key is already present.
|
|
13661
|
-
Present only for SharedStorageAccessType.documentSet
|
|
13662
|
-
SharedStorageAccessType.workletSet
|
|
14167
|
+
Present only for SharedStorageAccessType.documentSet,
|
|
14168
|
+
SharedStorageAccessType.workletSet, and
|
|
14169
|
+
SharedStorageAccessType.headerSet.
|
|
13663
14170
|
*/
|
|
13664
14171
|
ignoreIfPresent?: boolean;
|
|
13665
14172
|
}
|
|
@@ -13724,6 +14231,25 @@ int
|
|
|
13724
14231
|
eventReportWindows: AttributionReportingEventReportWindows;
|
|
13725
14232
|
}
|
|
13726
14233
|
export type AttributionReportingTriggerDataMatching = "exact"|"modulus";
|
|
14234
|
+
export interface AttributionReportingAggregatableDebugReportingData {
|
|
14235
|
+
keyPiece: UnsignedInt128AsBase16;
|
|
14236
|
+
/**
|
|
14237
|
+
* number instead of integer because not all uint32 can be represented by
|
|
14238
|
+
int
|
|
14239
|
+
*/
|
|
14240
|
+
value: number;
|
|
14241
|
+
types: string[];
|
|
14242
|
+
}
|
|
14243
|
+
export interface AttributionReportingAggregatableDebugReportingConfig {
|
|
14244
|
+
/**
|
|
14245
|
+
* number instead of integer because not all uint32 can be represented by
|
|
14246
|
+
int, only present for source registrations
|
|
14247
|
+
*/
|
|
14248
|
+
budget?: number;
|
|
14249
|
+
keyPiece: UnsignedInt128AsBase16;
|
|
14250
|
+
debugData: AttributionReportingAggregatableDebugReportingData[];
|
|
14251
|
+
aggregationCoordinatorOrigin?: string;
|
|
14252
|
+
}
|
|
13727
14253
|
export interface AttributionReportingSourceRegistration {
|
|
13728
14254
|
time: Network.TimeSinceEpoch;
|
|
13729
14255
|
/**
|
|
@@ -13745,8 +14271,10 @@ int
|
|
|
13745
14271
|
aggregationKeys: AttributionReportingAggregationKeysEntry[];
|
|
13746
14272
|
debugKey?: UnsignedInt64AsBase10;
|
|
13747
14273
|
triggerDataMatching: AttributionReportingTriggerDataMatching;
|
|
14274
|
+
destinationLimitPriority: SignedInt64AsBase10;
|
|
14275
|
+
aggregatableDebugReportingConfig: AttributionReportingAggregatableDebugReportingConfig;
|
|
13748
14276
|
}
|
|
13749
|
-
export type AttributionReportingSourceRegistrationResult = "success"|"internalError"|"insufficientSourceCapacity"|"insufficientUniqueDestinationCapacity"|"excessiveReportingOrigins"|"prohibitedByBrowserPolicy"|"successNoised"|"destinationReportingLimitReached"|"destinationGlobalLimitReached"|"destinationBothLimitsReached"|"reportingOriginsPerSiteLimitReached"|"exceedsMaxChannelCapacity";
|
|
14277
|
+
export type AttributionReportingSourceRegistrationResult = "success"|"internalError"|"insufficientSourceCapacity"|"insufficientUniqueDestinationCapacity"|"excessiveReportingOrigins"|"prohibitedByBrowserPolicy"|"successNoised"|"destinationReportingLimitReached"|"destinationGlobalLimitReached"|"destinationBothLimitsReached"|"reportingOriginsPerSiteLimitReached"|"exceedsMaxChannelCapacity"|"exceedsMaxTriggerStateCardinality"|"destinationPerDayReportingLimitReached";
|
|
13750
14278
|
export type AttributionReportingSourceRegistrationTimeConfig = "include"|"exclude";
|
|
13751
14279
|
export interface AttributionReportingAggregatableValueDictEntry {
|
|
13752
14280
|
key: string;
|
|
@@ -13755,6 +14283,7 @@ int
|
|
|
13755
14283
|
int
|
|
13756
14284
|
*/
|
|
13757
14285
|
value: number;
|
|
14286
|
+
filteringId: UnsignedInt64AsBase10;
|
|
13758
14287
|
}
|
|
13759
14288
|
export interface AttributionReportingAggregatableValueEntry {
|
|
13760
14289
|
values: AttributionReportingAggregatableValueDictEntry[];
|
|
@@ -13782,13 +14311,32 @@ int
|
|
|
13782
14311
|
eventTriggerData: AttributionReportingEventTriggerData[];
|
|
13783
14312
|
aggregatableTriggerData: AttributionReportingAggregatableTriggerData[];
|
|
13784
14313
|
aggregatableValues: AttributionReportingAggregatableValueEntry[];
|
|
14314
|
+
aggregatableFilteringIdMaxBytes: number;
|
|
13785
14315
|
debugReporting: boolean;
|
|
13786
14316
|
aggregationCoordinatorOrigin?: string;
|
|
13787
14317
|
sourceRegistrationTimeConfig: AttributionReportingSourceRegistrationTimeConfig;
|
|
13788
14318
|
triggerContextId?: string;
|
|
14319
|
+
aggregatableDebugReportingConfig: AttributionReportingAggregatableDebugReportingConfig;
|
|
13789
14320
|
}
|
|
13790
14321
|
export type AttributionReportingEventLevelResult = "success"|"successDroppedLowerPriority"|"internalError"|"noCapacityForAttributionDestination"|"noMatchingSources"|"deduplicated"|"excessiveAttributions"|"priorityTooLow"|"neverAttributedSource"|"excessiveReportingOrigins"|"noMatchingSourceFilterData"|"prohibitedByBrowserPolicy"|"noMatchingConfigurations"|"excessiveReports"|"falselyAttributedSource"|"reportWindowPassed"|"notRegistered"|"reportWindowNotStarted"|"noMatchingTriggerData";
|
|
13791
14322
|
export type AttributionReportingAggregatableResult = "success"|"internalError"|"noCapacityForAttributionDestination"|"noMatchingSources"|"excessiveAttributions"|"excessiveReportingOrigins"|"noHistograms"|"insufficientBudget"|"noMatchingSourceFilterData"|"notRegistered"|"prohibitedByBrowserPolicy"|"deduplicated"|"reportWindowPassed"|"excessiveReports";
|
|
14323
|
+
/**
|
|
14324
|
+
* A single Related Website Set object.
|
|
14325
|
+
*/
|
|
14326
|
+
export interface RelatedWebsiteSet {
|
|
14327
|
+
/**
|
|
14328
|
+
* The primary site of this set, along with the ccTLDs if there is any.
|
|
14329
|
+
*/
|
|
14330
|
+
primarySites: string[];
|
|
14331
|
+
/**
|
|
14332
|
+
* The associated sites of this set, along with the ccTLDs if there is any.
|
|
14333
|
+
*/
|
|
14334
|
+
associatedSites: string[];
|
|
14335
|
+
/**
|
|
14336
|
+
* The service sites of this set, along with the ccTLDs if there is any.
|
|
14337
|
+
*/
|
|
14338
|
+
serviceSites: string[];
|
|
14339
|
+
}
|
|
13792
14340
|
|
|
13793
14341
|
/**
|
|
13794
14342
|
* A cache's contents have been modified.
|
|
@@ -14216,7 +14764,13 @@ Leaves other stored data, including the issuer's Redemption Records, intact.
|
|
|
14216
14764
|
name: string;
|
|
14217
14765
|
}
|
|
14218
14766
|
export type getInterestGroupDetailsReturnValue = {
|
|
14219
|
-
|
|
14767
|
+
/**
|
|
14768
|
+
* This largely corresponds to:
|
|
14769
|
+
https://wicg.github.io/turtledove/#dictdef-generatebidinterestgroup
|
|
14770
|
+
but has absolute expirationTime instead of relative lifetimeMs and
|
|
14771
|
+
also adds joiningOrigin.
|
|
14772
|
+
*/
|
|
14773
|
+
details: { [key: string]: string };
|
|
14220
14774
|
}
|
|
14221
14775
|
/**
|
|
14222
14776
|
* Enables/Disables issuing of interestGroupAccessed events.
|
|
@@ -14345,6 +14899,27 @@ interestGroupAuctionNetworkRequestCreated.
|
|
|
14345
14899
|
}
|
|
14346
14900
|
export type setAttributionReportingTrackingReturnValue = {
|
|
14347
14901
|
}
|
|
14902
|
+
/**
|
|
14903
|
+
* Sends all pending Attribution Reports immediately, regardless of their
|
|
14904
|
+
scheduled report time.
|
|
14905
|
+
*/
|
|
14906
|
+
export type sendPendingAttributionReportsParameters = {
|
|
14907
|
+
}
|
|
14908
|
+
export type sendPendingAttributionReportsReturnValue = {
|
|
14909
|
+
/**
|
|
14910
|
+
* The number of reports that were sent.
|
|
14911
|
+
*/
|
|
14912
|
+
numSent: number;
|
|
14913
|
+
}
|
|
14914
|
+
/**
|
|
14915
|
+
* Returns the effective Related Website Sets in use by this profile for the browser
|
|
14916
|
+
session. The effective Related Website Sets will not change during a browser session.
|
|
14917
|
+
*/
|
|
14918
|
+
export type getRelatedWebsiteSetsParameters = {
|
|
14919
|
+
}
|
|
14920
|
+
export type getRelatedWebsiteSetsReturnValue = {
|
|
14921
|
+
sets: RelatedWebsiteSet[];
|
|
14922
|
+
}
|
|
14348
14923
|
}
|
|
14349
14924
|
|
|
14350
14925
|
/**
|
|
@@ -14582,10 +15157,10 @@ supported.
|
|
|
14582
15157
|
export type SessionID = string;
|
|
14583
15158
|
export interface TargetInfo {
|
|
14584
15159
|
targetId: TargetID;
|
|
14585
|
-
type: string;
|
|
14586
15160
|
/**
|
|
14587
15161
|
* List of types: https://source.chromium.org/chromium/chromium/src/+/main:content/browser/devtools/devtools_agent_host_impl.cc?ss=chromium&q=f:devtools%20-f:out%20%22::kTypeTab%5B%5D%22
|
|
14588
15162
|
*/
|
|
15163
|
+
type: string;
|
|
14589
15164
|
title: string;
|
|
14590
15165
|
url: string;
|
|
14591
15166
|
/**
|
|
@@ -14607,7 +15182,7 @@ supported.
|
|
|
14607
15182
|
browserContextId?: Browser.BrowserContextID;
|
|
14608
15183
|
/**
|
|
14609
15184
|
* Provides additional details for specific target types. For example, for
|
|
14610
|
-
the type of "page", this may be set to "
|
|
15185
|
+
the type of "page", this may be set to "prerender".
|
|
14611
15186
|
*/
|
|
14612
15187
|
subtype?: string;
|
|
14613
15188
|
}
|
|
@@ -16385,7 +16960,7 @@ See also:
|
|
|
16385
16960
|
requestId?: Network.RequestId;
|
|
16386
16961
|
/**
|
|
16387
16962
|
* Error information
|
|
16388
|
-
`errorMessage` is null
|
|
16963
|
+
`errorMessage` is null iff `errorType` is null.
|
|
16389
16964
|
*/
|
|
16390
16965
|
errorType?: RuleSetErrorType;
|
|
16391
16966
|
/**
|
|
@@ -16434,7 +17009,7 @@ possible for multiple rule sets and links to trigger a single attempt.
|
|
|
16434
17009
|
/**
|
|
16435
17010
|
* List of FinalStatus reasons for Prerender2.
|
|
16436
17011
|
*/
|
|
16437
|
-
export type PrerenderFinalStatus = "Activated"|"Destroyed"|"LowEndDevice"|"InvalidSchemeRedirect"|"InvalidSchemeNavigation"|"NavigationRequestBlockedByCsp"|"MainFrameNavigation"|"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";
|
|
17012
|
+
export type PrerenderFinalStatus = "Activated"|"Destroyed"|"LowEndDevice"|"InvalidSchemeRedirect"|"InvalidSchemeNavigation"|"NavigationRequestBlockedByCsp"|"MainFrameNavigation"|"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";
|
|
16438
17013
|
/**
|
|
16439
17014
|
* Preloading status values, see also PreloadingTriggeringOutcome. This
|
|
16440
17015
|
status is shared by prefetchStatusUpdated and prerenderStatusUpdated.
|
|
@@ -16627,6 +17202,256 @@ a dialog even if one was recently dismissed by the user.
|
|
|
16627
17202
|
}
|
|
16628
17203
|
}
|
|
16629
17204
|
|
|
17205
|
+
/**
|
|
17206
|
+
* This domain allows interacting with the browser to control PWAs.
|
|
17207
|
+
*/
|
|
17208
|
+
export module PWA {
|
|
17209
|
+
/**
|
|
17210
|
+
* The following types are the replica of
|
|
17211
|
+
https://crsrc.org/c/chrome/browser/web_applications/proto/web_app_os_integration_state.proto;drc=9910d3be894c8f142c977ba1023f30a656bc13fc;l=67
|
|
17212
|
+
*/
|
|
17213
|
+
export interface FileHandlerAccept {
|
|
17214
|
+
/**
|
|
17215
|
+
* New name of the mimetype according to
|
|
17216
|
+
https://www.iana.org/assignments/media-types/media-types.xhtml
|
|
17217
|
+
*/
|
|
17218
|
+
mediaType: string;
|
|
17219
|
+
fileExtensions: string[];
|
|
17220
|
+
}
|
|
17221
|
+
export interface FileHandler {
|
|
17222
|
+
action: string;
|
|
17223
|
+
accepts: FileHandlerAccept[];
|
|
17224
|
+
displayName: string;
|
|
17225
|
+
}
|
|
17226
|
+
/**
|
|
17227
|
+
* If user prefers opening the app in browser or an app window.
|
|
17228
|
+
*/
|
|
17229
|
+
export type DisplayMode = "standalone"|"browser";
|
|
17230
|
+
|
|
17231
|
+
|
|
17232
|
+
/**
|
|
17233
|
+
* Returns the following OS state for the given manifest id.
|
|
17234
|
+
*/
|
|
17235
|
+
export type getOsAppStateParameters = {
|
|
17236
|
+
/**
|
|
17237
|
+
* The id from the webapp's manifest file, commonly it's the url of the
|
|
17238
|
+
site installing the webapp. See
|
|
17239
|
+
https://web.dev/learn/pwa/web-app-manifest.
|
|
17240
|
+
*/
|
|
17241
|
+
manifestId: string;
|
|
17242
|
+
}
|
|
17243
|
+
export type getOsAppStateReturnValue = {
|
|
17244
|
+
badgeCount: number;
|
|
17245
|
+
fileHandlers: FileHandler[];
|
|
17246
|
+
}
|
|
17247
|
+
/**
|
|
17248
|
+
* Installs the given manifest identity, optionally using the given install_url
|
|
17249
|
+
or IWA bundle location.
|
|
17250
|
+
|
|
17251
|
+
TODO(crbug.com/337872319) Support IWA to meet the following specific
|
|
17252
|
+
requirement.
|
|
17253
|
+
IWA-specific install description: If the manifest_id is isolated-app://,
|
|
17254
|
+
install_url_or_bundle_url is required, and can be either an http(s) URL or
|
|
17255
|
+
file:// URL pointing to a signed web bundle (.swbn). The .swbn file's
|
|
17256
|
+
signing key must correspond to manifest_id. If Chrome is not in IWA dev
|
|
17257
|
+
mode, the installation will fail, regardless of the state of the allowlist.
|
|
17258
|
+
*/
|
|
17259
|
+
export type installParameters = {
|
|
17260
|
+
manifestId: string;
|
|
17261
|
+
/**
|
|
17262
|
+
* The location of the app or bundle overriding the one derived from the
|
|
17263
|
+
manifestId.
|
|
17264
|
+
*/
|
|
17265
|
+
installUrlOrBundleUrl?: string;
|
|
17266
|
+
}
|
|
17267
|
+
export type installReturnValue = {
|
|
17268
|
+
}
|
|
17269
|
+
/**
|
|
17270
|
+
* Uninstalls the given manifest_id and closes any opened app windows.
|
|
17271
|
+
*/
|
|
17272
|
+
export type uninstallParameters = {
|
|
17273
|
+
manifestId: string;
|
|
17274
|
+
}
|
|
17275
|
+
export type uninstallReturnValue = {
|
|
17276
|
+
}
|
|
17277
|
+
/**
|
|
17278
|
+
* Launches the installed web app, or an url in the same web app instead of the
|
|
17279
|
+
default start url if it is provided. Returns a page Target.TargetID which
|
|
17280
|
+
can be used to attach to via Target.attachToTarget or similar APIs.
|
|
17281
|
+
*/
|
|
17282
|
+
export type launchParameters = {
|
|
17283
|
+
manifestId: string;
|
|
17284
|
+
url?: string;
|
|
17285
|
+
}
|
|
17286
|
+
export type launchReturnValue = {
|
|
17287
|
+
/**
|
|
17288
|
+
* ID of the tab target created as a result.
|
|
17289
|
+
*/
|
|
17290
|
+
targetId: Target.TargetID;
|
|
17291
|
+
}
|
|
17292
|
+
/**
|
|
17293
|
+
* Opens one or more local files from an installed web app identified by its
|
|
17294
|
+
manifestId. The web app needs to have file handlers registered to process
|
|
17295
|
+
the files. The API returns one or more page Target.TargetIDs which can be
|
|
17296
|
+
used to attach to via Target.attachToTarget or similar APIs.
|
|
17297
|
+
If some files in the parameters cannot be handled by the web app, they will
|
|
17298
|
+
be ignored. If none of the files can be handled, this API returns an error.
|
|
17299
|
+
If no files are provided as the parameter, this API also returns an error.
|
|
17300
|
+
|
|
17301
|
+
According to the definition of the file handlers in the manifest file, one
|
|
17302
|
+
Target.TargetID may represent a page handling one or more files. The order
|
|
17303
|
+
of the returned Target.TargetIDs is not guaranteed.
|
|
17304
|
+
|
|
17305
|
+
TODO(crbug.com/339454034): Check the existences of the input files.
|
|
17306
|
+
*/
|
|
17307
|
+
export type launchFilesInAppParameters = {
|
|
17308
|
+
manifestId: string;
|
|
17309
|
+
files: string[];
|
|
17310
|
+
}
|
|
17311
|
+
export type launchFilesInAppReturnValue = {
|
|
17312
|
+
/**
|
|
17313
|
+
* IDs of the tab targets created as the result.
|
|
17314
|
+
*/
|
|
17315
|
+
targetIds: Target.TargetID[];
|
|
17316
|
+
}
|
|
17317
|
+
/**
|
|
17318
|
+
* Opens the current page in its web app identified by the manifest id, needs
|
|
17319
|
+
to be called on a page target. This function returns immediately without
|
|
17320
|
+
waiting for the app to finish loading.
|
|
17321
|
+
*/
|
|
17322
|
+
export type openCurrentPageInAppParameters = {
|
|
17323
|
+
manifestId: string;
|
|
17324
|
+
}
|
|
17325
|
+
export type openCurrentPageInAppReturnValue = {
|
|
17326
|
+
}
|
|
17327
|
+
/**
|
|
17328
|
+
* Changes user settings of the web app identified by its manifestId. If the
|
|
17329
|
+
app was not installed, this command returns an error. Unset parameters will
|
|
17330
|
+
be ignored; unrecognized values will cause an error.
|
|
17331
|
+
|
|
17332
|
+
Unlike the ones defined in the manifest files of the web apps, these
|
|
17333
|
+
settings are provided by the browser and controlled by the users, they
|
|
17334
|
+
impact the way the browser handling the web apps.
|
|
17335
|
+
|
|
17336
|
+
See the comment of each parameter.
|
|
17337
|
+
*/
|
|
17338
|
+
export type changeAppUserSettingsParameters = {
|
|
17339
|
+
manifestId: string;
|
|
17340
|
+
/**
|
|
17341
|
+
* If user allows the links clicked on by the user in the app's scope, or
|
|
17342
|
+
extended scope if the manifest has scope extensions and the flags
|
|
17343
|
+
`DesktopPWAsLinkCapturingWithScopeExtensions` and
|
|
17344
|
+
`WebAppEnableScopeExtensions` are enabled.
|
|
17345
|
+
|
|
17346
|
+
Note, the API does not support resetting the linkCapturing to the
|
|
17347
|
+
initial value, uninstalling and installing the web app again will reset
|
|
17348
|
+
it.
|
|
17349
|
+
|
|
17350
|
+
TODO(crbug.com/339453269): Setting this value on ChromeOS is not
|
|
17351
|
+
supported yet.
|
|
17352
|
+
*/
|
|
17353
|
+
linkCapturing?: boolean;
|
|
17354
|
+
displayMode?: DisplayMode;
|
|
17355
|
+
}
|
|
17356
|
+
export type changeAppUserSettingsReturnValue = {
|
|
17357
|
+
}
|
|
17358
|
+
}
|
|
17359
|
+
|
|
17360
|
+
/**
|
|
17361
|
+
* This domain allows configuring virtual Bluetooth devices to test
|
|
17362
|
+
the web-bluetooth API.
|
|
17363
|
+
*/
|
|
17364
|
+
export module BluetoothEmulation {
|
|
17365
|
+
/**
|
|
17366
|
+
* Indicates the various states of Central.
|
|
17367
|
+
*/
|
|
17368
|
+
export type CentralState = "absent"|"powered-off"|"powered-on";
|
|
17369
|
+
/**
|
|
17370
|
+
* Stores the manufacturer data
|
|
17371
|
+
*/
|
|
17372
|
+
export interface ManufacturerData {
|
|
17373
|
+
/**
|
|
17374
|
+
* Company identifier
|
|
17375
|
+
https://bitbucket.org/bluetooth-SIG/public/src/main/assigned_numbers/company_identifiers/company_identifiers.yaml
|
|
17376
|
+
https://usb.org/developers
|
|
17377
|
+
*/
|
|
17378
|
+
key: number;
|
|
17379
|
+
/**
|
|
17380
|
+
* Manufacturer-specific data
|
|
17381
|
+
*/
|
|
17382
|
+
data: binary;
|
|
17383
|
+
}
|
|
17384
|
+
/**
|
|
17385
|
+
* Stores the byte data of the advertisement packet sent by a Bluetooth device.
|
|
17386
|
+
*/
|
|
17387
|
+
export interface ScanRecord {
|
|
17388
|
+
name?: string;
|
|
17389
|
+
uuids?: string[];
|
|
17390
|
+
/**
|
|
17391
|
+
* Stores the external appearance description of the device.
|
|
17392
|
+
*/
|
|
17393
|
+
appearance?: number;
|
|
17394
|
+
/**
|
|
17395
|
+
* Stores the transmission power of a broadcasting device.
|
|
17396
|
+
*/
|
|
17397
|
+
txPower?: number;
|
|
17398
|
+
/**
|
|
17399
|
+
* Key is the company identifier and the value is an array of bytes of
|
|
17400
|
+
manufacturer specific data.
|
|
17401
|
+
*/
|
|
17402
|
+
manufacturerData?: ManufacturerData[];
|
|
17403
|
+
}
|
|
17404
|
+
/**
|
|
17405
|
+
* Stores the advertisement packet information that is sent by a Bluetooth device.
|
|
17406
|
+
*/
|
|
17407
|
+
export interface ScanEntry {
|
|
17408
|
+
deviceAddress: string;
|
|
17409
|
+
rssi: number;
|
|
17410
|
+
scanRecord: ScanRecord;
|
|
17411
|
+
}
|
|
17412
|
+
|
|
17413
|
+
|
|
17414
|
+
/**
|
|
17415
|
+
* Enable the BluetoothEmulation domain.
|
|
17416
|
+
*/
|
|
17417
|
+
export type enableParameters = {
|
|
17418
|
+
/**
|
|
17419
|
+
* State of the simulated central.
|
|
17420
|
+
*/
|
|
17421
|
+
state: CentralState;
|
|
17422
|
+
}
|
|
17423
|
+
export type enableReturnValue = {
|
|
17424
|
+
}
|
|
17425
|
+
/**
|
|
17426
|
+
* Disable the BluetoothEmulation domain.
|
|
17427
|
+
*/
|
|
17428
|
+
export type disableParameters = {
|
|
17429
|
+
}
|
|
17430
|
+
export type disableReturnValue = {
|
|
17431
|
+
}
|
|
17432
|
+
/**
|
|
17433
|
+
* Simulates a peripheral with |address|, |name| and |knownServiceUuids|
|
|
17434
|
+
that has already been connected to the system.
|
|
17435
|
+
*/
|
|
17436
|
+
export type simulatePreconnectedPeripheralParameters = {
|
|
17437
|
+
address: string;
|
|
17438
|
+
name: string;
|
|
17439
|
+
manufacturerData: ManufacturerData[];
|
|
17440
|
+
knownServiceUuids: string[];
|
|
17441
|
+
}
|
|
17442
|
+
export type simulatePreconnectedPeripheralReturnValue = {
|
|
17443
|
+
}
|
|
17444
|
+
/**
|
|
17445
|
+
* Simulates an advertisement packet described in |entry| being received by
|
|
17446
|
+
the central.
|
|
17447
|
+
*/
|
|
17448
|
+
export type simulateAdvertisementParameters = {
|
|
17449
|
+
entry: ScanEntry;
|
|
17450
|
+
}
|
|
17451
|
+
export type simulateAdvertisementReturnValue = {
|
|
17452
|
+
}
|
|
17453
|
+
}
|
|
17454
|
+
|
|
16630
17455
|
/**
|
|
16631
17456
|
* This domain is deprecated - use Runtime or Log instead.
|
|
16632
17457
|
*/
|
|
@@ -19265,6 +20090,7 @@ Error was thrown.
|
|
|
19265
20090
|
"Animation.animationCanceled": Animation.animationCanceledPayload;
|
|
19266
20091
|
"Animation.animationCreated": Animation.animationCreatedPayload;
|
|
19267
20092
|
"Animation.animationStarted": Animation.animationStartedPayload;
|
|
20093
|
+
"Animation.animationUpdated": Animation.animationUpdatedPayload;
|
|
19268
20094
|
"Audits.issueAdded": Audits.issueAddedPayload;
|
|
19269
20095
|
"Autofill.addressFormFilled": Autofill.addressFormFilledPayload;
|
|
19270
20096
|
"BackgroundService.recordingStateChanged": BackgroundService.recordingStateChangedPayload;
|
|
@@ -19328,7 +20154,9 @@ Error was thrown.
|
|
|
19328
20154
|
"Network.webTransportClosed": Network.webTransportClosedPayload;
|
|
19329
20155
|
"Network.requestWillBeSentExtraInfo": Network.requestWillBeSentExtraInfoPayload;
|
|
19330
20156
|
"Network.responseReceivedExtraInfo": Network.responseReceivedExtraInfoPayload;
|
|
20157
|
+
"Network.responseReceivedEarlyHints": Network.responseReceivedEarlyHintsPayload;
|
|
19331
20158
|
"Network.trustTokenOperationDone": Network.trustTokenOperationDonePayload;
|
|
20159
|
+
"Network.policyUpdated": Network.policyUpdatedPayload;
|
|
19332
20160
|
"Network.subresourceWebBundleMetadataReceived": Network.subresourceWebBundleMetadataReceivedPayload;
|
|
19333
20161
|
"Network.subresourceWebBundleMetadataError": Network.subresourceWebBundleMetadataErrorPayload;
|
|
19334
20162
|
"Network.subresourceWebBundleInnerResponseParsed": Network.subresourceWebBundleInnerResponseParsedPayload;
|
|
@@ -19475,6 +20303,11 @@ Error was thrown.
|
|
|
19475
20303
|
"Audits.enable": Audits.enableParameters;
|
|
19476
20304
|
"Audits.checkContrast": Audits.checkContrastParameters;
|
|
19477
20305
|
"Audits.checkFormsIssues": Audits.checkFormsIssuesParameters;
|
|
20306
|
+
"Extensions.loadUnpacked": Extensions.loadUnpackedParameters;
|
|
20307
|
+
"Extensions.getStorageItems": Extensions.getStorageItemsParameters;
|
|
20308
|
+
"Extensions.removeStorageItems": Extensions.removeStorageItemsParameters;
|
|
20309
|
+
"Extensions.clearStorageItems": Extensions.clearStorageItemsParameters;
|
|
20310
|
+
"Extensions.setStorageItems": Extensions.setStorageItemsParameters;
|
|
19478
20311
|
"Autofill.trigger": Autofill.triggerParameters;
|
|
19479
20312
|
"Autofill.setAddresses": Autofill.setAddressesParameters;
|
|
19480
20313
|
"Autofill.disable": Autofill.disableParameters;
|
|
@@ -19515,6 +20348,7 @@ Error was thrown.
|
|
|
19515
20348
|
"CSS.getPlatformFontsForNode": CSS.getPlatformFontsForNodeParameters;
|
|
19516
20349
|
"CSS.getStyleSheetText": CSS.getStyleSheetTextParameters;
|
|
19517
20350
|
"CSS.getLayersForNode": CSS.getLayersForNodeParameters;
|
|
20351
|
+
"CSS.getLocationForSelector": CSS.getLocationForSelectorParameters;
|
|
19518
20352
|
"CSS.trackComputedStyleUpdates": CSS.trackComputedStyleUpdatesParameters;
|
|
19519
20353
|
"CSS.takeComputedStyleUpdates": CSS.takeComputedStyleUpdatesParameters;
|
|
19520
20354
|
"CSS.setEffectivePropertyValueForNode": CSS.setEffectivePropertyValueForNodeParameters;
|
|
@@ -19571,6 +20405,7 @@ Error was thrown.
|
|
|
19571
20405
|
"DOM.querySelector": DOM.querySelectorParameters;
|
|
19572
20406
|
"DOM.querySelectorAll": DOM.querySelectorAllParameters;
|
|
19573
20407
|
"DOM.getTopLayerElements": DOM.getTopLayerElementsParameters;
|
|
20408
|
+
"DOM.getElementByRelation": DOM.getElementByRelationParameters;
|
|
19574
20409
|
"DOM.redo": DOM.redoParameters;
|
|
19575
20410
|
"DOM.removeAttribute": DOM.removeAttributeParameters;
|
|
19576
20411
|
"DOM.removeNode": DOM.removeNodeParameters;
|
|
@@ -19583,6 +20418,7 @@ Error was thrown.
|
|
|
19583
20418
|
"DOM.setNodeStackTracesEnabled": DOM.setNodeStackTracesEnabledParameters;
|
|
19584
20419
|
"DOM.getNodeStackTraces": DOM.getNodeStackTracesParameters;
|
|
19585
20420
|
"DOM.getFileInfo": DOM.getFileInfoParameters;
|
|
20421
|
+
"DOM.getDetachedDomNodes": DOM.getDetachedDomNodesParameters;
|
|
19586
20422
|
"DOM.setInspectedNode": DOM.setInspectedNodeParameters;
|
|
19587
20423
|
"DOM.setNodeName": DOM.setNodeNameParameters;
|
|
19588
20424
|
"DOM.setNodeValue": DOM.setNodeValueParameters;
|
|
@@ -19591,6 +20427,7 @@ Error was thrown.
|
|
|
19591
20427
|
"DOM.getFrameOwner": DOM.getFrameOwnerParameters;
|
|
19592
20428
|
"DOM.getContainerForNode": DOM.getContainerForNodeParameters;
|
|
19593
20429
|
"DOM.getQueryingDescendantsForContainer": DOM.getQueryingDescendantsForContainerParameters;
|
|
20430
|
+
"DOM.getAnchorElement": DOM.getAnchorElementParameters;
|
|
19594
20431
|
"DOMDebugger.getEventListeners": DOMDebugger.getEventListenersParameters;
|
|
19595
20432
|
"DOMDebugger.removeDOMBreakpoint": DOMDebugger.removeDOMBreakpointParameters;
|
|
19596
20433
|
"DOMDebugger.removeEventListenerBreakpoint": DOMDebugger.removeEventListenerBreakpointParameters;
|
|
@@ -19629,6 +20466,8 @@ Error was thrown.
|
|
|
19629
20466
|
"Emulation.setCPUThrottlingRate": Emulation.setCPUThrottlingRateParameters;
|
|
19630
20467
|
"Emulation.setDefaultBackgroundColorOverride": Emulation.setDefaultBackgroundColorOverrideParameters;
|
|
19631
20468
|
"Emulation.setDeviceMetricsOverride": Emulation.setDeviceMetricsOverrideParameters;
|
|
20469
|
+
"Emulation.setDevicePostureOverride": Emulation.setDevicePostureOverrideParameters;
|
|
20470
|
+
"Emulation.clearDevicePostureOverride": Emulation.clearDevicePostureOverrideParameters;
|
|
19632
20471
|
"Emulation.setScrollbarsHidden": Emulation.setScrollbarsHiddenParameters;
|
|
19633
20472
|
"Emulation.setDocumentCookieDisabled": Emulation.setDocumentCookieDisabledParameters;
|
|
19634
20473
|
"Emulation.setEmitTouchEventsForMouse": Emulation.setEmitTouchEventsForMouseParameters;
|
|
@@ -19638,6 +20477,8 @@ Error was thrown.
|
|
|
19638
20477
|
"Emulation.getOverriddenSensorInformation": Emulation.getOverriddenSensorInformationParameters;
|
|
19639
20478
|
"Emulation.setSensorOverrideEnabled": Emulation.setSensorOverrideEnabledParameters;
|
|
19640
20479
|
"Emulation.setSensorOverrideReadings": Emulation.setSensorOverrideReadingsParameters;
|
|
20480
|
+
"Emulation.setPressureSourceOverrideEnabled": Emulation.setPressureSourceOverrideEnabledParameters;
|
|
20481
|
+
"Emulation.setPressureStateOverride": Emulation.setPressureStateOverrideParameters;
|
|
19641
20482
|
"Emulation.setIdleOverride": Emulation.setIdleOverrideParameters;
|
|
19642
20483
|
"Emulation.clearIdleOverride": Emulation.clearIdleOverrideParameters;
|
|
19643
20484
|
"Emulation.setNavigatorOverrides": Emulation.setNavigatorOverridesParameters;
|
|
@@ -19658,6 +20499,7 @@ Error was thrown.
|
|
|
19658
20499
|
"IO.close": IO.closeParameters;
|
|
19659
20500
|
"IO.read": IO.readParameters;
|
|
19660
20501
|
"IO.resolveBlob": IO.resolveBlobParameters;
|
|
20502
|
+
"FileSystem.getDirectory": FileSystem.getDirectoryParameters;
|
|
19661
20503
|
"IndexedDB.clearObjectStore": IndexedDB.clearObjectStoreParameters;
|
|
19662
20504
|
"IndexedDB.deleteDatabase": IndexedDB.deleteDatabaseParameters;
|
|
19663
20505
|
"IndexedDB.deleteObjectStoreEntries": IndexedDB.deleteObjectStoreEntriesParameters;
|
|
@@ -19885,6 +20727,8 @@ Error was thrown.
|
|
|
19885
20727
|
"Storage.runBounceTrackingMitigations": Storage.runBounceTrackingMitigationsParameters;
|
|
19886
20728
|
"Storage.setAttributionReportingLocalTestingMode": Storage.setAttributionReportingLocalTestingModeParameters;
|
|
19887
20729
|
"Storage.setAttributionReportingTracking": Storage.setAttributionReportingTrackingParameters;
|
|
20730
|
+
"Storage.sendPendingAttributionReports": Storage.sendPendingAttributionReportsParameters;
|
|
20731
|
+
"Storage.getRelatedWebsiteSets": Storage.getRelatedWebsiteSetsParameters;
|
|
19888
20732
|
"SystemInfo.getInfo": SystemInfo.getInfoParameters;
|
|
19889
20733
|
"SystemInfo.getFeatureState": SystemInfo.getFeatureStateParameters;
|
|
19890
20734
|
"SystemInfo.getProcessInfo": SystemInfo.getProcessInfoParameters;
|
|
@@ -19952,6 +20796,17 @@ Error was thrown.
|
|
|
19952
20796
|
"FedCm.openUrl": FedCm.openUrlParameters;
|
|
19953
20797
|
"FedCm.dismissDialog": FedCm.dismissDialogParameters;
|
|
19954
20798
|
"FedCm.resetCooldown": FedCm.resetCooldownParameters;
|
|
20799
|
+
"PWA.getOsAppState": PWA.getOsAppStateParameters;
|
|
20800
|
+
"PWA.install": PWA.installParameters;
|
|
20801
|
+
"PWA.uninstall": PWA.uninstallParameters;
|
|
20802
|
+
"PWA.launch": PWA.launchParameters;
|
|
20803
|
+
"PWA.launchFilesInApp": PWA.launchFilesInAppParameters;
|
|
20804
|
+
"PWA.openCurrentPageInApp": PWA.openCurrentPageInAppParameters;
|
|
20805
|
+
"PWA.changeAppUserSettings": PWA.changeAppUserSettingsParameters;
|
|
20806
|
+
"BluetoothEmulation.enable": BluetoothEmulation.enableParameters;
|
|
20807
|
+
"BluetoothEmulation.disable": BluetoothEmulation.disableParameters;
|
|
20808
|
+
"BluetoothEmulation.simulatePreconnectedPeripheral": BluetoothEmulation.simulatePreconnectedPeripheralParameters;
|
|
20809
|
+
"BluetoothEmulation.simulateAdvertisement": BluetoothEmulation.simulateAdvertisementParameters;
|
|
19955
20810
|
"Console.clearMessages": Console.clearMessagesParameters;
|
|
19956
20811
|
"Console.disable": Console.disableParameters;
|
|
19957
20812
|
"Console.enable": Console.enableParameters;
|
|
@@ -20057,6 +20912,11 @@ Error was thrown.
|
|
|
20057
20912
|
"Audits.enable": Audits.enableReturnValue;
|
|
20058
20913
|
"Audits.checkContrast": Audits.checkContrastReturnValue;
|
|
20059
20914
|
"Audits.checkFormsIssues": Audits.checkFormsIssuesReturnValue;
|
|
20915
|
+
"Extensions.loadUnpacked": Extensions.loadUnpackedReturnValue;
|
|
20916
|
+
"Extensions.getStorageItems": Extensions.getStorageItemsReturnValue;
|
|
20917
|
+
"Extensions.removeStorageItems": Extensions.removeStorageItemsReturnValue;
|
|
20918
|
+
"Extensions.clearStorageItems": Extensions.clearStorageItemsReturnValue;
|
|
20919
|
+
"Extensions.setStorageItems": Extensions.setStorageItemsReturnValue;
|
|
20060
20920
|
"Autofill.trigger": Autofill.triggerReturnValue;
|
|
20061
20921
|
"Autofill.setAddresses": Autofill.setAddressesReturnValue;
|
|
20062
20922
|
"Autofill.disable": Autofill.disableReturnValue;
|
|
@@ -20097,6 +20957,7 @@ Error was thrown.
|
|
|
20097
20957
|
"CSS.getPlatformFontsForNode": CSS.getPlatformFontsForNodeReturnValue;
|
|
20098
20958
|
"CSS.getStyleSheetText": CSS.getStyleSheetTextReturnValue;
|
|
20099
20959
|
"CSS.getLayersForNode": CSS.getLayersForNodeReturnValue;
|
|
20960
|
+
"CSS.getLocationForSelector": CSS.getLocationForSelectorReturnValue;
|
|
20100
20961
|
"CSS.trackComputedStyleUpdates": CSS.trackComputedStyleUpdatesReturnValue;
|
|
20101
20962
|
"CSS.takeComputedStyleUpdates": CSS.takeComputedStyleUpdatesReturnValue;
|
|
20102
20963
|
"CSS.setEffectivePropertyValueForNode": CSS.setEffectivePropertyValueForNodeReturnValue;
|
|
@@ -20153,6 +21014,7 @@ Error was thrown.
|
|
|
20153
21014
|
"DOM.querySelector": DOM.querySelectorReturnValue;
|
|
20154
21015
|
"DOM.querySelectorAll": DOM.querySelectorAllReturnValue;
|
|
20155
21016
|
"DOM.getTopLayerElements": DOM.getTopLayerElementsReturnValue;
|
|
21017
|
+
"DOM.getElementByRelation": DOM.getElementByRelationReturnValue;
|
|
20156
21018
|
"DOM.redo": DOM.redoReturnValue;
|
|
20157
21019
|
"DOM.removeAttribute": DOM.removeAttributeReturnValue;
|
|
20158
21020
|
"DOM.removeNode": DOM.removeNodeReturnValue;
|
|
@@ -20165,6 +21027,7 @@ Error was thrown.
|
|
|
20165
21027
|
"DOM.setNodeStackTracesEnabled": DOM.setNodeStackTracesEnabledReturnValue;
|
|
20166
21028
|
"DOM.getNodeStackTraces": DOM.getNodeStackTracesReturnValue;
|
|
20167
21029
|
"DOM.getFileInfo": DOM.getFileInfoReturnValue;
|
|
21030
|
+
"DOM.getDetachedDomNodes": DOM.getDetachedDomNodesReturnValue;
|
|
20168
21031
|
"DOM.setInspectedNode": DOM.setInspectedNodeReturnValue;
|
|
20169
21032
|
"DOM.setNodeName": DOM.setNodeNameReturnValue;
|
|
20170
21033
|
"DOM.setNodeValue": DOM.setNodeValueReturnValue;
|
|
@@ -20173,6 +21036,7 @@ Error was thrown.
|
|
|
20173
21036
|
"DOM.getFrameOwner": DOM.getFrameOwnerReturnValue;
|
|
20174
21037
|
"DOM.getContainerForNode": DOM.getContainerForNodeReturnValue;
|
|
20175
21038
|
"DOM.getQueryingDescendantsForContainer": DOM.getQueryingDescendantsForContainerReturnValue;
|
|
21039
|
+
"DOM.getAnchorElement": DOM.getAnchorElementReturnValue;
|
|
20176
21040
|
"DOMDebugger.getEventListeners": DOMDebugger.getEventListenersReturnValue;
|
|
20177
21041
|
"DOMDebugger.removeDOMBreakpoint": DOMDebugger.removeDOMBreakpointReturnValue;
|
|
20178
21042
|
"DOMDebugger.removeEventListenerBreakpoint": DOMDebugger.removeEventListenerBreakpointReturnValue;
|
|
@@ -20211,6 +21075,8 @@ Error was thrown.
|
|
|
20211
21075
|
"Emulation.setCPUThrottlingRate": Emulation.setCPUThrottlingRateReturnValue;
|
|
20212
21076
|
"Emulation.setDefaultBackgroundColorOverride": Emulation.setDefaultBackgroundColorOverrideReturnValue;
|
|
20213
21077
|
"Emulation.setDeviceMetricsOverride": Emulation.setDeviceMetricsOverrideReturnValue;
|
|
21078
|
+
"Emulation.setDevicePostureOverride": Emulation.setDevicePostureOverrideReturnValue;
|
|
21079
|
+
"Emulation.clearDevicePostureOverride": Emulation.clearDevicePostureOverrideReturnValue;
|
|
20214
21080
|
"Emulation.setScrollbarsHidden": Emulation.setScrollbarsHiddenReturnValue;
|
|
20215
21081
|
"Emulation.setDocumentCookieDisabled": Emulation.setDocumentCookieDisabledReturnValue;
|
|
20216
21082
|
"Emulation.setEmitTouchEventsForMouse": Emulation.setEmitTouchEventsForMouseReturnValue;
|
|
@@ -20220,6 +21086,8 @@ Error was thrown.
|
|
|
20220
21086
|
"Emulation.getOverriddenSensorInformation": Emulation.getOverriddenSensorInformationReturnValue;
|
|
20221
21087
|
"Emulation.setSensorOverrideEnabled": Emulation.setSensorOverrideEnabledReturnValue;
|
|
20222
21088
|
"Emulation.setSensorOverrideReadings": Emulation.setSensorOverrideReadingsReturnValue;
|
|
21089
|
+
"Emulation.setPressureSourceOverrideEnabled": Emulation.setPressureSourceOverrideEnabledReturnValue;
|
|
21090
|
+
"Emulation.setPressureStateOverride": Emulation.setPressureStateOverrideReturnValue;
|
|
20223
21091
|
"Emulation.setIdleOverride": Emulation.setIdleOverrideReturnValue;
|
|
20224
21092
|
"Emulation.clearIdleOverride": Emulation.clearIdleOverrideReturnValue;
|
|
20225
21093
|
"Emulation.setNavigatorOverrides": Emulation.setNavigatorOverridesReturnValue;
|
|
@@ -20240,6 +21108,7 @@ Error was thrown.
|
|
|
20240
21108
|
"IO.close": IO.closeReturnValue;
|
|
20241
21109
|
"IO.read": IO.readReturnValue;
|
|
20242
21110
|
"IO.resolveBlob": IO.resolveBlobReturnValue;
|
|
21111
|
+
"FileSystem.getDirectory": FileSystem.getDirectoryReturnValue;
|
|
20243
21112
|
"IndexedDB.clearObjectStore": IndexedDB.clearObjectStoreReturnValue;
|
|
20244
21113
|
"IndexedDB.deleteDatabase": IndexedDB.deleteDatabaseReturnValue;
|
|
20245
21114
|
"IndexedDB.deleteObjectStoreEntries": IndexedDB.deleteObjectStoreEntriesReturnValue;
|
|
@@ -20467,6 +21336,8 @@ Error was thrown.
|
|
|
20467
21336
|
"Storage.runBounceTrackingMitigations": Storage.runBounceTrackingMitigationsReturnValue;
|
|
20468
21337
|
"Storage.setAttributionReportingLocalTestingMode": Storage.setAttributionReportingLocalTestingModeReturnValue;
|
|
20469
21338
|
"Storage.setAttributionReportingTracking": Storage.setAttributionReportingTrackingReturnValue;
|
|
21339
|
+
"Storage.sendPendingAttributionReports": Storage.sendPendingAttributionReportsReturnValue;
|
|
21340
|
+
"Storage.getRelatedWebsiteSets": Storage.getRelatedWebsiteSetsReturnValue;
|
|
20470
21341
|
"SystemInfo.getInfo": SystemInfo.getInfoReturnValue;
|
|
20471
21342
|
"SystemInfo.getFeatureState": SystemInfo.getFeatureStateReturnValue;
|
|
20472
21343
|
"SystemInfo.getProcessInfo": SystemInfo.getProcessInfoReturnValue;
|
|
@@ -20534,6 +21405,17 @@ Error was thrown.
|
|
|
20534
21405
|
"FedCm.openUrl": FedCm.openUrlReturnValue;
|
|
20535
21406
|
"FedCm.dismissDialog": FedCm.dismissDialogReturnValue;
|
|
20536
21407
|
"FedCm.resetCooldown": FedCm.resetCooldownReturnValue;
|
|
21408
|
+
"PWA.getOsAppState": PWA.getOsAppStateReturnValue;
|
|
21409
|
+
"PWA.install": PWA.installReturnValue;
|
|
21410
|
+
"PWA.uninstall": PWA.uninstallReturnValue;
|
|
21411
|
+
"PWA.launch": PWA.launchReturnValue;
|
|
21412
|
+
"PWA.launchFilesInApp": PWA.launchFilesInAppReturnValue;
|
|
21413
|
+
"PWA.openCurrentPageInApp": PWA.openCurrentPageInAppReturnValue;
|
|
21414
|
+
"PWA.changeAppUserSettings": PWA.changeAppUserSettingsReturnValue;
|
|
21415
|
+
"BluetoothEmulation.enable": BluetoothEmulation.enableReturnValue;
|
|
21416
|
+
"BluetoothEmulation.disable": BluetoothEmulation.disableReturnValue;
|
|
21417
|
+
"BluetoothEmulation.simulatePreconnectedPeripheral": BluetoothEmulation.simulatePreconnectedPeripheralReturnValue;
|
|
21418
|
+
"BluetoothEmulation.simulateAdvertisement": BluetoothEmulation.simulateAdvertisementReturnValue;
|
|
20537
21419
|
"Console.clearMessages": Console.clearMessagesReturnValue;
|
|
20538
21420
|
"Console.disable": Console.disableReturnValue;
|
|
20539
21421
|
"Console.enable": Console.enableReturnValue;
|