Skip to content

Commit 809dc17

Browse files
committed
[DEV-21181] Add created_at to the Newsroom API presentation
1 parent 6dd1582 commit 809dc17

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/types/Newsroom.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ import type { UploadedImage } from '@prezly/uploads';
33
import type { CultureRef } from './Culture';
44
import type { NewroomThemeRef, NewsroomThemePreset } from './NewsroomTheme';
55

6+
type Iso8601DateTime = string;
7+
68
export interface NewsroomRef {
79
uuid: string;
810
/**
@@ -74,6 +76,7 @@ export interface NewsroomRef {
7476
};
7577
active_theme?: NewroomThemeRef | null;
7678
is_auto_created: boolean;
79+
created_at: Iso8601DateTime;
7780
}
7881

7982
export interface Newsroom extends NewsroomRef {

0 commit comments

Comments
 (0)