nextemos 5.5.1 → 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 +13 -1
- package/package.json +1 -1
|
@@ -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 {
|