@types/chrome 0.0.276 → 0.0.277

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. chrome/README.md +1 -1
  2. chrome/index.d.ts +10 -2
  3. chrome/package.json +2 -2
chrome/README.md CHANGED
@@ -8,7 +8,7 @@ This package contains type definitions for chrome (http://developer.chrome.com/e
8
8
  Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/chrome.
9
9
 
10
10
  ### Additional Details
11
- * Last updated: Thu, 03 Oct 2024 06:10:42 GMT
11
+ * Last updated: Fri, 04 Oct 2024 16:42:27 GMT
12
12
  * Dependencies: [@types/filesystem](https://npmjs.com/package/@types/filesystem), [@types/har-format](https://npmjs.com/package/@types/har-format)
13
13
 
14
14
  # Credits
chrome/index.d.ts CHANGED
@@ -7691,7 +7691,8 @@ declare namespace chrome.runtime {
7691
7691
  | "wallpaper"
7692
7692
  | "webNavigation"
7693
7693
  | "webRequest"
7694
- | "webRequestBlocking";
7694
+ | "webRequestBlocking"
7695
+ | "webRequestAuthProvider";
7695
7696
 
7696
7697
  export interface SearchProvider {
7697
7698
  name?: string | undefined;
@@ -11995,7 +11996,14 @@ declare namespace chrome.webRequest {
11995
11996
  export var onSendHeaders: WebRequestHeadersEvent;
11996
11997
  /** Fired when HTTP response headers of a request have been received. */
11997
11998
  export var onHeadersReceived: WebResponseHeadersEvent;
11998
- /** Fired when an authentication failure is received. The listener has three options: it can provide authentication credentials, it can cancel the request and display the error page, or it can take no action on the challenge. If bad user credentials are provided, this may be called multiple times for the same request. */
11999
+ /**
12000
+ * Fired when an authentication failure is received.
12001
+ * The listener has three options: it can provide authentication credentials, it can cancel the request and display the error page, or it can take no action on the challenge.
12002
+ * If bad user credentials are provided, this may be called multiple times for the same request.
12003
+ * Note, only one of `blocking` or `asyncBlocking` modes must be specified in the extraInfoSpec parameter.
12004
+ *
12005
+ * Requires the `webRequestAuthProvider` permission.
12006
+ */
11999
12007
  export var onAuthRequired: WebAuthenticationChallengeEvent;
12000
12008
  /** Fired when the first byte of the response body is received. For HTTP requests, this means that the status line and response headers are available. */
12001
12009
  export var onResponseStarted: WebResponseCacheEvent;
chrome/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/chrome",
3
- "version": "0.0.276",
3
+ "version": "0.0.277",
4
4
  "description": "TypeScript definitions for chrome",
5
5
  "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/chrome",
6
6
  "license": "MIT",
@@ -93,6 +93,6 @@
93
93
  "@types/filesystem": "*",
94
94
  "@types/har-format": "*"
95
95
  },
96
- "typesPublisherContentHash": "cab771353bda4e0ddf6c12acf47fab033aa50196f074a7329164cb7a907fee27",
96
+ "typesPublisherContentHash": "195718df3b8f342b4fc5eb96ad1c9d561e403a64a5ad238d9cad1dc357706603",
97
97
  "typeScriptVersion": "4.8"
98
98
  }