mftsccs-node 0.0.3 → 0.0.5
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.
|
@@ -1,3 +1,5 @@
|
|
|
1
1
|
import { Concept } from "../DataStructures/Concept";
|
|
2
|
-
|
|
2
|
+
import { Connection } from "../DataStructures/Connection";
|
|
3
|
+
export declare function CreateConnectionBetweenTwoConcepts(ofTheConcept: Concept, toTheConcept: Concept, linker: string, both?: boolean, count?: boolean): Promise<Connection>;
|
|
3
4
|
export declare function CountRelationship(linker: string, concept: Concept, passedUserId?: number | null): Promise<void>;
|
|
5
|
+
export declare function CreateConnectionBetweenTwoConceptsGeneral(ofTheConcept: Concept, toTheConcept: Concept, linker: string, both?: boolean, count?: boolean): Promise<Connection>;
|
package/dist/types/app.d.ts
CHANGED
|
@@ -7,7 +7,7 @@ export { GetComposition, GetCompositionWithId, recursiveFetch, GetCompositionWit
|
|
|
7
7
|
export { GetCompositionLocal, GetCompositionLocalWithId } from './Services/Local/GetCompositionLocal';
|
|
8
8
|
export { default as CreateComposition } from './Services/CreateTheComposition';
|
|
9
9
|
export { CreateTheCompositionLocal } from './Services/Local/CreateTheCompositionLocal';
|
|
10
|
-
export { CreateConnectionBetweenTwoConcepts } from './Services/CreateConnectionBetweenTwoConcepts';
|
|
10
|
+
export { CreateConnectionBetweenTwoConcepts, CreateConnectionBetweenTwoConceptsGeneral } from './Services/CreateConnectionBetweenTwoConcepts';
|
|
11
11
|
export { default as GetTheConcept } from './Services/GetTheConcept';
|
|
12
12
|
export { default as MakeTheInstanceConcept } from './Services/MakeTheInstanceConcept';
|
|
13
13
|
export { MakeTheInstanceConceptLocal } from './Services/Local/MakeTheInstanceConceptLocal';
|
|
@@ -47,8 +47,9 @@ export { CreateDefaultLConcept } from './Services/Local/CreateDefaultLConcept';
|
|
|
47
47
|
export { CreateTheConnectionGeneral } from './Services/CreateTheConnectionGeneral';
|
|
48
48
|
export { CreateTheConnectionLocal } from './Services/Local/CreateTheConnectionLocal';
|
|
49
49
|
export { GetUserGhostId, AddGhostConcept } from './Services/User/UserTranslation';
|
|
50
|
-
export { SearchLinkMultipleAll } from './Services/Search/SearchLinkMultiple';
|
|
50
|
+
export { SearchLinkMultipleAll, FormatFromConnections } from './Services/Search/SearchLinkMultiple';
|
|
51
51
|
export { UpdateCompositionLocal } from './Services/Local/UpdateCompositionLocal';
|
|
52
|
+
export { GetCompositionFromConnectionsWithDataIdInObject } from './Services/GetCompositionBulk';
|
|
52
53
|
export { SyncData } from './DataStructures/SyncData';
|
|
53
54
|
export { Concept } from './DataStructures/Concept';
|
|
54
55
|
export { LConcept } from './DataStructures/Local/LConcept';
|