@fas-core/shared-types 1.0.36 → 1.0.38
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 +1 -8
- package/dist/index.d.ts +1 -8
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -197,15 +197,7 @@ interface IProductVariantFields {
|
|
|
197
197
|
categories: ICategory[];
|
|
198
198
|
images: string[];
|
|
199
199
|
videos: string[];
|
|
200
|
-
documentation: IDocumentation;
|
|
201
|
-
techSpecs: ITechSpec[];
|
|
202
|
-
physical: IKeyValue[];
|
|
203
200
|
shipping: IShipping;
|
|
204
|
-
compliance: ICompliance;
|
|
205
|
-
features: string[];
|
|
206
|
-
content: IContent;
|
|
207
|
-
origin: string;
|
|
208
|
-
returnable: boolean;
|
|
209
201
|
relationships: IRelationships;
|
|
210
202
|
metaData: Metadata;
|
|
211
203
|
seoMetaData: ISEOMetaData;
|
|
@@ -430,6 +422,7 @@ interface ITechnicalSpecGroup extends BaseEntity {
|
|
|
430
422
|
}
|
|
431
423
|
interface IProductTechnicalSpec extends BaseEntity {
|
|
432
424
|
product: IProduct;
|
|
425
|
+
variant?: IVariant | null;
|
|
433
426
|
group: ITechnicalSpecGroup;
|
|
434
427
|
groupKey: string;
|
|
435
428
|
groupName: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -197,15 +197,7 @@ interface IProductVariantFields {
|
|
|
197
197
|
categories: ICategory[];
|
|
198
198
|
images: string[];
|
|
199
199
|
videos: string[];
|
|
200
|
-
documentation: IDocumentation;
|
|
201
|
-
techSpecs: ITechSpec[];
|
|
202
|
-
physical: IKeyValue[];
|
|
203
200
|
shipping: IShipping;
|
|
204
|
-
compliance: ICompliance;
|
|
205
|
-
features: string[];
|
|
206
|
-
content: IContent;
|
|
207
|
-
origin: string;
|
|
208
|
-
returnable: boolean;
|
|
209
201
|
relationships: IRelationships;
|
|
210
202
|
metaData: Metadata;
|
|
211
203
|
seoMetaData: ISEOMetaData;
|
|
@@ -430,6 +422,7 @@ interface ITechnicalSpecGroup extends BaseEntity {
|
|
|
430
422
|
}
|
|
431
423
|
interface IProductTechnicalSpec extends BaseEntity {
|
|
432
424
|
product: IProduct;
|
|
425
|
+
variant?: IVariant | null;
|
|
433
426
|
group: ITechnicalSpecGroup;
|
|
434
427
|
groupKey: string;
|
|
435
428
|
groupName: string;
|
package/package.json
CHANGED