chrome-types 0.1.408 → 0.1.410

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 +17 -7
  2. package/index.d.ts +17 -7
  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 Wed Jan 07 2026 16:17:46 GMT+0000 (Coordinated Universal Time)
18
- // Built at c91f575e0cb9bde5c5d1901c457703397f3ea4f0
17
+ // Generated on Mon Jan 12 2026 22:33:22 GMT+0000 (Coordinated Universal Time)
18
+ // Built at 7dea46963dd0037c6f8ff82fe40b378135bc23b1
19
19
 
20
20
  // Includes all types, including MV2 + Platform Apps APIs.
21
21
 
@@ -4038,6 +4038,13 @@ declare namespace chrome {
4038
4038
  */
4039
4039
  export const MAX_SUSTAINED_WRITE_OPERATIONS_PER_MINUTE: 1000000;
4040
4040
 
4041
+ /**
4042
+ * The `id` associated with the root level node.
4043
+ *
4044
+ * @since Pending
4045
+ */
4046
+ export const ROOT_NODE_ID: "0";
4047
+
4041
4048
  /**
4042
4049
  * Fired when a bookmark or folder is created.
4043
4050
  */
@@ -4982,6 +4989,7 @@ declare namespace chrome {
4982
4989
  * Stored passwords.
4983
4990
  *
4984
4991
  * @deprecated Support for password deletion through extensions has been removed. This data type will be ignored.
4992
+ * @chrome-deprecated-since Chrome 144
4985
4993
  */
4986
4994
  passwords?: boolean;
4987
4995
 
@@ -5320,6 +5328,7 @@ declare namespace chrome {
5320
5328
  * @chrome-returns-extra since Chrome 96
5321
5329
  * @returns Resolves when the browser's passwords have been cleared.
5322
5330
  * @deprecated Support for password deletion through extensions has been removed. This function has no effect.
5331
+ * @chrome-deprecated-since Chrome 144
5323
5332
  */
5324
5333
  export function removePasswords(
5325
5334
 
@@ -5330,6 +5339,7 @@ declare namespace chrome {
5330
5339
  * Clears the browser's stored passwords.
5331
5340
  *
5332
5341
  * @deprecated Support for password deletion through extensions has been removed. This function has no effect.
5342
+ * @chrome-deprecated-since Chrome 144
5333
5343
  */
5334
5344
  export function removePasswords(
5335
5345
 
@@ -24823,7 +24833,7 @@ declare namespace chrome {
24823
24833
  */
24824
24834
  response?: any,
24825
24835
  ) => void,
24826
- ) => boolean | undefined>;
24836
+ ) => (boolean | Promise<any>) | undefined>;
24827
24837
 
24828
24838
  /**
24829
24839
  * Fired when a message is sent from a user script associated with the same extension.
@@ -26652,7 +26662,7 @@ declare namespace chrome {
26652
26662
  /**
26653
26663
  * Fired when the extension's side panel is closed.
26654
26664
  *
26655
- * @since Pending
26665
+ * @since Chrome 144
26656
26666
  */
26657
26667
  export const onClosed: events.Event<(
26658
26668
  info: PanelClosedInfo,
@@ -28849,7 +28859,7 @@ declare namespace chrome {
28849
28859
  *
28850
28860
  * @chrome-returns-extra since Chrome 95
28851
28861
  * @param keys A single key to get, list of keys to get, or a dictionary specifying default values (see description of the object). An empty list or object will return an empty result object. Pass in `null` to get the entire contents of storage.
28852
- * @returns Promise that resolves with storage items, or rejects on failure.
28862
+ * @returns Promise that resolves with an object containing a key-value map for the requested items, or rejects on failure.
28853
28863
  */
28854
28864
  get(
28855
28865
 
@@ -36952,7 +36962,7 @@ declare namespace chrome {
36952
36962
  }
36953
36963
 
36954
36964
  /**
36955
- * @since Pending
36965
+ * @since Chrome 144
36956
36966
  */
36957
36967
  export interface SecurityInfo {
36958
36968
 
@@ -37392,7 +37402,7 @@ declare namespace chrome {
37392
37402
  /**
37393
37403
  * Information about the TLS/QUIC connection used for the underlying connection. Only provided if `securityInfo` is specified in the `extraInfoSpec` parameter.
37394
37404
  *
37395
- * @since Pending
37405
+ * @since Chrome 144
37396
37406
  */
37397
37407
  securityInfo?: SecurityInfo,
37398
37408
  },
package/index.d.ts CHANGED
@@ -14,8 +14,8 @@
14
14
  * limitations under the License.
15
15
  */
16
16
 
17
- // Generated on Wed Jan 07 2026 16:17:41 GMT+0000 (Coordinated Universal Time)
18
- // Built at c91f575e0cb9bde5c5d1901c457703397f3ea4f0
17
+ // Generated on Mon Jan 12 2026 22:33:18 GMT+0000 (Coordinated Universal Time)
18
+ // Built at 7dea46963dd0037c6f8ff82fe40b378135bc23b1
19
19
 
20
20
  // Includes MV3+ APIs only.
21
21
 
@@ -1413,6 +1413,13 @@ declare namespace chrome {
1413
1413
  */
1414
1414
  export const MAX_SUSTAINED_WRITE_OPERATIONS_PER_MINUTE: 1000000;
1415
1415
 
1416
+ /**
1417
+ * The `id` associated with the root level node.
1418
+ *
1419
+ * @since Pending
1420
+ */
1421
+ export const ROOT_NODE_ID: "0";
1422
+
1416
1423
  /**
1417
1424
  * Fired when a bookmark or folder is created.
1418
1425
  */
@@ -1918,6 +1925,7 @@ declare namespace chrome {
1918
1925
  * Stored passwords.
1919
1926
  *
1920
1927
  * @deprecated Support for password deletion through extensions has been removed. This data type will be ignored.
1928
+ * @chrome-deprecated-since Chrome 144
1921
1929
  */
1922
1930
  passwords?: boolean;
1923
1931
 
@@ -2256,6 +2264,7 @@ declare namespace chrome {
2256
2264
  * @chrome-returns-extra since Chrome 96
2257
2265
  * @returns Resolves when the browser's passwords have been cleared.
2258
2266
  * @deprecated Support for password deletion through extensions has been removed. This function has no effect.
2267
+ * @chrome-deprecated-since Chrome 144
2259
2268
  */
2260
2269
  export function removePasswords(
2261
2270
 
@@ -2266,6 +2275,7 @@ declare namespace chrome {
2266
2275
  * Clears the browser's stored passwords.
2267
2276
  *
2268
2277
  * @deprecated Support for password deletion through extensions has been removed. This function has no effect.
2278
+ * @chrome-deprecated-since Chrome 144
2269
2279
  */
2270
2280
  export function removePasswords(
2271
2281
 
@@ -17605,7 +17615,7 @@ declare namespace chrome {
17605
17615
  */
17606
17616
  response?: any,
17607
17617
  ) => void,
17608
- ) => boolean | undefined>;
17618
+ ) => (boolean | Promise<any>) | undefined>;
17609
17619
 
17610
17620
  /**
17611
17621
  * Fired when a message is sent from a user script associated with the same extension.
@@ -18828,7 +18838,7 @@ declare namespace chrome {
18828
18838
  /**
18829
18839
  * Fired when the extension's side panel is closed.
18830
18840
  *
18831
- * @since Pending
18841
+ * @since Chrome 144
18832
18842
  */
18833
18843
  export const onClosed: events.Event<(
18834
18844
  info: PanelClosedInfo,
@@ -20386,7 +20396,7 @@ declare namespace chrome {
20386
20396
  *
20387
20397
  * @chrome-returns-extra since Chrome 95
20388
20398
  * @param keys A single key to get, list of keys to get, or a dictionary specifying default values (see description of the object). An empty list or object will return an empty result object. Pass in `null` to get the entire contents of storage.
20389
- * @returns Promise that resolves with storage items, or rejects on failure.
20399
+ * @returns Promise that resolves with an object containing a key-value map for the requested items, or rejects on failure.
20390
20400
  */
20391
20401
  get(
20392
20402
 
@@ -26872,7 +26882,7 @@ declare namespace chrome {
26872
26882
  }
26873
26883
 
26874
26884
  /**
26875
- * @since Pending
26885
+ * @since Chrome 144
26876
26886
  */
26877
26887
  export interface SecurityInfo {
26878
26888
 
@@ -27312,7 +27322,7 @@ declare namespace chrome {
27312
27322
  /**
27313
27323
  * Information about the TLS/QUIC connection used for the underlying connection. Only provided if `securityInfo` is specified in the `extraInfoSpec` parameter.
27314
27324
  *
27315
- * @since Pending
27325
+ * @since Chrome 144
27316
27326
  */
27317
27327
  securityInfo?: SecurityInfo,
27318
27328
  },
package/package.json CHANGED
@@ -5,7 +5,7 @@
5
5
  "type": "module",
6
6
  "name": "chrome-types",
7
7
  "config": {
8
- "build-hash": "10b56817e6cd2784"
8
+ "build-hash": "77a0b6e17849a234"
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.408"
19
+ "version": "0.1.410"
20
20
  }