devtools-protocol 0.0.1302984 → 0.0.1304863

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.
@@ -1704,6 +1704,10 @@
1704
1704
  {
1705
1705
  "name": "isOptOutTopLevel",
1706
1706
  "type": "boolean"
1707
+ },
1708
+ {
1709
+ "name": "operation",
1710
+ "$ref": "CookieOperation"
1707
1711
  }
1708
1712
  ]
1709
1713
  },
@@ -1769,7 +1773,8 @@
1769
1773
  "ThirdPartyCookiesBlocked",
1770
1774
  "NotSignedInWithIdp",
1771
1775
  "MissingTransientUserActivation",
1772
- "ReplacedByButtonMode"
1776
+ "ReplacedByButtonMode",
1777
+ "RelyingPartyOriginIsOpaque"
1773
1778
  ]
1774
1779
  },
1775
1780
  {
@@ -12123,6 +12128,20 @@
12123
12128
  "experimental": true,
12124
12129
  "type": "number"
12125
12130
  },
12131
+ {
12132
+ "name": "workerRouterEvaluationStart",
12133
+ "description": "Started ServiceWorker static routing source evaluation.",
12134
+ "experimental": true,
12135
+ "optional": true,
12136
+ "type": "number"
12137
+ },
12138
+ {
12139
+ "name": "workerCacheLookupStart",
12140
+ "description": "Started cache lookup when the source was evaluated to `cache`.",
12141
+ "experimental": true,
12142
+ "optional": true,
12143
+ "type": "number"
12144
+ },
12126
12145
  {
12127
12146
  "name": "sendStart",
12128
12147
  "description": "Started sending request.",
@@ -12595,6 +12614,12 @@
12595
12614
  "description": "The router source of the matched rule. If there is a matched rule, this\nfield will be set, otherwise no value will be set.",
12596
12615
  "optional": true,
12597
12616
  "$ref": "ServiceWorkerRouterSource"
12617
+ },
12618
+ {
12619
+ "name": "actualSourceType",
12620
+ "description": "The actual router source used.",
12621
+ "optional": true,
12622
+ "$ref": "ServiceWorkerRouterSource"
12598
12623
  }
12599
12624
  ]
12600
12625
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1302984",
3
+ "version": "0.0.1304863",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -851,6 +851,7 @@ experimental domain Audits
851
851
  array of string allowedSites
852
852
  number optOutPercentage
853
853
  boolean isOptOutTopLevel
854
+ CookieOperation operation
854
855
 
855
856
  type ClientHintIssueReason extends string
856
857
  enum
@@ -911,6 +912,7 @@ experimental domain Audits
911
912
  NotSignedInWithIdp
912
913
  MissingTransientUserActivation
913
914
  ReplacedByButtonMode
915
+ RelyingPartyOriginIsOpaque
914
916
 
915
917
  type FederatedAuthUserInfoRequestIssueDetails extends object
916
918
  properties
@@ -5588,6 +5590,10 @@ domain Network
5588
5590
  experimental number workerFetchStart
5589
5591
  # Settled fetch event respondWith promise.
5590
5592
  experimental number workerRespondWithSettled
5593
+ # Started ServiceWorker static routing source evaluation.
5594
+ experimental optional number workerRouterEvaluationStart
5595
+ # Started cache lookup when the source was evaluated to `cache`.
5596
+ experimental optional number workerCacheLookupStart
5591
5597
  # Started sending request.
5592
5598
  number sendStart
5593
5599
  # Finished sending request.
@@ -5873,6 +5879,8 @@ domain Network
5873
5879
  # The router source of the matched rule. If there is a matched rule, this
5874
5880
  # field will be set, otherwise no value will be set.
5875
5881
  optional ServiceWorkerRouterSource matchedSourceType
5882
+ # The actual router source used.
5883
+ optional ServiceWorkerRouterSource actualSourceType
5876
5884
 
5877
5885
  # HTTP response data.
5878
5886
  type Response extends object
@@ -3564,6 +3564,7 @@ export namespace Protocol {
3564
3564
  allowedSites: string[];
3565
3565
  optOutPercentage: number;
3566
3566
  isOptOutTopLevel: boolean;
3567
+ operation: CookieOperation;
3567
3568
  }
3568
3569
 
3569
3570
  export type ClientHintIssueReason = ('MetaTagAllowListInvalidOrigin' | 'MetaTagModifiedHTML');
