slnodejs 6.2.14 → 6.2.16

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 (31) hide show
  1. package/browser-agent/dist/browser-agent-all.js +4 -1
  2. package/browser-agent/dist/browser-agent-all.min.js +2 -2
  3. package/messages/common/package.json +1 -1
  4. package/messages/common/test-listener.json +4 -1
  5. package/package.json +1 -1
  6. package/tsOutputs/build-scanner/build-diff-process.js +2 -2
  7. package/tsOutputs/build-scanner/build-diff-process.js.map +1 -1
  8. package/tsOutputs/build-scanner/mappings/ensure-files-handler.service.js +33 -1
  9. package/tsOutputs/build-scanner/mappings/ensure-files-handler.service.js.map +1 -1
  10. package/tsOutputs/build-scanner/mappings/file-path-fixer.js +146 -53
  11. package/tsOutputs/build-scanner/mappings/file-path-fixer.js.map +1 -1
  12. package/tsOutputs/build-scanner/scm/scm-file-fixer.js +2 -2
  13. package/tsOutputs/build-scanner/scm/scm-file-fixer.js.map +1 -1
  14. package/tsOutputs/build-scanner/scm/scm-files-container.js +1 -1
  15. package/tsOutputs/build-scanner/scm/scm-files-container.js.map +1 -1
  16. package/tsOutputs/cli-parse/cli.js +2 -0
  17. package/tsOutputs/cli-parse/cli.js.map +1 -1
  18. package/tsOutputs/cli-parse/config/keys/scan-command-keys.js +15 -0
  19. package/tsOutputs/cli-parse/config/keys/scan-command-keys.js.map +1 -1
  20. package/tsOutputs/cli-parse/config/migration/legacy-adapters.js +5 -1
  21. package/tsOutputs/cli-parse/config/migration/legacy-adapters.js.map +1 -1
  22. package/tsOutputs/cli-parse/contracts.d.ts +4 -0
  23. package/tsOutputs/cli-parse/contracts.js.map +1 -1
  24. package/tsOutputs/cli-parse/executors/build-args-dto.js +2 -0
  25. package/tsOutputs/cli-parse/executors/build-args-dto.js.map +1 -1
  26. package/tsOutputs/common/config-process/config.d.ts +2 -0
  27. package/tsOutputs/common/config-process/config.js +4 -0
  28. package/tsOutputs/common/config-process/config.js.map +1 -1
  29. package/tsOutputs/messages/message-keys.generated.d.ts +3 -1
  30. package/tsOutputs/messages/message-keys.generated.js +3 -2
  31. package/tsOutputs/messages/message-keys.generated.js.map +1 -1
@@ -1037,7 +1037,7 @@ var __awaiter = this && this.__awaiter || function (thisArg, _arguments, P, gene
1037
1037
  value: true
1038
1038
  });
1039
1039
  exports.SL_AGENT_TYPE = exports.SL_AGENT_VERSION = void 0;
1040
- exports.SL_AGENT_VERSION = '6.2.14';
1040
+ exports.SL_AGENT_VERSION = '6.2.16';
1041
1041
  exports.SL_AGENT_TYPE = 'browser';
1042
1042
  });
1043
1043
 
@@ -4872,6 +4872,8 @@ var __awaiter = this && this.__awaiter || function (thisArg, _arguments, P, gene
4872
4872
  this.embedCorrectUniqueIdFileBatchSize = new config_system_1.NumberConfigKey(false, 10);
4873
4873
  this.recognizeBabelCreateClass = new config_system_1.BooleanConfigKey(false, false);
4874
4874
  this.preferSourceMapFromFile = new config_system_1.BooleanConfigKey(false, false);
4875
+ this.useChunkAwareSourceResolution = new config_system_1.BooleanConfigKey(false, false);
4876
+ this.sourceRoot = new config_system_1.StringConfigKey(false);
4875
4877
  this.enrichByMethodRange = new config_system_1.BooleanConfigKey(false, false);
4876
4878
  this.experimentalDeduplicateEnrichedMethodsWithOriginals = new config_system_1.BooleanConfigKey(false, false);
4877
4879
  this.testProjectId = new config_system_1.StringConfigKey(false);
@@ -10578,6 +10580,7 @@ var __awaiter = this && this.__awaiter || function (thisArg, _arguments, P, gene
10578
10580
  TestListenerMessages["MISSING_BUILD_SESSION_OR_LAB_ID"] = "missing-build-session-or-lab-id";
10579
10581
  TestListenerMessages["CLI_INVALID_CONFIGURATION"] = "cli-invalid-configuration";
10580
10582
  TestListenerMessages["AGENT_UNLOADED_DUE_TO_APPLICATION_SHUTDOWN"] = "agent-unloaded-due-to-application-shutdown";
10583
+ TestListenerMessages["LISTENER_BUILDSESSIONID_WAS_NOT_SCANNED_ERROR"] = "listener-buildsessionid-was-not-scanned-error";
10581
10584
  })(TestListenerMessages = exports.TestListenerMessages || (exports.TestListenerMessages = {}));
10582
10585
  exports.ALL_MESSAGE_KEYS = [...Object.values(BuildScannerMessages), ...Object.values(CdAgentMessages), ...Object.values(ErrorNetworkMessages), ...Object.values(GeneralMessages), ...Object.values(TestListenerMessages)];
10583
10586
  });