From 8b49dc533e7b4fd0a5f83277ff7634af4d7e1a95 Mon Sep 17 00:00:00 2001 From: Nicolas Renan Machado Dias Date: Mon, 27 Oct 2025 03:48:29 -0300 Subject: [PATCH] feat/changed input for withQuery --- src/cteMaker.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cteMaker.ts b/src/cteMaker.ts index f7c73c6..c1fc40c 100644 --- a/src/cteMaker.ts +++ b/src/cteMaker.ts @@ -63,7 +63,7 @@ export class Cte { * @param query - The query defining the CTE. * @returns The current Cte instance for method chaining. */ - public withQuery(query: SelectQuery): this { + public withQuery(query: QueryDefinition): this { this.query = query; return this; }