| 
1 | 1 | export declare namespace ContentTree {  | 
2 |  | -    type BodyBlock = Paragraph | Heading | ImageSet | Flourish | BigNumber | CustomCodeComponent | Layout | List | Blockquote | Pullquote | ScrollyBlock | ThematicBreak | Table | Recommended | Tweet | Video | YoutubeVideo | Text;  | 
 | 2 | +    type BodyBlock = Paragraph | Heading | ImageSet | Flourish | BigNumber | CustomCodeComponent | Layout | List | Blockquote | Pullquote | ScrollyBlock | ThematicBreak | Table | Recommended | RecommendedList | Tweet | Video | YoutubeVideo | Text;  | 
3 | 3 |     type LayoutWidth = "auto" | "in-line" | "inset-left" | "inset-right" | "full-bleed" | "full-grid" | "mid-grid" | "full-width";  | 
4 | 4 |     type Phrasing = Text | Break | Strong | Emphasis | Strikethrough | Link;  | 
5 | 5 |     interface Node {  | 
@@ -107,6 +107,11 @@ export declare namespace ContentTree {  | 
107 | 107 |         teaserTitleOverride?: string;  | 
108 | 108 |         teaser: Teaser;  | 
109 | 109 |     }  | 
 | 110 | +    interface RecommendedList extends Node {  | 
 | 111 | +        type: "recommended-list";  | 
 | 112 | +        heading?: string;  | 
 | 113 | +        children: Recommended[];  | 
 | 114 | +    }  | 
110 | 115 |     type TeaserConcept = {  | 
111 | 116 |         apiUrl: string;  | 
112 | 117 |         directType: string;  | 
@@ -274,7 +279,7 @@ export declare namespace ContentTree {  | 
274 | 279 |         attributes: CustomCodeComponentAttributes;  | 
275 | 280 |     }  | 
276 | 281 |     namespace full {  | 
277 |  | -        type BodyBlock = Paragraph | Heading | ImageSet | Flourish | BigNumber | CustomCodeComponent | Layout | List | Blockquote | Pullquote | ScrollyBlock | ThematicBreak | Table | Recommended | Tweet | Video | YoutubeVideo | Text;  | 
 | 282 | +        type BodyBlock = Paragraph | Heading | ImageSet | Flourish | BigNumber | CustomCodeComponent | Layout | List | Blockquote | Pullquote | ScrollyBlock | ThematicBreak | Table | Recommended | RecommendedList | Tweet | Video | YoutubeVideo | Text;  | 
278 | 283 |         type LayoutWidth = "auto" | "in-line" | "inset-left" | "inset-right" | "full-bleed" | "full-grid" | "mid-grid" | "full-width";  | 
279 | 284 |         type Phrasing = Text | Break | Strong | Emphasis | Strikethrough | Link;  | 
280 | 285 |         interface Node {  | 
@@ -382,6 +387,11 @@ export declare namespace ContentTree {  | 
382 | 387 |             teaserTitleOverride?: string;  | 
383 | 388 |             teaser: Teaser;  | 
384 | 389 |         }  | 
 | 390 | +        interface RecommendedList extends Node {  | 
 | 391 | +            type: "recommended-list";  | 
 | 392 | +            heading?: string;  | 
 | 393 | +            children: Recommended[];  | 
 | 394 | +        }  | 
385 | 395 |         type TeaserConcept = {  | 
386 | 396 |             apiUrl: string;  | 
387 | 397 |             directType: string;  | 
@@ -550,7 +560,7 @@ export declare namespace ContentTree {  | 
550 | 560 |         }  | 
551 | 561 |     }  | 
552 | 562 |     namespace transit {  | 
553 |  | -        type BodyBlock = Paragraph | Heading | ImageSet | Flourish | BigNumber | CustomCodeComponent | Layout | List | Blockquote | Pullquote | ScrollyBlock | ThematicBreak | Table | Recommended | Tweet | Video | YoutubeVideo | Text;  | 
 | 563 | +        type BodyBlock = Paragraph | Heading | ImageSet | Flourish | BigNumber | CustomCodeComponent | Layout | List | Blockquote | Pullquote | ScrollyBlock | ThematicBreak | Table | Recommended | RecommendedList | Tweet | Video | YoutubeVideo | Text;  | 
554 | 564 |         type LayoutWidth = "auto" | "in-line" | "inset-left" | "inset-right" | "full-bleed" | "full-grid" | "mid-grid" | "full-width";  | 
555 | 565 |         type Phrasing = Text | Break | Strong | Emphasis | Strikethrough | Link;  | 
556 | 566 |         interface Node {  | 
@@ -656,6 +666,11 @@ export declare namespace ContentTree {  | 
656 | 666 |             heading?: string;  | 
657 | 667 |             teaserTitleOverride?: string;  | 
658 | 668 |         }  | 
 | 669 | +        interface RecommendedList extends Node {  | 
 | 670 | +            type: "recommended-list";  | 
 | 671 | +            heading?: string;  | 
 | 672 | +            children: Recommended[];  | 
 | 673 | +        }  | 
659 | 674 |         type TeaserConcept = {  | 
660 | 675 |             apiUrl: string;  | 
661 | 676 |             directType: string;  | 
@@ -811,7 +826,7 @@ export declare namespace ContentTree {  | 
811 | 826 |         }  | 
812 | 827 |     }  | 
813 | 828 |     namespace loose {  | 
814 |  | -        type BodyBlock = Paragraph | Heading | ImageSet | Flourish | BigNumber | CustomCodeComponent | Layout | List | Blockquote | Pullquote | ScrollyBlock | ThematicBreak | Table | Recommended | Tweet | Video | YoutubeVideo | Text;  | 
 | 829 | +        type BodyBlock = Paragraph | Heading | ImageSet | Flourish | BigNumber | CustomCodeComponent | Layout | List | Blockquote | Pullquote | ScrollyBlock | ThematicBreak | Table | Recommended | RecommendedList | Tweet | Video | YoutubeVideo | Text;  | 
815 | 830 |         type LayoutWidth = "auto" | "in-line" | "inset-left" | "inset-right" | "full-bleed" | "full-grid" | "mid-grid" | "full-width";  | 
816 | 831 |         type Phrasing = Text | Break | Strong | Emphasis | Strikethrough | Link;  | 
817 | 832 |         interface Node {  | 
@@ -919,6 +934,11 @@ export declare namespace ContentTree {  | 
919 | 934 |             teaserTitleOverride?: string;  | 
920 | 935 |             teaser?: Teaser;  | 
921 | 936 |         }  | 
 | 937 | +        interface RecommendedList extends Node {  | 
 | 938 | +            type: "recommended-list";  | 
 | 939 | +            heading?: string;  | 
 | 940 | +            children: Recommended[];  | 
 | 941 | +        }  | 
922 | 942 |         type TeaserConcept = {  | 
923 | 943 |             apiUrl: string;  | 
924 | 944 |             directType: string;  | 
 | 
0 commit comments