UNPKG

@klevu/core

Version:

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

9 lines (8 loc) 515 B
import type { KlevuBaseQuery } from "./KlevuBaseQuery.js"; import type { KlevuSimilarProductsQuery } from "./KlevuSimilarProductsQuery.js"; import type { KlevuTrendingProductsQuery } from "./KlevuTrendingProductsQuery.js"; import type { KlevuAlsoViewedQuery } from "./KlevuAlsoViewedQuery.js"; /** * All possible record queries that can be used with {@link KlevuFetch} function */ export type KlevuAllRecordQueries = KlevuBaseQuery | KlevuSimilarProductsQuery | KlevuTrendingProductsQuery | KlevuAlsoViewedQuery;