@ikas/storefront 0.0.131 → 0.0.133
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/build/__generated__/global-types.d.ts +1 -0
- package/build/api/blog/__generated__/listBlog.d.ts +19 -0
- package/build/index.es.js +5666 -5650
- package/build/index.js +5653 -5636
- package/build/models/data/blog/index.d.ts +11 -0
- package/package.json +1 -1
|
@@ -17,8 +17,25 @@ export interface listBlog_listBlog_data_category {
|
|
|
17
17
|
deleted: boolean | null;
|
|
18
18
|
id: string;
|
|
19
19
|
imageId: string;
|
|
20
|
+
name: string;
|
|
20
21
|
metadata: listBlog_listBlog_data_category_metadata;
|
|
21
22
|
}
|
|
23
|
+
export interface listBlog_listBlog_data_blogContent {
|
|
24
|
+
__typename: "BlogContent";
|
|
25
|
+
content: string;
|
|
26
|
+
createdAt: any | null;
|
|
27
|
+
deleted: boolean | null;
|
|
28
|
+
id: string;
|
|
29
|
+
updatedAt: any | null;
|
|
30
|
+
}
|
|
31
|
+
export interface listBlog_listBlog_data_tags {
|
|
32
|
+
__typename: "BlogTag";
|
|
33
|
+
createdAt: any | null;
|
|
34
|
+
id: string;
|
|
35
|
+
name: string;
|
|
36
|
+
deleted: boolean | null;
|
|
37
|
+
updatedAt: any | null;
|
|
38
|
+
}
|
|
22
39
|
export interface listBlog_listBlog_data_metadata {
|
|
23
40
|
__typename: "BlogMetadata";
|
|
24
41
|
createdAt: any | null;
|
|
@@ -41,6 +58,8 @@ export interface listBlog_listBlog_data {
|
|
|
41
58
|
title: string;
|
|
42
59
|
categoryId: string;
|
|
43
60
|
category: listBlog_listBlog_data_category;
|
|
61
|
+
blogContent: listBlog_listBlog_data_blogContent;
|
|
62
|
+
tags: listBlog_listBlog_data_tags[] | null;
|
|
44
63
|
createdAt: any | null;
|
|
45
64
|
deleted: boolean | null;
|
|
46
65
|
id: string;
|