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 recent changes in contentLib and nodeLib forces a developer to specify Aggregation type parameters when using the parameter and result interfaces for query() et al.
By adding some default type parameters the developers would not need to deal with missing Aggregation type parameters if they are not needed anyway.
`never` is used as the default type parameter for the `aggregation`
properties in the different QueryParams.
`undefined` is used as the default type parameter for `aggregations`
in different query results. The reason `never` is not used is that
since the property is not optional, we are not able to construct this
object independently of the library functions.
`never` is used as the default type parameter for the `aggregation`
properties in the different QueryParams.
`undefined` is used as the default type parameter for `aggregations`
in different query results. The reason `never` is not used is that
since the property is not optional, we are not able to construct this
object independently of the library functions.
`never` is used as the default type parameter for the `aggregation`
properties in the different QueryParams.
`undefined` is used as the default type parameter for `aggregations`
in different query results. The reason `never` is not used is that
since the property is not optional, we are not able to construct this
object independently of the library functions.
(cherry picked from commit 8d1c425)
The recent changes in contentLib and nodeLib forces a developer to specify Aggregation type parameters when using the parameter and result interfaces for
query()
et al.By adding some default type parameters the developers would not need to deal with missing Aggregation type parameters if they are not needed anyway.
The text was updated successfully, but these errors were encountered: