@contrast/config 1.55.0 → 1.55.1
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/LICENSE +1 -1
- package/lib/common.js +1 -1
- package/lib/config.js +1 -1
- package/lib/index.d.ts +2 -3
- package/lib/index.js +1 -1
- package/lib/options.js +1 -1
- package/lib/validators.js +1 -1
- package/package.json +3 -3
package/LICENSE
CHANGED
package/lib/common.js
CHANGED
package/lib/config.js
CHANGED
package/lib/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*
|
|
2
|
-
* Copyright:
|
|
2
|
+
* Copyright: 2026 Contrast Security, Inc
|
|
3
3
|
* Contact: support@contrastsecurity.com
|
|
4
4
|
* License: Commercial
|
|
5
5
|
|
|
@@ -14,7 +14,6 @@
|
|
|
14
14
|
*/
|
|
15
15
|
|
|
16
16
|
import { ProtectRuleMode, Rule } from '@contrast/common';
|
|
17
|
-
import { LevelWithSilent } from 'pino';
|
|
18
17
|
export { ConfigSource } from './common';
|
|
19
18
|
|
|
20
19
|
export interface EffectiveEntry<T> {
|
|
@@ -312,7 +311,7 @@ export interface Config {
|
|
|
312
311
|
server: {
|
|
313
312
|
/** Default: `os.hostname()` */
|
|
314
313
|
name: string;
|
|
315
|
-
environment?:
|
|
314
|
+
environment?: 'QA' | 'PRODUCTION' | 'DEVELOPMENT';
|
|
316
315
|
tags?: string;
|
|
317
316
|
version?: string;
|
|
318
317
|
/** Default: `true` */
|
package/lib/index.js
CHANGED
package/lib/options.js
CHANGED
package/lib/validators.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@contrast/config",
|
|
3
|
-
"version": "1.55.
|
|
3
|
+
"version": "1.55.1",
|
|
4
4
|
"description": "An API for discovering Contrast agent configuration data",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE",
|
|
6
6
|
"author": "Contrast Security <nodejs@contrastsecurity.com> (https://www.contrastsecurity.com)",
|
|
@@ -20,8 +20,8 @@
|
|
|
20
20
|
"test": "bash ../scripts/test.sh"
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@contrast/common": "1.39.
|
|
24
|
-
"@contrast/core": "1.60.
|
|
23
|
+
"@contrast/common": "1.39.1",
|
|
24
|
+
"@contrast/core": "1.60.1",
|
|
25
25
|
"deepmerge": "^4.3.1",
|
|
26
26
|
"yaml": "^2.2.2"
|
|
27
27
|
}
|