nucleus-core-ts 0.9.128 → 0.9.129

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.
@@ -822,13 +822,13 @@ export interface StandardQueryParams {
822
822
  limit?: number;
823
823
  offset?: number;
824
824
  search?: string;
825
- searchFields?: string[];
826
- filters?: FilterCondition[];
827
- sort?: SortCondition[];
828
- select?: string[];
829
- with?: RelationQuery[];
825
+ searchFields?: string | string[];
826
+ filters?: FilterCondition[] | string;
827
+ sort?: SortCondition[] | string;
828
+ select?: string[] | string;
829
+ with?: RelationQuery[] | string;
830
830
  distinct?: boolean;
831
- distinctOn?: string[];
831
+ distinctOn?: string[] | string;
832
832
  }
833
833
  export interface PaginationMeta {
834
834
  page: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nucleus-core-ts",
3
- "version": "0.9.128",
3
+ "version": "0.9.129",
4
4
  "description": "Production-ready, enterprise-grade TypeScript framework for building multi-tenant APIs",
5
5
  "author": "Hidayet Can Özcan <hidayetcan@gmail.com>",
6
6
  "license": "SEE LICENSE IN LICENSE",