/** * Copyright (c) 2020-present, Goldman Sachs * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ export declare enum DATA_SPACE_QUERY_CREATOR_ROUTE_PATTERN_TOKEN { GAV = "gav", DATA_SPACE_PATH = "dataSpacePath", EXECUTION_CONTEXT = "executionContext" } export declare enum DATA_SPACE_QUERY_CREATOR_QUERY_PARAM_TOKEN { RUNTIME_PATH = "runtimePath", CLASS_PATH = "class" } export declare enum DATA_SPACE_TEMPLATE_QUERY_CREATOR_ROUTE_PATTERN_TOKEN { GAV = "gav", DATA_SPACE_PATH = "dataSpacePath", TEMPLATE = "template", TEMPLATE_QUERY_ID = "templateQueryId" } export type DataSpaceQueryCreatorPathParams = { [DATA_SPACE_QUERY_CREATOR_ROUTE_PATTERN_TOKEN.GAV]: string; [DATA_SPACE_QUERY_CREATOR_ROUTE_PATTERN_TOKEN.DATA_SPACE_PATH]: string; [DATA_SPACE_QUERY_CREATOR_ROUTE_PATTERN_TOKEN.EXECUTION_CONTEXT]: string; }; export type DataSpaceTemplateQueryCreatorPathParams = { [DATA_SPACE_TEMPLATE_QUERY_CREATOR_ROUTE_PATTERN_TOKEN.GAV]: string; [DATA_SPACE_TEMPLATE_QUERY_CREATOR_ROUTE_PATTERN_TOKEN.DATA_SPACE_PATH]: string; [DATA_SPACE_TEMPLATE_QUERY_CREATOR_ROUTE_PATTERN_TOKEN.TEMPLATE_QUERY_ID]: string; }; export type DataSpaceQueryEditorQueryParams = { [DATA_SPACE_QUERY_CREATOR_QUERY_PARAM_TOKEN.CLASS_PATH]?: string | undefined; }; export declare const LEGACY_DATA_SPACE_QUERY_ROUTE_PATTERN: Readonly<{ SETUP: "/dataspace"; CREATE: "/dataspace/:gav/:dataSpacePath/:executionContext?"; TEMPLATE_QUERY: "/dataspace/:gav/:dataSpacePath/:template/:templateQueryId"; }>; export declare const generateDataSpaceQuerySetupRoute: () => string; export declare const generateDataSpaceQueryCreatorRoute: (groupId: string, artifactId: string, versionId: string, dataSpacePath: string, executionContextKey: string, runtimePath?: string | undefined, classPath?: string | undefined) => string; export declare const generateDataSpaceTemplateQueryCreatorRoute: (groupId: string, artifactId: string, versionId: string, dataSpacePath: string, templateQueryId: string) => string; //# sourceMappingURL=DSL_DataSpace_LegendQueryNavigation.d.ts.map