import { IkasImage } from "../image"; import { IkasBlogCategory } from "./category"; import { IkasBlogContent } from "./content"; import { IkasBlogMetaData } from "./meta-data"; import { IkasBlogTag } from "./tag"; import { IkasBlogWriter } from "./writer"; export type IkasBlog = { id: string; createdAt: number; updatedAt: number; deleted?: boolean | null; blogContent: IkasBlogContent; categoryId: string; imageId: string; isPublished: boolean; locale: string | null; metadata: IkasBlogMetaData; publishedAt: number | null; shortDescription: string; storefrontId: string; tagIds: string[] | null; tags: IkasBlogTag[] | null; title: string; writer: IkasBlogWriter; image?: IkasImage | null; category: IkasBlogCategory; };