jose-node-esm-runtime
Advanced tools
Comparing version 4.14.1 to 4.14.2
@@ -32,2 +32,7 @@ /** | ||
type JsonObject = { [Key in string]?: JsonValue } | ||
type JsonArray = JsonValue[] | ||
type JsonPrimitive = string | number | boolean | null | ||
type JsonValue = JsonPrimitive | JsonObject | JsonArray | ||
/** | ||
@@ -76,3 +81,3 @@ * JSON Web Key ({@link https://www.rfc-editor.org/rfc/rfc7517 JWK}). "RSA", "EC", "OKP", and "oct" | ||
[propName: string]: unknown | ||
[propName: string]: JsonValue | undefined | ||
} | ||
@@ -201,3 +206,3 @@ | ||
/** Any other JWS Header member. */ | ||
[propName: string]: unknown | ||
[propName: string]: JsonValue | undefined | ||
} | ||
@@ -310,3 +315,3 @@ | ||
/** Any other JWE Header member. */ | ||
[propName: string]: unknown | ||
[propName: string]: JsonValue | undefined | ||
} | ||
@@ -485,3 +490,3 @@ | ||
/** Any other JWT Claim Set member. */ | ||
[propName: string]: unknown | ||
[propName: string]: JsonValue | undefined | ||
} | ||
@@ -488,0 +493,0 @@ |
{ | ||
"name": "jose-node-esm-runtime", | ||
"version": "4.14.1", | ||
"version": "4.14.2", | ||
"homepage": "https://github.com/panva/jose", | ||
@@ -5,0 +5,0 @@ "repository": "panva/jose", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
221312
5497