chrome-types 0.1.347 → 0.1.349
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/_all.d.ts +25 -4
- package/index.d.ts +24 -3
- package/package.json +2 -2
package/_all.d.ts
CHANGED
|
@@ -14,8 +14,8 @@
|
|
|
14
14
|
* limitations under the License.
|
|
15
15
|
*/
|
|
16
16
|
|
|
17
|
-
// Generated on
|
|
18
|
-
// Built at
|
|
17
|
+
// Generated on Mon Apr 28 2025 22:32:15 GMT+0000 (Coordinated Universal Time)
|
|
18
|
+
// Built at c01b39596f1eecc4240f12e52599905dbf232207
|
|
19
19
|
|
|
20
20
|
// Includes all types, including MV2 + Platform Apps APIs.
|
|
21
21
|
|
|
@@ -27161,7 +27161,7 @@ declare namespace chrome {
|
|
|
27161
27161
|
/**
|
|
27162
27162
|
* Set whether multicast packets sent from the host to the multicast group will be looped back to the host.
|
|
27163
27163
|
*
|
|
27164
|
-
* Note: the behavior of `setMulticastLoopbackMode` is slightly different between Windows and Unix-like systems. The inconsistency happens only when there is more than one application on the same host joined to the same multicast group while having different settings on multicast loopback mode. On Windows, the applications with loopback off will not RECEIVE the loopback packets; while on Unix-like systems, the applications with loopback off will not SEND the loopback packets to other applications on the same host. See MSDN:
|
|
27164
|
+
* Note: the behavior of `setMulticastLoopbackMode` is slightly different between Windows and Unix-like systems. The inconsistency happens only when there is more than one application on the same host joined to the same multicast group while having different settings on multicast loopback mode. On Windows, the applications with loopback off will not RECEIVE the loopback packets; while on Unix-like systems, the applications with loopback off will not SEND the loopback packets to other applications on the same host. See MSDN: https://learn.microsoft.com/en-us/windows/win32/winsock/ip-multicast-2
|
|
27165
27165
|
*
|
|
27166
27166
|
* Calling this method does not require multicast permissions.
|
|
27167
27167
|
*
|
|
@@ -28550,7 +28550,7 @@ declare namespace chrome {
|
|
|
28550
28550
|
/**
|
|
28551
28551
|
* Sets whether multicast packets sent from the host to the multicast group will be looped back to the host.
|
|
28552
28552
|
*
|
|
28553
|
-
* Note: the behavior of `setMulticastLoopbackMode` is slightly different between Windows and Unix-like systems. The inconsistency happens only when there is more than one application on the same host joined to the same multicast group while having different settings on multicast loopback mode. On Windows, the applications with loopback off will not RECEIVE the loopback packets; while on Unix-like systems, the applications with loopback off will not SEND the loopback packets to other applications on the same host. See MSDN:
|
|
28553
|
+
* Note: the behavior of `setMulticastLoopbackMode` is slightly different between Windows and Unix-like systems. The inconsistency happens only when there is more than one application on the same host joined to the same multicast group while having different settings on multicast loopback mode. On Windows, the applications with loopback off will not RECEIVE the loopback packets; while on Unix-like systems, the applications with loopback off will not SEND the loopback packets to other applications on the same host. See MSDN: https://learn.microsoft.com/en-us/windows/win32/winsock/ip-multicast-2
|
|
28554
28554
|
*
|
|
28555
28555
|
* Calling this method does not require multicast permissions.
|
|
28556
28556
|
*
|
|
@@ -30430,6 +30430,13 @@ declare namespace chrome {
|
|
|
30430
30430
|
* The ID of the window that contains the group.
|
|
30431
30431
|
*/
|
|
30432
30432
|
windowId: number;
|
|
30433
|
+
|
|
30434
|
+
/**
|
|
30435
|
+
* Whether the group is shared.
|
|
30436
|
+
*
|
|
30437
|
+
* @since Pending
|
|
30438
|
+
*/
|
|
30439
|
+
shared: boolean;
|
|
30433
30440
|
}
|
|
30434
30441
|
|
|
30435
30442
|
/**
|
|
@@ -30511,6 +30518,13 @@ declare namespace chrome {
|
|
|
30511
30518
|
*/
|
|
30512
30519
|
title?: string,
|
|
30513
30520
|
|
|
30521
|
+
/**
|
|
30522
|
+
* Whether the group is shared.
|
|
30523
|
+
*
|
|
30524
|
+
* @since Pending
|
|
30525
|
+
*/
|
|
30526
|
+
shared?: boolean,
|
|
30527
|
+
|
|
30514
30528
|
/**
|
|
30515
30529
|
* The ID of the parent window, or {@link windows.WINDOW_ID_CURRENT} for the [current window](https://developer.chrome.com/docs/extensions/reference/windows/#current-window).
|
|
30516
30530
|
*/
|
|
@@ -30540,6 +30554,13 @@ declare namespace chrome {
|
|
|
30540
30554
|
*/
|
|
30541
30555
|
title?: string,
|
|
30542
30556
|
|
|
30557
|
+
/**
|
|
30558
|
+
* Whether the group is shared.
|
|
30559
|
+
*
|
|
30560
|
+
* @since Pending
|
|
30561
|
+
*/
|
|
30562
|
+
shared?: boolean,
|
|
30563
|
+
|
|
30543
30564
|
/**
|
|
30544
30565
|
* The ID of the parent window, or {@link windows.WINDOW_ID_CURRENT} for the [current window](https://developer.chrome.com/docs/extensions/reference/windows/#current-window).
|
|
30545
30566
|
*/
|
package/index.d.ts
CHANGED
|
@@ -14,8 +14,8 @@
|
|
|
14
14
|
* limitations under the License.
|
|
15
15
|
*/
|
|
16
16
|
|
|
17
|
-
// Generated on
|
|
18
|
-
// Built at
|
|
17
|
+
// Generated on Mon Apr 28 2025 22:32:11 GMT+0000 (Coordinated Universal Time)
|
|
18
|
+
// Built at c01b39596f1eecc4240f12e52599905dbf232207
|
|
19
19
|
|
|
20
20
|
// Includes MV3+ APIs only.
|
|
21
21
|
|
|
@@ -22033,7 +22033,7 @@ declare namespace chrome {
|
|
|
22033
22033
|
/**
|
|
22034
22034
|
* Sets whether multicast packets sent from the host to the multicast group will be looped back to the host.
|
|
22035
22035
|
*
|
|
22036
|
-
* Note: the behavior of `setMulticastLoopbackMode` is slightly different between Windows and Unix-like systems. The inconsistency happens only when there is more than one application on the same host joined to the same multicast group while having different settings on multicast loopback mode. On Windows, the applications with loopback off will not RECEIVE the loopback packets; while on Unix-like systems, the applications with loopback off will not SEND the loopback packets to other applications on the same host. See MSDN:
|
|
22036
|
+
* Note: the behavior of `setMulticastLoopbackMode` is slightly different between Windows and Unix-like systems. The inconsistency happens only when there is more than one application on the same host joined to the same multicast group while having different settings on multicast loopback mode. On Windows, the applications with loopback off will not RECEIVE the loopback packets; while on Unix-like systems, the applications with loopback off will not SEND the loopback packets to other applications on the same host. See MSDN: https://learn.microsoft.com/en-us/windows/win32/winsock/ip-multicast-2
|
|
22037
22037
|
*
|
|
22038
22038
|
* Calling this method does not require multicast permissions.
|
|
22039
22039
|
*
|
|
@@ -23651,6 +23651,13 @@ declare namespace chrome {
|
|
|
23651
23651
|
* The ID of the window that contains the group.
|
|
23652
23652
|
*/
|
|
23653
23653
|
windowId: number;
|
|
23654
|
+
|
|
23655
|
+
/**
|
|
23656
|
+
* Whether the group is shared.
|
|
23657
|
+
*
|
|
23658
|
+
* @since Pending
|
|
23659
|
+
*/
|
|
23660
|
+
shared: boolean;
|
|
23654
23661
|
}
|
|
23655
23662
|
|
|
23656
23663
|
/**
|
|
@@ -23732,6 +23739,13 @@ declare namespace chrome {
|
|
|
23732
23739
|
*/
|
|
23733
23740
|
title?: string,
|
|
23734
23741
|
|
|
23742
|
+
/**
|
|
23743
|
+
* Whether the group is shared.
|
|
23744
|
+
*
|
|
23745
|
+
* @since Pending
|
|
23746
|
+
*/
|
|
23747
|
+
shared?: boolean,
|
|
23748
|
+
|
|
23735
23749
|
/**
|
|
23736
23750
|
* The ID of the parent window, or {@link windows.WINDOW_ID_CURRENT} for the [current window](https://developer.chrome.com/docs/extensions/reference/windows/#current-window).
|
|
23737
23751
|
*/
|
|
@@ -23761,6 +23775,13 @@ declare namespace chrome {
|
|
|
23761
23775
|
*/
|
|
23762
23776
|
title?: string,
|
|
23763
23777
|
|
|
23778
|
+
/**
|
|
23779
|
+
* Whether the group is shared.
|
|
23780
|
+
*
|
|
23781
|
+
* @since Pending
|
|
23782
|
+
*/
|
|
23783
|
+
shared?: boolean,
|
|
23784
|
+
|
|
23764
23785
|
/**
|
|
23765
23786
|
* The ID of the parent window, or {@link windows.WINDOW_ID_CURRENT} for the [current window](https://developer.chrome.com/docs/extensions/reference/windows/#current-window).
|
|
23766
23787
|
*/
|
package/package.json
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
"type": "module",
|
|
6
6
|
"name": "chrome-types",
|
|
7
7
|
"config": {
|
|
8
|
-
"build-hash": "
|
|
8
|
+
"build-hash": "9b728a91f0c41480"
|
|
9
9
|
},
|
|
10
10
|
"repository": {
|
|
11
11
|
"type": "git",
|
|
@@ -16,5 +16,5 @@
|
|
|
16
16
|
"url": "https://github.com/GoogleChrome/chrome-types/issues"
|
|
17
17
|
},
|
|
18
18
|
"homepage": "https://github.com/GoogleChrome/chrome-types",
|
|
19
|
-
"version": "0.1.
|
|
19
|
+
"version": "0.1.349"
|
|
20
20
|
}
|