@fas-core/shared-types 1.0.38 → 1.0.40
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/index.d.mts +2 -0
- package/dist/index.d.ts +2 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -188,6 +188,7 @@ interface IStock extends BaseEntity {
|
|
|
188
188
|
|
|
189
189
|
interface IProductVariantFields {
|
|
190
190
|
description: string;
|
|
191
|
+
overview: string;
|
|
191
192
|
price: IPrice;
|
|
192
193
|
quantity: number;
|
|
193
194
|
brand: IBrand;
|
|
@@ -416,6 +417,7 @@ interface ITechnicalSpecGroup extends BaseEntity {
|
|
|
416
417
|
name: string;
|
|
417
418
|
key: string;
|
|
418
419
|
description: string;
|
|
420
|
+
columns: ITechnicalSpecColumn[];
|
|
419
421
|
sortOrder: number;
|
|
420
422
|
isVisible: boolean;
|
|
421
423
|
status: boolean;
|
package/dist/index.d.ts
CHANGED
|
@@ -188,6 +188,7 @@ interface IStock extends BaseEntity {
|
|
|
188
188
|
|
|
189
189
|
interface IProductVariantFields {
|
|
190
190
|
description: string;
|
|
191
|
+
overview: string;
|
|
191
192
|
price: IPrice;
|
|
192
193
|
quantity: number;
|
|
193
194
|
brand: IBrand;
|
|
@@ -416,6 +417,7 @@ interface ITechnicalSpecGroup extends BaseEntity {
|
|
|
416
417
|
name: string;
|
|
417
418
|
key: string;
|
|
418
419
|
description: string;
|
|
420
|
+
columns: ITechnicalSpecColumn[];
|
|
419
421
|
sortOrder: number;
|
|
420
422
|
isVisible: boolean;
|
|
421
423
|
status: boolean;
|
package/package.json
CHANGED