@contrast/config 1.58.0 → 1.58.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/lib/index.d.ts CHANGED
@@ -231,6 +231,8 @@ export interface Config {
231
231
  };
232
232
  /** Set the full path of the npm executable, used for library analysis. Default: `'npm'` */
233
233
  npm_path: string;
234
+ /** Default: `false` */
235
+ mask_http_body: boolean;
234
236
  };
235
237
  };
236
238
 
package/lib/options.js CHANGED
@@ -588,6 +588,11 @@ Example - \`/opt/Contrast/contrast.log\` creates a log in the \`/opt/Contrast\`
588
588
  default: 'npm',
589
589
  desc: 'Set the full path of the npm executable, used for library analysis',
590
590
  },
591
+ {
592
+ name: 'agent.node.mask_http_body',
593
+ arg: '[false]',
594
+ desc: 'Mask the HTTP request body with `xxxx`',
595
+ },
591
596
  // inventory
592
597
  {
593
598
  name: 'inventory.analyze_libraries',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@contrast/config",
3
- "version": "1.58.0",
3
+ "version": "1.58.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)",
@@ -21,8 +21,8 @@
21
21
  },
22
22
  "dependencies": {
23
23
  "@contrast/common": "1.41.1",
24
- "@contrast/core": "1.63.0",
25
- "deepmerge": "^4.3.1",
26
- "yaml": "^2.2.2"
24
+ "@contrast/core": "1.63.1",
25
+ "deepmerge": "4.3.1",
26
+ "yaml": "2.2.2"
27
27
  }
28
28
  }