fabrikantencore 2.2.1 → 2.2.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/esm2020/src/app/modules/fabrikantencore/components/fab-product-tile/fab-product-tile.component.mjs +10 -5
- package/esm2020/src/app/modules/fabrikantencore/swagger/SwaggerClient.mjs +3 -1
- package/fesm2015/fabrikantencore.mjs +11 -4
- package/fesm2015/fabrikantencore.mjs.map +1 -1
- package/fesm2020/fabrikantencore.mjs +11 -4
- package/fesm2020/fabrikantencore.mjs.map +1 -1
- package/package.json +1 -1
- package/src/app/modules/fabrikantencore/swagger/SwaggerClient.d.ts +2 -0
package/package.json
CHANGED
|
@@ -925,6 +925,7 @@ export interface IFabrikantenRangeInputViewModel {
|
|
|
925
925
|
export declare class FabrikantenProductViewModel implements IFabrikantenProductViewModel {
|
|
926
926
|
id: number;
|
|
927
927
|
name?: string | undefined;
|
|
928
|
+
imagePath?: string | undefined;
|
|
928
929
|
urlName?: string | undefined;
|
|
929
930
|
textureBaseViewModel?: FabrikantenTextureBaseViewModel | undefined;
|
|
930
931
|
fabrikantenBCBProductViewModels?: FabrikantenBCBProductViewModel[] | undefined;
|
|
@@ -936,6 +937,7 @@ export declare class FabrikantenProductViewModel implements IFabrikantenProductV
|
|
|
936
937
|
export interface IFabrikantenProductViewModel {
|
|
937
938
|
id: number;
|
|
938
939
|
name?: string | undefined;
|
|
940
|
+
imagePath?: string | undefined;
|
|
939
941
|
urlName?: string | undefined;
|
|
940
942
|
textureBaseViewModel?: FabrikantenTextureBaseViewModel | undefined;
|
|
941
943
|
fabrikantenBCBProductViewModels?: FabrikantenBCBProductViewModel[] | undefined;
|