@goatlab/fluent 0.6.23 → 0.6.24

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/dist/types.d.ts CHANGED
@@ -27,11 +27,6 @@ export interface Deleted {
27
27
  export declare type Primitives = boolean | string | number | ObjectID;
28
28
  export declare type PrimitivesArray = boolean[] | string[] | number[] | ObjectID[];
29
29
  export declare type LogicOperator = '=' | '<' | '>' | '<=' | '>=' | '<>' | '!=' | 'in' | 'nin' | 'like' | 'regexp' | 'startsWith' | 'endsWith' | 'contains' | 'array-contains';
30
- export declare type DaoOutput<Input, Output> = {
31
- id: string;
32
- } & Input | {
33
- id: string;
34
- } & Output;
35
30
  export declare type WhereClause = [string, LogicOperator, Primitives];
36
31
  export declare type Filter = {
37
32
  fields?: string[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@goatlab/fluent",
3
- "version": "0.6.23",
3
+ "version": "0.6.24",
4
4
  "description": "Readable query Interface & API generator for TS and Node",
5
5
  "scripts": {
6
6
  "install-p": "yarn",
@@ -27,8 +27,8 @@
27
27
  "changelog-debug": "auto-changelog --template changelog-template.hbs -p --template json --output changelog-data.json"
28
28
  },
29
29
  "dependencies": {
30
- "@goatlab/dates": "^0.6.5",
31
- "@goatlab/js-utils": "^0.7.10",
30
+ "@goatlab/dates": "^0.6.6",
31
+ "@goatlab/js-utils": "^0.7.11",
32
32
  "@loopback/metadata": "^4.1.2",
33
33
  "assert": "^2.0.0",
34
34
  "bson": "^4.6.2",
@@ -43,7 +43,8 @@
43
43
  "openapi3-ts": "^2.0.2",
44
44
  "reflect-metadata": "^0.1.13",
45
45
  "typed-path": "^2.2.3",
46
- "typeorm": "^0.3.4"
46
+ "typeorm": "^0.3.4",
47
+ "zod": "^3.17.3"
47
48
  },
48
49
  "devDependencies": {
49
50
  "@commitlint/cli": "^16.2.3",