chrome-types 0.1.301 → 0.1.303
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 +11 -4
- package/index.d.ts +11 -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 Wed
|
|
18
|
-
// Built at
|
|
17
|
+
// Generated on Wed Sep 11 2024 22:31:07 GMT+0000 (Coordinated Universal Time)
|
|
18
|
+
// Built at 11b0cd2d6c86551d7b15882693aaf6944d397d02
|
|
19
19
|
|
|
20
20
|
// Includes all types, including MV2 + Platform Apps APIs.
|
|
21
21
|
|
|
@@ -6887,6 +6887,13 @@ declare namespace chrome {
|
|
|
6887
6887
|
* The top-level site the partitioned cookie is available in.
|
|
6888
6888
|
*/
|
|
6889
6889
|
topLevelSite?: string;
|
|
6890
|
+
|
|
6891
|
+
/**
|
|
6892
|
+
* Indicates if the cookie was set in a cross-cross site context. This prevents a top-level site embedded in a cross-site context from accessing cookies set by the top-level site in a same-site context.
|
|
6893
|
+
*
|
|
6894
|
+
* @since Pending
|
|
6895
|
+
*/
|
|
6896
|
+
hasCrossSiteAncestor?: boolean;
|
|
6890
6897
|
}
|
|
6891
6898
|
|
|
6892
6899
|
/**
|
|
@@ -8395,7 +8402,7 @@ declare namespace chrome {
|
|
|
8395
8402
|
/**
|
|
8396
8403
|
* The headers provided by a hypothetical response if the request does not get blocked or redirected before it is sent. Represented as an object which maps a header name to a list of string values. If not specified, the hypothetical response would return empty response headers, which can match rules which match on the non-existence of headers. E.g. `{"content-type": ["text/html; charset=utf-8", "multipart/form-data"]}`
|
|
8397
8404
|
*
|
|
8398
|
-
* @since
|
|
8405
|
+
* @since Chrome 129
|
|
8399
8406
|
*/
|
|
8400
8407
|
responseHeaders?: {[name: string]: any};
|
|
8401
8408
|
}
|
|
@@ -10181,7 +10188,7 @@ declare namespace chrome {
|
|
|
10181
10188
|
/**
|
|
10182
10189
|
* Use the `chrome.devtools.performance` API to listen to recording status updates in the Performance panel in DevTools.
|
|
10183
10190
|
*
|
|
10184
|
-
* @since
|
|
10191
|
+
* @since Chrome 129
|
|
10185
10192
|
*/
|
|
10186
10193
|
export namespace devtools.performance {
|
|
10187
10194
|
|
package/index.d.ts
CHANGED
|
@@ -14,8 +14,8 @@
|
|
|
14
14
|
* limitations under the License.
|
|
15
15
|
*/
|
|
16
16
|
|
|
17
|
-
// Generated on Wed
|
|
18
|
-
// Built at
|
|
17
|
+
// Generated on Wed Sep 11 2024 22:31:03 GMT+0000 (Coordinated Universal Time)
|
|
18
|
+
// Built at 11b0cd2d6c86551d7b15882693aaf6944d397d02
|
|
19
19
|
|
|
20
20
|
// Includes MV3+ APIs only.
|
|
21
21
|
|
|
@@ -3633,6 +3633,13 @@ declare namespace chrome {
|
|
|
3633
3633
|
* The top-level site the partitioned cookie is available in.
|
|
3634
3634
|
*/
|
|
3635
3635
|
topLevelSite?: string;
|
|
3636
|
+
|
|
3637
|
+
/**
|
|
3638
|
+
* Indicates if the cookie was set in a cross-cross site context. This prevents a top-level site embedded in a cross-site context from accessing cookies set by the top-level site in a same-site context.
|
|
3639
|
+
*
|
|
3640
|
+
* @since Pending
|
|
3641
|
+
*/
|
|
3642
|
+
hasCrossSiteAncestor?: boolean;
|
|
3636
3643
|
}
|
|
3637
3644
|
|
|
3638
3645
|
/**
|
|
@@ -5141,7 +5148,7 @@ declare namespace chrome {
|
|
|
5141
5148
|
/**
|
|
5142
5149
|
* The headers provided by a hypothetical response if the request does not get blocked or redirected before it is sent. Represented as an object which maps a header name to a list of string values. If not specified, the hypothetical response would return empty response headers, which can match rules which match on the non-existence of headers. E.g. `{"content-type": ["text/html; charset=utf-8", "multipart/form-data"]}`
|
|
5143
5150
|
*
|
|
5144
|
-
* @since
|
|
5151
|
+
* @since Chrome 129
|
|
5145
5152
|
*/
|
|
5146
5153
|
responseHeaders?: {[name: string]: any};
|
|
5147
5154
|
}
|
|
@@ -6378,7 +6385,7 @@ declare namespace chrome {
|
|
|
6378
6385
|
/**
|
|
6379
6386
|
* Use the `chrome.devtools.performance` API to listen to recording status updates in the Performance panel in DevTools.
|
|
6380
6387
|
*
|
|
6381
|
-
* @since
|
|
6388
|
+
* @since Chrome 129
|
|
6382
6389
|
*/
|
|
6383
6390
|
export namespace devtools.performance {
|
|
6384
6391
|
|
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": "0875810de5bae041"
|
|
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.303"
|
|
20
20
|
}
|