devtools-protocol 0.0.1304228 → 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
  },
@@ -12124,6 +12128,20 @@
12124
12128
  "experimental": true,
12125
12129
  "type": "number"
12126
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
+ },
12127
12145
  {
12128
12146
  "name": "sendStart",
12129
12147
  "description": "Started sending request.",
@@ -12596,6 +12614,12 @@
12596
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.",
12597
12615
  "optional": true,
12598
12616
  "$ref": "ServiceWorkerRouterSource"
12617
+ },
12618
+ {
12619
+ "name": "actualSourceType",
12620
+ "description": "The actual router source used.",
12621
+ "optional": true,
12622
+ "$ref": "ServiceWorkerRouterSource"
12599
12623
  }
12600
12624
  ]
12601
12625
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1304228",
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
@@ -5589,6 +5590,10 @@ domain Network
5589
5590
  experimental number workerFetchStart
5590
5591
  # Settled fetch event respondWith promise.
5591
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
5592
5597
  # Started sending request.
5593
5598
  number sendStart
5594
5599
  # Finished sending request.
@@ -5874,6 +5879,8 @@ domain Network
5874
5879
  # The router source of the matched rule. If there is a matched rule, this
5875
5880
  # field will be set, otherwise no value will be set.
5876
5881
  optional ServiceWorkerRouterSource matchedSourceType
5882
+ # The actual router source used.
5883
+ optional ServiceWorkerRouterSource actualSourceType
5877
5884
 
5878
5885
  # HTTP response data.
5879
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');
@@ -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
  /**