@verdaccio/types
Advanced tools
Comparing version 9.5.0 to 9.7.0
@@ -6,2 +6,13 @@ # Change Log | ||
# [9.7.0](https://github.com/verdaccio/monorepo/compare/v9.6.1...v9.7.0) (2020-06-24) | ||
### Features | ||
* types for https config ([#368](https://github.com/verdaccio/monorepo/issues/368)) ([aa4aa83](https://github.com/verdaccio/monorepo/commit/aa4aa83e8a2f6a29ebe7c0b43ccc560a37fe2da9)) | ||
# [9.5.0](https://github.com/verdaccio/monorepo/compare/v9.4.1...v9.5.0) (2020-05-02) | ||
@@ -8,0 +19,0 @@ |
@@ -296,10 +296,15 @@ import { PassThrough } from 'stream'; | ||
interface HttpsConf { | ||
key?: string; | ||
cert?: string; | ||
interface HttpsConfKeyCert { | ||
key: string; | ||
cert: string; | ||
ca?: string; | ||
pfx?: string; | ||
} | ||
interface HttpsConfPfx { | ||
pfx: string; | ||
passphrase?: string; | ||
} | ||
type HttpsConf = HttpsConfKeyCert | HttpsConfPfx; | ||
interface JWTOptions { | ||
@@ -369,2 +374,6 @@ sign: JWTSignOptions; | ||
interface ConfigWithHttps extends Config { | ||
https: HttpsConf; | ||
} | ||
interface ITokenActions { | ||
@@ -371,0 +380,0 @@ saveToken(token: Token): Promise<any>; |
{ | ||
"name": "@verdaccio/types", | ||
"version": "9.5.0", | ||
"version": "9.7.0", | ||
"description": "verdaccio types definitions", | ||
@@ -35,3 +35,3 @@ "keywords": [ | ||
}, | ||
"gitHead": "e3bf46f6418ab9c9abf9b098cda63a000c992e57" | ||
"gitHead": "2e40ebb1eb8760c2cd4b5a239f648c79a3667a56" | ||
} |
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
37362
479
1