@ikas/storefront-models 5.0.39 → 5.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/build/index.d.ts +1 -0
- package/build/models/merchant-settings/index.d.ts +1 -0
- package/build/models/product/index.d.ts +2 -0
- package/build/models/product/translations/index.d.ts +5 -0
- package/build/models/theme-json/component/prop/index.d.ts +1 -0
- package/build/models/theme-json/custom-data/index.d.ts +1 -0
- package/build-cjs/index.d.ts +1 -0
- package/build-cjs/models/merchant-settings/index.d.ts +1 -0
- package/build-cjs/models/product/index.d.ts +2 -0
- package/build-cjs/models/product/translations/index.d.ts +5 -0
- package/build-cjs/models/theme-json/component/prop/index.d.ts +1 -0
- package/build-cjs/models/theme-json/custom-data/index.d.ts +1 -0
- package/package.json +1 -1
package/build/index.d.ts
CHANGED
|
@@ -166,6 +166,7 @@ export * from "./models/product/sales-channel";
|
|
|
166
166
|
export * from "./models/product/star";
|
|
167
167
|
export * from "./models/product/stock-location";
|
|
168
168
|
export * from "./models/product/tag";
|
|
169
|
+
export * from "./models/product/translations";
|
|
169
170
|
export * from "./models/product/variant/bundle-settings/bundle-product";
|
|
170
171
|
export * from "./models/product/variant/bundle-settings";
|
|
171
172
|
export * from "./models/product/variant/price/product-campaign-price";
|
|
@@ -13,6 +13,7 @@ import { IkasProductCampaign } from "./campaign";
|
|
|
13
13
|
import { IkasProductCampaignOffer } from "./campaign-offer";
|
|
14
14
|
import { IkasProductGroup } from "./group";
|
|
15
15
|
import { IkasProductSalesChannel } from "./sales-channel";
|
|
16
|
+
import { IkasProductTranslation } from "./translations";
|
|
16
17
|
export declare type IkasProduct = {
|
|
17
18
|
id: string;
|
|
18
19
|
name: string;
|
|
@@ -39,6 +40,7 @@ export declare type IkasProduct = {
|
|
|
39
40
|
campaignOffers: IkasProductCampaignOffer[] | null;
|
|
40
41
|
productGroup: IkasProductGroup | null;
|
|
41
42
|
salesChannels: IkasProductSalesChannel[] | null;
|
|
43
|
+
translations?: IkasProductTranslation[] | null;
|
|
42
44
|
};
|
|
43
45
|
export declare enum IkasProductType {
|
|
44
46
|
PHYSICAL = "PHYSICAL",
|
|
@@ -21,6 +21,7 @@ export declare type IkasThemeJsonCustomData = {
|
|
|
21
21
|
parent?: IkasThemeJsonCustomData | null;
|
|
22
22
|
excludedFields?: string[] | null;
|
|
23
23
|
excludedFieldsCategory?: string[] | null;
|
|
24
|
+
isFacetListNotSent?: boolean;
|
|
24
25
|
};
|
|
25
26
|
export declare type IkasThemeJsonEnumOption = {
|
|
26
27
|
id: string;
|
package/build-cjs/index.d.ts
CHANGED
|
@@ -166,6 +166,7 @@ export * from "./models/product/sales-channel";
|
|
|
166
166
|
export * from "./models/product/star";
|
|
167
167
|
export * from "./models/product/stock-location";
|
|
168
168
|
export * from "./models/product/tag";
|
|
169
|
+
export * from "./models/product/translations";
|
|
169
170
|
export * from "./models/product/variant/bundle-settings/bundle-product";
|
|
170
171
|
export * from "./models/product/variant/bundle-settings";
|
|
171
172
|
export * from "./models/product/variant/price/product-campaign-price";
|
|
@@ -13,6 +13,7 @@ import { IkasProductCampaign } from "./campaign";
|
|
|
13
13
|
import { IkasProductCampaignOffer } from "./campaign-offer";
|
|
14
14
|
import { IkasProductGroup } from "./group";
|
|
15
15
|
import { IkasProductSalesChannel } from "./sales-channel";
|
|
16
|
+
import { IkasProductTranslation } from "./translations";
|
|
16
17
|
export declare type IkasProduct = {
|
|
17
18
|
id: string;
|
|
18
19
|
name: string;
|
|
@@ -39,6 +40,7 @@ export declare type IkasProduct = {
|
|
|
39
40
|
campaignOffers: IkasProductCampaignOffer[] | null;
|
|
40
41
|
productGroup: IkasProductGroup | null;
|
|
41
42
|
salesChannels: IkasProductSalesChannel[] | null;
|
|
43
|
+
translations?: IkasProductTranslation[] | null;
|
|
42
44
|
};
|
|
43
45
|
export declare enum IkasProductType {
|
|
44
46
|
PHYSICAL = "PHYSICAL",
|
|
@@ -21,6 +21,7 @@ export declare type IkasThemeJsonCustomData = {
|
|
|
21
21
|
parent?: IkasThemeJsonCustomData | null;
|
|
22
22
|
excludedFields?: string[] | null;
|
|
23
23
|
excludedFieldsCategory?: string[] | null;
|
|
24
|
+
isFacetListNotSent?: boolean;
|
|
24
25
|
};
|
|
25
26
|
export declare type IkasThemeJsonEnumOption = {
|
|
26
27
|
id: string;
|