@accordproject/concerto-core 2.0.0-alpha.2 → 2.0.0-beta.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/changelog.txt +2 -1
- package/index.js +73 -33
- package/lib/basemodelmanager.js +30 -4
- package/lib/decoratormanager.js +118 -0
- package/lib/factory.js +9 -1
- package/lib/introspect/assetdeclaration.js +8 -0
- package/lib/introspect/classdeclaration.js +10 -1
- package/lib/introspect/conceptdeclaration.js +8 -0
- package/lib/introspect/decorated.js +11 -2
- package/lib/introspect/decorator.js +9 -0
- package/lib/introspect/decoratorfactory.js +10 -0
- package/lib/introspect/enumdeclaration.js +8 -0
- package/lib/introspect/enumvaluedeclaration.js +8 -0
- package/lib/introspect/eventdeclaration.js +8 -0
- package/lib/introspect/field.js +8 -0
- package/lib/introspect/identifieddeclaration.js +8 -0
- package/lib/introspect/illegalmodelexception.js +9 -1
- package/lib/introspect/introspector.js +9 -0
- package/lib/introspect/metamodel.js +1 -1
- package/lib/introspect/modelfile.js +9 -0
- package/lib/introspect/numbervalidator.js +8 -0
- package/lib/introspect/participantdeclaration.js +8 -0
- package/lib/introspect/property.js +9 -1
- package/lib/introspect/relationshipdeclaration.js +9 -1
- package/lib/introspect/stringvalidator.js +8 -0
- package/lib/introspect/transactiondeclaration.js +8 -0
- package/lib/introspect/validator.js +8 -0
- package/lib/model/identifiable.js +1 -1
- package/lib/model/relationship.js +8 -0
- package/lib/model/typed.js +11 -2
- package/lib/rootmodel.js +3 -1
- package/lib/securityexception.js +1 -1
- package/lib/serializer.js +11 -1
- package/lib/typenotfoundexception.js +2 -2
- package/messages/en.json +48 -48
- package/package.json +7 -5
- package/types/index.d.ts +39 -33
- package/types/lib/basemodelmanager.d.ts +295 -0
- package/types/lib/decoratormanager.d.ts +41 -0
- package/types/lib/factory.d.ts +1 -0
- package/types/lib/introspect/assetdeclaration.d.ts +7 -0
- package/types/lib/introspect/classdeclaration.d.ts +11 -0
- package/types/lib/introspect/conceptdeclaration.d.ts +6 -0
- package/types/lib/introspect/decorated.d.ts +4 -2
- package/types/lib/introspect/decorator.d.ts +5 -3
- package/types/lib/introspect/decoratorfactory.d.ts +4 -1
- package/types/lib/introspect/enumdeclaration.d.ts +6 -0
- package/types/lib/introspect/eventdeclaration.d.ts +7 -0
- package/types/lib/introspect/illegalmodelexception.d.ts +3 -2
- package/types/lib/introspect/introspector.d.ts +2 -0
- package/types/lib/introspect/metamodel.d.ts +16 -50
- package/types/lib/introspect/modelfile.d.ts +2 -0
- package/types/lib/introspect/participantdeclaration.d.ts +7 -0
- package/types/lib/introspect/property.d.ts +8 -0
- package/types/lib/introspect/transactiondeclaration.d.ts +7 -0
- package/types/lib/introspect/validator.d.ts +1 -0
- package/types/lib/model/identifiable.d.ts +2 -2
- package/types/lib/model/relationship.d.ts +17 -0
- package/types/lib/model/resource.d.ts +7 -0
- package/types/lib/model/typed.d.ts +6 -4
- package/types/lib/modelmanager.d.ts +8 -230
- package/types/lib/rootmodel.d.ts +4 -0
- package/types/lib/securityexception.d.ts +2 -2
- package/types/lib/serializer/validationexception.d.ts +3 -2
- package/types/lib/serializer.d.ts +3 -0
- package/types/lib/typenotfoundexception.d.ts +4 -4
- package/umd/concerto.js +1 -1
- package/umd/concerto.js.LICENSE.txt +1 -1