nextemos 5.8.10 → 5.8.12

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.
@@ -72,7 +72,7 @@ export interface IProduct {
72
72
  categories?: ICategory[];
73
73
  variations?: number[];
74
74
  channelProperties?: ChannelProperty[];
75
- types?: Type[];
75
+ types?: IProductType[];
76
76
  barcodes?: Barcode[];
77
77
  documents?: IDocument[];
78
78
  vendors?: Vendor[];
@@ -171,19 +171,6 @@ export interface ChannelProperty {
171
171
  isShowedListPage: boolean;
172
172
  isShowedDetailPage: boolean;
173
173
  }
174
- export interface Type {
175
- id: number;
176
- name: string;
177
- key: string;
178
- integrationCode: string;
179
- isShowedOnPage: boolean;
180
- parameterName: string;
181
- routePath: string;
182
- routeTitle: string;
183
- routeDescription: string;
184
- isAggregated: boolean;
185
- extensionData: any;
186
- }
187
174
  export interface Barcode {
188
175
  id: number;
189
176
  barcode: string;
@@ -314,6 +301,7 @@ export interface IProductType {
314
301
  routeLocalizations: RouteLocalization[];
315
302
  isAggregated: boolean;
316
303
  extensionData: any;
304
+ iconUrl?: string;
317
305
  }
318
306
  export interface IGetFavoritesResponse extends IResponsePaging {
319
307
  data: IProductFavorite[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nextemos",
3
- "version": "5.8.10",
3
+ "version": "5.8.12",
4
4
  "description": "For helpers and hooks used in NextJS projects",
5
5
  "main": "dist/index.js",
6
6
  "types": "./dist/index.d.ts",