@ai-sdk/provider 1.0.9 → 1.0.10
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.d.mts +4 -0
- package/dist/index.d.ts +4 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/dist/index.d.mts
CHANGED
@@ -1068,6 +1068,10 @@ An optional signature for verifying that the reasoning originated from the model
|
|
1068
1068
|
Response headers.
|
1069
1069
|
*/
|
1070
1070
|
headers?: Record<string, string>;
|
1071
|
+
/**
|
1072
|
+
Response body.
|
1073
|
+
*/
|
1074
|
+
body?: unknown;
|
1071
1075
|
};
|
1072
1076
|
/**
|
1073
1077
|
Optional request information for telemetry and debugging purposes.
|
package/dist/index.d.ts
CHANGED
@@ -1068,6 +1068,10 @@ An optional signature for verifying that the reasoning originated from the model
|
|
1068
1068
|
Response headers.
|
1069
1069
|
*/
|
1070
1070
|
headers?: Record<string, string>;
|
1071
|
+
/**
|
1072
|
+
Response body.
|
1073
|
+
*/
|
1074
|
+
body?: unknown;
|
1071
1075
|
};
|
1072
1076
|
/**
|
1073
1077
|
Optional request information for telemetry and debugging purposes.
|