chrome-types 0.1.385 → 0.1.387
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 +8 -4
- package/index.d.ts +5 -4
- 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 Wed Nov 05 2025 22:33:15 GMT+0000 (Coordinated Universal Time)
|
|
18
|
+
// Built at 117afdba60377778617dad9491800caba0cf99c9
|
|
19
19
|
|
|
20
20
|
// Includes all types, including MV2 + Platform Apps APIs.
|
|
21
21
|
|
|
@@ -3957,6 +3957,9 @@ declare namespace chrome {
|
|
|
3957
3957
|
*/
|
|
3958
3958
|
export function getSockets(
|
|
3959
3959
|
|
|
3960
|
+
/**
|
|
3961
|
+
* @param sockets Array of object containing socket information.
|
|
3962
|
+
*/
|
|
3960
3963
|
callback?: (
|
|
3961
3964
|
sockets: SocketInfo[],
|
|
3962
3965
|
) => void,
|
|
@@ -11422,9 +11425,10 @@ declare namespace chrome {
|
|
|
11422
11425
|
* @chrome-enum "unwanted" The download is potentially unwanted or unsafe. E.g. it could make changes to browser or computer settings.
|
|
11423
11426
|
* @chrome-enum "safe" The download presents no known danger to the user's computer.
|
|
11424
11427
|
* @chrome-enum "accepted" The user has accepted the dangerous download.
|
|
11425
|
-
* @chrome-enum "allowlistedByPolicy"
|
|
11428
|
+
* @chrome-enum "allowlistedByPolicy" Enterprise-related values.
|
|
11429
|
+
* @chrome-enum "forceSaveToGdrive" For use by the Secure Enterprise Browser extension. When required, Chrome will block the download to disc and download the file directly to Google Drive.
|
|
11426
11430
|
*/
|
|
11427
|
-
export type DangerType = "file" | "url" | "content" | "uncommon" | "host" | "unwanted" | "safe" | "accepted" | "allowlistedByPolicy" | "asyncScanning" | "asyncLocalPasswordScanning" | "passwordProtected" | "blockedTooLarge" | "sensitiveContentWarning" | "sensitiveContentBlock" | "deepScannedFailed" | "deepScannedSafe" | "deepScannedOpenedDangerous" | "promptForScanning" | "promptForLocalPasswordScanning" | "accountCompromise" | "blockedScanFailed";
|
|
11431
|
+
export type DangerType = "file" | "url" | "content" | "uncommon" | "host" | "unwanted" | "safe" | "accepted" | "allowlistedByPolicy" | "asyncScanning" | "asyncLocalPasswordScanning" | "passwordProtected" | "blockedTooLarge" | "sensitiveContentWarning" | "sensitiveContentBlock" | "deepScannedFailed" | "deepScannedSafe" | "deepScannedOpenedDangerous" | "promptForScanning" | "promptForLocalPasswordScanning" | "accountCompromise" | "blockedScanFailed" | "forceSaveToGdrive";
|
|
11428
11432
|
|
|
11429
11433
|
/**
|
|
11430
11434
|
* in\_progress
|
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 Wed Nov 05 2025 22:33:10 GMT+0000 (Coordinated Universal Time)
|
|
18
|
+
// Built at 117afdba60377778617dad9491800caba0cf99c9
|
|
19
19
|
|
|
20
20
|
// Includes MV3+ APIs only.
|
|
21
21
|
|
|
@@ -7554,9 +7554,10 @@ declare namespace chrome {
|
|
|
7554
7554
|
* @chrome-enum "unwanted" The download is potentially unwanted or unsafe. E.g. it could make changes to browser or computer settings.
|
|
7555
7555
|
* @chrome-enum "safe" The download presents no known danger to the user's computer.
|
|
7556
7556
|
* @chrome-enum "accepted" The user has accepted the dangerous download.
|
|
7557
|
-
* @chrome-enum "allowlistedByPolicy"
|
|
7557
|
+
* @chrome-enum "allowlistedByPolicy" Enterprise-related values.
|
|
7558
|
+
* @chrome-enum "forceSaveToGdrive" For use by the Secure Enterprise Browser extension. When required, Chrome will block the download to disc and download the file directly to Google Drive.
|
|
7558
7559
|
*/
|
|
7559
|
-
export type DangerType = "file" | "url" | "content" | "uncommon" | "host" | "unwanted" | "safe" | "accepted" | "allowlistedByPolicy" | "asyncScanning" | "asyncLocalPasswordScanning" | "passwordProtected" | "blockedTooLarge" | "sensitiveContentWarning" | "sensitiveContentBlock" | "deepScannedFailed" | "deepScannedSafe" | "deepScannedOpenedDangerous" | "promptForScanning" | "promptForLocalPasswordScanning" | "accountCompromise" | "blockedScanFailed";
|
|
7560
|
+
export type DangerType = "file" | "url" | "content" | "uncommon" | "host" | "unwanted" | "safe" | "accepted" | "allowlistedByPolicy" | "asyncScanning" | "asyncLocalPasswordScanning" | "passwordProtected" | "blockedTooLarge" | "sensitiveContentWarning" | "sensitiveContentBlock" | "deepScannedFailed" | "deepScannedSafe" | "deepScannedOpenedDangerous" | "promptForScanning" | "promptForLocalPasswordScanning" | "accountCompromise" | "blockedScanFailed" | "forceSaveToGdrive";
|
|
7560
7561
|
|
|
7561
7562
|
/**
|
|
7562
7563
|
* in\_progress
|
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": "f7a6ca9f0865cd17"
|
|
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.387"
|
|
20
20
|
}
|