devtools-protocol 0.0.1378738 → 0.0.1379457

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.
@@ -13565,7 +13565,9 @@
13565
13565
  "SchemefulSameSiteLax",
13566
13566
  "SchemefulSameSiteUnspecifiedTreatedAsLax",
13567
13567
  "SamePartyFromCrossPartyContext",
13568
- "NameValuePairExceedsMaxSize"
13568
+ "NameValuePairExceedsMaxSize",
13569
+ "PortMismatch",
13570
+ "SchemeMismatch"
13569
13571
  ]
13570
13572
  },
13571
13573
  {
@@ -20318,7 +20320,7 @@
20318
20320
  },
20319
20321
  {
20320
20322
  "name": "lifecycleEvent",
20321
- "description": "Fired for top level page lifecycle events such as navigation, load, paint, etc.",
20323
+ "description": "Fired for lifecycle events (navigation, load, paint, etc) in the current\ntarget (including local frames).",
20322
20324
  "parameters": [
20323
20325
  {
20324
20326
  "name": "frameId",
@@ -22365,6 +22367,7 @@
22365
22367
  "excessiveReportingOrigins",
22366
22368
  "noHistograms",
22367
22369
  "insufficientBudget",
22370
+ "insufficientNamedBudget",
22368
22371
  "noMatchingSourceFilterData",
22369
22372
  "notRegistered",
22370
22373
  "prohibitedByBrowserPolicy",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1378738",
3
+ "version": "0.0.1379457",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -6397,6 +6397,10 @@ domain Network
6397
6397
  # The cookie's name/value pair size exceeded the size limit defined in
6398
6398
  # RFC6265bis.
6399
6399
  NameValuePairExceedsMaxSize
6400
+ # The cookie's source port value does not match the request origin's port.
6401
+ PortMismatch
6402
+ # The cookie's source scheme value does not match the request origin's scheme.
6403
+ SchemeMismatch
6400
6404
 
6401
6405
  # Types of reasons why a cookie should have been blocked by 3PCD but is exempted for the request.
6402
6406
  experimental type CookieExemptionReason extends string
@@ -9397,7 +9401,8 @@ domain Page
9397
9401
  # Default dialog prompt.
9398
9402
  optional string defaultPrompt
9399
9403
 
9400
- # Fired for top level page lifecycle events such as navigation, load, paint, etc.
9404
+ # Fired for lifecycle events (navigation, load, paint, etc) in the current
9405
+ # target (including local frames).
9401
9406
  event lifecycleEvent
9402
9407
  parameters
9403
9408
  # Id of the frame.
@@ -10859,6 +10864,7 @@ experimental domain Storage
10859
10864
  excessiveReportingOrigins
10860
10865
  noHistograms
10861
10866
  insufficientBudget
10867
+ insufficientNamedBudget
10862
10868
  noMatchingSourceFilterData
10863
10869
  notRegistered
10864
10870
  prohibitedByBrowserPolicy
@@ -500,7 +500,8 @@ export namespace ProtocolMapping {
500
500
  */
501
501
  'Page.javascriptDialogOpening': [Protocol.Page.JavascriptDialogOpeningEvent];
502
502
  /**
503
- * Fired for top level page lifecycle events such as navigation, load, paint, etc.
503
+ * Fired for lifecycle events (navigation, load, paint, etc) in the current
504
+ * target (including local frames).
504
505
  */
505
506
  'Page.lifecycleEvent': [Protocol.Page.LifecycleEventEvent];
506
507
  /**
@@ -3311,7 +3311,8 @@ export namespace ProtocolProxyApi {
3311
3311
  on(event: 'javascriptDialogOpening', listener: (params: Protocol.Page.JavascriptDialogOpeningEvent) => void): void;
3312
3312
 
3313
3313
  /**
3314
- * Fired for top level page lifecycle events such as navigation, load, paint, etc.
3314
+ * Fired for lifecycle events (navigation, load, paint, etc) in the current
3315
+ * target (including local frames).
3315
3316
  */
3316
3317
  on(event: 'lifecycleEvent', listener: (params: Protocol.Page.LifecycleEventEvent) => void): void;
3317
3318
 
@@ -3563,7 +3563,8 @@ export namespace ProtocolTestsProxyApi {
3563
3563
  onceJavascriptDialogOpening(eventMatcher?: (event: { params: Protocol.Page.JavascriptDialogOpeningEvent }) => boolean): Promise<{ params: Protocol.Page.JavascriptDialogOpeningEvent }>;
3564
3564
 
3565
3565
  /**
3566
- * Fired for top level page lifecycle events such as navigation, load, paint, etc.
3566
+ * Fired for lifecycle events (navigation, load, paint, etc) in the current
3567
+ * target (including local frames).
3567
3568
  */
3568
3569
  onLifecycleEvent(listener: (event: { params: Protocol.Page.LifecycleEventEvent }) => void): void;
3569
3570
  offLifecycleEvent(listener: (event: { params: Protocol.Page.LifecycleEventEvent }) => void): void;
@@ -11042,7 +11042,7 @@ export namespace Protocol {
11042
11042
  /**
11043
11043
  * Types of reasons why a cookie may not be sent with a request.
11044
11044
  */
11045
- export type CookieBlockedReason = ('SecureOnly' | 'NotOnPath' | 'DomainMismatch' | 'SameSiteStrict' | 'SameSiteLax' | 'SameSiteUnspecifiedTreatedAsLax' | 'SameSiteNoneInsecure' | 'UserPreferences' | 'ThirdPartyPhaseout' | 'ThirdPartyBlockedInFirstPartySet' | 'UnknownError' | 'SchemefulSameSiteStrict' | 'SchemefulSameSiteLax' | 'SchemefulSameSiteUnspecifiedTreatedAsLax' | 'SamePartyFromCrossPartyContext' | 'NameValuePairExceedsMaxSize');
11045
+ export type CookieBlockedReason = ('SecureOnly' | 'NotOnPath' | 'DomainMismatch' | 'SameSiteStrict' | 'SameSiteLax' | 'SameSiteUnspecifiedTreatedAsLax' | 'SameSiteNoneInsecure' | 'UserPreferences' | 'ThirdPartyPhaseout' | 'ThirdPartyBlockedInFirstPartySet' | 'UnknownError' | 'SchemefulSameSiteStrict' | 'SchemefulSameSiteLax' | 'SchemefulSameSiteUnspecifiedTreatedAsLax' | 'SamePartyFromCrossPartyContext' | 'NameValuePairExceedsMaxSize' | 'PortMismatch' | 'SchemeMismatch');
11046
11046
 
11047
11047
  /**
11048
11048
  * Types of reasons why a cookie should have been blocked by 3PCD but is exempted for the request.
@@ -15173,7 +15173,8 @@ export namespace Protocol {
15173
15173
  }
15174
15174
 
15175
15175
  /**
15176
- * Fired for top level page lifecycle events such as navigation, load, paint, etc.
15176
+ * Fired for lifecycle events (navigation, load, paint, etc) in the current
15177
+ * target (including local frames).
15177
15178
  */
15178
15179
  export interface LifecycleEventEvent {
15179
15180
  /**
@@ -16220,7 +16221,7 @@ export namespace Protocol {
16220
16221
 
16221
16222
  export type AttributionReportingEventLevelResult = ('success' | 'successDroppedLowerPriority' | 'internalError' | 'noCapacityForAttributionDestination' | 'noMatchingSources' | 'deduplicated' | 'excessiveAttributions' | 'priorityTooLow' | 'neverAttributedSource' | 'excessiveReportingOrigins' | 'noMatchingSourceFilterData' | 'prohibitedByBrowserPolicy' | 'noMatchingConfigurations' | 'excessiveReports' | 'falselyAttributedSource' | 'reportWindowPassed' | 'notRegistered' | 'reportWindowNotStarted' | 'noMatchingTriggerData');
16222
16223
 
16223
- export type AttributionReportingAggregatableResult = ('success' | 'internalError' | 'noCapacityForAttributionDestination' | 'noMatchingSources' | 'excessiveAttributions' | 'excessiveReportingOrigins' | 'noHistograms' | 'insufficientBudget' | 'noMatchingSourceFilterData' | 'notRegistered' | 'prohibitedByBrowserPolicy' | 'deduplicated' | 'reportWindowPassed' | 'excessiveReports');
16224
+ export type AttributionReportingAggregatableResult = ('success' | 'internalError' | 'noCapacityForAttributionDestination' | 'noMatchingSources' | 'excessiveAttributions' | 'excessiveReportingOrigins' | 'noHistograms' | 'insufficientBudget' | 'insufficientNamedBudget' | 'noMatchingSourceFilterData' | 'notRegistered' | 'prohibitedByBrowserPolicy' | 'deduplicated' | 'reportWindowPassed' | 'excessiveReports');
16224
16225
 
16225
16226
  /**
16226
16227
  * A single Related Website Set object.