@ai-sdk/provider 1.0.5 → 1.0.6
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 +17 -0
- package/dist/index.d.ts +17 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/dist/index.d.mts
CHANGED
@@ -417,6 +417,23 @@ type ImageModelV1 = {
|
|
417
417
|
Warnings for the call, e.g. unsupported settings.
|
418
418
|
*/
|
419
419
|
warnings: Array<ImageModelV1CallWarning>;
|
420
|
+
/**
|
421
|
+
Response information for telemetry and debugging purposes.
|
422
|
+
*/
|
423
|
+
response: {
|
424
|
+
/**
|
425
|
+
Timestamp for the start of the generated response.
|
426
|
+
*/
|
427
|
+
timestamp: Date;
|
428
|
+
/**
|
429
|
+
The ID of the response model that was used to generate the response.
|
430
|
+
*/
|
431
|
+
modelId: string;
|
432
|
+
/**
|
433
|
+
Response headers.
|
434
|
+
*/
|
435
|
+
headers: Record<string, string> | undefined;
|
436
|
+
};
|
420
437
|
}>;
|
421
438
|
};
|
422
439
|
|
package/dist/index.d.ts
CHANGED
@@ -417,6 +417,23 @@ type ImageModelV1 = {
|
|
417
417
|
Warnings for the call, e.g. unsupported settings.
|
418
418
|
*/
|
419
419
|
warnings: Array<ImageModelV1CallWarning>;
|
420
|
+
/**
|
421
|
+
Response information for telemetry and debugging purposes.
|
422
|
+
*/
|
423
|
+
response: {
|
424
|
+
/**
|
425
|
+
Timestamp for the start of the generated response.
|
426
|
+
*/
|
427
|
+
timestamp: Date;
|
428
|
+
/**
|
429
|
+
The ID of the response model that was used to generate the response.
|
430
|
+
*/
|
431
|
+
modelId: string;
|
432
|
+
/**
|
433
|
+
Response headers.
|
434
|
+
*/
|
435
|
+
headers: Record<string, string> | undefined;
|
436
|
+
};
|
420
437
|
}>;
|
421
438
|
};
|
422
439
|
|