@ai-sdk/google 3.0.105 → 3.0.107

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.
@@ -557,7 +557,8 @@ var googleErrorDataSchema = lazySchema(
557
557
  error: z.object({
558
558
  code: z.number().nullable(),
559
559
  message: z.string(),
560
- status: z.string()
560
+ status: z.string(),
561
+ details: z.array(z.unknown()).nullish()
561
562
  })
562
563
  })
563
564
  )