chrome-types 0.1.82 → 0.1.83

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 +9 -2
  2. package/index.d.ts +9 -2
  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 Sat Jan 15 2022 22:29:31 GMT+0000 (Coordinated Universal Time)
18
- // Built at 040ad91f1757fcd307097354a34660144bbbf344
17
+ // Generated on Tue Jan 25 2022 22:28:04 GMT+0000 (Coordinated Universal Time)
18
+ // Built at 804fcff8a78eb3b4ab17d14405602d38c7c8a41a
19
19
 
20
20
  // Includes all types, including MV2 + Platform Apps APIs.
21
21
 
@@ -31533,6 +31533,13 @@ declare namespace chrome {
31533
31533
  requestInfo: IsUvpaaRequest,
31534
31534
  ) => void>;
31535
31535
 
31536
+ /**
31537
+ * Fires when a `onCreateRequest` or `onGetRequest` event is canceled (because the WebAuthn request was aborted by the caller, or because it timed out). When receiving this event, the extension should cancel processing of the corresponding request on the client side. Extensions cannot complete a request once it has been canceled.
31538
+ */
31539
+ export const onRequestCanceled: events.Event<(
31540
+ requestId: number,
31541
+ ) => void>;
31542
+
31536
31543
  /**
31537
31544
  * Reports the result of a navigator.credentials.create() call. The extension must call this for every onCreateRequest event it has received; but not if onRequestCanceled has been called for that particular requestId.
31538
31545
  */
package/index.d.ts CHANGED
@@ -14,8 +14,8 @@
14
14
  * limitations under the License.
15
15
  */
16
16
 
17
- // Generated on Sat Jan 15 2022 22:29:25 GMT+0000 (Coordinated Universal Time)
18
- // Built at 040ad91f1757fcd307097354a34660144bbbf344
17
+ // Generated on Tue Jan 25 2022 22:27:59 GMT+0000 (Coordinated Universal Time)
18
+ // Built at 804fcff8a78eb3b4ab17d14405602d38c7c8a41a
19
19
 
20
20
  // Includes MV3+ APIs only.
21
21
 
@@ -20819,6 +20819,13 @@ declare namespace chrome {
20819
20819
  requestInfo: IsUvpaaRequest,
20820
20820
  ) => void>;
20821
20821
 
20822
+ /**
20823
+ * Fires when a `onCreateRequest` or `onGetRequest` event is canceled (because the WebAuthn request was aborted by the caller, or because it timed out). When receiving this event, the extension should cancel processing of the corresponding request on the client side. Extensions cannot complete a request once it has been canceled.
20824
+ */
20825
+ export const onRequestCanceled: events.Event<(
20826
+ requestId: number,
20827
+ ) => void>;
20828
+
20822
20829
  /**
20823
20830
  * Reports the result of a navigator.credentials.create() call. The extension must call this for every onCreateRequest event it has received; but not if onRequestCanceled has been called for that particular requestId.
20824
20831
  */
package/package.json CHANGED
@@ -5,7 +5,7 @@
5
5
  "type": "module",
6
6
  "name": "chrome-types",
7
7
  "config": {
8
- "build-hash": "7209106be5968c9c"
8
+ "build-hash": "be4acf675a392b27"
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.82"
19
+ "version": "0.1.83"
20
20
  }