File tree Expand file tree Collapse file tree 2 files changed +12
-0
lines changed
Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -21,7 +21,18 @@ export interface CoverageEntry {
2121 is_deleted : boolean ;
2222 headline : string ;
2323 user : UserRef ;
24+
2425 story : Story | null ;
26+ /**
27+ * Tells whether the story reference has been manually set, or automatically matched.
28+ * `none` means no information (which is only used for null references).
29+ */
30+ story_reference_origin : 'manual' | 'auto' | 'none' ;
31+ /**
32+ * Number of displayed story suggestions (if the automatic matching was not sure enough about it).
33+ */
34+ suggested_stories_count : number ;
35+
2536 newsroom : NewsroomRef | null ;
2637 author_contact : Contact | null ;
2738 organisation_contact : Contact | null ;
Original file line number Diff line number Diff line change @@ -92,6 +92,7 @@ export interface Story {
9292 oembed : OEmbedInfo ;
9393
9494 coverage_number : number ;
95+ auto_matched_coverage_number : number ;
9596 language : string ;
9697 last_coverage_at : string | null ;
9798
You can’t perform that action at this time.
0 commit comments