@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 +1 -1
- package/src/types/schema.ts +2 -2
package/package.json
CHANGED
package/src/types/schema.ts
CHANGED
|
@@ -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
|