devtools-protocol 0.0.1173815 → 0.0.1179426
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.
@@ -12210,7 +12210,8 @@
|
|
12210
12210
|
"SchemefulSameSiteUnspecifiedTreatedAsLax",
|
12211
12211
|
"SamePartyFromCrossPartyContext",
|
12212
12212
|
"SamePartyConflictsWithOtherAttributes",
|
12213
|
-
"NameValuePairExceedsMaxSize"
|
12213
|
+
"NameValuePairExceedsMaxSize",
|
12214
|
+
"DisallowedCharacter"
|
12214
12215
|
]
|
12215
12216
|
},
|
12216
12217
|
{
|
@@ -17445,6 +17446,13 @@
|
|
17445
17446
|
"ReturnAsBase64",
|
17446
17447
|
"ReturnAsStream"
|
17447
17448
|
]
|
17449
|
+
},
|
17450
|
+
{
|
17451
|
+
"name": "generateTaggedPDF",
|
17452
|
+
"description": "Whether or not to generate tagged (accessible) PDF. Defaults to embedder choice.",
|
17453
|
+
"experimental": true,
|
17454
|
+
"optional": true,
|
17455
|
+
"type": "boolean"
|
17448
17456
|
}
|
17449
17457
|
],
|
17450
17458
|
"returns": [
|
@@ -20015,7 +20023,8 @@
|
|
20015
20023
|
"destinationReportingLimitReached",
|
20016
20024
|
"destinationGlobalLimitReached",
|
20017
20025
|
"destinationBothLimitsReached",
|
20018
|
-
"reportingOriginsPerSiteLimitReached"
|
20026
|
+
"reportingOriginsPerSiteLimitReached",
|
20027
|
+
"exceedsMaxChannelCapacity"
|
20019
20028
|
]
|
20020
20029
|
}
|
20021
20030
|
],
|
package/package.json
CHANGED
package/pdl/browser_protocol.pdl
CHANGED
@@ -5688,6 +5688,10 @@ domain Network
|
|
5688
5688
|
# The cookie's name/value pair size exceeded the size limit defined in
|
5689
5689
|
# RFC6265bis.
|
5690
5690
|
NameValuePairExceedsMaxSize
|
5691
|
+
# The cookie contained a forbidden ASCII control character, or the tab
|
5692
|
+
# character if it appears in the middle of the cookie name, value, an
|
5693
|
+
# attribute name, or an attribute value.
|
5694
|
+
DisallowedCharacter
|
5691
5695
|
|
5692
5696
|
# Types of reasons why a cookie may not be sent with a request.
|
5693
5697
|
experimental type CookieBlockedReason extends string
|
@@ -8066,6 +8070,8 @@ domain Page
|
|
8066
8070
|
experimental optional enum transferMode
|
8067
8071
|
ReturnAsBase64
|
8068
8072
|
ReturnAsStream
|
8073
|
+
# Whether or not to generate tagged (accessible) PDF. Defaults to embedder choice.
|
8074
|
+
experimental optional boolean generateTaggedPDF
|
8069
8075
|
returns
|
8070
8076
|
# Base64-encoded pdf data. Empty if |returnAsStream| is specified.
|
8071
8077
|
binary data
|
@@ -9716,6 +9722,7 @@ experimental domain Storage
|
|
9716
9722
|
destinationGlobalLimitReached
|
9717
9723
|
destinationBothLimitsReached
|
9718
9724
|
reportingOriginsPerSiteLimitReached
|
9725
|
+
exceedsMaxChannelCapacity
|
9719
9726
|
|
9720
9727
|
# TODO(crbug.com/1458532): Add other Attribution Reporting events, e.g.
|
9721
9728
|
# trigger registration.
|
package/types/protocol.d.ts
CHANGED
@@ -10317,7 +10317,7 @@ export namespace Protocol {
|
|
10317
10317
|
/**
|
10318
10318
|
* Types of reasons why a cookie may not be stored from a response.
|
10319
10319
|
*/
|
10320
|
-
export type SetCookieBlockedReason = ('SecureOnly' | 'SameSiteStrict' | 'SameSiteLax' | 'SameSiteUnspecifiedTreatedAsLax' | 'SameSiteNoneInsecure' | 'UserPreferences' | 'ThirdPartyBlockedInFirstPartySet' | 'SyntaxError' | 'SchemeNotSupported' | 'OverwriteSecure' | 'InvalidDomain' | 'InvalidPrefix' | 'UnknownError' | 'SchemefulSameSiteStrict' | 'SchemefulSameSiteLax' | 'SchemefulSameSiteUnspecifiedTreatedAsLax' | 'SamePartyFromCrossPartyContext' | 'SamePartyConflictsWithOtherAttributes' | 'NameValuePairExceedsMaxSize');
|
10320
|
+
export type SetCookieBlockedReason = ('SecureOnly' | 'SameSiteStrict' | 'SameSiteLax' | 'SameSiteUnspecifiedTreatedAsLax' | 'SameSiteNoneInsecure' | 'UserPreferences' | 'ThirdPartyBlockedInFirstPartySet' | 'SyntaxError' | 'SchemeNotSupported' | 'OverwriteSecure' | 'InvalidDomain' | 'InvalidPrefix' | 'UnknownError' | 'SchemefulSameSiteStrict' | 'SchemefulSameSiteLax' | 'SchemefulSameSiteUnspecifiedTreatedAsLax' | 'SamePartyFromCrossPartyContext' | 'SamePartyConflictsWithOtherAttributes' | 'NameValuePairExceedsMaxSize' | 'DisallowedCharacter');
|
10321
10321
|
|
10322
10322
|
/**
|
10323
10323
|
* Types of reasons why a cookie may not be sent with a request.
|
@@ -13584,6 +13584,10 @@ export namespace Protocol {
|
|
13584
13584
|
* return as stream (PrintToPDFRequestTransferMode enum)
|
13585
13585
|
*/
|
13586
13586
|
transferMode?: ('ReturnAsBase64' | 'ReturnAsStream');
|
13587
|
+
/**
|
13588
|
+
* Whether or not to generate tagged (accessible) PDF. Defaults to embedder choice.
|
13589
|
+
*/
|
13590
|
+
generateTaggedPDF?: boolean;
|
13587
13591
|
}
|
13588
13592
|
|
13589
13593
|
export interface PrintToPDFResponse {
|
@@ -15077,7 +15081,7 @@ export namespace Protocol {
|
|
15077
15081
|
debugKey?: UnsignedInt64AsBase10;
|
15078
15082
|
}
|
15079
15083
|
|
15080
|
-
export type AttributionReportingSourceRegistrationResult = ('success' | 'internalError' | 'insufficientSourceCapacity' | 'insufficientUniqueDestinationCapacity' | 'excessiveReportingOrigins' | 'prohibitedByBrowserPolicy' | 'successNoised' | 'destinationReportingLimitReached' | 'destinationGlobalLimitReached' | 'destinationBothLimitsReached' | 'reportingOriginsPerSiteLimitReached');
|
15084
|
+
export type AttributionReportingSourceRegistrationResult = ('success' | 'internalError' | 'insufficientSourceCapacity' | 'insufficientUniqueDestinationCapacity' | 'excessiveReportingOrigins' | 'prohibitedByBrowserPolicy' | 'successNoised' | 'destinationReportingLimitReached' | 'destinationGlobalLimitReached' | 'destinationBothLimitsReached' | 'reportingOriginsPerSiteLimitReached' | 'exceedsMaxChannelCapacity');
|
15081
15085
|
|
15082
15086
|
export interface GetStorageKeyForFrameRequest {
|
15083
15087
|
frameId: Page.FrameId;
|