export type IkasBlogMetaData = { id: string; createdAt: number; updatedAt: number; deleted?: boolean | null; canonicals?: string[] | null; description?: string | null; disableIndex?: boolean | null; pageTitle?: string | null; slug: string; targetId?: string | null; targetType?: IkasBlogMetaDataTargetType | null; }; export type IkasBlogMetaDataTargetType = "BLOG" | "BLOG_CATEGORY";