bitfab 0.33.2 → 0.33.3

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/dist/index.cjs CHANGED
@@ -799,11 +799,13 @@ async function replay(httpClient, serviceUrl, traceFunctionKey, fn, options, reg
799
799
  await replayContextReady;
800
800
  let codeChangeDescription = options?.codeChangeDescription;
801
801
  let codeChangeFiles = options?.codeChangeFiles;
802
- if (codeChangeDescription === void 0 && codeChangeFiles === void 0) {
802
+ if (codeChangeFiles === void 0) {
803
803
  const captured = await resolveAutoCodeChange(options?.name);
804
804
  if (captured) {
805
- codeChangeDescription = captured.description;
806
805
  codeChangeFiles = captured.files;
806
+ if (codeChangeDescription === void 0) {
807
+ codeChangeDescription = captured.description;
808
+ }
807
809
  }
808
810
  }
809
811
  const {
@@ -1012,7 +1014,7 @@ __export(index_exports, {
1012
1014
  module.exports = __toCommonJS(index_exports);
1013
1015
 
1014
1016
  // src/version.generated.ts
1015
- var __version__ = "0.33.2";
1017
+ var __version__ = "0.33.3";
1016
1018
 
1017
1019
  // src/constants.ts
1018
1020
  var DEFAULT_SERVICE_URL = "https://bitfab.ai";