We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f3202b commit 3c188fcCopy full SHA for 3c188fc
1 file changed
scripts/publish-episodes.ts
@@ -52,7 +52,7 @@ const FeedSchema = object({
52
content_encoded: optional(string()),
53
itunes_duration: number(),
54
itunes_episode: optional(number()),
55
- itunes_episodeType: string(),
+ itunes_episodeType: optional(string()),
56
itunes_image: optional(object({ href: optional(string()) })),
57
enclosures: array(
58
object({
@@ -72,7 +72,7 @@ interface FeedEpisode {
72
content_encoded?: string;
73
itunes_duration: number;
74
itunes_episode?: number;
75
- itunes_episodeType: string;
+ itunes_episodeType?: string;
76
}
77
78
async function main() {
0 commit comments