@finos/legend-graph
Version:
Legend graph and graph manager
51 lines • 2.5 kB
TypeScript
/**
* 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.
*/
import { SerializationFactory } from '@finos/legend-shared';
import type { Mapping } from '../../../../../../graph/metamodel/pure/packageableElements/mapping/Mapping.js';
import { MappingModelCoverageAnalysisResult } from '../../../../../../graph-manager/action/analytics/MappingModelCoverageAnalysis.js';
import type { V1_PureModelContext } from '../../model/context/V1_PureModelContext.js';
import type { V1_PureModelContextData } from '../../model/context/V1_PureModelContextData.js';
import type { V1_PureGraphManager } from '../../V1_PureGraphManager.js';
declare class V1_MappedProperty {
name: string;
static readonly serialization: SerializationFactory<V1_MappedProperty>;
}
declare class V1_MappedEntityInfo {
classPath: string;
isRootEntity: boolean;
subClasses: string[];
static readonly serialization: SerializationFactory<V1_MappedEntityInfo>;
}
export declare class V1_MappedEntity {
path: string;
properties: V1_MappedProperty[];
info?: V1_MappedEntityInfo | undefined;
static readonly serialization: SerializationFactory<V1_MappedEntity>;
}
export declare class V1_MappingModelCoverageAnalysisInput {
clientVersion: string;
mapping: string;
model: V1_PureModelContext;
static readonly serialization: SerializationFactory<V1_MappingModelCoverageAnalysisInput>;
}
export declare class V1_MappingModelCoverageAnalysisResult {
mappedEntities: V1_MappedEntity[];
model?: V1_PureModelContextData | undefined;
static readonly serialization: SerializationFactory<V1_MappingModelCoverageAnalysisResult>;
}
export declare const V1_buildModelCoverageAnalysisResult: (protocol: V1_MappingModelCoverageAnalysisResult, graphManager: V1_PureGraphManager, mapping: Mapping, pmcd?: V1_PureModelContextData) => MappingModelCoverageAnalysisResult;
export {};
//# sourceMappingURL=V1_MappingModelCoverageAnalysis.d.ts.map