nextemos 5.5.0 → 5.5.2
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/product.d.ts +14 -2
- package/package.json +1 -1
|
@@ -340,7 +340,7 @@ export interface IProductStockAlert {
|
|
|
340
340
|
lastInformedDate: string;
|
|
341
341
|
}
|
|
342
342
|
export interface IGetBrandListResponse extends IResponsePaging {
|
|
343
|
-
|
|
343
|
+
brands: IBrand[];
|
|
344
344
|
}
|
|
345
345
|
export interface IGetBrandResponse extends IResponse {
|
|
346
346
|
brand: IBrand;
|
|
@@ -349,11 +349,23 @@ export interface IBrand {
|
|
|
349
349
|
id: number;
|
|
350
350
|
order: number;
|
|
351
351
|
name: string;
|
|
352
|
+
filePath: string;
|
|
353
|
+
thumbnailUrl: string;
|
|
354
|
+
className: string;
|
|
352
355
|
routePath: string;
|
|
356
|
+
routeTitle: string;
|
|
357
|
+
routeDescription: string;
|
|
353
358
|
parameterName: string;
|
|
354
359
|
integrationCode: string;
|
|
355
360
|
isApproved: boolean;
|
|
356
|
-
routeLocalizations:
|
|
361
|
+
routeLocalizations: {
|
|
362
|
+
id: number;
|
|
363
|
+
culture: string;
|
|
364
|
+
parameterName: string;
|
|
365
|
+
routeDescription: string;
|
|
366
|
+
routePath: string;
|
|
367
|
+
routeTitle: string;
|
|
368
|
+
}[];
|
|
357
369
|
extensionData: any;
|
|
358
370
|
}
|
|
359
371
|
export interface IGetProductRelationsResponse extends IResponse {
|