From 2e9aac4abf9e582b973f740487294473ec888153 Mon Sep 17 00:00:00 2001 From: Elena Makarova Date: Thu, 24 Oct 2024 14:49:26 +0300 Subject: [PATCH] feat: add Bytes and Text types suggestion in autocomplete --- src/utils/monaco/yql/constants.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/utils/monaco/yql/constants.ts b/src/utils/monaco/yql/constants.ts index ea1068b4d4..e6c7a41137 100644 --- a/src/utils/monaco/yql/constants.ts +++ b/src/utils/monaco/yql/constants.ts @@ -1,6 +1,8 @@ import type {YQLEntity} from '@gravity-ui/websql-autocomplete'; export const SimpleTypes = [ + 'Text', + 'Bytes', 'String', 'Bool', 'Int32',