@accordproject/concerto-core 3.1.0 → 3.2.0
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 +1 -1
- package/dist/concerto-core.js +1 -1
- package/dist/concerto-core.js.LICENSE.txt +1 -1
- package/lib/introspect/classdeclaration.js +6 -1
- package/lib/introspect/field.js +91 -10
- package/lib/introspect/introspector.js +5 -1
- package/lib/introspect/modelfile.js +30 -6
- package/lib/introspect/numbervalidator.js +2 -1
- package/lib/introspect/property.js +22 -14
- package/lib/introspect/scalardeclaration.js +341 -0
- package/lib/introspect/stringvalidator.js +2 -1
- package/lib/introspect/validator.js +6 -6
- package/lib/model/typed.js +25 -20
- package/lib/modelutil.js +12 -0
- package/lib/serializer/instancegenerator.js +15 -11
- package/lib/serializer/jsongenerator.js +2 -0
- package/lib/serializer/jsonpopulator.js +3 -2
- package/lib/serializer/objectvalidator.js +2 -0
- package/lib/serializer/resourcevalidator.js +2 -0
- package/package.json +9 -7
- package/types/lib/introspect/field.d.ts +15 -2
- package/types/lib/introspect/modelfile.d.ts +8 -2
- package/types/lib/introspect/scalardeclaration.d.ts +162 -0
- package/types/lib/introspect/validator.d.ts +6 -7
- package/types/lib/modelutil.d.ts +7 -0
package/changelog.txt
CHANGED
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
# Note that the latest public API is documented using JSDocs and is available in api.txt.
|
|
25
25
|
#
|
|
26
26
|
|
|
27
|
-
Version 3.0.0 {
|
|
27
|
+
Version 3.0.0 {5fac664420fea3649a7a304941f190f1} 2022-08-28
|
|
28
28
|
- Allow client-provided RegExp engine to ModelManager
|
|
29
29
|
- Allow decorators to be attached to model files/namespaces
|
|
30
30
|
|