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.
|
@@ -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[]>;
|
package/dist/types/app.d.ts
CHANGED
|
@@ -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';
|