@verdaccio/types 13.0.0-next-8.2 → 13.0.0-next-8.3
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 +7 -0
- package/package.json +1 -1
- package/src/configuration.ts +4 -10
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
package/src/configuration.ts
CHANGED
|
@@ -40,12 +40,6 @@ export interface PackageAccessYaml {
|
|
|
40
40
|
unpublish?: string;
|
|
41
41
|
}
|
|
42
42
|
|
|
43
|
-
export interface LoggerConfItem {
|
|
44
|
-
type: LoggerType;
|
|
45
|
-
format: LoggerFormat;
|
|
46
|
-
level: LoggerLevel;
|
|
47
|
-
}
|
|
48
|
-
|
|
49
43
|
export interface Headers {
|
|
50
44
|
[key: string]: string;
|
|
51
45
|
}
|
|
@@ -202,11 +196,11 @@ export interface Security {
|
|
|
202
196
|
api: APITokenOptions;
|
|
203
197
|
}
|
|
204
198
|
|
|
205
|
-
export type ReadmeOptions = 'latest' | 'tagged' | 'all'
|
|
199
|
+
export type ReadmeOptions = 'latest' | 'tagged' | 'all';
|
|
206
200
|
|
|
207
201
|
export interface PublishOptions {
|
|
208
202
|
allow_offline: boolean;
|
|
209
|
-
keep_readmes
|
|
203
|
+
keep_readmes?: ReadmeOptions;
|
|
210
204
|
check_owners: boolean;
|
|
211
205
|
}
|
|
212
206
|
|
|
@@ -262,9 +256,9 @@ export interface ConfigYaml {
|
|
|
262
256
|
storage?: string | void;
|
|
263
257
|
packages: PackageList;
|
|
264
258
|
uplinks: UpLinksConfList;
|
|
265
|
-
log?:
|
|
259
|
+
log?: LoggerConfigItem;
|
|
266
260
|
// @deprecated deprecation path from 5.x
|
|
267
|
-
logs?:
|
|
261
|
+
logs?: LoggerConfigItem;
|
|
268
262
|
web?: WebConf;
|
|
269
263
|
auth?: AuthConf;
|
|
270
264
|
security: Security;
|