chore(types,utils): add featureFlag and version tags (#12464)
This commit is contained in:
@@ -39,7 +39,10 @@ export type PaginatedResponse<T> = {
|
||||
*/
|
||||
count: number
|
||||
/**
|
||||
* The estimated number of items.
|
||||
* The estimated count retrieved from the PostgreSQL query planner, which may be inaccurate.
|
||||
*
|
||||
* @featureFlag index_engine
|
||||
* @version 2.8.0
|
||||
*/
|
||||
estimate_count?: number
|
||||
} & T
|
||||
|
||||
@@ -69,6 +69,10 @@ export type IndexQueryConfig<TEntry extends string> = {
|
||||
export type QueryFunctionReturnPagination = {
|
||||
skip: number
|
||||
take: number
|
||||
/**
|
||||
* @featureFlag index_engine
|
||||
* @version 2.8.0
|
||||
*/
|
||||
estimate_count: number
|
||||
}
|
||||
|
||||
|
||||
@@ -51,6 +51,8 @@ export const CartWorkflowEvents = {
|
||||
|
||||
/**
|
||||
* Emitted when the customer in the cart is transferred.
|
||||
*
|
||||
* @version 2.8.0
|
||||
*
|
||||
* @eventPayload
|
||||
* ```ts
|
||||
|
||||
Reference in New Issue
Block a user