devtools-protocol 0.0.1546284 → 0.0.1548244

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.
@@ -5150,34 +5150,6 @@
5150
5150
  }
5151
5151
  ]
5152
5152
  },
5153
- {
5154
- "id": "CSSFontPaletteValuesRule",
5155
- "description": "CSS font-palette-values rule representation.",
5156
- "type": "object",
5157
- "properties": [
5158
- {
5159
- "name": "styleSheetId",
5160
- "description": "The css style sheet identifier (absent for user agent stylesheet and user-specified\nstylesheet rules) this rule came from.",
5161
- "optional": true,
5162
- "$ref": "StyleSheetId"
5163
- },
5164
- {
5165
- "name": "origin",
5166
- "description": "Parent stylesheet's origin.",
5167
- "$ref": "StyleSheetOrigin"
5168
- },
5169
- {
5170
- "name": "fontPaletteName",
5171
- "description": "Associated font palette name.",
5172
- "$ref": "Value"
5173
- },
5174
- {
5175
- "name": "style",
5176
- "description": "Associated style declaration.",
5177
- "$ref": "CSSStyle"
5178
- }
5179
- ]
5180
- },
5181
5153
  {
5182
5154
  "id": "CSSAtRule",
5183
5155
  "description": "CSS generic @rule representation.",
@@ -5836,12 +5808,6 @@
5836
5808
  "$ref": "CSSPropertyRegistration"
5837
5809
  }
5838
5810
  },
5839
- {
5840
- "name": "cssFontPaletteValuesRule",
5841
- "description": "A font-palette-values rule matching this node.",
5842
- "optional": true,
5843
- "$ref": "CSSFontPaletteValuesRule"
5844
- },
5845
5811
  {
5846
5812
  "name": "cssAtRules",
5847
5813
  "description": "A list of simple @rules matching this node or its pseudo-elements.",
@@ -16750,6 +16716,22 @@
16750
16716
  "description": "Expected to be unsigned integer.",
16751
16717
  "optional": true,
16752
16718
  "type": "number"
16719
+ },
16720
+ {
16721
+ "name": "multicastLoopback",
16722
+ "optional": true,
16723
+ "type": "boolean"
16724
+ },
16725
+ {
16726
+ "name": "multicastTimeToLive",
16727
+ "description": "Unsigned int 8.",
16728
+ "optional": true,
16729
+ "type": "integer"
16730
+ },
16731
+ {
16732
+ "name": "multicastAllowAddressSharing",
16733
+ "optional": true,
16734
+ "type": "boolean"
16753
16735
  }
16754
16736
  ]
16755
16737
  },
@@ -18658,6 +18640,34 @@
18658
18640
  }
18659
18641
  ]
18660
18642
  },
