@coveo/platform-client 69.5.1 → 69.7.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.
|
@@ -144,6 +144,10 @@ export interface FieldListingFilters {
|
|
|
144
144
|
* The origin of the fields to list.
|
|
145
145
|
*/
|
|
146
146
|
type?: FieldTypes;
|
|
147
|
+
/**
|
|
148
|
+
* The names of the fields to list.
|
|
149
|
+
*/
|
|
150
|
+
fieldNames?: string[];
|
|
147
151
|
}
|
|
148
152
|
export interface FieldListingOptions extends Paginated {
|
|
149
153
|
/**
|
|
@@ -135,6 +135,10 @@ export interface GenericObject {
|
|
|
135
135
|
* The filter applied to the records of the object
|
|
136
136
|
*/
|
|
137
137
|
filter?: string;
|
|
138
|
+
/**
|
|
139
|
+
* Whether to index all attachments linked to this object
|
|
140
|
+
*/
|
|
141
|
+
indexAttachments?: boolean;
|
|
138
142
|
}
|
|
139
143
|
export interface ObjectsToGet {
|
|
140
144
|
/**
|