@verdaccio/types 10.7.0 → 10.7.2
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/CHANGELOG.md +12 -0
- package/build/configuration.d.ts +2 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/build/configuration.d.ts
CHANGED
|
@@ -87,6 +87,7 @@ export interface APITokenOptions {
|
|
|
87
87
|
jwt?: JWTOptions;
|
|
88
88
|
}
|
|
89
89
|
export interface Security {
|
|
90
|
+
enhancedLegacySignature?: boolean;
|
|
90
91
|
web: JWTOptions;
|
|
91
92
|
api: APITokenOptions;
|
|
92
93
|
}
|
|
@@ -133,7 +134,7 @@ export interface ConfigYaml {
|
|
|
133
134
|
listen?: ListenAddress;
|
|
134
135
|
https?: HttpsConf;
|
|
135
136
|
http_proxy?: string;
|
|
136
|
-
plugins?: string | void;
|
|
137
|
+
plugins?: string | void | null;
|
|
137
138
|
https_proxy?: string;
|
|
138
139
|
no_proxy?: string;
|
|
139
140
|
max_body_size?: string;
|