@accordproject/concerto-core 3.8.1-20230522101048 → 3.8.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Concerto v3.8.1-20230522101048
2
+ * Concerto v3.8.1
3
3
  * Licensed under the Apache License, Version 2.0 (the "License");
4
4
  * you may not use this file except in compliance with the License.
5
5
  * You may obtain a copy of the License at
@@ -35,6 +35,7 @@ if (global === undefined) {
35
35
  const Declaration = require('./introspect/declaration');
36
36
  const AssetDeclaration = require('./introspect/assetdeclaration');
37
37
  const ClassDeclaration = require('./introspect/classdeclaration');
38
+ const MapDeclaration = require('./introspect/mapdeclaration');
38
39
  const ConceptDeclaration = require('./introspect/conceptdeclaration');
39
40
  const DecoratorFactory = require('./introspect/decoratorfactory');
40
41
  const EnumDeclaration = require('./introspect/enumdeclaration');
@@ -24,6 +24,7 @@ const IllegalModelException = require('./illegalmodelexception');
24
24
  /* istanbul ignore next */
25
25
  if (global === undefined) {
26
26
  const ModelFile = require('./modelfile');
27
+ const MapDeclaration = require('./mapdeclaration');
27
28
  }
28
29
 
29
30
  /**
@@ -22,6 +22,7 @@ const IllegalModelException = require('../../lib/introspect/illegalmodelexceptio
22
22
  /* istanbul ignore next */
23
23
  if (global === undefined) {
24
24
  const ModelFile = require('./modelfile');
25
+ const MapDeclaration = require('./mapdeclaration');
25
26
  }
26
27
 
27
28
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@accordproject/concerto-core",
3
- "version": "3.8.1-20230522101048",
3
+ "version": "3.8.1",
4
4
  "description": "Core Implementation for the Concerto Modeling Language",
5
5
  "homepage": "https://github.com/accordproject/concerto",
6
6
  "engines": {
@@ -71,9 +71,9 @@
71
71
  "yargs": "17.3.1"
72
72
  },
73
73
  "dependencies": {
74
- "@accordproject/concerto-cto": "3.8.1-20230522101048",
74
+ "@accordproject/concerto-cto": "3.8.1",
75
75
  "@accordproject/concerto-metamodel": "3.8.0",
76
- "@accordproject/concerto-util": "3.8.1-20230522101048",
76
+ "@accordproject/concerto-util": "3.8.1",
77
77
  "dayjs": "1.10.8",
78
78
  "debug": "4.3.1",
79
79
  "lorem-ipsum": "2.0.3",
@@ -324,6 +324,7 @@ import AssetDeclaration = require("./introspect/assetdeclaration");
324
324
  import TransactionDeclaration = require("./introspect/transactiondeclaration");
325
325
  import EventDeclaration = require("./introspect/eventdeclaration");
326
326
  import ParticipantDeclaration = require("./introspect/participantdeclaration");
327
+ import MapDeclaration = require("./introspect/mapdeclaration");
327
328
  import EnumDeclaration = require("./introspect/enumdeclaration");
328
329
  import ConceptDeclaration = require("./introspect/conceptdeclaration");
329
330
  import Factory = require("./factory");
@@ -40,3 +40,4 @@ declare class MapKeyType extends Decorated {
40
40
  getType(): string;
41
41
  }
42
42
  import Decorated = require("./decorated");
43
+ import MapDeclaration = require("./mapdeclaration");
@@ -39,3 +39,4 @@ declare class MapValueType extends Decorated {
39
39
  getType(): string;
40
40
  }
41
41
  import Decorated = require("./decorated");
42
+ import MapDeclaration = require("./mapdeclaration");