@explorer-1/vue 0.2.3 → 0.2.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (36) hide show
  1. package/components.d.ts +3 -2
  2. package/dist/explorer-1-vue.js +4868 -4791
  3. package/dist/explorer-1-vue.umd.cjs +12 -12
  4. package/dist/src/components/BlockCardGrid/BlockCardGrid.stories.d.ts +60 -0
  5. package/dist/src/components/BlockCardGrid/BlockCardGrid.vue.d.ts +33 -0
  6. package/dist/src/components/{BlockCard/BlockCard.stories.d.ts → BlockCardGridItem/BlockCardGridItem.stories.d.ts} +18 -4
  7. package/dist/src/components/{BlockCardGroup/BlockCardGroup.vue.d.ts → BlockCardGridItem/BlockCardGridItem.vue.d.ts} +10 -12
  8. package/dist/src/components/{BlockCard/BlockCard.vue.d.ts → BlockCardGridItem/BlockCardGridItemElement.vue.d.ts} +20 -14
  9. package/dist/src/components/BlockCircleImageCard/BlockCircleImageCard.stories.d.ts +1 -0
  10. package/dist/src/components/BlockLinkCard/BlockLinkCard.stories.d.ts +1 -0
  11. package/dist/src/components/BlockLinkTile/BlockLinkTile.stories.d.ts +1 -0
  12. package/dist/src/components/BlockListCards/BlockListCards.stories.d.ts +1 -0
  13. package/dist/src/components/BlockStreamfield/BlockStreamfield.stories.d.ts +60 -0
  14. package/dist/src/components/BlockStreamfield/BlockStreamfield.vue.d.ts +2 -3
  15. package/dist/src/components/DetailHeadline/DetailHeadline.stories.d.ts +1 -0
  16. package/dist/src/components/DetailHeadline/DetailHeadline.vue.d.ts +11 -0
  17. package/dist/src/components/LayoutHelper/LayoutHelper.vue.d.ts +9 -0
  18. package/dist/src/components/ThumbnailCarousel/ThumbnailCarousel.stories.d.ts +1 -0
  19. package/dist/src/docs/foundation/grid_layouthelpers.stories.d.ts +36 -0
  20. package/dist/src/interfaces.d.ts +6 -2
  21. package/dist/src/templates/PageNewsDetail/PageNewsDetail.stories.d.ts +8 -0
  22. package/dist/src/templates/edu/PageEduNewsDetail/PageEduNewsDetail.stories.d.ts +3 -0
  23. package/dist/src/templates/edu/PageEduResourceArticle/PageEduResourceArticle.stories.d.ts +1 -0
  24. package/dist/src/templates/www/PageAsteroidWatchIndex/PageAsteroidWatchIndex.stories.d.ts +60 -0
  25. package/dist/src/templates/www/PageRoboticsDetail/PageRoboticsDetail.stories.d.ts +29 -2
  26. package/dist/style.css +1 -1
  27. package/package.json +1 -1
  28. package/src/components/DetailHeadline/DetailHeadline.stories.js +1 -0
  29. package/src/components/DetailHeadline/DetailHeadline.vue +12 -2
  30. package/src/templates/PageNewsDetail/PageNewsDetail.stories.js +1 -0
  31. package/src/templates/PageNewsDetail/PageNewsDetail.vue +1 -0
  32. package/src/templates/edu/PageEduNewsDetail/PageEduNewsDetail.stories.js +1 -0
  33. package/src/templates/edu/PageEduNewsDetail/PageEduNewsDetail.vue +2 -0
  34. package/src/templates/edu/PageEduResourceArticle/PageEduResourceArticle.stories.js +2 -0
  35. package/src/templates/edu/PageEduResourceArticle/PageEduResourceArticle.vue +1 -0
  36. package/dist/src/components/BlockCardGroup/BlockCardGroup.stories.d.ts +0 -32
