From 7ba8233f5b81f4ab3c3aeec2c8a47a7bad3ae502 Mon Sep 17 00:00:00 2001 From: Rainer Killinger Date: Mon, 19 Apr 2021 19:25:58 +0200 Subject: [PATCH] feat: add filterable annotation option for integer --- src/mappings/definitions/fieldmap.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/mappings/definitions/fieldmap.ts b/src/mappings/definitions/fieldmap.ts index 977c89d1..d7a5a976 100644 --- a/src/mappings/definitions/fieldmap.ts +++ b/src/mappings/definitions/fieldmap.ts @@ -1,5 +1,5 @@ /* - * Copyright (C) 2019 StApps + * Copyright (C) 2019-2021 StApps * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the Free * Software Foundation, version 3. @@ -55,4 +55,5 @@ export const filterableMap: ElasticsearchFilterableMap = { date: ElasticsearchDataType.keyword, keyword: ElasticsearchDataType.keyword, text: ElasticsearchDataType.keyword, + integer: ElasticsearchDataType.integer, };