@contrast/config 1.39.0 → 1.40.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 +1 -1
- package/lib/index.js +1 -1
- package/lib/index.test.js +2 -2
- package/lib/options.js +3 -3
- package/lib/validators.js +1 -1
- package/package.json +2 -2
package/LICENSE
CHANGED
package/lib/common.js
CHANGED
package/lib/config.js
CHANGED
package/lib/index.d.ts
CHANGED
package/lib/index.js
CHANGED
package/lib/index.test.js
CHANGED
|
@@ -465,7 +465,7 @@ describe('config', function () {
|
|
|
465
465
|
{
|
|
466
466
|
canonical_name: 'agent.polling.app_activity_ms',
|
|
467
467
|
name: 'agent.polling.app_activity_ms',
|
|
468
|
-
value: '
|
|
468
|
+
value: '5000',
|
|
469
469
|
source: 'DEFAULT_VALUE'
|
|
470
470
|
},
|
|
471
471
|
{
|
|
@@ -594,7 +594,7 @@ describe('config', function () {
|
|
|
594
594
|
{
|
|
595
595
|
canonical_name: 'agent.polling.app_activity_ms',
|
|
596
596
|
name: 'agent.polling.app_activity_ms',
|
|
597
|
-
value: '
|
|
597
|
+
value: '5000',
|
|
598
598
|
source: 'DEFAULT_VALUE'
|
|
599
599
|
},
|
|
600
600
|
{
|
package/lib/options.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*
|
|
2
|
-
* Copyright:
|
|
2
|
+
* Copyright: 2025 Contrast Security, Inc
|
|
3
3
|
* Contact: support@contrastsecurity.com
|
|
4
4
|
* License: Commercial
|
|
5
5
|
|
|
@@ -279,7 +279,7 @@ const options = [
|
|
|
279
279
|
{
|
|
280
280
|
name: 'agent.polling.app_activity_ms',
|
|
281
281
|
arg: '<ms>',
|
|
282
|
-
default:
|
|
282
|
+
default: 5000,
|
|
283
283
|
fn: parseNum,
|
|
284
284
|
desc: 'Set the frequency with which the agent sends application activity to the Contrast UI.',
|
|
285
285
|
},
|
|
@@ -293,7 +293,7 @@ const options = [
|
|
|
293
293
|
{
|
|
294
294
|
name: 'agent.polling.app_update_ms',
|
|
295
295
|
arg: '<ms>',
|
|
296
|
-
default:
|
|
296
|
+
default: 5000,
|
|
297
297
|
fn: parseNum,
|
|
298
298
|
desc: 'Set the the frequency with which the agent sends application updates to the Contrast UI.',
|
|
299
299
|
},
|
package/lib/validators.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@contrast/config",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.40.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)",
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"test": "../scripts/test.sh"
|
|
18
18
|
},
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"@contrast/common": "1.29.
|
|
20
|
+
"@contrast/common": "1.29.1",
|
|
21
21
|
"yaml": "^2.2.2"
|
|
22
22
|
}
|
|
23
23
|
}
|