From cbaf189a238bfb4fb991cc22fe3be0bdf13f6525 Mon Sep 17 00:00:00 2001 From: "jonathan.casey" Date: Tue, 1 Aug 2023 12:44:44 +0100 Subject: [PATCH] feat(map): satisfy version checker Signed-off-by: jonathan.casey --- packages/concerto-core/api.txt | 7 +++++++ packages/concerto-core/changelog.txt | 3 +++ 2 files changed, 10 insertions(+) diff --git a/packages/concerto-core/api.txt b/packages/concerto-core/api.txt index b4f35ef91..e58bc6e95 100644 --- a/packages/concerto-core/api.txt +++ b/packages/concerto-core/api.txt @@ -174,6 +174,10 @@ class MapKeyType extends Decorated { + MapDeclaration getParent() + string getType() + String toString() + + String isPrimitive() + + String isScalar() + + String isKey() + + String isValue() } class MapValueType extends Decorated { + void constructor(MapDeclaration,Object) throws IllegalModelException @@ -182,6 +186,9 @@ class MapValueType extends Decorated { + MapDeclaration getParent() + string getType() + String toString() + + String isPrimitive() + + String isKey() + + String isValue() } + ModelManager newMetaModelManager() + object validateMetaModel() diff --git a/packages/concerto-core/changelog.txt b/packages/concerto-core/changelog.txt index e2fb3352c..a8f18280b 100644 --- a/packages/concerto-core/changelog.txt +++ b/packages/concerto-core/changelog.txt @@ -24,6 +24,9 @@ # Note that the latest public API is documented using JSDocs and is available in api.txt. # +Version 3.8.0 {916069dbcaf3be63a2954371fec719d4c79002ff} 2023-08-1 +- Add To MapKeyType, MapValue functionality + Version 3.7.0 {a97cb6ebd45679354ba4da1940d2bb8d} 2023-05-19 - Add MapDeclaration, MapKeyType, AggregateValueType