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.
@@ -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: RouteLocalization[];
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 {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nextemos",
3
- "version": "5.5.1",
3
+ "version": "5.5.2",
4
4
  "description": "For helpers and hooks used in NextJS projects",
5
5
  "main": "dist/index.js",
6
6
  "types": "./dist/index.d.ts",