bitfab 0.13.1 → 0.13.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-3JCQD7E5.js → chunk-LOZFAPCS.js} +2 -2
- package/dist/{chunk-3JCQD7E5.js.map → chunk-LOZFAPCS.js.map} +1 -1
- package/dist/{chunk-HIDM5UYA.js → chunk-NHYPYRQB.js} +3 -3
- package/dist/chunk-NHYPYRQB.js.map +1 -0
- package/dist/index.cjs +10 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +11 -2
- package/dist/node.cjs +10 -1
- package/dist/node.cjs.map +1 -1
- package/dist/node.js +11 -2
- package/dist/{replay-NTGRDVES.js → replay-JX33WJUT.js} +2 -2
- package/package.json +1 -1
- package/dist/chunk-HIDM5UYA.js.map +0 -1
- /package/dist/{replay-NTGRDVES.js.map → replay-JX33WJUT.js.map} +0 -0
package/dist/index.d.cts
CHANGED
|
@@ -53,7 +53,7 @@ interface ActiveSpanContext$2 {
|
|
|
53
53
|
* Bitfab spans with proper parent-child hierarchy.
|
|
54
54
|
*
|
|
55
55
|
* ```typescript
|
|
56
|
-
* import { Bitfab } from "bitfab";
|
|
56
|
+
* import { Bitfab } from "@bitfab/sdk";
|
|
57
57
|
* import { ClaudeSDKClient } from "@anthropic-ai/claude-agent-sdk";
|
|
58
58
|
*
|
|
59
59
|
* const bitfab = new Bitfab({ apiKey: "..." });
|
|
@@ -875,7 +875,7 @@ declare class BitfabFunction {
|
|
|
875
875
|
/**
|
|
876
876
|
* SDK version from package.json (injected at build time)
|
|
877
877
|
*/
|
|
878
|
-
declare const __version__ = "0.13.
|
|
878
|
+
declare const __version__ = "0.13.3";
|
|
879
879
|
|
|
880
880
|
/**
|
|
881
881
|
* Constants for the Bitfab SDK.
|
package/dist/index.d.ts
CHANGED
|
@@ -53,7 +53,7 @@ interface ActiveSpanContext$2 {
|
|
|
53
53
|
* Bitfab spans with proper parent-child hierarchy.
|
|
54
54
|
*
|
|
55
55
|
* ```typescript
|
|
56
|
-
* import { Bitfab } from "bitfab";
|
|
56
|
+
* import { Bitfab } from "@bitfab/sdk";
|
|
57
57
|
* import { ClaudeSDKClient } from "@anthropic-ai/claude-agent-sdk";
|
|
58
58
|
*
|
|
59
59
|
* const bitfab = new Bitfab({ apiKey: "..." });
|
|
@@ -875,7 +875,7 @@ declare class BitfabFunction {
|
|
|
875
875
|
/**
|
|
876
876
|
* SDK version from package.json (injected at build time)
|
|
877
877
|
*/
|
|
878
|
-
declare const __version__ = "0.13.
|
|
878
|
+
declare const __version__ = "0.13.3";
|
|
879
879
|
|
|
880
880
|
/**
|
|
881
881
|
* Constants for the Bitfab SDK.
|
package/dist/index.js
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
|
|
2
|
+
if (typeof globalThis.__bitfab_deprecation_warned === "undefined") {
|
|
3
|
+
globalThis.__bitfab_deprecation_warned = true;
|
|
4
|
+
console.warn(
|
|
5
|
+
'[bitfab] The "bitfab" package has been renamed to "@bitfab/sdk". ' +
|
|
6
|
+
"Please update your dependency: npm install @bitfab/sdk (and remove bitfab). " +
|
|
7
|
+
"The bitfab package will stop receiving updates in a future release."
|
|
8
|
+
);
|
|
9
|
+
}
|
|
1
10
|
import {
|
|
2
11
|
Bitfab,
|
|
3
12
|
BitfabClaudeAgentHandler,
|
|
@@ -6,13 +15,13 @@ import {
|
|
|
6
15
|
BitfabOpenAITracingProcessor,
|
|
7
16
|
getCurrentSpan,
|
|
8
17
|
getCurrentTrace
|
|
9
|
-
} from "./chunk-
|
|
18
|
+
} from "./chunk-NHYPYRQB.js";
|
|
10
19
|
import {
|
|
11
20
|
BitfabError,
|
|
12
21
|
DEFAULT_SERVICE_URL,
|
|
13
22
|
__version__,
|
|
14
23
|
flushTraces
|
|
15
|
-
} from "./chunk-
|
|
24
|
+
} from "./chunk-LOZFAPCS.js";
|
|
16
25
|
export {
|
|
17
26
|
Bitfab,
|
|
18
27
|
BitfabClaudeAgentHandler,
|
package/dist/node.cjs
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
|
|
2
|
+
if (typeof globalThis.__bitfab_deprecation_warned === "undefined") {
|
|
3
|
+
globalThis.__bitfab_deprecation_warned = true;
|
|
4
|
+
console.warn(
|
|
5
|
+
'[bitfab] The "bitfab" package has been renamed to "@bitfab/sdk". ' +
|
|
6
|
+
"Please update your dependency: npm install @bitfab/sdk (and remove bitfab). " +
|
|
7
|
+
"The bitfab package will stop receiving updates in a future release."
|
|
8
|
+
);
|
|
9
|
+
}
|
|
1
10
|
"use strict";
|
|
2
11
|
var __create = Object.create;
|
|
3
12
|
var __defProp = Object.defineProperty;
|
|
@@ -81,7 +90,7 @@ var __version__;
|
|
|
81
90
|
var init_version_generated = __esm({
|
|
82
91
|
"src/version.generated.ts"() {
|
|
83
92
|
"use strict";
|
|
84
|
-
__version__ = "0.13.
|
|
93
|
+
__version__ = "0.13.3";
|
|
85
94
|
}
|
|
86
95
|
});
|
|
87
96
|
|