UNPKG

@klevu/core

Version:

Typescript SDK that simplifies development on Klevu backend. Klevu provides advanced AI-powered search and discovery solutions for online retailers.

15 lines (14 loc) 641 B
export type KlevuBaseQuerySettingsQuery = { /** * This is the phrase to be searched. It can be any free text up-to 128 * characters long. If a longer string is provided it is automatically * truncated after the first 128 characters. */ term?: string; /** * Specify the name of the category to retrieve results from, in the same case and format as it is indexed with Klevu. * * For nested categories, use the ; character to separate the hierarchy. For example, for 'Mens > Shoes > Trainers and Sneakers' you would specify: Mens;Shoes;Trainers and Sneakers. */ categoryPath?: string; };