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.
@@ -0,0 +1,2 @@
1
+ import { SearchStructure } from "../../app";
2
+ export declare function SearchInternalApi(search: SearchStructure, token?: string): Promise<any>;
@@ -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;
@@ -3,8 +3,6 @@ export declare class Connection {
3
3
  id: number;
4
4
  userId: number;
5
5
  ghostId: number;
6
- OfTheConceptId: number;
7
- ToTheConceptId: number;
8
6
  ofTheConceptId: number;
9
7
  toTheConceptId: number;
10
8
  OfTheConceptUserId: number;
@@ -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
  }
@@ -2,8 +2,6 @@ import { LConcept } from "./LConcept";
2
2
  export declare class LConnection {
3
3
  id: number;
4
4
  ghostId: number;
5
- OfTheConceptId: number;
6
- ToTheConceptId: number;
7
5
  ofTheConceptId: number;
8
6
  toTheConceptId: number;
9
7
  entryTimeStamp: Date;
@@ -0,0 +1,9 @@
1
+ export declare class SearchStructure {
2
+ type: string;
3
+ search: string;
4
+ composition: string;
5
+ internalComposition: string;
6
+ userId: number;
7
+ inpage: number;
8
+ page: number;
9
+ }
@@ -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,2 @@
1
+ import { SearchStructure } from "../../app";
2
+ export declare function SearchLinkInternal(searchQuery: SearchStructure, token?: string): Promise<any[]>;
@@ -0,0 +1 @@
1
+ export declare function ViewInternalData(ids: number[]): Promise<any[]>;
@@ -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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mftsccs-node",
3
- "version": "0.0.10",
3
+ "version": "0.0.12",
4
4
  "environment": "production",
5
5
  "description": "Full Pack of concept and connection system",
6
6
  "main": "dist/bundle.js",