Skip to content

Commit

Permalink
Merge pull request #107 from MauroDataMapper/enhancement/gh-106
Browse files Browse the repository at this point in the history
Exposing new type
  • Loading branch information
NigelPalmer authored Jun 13, 2023
2 parents d7bbc40 + 04d4879 commit 005252d
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions src/data-models/mdm-data-model.model.ts
Original file line number Diff line number Diff line change
Expand Up @@ -106,9 +106,8 @@ export interface SourceTargetIntersection {
intersects: Uuid[];
}

export type SourceTargetIntersectionResponse = MdmIndexResponse<
SourceTargetIntersection
>;
export type SourceTargetIntersectionResponse =
MdmIndexResponse<SourceTargetIntersection>;

/**
* Represents the payload of the request to determine intersections between a source and many target data models.
Expand Down Expand Up @@ -145,3 +144,11 @@ export interface DataModelNode {
export type DataModelFull = DataModelDetail & DataModelNode;

export type DataModelFullResponse = MdmResponse<DataModelFull>;

export interface SimpleModelVersionTree {
branch?: string;
displayName: string;
documentationVersion: string;
id: Uuid;
modelVersion?: string;
}

0 comments on commit 005252d

Please sign in to comment.