mftsccs-node 0.0.10 → 0.0.12
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 +306 -72
- package/dist/types/Api/Search/SearchInternalApi.d.ts +2 -0
- package/dist/types/Api/View/ViewInternalDataApi.d.ts +1 -0
- package/dist/types/DataStructures/BaseUrl.d.ts +2 -0
- package/dist/types/DataStructures/Connection.d.ts +0 -2
- package/dist/types/DataStructures/Local/LConcept.d.ts +2 -1
- package/dist/types/DataStructures/Local/LConnection.d.ts +0 -2
- package/dist/types/DataStructures/Search/SearchStructure.d.ts +9 -0
- package/dist/types/Services/Local/CreateTheConceptLocal.d.ts +1 -1
- package/dist/types/Services/Local/MakeTheInstanceConceptLocal.d.ts +1 -1
- package/dist/types/Services/MakeTheInstanceConcept.d.ts +1 -1
- package/dist/types/Services/Search/SearchLinkInternal.d.ts +2 -0
- package/dist/types/Services/View/ViewInternalData.d.ts +1 -0
- package/dist/types/app.d.ts +3 -0
- package/package.json +1 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function ViewInternalDataApi(ids: number[]): Promise<any>;
|
|
@@ -32,6 +32,8 @@ export declare class BaseUrl {
|
|
|
32
32
|
static SearchLinkMultipleAll(): string;
|
|
33
33
|
static CreateSessionId(): string;
|
|
34
34
|
static CreateSessionVisitUrl(): string;
|
|
35
|
+
static ViewInternalDataUrl(): string;
|
|
36
|
+
static SearchInternalWithAuthenticatedCcsUrl(): string;
|
|
35
37
|
static GetReservedIdUrl(): string;
|
|
36
38
|
static GetReservedConnectionIdUrl(): string;
|
|
37
39
|
static CreateTheTextDataUrl(): string;
|
|
@@ -9,11 +9,12 @@ export declare class LConcept {
|
|
|
9
9
|
characterValue: string;
|
|
10
10
|
typeCharacter: string;
|
|
11
11
|
entryTimeStamp: Date;
|
|
12
|
+
referentId: number;
|
|
12
13
|
updatedTimeStamp: Date;
|
|
13
14
|
type: LConcept | null | void | Concept;
|
|
14
15
|
isNew: boolean;
|
|
15
16
|
isComposition: boolean;
|
|
16
17
|
isTemp: boolean;
|
|
17
|
-
constructor(id: number, userId: number, typeId: number, categoryId: number, accessId: number, characterValue: string, typeCharacter: string, isNew: boolean | undefined, entryTimeStamp: Date, updatedTimeStamp: Date);
|
|
18
|
+
constructor(id: number, userId: number, typeId: number, categoryId: number, accessId: number, characterValue: string, typeCharacter: string, isNew: boolean | undefined, entryTimeStamp: Date, updatedTimeStamp: Date, referentId: number);
|
|
18
19
|
getType(): void;
|
|
19
20
|
}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { LConcept } from "../../DataStructures/Local/LConcept";
|
|
2
|
-
export default function CreateTheConceptLocal(referent: string, typecharacter: string, userId: number, categoryId: number, typeId: number, accessId: number): Promise<LConcept>;
|
|
2
|
+
export default function CreateTheConceptLocal(referent: string, typecharacter: string, userId: number, categoryId: number, typeId: number, accessId: number, referentId?: number): Promise<LConcept>;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { LConcept } from "../../DataStructures/Local/LConcept";
|
|
2
|
-
export declare function MakeTheInstanceConceptLocal(type: string, referent: string, composition: boolean | undefined, userId: number, accessId: number, sessionInformationId?: number): Promise<LConcept>;
|
|
2
|
+
export declare function MakeTheInstanceConceptLocal(type: string, referent: string, composition: boolean | undefined, userId: number, accessId: number, sessionInformationId?: number, referentId?: number): Promise<LConcept>;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { Concept } from "../DataStructures/Concept";
|
|
2
|
-
export default function MakeTheInstanceConcept(type: string, referent: string, composition: boolean | undefined, userId: number, passedAccessId: number, passedSessionId?: number): Promise<Concept>;
|
|
2
|
+
export default function MakeTheInstanceConcept(type: string, referent: string, composition: boolean | undefined, userId: number, passedAccessId: number, passedSessionId?: number, referentId?: number): Promise<Concept>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function ViewInternalData(ids: number[]): Promise<any[]>;
|
package/dist/types/app.d.ts
CHANGED
|
@@ -50,7 +50,9 @@ export { GetUserGhostId, AddGhostConcept } from './Services/User/UserTranslation
|
|
|
50
50
|
export { SearchLinkMultipleAll, FormatFromConnections } from './Services/Search/SearchLinkMultiple';
|
|
51
51
|
export { UpdateCompositionLocal } from './Services/Local/UpdateCompositionLocal';
|
|
52
52
|
export { GetCompositionFromConnectionsWithDataIdInObject } from './Services/GetCompositionBulk';
|
|
53
|
+
export { ViewInternalData } from './Services/View/ViewInternalData';
|
|
53
54
|
export { convertFromLConceptToConcept } from './Services/Conversion/ConvertConcepts';
|
|
55
|
+
export { SearchLinkInternal } from './Services/Search/SearchLinkInternal';
|
|
54
56
|
export { SyncData } from './DataStructures/SyncData';
|
|
55
57
|
export { Concept } from './DataStructures/Concept';
|
|
56
58
|
export { LConcept } from './DataStructures/Local/LConcept';
|
|
@@ -70,6 +72,7 @@ export { CompositionBinaryTree } from './DataStructures/Composition/CompositionB
|
|
|
70
72
|
export { CompositionNode } from './DataStructures/Composition/CompositionNode';
|
|
71
73
|
export { UserBinaryTree } from './DataStructures/User/UserBinaryTree';
|
|
72
74
|
export { FilterSearch } from './DataStructures/FilterSearch';
|
|
75
|
+
export { SearchStructure } from './DataStructures/Search/SearchStructure';
|
|
73
76
|
export { BaseUrl } from './DataStructures/BaseUrl';
|
|
74
77
|
declare function updateAccessToken(accessToken?: string): void;
|
|
75
78
|
declare function init(url?: string, aiurl?: string, accessToken?: string): void;
|