@fas-core/shared-types 1.0.31 → 1.0.33
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 +4 -2
- package/dist/index.d.ts +4 -2
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -57,9 +57,11 @@ interface IPrice {
|
|
|
57
57
|
discount: number;
|
|
58
58
|
}
|
|
59
59
|
interface ITechSpec {
|
|
60
|
+
group?: string;
|
|
60
61
|
key: string;
|
|
61
62
|
label: string;
|
|
62
|
-
value
|
|
63
|
+
value?: unknown;
|
|
64
|
+
values?: Metadata;
|
|
63
65
|
}
|
|
64
66
|
interface IShipping {
|
|
65
67
|
weightLb: number;
|
|
@@ -152,7 +154,7 @@ interface IBrand extends BaseEntity {
|
|
|
152
154
|
slug: string;
|
|
153
155
|
description: string;
|
|
154
156
|
logo: string;
|
|
155
|
-
|
|
157
|
+
stores: IStore[];
|
|
156
158
|
status: boolean;
|
|
157
159
|
metaData: Metadata;
|
|
158
160
|
seoMetaData: ISEOMetaData;
|
package/dist/index.d.ts
CHANGED
|
@@ -57,9 +57,11 @@ interface IPrice {
|
|
|
57
57
|
discount: number;
|
|
58
58
|
}
|
|
59
59
|
interface ITechSpec {
|
|
60
|
+
group?: string;
|
|
60
61
|
key: string;
|
|
61
62
|
label: string;
|
|
62
|
-
value
|
|
63
|
+
value?: unknown;
|
|
64
|
+
values?: Metadata;
|
|
63
65
|
}
|
|
64
66
|
interface IShipping {
|
|
65
67
|
weightLb: number;
|
|
@@ -152,7 +154,7 @@ interface IBrand extends BaseEntity {
|
|
|
152
154
|
slug: string;
|
|
153
155
|
description: string;
|
|
154
156
|
logo: string;
|
|
155
|
-
|
|
157
|
+
stores: IStore[];
|
|
156
158
|
status: boolean;
|
|
157
159
|
metaData: Metadata;
|
|
158
160
|
seoMetaData: ISEOMetaData;
|
package/package.json
CHANGED