@@ -0,0 +1,60 @@
1
+ import { default as BlockCardGrid } from './BlockCardGrid.vue';
2
+ declare namespace _default {
3
+ export let title: string;
4
+ export { BlockCardGrid as component };
5
+ export let tags: string[];
6
+ export let excludeStories: RegExp;
7
+ }
8
+ export default _default;
9
+ export const BlockCardGridData: ({
10
+ label: string;
11
+ title: string;
12
+ description: string;
13
+ image: {
14
+ alt: string;
15
+ src: {
16
+ height: number;
17
+ url: string;
18
+ width: number;
19
+ };
20
+ srcSet: string;
21
+ };
22
+ link: {
23
+ page: null;
24
+ externalLink: string;
25
+ };
26
+ } | {
27
+ label: string;
28
+ title: string;
29
+ description: string;
30
+ image: {
31
+ alt: string;
32
+ src: {
33
+ height: number;
34
+ url: string;
35
+ width: number;
36
+ };
37
+ srcSet: string;
38
+ };
39
+ link: {
40
+ page: {
41
+ url: string;
42
+ };
43
+ externalLink: string;
44
+ };
45
+ } | {
46
+ label: string;
47
+ title: string;
48
+ description: string;
49
+ image: null;
50
+ link: {
51
+ page: null;
52
+ externalLink: string;
53
+ };
54
+ })[];
55
+ export namespace BaseStory {
56
+ let name: string;
57
+ namespace args {
58
+ export { BlockCardGridData as cards };
59
+ }
60
+ }
@@ -0,0 +1,33 @@
1
+ import { PropType } from 'vue';
2
+ import { ImageObject, LinkObject } from '../../interfaces';
3
+
4
+ interface CardGridItem {
5
+ title: string;
6
+ label: string;
7
+ description: string;
8
+ image: Partial<ImageObject>;
9
+ link?: LinkObject;
10
+ }
11
+ declare const _default: import('vue').DefineComponent<{
12
+ compact: {
13
+ type: BooleanConstructor;
14
+ default: boolean;
15
+ };
16
+ cards: {
17
+ type: PropType<CardGridItem[]>;
18
+ default: undefined;
19
+ };
20
+ }, unknown, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
21
+ compact: {
22
+ type: BooleanConstructor;
23
+ default: boolean;
24
+ };
25
+ cards: {
26
+ type: PropType<CardGridItem[]>;
27
+ default: undefined;
28
+ };
29
+ }>>, {
30
+ compact: boolean;
31
+ cards: CardGridItem[];
32
+ }, {}>;
33
+ export default _default;
@@ -1,7 +1,8 @@
1
- import { default as BlockCard } from './BlockCard.vue';
1
+ import { default as BlockCardGridItem } from './BlockCardGridItem.vue';
2
2
  declare namespace _default {
3
3
  export let title: string;
4
- export { BlockCard as component };
4
+ export { BlockCardGridItem as component };
5
+ export let tags: string[];
5
6
  export let decorators: (() => {
6
7
  template: string;
7
8
  })[];
@@ -14,10 +15,10 @@ declare namespace _default {
14
15
  }
15
16
  export default _default;
16
17
  export namespace BlockCardData {
17
- export let type: string;
18
+ export let label: string;
18
19
  let title_1: string;
19
20
  export { title_1 as title };
20
- export let text: string;
21
+ export let description: string;
21
22
  export namespace image {
22
23
  let alt: string;
23
24
  namespace src {
@@ -27,8 +28,21 @@ export namespace BlockCardData {
27
28
  }
28
29
  let srcSet: string;
29
30
  }
31
+ export namespace link {
32
+ namespace page {
33
+ let url_1: string;
34
+ export { url_1 as url };
35
+ }
36
+ let externalLink: null;
37
+ }
30
38
  }
31
39
  export namespace BaseStory {
32
40
  export let name: string;
33
41
  export { BlockCardData as args };
34
42
  }
43
+ export namespace NoLink {
44
+ namespace args {
45
+ let link_1: undefined;
46
+ export { link_1 as link };
47
+ }
48
+ }
@@ -1,21 +1,19 @@
1
1
  import { PropType } from 'vue';
2
- import { ImageObject } from '../../interfaces';
2
+ import { LinkObject } from './../../interfaces';
3
3
 
4
- interface Fact {
5
- title: string;
6
- type: string;
7
- description: string;
8
- image: Partial<ImageObject>;
9
- }
10
4
  declare const _default: import('vue').DefineComponent<{
11
- facts: {
12
- type: PropType<Fact[]>;
5
+ link: {
6
+ type: PropType<LinkObject>;
13
7
  required: false;
8
+ default: undefined;
14
9
  };
15
10
  }, unknown, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
16
- facts: {
17
- type: PropType<Fact[]>;
11
+ link: {
12
+ type: PropType<LinkObject>;
18
13
  required: false;
14
+ default: undefined;
19
15
  };
20
- }>>, {}, {}>;
16
+ }>>, {
17
+ link: LinkObject;
18
+ }, {}>;
21
19
  export default _default;
@@ -1,51 +1,57 @@
1
+ import { PropType } from 'vue';
2
+ import { LinkObject } from './../../interfaces';
3
+
1
4
  declare const _default: import('vue').DefineComponent<{
2
- type: {
5
+ label: {
3
6
  type: StringConstructor;
4
- required: false;
5
- default: string;
7
+ default: undefined;
6
8
  };
7
9
  title: {
8
10
  type: StringConstructor;
9
11
  required: false;
10
12
  default: undefined;
11
13
  };
12
- text: {
14
+ description: {
13
15
  type: StringConstructor;
14
- required: false;
15
16
  default: undefined;
16
17
  };
17
18
  image: {
18
19
  type: ObjectConstructor;
19
- required: false;
20
+ default: undefined;
21
+ };
22
+ link: {
23
+ type: PropType<LinkObject>;
20
24
  default: undefined;
21
25
  };
22
26
  }, unknown, unknown, {
23
27
  theSrcSet(): any;
24
28
  }, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
25
- type: {
29
+ label: {
26
30
  type: StringConstructor;
27
- required: false;
28
- default: string;
31
+ default: undefined;
29
32
  };
30
33
  title: {
31
34
  type: StringConstructor;
32
35
  required: false;
33
36
  default: undefined;
34
37
  };
35
- text: {
38
+ description: {
36
39
  type: StringConstructor;
37
- required: false;
38
40
  default: undefined;
39
41
  };
40
42
  image: {
41
43
  type: ObjectConstructor;
42
- required: false;
44
+ default: undefined;
45
+ };
46
+ link: {
47
+ type: PropType<LinkObject>;
43
48
  default: undefined;
44
49
  };
45
50
  }>>, {
51
+ label: string;
52
+ link: LinkObject;
46
53
  title: string;
47
54
  image: Record<string, any>;
48
- text: string;
49
- type: string;
55
+ description: string;
50
56
  }, {}>;
51
57
  export default _default;
@@ -3,6 +3,7 @@ import { default as IconExternal } from './../Icons/IconExternal.vue';
3
3
  declare namespace _default {
4
4
  export let title: string;
5
5
  export { BlockCircleImageCard as component };
6
+ export let tags: string[];
6
7
  export let decorators: (() => {
7
8
  template: string;
8
9
  })[];
@@ -2,6 +2,7 @@ import { default as BlockLinkCard } from './BlockLinkCard.vue';
2
2
  declare namespace _default {
3
3
  export let title: string;
4
4
  export { BlockLinkCard as component };
5
+ export let tags: string[];
5
6
  export let excludeStories: RegExp;
6
7
  export let decorators: (() => {
7
8
  template: string;
@@ -5,6 +5,7 @@ declare namespace _default {
5
5
  export let decorators: (() => {
6
6
  template: string;
7
7
  })[];
8
+ export let tags: string[];
8
9
  export namespace argTypes {
9
10
  namespace headingLevel {
10
11
  let description: string;
@@ -7,6 +7,7 @@ declare namespace _default {
7
7
  export default _default;
8
8
  export namespace BlockListCardsData {
9
9
  let blockType: string;
10
+ let field: string;
10
11
  let items: ({
11
12
  description: string;
12
13
  heading: string;
@@ -216,6 +216,7 @@ export namespace BlockStreamfieldData {
216
216
  }[];
217
217
  } | {
218
218
  blockType: string;
219
+ field: string;
219
220
  items: ({
220
221
  description: string;
221
222
  heading: string;
@@ -321,6 +322,7 @@ export namespace BlockStreamfieldData {
321
322
  value?: undefined;
322
323
  showTitle?: undefined;
323
324
  items?: undefined;
325
+ field?: undefined;
324
326
  } | {
325
327
  blockType: string;
326
328
  value: string;
@@ -328,6 +330,7 @@ export namespace BlockStreamfieldData {
328
330
  level?: undefined;
329
331
  showTitle?: undefined;
330
332
  items?: undefined;
333
+ field?: undefined;
331
334
  } | {
332
335
  blockType: string;
333
336
  heading: string;
@@ -335,6 +338,7 @@ export namespace BlockStreamfieldData {
335
338
  value?: undefined;
336
339
  showTitle?: undefined;
337
340
  items?: undefined;
341
+ field?: undefined;
338
342
  } | {
339
343
  heading: string;
340
344
  introduction: string;
@@ -368,6 +372,7 @@ export namespace BlockStreamfieldData {
368
372
  level?: undefined;
369
373
  showTitle?: undefined;
370
374
  items?: undefined;
375
+ field?: undefined;
371
376
  } | {
372
377
  blockType: string;
373
378
  showTitle: boolean;
@@ -390,6 +395,7 @@ export namespace BlockStreamfieldData {
390
395
  value?: undefined;
391
396
  heading?: undefined;
392
397
  level?: undefined;
398
+ field?: undefined;
393
399
  } | {
394
400
  blockType: string;
395
401
  embed: {
@@ -402,6 +408,60 @@ export namespace BlockStreamfieldData {
402
408
  level?: undefined;
403
409
  showTitle?: undefined;
404
410
  items?: undefined;
411
+ field?: undefined;
412
+ } | {
413
+ blockType: string;
414
+ field: string;
415
+ items: ({
416
+ label: string;
417
+ title: string;
418
+ description: string;
419
+ image: {
420
+ alt: string;
421
+ src: {
422
+ height: number;
423
+ url: string;
424
+ width: number;
425
+ };
426
+ srcSet: string;
427
+ };
428
+ link: {
429
+ page: null;
430
+ externalLink: string;
431
+ };
432
+ } | {
433
+ label: string;
434
+ title: string;
435
+ description: string;
436
+ image: {
437
+ alt: string;
438
+ src: {
439
+ height: number;
440
+ url: string;
441
+ width: number;
442
+ };
443
+ srcSet: string;
444
+ };
445
+ link: {
446
+ page: {
447
+ url: string;
448
+ };
449
+ externalLink: string;
450
+ };
451
+ } | {
452
+ label: string;
453
+ title: string;
454
+ description: string;
455
+ image: null;
456
+ link: {
457
+ page: null;
458
+ externalLink: string;
459
+ };
460
+ })[];
461
+ value?: undefined;
462
+ heading?: undefined;
463
+ level?: undefined;
464
+ showTitle?: undefined;
405
465
  })[];
406
466
  export { body_1 as body };
407
467
  }
@@ -1,12 +1,11 @@
1
1
  import { PropType } from 'vue';
2
- import { ImageObject } from '../../interfaces';
2
+ import { BlockData, ImageObject } from '../../interfaces';
3
3
 
4
4
  interface Variants {
5
5
  [name: string]: string;
6
6
  }
7
7
  export declare const variants: Variants;
8
- export interface StreamfieldBlockData {
9
- blockType: string;
8
+ export interface StreamfieldBlockData extends BlockData {
10
9
  id: string;
11
10
  fullBleed: boolean;
12
11
  heading: string;
@@ -9,6 +9,7 @@ export namespace DetailHeadlineData {
9
9
  let title_1: string;
10
10
  export { title_1 as title };
11
11
  export let publicationDate: string;
12
+ export let readTime: string;
12
13
  export namespace author {
13
14
  let name: string;
14
15
  let organization: string;
@@ -22,6 +22,11 @@ declare const _default: import('vue').DefineComponent<{
22
22
  required: false;
23
23
  default: undefined;
24
24
  };
25
+ readTime: {
26
+ type: StringConstructor;
27
+ required: false;
28
+ default: undefined;
29
+ };
25
30
  topics: {
26
31
  type: PropType<Topic[]>;
27
32
  required: false;
@@ -75,6 +80,11 @@ declare const _default: import('vue').DefineComponent<{
75
80
  required: false;
76
81
  default: undefined;
77
82
  };
83
+ readTime: {
84
+ type: StringConstructor;
85
+ required: false;
86
+ default: undefined;
87
+ };
78
88
  topics: {
79
89
  type: PropType<Topic[]>;
80
90
  required: false;
@@ -100,6 +110,7 @@ declare const _default: import('vue').DefineComponent<{
100
110
  author: AuthorObject | AuthorObject[];
101
111
  publicationDate: string;
102
112
  publicationTime: string;
113
+ readTime: string;
103
114
  topics: Topic[];
104
115
  labelLink: string;
105
116
  schema: boolean;
@@ -9,6 +9,10 @@ declare const _default: import('vue').DefineComponent<{
9
9
  default: string;
10
10
  validator: (prop: string) => boolean;
11
11
  };
12
+ fullBleed: {
13
+ type: BooleanConstructor;
14
+ default: boolean;
15
+ };
12
16
  }, unknown, unknown, {
13
17
  theWidth(): string;
14
18
  }, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
@@ -18,7 +22,12 @@ declare const _default: import('vue').DefineComponent<{
18
22
  default: string;
19
23
  validator: (prop: string) => boolean;
20
24
  };
25
+ fullBleed: {
26
+ type: BooleanConstructor;
27
+ default: boolean;
28
+ };
21
29
  }>>, {
22
30
  indent: string;
31
+ fullBleed: boolean;
23
32
  }, {}>;
24
33
  export default _default;
@@ -2,6 +2,7 @@ import { default as ThumbnailCarousel } from './ThumbnailCarousel.vue';
2
2
  declare namespace _default {
3
3
  export let title: string;
4
4
  export { ThumbnailCarousel as component };
5
+ export let tags: string[];
5
6
  export namespace parameters {
6
7
  namespace docs {
7
8
  namespace description {
@@ -30,6 +30,10 @@ export function BaseWidth(args: any): {
30
30
  default: string;
31
31
  validator: (prop: string) => boolean;
32
32
  };
33
+ fullBleed: {
34
+ type: BooleanConstructor;
35
+ default: boolean;
36
+ };
33
37
  }, unknown, unknown, {
34
38
  theWidth(): string;
35
39
  }, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
@@ -39,8 +43,13 @@ export function BaseWidth(args: any): {
39
43
  default: string;
40
44
  validator: (prop: string) => boolean;
41
45
  };
46
+ fullBleed: {
47
+ type: BooleanConstructor;
48
+ default: boolean;
49
+ };
42
50
  }>>, {
43
51
  indent: string;
52
+ fullBleed: boolean;
44
53
  }, {}>;
45
54
  };
46
55
  setup(): {
@@ -63,6 +72,10 @@ export function ColTwoStart(args: any): {
63
72
  default: string;
64
73
  validator: (prop: string) => boolean;
65
74
  };
75
+ fullBleed: {
76
+ type: BooleanConstructor;
77
+ default: boolean;
78
+ };
66
79
  }, unknown, unknown, {
67
80
  theWidth(): string;
68
81
  }, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
@@ -72,8 +85,13 @@ export function ColTwoStart(args: any): {
72
85
  default: string;
73
86
  validator: (prop: string) => boolean;
74
87
  };
88
+ fullBleed: {
89
+ type: BooleanConstructor;
90
+ default: boolean;
91
+ };
75
92
  }>>, {
76
93
  indent: string;
94
+ fullBleed: boolean;
77
95
  }, {}>;
78
96
  };
79
97
  setup(): {
@@ -97,6 +115,10 @@ export function ColThreeStart(args: any): {
97
115
  default: string;
98
116
  validator: (prop: string) => boolean;
99
117
  };
118
+ fullBleed: {
119
+ type: BooleanConstructor;
120
+ default: boolean;
121
+ };
100
122
  }, unknown, unknown, {
101
123
  theWidth(): string;
102
124
  }, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
@@ -106,8 +128,13 @@ export function ColThreeStart(args: any): {
106
128
  default: string;
107
129
  validator: (prop: string) => boolean;
108
130
  };
131
+ fullBleed: {
132
+ type: BooleanConstructor;
133
+ default: boolean;
134
+ };
109
135
  }>>, {
110
136
  indent: string;
137
+ fullBleed: boolean;
111
138
  }, {}>;
112
139
  };
113
140
  setup(): {
@@ -131,6 +158,10 @@ export function ColFourStart(args: any): {
131
158
  default: string;
132
159
  validator: (prop: string) => boolean;
133
160
  };
161
+ fullBleed: {
162
+ type: BooleanConstructor;
163
+ default: boolean;
164
+ };
134
165
  }, unknown, unknown, {
135
166
  theWidth(): string;
136
167
  }, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
@@ -140,8 +171,13 @@ export function ColFourStart(args: any): {
140
171
  default: string;
141
172
  validator: (prop: string) => boolean;
142
173
  };
174
+ fullBleed: {
175
+ type: BooleanConstructor;
176
+ default: boolean;
177
+ };
143
178
  }>>, {
144
179
  indent: string;
180
+ fullBleed: boolean;
145
181
  }, {}>;
146
182
  };
147
183
  setup(): {
@@ -5,6 +5,8 @@ export interface BreadcrumbPathObject {
5
5
  }
6
6
  export interface BlockData {
7
7
  blockType: string;
8
+ field?: string;
9
+ items?: any[];
8
10
  }
9
11
  export interface ImageSrcObject {
10
12
  url: string;
@@ -75,14 +77,16 @@ export interface Card {
75
77
  label?: string;
76
78
  thumbnailImage?: Partial<ImageObject>;
77
79
  }
78
- export interface RelatedLinkObject {
80
+ export interface LinkObject {
79
81
  page: {
80
82
  url: string;
81
83
  } | null;
84
+ externalLink: string | null;
85
+ }
86
+ export interface RelatedLinkObject extends LinkObject {
82
87
  document: {
83
88
  url: string;
84
89
  } | null;
85
- externalLink: string | null;
86
90
  text: string | null;
87
91
  }
88
92
  export interface PageResponseObject {
@@ -163,6 +163,7 @@ export namespace BaseStory {
163
163
  url: string;
164
164
  }[];
165
165
  topper: string;
166
+ readTime: string;
166
167
  summary: string;
167
168
  thumbnailImage: {
168
169
  original: string;
@@ -390,6 +391,7 @@ export namespace InlineHero {
390
391
  url: string;
391
392
  }[];
392
393
  topper: string;
394
+ readTime: string;
393
395
  summary: string;
394
396
  thumbnailImage: {
395
397
  original: string;
@@ -636,6 +638,7 @@ export namespace HeroCarousel {
636
638
  url: string;
637
639
  }[];
638
640
  topper: string;
641
+ readTime: string;
639
642
  summary: string;
640
643
  thumbnailImage: {
641
644
  original: string;
@@ -828,6 +831,7 @@ export namespace HeroImageComparison {
828
831
  url: string;
829
832
  }[];
830
833
  topper: string;
834
+ readTime: string;
831
835
  summary: string;
832
836
  thumbnailImage: {
833
837
  original: string;
@@ -1016,6 +1020,7 @@ export namespace HeroVideo {
1016
1020
  url: string;
1017
1021
  }[];
1018
1022
  topper: string;
1023
+ readTime: string;
1019
1024
  summary: string;
1020
1025
  thumbnailImage: {
1021
1026
  original: string;
@@ -1196,6 +1201,7 @@ export namespace HeroVideoEmbed {
1196
1201
  url: string;
1197
1202
  }[];
1198
1203
  topper: string;
1204
+ readTime: string;
1199
1205
  summary: string;
1200
1206
  thumbnailImage: {
1201
1207
  original: string;
@@ -1367,6 +1373,7 @@ export namespace NoHero {
1367
1373
  url: string;
1368
1374
  }[];
1369
1375
  topper: string;
1376
+ readTime: string;
1370
1377
  summary: string;
1371
1378
  thumbnailImage: {
1372
1379
  original: string;
@@ -1538,6 +1545,7 @@ export namespace WithTopper {
1538
1545
  title: string;
1539
1546
  url: string;
1540
1547
  }[];
1548
+ readTime: string;
1541
1549
  summary: string;
1542
1550
  thumbnailImage: {
1543
1551
  original: string;
@@ -83,6 +83,7 @@ export namespace BaseStory {
83
83
  url: string;
84
84
  title: string;
85
85
  publicationDate: string;
86
+ readTime: string;
86
87
  authors: {
87
88
  author: {
88
89
  name: string;
@@ -218,6 +219,7 @@ export namespace InlineHero {
218
219
  url: string;
219
220
  title: string;
220
221
  publicationDate: string;
222
+ readTime: string;
221
223
  authors: {
222
224
  author: {
223
225
  name: string;
@@ -354,6 +356,7 @@ export namespace NoHero {
354
356
  url: string;
355
357
  title: string;
356
358
  publicationDate: string;
359
+ readTime: string;
357
360
  authors: {
358
361
  author: {
359
362
  name: string;