nextemos 2.3.3 → 2.3.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/interfaces/blog.d.ts +17 -1
- package/package.json +1 -1
|
@@ -96,6 +96,22 @@ interface BlogPostBlogCategoryMapping {
|
|
|
96
96
|
isDefault: boolean;
|
|
97
97
|
isApproved: boolean;
|
|
98
98
|
}
|
|
99
|
+
/**
|
|
100
|
+
* Kategori ağacındaki her bir alt öğeyi temsil eden arayüz
|
|
101
|
+
*/
|
|
102
|
+
interface IChildCategory {
|
|
103
|
+
id: number;
|
|
104
|
+
templateId: number;
|
|
105
|
+
parentId: number;
|
|
106
|
+
order: number;
|
|
107
|
+
culture: string;
|
|
108
|
+
name: string;
|
|
109
|
+
key: string;
|
|
110
|
+
description: string;
|
|
111
|
+
hierarchyField: string;
|
|
112
|
+
path: string;
|
|
113
|
+
childCategories: IChildCategory[];
|
|
114
|
+
}
|
|
99
115
|
/**
|
|
100
116
|
* Kategori ağacındaki öğeyi temsil eden arayüz
|
|
101
117
|
*/
|
|
@@ -115,7 +131,7 @@ interface ICategoryTreeItem {
|
|
|
115
131
|
hierarchy: number[];
|
|
116
132
|
blogPostBlogCategoryMappings: BlogPostBlogCategoryMapping[];
|
|
117
133
|
extensionData: object;
|
|
118
|
-
childCategories:
|
|
134
|
+
childCategories: IChildCategory[];
|
|
119
135
|
}
|
|
120
136
|
/**
|
|
121
137
|
* Blog etiketini temsil eden arayüz (duplikasyon kaldırıldı)
|