devtools-protocol 0.0.1472835 → 0.0.1473885
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/json/browser_protocol.json +7 -16
- package/package.json +1 -1
- package/pdl/browser_protocol.pdl +6 -12
- package/types/protocol.d.ts +10 -6
@@ -9617,21 +9617,6 @@
|
|
9617
9617
|
"pauseIfNetworkFetchesPending"
|
9618
9618
|
]
|
9619
9619
|
},
|
9620
|
-
{
|
9621
|
-
"id": "UserAgentFormFactor",
|
9622
|
-
"description": "Used to specify User Agent form-factor values. See https://wicg.github.io/ua-client-hints/#sec-ch-ua-form-factors",
|
9623
|
-
"experimental": true,
|
9624
|
-
"type": "string",
|
9625
|
-
"enum": [
|
9626
|
-
"Desktop",
|
9627
|
-
"Automotive",
|
9628
|
-
"Mobile",
|
9629
|
-
"Tablet",
|
9630
|
-
"XR",
|
9631
|
-
"EInk",
|
9632
|
-
"Watch"
|
9633
|
-
]
|
9634
|
-
},
|
9635
9620
|
{
|
9636
9621
|
"id": "UserAgentBrandVersion",
|
9637
9622
|
"description": "Used to specify User Agent Client Hints to emulate. See https://wicg.github.io/ua-client-hints",
|
@@ -9710,10 +9695,11 @@
|
|
9710
9695
|
},
|
9711
9696
|
{
|
9712
9697
|
"name": "formFactors",
|
9698
|
+
"description": "Used to specify User Agent form-factor values.\nSee https://wicg.github.io/ua-client-hints/#sec-ch-ua-form-factors",
|
9713
9699
|
"optional": true,
|
9714
9700
|
"type": "array",
|
9715
9701
|
"items": {
|
9716
|
-
"
|
9702
|
+
"type": "string"
|
9717
9703
|
}
|
9718
9704
|
}
|
9719
9705
|
]
|
@@ -14603,6 +14589,11 @@
|
|
14603
14589
|
"description": "The outer response of signed HTTP exchange which was received from network.",
|
14604
14590
|
"$ref": "Response"
|
14605
14591
|
},
|
14592
|
+
{
|
14593
|
+
"name": "hasExtraInfo",
|
14594
|
+
"description": "Whether network response for the signed exchange was accompanied by\nextra headers.",
|
14595
|
+
"type": "boolean"
|
14596
|
+
},
|
14606
14597
|
{
|
14607
14598
|
"name": "header",
|
14608
14599
|
"description": "Information about the signed exchange header.",
|
package/package.json
CHANGED
package/pdl/browser_protocol.pdl
CHANGED
@@ -4467,17 +4467,6 @@ domain Emulation
|
|
4467
4467
|
pause
|
4468
4468
|
pauseIfNetworkFetchesPending
|
4469
4469
|
|
4470
|
-
# Used to specify User Agent form-factor values. See https://wicg.github.io/ua-client-hints/#sec-ch-ua-form-factors
|
4471
|
-
experimental type UserAgentFormFactor extends string
|
4472
|
-
enum
|
4473
|
-
Desktop
|
4474
|
-
Automotive
|
4475
|
-
Mobile
|
4476
|
-
Tablet
|
4477
|
-
XR
|
4478
|
-
EInk
|
4479
|
-
Watch
|
4480
|
-
|
4481
4470
|
# Used to specify User Agent Client Hints to emulate. See https://wicg.github.io/ua-client-hints
|
4482
4471
|
experimental type UserAgentBrandVersion extends object
|
4483
4472
|
properties
|
@@ -4500,7 +4489,9 @@ domain Emulation
|
|
4500
4489
|
boolean mobile
|
4501
4490
|
optional string bitness
|
4502
4491
|
optional boolean wow64
|
4503
|
-
|
4492
|
+
# Used to specify User Agent form-factor values.
|
4493
|
+
# See https://wicg.github.io/ua-client-hints/#sec-ch-ua-form-factors
|
4494
|
+
optional array of string formFactors
|
4504
4495
|
|
4505
4496
|
# Used to specify sensor types to emulate.
|
4506
4497
|
# See https://w3c.github.io/sensors/#automation for more information.
|
@@ -6931,6 +6922,9 @@ domain Network
|
|
6931
6922
|
properties
|
6932
6923
|
# The outer response of signed HTTP exchange which was received from network.
|
6933
6924
|
Response outerResponse
|
6925
|
+
# Whether network response for the signed exchange was accompanied by
|
6926
|
+
# extra headers.
|
6927
|
+
boolean hasExtraInfo
|
6934
6928
|
# Information about the signed exchange header.
|
6935
6929
|
optional SignedExchangeHeader header
|
6936
6930
|
# Security details for the signed exchange header.
|
package/types/protocol.d.ts
CHANGED
@@ -8536,11 +8536,6 @@ export namespace Protocol {
|
|
8536
8536
|
*/
|
8537
8537
|
export type VirtualTimePolicy = ('advance' | 'pause' | 'pauseIfNetworkFetchesPending');
|
8538
8538
|
|
8539
|
-
/**
|
8540
|
-
* Used to specify User Agent form-factor values. See https://wicg.github.io/ua-client-hints/#sec-ch-ua-form-factors
|
8541
|
-
*/
|
8542
|
-
export type UserAgentFormFactor = ('Desktop' | 'Automotive' | 'Mobile' | 'Tablet' | 'XR' | 'EInk' | 'Watch');
|
8543
|
-
|
8544
8539
|
/**
|
8545
8540
|
* Used to specify User Agent Client Hints to emulate. See https://wicg.github.io/ua-client-hints
|
8546
8541
|
*/
|
@@ -8570,7 +8565,11 @@ export namespace Protocol {
|
|
8570
8565
|
mobile: boolean;
|
8571
8566
|
bitness?: string;
|
8572
8567
|
wow64?: boolean;
|
8573
|
-
|
8568
|
+
/**
|
8569
|
+
* Used to specify User Agent form-factor values.
|
8570
|
+
* See https://wicg.github.io/ua-client-hints/#sec-ch-ua-form-factors
|
8571
|
+
*/
|
8572
|
+
formFactors?: string[];
|
8574
8573
|
}
|
8575
8574
|
|
8576
8575
|
/**
|
@@ -11697,6 +11696,11 @@ export namespace Protocol {
|
|
11697
11696
|
* The outer response of signed HTTP exchange which was received from network.
|
11698
11697
|
*/
|
11699
11698
|
outerResponse: Response;
|
11699
|
+
/**
|
11700
|
+
* Whether network response for the signed exchange was accompanied by
|
11701
|
+
* extra headers.
|
11702
|
+
*/
|
11703
|
+
hasExtraInfo: boolean;
|
11700
11704
|
/**
|
11701
11705
|
* Information about the signed exchange header.
|
11702
11706
|
*/
|