devtools-protocol 0.0.1493946 → 0.0.1495237
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 +30 -0
- package/package.json +1 -1
- package/pdl/browser_protocol.pdl +14 -0
- package/types/protocol-proxy-api.d.ts +349 -0
- package/types/protocol-tests-proxy-api.d.ts +349 -0
- package/types/protocol.d.ts +855 -91
@@ -1587,6 +1587,16 @@
|
|
1587
1587
|
"ValidationFailedIntegrityMismatch"
|
1588
1588
|
]
|
1589
1589
|
},
|
1590
|
+
{
|
1591
|
+
"id": "UnencodedDigestError",
|
1592
|
+
"type": "string",
|
1593
|
+
"enum": [
|
1594
|
+
"MalformedDictionary",
|
1595
|
+
"UnknownAlgorithm",
|
1596
|
+
"IncorrectDigestType",
|
1597
|
+
"IncorrectDigestLength"
|
1598
|
+
]
|
1599
|
+
},
|
1590
1600
|
{
|
1591
1601
|
"id": "AttributionReportingIssueDetails",
|
1592
1602
|
"description": "Details for issues around \"Attribution Reporting API\" usage.\nExplainer: https://github.com/WICG/attribution-reporting-api",
|
@@ -1696,6 +1706,20 @@
|
|
1696
1706
|
}
|
1697
1707
|
]
|
1698
1708
|
},
|
1709
|
+
{
|
1710
|
+
"id": "UnencodedDigestIssueDetails",
|
1711
|
+
"type": "object",
|
1712
|
+
"properties": [
|
1713
|
+
{
|
1714
|
+
"name": "error",
|
1715
|
+
"$ref": "UnencodedDigestError"
|
1716
|
+
},
|
1717
|
+
{
|
1718
|
+
"name": "request",
|
1719
|
+
"$ref": "AffectedRequest"
|
1720
|
+
}
|
1721
|
+
]
|
1722
|
+
},
|
1699
1723
|
{
|
1700
1724
|
"id": "GenericIssueErrorType",
|
1701
1725
|
"type": "string",
|
@@ -2114,6 +2138,7 @@
|
|
2114
2138
|
"SharedDictionaryIssue",
|
2115
2139
|
"ElementAccessibilityIssue",
|
2116
2140
|
"SRIMessageSignatureIssue",
|
2141
|
+
"UnencodedDigestIssue",
|
2117
2142
|
"UserReidentificationIssue"
|
2118
2143
|
]
|
2119
2144
|
},
|
@@ -2243,6 +2268,11 @@
|
|
2243
2268
|
"optional": true,
|
2244
2269
|
"$ref": "SRIMessageSignatureIssueDetails"
|
2245
2270
|
},
|
2271
|
+
{
|
2272
|
+
"name": "unencodedDigestIssueDetails",
|
2273
|
+
"optional": true,
|
2274
|
+
"$ref": "UnencodedDigestIssueDetails"
|
2275
|
+
},
|
2246
2276
|
{
|
2247
2277
|
"name": "userReidentificationIssueDetails",
|
2248
2278
|
"optional": true,
|
package/package.json
CHANGED
package/pdl/browser_protocol.pdl
CHANGED
@@ -825,6 +825,13 @@ experimental domain Audits
|
|
825
825
|
ValidationFailedSignatureMismatch
|
826
826
|
ValidationFailedIntegrityMismatch
|
827
827
|
|
828
|
+
type UnencodedDigestError extends string
|
829
|
+
enum
|
830
|
+
MalformedDictionary
|
831
|
+
UnknownAlgorithm
|
832
|
+
IncorrectDigestType
|
833
|
+
IncorrectDigestLength
|
834
|
+
|
828
835
|
# Details for issues around "Attribution Reporting API" usage.
|
829
836
|
# Explainer: https://github.com/WICG/attribution-reporting-api
|
830
837
|
type AttributionReportingIssueDetails extends object
|
@@ -863,6 +870,11 @@ experimental domain Audits
|
|
863
870
|
array of string integrityAssertions
|
864
871
|
AffectedRequest request
|
865
872
|
|
873
|
+
type UnencodedDigestIssueDetails extends object
|
874
|
+
properties
|
875
|
+
UnencodedDigestError error
|
876
|
+
AffectedRequest request
|
877
|
+
|
866
878
|
type GenericIssueErrorType extends string
|
867
879
|
enum
|
868
880
|
FormLabelForNameError
|
@@ -1123,6 +1135,7 @@ experimental domain Audits
|
|
1123
1135
|
SharedDictionaryIssue
|
1124
1136
|
ElementAccessibilityIssue
|
1125
1137
|
SRIMessageSignatureIssue
|
1138
|
+
UnencodedDigestIssue
|
1126
1139
|
UserReidentificationIssue
|
1127
1140
|
|
1128
1141
|
# This struct holds a list of optional fields with additional information
|
@@ -1154,6 +1167,7 @@ experimental domain Audits
|
|
1154
1167
|
optional SharedDictionaryIssueDetails sharedDictionaryIssueDetails
|
1155
1168
|
optional ElementAccessibilityIssueDetails elementAccessibilityIssueDetails
|
1156
1169
|
optional SRIMessageSignatureIssueDetails sriMessageSignatureIssueDetails
|
1170
|
+
optional UnencodedDigestIssueDetails unencodedDigestIssueDetails
|
1157
1171
|
optional UserReidentificationIssueDetails userReidentificationIssueDetails
|
1158
1172
|
|
1159
1173
|
# A unique id for a DevTools inspector issue. Allows other entities (e.g.
|