@@ -3578,7 +3579,7 @@ export namespace Protocol {
3578
3579
  * third_party/blink/public/mojom/devtools/inspector_issue.mojom to include
3579
3580
  * all cases except for success.
3580
3581
  */
3581
- export type FederatedAuthRequestIssueReason = ('ShouldEmbargo' | 'TooManyRequests' | 'WellKnownHttpNotFound' | 'WellKnownNoResponse' | 'WellKnownInvalidResponse' | 'WellKnownListEmpty' | 'WellKnownInvalidContentType' | 'ConfigNotInWellKnown' | 'WellKnownTooBig' | 'ConfigHttpNotFound' | 'ConfigNoResponse' | 'ConfigInvalidResponse' | 'ConfigInvalidContentType' | 'ClientMetadataHttpNotFound' | 'ClientMetadataNoResponse' | 'ClientMetadataInvalidResponse' | 'ClientMetadataInvalidContentType' | 'DisabledInSettings' | 'ErrorFetchingSignin' | 'InvalidSigninResponse' | 'AccountsHttpNotFound' | 'AccountsNoResponse' | 'AccountsInvalidResponse' | 'AccountsListEmpty' | 'AccountsInvalidContentType' | 'IdTokenHttpNotFound' | 'IdTokenNoResponse' | 'IdTokenInvalidResponse' | 'IdTokenIdpErrorResponse' | 'IdTokenCrossSiteIdpErrorResponse' | 'IdTokenInvalidRequest' | 'IdTokenInvalidContentType' | 'ErrorIdToken' | 'Canceled' | 'RpPageNotVisible' | 'SilentMediationFailure' | 'ThirdPartyCookiesBlocked' | 'NotSignedInWithIdp' | 'MissingTransientUserActivation' | 'ReplacedByButtonMode');
3582
+ export type FederatedAuthRequestIssueReason = ('ShouldEmbargo' | 'TooManyRequests' | 'WellKnownHttpNotFound' | 'WellKnownNoResponse' | 'WellKnownInvalidResponse' | 'WellKnownListEmpty' | 'WellKnownInvalidContentType' | 'ConfigNotInWellKnown' | 'WellKnownTooBig' | 'ConfigHttpNotFound' | 'ConfigNoResponse' | 'ConfigInvalidResponse' | 'ConfigInvalidContentType' | 'ClientMetadataHttpNotFound' | 'ClientMetadataNoResponse' | 'ClientMetadataInvalidResponse' | 'ClientMetadataInvalidContentType' | 'DisabledInSettings' | 'ErrorFetchingSignin' | 'InvalidSigninResponse' | 'AccountsHttpNotFound' | 'AccountsNoResponse' | 'AccountsInvalidResponse' | 'AccountsListEmpty' | 'AccountsInvalidContentType' | 'IdTokenHttpNotFound' | 'IdTokenNoResponse' | 'IdTokenInvalidResponse' | 'IdTokenIdpErrorResponse' | 'IdTokenCrossSiteIdpErrorResponse' | 'IdTokenInvalidRequest' | 'IdTokenInvalidContentType' | 'ErrorIdToken' | 'Canceled' | 'RpPageNotVisible' | 'SilentMediationFailure' | 'ThirdPartyCookiesBlocked' | 'NotSignedInWithIdp' | 'MissingTransientUserActivation' | 'ReplacedByButtonMode' | 'RelyingPartyOriginIsOpaque');
3582
3583
 
3583
3584
  export interface FederatedAuthUserInfoRequestIssueDetails {
3584
3585
  federatedAuthUserInfoRequestIssueReason: FederatedAuthUserInfoRequestIssueReason;
@@ -10155,6 +10156,14 @@ export namespace Protocol {
10155
10156
  * Settled fetch event respondWith promise.
10156
10157
  */
10157
10158
  workerRespondWithSettled: number;
10159
+ /**
10160
+ * Started ServiceWorker static routing source evaluation.
10161
+ */
10162
+ workerRouterEvaluationStart?: number;
10163
+ /**
10164
+ * Started cache lookup when the source was evaluated to `cache`.
10165
+ */
10166
+ workerCacheLookupStart?: number;
10158
10167
  /**
10159
10168
  * Started sending request.
10160
10169
  */
@@ -10444,6 +10453,10 @@ export namespace Protocol {
10444
10453
  * field will be set, otherwise no value will be set.
10445
10454
  */
10446
10455
  matchedSourceType?: ServiceWorkerRouterSource;
10456
+ /**
10457
+ * The actual router source used.
10458
+ */
10459
+ actualSourceType?: ServiceWorkerRouterSource;
10447
10460
  }
10448
10461
 
10449
10462
  /**