"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.kibanaTimerangeFunction = void 0; var _i18n = require("@kbn/i18n"); /* * 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 and the Server Side Public License, v 1; you may not use this file except * in compliance with, at your election, the Elastic License 2.0 or the Server * Side Public License, v 1. */ const kibanaTimerangeFunction = { name: 'timerange', type: 'timerange', inputTypes: ['null'], help: _i18n.i18n.translate('data.search.functions.timerange.help', { defaultMessage: 'Create kibana timerange' }), args: { from: { types: ['string'], required: true, help: _i18n.i18n.translate('data.search.functions.timerange.from.help', { defaultMessage: 'Specify the start date' }) }, to: { types: ['string'], required: true, help: _i18n.i18n.translate('data.search.functions.timerange.to.help', { defaultMessage: 'Specify the end date' }) }, mode: { types: ['string'], options: ['absolute', 'relative'], help: _i18n.i18n.translate('data.search.functions.timerange.mode.help', { defaultMessage: 'Specify the mode (absolute or relative)' }) } }, fn(input, args) { return { type: 'timerange', from: args.from, to: args.to, mode: args.mode }; } }; exports.kibanaTimerangeFunction = kibanaTimerangeFunction;