/** * Copyright 2022 Gravwell, Inc. All rights reserved. * * Contact: [legal@gravwell.io](mailto:legal@gravwell.io) * * This software may be modified and distributed under the terms of the MIT * license. See the LICENSE file for details. */ export declare enum SearchMessageCommands { Close = 1, DeleteSearch = "delete", ArchiveSearch = "archive", BackgroundSearch = "background", Status = "status", RequestEntries = 16, RequestEntriesWithinRange = 18, RequestExplorerEntries = 61456, RequestExplorerEntriesWithinRange = 61458, RequestEntryCount = 3, RequestDetails = 4, RequestTags = 5, RequestStreaming = 17, RequestTextSearchDetails = 16777220, /** Requests "size" value of stats chunks. Never used. */ RequestStatsSize = 2130706433, /** Request current time range covered by stats. Rarely used. */ RequestStatsWithinRange = 2130706434, /** Requests stats over all time. Generally used on init. */ RequestAllStats = 2130706435, /** Requests stats in a specific range. */ RequestStatsInRange = 2130706436, /** Requests stats summary for entire results. */ RequestStatsSummary = 2130706437, /** Requests current timestamp for search progress */ RequestStatsLocation = 2130706438, /** Error response from the backend */ ResponseError = 4294967295 }