@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.
- package/dist/concerto-core.js +1 -1
- package/dist/concerto-core.js.LICENSE.txt +1 -1
- package/lib/basemodelmanager.js +1 -0
- package/lib/introspect/mapkeytype.js +1 -0
- package/lib/introspect/mapvaluetype.js +1 -0
- package/package.json +3 -3
- package/types/lib/basemodelmanager.d.ts +1 -0
- package/types/lib/introspect/mapkeytype.d.ts +1 -0
- package/types/lib/introspect/mapvaluetype.d.ts +1 -0
package/lib/basemodelmanager.js
CHANGED
|
@@ -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');
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@accordproject/concerto-core",
|
|
3
|
-
"version": "3.8.1
|
|
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
|
|
74
|
+
"@accordproject/concerto-cto": "3.8.1",
|
|
75
75
|
"@accordproject/concerto-metamodel": "3.8.0",
|
|
76
|
-
"@accordproject/concerto-util": "3.8.1
|
|
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");
|