@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.
@@ -178,6 +178,7 @@ export declare enum ProductAttributeTypeEnum {
178
178
  HTML = "HTML",
179
179
  MULTIPLE_CHOICE = "MULTIPLE_CHOICE",
180
180
  NUMERIC = "NUMERIC",
181
+ TABLE = "TABLE",
181
182
  TEXT = "TEXT"
182
183
  }
183
184
  /**
@@ -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;