devtools-protocol 0.0.923255 → 0.0.923359
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/changelog.md +6 -0
- package/json/browser_protocol.json +4 -2
- package/package.json +1 -1
- package/pdl/browser_protocol.pdl +6 -0
- package/types/protocol.d.ts +2 -2
package/changelog.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
|
|
2
2
|
|
|
3
|
+
## Roll protocol to r923255
|
|
4
|
+
###### _2021-09-20 23:15:25_ | Diff: [f62186c...384a24c](https://github.com/ChromeDevTools/devtools-protocol/compare/f62186c...384a24c)
|
|
5
|
+
#### `Page`: modified type
|
|
6
|
+
* [`Page.BackForwardCacheNotRestoredReason`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-BackForwardCacheNotRestoredReason) - The enum's `EmbedderPopupBlockerTabHelper` _updated_. The enum's `EmbedderSafeBrowsingTriggeredPopupBlocker` _updated_. The enum's `EmbedderSafeBrowsingThreatDetails` _updated_. The enum's `EmbedderAppBannerManager` _updated_. The enum's `EmbedderDomDistillerViewerSource` _updated_. The enum's `EmbedderDomDistillerSelfDeletingRequestDelegate` _updated_. The enum's `EmbedderOomInterventionTabHelper` _updated_. The enum's `EmbedderOfflinePage` _updated_. The enum's `EmbedderChromePasswordManagerClientBindCredentialManager` _updated_. The enum's `EmbedderPermissionRequestManager` _updated_. The enum's `EmbedderModalDialog` _updated_. The enum's `EmbedderExtensions` _updated_. The enum's `EmbedderExtensionMessaging` _updated_. The enum's `EmbedderExtensionMessagingForOpenPort` _updated_. The enum's `EmbedderExtensionSentMessageToCachedFrame` _updated_. The enum's `EmbedderExtensionSentMessageToCachedFrame` _added_.
|
|
7
|
+
|
|
8
|
+
|
|
3
9
|
## Roll protocol to r922637
|
|
4
10
|
###### _2021-09-17 13:15:26_ | Diff: [d99de50...b86f904](https://github.com/ChromeDevTools/devtools-protocol/compare/d99de50...b86f904)
|
|
5
11
|
#### `Page`: modified type
|
|
@@ -11189,7 +11189,8 @@
|
|
|
11189
11189
|
"SchemefulSameSiteLax",
|
|
11190
11190
|
"SchemefulSameSiteUnspecifiedTreatedAsLax",
|
|
11191
11191
|
"SamePartyFromCrossPartyContext",
|
|
11192
|
-
"SamePartyConflictsWithOtherAttributes"
|
|
11192
|
+
"SamePartyConflictsWithOtherAttributes",
|
|
11193
|
+
"NameValuePairExceedsMaxSize"
|
|
11193
11194
|
]
|
|
11194
11195
|
},
|
|
11195
11196
|
{
|
|
@@ -11210,7 +11211,8 @@
|
|
|
11210
11211
|
"SchemefulSameSiteStrict",
|
|
11211
11212
|
"SchemefulSameSiteLax",
|
|
11212
11213
|
"SchemefulSameSiteUnspecifiedTreatedAsLax",
|
|
11213
|
-
"SamePartyFromCrossPartyContext"
|
|
11214
|
+
"SamePartyFromCrossPartyContext",
|
|
11215
|
+
"NameValuePairExceedsMaxSize"
|
|
11214
11216
|
]
|
|
11215
11217
|
},
|
|
11216
11218
|
{
|
package/package.json
CHANGED
package/pdl/browser_protocol.pdl
CHANGED
|
@@ -5151,6 +5151,9 @@ domain Network
|
|
|
5151
5151
|
# (which is required in order to use "SameParty"); or specified the "SameSite=Strict"
|
|
5152
5152
|
# attribute (which is forbidden when using "SameParty").
|
|
5153
5153
|
SamePartyConflictsWithOtherAttributes
|
|
5154
|
+
# The cookie's name/value pair size exceeded the size limit defined in
|
|
5155
|
+
# RFC6265bis.
|
|
5156
|
+
NameValuePairExceedsMaxSize
|
|
5154
5157
|
|
|
5155
5158
|
# Types of reasons why a cookie may not be sent with a request.
|
|
5156
5159
|
experimental type CookieBlockedReason extends string
|
|
@@ -5195,6 +5198,9 @@ domain Network
|
|
|
5195
5198
|
SchemefulSameSiteUnspecifiedTreatedAsLax
|
|
5196
5199
|
# The cookie had the "SameParty" attribute and the request was made from a cross-party context.
|
|
5197
5200
|
SamePartyFromCrossPartyContext
|
|
5201
|
+
# The cookie's name/value pair size exceeded the size limit defined in
|
|
5202
|
+
# RFC6265bis.
|
|
5203
|
+
NameValuePairExceedsMaxSize
|
|
5198
5204
|
|
|
5199
5205
|
# A cookie which was not stored from a response with the corresponding reason.
|
|
5200
5206
|
experimental type BlockedSetCookieWithReason extends object
|
package/types/protocol.d.ts
CHANGED
|
@@ -9585,12 +9585,12 @@ export namespace Protocol {
|
|
|
9585
9585
|
/**
|
|
9586
9586
|
* Types of reasons why a cookie may not be stored from a response.
|
|
9587
9587
|
*/
|
|
9588
|
-
export type SetCookieBlockedReason = ('SecureOnly' | 'SameSiteStrict' | 'SameSiteLax' | 'SameSiteUnspecifiedTreatedAsLax' | 'SameSiteNoneInsecure' | 'UserPreferences' | 'SyntaxError' | 'SchemeNotSupported' | 'OverwriteSecure' | 'InvalidDomain' | 'InvalidPrefix' | 'UnknownError' | 'SchemefulSameSiteStrict' | 'SchemefulSameSiteLax' | 'SchemefulSameSiteUnspecifiedTreatedAsLax' | 'SamePartyFromCrossPartyContext' | 'SamePartyConflictsWithOtherAttributes');
|
|
9588
|
+
export type SetCookieBlockedReason = ('SecureOnly' | 'SameSiteStrict' | 'SameSiteLax' | 'SameSiteUnspecifiedTreatedAsLax' | 'SameSiteNoneInsecure' | 'UserPreferences' | 'SyntaxError' | 'SchemeNotSupported' | 'OverwriteSecure' | 'InvalidDomain' | 'InvalidPrefix' | 'UnknownError' | 'SchemefulSameSiteStrict' | 'SchemefulSameSiteLax' | 'SchemefulSameSiteUnspecifiedTreatedAsLax' | 'SamePartyFromCrossPartyContext' | 'SamePartyConflictsWithOtherAttributes' | 'NameValuePairExceedsMaxSize');
|
|
9589
9589
|
|
|
9590
9590
|
/**
|
|
9591
9591
|
* Types of reasons why a cookie may not be sent with a request.
|
|
9592
9592
|
*/
|
|
9593
|
-
export type CookieBlockedReason = ('SecureOnly' | 'NotOnPath' | 'DomainMismatch' | 'SameSiteStrict' | 'SameSiteLax' | 'SameSiteUnspecifiedTreatedAsLax' | 'SameSiteNoneInsecure' | 'UserPreferences' | 'UnknownError' | 'SchemefulSameSiteStrict' | 'SchemefulSameSiteLax' | 'SchemefulSameSiteUnspecifiedTreatedAsLax' | 'SamePartyFromCrossPartyContext');
|
|
9593
|
+
export type CookieBlockedReason = ('SecureOnly' | 'NotOnPath' | 'DomainMismatch' | 'SameSiteStrict' | 'SameSiteLax' | 'SameSiteUnspecifiedTreatedAsLax' | 'SameSiteNoneInsecure' | 'UserPreferences' | 'UnknownError' | 'SchemefulSameSiteStrict' | 'SchemefulSameSiteLax' | 'SchemefulSameSiteUnspecifiedTreatedAsLax' | 'SamePartyFromCrossPartyContext' | 'NameValuePairExceedsMaxSize');
|
|
9594
9594
|
|
|
9595
9595
|
/**
|
|
9596
9596
|
* A cookie which was not stored from a response with the corresponding reason.
|