mftsccs-node 0.0.5 → 0.0.7

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.
@@ -2,7 +2,6 @@ import { Concept } from "../DataStructures/Concept";
2
2
  import { Connection } from "../DataStructures/Connection";
3
3
  import { LConcept, LConnection } from "../app";
4
4
  export declare function CheckIfConceptsExistsInArray(conceptList: Concept[] | undefined, concept: Concept): Concept;
5
- export declare function CheckIfTypeConceptExistsInArray(conceptList: Concept[] | undefined, concept: Concept): Concept;
6
5
  export declare function CheckIfTypeConceptsExistsInArray(conceptList: Concept[] | undefined, concept: Concept): Concept[];
7
6
  export declare function CheckIfTypeLConceptsExistsInArray(conceptList: LConcept[] | undefined, concept: LConcept): LConcept[];
8
7
  export declare function CheckIfConnectionExistsInArray(connectionList: Connection[] | undefined, connection: Connection): Connection;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mftsccs-node",
3
- "version": "0.0.5",
3
+ "version": "0.0.7",
4
4
  "environment": "production",
5
5
  "description": "Full Pack of concept and connection system",
6
6
  "main": "dist/bundle.js",
@@ -1,5 +0,0 @@
1
- async function createConcept(element, mainConcept){
2
- var newConcept = await window.tsccs.MakeTheInstanceConcept(element.name, element.value, false, 999);
3
- await window.tsccs.CreateTheConnection(mainConcept.id, mainConcept.userId, newConcept.id, newConcept.userId, mainConcept.id, 999,999 );
4
-
5
- }
@@ -1,7 +0,0 @@
1
- async function CreateMainConcept(element){
2
- var elementName = element.getAttribute('name');
3
- var newConcept = window.tsccs.MakeTheInstanceConcept(elementName, "", true, 999);
4
- return newConcept;
5
- }
6
-
7
-