braintrust 3.6.0 → 3.7.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/dev/dist/index.js +2692 -1472
- package/dev/dist/index.mjs +2616 -1396
- package/dist/auto-instrumentations/bundler/esbuild.cjs +46 -21
- package/dist/auto-instrumentations/bundler/esbuild.mjs +2 -2
- package/dist/auto-instrumentations/bundler/rollup.cjs +46 -21
- package/dist/auto-instrumentations/bundler/rollup.mjs +2 -2
- package/dist/auto-instrumentations/bundler/vite.cjs +46 -21
- package/dist/auto-instrumentations/bundler/vite.mjs +2 -2
- package/dist/auto-instrumentations/bundler/webpack-loader.cjs +952 -0
- package/dist/auto-instrumentations/bundler/webpack-loader.d.ts +53 -0
- package/dist/auto-instrumentations/bundler/webpack.cjs +46 -21
- package/dist/auto-instrumentations/bundler/webpack.mjs +2 -2
- package/dist/auto-instrumentations/{chunk-WOUC73KB.mjs → chunk-NY4CGTN6.mjs} +1 -1
- package/dist/auto-instrumentations/{chunk-F7WAXFNM.mjs → chunk-YCKND42U.mjs} +46 -21
- package/dist/auto-instrumentations/hook.mjs +77 -26
- package/dist/auto-instrumentations/index.cjs +46 -21
- package/dist/auto-instrumentations/index.mjs +1 -1
- package/dist/browser.d.mts +8 -30
- package/dist/browser.d.ts +8 -30
- package/dist/browser.js +5051 -6344
- package/dist/browser.mjs +5051 -6344
- package/dist/cli.js +2622 -1398
- package/dist/edge-light.js +9456 -10773
- package/dist/edge-light.mjs +9456 -10773
- package/dist/index.d.mts +8 -30
- package/dist/index.d.ts +8 -30
- package/dist/index.js +5078 -6371
- package/dist/index.mjs +4870 -6163
- package/dist/instrumentation/index.js +2491 -1319
- package/dist/instrumentation/index.mjs +2491 -1319
- package/dist/workerd.js +9456 -10773
- package/dist/workerd.mjs +9456 -10773
- package/package.json +6 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "braintrust",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.7.1",
|
|
4
4
|
"description": "SDK for integrating Braintrust",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -87,6 +87,10 @@
|
|
|
87
87
|
"module": "./dist/auto-instrumentations/bundler/webpack.mjs",
|
|
88
88
|
"require": "./dist/auto-instrumentations/bundler/webpack.js"
|
|
89
89
|
},
|
|
90
|
+
"./webpack-loader": {
|
|
91
|
+
"types": "./dist/auto-instrumentations/bundler/webpack-loader.d.ts",
|
|
92
|
+
"require": "./dist/auto-instrumentations/bundler/webpack-loader.cjs"
|
|
93
|
+
},
|
|
90
94
|
"./esbuild": {
|
|
91
95
|
"types": "./dist/auto-instrumentations/bundler/esbuild.d.ts",
|
|
92
96
|
"import": "./dist/auto-instrumentations/bundler/esbuild.mjs",
|
|
@@ -189,7 +193,7 @@
|
|
|
189
193
|
"typescript": "5.4.4",
|
|
190
194
|
"vite": "^6.4.1",
|
|
191
195
|
"vite-tsconfig-paths": "^4.3.2",
|
|
192
|
-
"vitest": "^4.1.
|
|
196
|
+
"vitest": "^4.1.2",
|
|
193
197
|
"webpack": "^5.97.1",
|
|
194
198
|
"zod": "^3.25.34"
|
|
195
199
|
},
|