@simplewebauthn/server 7.3.0 → 7.3.1

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/README.md CHANGED
@@ -4,6 +4,7 @@
4
4
  ![WebAuthn](https://img.shields.io/badge/WebAuthn-Simplified-blueviolet?style=for-the-badge&logo=WebAuthn)
5
5
  [![npm (scoped)](https://img.shields.io/npm/v/@simplewebauthn/server?style=for-the-badge&logo=npm)](https://www.npmjs.com/package/@simplewebauthn/server)
6
6
  ![node-lts (scoped)](https://img.shields.io/node/v/@simplewebauthn/server?style=for-the-badge&logo=Node.js)
7
+ ![typescript minimum version 4.4](https://img.shields.io/badge/TypeScript-%3E%3D_4.4-3178C6?style=for-the-badge&logo=TypeScript)
7
8
 
8
9
  - [Installation](#installation)
9
10
  - [Usage](#usage)
@@ -25,10 +26,10 @@ You can find in-depth documentation on this package here: https://simplewebauthn
25
26
 
26
27
  SimpleWebAuthn supports [all current WebAuthn attestation formats](https://w3c.github.io/webauthn/#sctn-defined-attestation-formats), including:
27
28
 
28
- - **Packed**
29
- - **TPM**
30
29
  - **Android Key**
31
30
  - **Android SafetyNet**
31
+ - **Apple**
32
32
  - **FIDO U2F**
33
+ - **Packed**
34
+ - **TPM**
33
35
  - **None**
34
- - **Apple**
@@ -22,5 +22,5 @@ export type AttestationStatement = {
22
22
  get(key: 'ver'): string | undefined;
23
23
  get(key: 'certInfo'): Uint8Array | undefined;
24
24
  get(key: 'pubArea'): Uint8Array | undefined;
25
- get size(): number;
25
+ readonly size: number;
26
26
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@simplewebauthn/server",
3
- "version": "7.3.0",
3
+ "version": "7.3.1",
4
4
  "description": "SimpleWebAuthn for Servers",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -62,5 +62,5 @@
62
62
  "cross-fetch": "^3.1.5",
63
63
  "debug": "^4.3.2"
64
64
  },
65
- "gitHead": "0ab19d8f8319ff6a36dbb53d14750bd345947eb8"
65
+ "gitHead": "9757b8172d8d025eade46bd62be0e6c3c2216ea3"
66
66
  }