From 75b91683d4e566d7f50114c00b6485201234969e Mon Sep 17 00:00:00 2001 From: Nathan Dickerson Date: Tue, 24 Sep 2024 12:42:10 -0500 Subject: [PATCH] fix(Types): Add scoreByEntityId to the DataTableWhere type (#1607) Co-authored-by: Nathan Dickerson --- projects/novo-elements/src/elements/data-table/interfaces.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/projects/novo-elements/src/elements/data-table/interfaces.ts b/projects/novo-elements/src/elements/data-table/interfaces.ts index bb833aa5a..52d116e66 100644 --- a/projects/novo-elements/src/elements/data-table/interfaces.ts +++ b/projects/novo-elements/src/elements/data-table/interfaces.ts @@ -28,6 +28,7 @@ export interface DataTableWhere { query: string; criteria?: AdaptiveCriteria; keywords?: SearchKeywords; + scoreByEntityId?: number; form: any; }