patchright-core 1.50.0 → 1.51.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/ThirdPartyNotices.txt +381 -55
- package/browsers.json +22 -10
- package/index.js +0 -1
- package/lib/androidServerImpl.js +4 -4
- package/lib/browserServerImpl.js +18 -9
- package/lib/cli/driver.js +6 -6
- package/lib/cli/program.js +9 -9
- package/lib/cli/programWithTestStub.js +2 -1
- package/lib/client/android.js +37 -58
- package/lib/client/artifact.js +4 -7
- package/lib/client/browser.js +10 -15
- package/lib/client/browserContext.js +77 -73
- package/lib/client/browserType.js +30 -64
- package/lib/client/channelOwner.js +23 -20
- package/lib/client/clientHelper.js +5 -7
- package/lib/client/clientStackTrace.js +65 -0
- package/lib/client/connection.js +46 -39
- package/lib/client/consoleMessage.js +4 -7
- package/lib/client/electron.js +10 -10
- package/lib/client/elementHandle.js +32 -33
- package/lib/client/errors.js +2 -2
- package/lib/client/eventEmitter.js +5 -8
- package/lib/client/fetch.js +60 -61
- package/lib/client/fileUtils.js +31 -0
- package/lib/client/frame.js +30 -29
- package/lib/client/harRouter.js +7 -9
- package/lib/client/jsHandle.js +3 -4
- package/lib/client/localUtils.js +24 -0
- package/lib/client/locator.js +37 -18
- package/lib/client/network.js +40 -40
- package/lib/client/page.js +59 -55
- package/lib/client/platform.js +71 -0
- package/lib/client/playwright.js +21 -1
- package/lib/client/selectors.js +8 -2
- package/lib/client/stream.js +2 -21
- package/lib/client/timeoutSettings.js +65 -0
- package/lib/client/tracing.js +10 -7
- package/lib/client/video.js +2 -2
- package/lib/client/waiter.js +5 -6
- package/lib/client/webSocket.js +106 -0
- package/lib/client/worker.js +12 -10
- package/lib/client/writableStream.js +2 -21
- package/lib/generated/consoleApiSource.js +1 -1
- package/lib/generated/injectedScriptSource.js +1 -1
- package/lib/generated/pollingRecorderSource.js +1 -1
- package/lib/inProcessFactory.js +6 -3
- package/lib/outofprocess.js +12 -8
- package/lib/protocol/validator.js +64 -13
- package/lib/protocol/validatorPrimitives.js +1 -2
- package/lib/remote/playwrightConnection.js +18 -10
- package/lib/remote/playwrightServer.js +20 -7
- package/lib/server/android/android.js +17 -14
- package/lib/server/android/backendAdb.js +14 -14
- package/lib/server/artifact.js +3 -3
- package/lib/server/bidi/bidiBrowser.js +2 -2
- package/lib/server/bidi/bidiChromium.js +4 -3
- package/lib/server/bidi/bidiConnection.js +1 -1
- package/lib/server/bidi/bidiExecutionContext.js +70 -40
- package/lib/server/bidi/bidiFirefox.js +4 -3
- package/lib/server/bidi/bidiInput.js +5 -8
- package/lib/server/bidi/bidiNetworkManager.js +3 -3
- package/lib/server/bidi/bidiOverCdp.js +2 -2
- package/lib/server/bidi/bidiPage.js +30 -46
- package/lib/server/bidi/third_party/firefoxPrefs.js +19 -3
- package/lib/server/browser.js +2 -2
- package/lib/server/browserContext.js +37 -40
- package/lib/server/browserType.js +18 -17
- package/lib/{utils/sequence.js → server/callLog.js} +18 -3
- package/lib/server/chromium/chromium.js +14 -14
- package/lib/server/chromium/chromiumSwitches.js +32 -1
- package/lib/server/chromium/crBrowser.js +15 -14
- package/lib/server/chromium/crConnection.js +2 -2
- package/lib/server/chromium/crCoverage.js +1 -1
- package/lib/server/chromium/crDevTools.js +1 -1
- package/lib/server/chromium/crDragDrop.js +1 -1
- package/lib/server/chromium/crExecutionContext.js +25 -17
- package/lib/server/chromium/crInput.js +2 -2
- package/lib/server/chromium/crNetworkManager.js +73 -26
- package/lib/server/chromium/crPage.js +22 -23
- package/lib/server/chromium/crPdf.js +1 -1
- package/lib/server/chromium/crProtocolHelper.js +3 -3
- package/lib/server/chromium/crServiceWorker.js +2 -2
- package/lib/server/chromium/videoRecorder.js +2 -2
- package/lib/server/clock.js +1 -1
- package/lib/server/codegen/javascript.js +1 -1
- package/lib/server/codegen/languages.js +2 -2
- package/lib/server/debugController.js +3 -3
- package/lib/server/deviceDescriptors.js +1 -1
- package/lib/server/deviceDescriptorsSource.json +131 -131
- package/lib/server/dispatchers/androidDispatcher.js +1 -1
- package/lib/server/dispatchers/artifactDispatcher.js +3 -3
- package/lib/server/dispatchers/browserContextDispatcher.js +19 -19
- package/lib/server/dispatchers/browserTypeDispatcher.js +1 -1
- package/lib/server/dispatchers/cdpSessionDispatcher.js +1 -1
- package/lib/server/dispatchers/dispatcher.js +27 -25
- package/lib/server/dispatchers/electronDispatcher.js +3 -3
- package/lib/server/dispatchers/elementHandlerDispatcher.js +7 -2
- package/lib/server/dispatchers/frameDispatcher.js +4 -4
- package/lib/server/dispatchers/jsHandleDispatcher.js +2 -2
- package/lib/server/dispatchers/jsonPipeDispatcher.js +2 -2
- package/lib/server/dispatchers/localUtilsDispatcher.js +25 -298
- package/lib/server/dispatchers/networkDispatchers.js +3 -3
- package/lib/server/dispatchers/pageDispatcher.js +11 -9
- package/lib/server/dispatchers/playwrightDispatcher.js +5 -5
- package/lib/server/dispatchers/streamDispatcher.js +4 -3
- package/lib/server/dispatchers/webSocketRouteDispatcher.js +8 -7
- package/lib/server/dispatchers/writableStreamDispatcher.js +5 -6
- package/lib/server/dom.js +18 -12
- package/lib/server/download.js +1 -1
- package/lib/server/electron/electron.js +17 -16
- package/lib/server/errors.js +1 -1
- package/lib/server/fetch.js +50 -45
- package/lib/server/fileUploadUtils.js +7 -4
- package/lib/server/firefox/ffBrowser.js +11 -3
- package/lib/server/firefox/ffConnection.js +1 -1
- package/lib/server/firefox/ffExecutionContext.js +25 -17
- package/lib/server/firefox/ffNetworkManager.js +2 -2
- package/lib/server/firefox/ffPage.js +15 -21
- package/lib/server/firefox/firefox.js +7 -9
- package/lib/server/frameSelectors.js +1 -1
- package/lib/server/frames.js +366 -209
- package/lib/server/har/harRecorder.js +4 -4
- package/lib/server/har/harTracer.js +7 -8
- package/lib/server/harBackend.js +157 -0
- package/lib/server/helper.js +2 -2
- package/lib/server/index.js +1 -8
- package/lib/server/input.js +1 -1
- package/lib/server/instrumentation.js +2 -2
- package/lib/server/isomorphic/utilityScriptSerializers.js +3 -0
- package/lib/server/javascript.js +46 -33
- package/lib/server/launchApp.js +2 -2
- package/lib/server/localUtils.js +203 -0
- package/lib/server/network.js +3 -3
- package/lib/server/page.js +41 -22
- package/lib/server/pipeTransport.js +1 -1
- package/lib/server/playwright.js +5 -5
- package/lib/server/progress.js +1 -1
- package/lib/server/protocolError.js +1 -1
- package/lib/server/recorder/contextRecorder.js +3 -3
- package/lib/server/recorder/recorderApp.js +18 -12
- package/lib/server/recorder/recorderCollection.js +4 -4
- package/lib/server/recorder/throttledFile.js +3 -4
- package/lib/server/recorder.js +7 -5
- package/lib/server/registry/browserFetcher.js +9 -7
- package/lib/server/registry/dependencies.js +15 -15
- package/lib/server/registry/index.js +38 -44
- package/lib/server/registry/oopDownloadBrowserMain.js +3 -3
- package/lib/server/screenshotter.js +1 -1
- package/lib/server/selectors.js +3 -3
- package/lib/server/socksClientCertificatesInterceptor.js +9 -9
- package/lib/server/socksInterceptor.js +8 -5
- package/lib/server/storageScript.js +160 -0
- package/lib/{common → server}/timeoutSettings.js +6 -5
- package/lib/server/trace/recorder/snapshotter.js +9 -8
- package/lib/server/trace/recorder/tracing.js +40 -31
- package/lib/server/trace/test/inMemorySnapshotter.js +4 -4
- package/lib/server/trace/viewer/traceViewer.js +13 -5
- package/lib/server/transport.js +2 -2
- package/lib/{utils → server/utils}/comparators.js +4 -4
- package/lib/{utils → server/utils}/crypto.js +4 -4
- package/lib/{utils → server/utils}/debug.js +4 -12
- package/lib/{utils → server/utils}/debugLogger.js +2 -2
- package/lib/{utils → server/utils}/env.js +4 -0
- package/lib/{utils → server/utils}/expectUtils.js +1 -1
- package/lib/{utils → server/utils}/fileUtils.js +4 -5
- package/lib/{utils/happy-eyeballs.js → server/utils/happyEyeballs.js} +22 -24
- package/lib/{utils → server/utils}/hostPlatform.js +1 -1
- package/lib/{utils → server/utils}/httpServer.js +8 -12
- package/lib/{utils → server/utils}/linuxUtils.js +3 -23
- package/lib/{utils → server/utils}/network.js +5 -5
- package/lib/server/utils/nodePlatform.js +140 -0
- package/lib/{protocol/transport.js → server/utils/pipeTransport.js} +2 -2
- package/lib/{utils → server/utils}/processLauncher.js +5 -5
- package/lib/{utils → server/utils}/profiler.js +5 -6
- package/lib/{common → server/utils}/socksProxy.js +10 -9
- package/lib/{utils → server/utils}/userAgent.js +2 -16
- package/lib/{utils → server/utils}/wsServer.js +3 -3
- package/lib/{utils → server/utils}/zipFile.js +1 -1
- package/lib/{utils → server/utils}/zones.js +9 -24
- package/lib/server/webkit/webkit.js +4 -4
- package/lib/server/webkit/wkBrowser.js +4 -4
- package/lib/server/webkit/wkConnection.js +1 -1
- package/lib/server/webkit/wkExecutionContext.js +25 -17
- package/lib/server/webkit/wkInput.js +2 -2
- package/lib/server/webkit/wkInterceptableRequest.js +2 -2
- package/lib/server/webkit/wkPage.js +41 -40
- package/lib/server/webkit/wkProvisionalPage.js +1 -1
- package/lib/server/webkit/wkWorkers.js +2 -2
- package/lib/utils/isomorphic/ariaSnapshot.js +2 -1
- package/lib/utils/isomorphic/assert.js +25 -0
- package/lib/utils/isomorphic/colors.js +65 -0
- package/lib/utils/isomorphic/cssParser.js +1 -1
- package/lib/utils/isomorphic/locatorGenerators.js +13 -1
- package/lib/utils/isomorphic/locatorParser.js +2 -2
- package/lib/utils/{manualPromise.js → isomorphic/manualPromise.js} +3 -5
- package/lib/utils/isomorphic/mimeType.js +11 -3
- package/lib/utils/{multimap.js → isomorphic/multimap.js} +1 -3
- package/lib/utils/{rtti.js → isomorphic/rtti.js} +2 -5
- package/lib/utils/isomorphic/stackTrace.js +169 -0
- package/lib/utils/isomorphic/stringUtils.js +1 -1
- package/lib/utils/{time.js → isomorphic/time.js} +1 -13
- package/lib/utils/{timeoutRunner.js → isomorphic/timeoutRunner.js} +4 -4
- package/lib/utils/isomorphic/traceUtils.js +23 -0
- package/lib/{utils/index.js → utils.js} +200 -121
- package/lib/utilsBundle.js +1 -25
- package/lib/utilsBundleImpl/index.js +119 -121
- package/lib/vite/htmlReport/index.html +20 -20
- package/lib/vite/recorder/assets/codeMirrorModule-B9YMkrwa.js +24 -0
- package/lib/vite/recorder/assets/index-ELPgmkwA.js +184 -0
- package/lib/vite/recorder/index.html +2 -2
- package/lib/vite/traceViewer/assets/codeMirrorModule-DpJ-EmBQ.js +24 -0
- package/lib/vite/traceViewer/assets/defaultSettingsView-DTenqiGw.js +259 -0
- package/lib/vite/traceViewer/assets/{xtermModule-BeNbaIVa.js → xtermModule-BoAIEibi.js} +7 -7
- package/lib/vite/traceViewer/defaultSettingsView.5fN5lw10.css +1 -0
- package/lib/vite/traceViewer/index.CUq7VgrV.js +2 -0
- package/lib/vite/traceViewer/index.html +4 -4
- package/lib/vite/traceViewer/sw.bundle.js +3 -3
- package/lib/vite/traceViewer/uiMode.CHJSAD7F.js +5 -0
- package/lib/vite/traceViewer/uiMode.html +4 -4
- package/lib/zipBundleImpl.js +4 -4
- package/package.json +7 -7
- package/types/protocol.d.ts +123 -99
- package/types/types.d.ts +110 -38
- package/lib/utils/stackTrace.js +0 -134
- package/lib/utils/traceUtils.js +0 -44
- package/lib/vite/recorder/assets/codeMirrorModule-3Qn3tPnZ.js +0 -24
- package/lib/vite/recorder/assets/index-Bek6JFv8.js +0 -184
- package/lib/vite/traceViewer/assets/codeMirrorModule-aLkSUGpW.js +0 -24
- package/lib/vite/traceViewer/assets/defaultSettingsView-CxUo6zd3.js +0 -243
- package/lib/vite/traceViewer/defaultSettingsView.DtIkrKWn.css +0 -1
- package/lib/vite/traceViewer/index.Bhu5cv5R.js +0 -2
- package/lib/vite/traceViewer/uiMode.BBy7FOVd.js +0 -5
- /package/lib/{utils → server/utils}/ascii.js +0 -0
- /package/lib/{utils → server/utils}/eventsHelper.js +0 -0
- /package/lib/{image_tools → server/utils/image_tools}/colorUtils.js +0 -0
- /package/lib/{image_tools → server/utils/image_tools}/compare.js +0 -0
- /package/lib/{image_tools → server/utils/image_tools}/imageChannel.js +0 -0
- /package/lib/{image_tools → server/utils/image_tools}/stats.js +0 -0
- /package/lib/{utils → server/utils}/spawnAsync.js +0 -0
- /package/lib/{utils → server/utils}/task.js +0 -0
- /package/lib/utils/{headers.js → isomorphic/headers.js} +0 -0
- /package/lib/utils/{semaphore.js → isomorphic/semaphore.js} +0 -0
- /package/lib/{common → utils/isomorphic}/types.js +0 -0
- /package/lib/vite/recorder/assets/{codeMirrorModule-ez37Vkbh.css → codeMirrorModule-C3UTv-Ge.css} +0 -0
- /package/lib/vite/recorder/assets/{index-CAQewHss.css → index-eHBmevrY.css} +0 -0
- /package/lib/vite/traceViewer/{codeMirrorModule.ez37Vkbh.css → codeMirrorModule.C3UTv-Ge.css} +0 -0
- /package/lib/vite/traceViewer/{index.CrbWWHbf.css → index.CFOW-Ezb.css} +0 -0
- /package/lib/vite/traceViewer/{uiMode.Be_ME-Go.css → uiMode.BatfzHMG.css} +0 -0
- /package/lib/vite/traceViewer/{xtermModule.DSXBckUd.css → xtermModule.Beg8tuEN.css} +0 -0
package/types/protocol.d.ts
CHANGED
|
@@ -952,7 +952,7 @@ Should be updated alongside RequestIdTokenStatus in
|
|
|
952
952
|
third_party/blink/public/mojom/devtools/inspector_issue.mojom to include
|
|
953
953
|
all cases except for success.
|
|
954
954
|
*/
|
|
955
|
-
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"|"ReplacedByActiveMode"|"InvalidFieldsSpecified"|"RelyingPartyOriginIsOpaque"|"TypeNotMatching";
|
|
955
|
+
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"|"ReplacedByActiveMode"|"InvalidFieldsSpecified"|"RelyingPartyOriginIsOpaque"|"TypeNotMatching"|"UiDismissedNoEmbargo";
|
|
956
956
|
export interface FederatedAuthUserInfoRequestIssueDetails {
|
|
957
957
|
federatedAuthUserInfoRequestIssueReason: FederatedAuthUserInfoRequestIssueReason;
|
|
958
958
|
}
|
|
@@ -983,7 +983,7 @@ features, encourage the use of new ones, and provide general guidance.
|
|
|
983
983
|
}
|
|
984
984
|
export type SelectElementAccessibilityIssueReason = "DisallowedSelectChild"|"DisallowedOptGroupChild"|"NonPhrasingContentOptionChild"|"InteractiveContentOptionChild"|"InteractiveContentLegendChild";
|
|
985
985
|
/**
|
|
986
|
-
* This
|
|
986
|
+
* This issue warns about errors in the select element content model.
|
|
987
987
|
*/
|
|
988
988
|
export interface SelectElementAccessibilityIssueDetails {
|
|
989
989
|
nodeId: DOM.BackendNodeId;
|
|
@@ -1187,6 +1187,19 @@ flag is set.
|
|
|
1187
1187
|
*/
|
|
1188
1188
|
id: string;
|
|
1189
1189
|
}
|
|
1190
|
+
/**
|
|
1191
|
+
* Uninstalls an unpacked extension (others not supported) from the profile.
|
|
1192
|
+
Available if the client is connected using the --remote-debugging-pipe flag
|
|
1193
|
+
and the --enable-unsafe-extension-debugging.
|
|
1194
|
+
*/
|
|
1195
|
+
export type uninstallParameters = {
|
|
1196
|
+
/**
|
|
1197
|
+
* Extension id.
|
|
1198
|
+
*/
|
|
1199
|
+
id: string;
|
|
1200
|
+
}
|
|
1201
|
+
export type uninstallReturnValue = {
|
|
1202
|
+
}
|
|
1190
1203
|
/**
|
|
1191
1204
|
* Gets data from extension storage in the given `storageArea`. If `keys` is
|
|
1192
1205
|
specified, these are used to filter the result.
|
|
@@ -2913,6 +2926,13 @@ incorrect results if the declaration contains a var() for example.
|
|
|
2913
2926
|
* Identifier of the frame where "via-inspector" stylesheet should be created.
|
|
2914
2927
|
*/
|
|
2915
2928
|
frameId: Page.FrameId;
|
|
2929
|
+
/**
|
|
2930
|
+
* If true, creates a new stylesheet for every call. If false,
|
|
2931
|
+
returns a stylesheet previously created by a call with force=false
|
|
2932
|
+
for the frame's document if it exists or creates a new stylesheet
|
|
2933
|
+
(default: false).
|
|
2934
|
+
*/
|
|
2935
|
+
force?: boolean;
|
|
2916
2936
|
}
|
|
2917
2937
|
export type createStyleSheetReturnValue = {
|
|
2918
2938
|
/**
|
|
@@ -5974,81 +5994,6 @@ The final text color opacity is computed based on the opacity of all overlapping
|
|
|
5974
5994
|
}
|
|
5975
5995
|
}
|
|
5976
5996
|
|
|
5977
|
-
export module Database {
|
|
5978
|
-
/**
|
|
5979
|
-
* Unique identifier of Database object.
|
|
5980
|
-
*/
|
|
5981
|
-
export type DatabaseId = string;
|
|
5982
|
-
/**
|
|
5983
|
-
* Database object.
|
|
5984
|
-
*/
|
|
5985
|
-
export interface Database {
|
|
5986
|
-
/**
|
|
5987
|
-
* Database ID.
|
|
5988
|
-
*/
|
|
5989
|
-
id: DatabaseId;
|
|
5990
|
-
/**
|
|
5991
|
-
* Database domain.
|
|
5992
|
-
*/
|
|
5993
|
-
domain: string;
|
|
5994
|
-
/**
|
|
5995
|
-
* Database name.
|
|
5996
|
-
*/
|
|
5997
|
-
name: string;
|
|
5998
|
-
/**
|
|
5999
|
-
* Database version.
|
|
6000
|
-
*/
|
|
6001
|
-
version: string;
|
|
6002
|
-
}
|
|
6003
|
-
/**
|
|
6004
|
-
* Database error.
|
|
6005
|
-
*/
|
|
6006
|
-
export interface Error {
|
|
6007
|
-
/**
|
|
6008
|
-
* Error message.
|
|
6009
|
-
*/
|
|
6010
|
-
message: string;
|
|
6011
|
-
/**
|
|
6012
|
-
* Error code.
|
|
6013
|
-
*/
|
|
6014
|
-
code: number;
|
|
6015
|
-
}
|
|
6016
|
-
|
|
6017
|
-
export type addDatabasePayload = {
|
|
6018
|
-
database: Database;
|
|
6019
|
-
}
|
|
6020
|
-
|
|
6021
|
-
/**
|
|
6022
|
-
* Disables database tracking, prevents database events from being sent to the client.
|
|
6023
|
-
*/
|
|
6024
|
-
export type disableParameters = {
|
|
6025
|
-
}
|
|
6026
|
-
export type disableReturnValue = {
|
|
6027
|
-
}
|
|
6028
|
-
/**
|
|
6029
|
-
* Enables database tracking, database events will now be delivered to the client.
|
|
6030
|
-
*/
|
|
6031
|
-
export type enableParameters = {
|
|
6032
|
-
}
|
|
6033
|
-
export type enableReturnValue = {
|
|
6034
|
-
}
|
|
6035
|
-
export type executeSQLParameters = {
|
|
6036
|
-
databaseId: DatabaseId;
|
|
6037
|
-
query: string;
|
|
6038
|
-
}
|
|
6039
|
-
export type executeSQLReturnValue = {
|
|
6040
|
-
columnNames?: string[];
|
|
6041
|
-
values?: any[];
|
|
6042
|
-
sqlError?: Error;
|
|
6043
|
-
}
|
|
6044
|
-
export type getDatabaseTableNamesParameters = {
|
|
6045
|
-
databaseId: DatabaseId;
|
|
6046
|
-
}
|
|
6047
|
-
export type getDatabaseTableNamesReturnValue = {
|
|
6048
|
-
tableNames: string[];
|
|
6049
|
-
}
|
|
6050
|
-
}
|
|
6051
|
-
|
|
6052
5997
|
export module DeviceOrientation {
|
|
6053
5998
|
|
|
6054
5999
|
|
|
@@ -9126,7 +9071,7 @@ This is a temporary ability and it will be removed in the future.
|
|
|
9126
9071
|
/**
|
|
9127
9072
|
* Types of reasons why a cookie should have been blocked by 3PCD but is exempted for the request.
|
|
9128
9073
|
*/
|
|
9129
|
-
export type CookieExemptionReason = "None"|"UserSetting"|"TPCDMetadata"|"TPCDDeprecationTrial"|"TopLevelTPCDDeprecationTrial"|"TPCDHeuristics"|"EnterprisePolicy"|"StorageAccess"|"TopLevelStorageAccess"|"Scheme";
|
|
9074
|
+
export type CookieExemptionReason = "None"|"UserSetting"|"TPCDMetadata"|"TPCDDeprecationTrial"|"TopLevelTPCDDeprecationTrial"|"TPCDHeuristics"|"EnterprisePolicy"|"StorageAccess"|"TopLevelStorageAccess"|"Scheme"|"SameSiteNoneCookiesInSandbox";
|
|
9130
9075
|
/**
|
|
9131
9076
|
* A cookie which was not stored from a response with the corresponding reason.
|
|
9132
9077
|
*/
|
|
@@ -11702,7 +11647,7 @@ as an ad.
|
|
|
11702
11647
|
* All Permissions Policy features. This enum should match the one defined
|
|
11703
11648
|
in third_party/blink/renderer/core/permissions_policy/permissions_policy_features.json5.
|
|
11704
11649
|
*/
|
|
11705
|
-
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"|"controlled-frame"|"cross-origin-isolated"|"deferred-fetch"|"deferred-fetch-minimal"|"digital-credentials-get"|"direct-sockets"|"direct-sockets-private"|"display-capture"|"document-domain"|"encrypted-media"|"execution-while-out-of-viewport"|"execution-while-not-rendered"|"fenced-unpartitioned-storage-read"|"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"|"popins"|"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-app-installation"|"web-printing"|"web-share"|"window-management"|"xr-spatial-tracking";
|
|
11650
|
+
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-high-entropy-values"|"ch-ua-platform"|"ch-ua-model"|"ch-ua-mobile"|"ch-ua-form-factors"|"ch-ua-full-version"|"ch-ua-full-version-list"|"ch-ua-platform-version"|"ch-ua-wow64"|"ch-viewport-height"|"ch-viewport-width"|"ch-width"|"clipboard-read"|"clipboard-write"|"compute-pressure"|"controlled-frame"|"cross-origin-isolated"|"deferred-fetch"|"deferred-fetch-minimal"|"digital-credentials-get"|"direct-sockets"|"direct-sockets-private"|"display-capture"|"document-domain"|"encrypted-media"|"execution-while-out-of-viewport"|"execution-while-not-rendered"|"fenced-unpartitioned-storage-read"|"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"|"popins"|"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-app-installation"|"web-printing"|"web-share"|"window-management"|"xr-spatial-tracking";
|
|
11706
11651
|
/**
|
|
11707
11652
|
* Reason for a permissions policy feature to be disabled.
|
|
11708
11653
|
*/
|
|
@@ -12431,6 +12376,33 @@ subtree is actually detached.
|
|
|
12431
12376
|
frame: Frame;
|
|
12432
12377
|
}
|
|
12433
12378
|
export type frameResizedPayload = void;
|
|
12379
|
+
/**
|
|
12380
|
+
* Fired when a navigation starts. This event is fired for both
|
|
12381
|
+
renderer-initiated and browser-initiated navigations. For renderer-initiated
|
|
12382
|
+
navigations, the event is fired after `frameRequestedNavigation`.
|
|
12383
|
+
Navigation may still be cancelled after the event is issued. Multiple events
|
|
12384
|
+
can be fired for a single navigation, for example, when a same-document
|
|
12385
|
+
navigation becomes a cross-document navigation (such as in the case of a
|
|
12386
|
+
frameset).
|
|
12387
|
+
*/
|
|
12388
|
+
export type frameStartedNavigatingPayload = {
|
|
12389
|
+
/**
|
|
12390
|
+
* ID of the frame that is being navigated.
|
|
12391
|
+
*/
|
|
12392
|
+
frameId: FrameId;
|
|
12393
|
+
/**
|
|
12394
|
+
* The URL the navigation started with. The final URL can be different.
|
|
12395
|
+
*/
|
|
12396
|
+
url: string;
|
|
12397
|
+
/**
|
|
12398
|
+
* Loader identifier. Even though it is present in case of same-document
|
|
12399
|
+
navigation, the previously committed loaderId would not change unless
|
|
12400
|
+
the navigation changes from a same-document to a cross-document
|
|
12401
|
+
navigation.
|
|
12402
|
+
*/
|
|
12403
|
+
loaderId: Network.LoaderId;
|
|
12404
|
+
navigationType: "reload"|"reloadBypassingCache"|"restore"|"restoreWithPost"|"historySameDocument"|"historyDifferentDocument"|"sameDocument"|"differentDocument";
|
|
12405
|
+
}
|
|
12434
12406
|
/**
|
|
12435
12407
|
* Fired when a renderer-initiated navigation is requested.
|
|
12436
12408
|
Navigation may still be cancelled after the event is issued.
|
|
@@ -14281,7 +14253,7 @@ For cached script it is the last time the cache entry was validated.
|
|
|
14281
14253
|
/**
|
|
14282
14254
|
* Enum of possible storage types.
|
|
14283
14255
|
*/
|
|
14284
|
-
export type StorageType = "
|
|
14256
|
+
export type StorageType = "cookies"|"file_systems"|"indexeddb"|"local_storage"|"shader_cache"|"websql"|"service_workers"|"cache_storage"|"interest_groups"|"shared_storage"|"storage_buckets"|"all"|"other";
|
|
14285
14257
|
/**
|
|
14286
14258
|
* Usage for a storage type.
|
|
14287
14259
|
*/
|
|
@@ -15193,6 +15165,28 @@ session. The effective Related Website Sets will not change during a browser ses
|
|
|
15193
15165
|
export type getRelatedWebsiteSetsReturnValue = {
|
|
15194
15166
|
sets: RelatedWebsiteSet[];
|
|
15195
15167
|
}
|
|
15168
|
+
/**
|
|
15169
|
+
* Returns the list of URLs from a page and its embedded resources that match
|
|
15170
|
+
existing grace period URL pattern rules.
|
|
15171
|
+
https://developers.google.com/privacy-sandbox/cookies/temporary-exceptions/grace-period
|
|
15172
|
+
*/
|
|
15173
|
+
export type getAffectedUrlsForThirdPartyCookieMetadataParameters = {
|
|
15174
|
+
/**
|
|
15175
|
+
* The URL of the page currently being visited.
|
|
15176
|
+
*/
|
|
15177
|
+
firstPartyUrl: string;
|
|
15178
|
+
/**
|
|
15179
|
+
* The list of embedded resource URLs from the page.
|
|
15180
|
+
*/
|
|
15181
|
+
thirdPartyUrls: string[];
|
|
15182
|
+
}
|
|
15183
|
+
export type getAffectedUrlsForThirdPartyCookieMetadataReturnValue = {
|
|
15184
|
+
/**
|
|
15185
|
+
* Array of matching URLs. If there is a primary pattern match for the first-
|
|
15186
|
+
party URL, only the first-party URL is returned in the array.
|
|
15187
|
+
*/
|
|
15188
|
+
matchedUrls: string[];
|
|
15189
|
+
}
|
|
15196
15190
|
}
|
|
15197
15191
|
|
|
15198
15192
|
/**
|
|
@@ -15485,6 +15479,10 @@ If filter is not specified, the one assumed is
|
|
|
15485
15479
|
host: string;
|
|
15486
15480
|
port: number;
|
|
15487
15481
|
}
|
|
15482
|
+
/**
|
|
15483
|
+
* The state of the target window.
|
|
15484
|
+
*/
|
|
15485
|
+
export type WindowState = "normal"|"minimized"|"maximized"|"fullscreen";
|
|
15488
15486
|
|
|
15489
15487
|
/**
|
|
15490
15488
|
* Issued when attached to target because of auto-attach or `attachToTarget` command.
|
|
@@ -15677,37 +15675,42 @@ Parts of the URL other than those constituting origin are ignored.
|
|
|
15677
15675
|
*/
|
|
15678
15676
|
url: string;
|
|
15679
15677
|
/**
|
|
15680
|
-
* Frame left origin in DIP (headless
|
|
15678
|
+
* Frame left origin in DIP (requires newWindow to be true or headless shell).
|
|
15681
15679
|
*/
|
|
15682
15680
|
left?: number;
|
|
15683
15681
|
/**
|
|
15684
|
-
* Frame top origin in DIP (headless
|
|
15682
|
+
* Frame top origin in DIP (requires newWindow to be true or headless shell).
|
|
15685
15683
|
*/
|
|
15686
15684
|
top?: number;
|
|
15687
15685
|
/**
|
|
15688
|
-
* Frame width in DIP (headless
|
|
15686
|
+
* Frame width in DIP (requires newWindow to be true or headless shell).
|
|
15689
15687
|
*/
|
|
15690
15688
|
width?: number;
|
|
15691
15689
|
/**
|
|
15692
|
-
* Frame height in DIP (headless
|
|
15690
|
+
* Frame height in DIP (requires newWindow to be true or headless shell).
|
|
15693
15691
|
*/
|
|
15694
15692
|
height?: number;
|
|
15693
|
+
/**
|
|
15694
|
+
* Frame window state (requires newWindow to be true or headless shell).
|
|
15695
|
+
Default is normal.
|
|
15696
|
+
*/
|
|
15697
|
+
windowState?: WindowState;
|
|
15695
15698
|
/**
|
|
15696
15699
|
* The browser context to create the page in.
|
|
15697
15700
|
*/
|
|
15698
15701
|
browserContextId?: Browser.BrowserContextID;
|
|
15699
15702
|
/**
|
|
15700
|
-
* Whether BeginFrames for this target will be controlled via DevTools (headless
|
|
15703
|
+
* Whether BeginFrames for this target will be controlled via DevTools (headless shell only,
|
|
15701
15704
|
not supported on MacOS yet, false by default).
|
|
15702
15705
|
*/
|
|
15703
15706
|
enableBeginFrameControl?: boolean;
|
|
15704
15707
|
/**
|
|
15705
|
-
* Whether to create a new Window or Tab (
|
|
15708
|
+
* Whether to create a new Window or Tab (false by default, not supported by headless shell).
|
|
15706
15709
|
*/
|
|
15707
15710
|
newWindow?: boolean;
|
|
15708
15711
|
/**
|
|
15709
|
-
* Whether to create the target in background or foreground (
|
|
15710
|
-
|
|
15712
|
+
* Whether to create the target in background or foreground (false by default, not supported
|
|
15713
|
+
by headless shell).
|
|
15711
15714
|
*/
|
|
15712
15715
|
background?: boolean;
|
|
15713
15716
|
/**
|
|
@@ -18012,9 +18015,20 @@ variables as its properties.
|
|
|
18012
18015
|
*/
|
|
18013
18016
|
externalURL?: string;
|
|
18014
18017
|
}
|
|
18018
|
+
export interface ResolvedBreakpoint {
|
|
18019
|
+
/**
|
|
18020
|
+
* Breakpoint unique identifier.
|
|
18021
|
+
*/
|
|
18022
|
+
breakpointId: BreakpointId;
|
|
18023
|
+
/**
|
|
18024
|
+
* Actual breakpoint location.
|
|
18025
|
+
*/
|
|
18026
|
+
location: Location;
|
|
18027
|
+
}
|
|
18015
18028
|
|
|
18016
18029
|
/**
|
|
18017
18030
|
* Fired when breakpoint is resolved to an actual script and location.
|
|
18031
|
+
Deprecated in favor of `resolvedBreakpoints` in the `scriptParsed` event.
|
|
18018
18032
|
*/
|
|
18019
18033
|
export type breakpointResolvedPayload = {
|
|
18020
18034
|
/**
|
|
@@ -18225,6 +18239,12 @@ scripts upon enabling debugger.
|
|
|
18225
18239
|
* The name the embedder supplied for this script.
|
|
18226
18240
|
*/
|
|
18227
18241
|
embedderName?: string;
|
|
18242
|
+
/**
|
|
18243
|
+
* The list of set breakpoints in this script if calls to `setBreakpointByUrl`
|
|
18244
|
+
matches this script's URL or hash. Clients that use this list can ignore the
|
|
18245
|
+
`breakpointResolved` event. They are equivalent.
|
|
18246
|
+
*/
|
|
18247
|
+
resolvedBreakpoints?: ResolvedBreakpoint[];
|
|
18228
18248
|
}
|
|
18229
18249
|
|
|
18230
18250
|
/**
|
|
@@ -20150,13 +20170,21 @@ It is the total usage of the corresponding isolate not scoped to a particular Ru
|
|
|
20150
20170
|
}
|
|
20151
20171
|
export type getHeapUsageReturnValue = {
|
|
20152
20172
|
/**
|
|
20153
|
-
* Used heap size in bytes.
|
|
20173
|
+
* Used JavaScript heap size in bytes.
|
|
20154
20174
|
*/
|
|
20155
20175
|
usedSize: number;
|
|
20156
20176
|
/**
|
|
20157
|
-
* Allocated heap size in bytes.
|
|
20177
|
+
* Allocated JavaScript heap size in bytes.
|
|
20158
20178
|
*/
|
|
20159
20179
|
totalSize: number;
|
|
20180
|
+
/**
|
|
20181
|
+
* Used size in bytes in the embedder's garbage-collected heap.
|
|
20182
|
+
*/
|
|
20183
|
+
embedderHeapUsedSize: number;
|
|
20184
|
+
/**
|
|
20185
|
+
* Size in bytes of backing storage for array buffers and external strings.
|
|
20186
|
+
*/
|
|
20187
|
+
backingStorageSize: number;
|
|
20160
20188
|
}
|
|
20161
20189
|
/**
|
|
20162
20190
|
* Returns properties of a given object. Object group of the result is inherited from the target
|
|
@@ -20472,7 +20500,6 @@ Error was thrown.
|
|
|
20472
20500
|
"DOMStorage.domStorageItemRemoved": DOMStorage.domStorageItemRemovedPayload;
|
|
20473
20501
|
"DOMStorage.domStorageItemUpdated": DOMStorage.domStorageItemUpdatedPayload;
|
|
20474
20502
|
"DOMStorage.domStorageItemsCleared": DOMStorage.domStorageItemsClearedPayload;
|
|
20475
|
-
"Database.addDatabase": Database.addDatabasePayload;
|
|
20476
20503
|
"Emulation.virtualTimeBudgetExpired": Emulation.virtualTimeBudgetExpiredPayload;
|
|
20477
20504
|
"Input.dragIntercepted": Input.dragInterceptedPayload;
|
|
20478
20505
|
"Inspector.detached": Inspector.detachedPayload;
|
|
@@ -20526,6 +20553,7 @@ Error was thrown.
|
|
|
20526
20553
|
"Page.frameNavigated": Page.frameNavigatedPayload;
|
|
20527
20554
|
"Page.documentOpened": Page.documentOpenedPayload;
|
|
20528
20555
|
"Page.frameResized": Page.frameResizedPayload;
|
|
20556
|
+
"Page.frameStartedNavigating": Page.frameStartedNavigatingPayload;
|
|
20529
20557
|
"Page.frameRequestedNavigation": Page.frameRequestedNavigationPayload;
|
|
20530
20558
|
"Page.frameScheduledNavigation": Page.frameScheduledNavigationPayload;
|
|
20531
20559
|
"Page.frameStartedLoading": Page.frameStartedLoadingPayload;
|
|
@@ -20656,6 +20684,7 @@ Error was thrown.
|
|
|
20656
20684
|
"Audits.checkContrast": Audits.checkContrastParameters;
|
|
20657
20685
|
"Audits.checkFormsIssues": Audits.checkFormsIssuesParameters;
|
|
20658
20686
|
"Extensions.loadUnpacked": Extensions.loadUnpackedParameters;
|
|
20687
|
+
"Extensions.uninstall": Extensions.uninstallParameters;
|
|
20659
20688
|
"Extensions.getStorageItems": Extensions.getStorageItemsParameters;
|
|
20660
20689
|
"Extensions.removeStorageItems": Extensions.removeStorageItemsParameters;
|
|
20661
20690
|
"Extensions.clearStorageItems": Extensions.clearStorageItemsParameters;
|
|
@@ -20808,10 +20837,6 @@ Error was thrown.
|
|
|
20808
20837
|
"DOMStorage.getDOMStorageItems": DOMStorage.getDOMStorageItemsParameters;
|
|
20809
20838
|
"DOMStorage.removeDOMStorageItem": DOMStorage.removeDOMStorageItemParameters;
|
|
20810
20839
|
"DOMStorage.setDOMStorageItem": DOMStorage.setDOMStorageItemParameters;
|
|
20811
|
-
"Database.disable": Database.disableParameters;
|
|
20812
|
-
"Database.enable": Database.enableParameters;
|
|
20813
|
-
"Database.executeSQL": Database.executeSQLParameters;
|
|
20814
|
-
"Database.getDatabaseTableNames": Database.getDatabaseTableNamesParameters;
|
|
20815
20840
|
"DeviceOrientation.clearDeviceOrientationOverride": DeviceOrientation.clearDeviceOrientationOverrideParameters;
|
|
20816
20841
|
"DeviceOrientation.setDeviceOrientationOverride": DeviceOrientation.setDeviceOrientationOverrideParameters;
|
|
20817
20842
|
"Emulation.canEmulate": Emulation.canEmulateParameters;
|
|
@@ -21088,6 +21113,7 @@ Error was thrown.
|
|
|
21088
21113
|
"Storage.setAttributionReportingTracking": Storage.setAttributionReportingTrackingParameters;
|
|
21089
21114
|
"Storage.sendPendingAttributionReports": Storage.sendPendingAttributionReportsParameters;
|
|
21090
21115
|
"Storage.getRelatedWebsiteSets": Storage.getRelatedWebsiteSetsParameters;
|
|
21116
|
+
"Storage.getAffectedUrlsForThirdPartyCookieMetadata": Storage.getAffectedUrlsForThirdPartyCookieMetadataParameters;
|
|
21091
21117
|
"SystemInfo.getInfo": SystemInfo.getInfoParameters;
|
|
21092
21118
|
"SystemInfo.getFeatureState": SystemInfo.getFeatureStateParameters;
|
|
21093
21119
|
"SystemInfo.getProcessInfo": SystemInfo.getProcessInfoParameters;
|
|
@@ -21273,6 +21299,7 @@ Error was thrown.
|
|
|
21273
21299
|
"Audits.checkContrast": Audits.checkContrastReturnValue;
|
|
21274
21300
|
"Audits.checkFormsIssues": Audits.checkFormsIssuesReturnValue;
|
|
21275
21301
|
"Extensions.loadUnpacked": Extensions.loadUnpackedReturnValue;
|
|
21302
|
+
"Extensions.uninstall": Extensions.uninstallReturnValue;
|
|
21276
21303
|
"Extensions.getStorageItems": Extensions.getStorageItemsReturnValue;
|
|
21277
21304
|
"Extensions.removeStorageItems": Extensions.removeStorageItemsReturnValue;
|
|
21278
21305
|
"Extensions.clearStorageItems": Extensions.clearStorageItemsReturnValue;
|
|
@@ -21425,10 +21452,6 @@ Error was thrown.
|
|
|
21425
21452
|
"DOMStorage.getDOMStorageItems": DOMStorage.getDOMStorageItemsReturnValue;
|
|
21426
21453
|
"DOMStorage.removeDOMStorageItem": DOMStorage.removeDOMStorageItemReturnValue;
|
|
21427
21454
|
"DOMStorage.setDOMStorageItem": DOMStorage.setDOMStorageItemReturnValue;
|
|
21428
|
-
"Database.disable": Database.disableReturnValue;
|
|
21429
|
-
"Database.enable": Database.enableReturnValue;
|
|
21430
|
-
"Database.executeSQL": Database.executeSQLReturnValue;
|
|
21431
|
-
"Database.getDatabaseTableNames": Database.getDatabaseTableNamesReturnValue;
|
|
21432
21455
|
"DeviceOrientation.clearDeviceOrientationOverride": DeviceOrientation.clearDeviceOrientationOverrideReturnValue;
|
|
21433
21456
|
"DeviceOrientation.setDeviceOrientationOverride": DeviceOrientation.setDeviceOrientationOverrideReturnValue;
|
|
21434
21457
|
"Emulation.canEmulate": Emulation.canEmulateReturnValue;
|
|
@@ -21705,6 +21728,7 @@ Error was thrown.
|
|
|
21705
21728
|
"Storage.setAttributionReportingTracking": Storage.setAttributionReportingTrackingReturnValue;
|
|
21706
21729
|
"Storage.sendPendingAttributionReports": Storage.sendPendingAttributionReportsReturnValue;
|
|
21707
21730
|
"Storage.getRelatedWebsiteSets": Storage.getRelatedWebsiteSetsReturnValue;
|
|
21731
|
+
"Storage.getAffectedUrlsForThirdPartyCookieMetadata": Storage.getAffectedUrlsForThirdPartyCookieMetadataReturnValue;
|
|
21708
21732
|
"SystemInfo.getInfo": SystemInfo.getInfoReturnValue;
|
|
21709
21733
|
"SystemInfo.getFeatureState": SystemInfo.getFeatureStateReturnValue;
|
|
21710
21734
|
"SystemInfo.getProcessInfo": SystemInfo.getProcessInfoReturnValue;
|