chrome-types 0.1.294 → 0.1.295

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 +10 -3
  2. package/index.d.ts +10 -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 Tue Jul 23 2024 22:30:07 GMT+0000 (Coordinated Universal Time)
18
- // Built at 0ceee79cc06fbaee781e933f800e6e2bf2163ca0
17
+ // Generated on Fri Jul 26 2024 22:30:44 GMT+0000 (Coordinated Universal Time)
18
+ // Built at e52f34a339989fc54a0b4ad13a5b6f8f66dfa7c0
19
19
 
20
20
  // Includes all types, including MV2 + Platform Apps APIs.
21
21
 
@@ -8371,6 +8371,13 @@ declare namespace chrome {
8371
8371
  * The ID of the tab in which the hypothetical request takes place. Does not need to correspond to a real tab ID. Default is -1, meaning that the request isn't related to a tab.
8372
8372
  */
8373
8373
  tabId?: number;
8374
+
8375
+ /**
8376
+ * 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"]}`
8377
+ *
8378
+ * @since Pending
8379
+ */
8380
+ responseHeaders?: {[name: string]: any};
8374
8381
  }
8375
8382
 
8376
8383
  export interface MatchedRuleInfoDebug {
@@ -34660,7 +34667,7 @@ declare namespace chrome {
34660
34667
  extension_ids?: string[];
34661
34668
 
34662
34669
  /**
34663
- * If true, the web accessible resources will only be accessible through a dynamic ID. This is an identifier that uniquely identifies the extension and is generated each session. The corresponding dynamic extension URL is available through {@link runtime.getURL}. Dynamic resources can be loaded regardless of the value. However, if true, resources must be can only be loaded using the dynamic URL.
34670
+ * If true, the web accessible resources will only be accessible through a dynamic ID. This is an identifier that uniquely identifies the extension and is generated each session. The corresponding dynamic extension URL is available through {@link runtime.getURL}. Dynamic resources can be loaded regardless of the value. However, if true, resources can only be loaded using the dynamic URL.
34664
34671
  */
34665
34672
  use_dynamic_url?: boolean;
34666
34673
  }
package/index.d.ts CHANGED
@@ -14,8 +14,8 @@
14
14
  * limitations under the License.
15
15
  */
16
16
 
17
- // Generated on Tue Jul 23 2024 22:30:02 GMT+0000 (Coordinated Universal Time)
18
- // Built at 0ceee79cc06fbaee781e933f800e6e2bf2163ca0
17
+ // Generated on Fri Jul 26 2024 22:30:39 GMT+0000 (Coordinated Universal Time)
18
+ // Built at e52f34a339989fc54a0b4ad13a5b6f8f66dfa7c0
19
19
 
20
20
  // Includes MV3+ APIs only.
21
21
 
@@ -5117,6 +5117,13 @@ declare namespace chrome {
5117
5117
  * The ID of the tab in which the hypothetical request takes place. Does not need to correspond to a real tab ID. Default is -1, meaning that the request isn't related to a tab.
5118
5118
  */
5119
5119
  tabId?: number;
5120
+
5121
+ /**
5122
+ * 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"]}`
5123
+ *
5124
+ * @since Pending
5125
+ */
5126
+ responseHeaders?: {[name: string]: any};
5120
5127
  }
5121
5128
 
5122
5129
  export interface MatchedRuleInfoDebug {
@@ -27478,7 +27485,7 @@ declare namespace chrome {
27478
27485
  extension_ids?: string[];
27479
27486
 
27480
27487
  /**
27481
- * If true, the web accessible resources will only be accessible through a dynamic ID. This is an identifier that uniquely identifies the extension and is generated each session. The corresponding dynamic extension URL is available through {@link runtime.getURL}. Dynamic resources can be loaded regardless of the value. However, if true, resources must be can only be loaded using the dynamic URL.
27488
+ * If true, the web accessible resources will only be accessible through a dynamic ID. This is an identifier that uniquely identifies the extension and is generated each session. The corresponding dynamic extension URL is available through {@link runtime.getURL}. Dynamic resources can be loaded regardless of the value. However, if true, resources can only be loaded using the dynamic URL.
27482
27489
  */
27483
27490
  use_dynamic_url?: boolean;
27484
27491
  }
package/package.json CHANGED
@@ -5,7 +5,7 @@
5
5
  "type": "module",
6
6
  "name": "chrome-types",
7
7
  "config": {
8
- "build-hash": "156f3053fcf84482"
8
+ "build-hash": "c0fa9db002d76f5f"
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.294"
19
+ "version": "0.1.295"
20
20
  }