From f6479ed1d36ee15fcd4ee15931ae03503dfacdba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicolas=20Duvieusart=20De=CC=81ry?= Date: Wed, 6 Mar 2024 11:26:38 -0500 Subject: [PATCH] fix: undo type undo-type-update An update to the TS definition in https://github.com/jsonata-js/jsonata/pull/633 is causing issues in transformers-jsonata since we are using both 1.x and 2.x versions in there and types do not align anymore. Reverting the change for now. We overwrite the type of the NodeExpr in mappings anyway, and so this should be fine for now. --- jsonata.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jsonata.d.ts b/jsonata.d.ts index 257aac07..a8c68f7c 100644 --- a/jsonata.d.ts +++ b/jsonata.d.ts @@ -20,7 +20,7 @@ declare namespace jsonata { steps?: ExprNode[]; expressions?: ExprNode[]; stages?: ExprNode[]; - lhs?: ExprNode[]; + lhs?: ExprNode; rhs?: ExprNode; }