File tree Expand file tree Collapse file tree
projects/api/src/contracts/_internal/response Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -14,23 +14,23 @@ export const episodeResponseSchema = z.object({
1414 /***
1515 * Available if requesting extended `full`.
1616 */
17- votes : z . number ( ) . int ( ) ,
17+ votes : z . number ( ) . int ( ) . nullish ( ) ,
1818 /***
1919 * Available if requesting extended `full`.
2020 */
21- comment_count : z . number ( ) . int ( ) ,
21+ comment_count : z . number ( ) . int ( ) . nullish ( ) ,
2222 /***
2323 * Available if requesting extended `full`.
2424 */
25- updated_at : z . string ( ) . datetime ( ) ,
25+ updated_at : z . string ( ) . datetime ( ) . nullish ( ) ,
2626 /***
2727 * Available if requesting extended `full`.
2828 */
29- available_translations : z . array ( z . string ( ) ) ,
29+ available_translations : z . array ( z . string ( ) ) . nullish ( ) ,
3030 /***
3131 * Available if requesting extended `full`.
3232 */
33- runtime : z . number ( ) . int ( ) ,
33+ runtime : z . number ( ) . int ( ) . nullish ( ) ,
3434 /***
3535 * Available if requesting extended `full`.
3636 */
You can’t perform that action at this time.
0 commit comments