devtools-protocol 0.0.1415363 → 0.0.1419081
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/json/browser_protocol.json +58 -1
- package/package.json +1 -1
- package/pdl/browser_protocol.pdl +27 -0
- package/types/protocol.d.ts +36 -2
@@ -1821,7 +1821,8 @@
|
|
1821
1821
|
"InvalidFieldsSpecified",
|
1822
1822
|
"RelyingPartyOriginIsOpaque",
|
1823
1823
|
"TypeNotMatching",
|
1824
|
-
"UiDismissedNoEmbargo"
|
1824
|
+
"UiDismissedNoEmbargo",
|
1825
|
+
"CorsError"
|
1825
1826
|
]
|
1826
1827
|
},
|
1827
1828
|
{
|
@@ -1886,6 +1887,30 @@
|
|
1886
1887
|
}
|
1887
1888
|
]
|
1888
1889
|
},
|
1890
|
+
{
|
1891
|
+
"id": "PartitioningBlobURLInfo",
|
1892
|
+
"type": "string",
|
1893
|
+
"enum": [
|
1894
|
+
"BlockedCrossPartitionFetching",
|
1895
|
+
"EnforceNoopenerForNavigation"
|
1896
|
+
]
|
1897
|
+
},
|
1898
|
+
{
|
1899
|
+
"id": "PartitioningBlobURLIssueDetails",
|
1900
|
+
"type": "object",
|
1901
|
+
"properties": [
|
1902
|
+
{
|
1903
|
+
"name": "url",
|
1904
|
+
"description": "The BlobURL that failed to load.",
|
1905
|
+
"type": "string"
|
1906
|
+
},
|
1907
|
+
{
|
1908
|
+
"name": "partitioningBlobURLInfo",
|
1909
|
+
"description": "Additional information about the Partitioning Blob URL issue.",
|
1910
|
+
"$ref": "PartitioningBlobURLInfo"
|
1911
|
+
}
|
1912
|
+
]
|
1913
|
+
},
|
1889
1914
|
{
|
1890
1915
|
"id": "SelectElementAccessibilityIssueReason",
|
1891
1916
|
"type": "string",
|
@@ -1995,6 +2020,7 @@
|
|
1995
2020
|
"CorsIssue",
|
1996
2021
|
"AttributionReportingIssue",
|
1997
2022
|
"QuirksModeIssue",
|
2023
|
+
"PartitioningBlobURLIssue",
|
1998
2024
|
"NavigatorUserAgentIssue",
|
1999
2025
|
"GenericIssue",
|
2000
2026
|
"DeprecationIssue",
|
@@ -2064,6 +2090,11 @@
|
|
2064
2090
|
"optional": true,
|
2065
2091
|
"$ref": "QuirksModeIssueDetails"
|
2066
2092
|
},
|
2093
|
+
{
|
2094
|
+
"name": "partitioningBlobURLIssueDetails",
|
2095
|
+
"optional": true,
|
2096
|
+
"$ref": "PartitioningBlobURLIssueDetails"
|
2097
|
+
},
|
2067
2098
|
{
|
2068
2099
|
"name": "navigatorUserAgentIssueDetails",
|
2069
2100
|
"deprecated": true,
|
@@ -17635,6 +17666,19 @@
|
|
17635
17666
|
}
|
17636
17667
|
]
|
17637
17668
|
},
|
17669
|
+
{
|
17670
|
+
"id": "SecurityOriginDetails",
|
17671
|
+
"description": "Additional information about the frame document's security origin.",
|
17672
|
+
"experimental": true,
|
17673
|
+
"type": "object",
|
17674
|
+
"properties": [
|
17675
|
+
{
|
17676
|
+
"name": "isLocalhost",
|
17677
|
+
"description": "Indicates whether the frame document's security origin is one\nof the local hostnames (e.g. \"localhost\") or IP addresses (IPv4\n127.0.0.0/8 or IPv6 ::1).",
|
17678
|
+
"type": "boolean"
|
17679
|
+
}
|
17680
|
+
]
|
17681
|
+
},
|
17638
17682
|
{
|
17639
17683
|
"id": "Frame",
|
17640
17684
|
"description": "Information about the Frame on the page.",
|
@@ -17685,6 +17729,13 @@
|
|
17685
17729
|
"description": "Frame document's security origin.",
|
17686
17730
|
"type": "string"
|
17687
17731
|
},
|
17732
|
+
{
|
17733
|
+
"name": "securityOriginDetails",
|
17734
|
+
"description": "Additional details about the frame document's security origin.",
|
17735
|
+
"experimental": true,
|
17736
|
+
"optional": true,
|
17737
|
+
"$ref": "SecurityOriginDetails"
|
17738
|
+
},
|
17688
17739
|
{
|
17689
17740
|
"name": "mimeType",
|
17690
17741
|
"description": "Frame document's mimeType as determined by the browser.",
|
@@ -23947,6 +23998,12 @@
|
|
23947
23998
|
"description": "Binding name, 'cdp' if not specified.",
|
23948
23999
|
"optional": true,
|
23949
24000
|
"type": "string"
|
24001
|
+
},
|
24002
|
+
{
|
24003
|
+
"name": "inheritPermissions",
|
24004
|
+
"description": "If true, inherits the current root session's permissions (default: false).",
|
24005
|
+
"optional": true,
|
24006
|
+
"type": "boolean"
|
23950
24007
|
}
|
23951
24008
|
]
|
23952
24009
|
},
|
package/package.json
CHANGED
package/pdl/browser_protocol.pdl
CHANGED
@@ -950,6 +950,7 @@ experimental domain Audits
|
|
950
950
|
RelyingPartyOriginIsOpaque
|
951
951
|
TypeNotMatching
|
952
952
|
UiDismissedNoEmbargo
|
953
|
+
CorsError
|
953
954
|
|
954
955
|
type FederatedAuthUserInfoRequestIssueDetails extends object
|
955
956
|
properties
|
@@ -985,6 +986,18 @@ experimental domain Audits
|
|
985
986
|
string failureMessage
|
986
987
|
optional Network.RequestId requestId
|
987
988
|
|
989
|
+
type PartitioningBlobURLInfo extends string
|
990
|
+
enum
|
991
|
+
BlockedCrossPartitionFetching
|
992
|
+
EnforceNoopenerForNavigation
|
993
|
+
|
994
|
+
type PartitioningBlobURLIssueDetails extends object
|
995
|
+
properties
|
996
|
+
# The BlobURL that failed to load.
|
997
|
+
string url
|
998
|
+
# Additional information about the Partitioning Blob URL issue.
|
999
|
+
PartitioningBlobURLInfo partitioningBlobURLInfo
|
1000
|
+
|
988
1001
|
type SelectElementAccessibilityIssueReason extends string
|
989
1002
|
enum
|
990
1003
|
DisallowedSelectChild
|
@@ -1048,6 +1061,7 @@ experimental domain Audits
|
|
1048
1061
|
CorsIssue
|
1049
1062
|
AttributionReportingIssue
|
1050
1063
|
QuirksModeIssue
|
1064
|
+
PartitioningBlobURLIssue
|
1051
1065
|
# Deprecated
|
1052
1066
|
NavigatorUserAgentIssue
|
1053
1067
|
GenericIssue
|
@@ -1077,6 +1091,7 @@ experimental domain Audits
|
|
1077
1091
|
optional CorsIssueDetails corsIssueDetails
|
1078
1092
|
optional AttributionReportingIssueDetails attributionReportingIssueDetails
|
1079
1093
|
optional QuirksModeIssueDetails quirksModeIssueDetails
|
1094
|
+
optional PartitioningBlobURLIssueDetails partitioningBlobURLIssueDetails
|
1080
1095
|
deprecated optional NavigatorUserAgentIssueDetails navigatorUserAgentIssueDetails
|
1081
1096
|
optional GenericIssueDetails genericIssueDetails
|
1082
1097
|
optional DeprecationIssueDetails deprecationIssueDetails
|
@@ -8362,6 +8377,14 @@ domain Page
|
|
8362
8377
|
OriginTrialStatus status
|
8363
8378
|
array of OriginTrialTokenWithStatus tokensWithStatus
|
8364
8379
|
|
8380
|
+
# Additional information about the frame document's security origin.
|
8381
|
+
experimental type SecurityOriginDetails extends object
|
8382
|
+
properties
|
8383
|
+
# Indicates whether the frame document's security origin is one
|
8384
|
+
# of the local hostnames (e.g. "localhost") or IP addresses (IPv4
|
8385
|
+
# 127.0.0.0/8 or IPv6 ::1).
|
8386
|
+
boolean isLocalhost
|
8387
|
+
|
8365
8388
|
# Information about the Frame on the page.
|
8366
8389
|
type Frame extends object
|
8367
8390
|
properties
|
@@ -8384,6 +8407,8 @@ domain Page
|
|
8384
8407
|
experimental string domainAndRegistry
|
8385
8408
|
# Frame document's security origin.
|
8386
8409
|
string securityOrigin
|
8410
|
+
# Additional details about the frame document's security origin.
|
8411
|
+
experimental optional SecurityOriginDetails securityOriginDetails
|
8387
8412
|
# Frame document's mimeType as determined by the browser.
|
8388
8413
|
string mimeType
|
8389
8414
|
# If the frame failed to load, this contains the URL that could not be loaded. Note that unlike url above, this URL may contain a fragment.
|
@@ -11283,6 +11308,8 @@ domain Target
|
|
11283
11308
|
TargetID targetId
|
11284
11309
|
# Binding name, 'cdp' if not specified.
|
11285
11310
|
optional string bindingName
|
11311
|
+
# If true, inherits the current root session's permissions (default: false).
|
11312
|
+
optional boolean inheritPermissions
|
11286
11313
|
|
11287
11314
|
# Creates a new empty BrowserContext. Similar to an incognito profile but you can have more than
|
11288
11315
|
# one.
|
package/types/protocol.d.ts
CHANGED
@@ -3643,7 +3643,7 @@ export namespace Protocol {
|
|
3643
3643
|
* third_party/blink/public/mojom/devtools/inspector_issue.mojom to include
|
3644
3644
|
* all cases except for success.
|
3645
3645
|
*/
|
3646
|
-
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');
|
3646
|
+
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' | 'CorsError');
|
3647
3647
|
|
3648
3648
|
export interface FederatedAuthUserInfoRequestIssueDetails {
|
3649
3649
|
federatedAuthUserInfoRequestIssueReason: FederatedAuthUserInfoRequestIssueReason;
|
@@ -3677,6 +3677,19 @@ export namespace Protocol {
|
|
3677
3677
|
requestId?: Network.RequestId;
|
3678
3678
|
}
|
3679
3679
|
|
3680
|
+
export type PartitioningBlobURLInfo = ('BlockedCrossPartitionFetching' | 'EnforceNoopenerForNavigation');
|
3681
|
+
|
3682
|
+
export interface PartitioningBlobURLIssueDetails {
|
3683
|
+
/**
|
3684
|
+
* The BlobURL that failed to load.
|
3685
|
+
*/
|
3686
|
+
url: string;
|
3687
|
+
/**
|
3688
|
+
* Additional information about the Partitioning Blob URL issue.
|
3689
|
+
*/
|
3690
|
+
partitioningBlobURLInfo: PartitioningBlobURLInfo;
|
3691
|
+
}
|
3692
|
+
|
3680
3693
|
export type SelectElementAccessibilityIssueReason = ('DisallowedSelectChild' | 'DisallowedOptGroupChild' | 'NonPhrasingContentOptionChild' | 'InteractiveContentOptionChild' | 'InteractiveContentLegendChild');
|
3681
3694
|
|
3682
3695
|
/**
|
@@ -3734,7 +3747,7 @@ export namespace Protocol {
|
|
3734
3747
|
* optional fields in InspectorIssueDetails to convey more specific
|
3735
3748
|
* information about the kind of issue.
|
3736
3749
|
*/
|
3737
|
-
export type InspectorIssueCode = ('CookieIssue' | 'MixedContentIssue' | 'BlockedByResponseIssue' | 'HeavyAdIssue' | 'ContentSecurityPolicyIssue' | 'SharedArrayBufferIssue' | 'LowTextContrastIssue' | 'CorsIssue' | 'AttributionReportingIssue' | 'QuirksModeIssue' | 'NavigatorUserAgentIssue' | 'GenericIssue' | 'DeprecationIssue' | 'ClientHintIssue' | 'FederatedAuthRequestIssue' | 'BounceTrackingIssue' | 'CookieDeprecationMetadataIssue' | 'StylesheetLoadingIssue' | 'FederatedAuthUserInfoRequestIssue' | 'PropertyRuleIssue' | 'SharedDictionaryIssue' | 'SelectElementAccessibilityIssue');
|
3750
|
+
export type InspectorIssueCode = ('CookieIssue' | 'MixedContentIssue' | 'BlockedByResponseIssue' | 'HeavyAdIssue' | 'ContentSecurityPolicyIssue' | 'SharedArrayBufferIssue' | 'LowTextContrastIssue' | 'CorsIssue' | 'AttributionReportingIssue' | 'QuirksModeIssue' | 'PartitioningBlobURLIssue' | 'NavigatorUserAgentIssue' | 'GenericIssue' | 'DeprecationIssue' | 'ClientHintIssue' | 'FederatedAuthRequestIssue' | 'BounceTrackingIssue' | 'CookieDeprecationMetadataIssue' | 'StylesheetLoadingIssue' | 'FederatedAuthUserInfoRequestIssue' | 'PropertyRuleIssue' | 'SharedDictionaryIssue' | 'SelectElementAccessibilityIssue');
|
3738
3751
|
|
3739
3752
|
/**
|
3740
3753
|
* This struct holds a list of optional fields with additional information
|
@@ -3752,6 +3765,7 @@ export namespace Protocol {
|
|
3752
3765
|
corsIssueDetails?: CorsIssueDetails;
|
3753
3766
|
attributionReportingIssueDetails?: AttributionReportingIssueDetails;
|
3754
3767
|
quirksModeIssueDetails?: QuirksModeIssueDetails;
|
3768
|
+
partitioningBlobURLIssueDetails?: PartitioningBlobURLIssueDetails;
|
3755
3769
|
navigatorUserAgentIssueDetails?: NavigatorUserAgentIssueDetails;
|
3756
3770
|
genericIssueDetails?: GenericIssueDetails;
|
3757
3771
|
deprecationIssueDetails?: DeprecationIssueDetails;
|
@@ -13661,6 +13675,18 @@ export namespace Protocol {
|
|
13661
13675
|
tokensWithStatus: OriginTrialTokenWithStatus[];
|
13662
13676
|
}
|
13663
13677
|
|
13678
|
+
/**
|
13679
|
+
* Additional information about the frame document's security origin.
|
13680
|
+
*/
|
13681
|
+
export interface SecurityOriginDetails {
|
13682
|
+
/**
|
13683
|
+
* Indicates whether the frame document's security origin is one
|
13684
|
+
* of the local hostnames (e.g. "localhost") or IP addresses (IPv4
|
13685
|
+
* 127.0.0.0/8 or IPv6 ::1).
|
13686
|
+
*/
|
13687
|
+
isLocalhost: boolean;
|
13688
|
+
}
|
13689
|
+
|
13664
13690
|
/**
|
13665
13691
|
* Information about the Frame on the page.
|
13666
13692
|
*/
|
@@ -13700,6 +13726,10 @@ export namespace Protocol {
|
|
13700
13726
|
* Frame document's security origin.
|
13701
13727
|
*/
|
13702
13728
|
securityOrigin: string;
|
13729
|
+
/**
|
13730
|
+
* Additional details about the frame document's security origin.
|
13731
|
+
*/
|
13732
|
+
securityOriginDetails?: SecurityOriginDetails;
|
13703
13733
|
/**
|
13704
13734
|
* Frame document's mimeType as determined by the browser.
|
13705
13735
|
*/
|
@@ -17252,6 +17282,10 @@ export namespace Protocol {
|
|
17252
17282
|
* Binding name, 'cdp' if not specified.
|
17253
17283
|
*/
|
17254
17284
|
bindingName?: string;
|
17285
|
+
/**
|
17286
|
+
* If true, inherits the current root session's permissions (default: false).
|
17287
|
+
*/
|
17288
|
+
inheritPermissions?: boolean;
|
17255
17289
|
}
|
17256
17290
|
|
17257
17291
|
export interface CreateBrowserContextRequest {
|