@fas-core/shared-types 1.0.37 → 1.0.39
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
|
@@ -416,12 +416,14 @@ interface ITechnicalSpecGroup extends BaseEntity {
|
|
|
416
416
|
name: string;
|
|
417
417
|
key: string;
|
|
418
418
|
description: string;
|
|
419
|
+
columns: ITechnicalSpecColumn[];
|
|
419
420
|
sortOrder: number;
|
|
420
421
|
isVisible: boolean;
|
|
421
422
|
status: boolean;
|
|
422
423
|
}
|
|
423
424
|
interface IProductTechnicalSpec extends BaseEntity {
|
|
424
425
|
product: IProduct;
|
|
426
|
+
variant?: IVariant | null;
|
|
425
427
|
group: ITechnicalSpecGroup;
|
|
426
428
|
groupKey: string;
|
|
427
429
|
groupName: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -416,12 +416,14 @@ interface ITechnicalSpecGroup extends BaseEntity {
|
|
|
416
416
|
name: string;
|
|
417
417
|
key: string;
|
|
418
418
|
description: string;
|
|
419
|
+
columns: ITechnicalSpecColumn[];
|
|
419
420
|
sortOrder: number;
|
|
420
421
|
isVisible: boolean;
|
|
421
422
|
status: boolean;
|
|
422
423
|
}
|
|
423
424
|
interface IProductTechnicalSpec extends BaseEntity {
|
|
424
425
|
product: IProduct;
|
|
426
|
+
variant?: IVariant | null;
|
|
425
427
|
group: ITechnicalSpecGroup;
|
|
426
428
|
groupKey: string;
|
|
427
429
|
groupName: string;
|
package/package.json
CHANGED