@bitfab/sdk 0.38.9 → 0.38.10

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
@@ -42,7 +42,7 @@ var __version__, __packageName__;
42
42
  var init_version_generated = __esm({
43
43
  "src/version.generated.ts"() {
44
44
  "use strict";
45
- __version__ = "0.38.9";
45
+ __version__ = "0.38.10";
46
46
  __packageName__ = "@bitfab/sdk";
47
47
  }
48
48
  });
@@ -6162,6 +6162,7 @@ var Bitfab = class {
6162
6162
  return invokeWithoutNode();
6163
6163
  }
6164
6164
  spansUsed += 1;
6165
+ const mockOnReplay = nodeConfiguration?.mockOnReplay ?? options.mockOnReplayDefault;
6165
6166
  const childOptions = {
6166
6167
  name: nodeConfiguration?.name ?? definition.name,
6167
6168
  type: nodeConfiguration?.type ?? "function",
@@ -6172,8 +6173,8 @@ var Bitfab = class {
6172
6173
  ...nodeConfiguration?.testRunId !== void 0 && {
6173
6174
  testRunId: nodeConfiguration.testRunId
6174
6175
  },
6175
- ...nodeConfiguration?.mockOnReplay !== void 0 && {
6176
- mockOnReplay: nodeConfiguration.mockOnReplay
6176
+ ...mockOnReplay !== void 0 && {
6177
+ mockOnReplay
6177
6178
  },
6178
6179
  ...nodeConfiguration?.finalize !== void 0 && {
6179
6180
  finalize: nodeConfiguration.finalize