Skip to content

Commit 5a8af24

Browse files
authored
make isLive optional (#15401)
1 parent 12a7e5f commit 5a8af24

File tree

4 files changed

+1
-4
lines changed

4 files changed

+1
-4
lines changed

dotcom-rendering/src/frontend/schemas/feArticle.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5585,7 +5585,6 @@
55855585
"expired",
55865586
"height",
55875587
"id",
5588-
"isLive",
55895588
"origin",
55905589
"title",
55915590
"type",

dotcom-rendering/src/frontend/schemas/feFront.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4708,7 +4708,6 @@
47084708
"expired",
47094709
"height",
47104710
"id",
4711-
"isLive",
47124711
"origin",
47134712
"title",
47144713
"type",

dotcom-rendering/src/frontend/schemas/feTagPage.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2208,7 +2208,6 @@
22082208
"expired",
22092209
"height",
22102210
"id",
2211-
"isLive",
22122211
"origin",
22132212
"title",
22142213
"type",

dotcom-rendering/src/types/mainMedia.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ export type YoutubeVideo = Media & {
2020
duration: number;
2121
expired: boolean;
2222
image?: string;
23-
isLive: boolean;
23+
isLive?: boolean;
2424
};
2525

2626
type SelfHostedVideo = Media & {

0 commit comments

Comments
 (0)