nextemos 5.5.1 → 5.5.3
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 +15 -1
- package/package.json +1 -1
|
@@ -93,6 +93,8 @@ export interface IPriceVariations {
|
|
|
93
93
|
quantityTo: number;
|
|
94
94
|
salesQuantity: number;
|
|
95
95
|
value: number;
|
|
96
|
+
productRefId: number;
|
|
97
|
+
extensionData: any;
|
|
96
98
|
}
|
|
97
99
|
export interface Rate {
|
|
98
100
|
id: number;
|
|
@@ -349,11 +351,23 @@ export interface IBrand {
|
|
|
349
351
|
id: number;
|
|
350
352
|
order: number;
|
|
351
353
|
name: string;
|
|
354
|
+
filePath: string;
|
|
355
|
+
thumbnailUrl: string;
|
|
356
|
+
className: string;
|
|
352
357
|
routePath: string;
|
|
358
|
+
routeTitle: string;
|
|
359
|
+
routeDescription: string;
|
|
353
360
|
parameterName: string;
|
|
354
361
|
integrationCode: string;
|
|
355
362
|
isApproved: boolean;
|
|
356
|
-
routeLocalizations:
|
|
363
|
+
routeLocalizations: {
|
|
364
|
+
id: number;
|
|
365
|
+
culture: string;
|
|
366
|
+
parameterName: string;
|
|
367
|
+
routeDescription: string;
|
|
368
|
+
routePath: string;
|
|
369
|
+
routeTitle: string;
|
|
370
|
+
}[];
|
|
357
371
|
extensionData: any;
|
|
358
372
|
}
|
|
359
373
|
export interface IGetProductRelationsResponse extends IResponse {
|