@verdaccio/types 14.0.0-next-9.1 → 14.0.0-next-9.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/README.md +10 -10
- package/package.json +1 -2
- package/src/configuration.ts +3 -1
- package/src/plugins/index.ts +1 -1
- package/src/plugins/storage.ts +2 -2
- package/src/types.ts +5 -5
package/README.md
CHANGED
|
@@ -29,16 +29,16 @@ If you want to report a security vulnerability, please follow the steps which we
|
|
|
29
29
|
|
|
30
30
|
Support this project by becoming a sponsor. Your logo will show up here with a link to your website. [[Become a sponsor](https://opencollective.com/verdaccio/contribute)]
|
|
31
31
|
|
|
32
|
-
[](https://opencollective.com/verdaccio/sponsor/0/website)
|
|
33
|
+
[](https://opencollective.com/verdaccio/sponsor/1/website)
|
|
34
|
+
[](https://opencollective.com/verdaccio/sponsor/2/website)
|
|
35
|
+
[](https://opencollective.com/verdaccio/sponsor/3/website)
|
|
36
|
+
[](https://opencollective.com/verdaccio/sponsor/4/website)
|
|
37
|
+
[](https://opencollective.com/verdaccio/sponsor/5/website)
|
|
38
|
+
[](https://opencollective.com/verdaccio/sponsor/6/website)
|
|
39
|
+
[](https://opencollective.com/verdaccio/sponsor/7/website)
|
|
40
|
+
[](https://opencollective.com/verdaccio/sponsor/8/website)
|
|
41
|
+
[](https://opencollective.com/verdaccio/sponsor/9/website)
|
|
42
42
|
|
|
43
43
|
## Open Collective Backers
|
|
44
44
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@verdaccio/types",
|
|
3
|
-
"version": "14.0.0-next-9.
|
|
3
|
+
"version": "14.0.0-next-9.3",
|
|
4
4
|
"description": "Verdaccio Type Definitions",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"private",
|
|
@@ -34,7 +34,6 @@
|
|
|
34
34
|
"types": "src/types.ts",
|
|
35
35
|
"devDependencies": {
|
|
36
36
|
"@types/jsonwebtoken": "9.0.7",
|
|
37
|
-
"@types/ms": "2.1.0",
|
|
38
37
|
"typedoc": "0.28.14"
|
|
39
38
|
},
|
|
40
39
|
"typedoc": {
|
package/src/configuration.ts
CHANGED
|
@@ -2,7 +2,7 @@ import type { Algorithm as Algorithms, SignOptions, VerifyOptions } from 'jsonwe
|
|
|
2
2
|
import type { AgentOptions as HttpAgentOptions } from 'node:http';
|
|
3
3
|
import type { AgentOptions as HttpsAgentOptions } from 'node:https';
|
|
4
4
|
|
|
5
|
-
import type { PackageAccess, PackageList } from '
|
|
5
|
+
import type { PackageAccess, PackageList } from './manifest';
|
|
6
6
|
|
|
7
7
|
export type TypeToken = 'Bearer' | 'Basic';
|
|
8
8
|
|
|
@@ -33,6 +33,7 @@ export type LoggerConfigItem = {
|
|
|
33
33
|
path?: string;
|
|
34
34
|
level?: LoggerLevel;
|
|
35
35
|
colors?: boolean;
|
|
36
|
+
/** Perform writes synchronously (similar to console.log). Defaults to false. */
|
|
36
37
|
sync?: boolean;
|
|
37
38
|
redact?: LoggerRedact;
|
|
38
39
|
};
|
|
@@ -127,6 +128,7 @@ export type CommonWebConf = {
|
|
|
127
128
|
logoDark?: string;
|
|
128
129
|
favicon?: string;
|
|
129
130
|
gravatar?: boolean;
|
|
131
|
+
sort_field?: string;
|
|
130
132
|
sort_packages?: string;
|
|
131
133
|
darkMode?: boolean;
|
|
132
134
|
url_prefix?: string;
|
package/src/plugins/index.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from '
|
|
1
|
+
export * from './storage';
|
package/src/plugins/storage.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import type { Callback, CallbackAction } from '
|
|
2
|
-
import type { Manifest, Token } from '
|
|
1
|
+
import type { Callback, CallbackAction } from '../commons';
|
|
2
|
+
import type { Manifest, Token } from '../manifest';
|
|
3
3
|
|
|
4
4
|
export type StorageList = string[];
|
|
5
5
|
|
package/src/types.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export * from '
|
|
2
|
-
export * from '
|
|
3
|
-
export * from '
|
|
4
|
-
export * from '
|
|
5
|
-
export * from '
|
|
1
|
+
export * from './plugins';
|
|
2
|
+
export * from './manifest';
|
|
3
|
+
export * from './search';
|
|
4
|
+
export * from './commons';
|
|
5
|
+
export * from './configuration';
|