Socket
Socket
Sign inDemoInstall

@accordproject/concerto-core

Package Overview
Dependencies
Maintainers
0
Versions
855
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@accordproject/concerto-core - npm Package Compare versions

Comparing version 3.18.2-20240823114326 to 3.18.2-20240827135348

2

dist/concerto-core.js.LICENSE.txt
/*!
* Concerto v3.18.2-20240823114326
* Concerto v3.18.2-20240827135348
* Licensed under the Apache License, Version 2.0 (the "License");

@@ -4,0 +4,0 @@ * you may not use this file except in compliance with the License.

@@ -85,3 +85,3 @@ /*

* @param {boolean} [options.enableMapType] - When true, the Concerto Map Type feature is enabled
* @param {boolean} [options.enableAliasedType] - When true, the Concerto Aliasing feature is enabled
* @param {boolean} [options.importAliasing] - When true, the Concerto Aliasing feature is enabled
* @param {*} [processFile] - how to obtain a concerto AST from an input to the model manager

@@ -102,3 +102,3 @@ */

this.enableMapType = !!options?.enableMapType;
this.enableAliasedType = !!options?.enableAliasedType;
this.importAliasing = !!options?.importAliasing;

@@ -131,6 +131,6 @@ // Cache a copy of the Metamodel ModelFile for use when validating the structure of ModelFiles later.

* Checks if the import aliasing feature is enabled.
* @returns {boolean} true if the enableAliasedType has been set
* @returns {boolean} true if the importAliasing has been set
*/
isAliasedTypeEnabled() {
return this.enableAliasedType;
return this.importAliasing;
}

@@ -137,0 +137,0 @@

@@ -792,3 +792,3 @@ /*

if (imp.aliasedTypes) {
throw new Error('Aliasing disabled, set enableAliasType to true');
throw new Error('Aliasing disabled, set importAliasing to true');
}

@@ -795,0 +795,0 @@ imp.types.forEach((type) => {

{
"name": "@accordproject/concerto-core",
"version": "3.18.2-20240823114326",
"version": "3.18.2-20240827135348",
"description": "Core Implementation for the Concerto Modeling Language",

@@ -74,5 +74,5 @@ "homepage": "https://github.com/accordproject/concerto",

"dependencies": {
"@accordproject/concerto-cto": "3.18.2-20240823114326",
"@accordproject/concerto-cto": "3.18.2-20240827135348",
"@accordproject/concerto-metamodel": "3.10.0",
"@accordproject/concerto-util": "3.18.2-20240823114326",
"@accordproject/concerto-util": "3.18.2-20240827135348",
"dayjs": "1.11.10",

@@ -79,0 +79,0 @@ "debug": "4.3.4",

@@ -27,3 +27,3 @@ export = BaseModelManager;

* @param {boolean} [options.enableMapType] - When true, the Concerto Map Type feature is enabled
* @param {boolean} [options.enableAliasedType] - When true, the Concerto Aliasing feature is enabled
* @param {boolean} [options.importAliasing] - When true, the Concerto Aliasing feature is enabled
* @param {*} [processFile] - how to obtain a concerto AST from an input to the model manager

@@ -37,3 +37,3 @@ */

enableMapType?: boolean;
enableAliasedType?: boolean;
importAliasing?: boolean;
}, processFile?: any);

@@ -52,6 +52,6 @@ processFile: any;

enableMapType?: boolean;
enableAliasedType?: boolean;
importAliasing?: boolean;
};
enableMapType: boolean;
enableAliasedType: boolean;
importAliasing: boolean;
metamodelModelFile: any;

@@ -70,3 +70,3 @@ /**

* Checks if the import aliasing feature is enabled.
* @returns {boolean} true if the enableAliasedType has been set
* @returns {boolean} true if the importAliasing has been set
*/

@@ -73,0 +73,0 @@ isAliasedTypeEnabled(): boolean;

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc