This repository was archived by the owner on Jun 24, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -88,10 +88,10 @@ export interface ISbStoryData<
88
88
breadcrumbs ?: ISbLinkURLObject [ ]
89
89
content : Content
90
90
created_at : string
91
- default_full_slug ?: string
91
+ default_full_slug ?: string | null
92
92
default_root ?: string
93
93
disble_fe_editor ?: boolean
94
- first_published_at ?: string
94
+ first_published_at ?: string | null
95
95
full_slug : string
96
96
group_id : string
97
97
id : number
@@ -106,21 +106,21 @@ export interface ISbStoryData<
106
106
meta_data : any
107
107
name : string
108
108
parent ?: ISbStoryData
109
- parent_id : number
109
+ parent_id : number | null
110
110
path ?: string
111
111
pinned ?: '1' | boolean
112
112
position : number
113
113
published ?: boolean
114
114
published_at : string | null
115
- release_id ?: number
115
+ release_id ?: number | null
116
116
slug : string
117
117
sort_by_date : string | null
118
118
tag_list : string [ ]
119
119
translated_slugs ?: {
120
120
path : string
121
121
name : string | null
122
122
lang : ISbStoryData [ 'lang' ]
123
- } [ ]
123
+ } [ ] | null
124
124
unpublished_changes ?: boolean
125
125
updated_at ?: string
126
126
uuid : string
You can’t perform that action at this time.
0 commit comments