Release Notes Channel: Add support for server body ranges (#9631)

This commit is contained in:
yash-signal
2025-01-31 14:52:48 -06:00
committed by GitHub
parent 6b2d65c1e7
commit da7002fc64
6 changed files with 132 additions and 7 deletions

View File

@@ -1231,9 +1231,9 @@ export const releaseNoteSchema = z.object({
bodyRanges: z
.array(
z.object({
style: z.string(),
start: z.number(),
length: z.number(),
style: z.string().optional(),
start: z.number().optional(),
length: z.number().optional(),
})
)
.optional(),