mftsccs-node 0.0.2 → 0.0.3

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.
@@ -0,0 +1,2 @@
1
+ import { Concept } from "./../../DataStructures/Concept";
2
+ export declare function GetConceptByCharacterAndCategory(characterValue: string): Promise<Concept>;
@@ -14,6 +14,7 @@ export declare class BaseUrl {
14
14
  static GetAllConnectionsOfCompositionBulkUrl(): string;
15
15
  static GetConceptByCharacterValueUrl(): string;
16
16
  static GetConceptByCharacterAndTypeUrl(): string;
17
+ static GetConceptByCharacterAndCategoryUrl(): string;
17
18
  static GetCharacterByCharacterUrl(): string;
18
19
  static GetAllConceptsByTypeUrl(): string;
19
20
  static GetAllConnectionsOfConceptUrl(): string;
@@ -0,0 +1,3 @@
1
+ import { Concept } from "./../DataStructures/Concept";
2
+ export declare function GetRelation(id: number, relation: string, inpage?: number, page?: number): Promise<any[]>;
3
+ export declare function GetRelationRaw(id: number, relation: string, inpage?: number, page?: number): Promise<Concept[]>;
@@ -40,6 +40,7 @@ export { GetCompositionWithCache, GetCompositionWithDataIdWithCache, GetComposit
40
40
  export { CreateSession } from './Api/Session/CreateSession';
41
41
  export { CreateSessionVisit } from './Api/Session/CreateSessionVisit';
42
42
  export {} from './Api/GetConceptByCharacterAndType';
43
+ export { GetRelation, GetRelationRaw } from './Services/GetRelation';
43
44
  export { recursiveFetchNew } from './Services/Composition/BuildComposition';
44
45
  export { CreateTheCompositionWithCache } from './Services/Composition/CreateCompositionCache';
45
46
  export { CreateDefaultLConcept } from './Services/Local/CreateDefaultLConcept';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mftsccs-node",
3
- "version": "0.0.2",
3
+ "version": "0.0.3",
4
4
  "environment": "production",
5
5
  "description": "Full Pack of concept and connection system",
6
6
  "main": "dist/bundle.js",