@deboxsoft/module-core
Advanced tools
Comparing version 1.8.0-2 to 1.8.0-3
{ | ||
"name": "@deboxsoft/module-core", | ||
"version": "1.8.0-2", | ||
"version": "1.8.0-3", | ||
"license": "SEE LICENSE IN LICENSE", | ||
@@ -5,0 +5,0 @@ "maintainers": [ |
export interface PageCursorParams { | ||
limit: number; | ||
limit?: number; | ||
before?: string; | ||
@@ -4,0 +4,0 @@ after?: string; |
@@ -11,4 +11,4 @@ import type { PageCursorParams } from "./pagination"; | ||
export interface CollectionParams<F = Record<string, any>> { | ||
pageCursor?: PageCursorParams; | ||
filter?: F; | ||
pageCursor: PageCursorParams; | ||
filter: F; | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
44277