@bitfab/sdk 0.43.0 → 0.43.1
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-6EM2S5H5.js → chunk-5LY4XOUY.js} +2 -2
- package/dist/{chunk-6EM2S5H5.js.map → chunk-5LY4XOUY.js.map} +1 -1
- package/dist/{chunk-BBJSKBVJ.js → chunk-RBKGO5ZC.js} +2 -2
- package/dist/{chunk-BBJSKBVJ.js.map → chunk-RBKGO5ZC.js.map} +1 -1
- package/dist/{chunk-BXBRVWWW.js → chunk-TNGKCPBP.js} +2 -2
- package/dist/chunk-TNGKCPBP.js.map +1 -0
- package/dist/{chunk-5BBJ5BQD.js → chunk-V4MRFSWK.js} +6 -6
- package/dist/{chunk-5BBJ5BQD.js.map → chunk-V4MRFSWK.js.map} +1 -1
- package/dist/{http-R553H2H2.js → http-FKD4GT55.js} +2 -2
- package/dist/{http-IO3Y7ROJ.js → http-TPVUGXYJ.js} +2 -2
- package/dist/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -12
- package/dist/index.d.ts +1 -12
- package/dist/index.js +3 -3
- package/dist/node.cjs +1 -1
- package/dist/node.cjs.map +1 -1
- package/dist/node.js +3 -3
- package/dist/{replay-LM4GIDVD.js → replay-PICGOZVG.js} +3 -3
- package/dist/replayCli.js +2 -2
- package/dist/replayCli.js.map +1 -1
- package/package.json +1 -1
- package/dist/chunk-BXBRVWWW.js.map +0 -1
- /package/dist/{http-IO3Y7ROJ.js.map → http-FKD4GT55.js.map} +0 -0
- /package/dist/{http-R553H2H2.js.map → http-TPVUGXYJ.js.map} +0 -0
- /package/dist/{replay-LM4GIDVD.js.map → replay-PICGOZVG.js.map} +0 -0
package/dist/index.d.cts
CHANGED
|
@@ -1434,12 +1434,6 @@ declare class BitfabOpenAIAgentHandler {
|
|
|
1434
1434
|
*/
|
|
1435
1435
|
|
|
1436
1436
|
type MockStrategy = "none" | "all" | "marked";
|
|
1437
|
-
/**
|
|
1438
|
-
* How a source trace came to exist. A `seeded` trace was written from a case
|
|
1439
|
-
* with {@link Bitfab.seedTrace} rather than executed, so it has no recorded
|
|
1440
|
-
* child spans to mock from and no database state to restore, and its recorded
|
|
1441
|
-
* output is the value the case expected rather than a previous run's result.
|
|
1442
|
-
*/
|
|
1443
1437
|
type TraceIngestionType = "captured" | "seeded";
|
|
1444
1438
|
/**
|
|
1445
1439
|
* How the DB-snapshot branch each replay item runs against is sized and warmed.
|
|
@@ -1787,11 +1781,6 @@ interface ReplayItem<T> {
|
|
|
1787
1781
|
input: unknown[];
|
|
1788
1782
|
/** The result returned by the function during replay, or undefined on error. */
|
|
1789
1783
|
result: T | undefined;
|
|
1790
|
-
/**
|
|
1791
|
-
* The original output from the historical trace. For a `seeded` source this
|
|
1792
|
-
* is the value the case expected, not a previous run's result, so a
|
|
1793
|
-
* difference means the code missed the expectation rather than drifted.
|
|
1794
|
-
*/
|
|
1795
1784
|
originalOutput: unknown;
|
|
1796
1785
|
/**
|
|
1797
1786
|
* How the source trace came to exist. Absent on servers that predate the
|
|
@@ -3089,7 +3078,7 @@ declare class BitfabFunction {
|
|
|
3089
3078
|
/**
|
|
3090
3079
|
* SDK version from package.json (injected at build time)
|
|
3091
3080
|
*/
|
|
3092
|
-
declare const __version__ = "0.43.
|
|
3081
|
+
declare const __version__ = "0.43.1";
|
|
3093
3082
|
|
|
3094
3083
|
/**
|
|
3095
3084
|
* Constants for the Bitfab SDK.
|
package/dist/index.d.ts
CHANGED
|
@@ -1434,12 +1434,6 @@ declare class BitfabOpenAIAgentHandler {
|
|
|
1434
1434
|
*/
|
|
1435
1435
|
|
|
1436
1436
|
type MockStrategy = "none" | "all" | "marked";
|
|
1437
|
-
/**
|
|
1438
|
-
* How a source trace came to exist. A `seeded` trace was written from a case
|
|
1439
|
-
* with {@link Bitfab.seedTrace} rather than executed, so it has no recorded
|
|
1440
|
-
* child spans to mock from and no database state to restore, and its recorded
|
|
1441
|
-
* output is the value the case expected rather than a previous run's result.
|
|
1442
|
-
*/
|
|
1443
1437
|
type TraceIngestionType = "captured" | "seeded";
|
|
1444
1438
|
/**
|
|
1445
1439
|
* How the DB-snapshot branch each replay item runs against is sized and warmed.
|
|
@@ -1787,11 +1781,6 @@ interface ReplayItem<T> {
|
|
|
1787
1781
|
input: unknown[];
|
|
1788
1782
|
/** The result returned by the function during replay, or undefined on error. */
|
|
1789
1783
|
result: T | undefined;
|
|
1790
|
-
/**
|
|
1791
|
-
* The original output from the historical trace. For a `seeded` source this
|
|
1792
|
-
* is the value the case expected, not a previous run's result, so a
|
|
1793
|
-
* difference means the code missed the expectation rather than drifted.
|
|
1794
|
-
*/
|
|
1795
1784
|
originalOutput: unknown;
|
|
1796
1785
|
/**
|
|
1797
1786
|
* How the source trace came to exist. Absent on servers that predate the
|
|
@@ -3089,7 +3078,7 @@ declare class BitfabFunction {
|
|
|
3089
3078
|
/**
|
|
3090
3079
|
* SDK version from package.json (injected at build time)
|
|
3091
3080
|
*/
|
|
3092
|
-
declare const __version__ = "0.43.
|
|
3081
|
+
declare const __version__ = "0.43.1";
|
|
3093
3082
|
|
|
3094
3083
|
/**
|
|
3095
3084
|
* Constants for the Bitfab SDK.
|
package/dist/index.js
CHANGED
|
@@ -15,7 +15,7 @@ import {
|
|
|
15
15
|
getCurrentSpan,
|
|
16
16
|
getCurrentTrace,
|
|
17
17
|
seedFromRegistry
|
|
18
|
-
} from "./chunk-
|
|
18
|
+
} from "./chunk-V4MRFSWK.js";
|
|
19
19
|
import "./chunk-ZUD7OFYB.js";
|
|
20
20
|
import {
|
|
21
21
|
BITFAB_PROGRESS_PREFIX,
|
|
@@ -24,14 +24,14 @@ import {
|
|
|
24
24
|
ReplayError,
|
|
25
25
|
reportReplayProgress,
|
|
26
26
|
serializeReplayResult
|
|
27
|
-
} from "./chunk-
|
|
27
|
+
} from "./chunk-TNGKCPBP.js";
|
|
28
28
|
import {
|
|
29
29
|
BitfabError,
|
|
30
30
|
DEFAULT_SERVICE_URL,
|
|
31
31
|
HttpClient,
|
|
32
32
|
__version__,
|
|
33
33
|
flushTraces
|
|
34
|
-
} from "./chunk-
|
|
34
|
+
} from "./chunk-5LY4XOUY.js";
|
|
35
35
|
import "./chunk-H6LZRFMN.js";
|
|
36
36
|
export {
|
|
37
37
|
BITFAB_PROGRESS_PREFIX,
|