18643
+ {
18644
+ "name": "directUDPSocketJoinedMulticastGroup",
18645
+ "experimental": true,
18646
+ "parameters": [
18647
+ {
18648
+ "name": "identifier",
18649
+ "$ref": "RequestId"
18650
+ },
18651
+ {
18652
+ "name": "IPAddress",
18653
+ "type": "string"
18654
+ }
18655
+ ]
18656
+ },
18657
+ {
18658
+ "name": "directUDPSocketLeftMulticastGroup",
18659
+ "experimental": true,
18660
+ "parameters": [
18661
+ {
18662
+ "name": "identifier",
18663
+ "$ref": "RequestId"
18664
+ },
18665
+ {
18666
+ "name": "IPAddress",
18667
+ "type": "string"
18668
+ }
18669
+ ]
18670
+ },
18661
18671
  {
18662
18672
  "name": "directUDPSocketCreated",
18663
18673
  "description": "Fired upon direct_socket.UDPSocket creation.",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1546284",
3
+ "version": "0.0.1548244",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -500,20 +500,6 @@ experimental domain CSS
500
500
  boolean inherits
501
501
  string syntax
502
502
 
503
-
504
- # CSS font-palette-values rule representation.
505
- type CSSFontPaletteValuesRule extends object
506
- properties
507
- # The css style sheet identifier (absent for user agent stylesheet and user-specified
508
- # stylesheet rules) this rule came from.
509
- optional StyleSheetId styleSheetId
510
- # Parent stylesheet's origin.
511
- StyleSheetOrigin origin
512
- # Associated font palette name.
513
- Value fontPaletteName
514
- # Associated style declaration.
515
- CSSStyle style
516
-
517
503
  # CSS generic @rule representation.
518
504
  type CSSAtRule extends object
519
505
  properties
@@ -800,8 +786,6 @@ experimental domain CSS
800
786
  optional array of CSSPropertyRule cssPropertyRules
801
787
  # A list of CSS property registrations matching this node.
802
788
  optional array of CSSPropertyRegistration cssPropertyRegistrations
803
- # A font-palette-values rule matching this node.
804
- optional CSSFontPaletteValuesRule cssFontPaletteValuesRule
805
789
  # A list of simple @rules matching this node or its pseudo-elements.
806
790
  optional array of CSSAtRule cssAtRules
807
791
  # Id of the first parent element that does not have display: contents.
@@ -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
@@ -5777,29 +5777,6 @@ export namespace Protocol {
5777
5777
  syntax: string;
5778
5778
  }
5779
5779
 
5780
- /**
5781
- * CSS font-palette-values rule representation.
5782
- */
5783
- export interface CSSFontPaletteValuesRule {
5784
- /**
5785
- * The css style sheet identifier (absent for user agent stylesheet and user-specified
5786
- * stylesheet rules) this rule came from.
5787
- */
5788
- styleSheetId?: StyleSheetId;
5789
- /**
5790
- * Parent stylesheet's origin.
5791
- */
5792
- origin: StyleSheetOrigin;
5793
- /**
5794
- * Associated font palette name.
5795
- */
5796
- fontPaletteName: Value;
5797
- /**
5798
- * Associated style declaration.
5799
- */
5800
- style: CSSStyle;
5801
- }
5802
-
5803
5780
  export const enum CSSAtRuleType {
5804
5781
  FontFace = 'font-face',
5805
5782
  FontFeatureValues = 'font-feature-values',
@@ -6240,10 +6217,6 @@ export namespace Protocol {
6240
6217
  * A list of CSS property registrations matching this node.
6241
6218
  */
6242
6219
  cssPropertyRegistrations?: CSSPropertyRegistration[];
6243
- /**
6244
- * A font-palette-values rule matching this node.
6245
- */
6246
- cssFontPaletteValuesRule?: CSSFontPaletteValuesRule;
6247
6220
  /**
6248
6221
  * A list of simple @rules matching this node or its pseudo-elements.
6249
6222
  */
@@ -13332,6 +13305,12 @@ export namespace Protocol {
13332
13305
  * Expected to be unsigned integer.
13333
13306
  */
13334
13307
  receiveBufferSize?: number;
13308
+ multicastLoopback?: boolean;
13309
+ /**
13310
+ * Unsigned int 8.
13311
+ */
13312
+ multicastTimeToLive?: integer;
13313
+ multicastAllowAddressSharing?: boolean;
13335
13314
  }
13336
13315
 
13337
13316
  /**
@@ -14626,6 +14605,22 @@ export namespace Protocol {
14626
14605
  timestamp: MonotonicTime;
14627
14606
  }
14628
14607
 
14608
+ /**
14609
+ * @experimental
14610
+ */
14611
+ export interface DirectUDPSocketJoinedMulticastGroupEvent {
14612
+ identifier: RequestId;
14613
+ IPAddress: string;
14614
+ }
14615
+
14616
+ /**
14617
+ * @experimental
14618
+ */
14619
+ export interface DirectUDPSocketLeftMulticastGroupEvent {
14620
+ identifier: RequestId;
14621
+ IPAddress: string;
14622
+ }
14623
+
14629
14624
  /**
14630
14625
  * Fired upon direct_socket.UDPSocket creation.
14631
14626
  * @experimental