@ai-sdk/devtools 1.0.0-canary.27 → 1.0.0-canary.28
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/index.js +1 -1
- package/package.json +2 -2
- package/src/integration.ts +1 -1
package/dist/index.js
CHANGED
|
@@ -567,7 +567,7 @@ function DevToolsTelemetry() {
|
|
|
567
567
|
provider_options: stepStartEvent.providerOptions ? JSON.stringify(stepStartEvent.providerOptions) : null
|
|
568
568
|
});
|
|
569
569
|
},
|
|
570
|
-
|
|
570
|
+
onStepEnd: async (event) => {
|
|
571
571
|
const stepResult = event;
|
|
572
572
|
const state = callStates.get(stepResult.callId);
|
|
573
573
|
if (!state) return;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ai-sdk/devtools",
|
|
3
|
-
"version": "1.0.0-canary.
|
|
3
|
+
"version": "1.0.0-canary.28",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.js",
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
"vite": "^6.4.2",
|
|
57
57
|
"vitest": "^4.1.6",
|
|
58
58
|
"zod": "3.25.76",
|
|
59
|
-
"ai": "7.0.0-canary.
|
|
59
|
+
"ai": "7.0.0-canary.166"
|
|
60
60
|
},
|
|
61
61
|
"publishConfig": {
|
|
62
62
|
"access": "public",
|
package/src/integration.ts
CHANGED
|
@@ -309,7 +309,7 @@ export function DevToolsTelemetry(): Telemetry {
|
|
|
309
309
|
});
|
|
310
310
|
},
|
|
311
311
|
|
|
312
|
-
|
|
312
|
+
onStepEnd: async event => {
|
|
313
313
|
const stepResult = event as GenerateTextStepEndEvent<ToolSet>;
|
|
314
314
|
|
|
315
315
|
const state = callStates.get(stepResult.callId);
|