ai 5.0.41 → 5.0.42
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/CHANGELOG.md +6 -0
- package/dist/index.js +4 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
@@ -9948,6 +9948,7 @@ var toolUIPartSchemas = [
|
|
9948
9948
|
type: z10.string().startsWith("tool-"),
|
9949
9949
|
toolCallId: z10.string(),
|
9950
9950
|
state: z10.literal("input-streaming"),
|
9951
|
+
providerExecuted: z10.boolean().optional(),
|
9951
9952
|
input: z10.unknown().optional(),
|
9952
9953
|
output: z10.never().optional(),
|
9953
9954
|
errorText: z10.never().optional()
|
@@ -9956,6 +9957,7 @@ var toolUIPartSchemas = [
|
|
9956
9957
|
type: z10.string().startsWith("tool-"),
|
9957
9958
|
toolCallId: z10.string(),
|
9958
9959
|
state: z10.literal("input-available"),
|
9960
|
+
providerExecuted: z10.boolean().optional(),
|
9959
9961
|
input: z10.unknown(),
|
9960
9962
|
output: z10.never().optional(),
|
9961
9963
|
errorText: z10.never().optional(),
|
@@ -9965,6 +9967,7 @@ var toolUIPartSchemas = [
|
|
9965
9967
|
type: z10.string().startsWith("tool-"),
|
9966
9968
|
toolCallId: z10.string(),
|
9967
9969
|
state: z10.literal("output-available"),
|
9970
|
+
providerExecuted: z10.boolean().optional(),
|
9968
9971
|
input: z10.unknown(),
|
9969
9972
|
output: z10.unknown(),
|
9970
9973
|
errorText: z10.never().optional(),
|
@@ -9975,6 +9978,7 @@ var toolUIPartSchemas = [
|
|
9975
9978
|
type: z10.string().startsWith("tool-"),
|
9976
9979
|
toolCallId: z10.string(),
|
9977
9980
|
state: z10.literal("output-error"),
|
9981
|
+
providerExecuted: z10.boolean().optional(),
|
9978
9982
|
input: z10.unknown(),
|
9979
9983
|
output: z10.never().optional(),
|
9980
9984
|
errorText: z10.string(),
|