File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11{
22 "name" : " seobot" ,
3- "version" : " 1.0.8 " ,
3+ "version" : " 1.0.9 " ,
44 "description" : " Client library for the SEObot API" ,
55 "main" : " dist/index.js" ,
66 "files" : [
Original file line number Diff line number Diff line change @@ -18,6 +18,7 @@ export class BlogClient {
1818 image : short . i ,
1919 readingTime : short . rt ,
2020 createdAt : short . cr ,
21+ updatedAt : short . up ,
2122 category : short . c
2223 ? {
2324 title : short . c . t ,
Original file line number Diff line number Diff line change @@ -17,6 +17,7 @@ export interface IArticle {
1717 published : boolean ;
1818 publishedAt : string ;
1919 createdAt : string ;
20+ updatedAt : string ;
2021 relatedPosts : IRelatedPost [ ] ;
2122 image : string ;
2223}
Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ export interface IArticleIndexCompressed {
66 i : string ; // image
77 rt : number ; // readingTime
88 cr : string ; // createdAt
9+ up : string ; // updatedAt
910 c ?: { t : string ; } ; // category
1011 tg ?: { t : string ; } [ ] ; // tags
1112}
@@ -18,6 +19,7 @@ export interface IArticleIndex {
1819 image : string ;
1920 readingTime : number ,
2021 createdAt : string ;
22+ updatedAt : string ;
2123 category : { title : string ; slug : string ; } | null ;
2224 tags : { title : string ; slug : string ; } [ ] ;
2325}
You can’t perform that action at this time.
0 commit comments