mftsccs-node 0.0.0
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/README.md +24 -0
- package/dist/bundle.js +10064 -0
- package/dist/conceptconnection.js +5 -0
- package/dist/createComposition.js +7 -0
- package/dist/index.js +5363 -0
- package/dist/listComposition.js +26 -0
- package/dist/main.js +21 -0
- package/dist/test.js +190 -0
- package/dist/tumble.js +6544 -0
- package/dist/types/Api/Create/CreateTheCharacter.d.ts +3 -0
- package/dist/types/Api/Create/CreateTheConceptApi.d.ts +2 -0
- package/dist/types/Api/Create/CreateTheConnectionApi.d.ts +2 -0
- package/dist/types/Api/Create/CreateTheTextData.d.ts +2 -0
- package/dist/types/Api/Delete/DeleteConceptInBackend.d.ts +1 -0
- package/dist/types/Api/DeleteTheConcept.d.ts +1 -0
- package/dist/types/Api/DeleteTheConnection.d.ts +1 -0
- package/dist/types/Api/GetAccessIdOfUser.d.ts +0 -0
- package/dist/types/Api/GetAiData.d.ts +1 -0
- package/dist/types/Api/GetAllConcepts.d.ts +1 -0
- package/dist/types/Api/GetAllConceptsByType.d.ts +1 -0
- package/dist/types/Api/GetAllConnections.d.ts +1 -0
- package/dist/types/Api/GetAllConnectionsOfComposition.d.ts +3 -0
- package/dist/types/Api/GetAllConnectionsOfCompositionBulk.d.ts +3 -0
- package/dist/types/Api/GetAllLinkerConnectionsFromTheConcept.d.ts +2 -0
- package/dist/types/Api/GetAllPrefetchConnections.d.ts +1 -0
- package/dist/types/Api/GetCharacterDataByCharacter.d.ts +2 -0
- package/dist/types/Api/GetCompositionConnectionsBetweenTwoConcepts.d.ts +2 -0
- package/dist/types/Api/GetConcept.d.ts +2 -0
- package/dist/types/Api/GetConceptBulk.d.ts +3 -0
- package/dist/types/Api/GetConceptByCharacterAndType.d.ts +2 -0
- package/dist/types/Api/GetConceptByCharacterValue.d.ts +2 -0
- package/dist/types/Api/GetConnection.d.ts +2 -0
- package/dist/types/Api/GetConnectionBulk.d.ts +2 -0
- package/dist/types/Api/GetConnectionOfTheConcept.d.ts +2 -0
- package/dist/types/Api/GetReservedConnectionIds.d.ts +1 -0
- package/dist/types/Api/GetReservedIds.d.ts +1 -0
- package/dist/types/Api/Login.d.ts +1 -0
- package/dist/types/Api/MakeTheNameInBackend.d.ts +1 -0
- package/dist/types/Api/MakeTheTypeConceptApi.d.ts +2 -0
- package/dist/types/Api/RecursiveSearch.d.ts +1 -0
- package/dist/types/Api/Search/Search.d.ts +1 -0
- package/dist/types/Api/Search/SearchLinkMultipleApi.d.ts +2 -0
- package/dist/types/Api/Search/SearchWithLinker.d.ts +2 -0
- package/dist/types/Api/Session/CreateSession.d.ts +2 -0
- package/dist/types/Api/Session/CreateSessionVisit.d.ts +1 -0
- package/dist/types/Api/Signin.d.ts +3 -0
- package/dist/types/Api/Signup.d.ts +3 -0
- package/dist/types/Constants/ApiConstants.d.ts +23 -0
- package/dist/types/DataStructures/BaseUrl.d.ts +42 -0
- package/dist/types/DataStructures/BinaryCharacterTree.d.ts +14 -0
- package/dist/types/DataStructures/BinaryTree.d.ts +12 -0
- package/dist/types/DataStructures/BinaryTypeTree.d.ts +15 -0
- package/dist/types/DataStructures/CharacterRepository.d.ts +8 -0
- package/dist/types/DataStructures/Composition/Composition.d.ts +14 -0
- package/dist/types/DataStructures/Composition/CompositionBinaryTree.d.ts +10 -0
- package/dist/types/DataStructures/Composition/CompositionNode.d.ts +21 -0
- package/dist/types/DataStructures/Concept.d.ts +28 -0
- package/dist/types/DataStructures/ConceptData.d.ts +20 -0
- package/dist/types/DataStructures/ConceptsToDraw.d.ts +11 -0
- package/dist/types/DataStructures/Connection.d.ts +28 -0
- package/dist/types/DataStructures/ConnectionBinaryTree/ConnectionBinaryTree.d.ts +11 -0
- package/dist/types/DataStructures/ConnectionBinaryTree/ConnectionNode.d.ts +24 -0
- package/dist/types/DataStructures/ConnectionBinaryTree/ConnectionTypeTree.d.ts +13 -0
- package/dist/types/DataStructures/ConnectionData.d.ts +18 -0
- package/dist/types/DataStructures/FilterSearch.d.ts +6 -0
- package/dist/types/DataStructures/IdentifierFlags.d.ts +11 -0
- package/dist/types/DataStructures/Local/LConcept.d.ts +19 -0
- package/dist/types/DataStructures/Local/LConnection.d.ts +18 -0
- package/dist/types/DataStructures/Local/LNode.d.ts +27 -0
- package/dist/types/DataStructures/Local/LocalBinaryCharacterTree.d.ts +12 -0
- package/dist/types/DataStructures/Local/LocalBinaryTree.d.ts +12 -0
- package/dist/types/DataStructures/Local/LocalBinaryTypeTree.d.ts +13 -0
- package/dist/types/DataStructures/Local/LocalConceptData.d.ts +14 -0
- package/dist/types/DataStructures/Local/LocalConnectionData.d.ts +16 -0
- package/dist/types/DataStructures/Local/LocalSyncData.d.ts +14 -0
- package/dist/types/DataStructures/Node.d.ts +27 -0
- package/dist/types/DataStructures/PatcherStructure.d.ts +8 -0
- package/dist/types/DataStructures/ReferentInfo.d.ts +7 -0
- package/dist/types/DataStructures/ReservedIds.d.ts +10 -0
- package/dist/types/DataStructures/Responses/StandardResponses.d.ts +6 -0
- package/dist/types/DataStructures/Returner.d.ts +7 -0
- package/dist/types/DataStructures/SearchQuery.d.ts +14 -0
- package/dist/types/DataStructures/Security/TokenStorage.d.ts +3 -0
- package/dist/types/DataStructures/Session/SessionData.d.ts +13 -0
- package/dist/types/DataStructures/SettingData.d.ts +5 -0
- package/dist/types/DataStructures/Settings.d.ts +4 -0
- package/dist/types/DataStructures/SigninModel.d.ts +4 -0
- package/dist/types/DataStructures/SignupModel.d.ts +4 -0
- package/dist/types/DataStructures/SyncData.d.ts +15 -0
- package/dist/types/DataStructures/TheCharacter.d.ts +13 -0
- package/dist/types/DataStructures/TheTexts.d.ts +14 -0
- package/dist/types/DataStructures/TokenStorage.d.ts +3 -0
- package/dist/types/DataStructures/User/UserBinaryTree.d.ts +12 -0
- package/dist/types/DataStructures/User/UserNode.d.ts +18 -0
- package/dist/types/Database/GetConceptFromIndexDb.d.ts +0 -0
- package/dist/types/Database/NoIndexDb.d.ts +9 -0
- package/dist/types/Database/indexdblocal.d.ts +3 -0
- package/dist/types/Database/indexeddb.d.ts +3 -0
- package/dist/types/Drawing/ConceptDraw.d.ts +1 -0
- package/dist/types/Drawing/ConceptEvents.d.ts +1 -0
- package/dist/types/Helpers/CheckIfExists.d.ts +8 -0
- package/dist/types/Helpers/RemoveFromArray.d.ts +4 -0
- package/dist/types/Helpers/UniqueInsert.d.ts +1 -0
- package/dist/types/Services/CheckForConnectionDeletion.d.ts +3 -0
- package/dist/types/Services/CheckIfConnection.d.ts +2 -0
- package/dist/types/Services/Composition/BuildComposition.d.ts +3 -0
- package/dist/types/Services/Composition/CompositionCache.d.ts +4 -0
- package/dist/types/Services/Composition/CreateCompositionCache.d.ts +3 -0
- package/dist/types/Services/CreateBinaryTreeFromData.d.ts +1 -0
- package/dist/types/Services/CreateCharacterBinaryTreeFromData.d.ts +1 -0
- package/dist/types/Services/CreateConnectionBetweenTwoConcepts.d.ts +3 -0
- package/dist/types/Services/CreateDefaultConcept.d.ts +2 -0
- package/dist/types/Services/CreateTheComposition.d.ts +2 -0
- package/dist/types/Services/CreateTheConcept.d.ts +4 -0
- package/dist/types/Services/CreateTheConnection.d.ts +2 -0
- package/dist/types/Services/CreateTheConnectionGeneral.d.ts +2 -0
- package/dist/types/Services/CreateTypeTreeFromData.d.ts +1 -0
- package/dist/types/Services/DeleteConcept.d.ts +1 -0
- package/dist/types/Services/DeleteConnection.d.ts +1 -0
- package/dist/types/Services/FindConeceptsFromConnection.d.ts +2 -0
- package/dist/types/Services/FindConnectionsOfCompositionBulkInMemory.d.ts +2 -0
- package/dist/types/Services/GenerateHexNumber.d.ts +1 -0
- package/dist/types/Services/GetAccessIdOfUser.d.ts +0 -0
- package/dist/types/Services/GetComposition.d.ts +10 -0
- package/dist/types/Services/GetCompositionBulk.d.ts +4 -0
- package/dist/types/Services/GetCompositionList.d.ts +2 -0
- package/dist/types/Services/GetConceptByCharacter.d.ts +2 -0
- package/dist/types/Services/GetConnections.d.ts +2 -0
- package/dist/types/Services/GetDataFromIndexDb.d.ts +2 -0
- package/dist/types/Services/GetLink.d.ts +3 -0
- package/dist/types/Services/GetLinkerConnectionFromConcept.d.ts +2 -0
- package/dist/types/Services/GetMaximumConnectionSyncTime.d.ts +2 -0
- package/dist/types/Services/GetTheConcept.d.ts +2 -0
- package/dist/types/Services/GetTheReferent.d.ts +2 -0
- package/dist/types/Services/InitializeSystem.d.ts +2 -0
- package/dist/types/Services/Local/CreateConnectionListFromDatat.d.ts +0 -0
- package/dist/types/Services/Local/CreateDefaultLConcept.d.ts +2 -0
- package/dist/types/Services/Local/CreateLocalBinaryTreeFromData.d.ts +1 -0
- package/dist/types/Services/Local/CreateLocalBinaryTypeTreeFromData.d.ts +1 -0
- package/dist/types/Services/Local/CreateLocalCharacterBinaryTree.d.ts +1 -0
- package/dist/types/Services/Local/CreateTheCompositionLocal.d.ts +2 -0
- package/dist/types/Services/Local/CreateTheConceptLocal.d.ts +2 -0
- package/dist/types/Services/Local/CreateTheConnectionLocal.d.ts +2 -0
- package/dist/types/Services/Local/GetCompositionListLocal.d.ts +2 -0
- package/dist/types/Services/Local/GetCompositionLocal.d.ts +2 -0
- package/dist/types/Services/Local/GetConceptByCharacterLocal.d.ts +1 -0
- package/dist/types/Services/Local/MakeTheConceptLocal.d.ts +2 -0
- package/dist/types/Services/Local/MakeTheInstanceConceptLocal.d.ts +2 -0
- package/dist/types/Services/Local/MakeTheTypeLocal.d.ts +2 -0
- package/dist/types/Services/MakeTheCharacter.d.ts +2 -0
- package/dist/types/Services/MakeTheCharacterData.d.ts +2 -0
- package/dist/types/Services/MakeTheConcept.d.ts +2 -0
- package/dist/types/Services/MakeTheInstanceConcept.d.ts +2 -0
- package/dist/types/Services/MakeTheLocalConcept.d.ts +0 -0
- package/dist/types/Services/MakeTheName.d.ts +2 -0
- package/dist/types/Services/MakeTheTimestamp.d.ts +2 -0
- package/dist/types/Services/MakeTheTypeConcept.d.ts +2 -0
- package/dist/types/Services/Mqtt/publishMessage.d.ts +1 -0
- package/dist/types/Services/Mqtt/subscribeMessage.d.ts +0 -0
- package/dist/types/Services/PatchComposition.d.ts +2 -0
- package/dist/types/Services/Search/SearchLinkMultiple.d.ts +3 -0
- package/dist/types/Services/Security/GetRequestHeader.d.ts +10 -0
- package/dist/types/Services/SplitStrings.d.ts +1 -0
- package/dist/types/Services/UpdateComposition.d.ts +2 -0
- package/dist/types/Services/User/UserTranslation.d.ts +3 -0
- package/dist/types/app.d.ts +70 -0
- package/package.json +173 -0
package/README.md
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
"# tsccs-dev"
|
|
2
|
+
|
|
3
|
+
## Environment
|
|
4
|
+
|
|
5
|
+
create file `.env.development` or `.env.production` for developement and production respectively from `.env.example`
|
|
6
|
+
|
|
7
|
+
## Start
|
|
8
|
+
|
|
9
|
+
This command is used to start the bundle in production mode.
|
|
10
|
+
|
|
11
|
+
```npm start```
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
This command is used to start the bundle in development mode.
|
|
15
|
+
|
|
16
|
+
```npm run dev```
|
|
17
|
+
|
|
18
|
+
## Build
|
|
19
|
+
|
|
20
|
+
This command is used to create the bundle in production mode.
|
|
21
|
+
|
|
22
|
+
```npm run build```
|
|
23
|
+
|
|
24
|
+
|