@bitfab/sdk 0.38.2 → 0.38.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/{chunk-CWXCVY75.js → chunk-RJPHMJWO.js} +10 -4
- package/dist/chunk-RJPHMJWO.js.map +1 -0
- package/dist/{chunk-SU7EAKOV.js → chunk-WX6AEFCP.js} +7 -2
- package/dist/{chunk-SU7EAKOV.js.map → chunk-WX6AEFCP.js.map} +1 -1
- package/dist/index.cjs +15 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +40 -4
- package/dist/index.d.ts +40 -4
- package/dist/index.js +4 -2
- package/dist/node.cjs +15 -1
- package/dist/node.cjs.map +1 -1
- package/dist/node.d.cts +1 -1
- package/dist/node.d.ts +1 -1
- package/dist/node.js +4 -2
- package/dist/node.js.map +1 -1
- package/dist/{replay-A5UVFNZ3.js → replay-FAO7D7CG.js} +2 -2
- package/dist/replayCli.js +620 -0
- package/dist/replayCli.js.map +1 -0
- package/package.json +6 -2
- package/dist/chunk-CWXCVY75.js.map +0 -1
- /package/dist/{replay-A5UVFNZ3.js.map → replay-FAO7D7CG.js.map} +0 -0
|
@@ -16,7 +16,7 @@ import {
|
|
|
16
16
|
toJsonSafe,
|
|
17
17
|
toJsonSafeReport,
|
|
18
18
|
warnOnce
|
|
19
|
-
} from "./chunk-
|
|
19
|
+
} from "./chunk-WX6AEFCP.js";
|
|
20
20
|
import {
|
|
21
21
|
__privateAdd,
|
|
22
22
|
__privateGet,
|
|
@@ -3608,7 +3608,7 @@ var Bitfab = class {
|
|
|
3608
3608
|
`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.`
|
|
3609
3609
|
);
|
|
3610
3610
|
}
|
|
3611
|
-
const { replay: doReplay } = await import("./replay-
|
|
3611
|
+
const { replay: doReplay } = await import("./replay-FAO7D7CG.js");
|
|
3612
3612
|
return doReplay(
|
|
3613
3613
|
this.httpClient,
|
|
3614
3614
|
this.serviceUrl,
|
|
@@ -3832,6 +3832,11 @@ var finalizers = {
|
|
|
3832
3832
|
readableStream
|
|
3833
3833
|
};
|
|
3834
3834
|
|
|
3835
|
+
// src/replayRegistry.ts
|
|
3836
|
+
function defineReplayRegistry(registry) {
|
|
3837
|
+
return registry;
|
|
3838
|
+
}
|
|
3839
|
+
|
|
3835
3840
|
export {
|
|
3836
3841
|
BitfabClaudeAgentHandler,
|
|
3837
3842
|
SUPPORTED_PROVIDERS,
|
|
@@ -3844,6 +3849,7 @@ export {
|
|
|
3844
3849
|
getCurrentTrace,
|
|
3845
3850
|
Bitfab,
|
|
3846
3851
|
BitfabFunction,
|
|
3847
|
-
finalizers
|
|
3852
|
+
finalizers,
|
|
3853
|
+
defineReplayRegistry
|
|
3848
3854
|
};
|
|
3849
|
-
//# sourceMappingURL=chunk-
|
|
3855
|
+
//# sourceMappingURL=chunk-RJPHMJWO.js.map
|