@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/{chunk-2I5TFNGK.js → chunk-BNOVHUQB.js} +2 -2
- package/dist/chunk-BNOVHUQB.js.map +1 -0
- package/dist/{chunk-B4XXAK74.js → chunk-UE4GGPM6.js} +6 -5
- package/dist/chunk-UE4GGPM6.js.map +1 -0
- package/dist/index.cjs +4 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +7 -1
- package/dist/index.d.ts +7 -1
- package/dist/index.js +2 -2
- package/dist/node.cjs +4 -3
- package/dist/node.cjs.map +1 -1
- package/dist/node.js +2 -2
- package/dist/{replay-EC7CQOO3.js → replay-SMUBBMNK.js} +2 -2
- package/package.json +1 -1
- package/dist/chunk-2I5TFNGK.js.map +0 -1
- package/dist/chunk-B4XXAK74.js.map +0 -1
- /package/dist/{replay-EC7CQOO3.js.map → replay-SMUBBMNK.js.map} +0 -0
|
@@ -19,7 +19,7 @@ import {
|
|
|
19
19
|
toJsonSafe,
|
|
20
20
|
toJsonSafeReport,
|
|
21
21
|
warnOnce
|
|
22
|
-
} from "./chunk-
|
|
22
|
+
} from "./chunk-BNOVHUQB.js";
|
|
23
23
|
import {
|
|
24
24
|
__privateAdd,
|
|
25
25
|
__privateGet,
|
|
@@ -2870,6 +2870,7 @@ var Bitfab = class {
|
|
|
2870
2870
|
return invokeWithoutNode();
|
|
2871
2871
|
}
|
|
2872
2872
|
spansUsed += 1;
|
|
2873
|
+
const mockOnReplay = nodeConfiguration?.mockOnReplay ?? options.mockOnReplayDefault;
|
|
2873
2874
|
const childOptions = {
|
|
2874
2875
|
name: nodeConfiguration?.name ?? definition.name,
|
|
2875
2876
|
type: nodeConfiguration?.type ?? "function",
|
|
@@ -2880,8 +2881,8 @@ var Bitfab = class {
|
|
|
2880
2881
|
...nodeConfiguration?.testRunId !== void 0 && {
|
|
2881
2882
|
testRunId: nodeConfiguration.testRunId
|
|
2882
2883
|
},
|
|
2883
|
-
...
|
|
2884
|
-
mockOnReplay
|
|
2884
|
+
...mockOnReplay !== void 0 && {
|
|
2885
|
+
mockOnReplay
|
|
2885
2886
|
},
|
|
2886
2887
|
...nodeConfiguration?.finalize !== void 0 && {
|
|
2887
2888
|
finalize: nodeConfiguration.finalize
|
|
@@ -4112,7 +4113,7 @@ var Bitfab = class {
|
|
|
4112
4113
|
`Function is wrapped with trace function key '${wrappedKey}' but replay was called with '${traceFunctionKey}'. Pass matching keys, or pass the unwrapped function to replay it under the explicit key.`
|
|
4113
4114
|
);
|
|
4114
4115
|
}
|
|
4115
|
-
const { replay: doReplay } = await import("./replay-
|
|
4116
|
+
const { replay: doReplay } = await import("./replay-SMUBBMNK.js");
|
|
4116
4117
|
return doReplay(
|
|
4117
4118
|
this.httpClient,
|
|
4118
4119
|
this.serviceUrl,
|
|
@@ -4365,4 +4366,4 @@ export {
|
|
|
4365
4366
|
finalizers,
|
|
4366
4367
|
defineReplayRegistry
|
|
4367
4368
|
};
|
|
4368
|
-
//# sourceMappingURL=chunk-
|
|
4369
|
+
//# sourceMappingURL=chunk-UE4GGPM6.js.map
|