@coveo/platform-client 42.1.0 → 42.2.0
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.
|
@@ -50,6 +50,14 @@ export interface CreateCatalogConfigurationModel {
|
|
|
50
50
|
* The configuration mapping of index fields to standard commerce fields
|
|
51
51
|
*/
|
|
52
52
|
fieldsMapping?: CatalogFieldsMapping;
|
|
53
|
+
/**
|
|
54
|
+
* The host of the storefront to which the listing pages should be associated.
|
|
55
|
+
*/
|
|
56
|
+
host?: string;
|
|
57
|
+
/**
|
|
58
|
+
* A concatenation of language, country and currency identifiers.
|
|
59
|
+
*/
|
|
60
|
+
locale?: string;
|
|
53
61
|
}
|
|
54
62
|
export interface CatalogConfigurationModel {
|
|
55
63
|
/**
|
|
@@ -80,6 +88,14 @@ export interface CatalogConfigurationModel {
|
|
|
80
88
|
* Catalogs associated to the configuration
|
|
81
89
|
*/
|
|
82
90
|
associatedCatalogs?: IAssociatedCatalogModel[];
|
|
91
|
+
/**
|
|
92
|
+
* The host of the storefront to which the listing pages should be associated.
|
|
93
|
+
*/
|
|
94
|
+
host?: string;
|
|
95
|
+
/**
|
|
96
|
+
* A concatenation of language, country and currency identifiers.
|
|
97
|
+
*/
|
|
98
|
+
locale?: string;
|
|
83
99
|
}
|
|
84
100
|
export interface IAssociatedCatalogModel {
|
|
85
101
|
/**
|