Hello I'm realy excited your project, and I found issue on frontend type APIUrlParams
When you trying to make pagination it's throw error because you cant pass pagination as object in type.
export type APIUrlParams<TContentTypeUID extends Common.UID.ContentType> =
WithLocale<
Params.Pick<
TContentTypeUID,
"fields" | "filters" | "sort" | "populate" | "publicationState"
> & {
pagination?: Params.Pick<TContentTypeUID, "pagination">;
}
>;
Hello I'm realy excited your project, and I found issue on frontend type APIUrlParams
When you trying to make pagination it's throw error because you cant pass pagination as object in type.