diff --git a/package.json b/package.json index b39f0074..3f077326 100644 --- a/package.json +++ b/package.json @@ -58,7 +58,7 @@ "jest-extended": "^6.0.0", "prettier": "^3.4.1", "ts-jest": "^29.2.5", - "typedoc": "^0.28.8", + "typedoc": "^0.28.10", "typescript": "^5.6.3" } } diff --git a/src/types.ts b/src/types.ts index f201d70f..4519ceec 100644 --- a/src/types.ts +++ b/src/types.ts @@ -52,8 +52,6 @@ export type Operation = BooleanOp | ComparisonOp | MathOp | ConcatOp; * @see {@link https://neo4j.com/docs/cypher-manual/current/syntax/expressions/ | Cypher Documentation} */ export type Expr = - | BooleanOp - | ComparisonOp | MathOp | ConcatOp | Variable @@ -67,7 +65,6 @@ export type Expr = | MapProjection // NOTE this cannot be set as a property in a node | ListExpr | ListIndex - | Case | Collect; /** Represents a predicate expression (i.e returns a boolean). Note that {@link Raw} is only added for compatibility