@fas-core/shared-types 1.0.19 → 1.0.21
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
|
@@ -174,6 +174,7 @@ interface IStore extends BaseEntity {
|
|
|
174
174
|
shortName: string;
|
|
175
175
|
slug: string;
|
|
176
176
|
domain: string;
|
|
177
|
+
isPrimarySite: boolean;
|
|
177
178
|
currencies: ICurrency[];
|
|
178
179
|
defaultCurrency: ICurrency;
|
|
179
180
|
settings: IStoreSettings;
|
|
@@ -239,6 +240,7 @@ interface ICategory extends BaseEntity {
|
|
|
239
240
|
status: boolean;
|
|
240
241
|
metaData: Metadata;
|
|
241
242
|
seoMetaData: ISEOMetaData;
|
|
243
|
+
subCategories?: ICategory[];
|
|
242
244
|
}
|
|
243
245
|
|
|
244
246
|
interface IBrand extends BaseEntity {
|
package/dist/index.d.ts
CHANGED
|
@@ -174,6 +174,7 @@ interface IStore extends BaseEntity {
|
|
|
174
174
|
shortName: string;
|
|
175
175
|
slug: string;
|
|
176
176
|
domain: string;
|
|
177
|
+
isPrimarySite: boolean;
|
|
177
178
|
currencies: ICurrency[];
|
|
178
179
|
defaultCurrency: ICurrency;
|
|
179
180
|
settings: IStoreSettings;
|
|
@@ -239,6 +240,7 @@ interface ICategory extends BaseEntity {
|
|
|
239
240
|
status: boolean;
|
|
240
241
|
metaData: Metadata;
|
|
241
242
|
seoMetaData: ISEOMetaData;
|
|
243
|
+
subCategories?: ICategory[];
|
|
242
244
|
}
|
|
243
245
|
|
|
244
246
|
interface IBrand extends BaseEntity {
|
package/package.json
CHANGED