mftsccs-node 0.0.12 → 0.0.13
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.
- package/dist/bundle.js +303 -43
- package/dist/types/Api/GetAllLinkerConnectionsToTheConcept.d.ts +2 -0
- package/dist/types/Api/SearchConcept/GetConceptByCharacterAndCategoryApi.d.ts +2 -0
- package/dist/types/Api/SearchConcept/GetConceptByCharacterAndCategoryDirect.d.ts +2 -0
- package/dist/types/DataStructures/BaseUrl.d.ts +2 -0
- package/dist/types/DataStructures/BinaryCharacterTree.d.ts +1 -0
- package/dist/types/DataStructures/ConceptData.d.ts +1 -0
- package/dist/types/DataStructures/Node.d.ts +1 -0
- package/dist/types/DataStructures/SearchQuery.d.ts +1 -0
- package/dist/types/Services/ConceptFinding/GetConceptByCharacterAndCategory.d.ts +4 -0
- package/dist/types/Services/GetLinkerConnectionFromConcept.d.ts +1 -0
- package/dist/types/Services/Search/SearchLinkMultiple.d.ts +1 -1
- package/dist/types/app.d.ts +1 -1
- package/package.json +1 -1
|
@@ -15,12 +15,14 @@ export declare class BaseUrl {
|
|
|
15
15
|
static GetConceptByCharacterValueUrl(): string;
|
|
16
16
|
static GetConceptByCharacterAndTypeUrl(): string;
|
|
17
17
|
static GetConceptByCharacterAndCategoryUrl(): string;
|
|
18
|
+
static GetConceptByCharacterAndCategoryDirectUrl(): string;
|
|
18
19
|
static GetCharacterByCharacterUrl(): string;
|
|
19
20
|
static GetAllConceptsByTypeUrl(): string;
|
|
20
21
|
static GetAllConnectionsOfConceptUrl(): string;
|
|
21
22
|
static GetAllAiData(): string;
|
|
22
23
|
static GetAllPrefetchConnectionsUrl(): string;
|
|
23
24
|
static GetAllLinkerConnectionOfConceptUrl(): string;
|
|
25
|
+
static GetAllLinkerConnectionToConceptUrl(): string;
|
|
24
26
|
static DeleteConceptUrl(): string;
|
|
25
27
|
static RecursiveSearchUrl(): string;
|
|
26
28
|
static SearchLinkMultipleAllApiUrl(): string;
|
|
@@ -11,5 +11,6 @@ export declare class BinaryCharacterTree {
|
|
|
11
11
|
static getNodeFromTree(value: string): Node | null;
|
|
12
12
|
static getNodeFromTreeUpdated(value: string): Node | null;
|
|
13
13
|
static getCharacterAndTypeFromTree(value: string, typeId: number): Promise<Node | null>;
|
|
14
|
+
static getCharacterAndCategoryFromTree(value: string, categoryId: number): Promise<Node | null>;
|
|
14
15
|
static removeConceptCharacter(id: number): void;
|
|
15
16
|
}
|
|
@@ -17,6 +17,7 @@ export declare class ConceptsData {
|
|
|
17
17
|
static GetConceptByCharacter(characterValue: string): Promise<Concept>;
|
|
18
18
|
static GetConceptByCharacterUpdated(characterValue: string): Promise<Concept>;
|
|
19
19
|
static GetConceptByCharacterAndTypeLocal(character_value: string, typeId: number): Promise<Concept>;
|
|
20
|
+
static GetConceptByCharacterAndCategoryLocal(character_value: string, categoryId: number): Promise<Concept>;
|
|
20
21
|
static GetConceptsByTypeId(typeId: number): Concept[];
|
|
21
22
|
static GetConceptsByTypeIdAndUser(typeId: number, userId: number): Promise<Concept[]>;
|
|
22
23
|
static GetBinaryCharacterTree(): import("./Node").Node | null;
|
|
@@ -21,6 +21,7 @@ export declare class Node {
|
|
|
21
21
|
getCharacterFromNode(value: string, node: Node | null): Node | null;
|
|
22
22
|
getCharacterFromNodeUpdated(value: string, node: Node | null): Node | null;
|
|
23
23
|
getFromNodeWithCharacterAndType(value: string, typeId: number, node: Node | null): Node | null;
|
|
24
|
+
getFromNodeWithCharacterAndCategory(value: string, categoryId: number, node: Node | null): Node | null;
|
|
24
25
|
removeNode(passedNode: Node | null, id: number): Node | null;
|
|
25
26
|
removeNodeWithVariants(passedNode: Node | null, typeIdentifier: any, conceptId: number): Node | null;
|
|
26
27
|
countNodeBelow(root: Node | null): number;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { Concept } from "../../app";
|
|
2
|
+
export declare function GetConceptByCharacterAndCategory(character: string): Promise<Concept>;
|
|
3
|
+
export declare function GetConceptByCharacter(characterValue: string): Promise<Concept>;
|
|
4
|
+
export declare function GetConceptByCharacterAndCategoryFromMemory(character: string, category: number): Promise<Concept>;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { SearchQuery } from "../../DataStructures/SearchQuery";
|
|
2
2
|
export declare function SearchLinkMultipleAll(searchQuery: SearchQuery[], token?: string): Promise<any>;
|
|
3
|
-
export declare function FormatFromConnections(linkers: number[], compositionData: any[], mainComposition: number): Promise<any>;
|
|
3
|
+
export declare function FormatFromConnections(linkers: number[], compositionData: any[], mainComposition: number, reverse?: number[]): Promise<any>;
|
package/dist/types/app.d.ts
CHANGED
|
@@ -18,7 +18,7 @@ export { GetLink, GetLinkRaw } from './Services/GetLink';
|
|
|
18
18
|
export { CreateDefaultConcept } from './Services/CreateDefaultConcept';
|
|
19
19
|
export { MakeTheTypeConcept } from './Services/MakeTheTypeConcept';
|
|
20
20
|
export { MakeTheTypeConceptApi } from './Api/MakeTheTypeConceptApi';
|
|
21
|
-
export { GetLinkerConnectionFromConcepts } from './Services/GetLinkerConnectionFromConcept';
|
|
21
|
+
export { GetLinkerConnectionFromConcepts, GetLinkerConnectionToConcepts } from './Services/GetLinkerConnectionFromConcept';
|
|
22
22
|
export { DeleteConceptById } from './Services/DeleteConcept';
|
|
23
23
|
export { DeleteConnectionById } from './Services/DeleteConnection';
|
|
24
24
|
export { TrashTheConcept } from './Api/Delete/DeleteConceptInBackend';
|