// ***************************************************************************** // Copyright (C) 2024 EclipseSource GmbH. // // This program and the accompanying materials are made available under the // terms of the Eclipse Public License v. 2.0 which is available at // http://www.eclipse.org/legal/epl-2.0. // // This Source Code may also be made available under the following Secondary // Licenses when the conditions for such availability set forth in the Eclipse // Public License v. 2.0 are satisfied: GNU General Public License, version 2 // with the GNU Classpath Exception which is available at // https://www.gnu.org/software/classpath/license.html. // // SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0 // ***************************************************************************** export const FILE_CONTENT_FUNCTION_ID = 'getFileContent'; export const GET_WORKSPACE_FILE_LIST_FUNCTION_ID = 'getWorkspaceFileList'; export const GET_WORKSPACE_DIRECTORY_STRUCTURE_FUNCTION_ID = 'getWorkspaceDirectoryStructure'; export const GET_FILE_DIAGNOSTICS_ID = 'getFileDiagnostics'; export const SEARCH_IN_WORKSPACE_FUNCTION_ID = 'searchInWorkspace'; export const FIND_FILES_BY_PATTERN_FUNCTION_ID = 'findFilesByPattern'; export const LIST_TASKS_FUNCTION_ID = 'listTasks'; export const RUN_TASK_FUNCTION_ID = 'runTask'; export const LIST_LAUNCH_CONFIGURATIONS_FUNCTION_ID = 'listLaunchConfigurations'; export const RUN_LAUNCH_CONFIGURATION_FUNCTION_ID = 'runLaunchConfiguration'; export const STOP_LAUNCH_CONFIGURATION_FUNCTION_ID = 'stopLaunchConfiguration'; export const GET_SKILL_FILE_CONTENT_FUNCTION_ID = 'getSkillFileContent';