chrome-types 0.1.410 → 0.1.412

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.
Files changed (3) hide show
  1. package/_all.d.ts +29 -3
  2. package/index.d.ts +29 -3
  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 Mon Jan 12 2026 22:33:22 GMT+0000 (Coordinated Universal Time)
18
- // Built at 7dea46963dd0037c6f8ff82fe40b378135bc23b1
17
+ // Generated on Wed Jan 14 2026 22:25:59 GMT+0000 (Coordinated Universal Time)
18
+ // Built at f87719ddef88220ac76dfe8849f12079c559ff60
19
19
 
20
20
  // Includes all types, including MV2 + Platform Apps APIs.
21
21
 
@@ -11430,8 +11430,9 @@ declare namespace chrome {
11430
11430
  * @chrome-enum "accepted" The user has accepted the dangerous download.
11431
11431
  * @chrome-enum "allowlistedByPolicy" Enterprise-related values.
11432
11432
  * @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.
11433
+ * @chrome-enum "forceSaveToOnedrive" For use by the Secure Enterprise Browser extension. When required, Chrome will block the download to disc and download the file directly to OneDrive.
11433
11434
  */
11434
- 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";
11435
+ 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" | "forceSaveToOnedrive";
11435
11436
 
11436
11437
  /**
11437
11438
  * in\_progress
@@ -26800,6 +26801,31 @@ declare namespace chrome {
26800
26801
  layout: PanelLayout,
26801
26802
  ) => void,
26802
26803
  ): void;
26804
+
26805
+ /**
26806
+ * Closes the extension's side panel. This is a no-op if the panel is already closed.
26807
+ *
26808
+ * @param options Specifies the context in which to close the side panel.
26809
+ * @returns Returns a Promise which resolves when the side panel has been closed.
26810
+ * @since Pending
26811
+ */
26812
+ export function close(
26813
+
26814
+ options: CloseOptions,
26815
+ ): Promise<void>;
26816
+
26817
+ /**
26818
+ * Closes the extension's side panel. This is a no-op if the panel is already closed.
26819
+ *
26820
+ * @param options Specifies the context in which to close the side panel.
26821
+ * @since Pending
26822
+ */
26823
+ export function close(
26824
+
26825
+ options: CloseOptions,
26826
+
26827
+ callback?: () => void,
26828
+ ): void;
26803
26829
  }
26804
26830
 
26805
26831
  /**
package/index.d.ts CHANGED
@@ -14,8 +14,8 @@
14
14
  * limitations under the License.
15
15
  */
16
16
 
17
- // Generated on Mon Jan 12 2026 22:33:18 GMT+0000 (Coordinated Universal Time)
18
- // Built at 7dea46963dd0037c6f8ff82fe40b378135bc23b1
17
+ // Generated on Wed Jan 14 2026 22:25:54 GMT+0000 (Coordinated Universal Time)
18
+ // Built at f87719ddef88220ac76dfe8849f12079c559ff60
19
19
 
20
20
  // Includes MV3+ APIs only.
21
21
 
@@ -7618,8 +7618,9 @@ declare namespace chrome {
7618
7618
  * @chrome-enum "accepted" The user has accepted the dangerous download.
7619
7619
  * @chrome-enum "allowlistedByPolicy" Enterprise-related values.
7620
7620
  * @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.
7621
+ * @chrome-enum "forceSaveToOnedrive" For use by the Secure Enterprise Browser extension. When required, Chrome will block the download to disc and download the file directly to OneDrive.
7621
7622
  */
7622
- 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";
7623
+ 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" | "forceSaveToOnedrive";
7623
7624
 
7624
7625
  /**
7625
7626
  * in\_progress
@@ -18976,6 +18977,31 @@ declare namespace chrome {
18976
18977
  layout: PanelLayout,
18977
18978
  ) => void,
18978
18979
  ): void;
18980
+
18981
+ /**
18982
+ * Closes the extension's side panel. This is a no-op if the panel is already closed.
18983
+ *
18984
+ * @param options Specifies the context in which to close the side panel.
18985
+ * @returns Returns a Promise which resolves when the side panel has been closed.
18986
+ * @since Pending
18987
+ */
18988
+ export function close(
18989
+
18990
+ options: CloseOptions,
18991
+ ): Promise<void>;
18992
+
18993
+ /**
18994
+ * Closes the extension's side panel. This is a no-op if the panel is already closed.
18995
+ *
18996
+ * @param options Specifies the context in which to close the side panel.
18997
+ * @since Pending
18998
+ */
18999
+ export function close(
19000
+
19001
+ options: CloseOptions,
19002
+
19003
+ callback?: () => void,
19004
+ ): void;
18979
19005
  }
18980
19006
 
18981
19007
  /**
package/package.json CHANGED
@@ -5,7 +5,7 @@
5
5
  "type": "module",
6
6
  "name": "chrome-types",
7
7
  "config": {
8
- "build-hash": "77a0b6e17849a234"
8
+ "build-hash": "40e7177851a140df"
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.410"
19
+ "version": "0.1.412"
20
20
  }