devtools-protocol 0.0.1453071 → 0.0.1453708
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 +32 -1
- package/package.json +1 -1
- package/pdl/browser_protocol.pdl +15 -0
- package/types/protocol.d.ts +16 -1
@@ -2059,6 +2059,31 @@
|
|
2059
2059
|
}
|
2060
2060
|
]
|
2061
2061
|
},
|
2062
|
+
{
|
2063
|
+
"id": "UserReidentificationIssueType",
|
2064
|
+
"type": "string",
|
2065
|
+
"enum": [
|
2066
|
+
"BlockedFrameNavigation",
|
2067
|
+
"BlockedSubresource"
|
2068
|
+
]
|
2069
|
+
},
|
2070
|
+
{
|
2071
|
+
"id": "UserReidentificationIssueDetails",
|
2072
|
+
"description": "This issue warns about uses of APIs that may be considered misuse to\nre-identify users.",
|
2073
|
+
"type": "object",
|
2074
|
+
"properties": [
|
2075
|
+
{
|
2076
|
+
"name": "type",
|
2077
|
+
"$ref": "UserReidentificationIssueType"
|
2078
|
+
},
|
2079
|
+
{
|
2080
|
+
"name": "request",
|
2081
|
+
"description": "Applies to BlockedFrameNavigation and BlockedSubresource issue types.",
|
2082
|
+
"optional": true,
|
2083
|
+
"$ref": "AffectedRequest"
|
2084
|
+
}
|
2085
|
+
]
|
2086
|
+
},
|
2062
2087
|
{
|
2063
2088
|
"id": "InspectorIssueCode",
|
2064
2089
|
"description": "A unique identifier for the type of issue. Each type may use one of the\noptional fields in InspectorIssueDetails to convey more specific\ninformation about the kind of issue.",
|
@@ -2087,7 +2112,8 @@
|
|
2087
2112
|
"PropertyRuleIssue",
|
2088
2113
|
"SharedDictionaryIssue",
|
2089
2114
|
"SelectElementAccessibilityIssue",
|
2090
|
-
"SRIMessageSignatureIssue"
|
2115
|
+
"SRIMessageSignatureIssue",
|
2116
|
+
"UserReidentificationIssue"
|
2091
2117
|
]
|
2092
2118
|
},
|
2093
2119
|
{
|
@@ -2215,6 +2241,11 @@
|
|
2215
2241
|
"name": "sriMessageSignatureIssueDetails",
|
2216
2242
|
"optional": true,
|
2217
2243
|
"$ref": "SRIMessageSignatureIssueDetails"
|
2244
|
+
},
|
2245
|
+
{
|
2246
|
+
"name": "userReidentificationIssueDetails",
|
2247
|
+
"optional": true,
|
2248
|
+
"$ref": "UserReidentificationIssueDetails"
|
2218
2249
|
}
|
2219
2250
|
]
|
2220
2251
|
},
|
package/package.json
CHANGED
package/pdl/browser_protocol.pdl
CHANGED
@@ -1079,6 +1079,19 @@ experimental domain Audits
|
|
1079
1079
|
# The value of the property rule property that failed to parse
|
1080
1080
|
optional string propertyValue
|
1081
1081
|
|
1082
|
+
type UserReidentificationIssueType extends string
|
1083
|
+
enum
|
1084
|
+
BlockedFrameNavigation
|
1085
|
+
BlockedSubresource
|
1086
|
+
|
1087
|
+
# This issue warns about uses of APIs that may be considered misuse to
|
1088
|
+
# re-identify users.
|
1089
|
+
type UserReidentificationIssueDetails extends object
|
1090
|
+
properties
|
1091
|
+
UserReidentificationIssueType type
|
1092
|
+
# Applies to BlockedFrameNavigation and BlockedSubresource issue types.
|
1093
|
+
optional AffectedRequest request
|
1094
|
+
|
1082
1095
|
# A unique identifier for the type of issue. Each type may use one of the
|
1083
1096
|
# optional fields in InspectorIssueDetails to convey more specific
|
1084
1097
|
# information about the kind of issue.
|
@@ -1109,6 +1122,7 @@ experimental domain Audits
|
|
1109
1122
|
SharedDictionaryIssue
|
1110
1123
|
SelectElementAccessibilityIssue
|
1111
1124
|
SRIMessageSignatureIssue
|
1125
|
+
UserReidentificationIssue
|
1112
1126
|
|
1113
1127
|
# This struct holds a list of optional fields with additional information
|
1114
1128
|
# specific to the kind of issue. When adding a new issue code, please also
|
@@ -1139,6 +1153,7 @@ experimental domain Audits
|
|
1139
1153
|
optional SharedDictionaryIssueDetails sharedDictionaryIssueDetails
|
1140
1154
|
optional SelectElementAccessibilityIssueDetails selectElementAccessibilityIssueDetails
|
1141
1155
|
optional SRIMessageSignatureIssueDetails sriMessageSignatureIssueDetails
|
1156
|
+
optional UserReidentificationIssueDetails userReidentificationIssueDetails
|
1142
1157
|
|
1143
1158
|
# A unique id for a DevTools inspector issue. Allows other entities (e.g.
|
1144
1159
|
# exceptions, CDP message, console messages, etc.) to reference an issue.
|
package/types/protocol.d.ts
CHANGED
@@ -3751,12 +3751,26 @@ export namespace Protocol {
|
|
3751
3751
|
propertyValue?: string;
|
3752
3752
|
}
|
3753
3753
|
|
3754
|
+
export type UserReidentificationIssueType = ('BlockedFrameNavigation' | 'BlockedSubresource');
|
3755
|
+
|
3756
|
+
/**
|
3757
|
+
* This issue warns about uses of APIs that may be considered misuse to
|
3758
|
+
* re-identify users.
|
3759
|
+
*/
|
3760
|
+
export interface UserReidentificationIssueDetails {
|
3761
|
+
type: UserReidentificationIssueType;
|
3762
|
+
/**
|
3763
|
+
* Applies to BlockedFrameNavigation and BlockedSubresource issue types.
|
3764
|
+
*/
|
3765
|
+
request?: AffectedRequest;
|
3766
|
+
}
|
3767
|
+
|
3754
3768
|
/**
|
3755
3769
|
* A unique identifier for the type of issue. Each type may use one of the
|
3756
3770
|
* optional fields in InspectorIssueDetails to convey more specific
|
3757
3771
|
* information about the kind of issue.
|
3758
3772
|
*/
|
3759
|
-
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' | 'SRIMessageSignatureIssue');
|
3773
|
+
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' | 'SRIMessageSignatureIssue' | 'UserReidentificationIssue');
|
3760
3774
|
|
3761
3775
|
/**
|
3762
3776
|
* This struct holds a list of optional fields with additional information
|
@@ -3788,6 +3802,7 @@ export namespace Protocol {
|
|
3788
3802
|
sharedDictionaryIssueDetails?: SharedDictionaryIssueDetails;
|
3789
3803
|
selectElementAccessibilityIssueDetails?: SelectElementAccessibilityIssueDetails;
|
3790
3804
|
sriMessageSignatureIssueDetails?: SRIMessageSignatureIssueDetails;
|
3805
|
+
userReidentificationIssueDetails?: UserReidentificationIssueDetails;
|
3791
3806
|
}
|
3792
3807
|
|
3793
3808
|
/**
|