You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/**The search parameter value contains the term to be searched for and has a 100-character limit. For suggestions, min 3 characters in addition. */
822
829
search: string;
823
830
/**The default table list searches across all Dataverse search–configured tables and columns. The default list is configured by your administrator when Dataverse search is enabled. */
824
-
entities?: string[]|SearchEntity[];
831
+
entities?: string[]|SearchEntity[]|string;
825
832
/**Filters are applied while searching data and are specified in standard OData syntax. */
/**A list of comma-separated clauses where each clause consists of a column name followed by 'asc' (ascending, which is the default) or 'desc' (descending). This list specifies how to order the results in order of precedence. */
843
850
orderBy?: string[];
844
851
/**V2. Options are settings configured to search a search term. */
845
-
options?: SearchOptions[];
852
+
options?: string|SearchOptions;
846
853
/**
847
-
* Specifies whether any or all the search terms must be matched to count the document as a match. The default is 'any'.
854
+
* V1. Specifies whether any or all the search terms must be matched to count the document as a match. The default is 'any'.
848
855
* @deprecated Use "options.searchmode".
849
856
*/
850
857
searchMode?: SearchMode;
851
858
/**
852
-
* For V2, use "options.querytype". The search type specifies the syntax of a search query. Using 'simple' selects simple query syntax and 'full' selects Lucene query syntax. The default is 'simple'.
859
+
* V1. The search type specifies the syntax of a search query. Using 'simple' selects simple query syntax and 'full' selects Lucene query syntax. The default is 'simple'.
* The Azure Cognitive search error returned as part of the response.
1232
+
*/
1233
+
exporttypeSearchErrorDetail={
1234
+
/**
1235
+
* The error code.
1236
+
*/
1237
+
code: string;
1238
+
/**
1239
+
* The error message.
1240
+
*/
1241
+
message: string;
1242
+
/**
1243
+
* More error information.
1244
+
*/
1245
+
propertybag: Record<string,any>;
1246
+
};
1247
+
/**
1248
+
* A facet query result that reports the number of documents with a field falling within a particular range or having a particular value or interval.
1249
+
*/
1250
+
exporttypeSearchFacetResult={
1251
+
/**
1252
+
* The count of documents falling within the bucket described by this facet.
1253
+
*/
1254
+
count?: number;
1255
+
/**
1256
+
* Value indicating the inclusive lower bound of the facet's range, or null to indicate that there's no lower bound.
1257
+
*/
1258
+
from: any;
1259
+
/**
1260
+
* Value indicating the exclusive upper bound of the facet's range, or null to indicate that there's no upper bound.
1261
+
*/
1262
+
to: any;
1263
+
/**
1264
+
* Type of the facet.
1265
+
*/
1266
+
type: "Value"|"Range";
1267
+
/**
1268
+
* Value of the facet, or the inclusive lower bound if it's an interval facet.
1269
+
*/
1270
+
value: any;
1271
+
/**
1272
+
* Another or optional value of the facet, populated while faceting on lookups.
1273
+
*/
1274
+
optionalvalue: any;
1275
+
};
1276
+
/**
1277
+
* The query context returned as part of response. This property is used for backend search. It's included for future feature releases and isn't currently used.
1278
+
*/
1279
+
exporttypeSearchQueryContext={
1280
+
/** The query string as specified in the request. */
1281
+
originalquery: string;
1282
+
/**
1283
+
* The query string that Dataverse search used to perform the query. Dataverse search uses the altered query string
1284
+
* if the original query string contained spelling mistakes or didn't yield optimal results.
1285
+
*/
1286
+
alteredquery: string;
1287
+
/** The reasons behind query alter decision by Dataverse search. */
1288
+
reason: string[];
1289
+
/** The spell suggestion that is the likely words that represent user's intent. Populated only when Dataverse alters the query search due to spell check. */
0 commit comments