chrome-types 0.1.359 → 0.1.361
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 -6
- package/index.d.ts +8 -6
- 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 Fri Jul 11 2025 22:33:08 GMT+0000 (Coordinated Universal Time)
|
|
18
|
+
// Built at 83eed982f14dfcc882513cb92ced129156e1b0f8
|
|
19
19
|
|
|
20
20
|
// Includes all types, including MV2 + Platform Apps APIs.
|
|
21
21
|
|
|
@@ -24598,9 +24598,10 @@ declare namespace chrome {
|
|
|
24598
24598
|
* @chrome-enum "x86-64" Specifies the processer architecture as x86-64.
|
|
24599
24599
|
* @chrome-enum "mips" Specifies the processer architecture as mips.
|
|
24600
24600
|
* @chrome-enum "mips64" Specifies the processer architecture as mips64.
|
|
24601
|
+
* @chrome-enum "riscv64" Specifies the processer architecture as riscv64.
|
|
24601
24602
|
* @since Chrome 44
|
|
24602
24603
|
*/
|
|
24603
|
-
export type PlatformArch = "arm" | "arm64" | "x86-32" | "x86-64" | "mips" | "mips64";
|
|
24604
|
+
export type PlatformArch = "arm" | "arm64" | "x86-32" | "x86-64" | "mips" | "mips64" | "riscv64";
|
|
24604
24605
|
|
|
24605
24606
|
/**
|
|
24606
24607
|
* The native client architecture. This may be different from arch on some platforms.
|
|
@@ -24610,9 +24611,10 @@ declare namespace chrome {
|
|
|
24610
24611
|
* @chrome-enum "x86-64" Specifies the native client architecture as x86-64.
|
|
24611
24612
|
* @chrome-enum "mips" Specifies the native client architecture as mips.
|
|
24612
24613
|
* @chrome-enum "mips64" Specifies the native client architecture as mips64.
|
|
24614
|
+
* @chrome-enum "riscv64" Specifies the native client architecture as riscv64.
|
|
24613
24615
|
* @since Chrome 44
|
|
24614
24616
|
*/
|
|
24615
|
-
export type PlatformNaclArch = "arm" | "x86-32" | "x86-64" | "mips" | "mips64";
|
|
24617
|
+
export type PlatformNaclArch = "arm" | "x86-32" | "x86-64" | "mips" | "mips64" | "riscv64";
|
|
24616
24618
|
|
|
24617
24619
|
/**
|
|
24618
24620
|
* An object containing information about the current platform.
|
|
@@ -28979,7 +28981,7 @@ declare namespace chrome {
|
|
|
28979
28981
|
): void;
|
|
28980
28982
|
|
|
28981
28983
|
/**
|
|
28982
|
-
* Sets the desired access level for the storage area.
|
|
28984
|
+
* Sets the desired access level for the storage area. By default, `session` storage is restricted to trusted contexts (extension pages and service workers), while `local` and `sync` storage allow access from both trusted and untrusted contexts.
|
|
28983
28985
|
*
|
|
28984
28986
|
* @since Chrome 102
|
|
28985
28987
|
*/
|
|
@@ -28995,7 +28997,7 @@ declare namespace chrome {
|
|
|
28995
28997
|
): Promise<void>;
|
|
28996
28998
|
|
|
28997
28999
|
/**
|
|
28998
|
-
* Sets the desired access level for the storage area.
|
|
29000
|
+
* Sets the desired access level for the storage area. By default, `session` storage is restricted to trusted contexts (extension pages and service workers), while `local` and `sync` storage allow access from both trusted and untrusted contexts.
|
|
28999
29001
|
*
|
|
29000
29002
|
* @param callback Callback on success, or on failure (in which case {@link runtime.lastError} will be set).
|
|
29001
29003
|
* @since Chrome 102
|
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 Fri Jul 11 2025 22:33:03 GMT+0000 (Coordinated Universal Time)
|
|
18
|
+
// Built at 83eed982f14dfcc882513cb92ced129156e1b0f8
|
|
19
19
|
|
|
20
20
|
// Includes MV3+ APIs only.
|
|
21
21
|
|
|
@@ -19347,9 +19347,10 @@ declare namespace chrome {
|
|
|
19347
19347
|
* @chrome-enum "x86-64" Specifies the processer architecture as x86-64.
|
|
19348
19348
|
* @chrome-enum "mips" Specifies the processer architecture as mips.
|
|
19349
19349
|
* @chrome-enum "mips64" Specifies the processer architecture as mips64.
|
|
19350
|
+
* @chrome-enum "riscv64" Specifies the processer architecture as riscv64.
|
|
19350
19351
|
* @since Chrome 44
|
|
19351
19352
|
*/
|
|
19352
|
-
export type PlatformArch = "arm" | "arm64" | "x86-32" | "x86-64" | "mips" | "mips64";
|
|
19353
|
+
export type PlatformArch = "arm" | "arm64" | "x86-32" | "x86-64" | "mips" | "mips64" | "riscv64";
|
|
19353
19354
|
|
|
19354
19355
|
/**
|
|
19355
19356
|
* The native client architecture. This may be different from arch on some platforms.
|
|
@@ -19359,9 +19360,10 @@ declare namespace chrome {
|
|
|
19359
19360
|
* @chrome-enum "x86-64" Specifies the native client architecture as x86-64.
|
|
19360
19361
|
* @chrome-enum "mips" Specifies the native client architecture as mips.
|
|
19361
19362
|
* @chrome-enum "mips64" Specifies the native client architecture as mips64.
|
|
19363
|
+
* @chrome-enum "riscv64" Specifies the native client architecture as riscv64.
|
|
19362
19364
|
* @since Chrome 44
|
|
19363
19365
|
*/
|
|
19364
|
-
export type PlatformNaclArch = "arm" | "x86-32" | "x86-64" | "mips" | "mips64";
|
|
19366
|
+
export type PlatformNaclArch = "arm" | "x86-32" | "x86-64" | "mips" | "mips64" | "riscv64";
|
|
19365
19367
|
|
|
19366
19368
|
/**
|
|
19367
19369
|
* An object containing information about the current platform.
|
|
@@ -22430,7 +22432,7 @@ declare namespace chrome {
|
|
|
22430
22432
|
): void;
|
|
22431
22433
|
|
|
22432
22434
|
/**
|
|
22433
|
-
* Sets the desired access level for the storage area.
|
|
22435
|
+
* Sets the desired access level for the storage area. By default, `session` storage is restricted to trusted contexts (extension pages and service workers), while `local` and `sync` storage allow access from both trusted and untrusted contexts.
|
|
22434
22436
|
*
|
|
22435
22437
|
* @since Chrome 102
|
|
22436
22438
|
*/
|
|
@@ -22446,7 +22448,7 @@ declare namespace chrome {
|
|
|
22446
22448
|
): Promise<void>;
|
|
22447
22449
|
|
|
22448
22450
|
/**
|
|
22449
|
-
* Sets the desired access level for the storage area.
|
|
22451
|
+
* Sets the desired access level for the storage area. By default, `session` storage is restricted to trusted contexts (extension pages and service workers), while `local` and `sync` storage allow access from both trusted and untrusted contexts.
|
|
22450
22452
|
*
|
|
22451
22453
|
* @param callback Callback on success, or on failure (in which case {@link runtime.lastError} will be set).
|
|
22452
22454
|
* @since Chrome 102
|
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": "d6d7aec16926a074"
|
|
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.361"
|
|
20
20
|
}
|