"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.RUNTIME_FIELD_TYPES = exports.RUNTIME_FIELD_OPTIONS = void 0; /* * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one * or more contributor license agreements. Licensed under the Elastic License * 2.0; you may not use this file except in compliance with the Elastic License * 2.0. */ const RUNTIME_FIELD_TYPES = ['keyword', 'long', 'double', 'date', 'ip', 'boolean']; exports.RUNTIME_FIELD_TYPES = RUNTIME_FIELD_TYPES; const RUNTIME_FIELD_OPTIONS = [{ label: 'Keyword', value: 'keyword' }, { label: 'Long', value: 'long' }, { label: 'Double', value: 'double' }, { label: 'Date', value: 'date' }, { label: 'IP', value: 'ip' }, { label: 'Boolean', value: 'boolean' }]; exports.RUNTIME_FIELD_OPTIONS = RUNTIME_FIELD_OPTIONS;