@ai-sdk/ui-utils
Advanced tools
Comparing version 0.0.8 to 0.0.9
@@ -241,3 +241,3 @@ export { generateId } from '@ai-sdk/provider-utils'; | ||
options?: RequestOptions; | ||
data?: Record<string, string>; | ||
data?: JSONValue; | ||
/** | ||
@@ -302,3 +302,3 @@ * @deprecated | ||
*/ | ||
data?: Record<string, string>; | ||
data?: JSONValue; | ||
}; | ||
@@ -468,2 +468,6 @@ type UseChatOptions = { | ||
}; | ||
/** | ||
A JSON value can be a string, number, boolean, object, array, or null. | ||
JSON values can be serialized and deserialized by the JSON.stringify and JSON.parse methods. | ||
*/ | ||
type JSONValue = null | string | number | boolean | { | ||
@@ -470,0 +474,0 @@ [value: string]: JSONValue; |
{ | ||
"name": "@ai-sdk/ui-utils", | ||
"version": "0.0.8", | ||
"version": "0.0.9", | ||
"license": "Apache-2.0", | ||
@@ -5,0 +5,0 @@ "sideEffects": false, |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
3981249
36757