devtools-protocol 0.0.1545402 → 0.0.1547617
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 +48 -3
- package/package.json +1 -1
- package/pdl/domains/Audits.pdl +3 -2
- package/pdl/domains/Network.pdl +14 -0
- package/types/protocol-mapping.d.ts +8 -0
- package/types/protocol-proxy-api.d.ts +10 -0
- package/types/protocol-tests-proxy-api.d.ts +14 -0
- package/types/protocol.d.ts +23 -1
|
@@ -1749,12 +1749,13 @@
|
|
|
1749
1749
|
"FormInputWithNoLabelError",
|
|
1750
1750
|
"FormAutocompleteAttributeEmptyError",
|
|
1751
1751
|
"FormEmptyIdAndNameAttributesForInputError",
|
|
1752
|
-
"
|
|
1752
|
+
"FormAriaLabelledByToNonExistingIdError",
|
|
1753
1753
|
"FormInputAssignedAutocompleteValueToIdOrNameAttributeError",
|
|
1754
|
-
"
|
|
1754
|
+
"FormLabelHasNeitherForNorNestedInputError",
|
|
1755
1755
|
"FormLabelForMatchesNonExistingIdError",
|
|
1756
1756
|
"FormInputHasWrongButWellIntendedAutocompleteValueError",
|
|
1757
|
-
"ResponseWasBlockedByORB"
|
|
1757
|
+
"ResponseWasBlockedByORB",
|
|
1758
|
+
"NavigationEntryMarkedSkippable"
|
|
1758
1759
|
]
|
|
1759
1760
|
},
|
|
1760
1761
|
{
|
|
@@ -16749,6 +16750,22 @@
|
|
|
16749
16750
|
"description": "Expected to be unsigned integer.",
|
|
16750
16751
|
"optional": true,
|
|
16751
16752
|
"type": "number"
|
|
16753
|
+
},
|
|
16754
|
+
{
|
|
16755
|
+
"name": "multicastLoopback",
|
|
16756
|
+
"optional": true,
|
|
16757
|
+
"type": "boolean"
|
|
16758
|
+
},
|
|
16759
|
+
{
|
|
16760
|
+
"name": "multicastTimeToLive",
|
|
16761
|
+
"description": "Unsigned int 8.",
|
|
16762
|
+
"optional": true,
|
|
16763
|
+
"type": "integer"
|
|
16764
|
+
},
|
|
16765
|
+
{
|
|
16766
|
+
"name": "multicastAllowAddressSharing",
|
|
16767
|
+
"optional": true,
|
|
16768
|
+
"type": "boolean"
|
|
16752
16769
|
}
|
|
16753
16770
|
]
|
|
16754
16771
|
},
|
|
@@ -18657,6 +18674,34 @@
|
|
|
18657
18674
|
}
|
|
18658
18675
|
]
|
|
18659
18676
|
},
|
|
18677
|
+
{
|
|
18678
|
+
"name": "directUDPSocketJoinedMulticastGroup",
|
|
18679
|
+
"experimental": true,
|
|
18680
|
+
"parameters": [
|
|
18681
|
+
{
|
|
18682
|
+
"name": "identifier",
|
|
18683
|
+
"$ref": "RequestId"
|
|
18684
|
+
},
|
|
18685
|
+
{
|
|
18686
|
+
"name": "IPAddress",
|
|
18687
|
+
"type": "string"
|
|
18688
|
+
}
|
|
18689
|
+
]
|
|
18690
|
+
},
|
|
18691
|
+
{
|
|
18692
|
+
"name": "directUDPSocketLeftMulticastGroup",
|
|
18693
|
+
"experimental": true,
|
|
18694
|
+
"parameters": [
|
|
18695
|
+
{
|
|
18696
|
+
"name": "identifier",
|
|
18697
|
+
"$ref": "RequestId"
|
|
18698
|
+
},
|
|
18699
|
+
{
|
|
18700
|
+
"name": "IPAddress",
|
|
18701
|
+
"type": "string"
|
|
18702
|
+
}
|
|
18703
|
+
]
|
|
18704
|
+
},
|
|
18660
18705
|
{
|
|
18661
18706
|
"name": "directUDPSocketCreated",
|
|
18662
18707
|
"description": "Fired upon direct_socket.UDPSocket creation.",
|
package/package.json
CHANGED
package/pdl/domains/Audits.pdl
CHANGED
|
@@ -405,12 +405,13 @@ experimental domain Audits
|
|
|
405
405
|
FormInputWithNoLabelError
|
|
406
406
|
FormAutocompleteAttributeEmptyError
|
|
407
407
|
FormEmptyIdAndNameAttributesForInputError
|
|
408
|
-
|
|
408
|
+
FormAriaLabelledByToNonExistingIdError
|
|
409
409
|
FormInputAssignedAutocompleteValueToIdOrNameAttributeError
|
|
410
|
-
|
|
410
|
+
FormLabelHasNeitherForNorNestedInputError
|
|
411
411
|
FormLabelForMatchesNonExistingIdError
|
|
412
412
|
FormInputHasWrongButWellIntendedAutocompleteValueError
|
|
413
413
|
ResponseWasBlockedByORB
|
|
414
|
+
NavigationEntryMarkedSkippable
|
|
414
415
|
|
|
415
416
|
# Depending on the concrete errorType, different properties are set.
|
|
416
417
|
type GenericIssueDetails extends object
|
package/pdl/domains/Network.pdl
CHANGED
|
@@ -1706,6 +1706,20 @@ domain Network
|
|
|
1706
1706
|
optional number sendBufferSize
|
|
1707
1707
|
# Expected to be unsigned integer.
|
|
1708
1708
|
optional number receiveBufferSize
|
|
1709
|
+
optional boolean multicastLoopback
|
|
1710
|
+
# Unsigned int 8.
|
|
1711
|
+
optional integer multicastTimeToLive
|
|
1712
|
+
optional boolean multicastAllowAddressSharing
|
|
1713
|
+
|
|
1714
|
+
experimental event directUDPSocketJoinedMulticastGroup
|
|
1715
|
+
parameters
|
|
1716
|
+
RequestId identifier
|
|
1717
|
+
string IPAddress
|
|
1718
|
+
|
|
1719
|
+
experimental event directUDPSocketLeftMulticastGroup
|
|
1720
|
+
parameters
|
|
1721
|
+
RequestId identifier
|
|
1722
|
+
string IPAddress
|
|
1709
1723
|
|
|
1710
1724
|
|
|
1711
1725
|
# Fired upon direct_socket.UDPSocket creation.
|
|
@@ -490,6 +490,14 @@ export namespace ProtocolMapping {
|
|
|
490
490
|
* @experimental
|
|
491
491
|
*/
|
|
492
492
|
'Network.directTCPSocketChunkReceived': [Protocol.Network.DirectTCPSocketChunkReceivedEvent];
|
|
493
|
+
/**
|
|
494
|
+
* @experimental
|
|
495
|
+
*/
|
|
496
|
+
'Network.directUDPSocketJoinedMulticastGroup': [Protocol.Network.DirectUDPSocketJoinedMulticastGroupEvent];
|
|
497
|
+
/**
|
|
498
|
+
* @experimental
|
|
499
|
+
*/
|
|
500
|
+
'Network.directUDPSocketLeftMulticastGroup': [Protocol.Network.DirectUDPSocketLeftMulticastGroupEvent];
|
|
493
501
|
/**
|
|
494
502
|
* Fired upon direct_socket.UDPSocket creation.
|
|
495
503
|
* @experimental
|
|
@@ -3334,6 +3334,16 @@ export namespace ProtocolProxyApi {
|
|
|
3334
3334
|
*/
|
|
3335
3335
|
on(event: 'directTCPSocketChunkReceived', listener: (params: Protocol.Network.DirectTCPSocketChunkReceivedEvent) => void): void;
|
|
3336
3336
|
|
|
3337
|
+
/**
|
|
3338
|
+
* @experimental
|
|
3339
|
+
*/
|
|
3340
|
+
on(event: 'directUDPSocketJoinedMulticastGroup', listener: (params: Protocol.Network.DirectUDPSocketJoinedMulticastGroupEvent) => void): void;
|
|
3341
|
+
|
|
3342
|
+
/**
|
|
3343
|
+
* @experimental
|
|
3344
|
+
*/
|
|
3345
|
+
on(event: 'directUDPSocketLeftMulticastGroup', listener: (params: Protocol.Network.DirectUDPSocketLeftMulticastGroupEvent) => void): void;
|
|
3346
|
+
|
|
3337
3347
|
/**
|
|
3338
3348
|
* Fired upon direct_socket.UDPSocket creation.
|
|
3339
3349
|
* @experimental
|
|
@@ -3556,6 +3556,20 @@ export namespace ProtocolTestsProxyApi {
|
|
|
3556
3556
|
offDirectTCPSocketChunkReceived(listener: (event: { params: Protocol.Network.DirectTCPSocketChunkReceivedEvent }) => void): void;
|
|
3557
3557
|
onceDirectTCPSocketChunkReceived(eventMatcher?: (event: { params: Protocol.Network.DirectTCPSocketChunkReceivedEvent }) => boolean): Promise<{ params: Protocol.Network.DirectTCPSocketChunkReceivedEvent }>;
|
|
3558
3558
|
|
|
3559
|
+
/**
|
|
3560
|
+
* @experimental
|
|
3561
|
+
*/
|
|
3562
|
+
onDirectUDPSocketJoinedMulticastGroup(listener: (event: { params: Protocol.Network.DirectUDPSocketJoinedMulticastGroupEvent }) => void): void;
|
|
3563
|
+
offDirectUDPSocketJoinedMulticastGroup(listener: (event: { params: Protocol.Network.DirectUDPSocketJoinedMulticastGroupEvent }) => void): void;
|
|
3564
|
+
onceDirectUDPSocketJoinedMulticastGroup(eventMatcher?: (event: { params: Protocol.Network.DirectUDPSocketJoinedMulticastGroupEvent }) => boolean): Promise<{ params: Protocol.Network.DirectUDPSocketJoinedMulticastGroupEvent }>;
|
|
3565
|
+
|
|
3566
|
+
/**
|
|
3567
|
+
* @experimental
|
|
3568
|
+
*/
|
|
3569
|
+
onDirectUDPSocketLeftMulticastGroup(listener: (event: { params: Protocol.Network.DirectUDPSocketLeftMulticastGroupEvent }) => void): void;
|
|
3570
|
+
offDirectUDPSocketLeftMulticastGroup(listener: (event: { params: Protocol.Network.DirectUDPSocketLeftMulticastGroupEvent }) => void): void;
|
|
3571
|
+
onceDirectUDPSocketLeftMulticastGroup(eventMatcher?: (event: { params: Protocol.Network.DirectUDPSocketLeftMulticastGroupEvent }) => boolean): Promise<{ params: Protocol.Network.DirectUDPSocketLeftMulticastGroupEvent }>;
|
|
3572
|
+
|
|
3559
3573
|
/**
|
|
3560
3574
|
* Fired upon direct_socket.UDPSocket creation.
|
|
3561
3575
|
* @experimental
|
package/types/protocol.d.ts
CHANGED
|
@@ -3698,7 +3698,7 @@ export namespace Protocol {
|
|
|
3698
3698
|
request: AffectedRequest;
|
|
3699
3699
|
}
|
|
3700
3700
|
|
|
3701
|
-
export type GenericIssueErrorType = ('FormLabelForNameError' | 'FormDuplicateIdForInputError' | 'FormInputWithNoLabelError' | 'FormAutocompleteAttributeEmptyError' | 'FormEmptyIdAndNameAttributesForInputError' | '
|
|
3701
|
+
export type GenericIssueErrorType = ('FormLabelForNameError' | 'FormDuplicateIdForInputError' | 'FormInputWithNoLabelError' | 'FormAutocompleteAttributeEmptyError' | 'FormEmptyIdAndNameAttributesForInputError' | 'FormAriaLabelledByToNonExistingIdError' | 'FormInputAssignedAutocompleteValueToIdOrNameAttributeError' | 'FormLabelHasNeitherForNorNestedInputError' | 'FormLabelForMatchesNonExistingIdError' | 'FormInputHasWrongButWellIntendedAutocompleteValueError' | 'ResponseWasBlockedByORB' | 'NavigationEntryMarkedSkippable');
|
|
3702
3702
|
|
|
3703
3703
|
/**
|
|
3704
3704
|
* Depending on the concrete errorType, different properties are set.
|
|
@@ -13332,6 +13332,12 @@ export namespace Protocol {
|
|
|
13332
13332
|
* Expected to be unsigned integer.
|
|
13333
13333
|
*/
|
|
13334
13334
|
receiveBufferSize?: number;
|
|
13335
|
+
multicastLoopback?: boolean;
|
|
13336
|
+
/**
|
|
13337
|
+
* Unsigned int 8.
|
|
13338
|
+
*/
|
|
13339
|
+
multicastTimeToLive?: integer;
|
|
13340
|
+
multicastAllowAddressSharing?: boolean;
|
|
13335
13341
|
}
|
|
13336
13342
|
|
|
13337
13343
|
/**
|
|
@@ -14626,6 +14632,22 @@ export namespace Protocol {
|
|
|
14626
14632
|
timestamp: MonotonicTime;
|
|
14627
14633
|
}
|
|
14628
14634
|
|
|
14635
|
+
/**
|
|
14636
|
+
* @experimental
|
|
14637
|
+
*/
|
|
14638
|
+
export interface DirectUDPSocketJoinedMulticastGroupEvent {
|
|
14639
|
+
identifier: RequestId;
|
|
14640
|
+
IPAddress: string;
|
|
14641
|
+
}
|
|
14642
|
+
|
|
14643
|
+
/**
|
|
14644
|
+
* @experimental
|
|
14645
|
+
*/
|
|
14646
|
+
export interface DirectUDPSocketLeftMulticastGroupEvent {
|
|
14647
|
+
identifier: RequestId;
|
|
14648
|
+
IPAddress: string;
|
|
14649
|
+
}
|
|
14650
|
+
|
|
14629
14651
|
/**
|
|
14630
14652
|
* Fired upon direct_socket.UDPSocket creation.
|
|
14631
14653
|
* @experimental
|