@stoker-platform/types 0.5.61 → 0.5.62

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stoker-platform/types",
3
- "version": "0.5.61",
3
+ "version": "0.5.62",
4
4
  "type": "module",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "main": "src/main.ts",
@@ -798,7 +798,7 @@ export interface CollectionAdmin {
798
798
  direction?: "asc" | "desc"
799
799
  }>)
800
800
  itemsPerPage?: number | (() => number | Promise<number>)
801
- searchOptions?: SearchOptions
801
+ searchOptions?: SearchOptions & { hitsPerPage?: number }
802
802
  list?: ListConfig | (() => ListConfig | Promise<ListConfig>)
803
803
  cards?: CardsConfig | (() => CardsConfig | Promise<CardsConfig>)
804
804
  images?: ImagesConfig | (() => ImagesConfig | Promise<ImagesConfig>)
@@ -871,7 +871,7 @@ export interface CollectionAdminCache {
871
871
  field: string
872
872
  direction?: "asc" | "desc"
873
873
  }
874
- searchOptions?: SearchOptions
874
+ searchOptions?: SearchOptions & { hitsPerPage?: number }
875
875
  itemsPerPage?: number
876
876
  list?: ListConfig
877
877
  cards?: CardsConfig