snyk 1.967.0 → 1.970.0

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.
Files changed (23) hide show
  1. package/dist/cli/784.index.js +3 -0
  2. package/dist/cli/784.index.js.map +1 -1
  3. package/dist/cli/917.index.js +150 -666
  4. package/dist/cli/917.index.js.map +1 -1
  5. package/dist/cli/commands/test/iac/local-execution/measurable-methods.d.ts +2 -3
  6. package/dist/cli/commands/test/iac/local-execution/process-results/{v2/cli-share-results.d.ts → cli-share-results.d.ts} +3 -3
  7. package/dist/cli/commands/test/iac/local-execution/process-results/{v1/extract-line-number.d.ts → extract-line-number.d.ts} +0 -0
  8. package/dist/cli/commands/test/iac/local-execution/process-results/index.d.ts +0 -11
  9. package/dist/cli/commands/test/iac/local-execution/process-results/{v2/policy.d.ts → policy.d.ts} +2 -2
  10. package/dist/cli/commands/test/iac/local-execution/process-results/{v2/index.d.ts → process-results.d.ts} +3 -3
  11. package/dist/cli/commands/test/iac/local-execution/process-results/{v2/results-formatter.d.ts → results-formatter.d.ts} +3 -3
  12. package/dist/cli/commands/test/iac/local-execution/process-results/{v2/share-results-formatter.d.ts → share-results-formatter.d.ts} +1 -1
  13. package/dist/cli/commands/test/iac/local-execution/process-results/{v2/share-results.d.ts → share-results.d.ts} +3 -3
  14. package/dist/cli/commands/test/iac/output.d.ts +1 -2
  15. package/dist/cli/commands/test/iac/scan.d.ts +1 -1
  16. package/dist/cli/thirdPartyNotice.json +2 -2
  17. package/package.json +1 -1
  18. package/dist/cli/commands/test/iac/local-execution/process-results/v1/index.d.ts +0 -7
  19. package/dist/cli/commands/test/iac/local-execution/process-results/v1/policy.d.ts +0 -6
  20. package/dist/cli/commands/test/iac/local-execution/process-results/v1/results-formatter.d.ts +0 -8
  21. package/dist/cli/commands/test/iac/local-execution/process-results/v1/share-results-formatter.d.ts +0 -2
  22. package/dist/cli/commands/test/iac/local-execution/process-results/v1/share-results.d.ts +0 -12
  23. package/dist/cli/commands/test/iac/local-execution/process-results/v2/extract-line-number.d.ts +0 -3
@@ -2598,6 +2598,9 @@ function formatTestMetaSection(iacMeta) {
2598
2598
  if (iacMeta.orgName) {
2599
2599
  metaSectionProperties.push(['Organization', iacMeta.orgName]);
2600
2600
  }
2601
+ if (iacMeta.projectName) {
2602
+ metaSectionProperties.push(['Project name', iacMeta.projectName]);
2603
+ }
2601
2604
  const metaSection = metaSectionProperties
2602
2605
  .map(([key, value]) => right_pad_1.rightPadWithSpaces(`${INDENT}${key}: ${value}`, PAD_LENGTH))
2603
2606
  .join(os_1.EOL);