Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,9 @@ export const showResponseSchema = z.object({
/**
* Available if requesting extended `full`.
*/
total_runtime: z.number().int().nullish(),
total_runtime: z.number().int().nullish().describe(
'Total runtime in minutes. When exact runtime data is unavailable, this value may include estimated fallback runtimes and should be treated as an approximation.',
),
/**
* Available if requesting extended `full`.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,9 @@ export const seasonResponseSchema = z.object({
/**
* Available if requesting extended `full`.
*/
total_runtime: z.number().int().nullish(),
total_runtime: z.number().int().nullish().describe(
'Total runtime in minutes. When exact runtime data is unavailable, this value may include estimated fallback runtimes and should be treated as an approximation.',
),
/**
* Available if requesting extended `full`.
*/
Expand Down
Loading