mftsccs-browser 0.0.0 → 1.1.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/dist/bundle.js +8259 -2285
- package/dist/bundle.js.map +1 -0
- package/dist/types/Api/Create/CreateTheCharacter.d.ts +1 -1
- package/dist/types/Api/Create/CreateTheConceptApi.d.ts +1 -1
- package/dist/types/Api/Create/CreateTheGhostConceptApi.d.ts +3 -3
- package/dist/types/Api/Create/CreateTheGhostConnectionApi.d.ts +2 -2
- package/dist/types/Api/Create/CreateTheTextData.d.ts +1 -1
- package/dist/types/Api/Delete/DeleteConceptInBackend.d.ts +1 -1
- package/dist/types/Api/GetAiData.d.ts +1 -1
- package/dist/types/Api/GetAllConnectionsOfComposition.d.ts +1 -1
- package/dist/types/Api/GetAllConnectionsOfCompositionBulk.d.ts +1 -1
- package/dist/types/Api/GetAllLinkerConnectionsToTheConcept.d.ts +2 -0
- package/dist/types/Api/GetAllPrefetchConnections.d.ts +1 -1
- package/dist/types/Api/GetCharacterDataByCharacter.d.ts +1 -1
- package/dist/types/Api/GetConcept.d.ts +6 -1
- package/dist/types/Api/GetConceptBulk.d.ts +8 -1
- package/dist/types/Api/GetConceptByCharacterAndType.d.ts +1 -1
- package/dist/types/Api/GetConnection.d.ts +1 -1
- package/dist/types/Api/GetConnectionBulk.d.ts +5 -0
- package/dist/types/Api/GetConnectionOfTheConcept.d.ts +1 -1
- package/dist/types/Api/GetReservedConnectionIds.d.ts +1 -1
- package/dist/types/Api/GetReservedIds.d.ts +1 -1
- package/dist/types/Api/Local/GetLocalConceptByCharacterValue.d.ts +2 -2
- package/dist/types/Api/MakeTheNameInBackend.d.ts +1 -1
- package/dist/types/Api/MakeTheTypeConceptApi.d.ts +7 -0
- package/dist/types/Api/RecursiveSearch.d.ts +4 -0
- package/dist/types/Api/Search/SearchInternalApi.d.ts +3 -0
- package/dist/types/Api/Search/SearchLinkMultipleApi.d.ts +2 -0
- package/dist/types/Api/Search/SearchWithTypeAndLinker.d.ts +2 -0
- package/dist/types/Api/SearchConcept/GetConceptByCharacterAndCategory.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/Api/Signin.d.ts +1 -1
- package/dist/types/Api/Signup.d.ts +1 -1
- package/dist/types/Api/Translate/TranslateLocalToReal.d.ts +2 -0
- package/dist/types/Api/View/ViewInternalDataApi.d.ts +1 -0
- package/dist/types/Constants/AccessConstants.d.ts +3 -0
- package/dist/types/Constants/FormatConstants.d.ts +5 -0
- package/dist/types/DataStructures/BaseUrl.d.ts +12 -0
- package/dist/types/DataStructures/BinaryCharacterTree.d.ts +2 -0
- package/dist/types/DataStructures/BinaryTree.d.ts +1 -0
- package/dist/types/DataStructures/BinaryTypeTree.d.ts +7 -5
- package/dist/types/DataStructures/Concept.d.ts +11 -16
- package/dist/types/DataStructures/ConceptData.d.ts +6 -0
- package/dist/types/DataStructures/Connection.d.ts +7 -12
- package/dist/types/DataStructures/ConnectionBinaryTree/ConnectionBinaryTree.d.ts +2 -0
- package/dist/types/DataStructures/ConnectionBinaryTree/ConnectionNode.d.ts +2 -0
- package/dist/types/DataStructures/ConnectionBinaryTree/ConnectionOfNode.d.ts +10 -0
- package/dist/types/DataStructures/ConnectionBinaryTree/ConnectionOfTheTree.d.ts +24 -0
- package/dist/types/DataStructures/ConnectionBinaryTree/NodePrimitive.d.ts +15 -0
- package/dist/types/DataStructures/ConnectionData.d.ts +4 -0
- package/dist/types/DataStructures/FilterSearch.d.ts +1 -0
- package/dist/types/DataStructures/Local/LConcept.d.ts +3 -1
- package/dist/types/DataStructures/Local/LConnection.d.ts +4 -4
- package/dist/types/DataStructures/Local/LNode.d.ts +4 -3
- package/dist/types/DataStructures/Local/LocalBinaryCharacterTree.d.ts +3 -2
- package/dist/types/DataStructures/Local/LocalBinaryTree.d.ts +2 -2
- package/dist/types/DataStructures/Local/LocalBinaryTypeTree.d.ts +4 -4
- package/dist/types/DataStructures/Local/LocalConceptData.d.ts +13 -11
- package/dist/types/DataStructures/Local/LocalConnectionData.d.ts +12 -10
- package/dist/types/DataStructures/Local/LocalGhostIdTree.d.ts +2 -2
- package/dist/types/DataStructures/Local/LocalId.d.ts +19 -0
- package/dist/types/DataStructures/Local/LocalSyncData.d.ts +15 -14
- package/dist/types/DataStructures/Node.d.ts +3 -0
- package/dist/types/DataStructures/Responses/ErrorResponse.d.ts +74 -0
- package/dist/types/DataStructures/Search/SearchStructure.d.ts +9 -0
- package/dist/types/DataStructures/SearchQuery.d.ts +2 -0
- package/dist/types/DataStructures/TypeNode.d.ts +18 -0
- package/dist/types/DataStructures/User/UserBinaryTree.d.ts +5 -4
- package/dist/types/DataStructures/User/UserNode.d.ts +5 -5
- package/dist/types/Database/IndexUpdate.d.ts +47 -0
- package/dist/types/Database/NoIndexDb.d.ts +1 -1
- package/dist/types/Database/indexdblocal.d.ts +40 -5
- package/dist/types/Database/indexeddb.d.ts +49 -7
- package/dist/types/Helpers/CheckIfExists.d.ts +2 -1
- package/dist/types/Helpers/RemoveFromArray.d.ts +1 -0
- package/dist/types/Services/Common/DelayFunction.d.ts +7 -0
- package/dist/types/Services/Common/ErrorPosting.d.ts +2 -0
- package/dist/types/Services/ConceptFinding/GetConceptByCharacterAndCategory.d.ts +4 -0
- package/dist/types/Services/Conversion/ConvertConcepts.d.ts +5 -0
- package/dist/types/Services/CreateBinaryTreeFromData.d.ts +4 -1
- package/dist/types/Services/CreateCharacterBinaryTreeFromData.d.ts +4 -0
- package/dist/types/Services/CreateConnectionBetweenTwoConcepts.d.ts +3 -1
- package/dist/types/Services/CreateTheConcept.d.ts +3 -3
- package/dist/types/Services/CreateTheConnection.d.ts +9 -1
- package/dist/types/Services/CreateTheConnectionGeneral.d.ts +1 -1
- package/dist/types/Services/FindConeceptsFromConnection.d.ts +4 -0
- package/dist/types/Services/GetComposition.d.ts +126 -2
- package/dist/types/Services/GetCompositionBulk.d.ts +80 -3
- package/dist/types/Services/GetCompositionList.d.ts +3 -2
- package/dist/types/Services/GetConceptByCharacter.d.ts +1 -0
- package/dist/types/Services/GetConnectionBetweenTwoConceptsLinker.d.ts +11 -0
- package/dist/types/Services/GetDataFromIndexDb.d.ts +2 -2
- package/dist/types/Services/GetLinkerConnectionFromConcept.d.ts +1 -0
- package/dist/types/Services/GetRelation.d.ts +3 -0
- package/dist/types/Services/GetTheConcept.d.ts +7 -1
- package/dist/types/Services/InitializeSystem.d.ts +1 -1
- package/dist/types/Services/Local/ConvertFromLConceptToConcept.d.ts +1 -2
- package/dist/types/Services/Local/ConvertFromLConnectionToConnection.d.ts +1 -2
- package/dist/types/Services/Local/CreateConnectionBetweenTwoConceptsLocal.d.ts +2 -0
- package/dist/types/Services/Local/CreateDefaultLConcept.d.ts +2 -2
- package/dist/types/Services/Local/CreateLocalBinaryTreeFromData.d.ts +29 -1
- package/dist/types/Services/Local/CreateTheCompositionLocal.d.ts +14 -2
- package/dist/types/Services/Local/CreateTheConceptLocal.d.ts +22 -2
- package/dist/types/Services/Local/CreateTheConnectionLocal.d.ts +15 -2
- package/dist/types/Services/Local/DeleteConceptLocal.d.ts +1 -0
- package/dist/types/Services/Local/GetCompositionListLocal.d.ts +12 -0
- package/dist/types/Services/Local/GetConceptByCharacterLocal.d.ts +10 -2
- package/dist/types/Services/Local/GetConnectionOfTheConceptLocal.d.ts +2 -0
- package/dist/types/Services/Local/GetRelationLocal.d.ts +1 -0
- package/dist/types/Services/Local/GetTheConceptLocal.d.ts +10 -0
- package/dist/types/Services/Local/MakeTheConceptLocal.d.ts +2 -2
- package/dist/types/Services/Local/MakeTheInstanceConceptLocal.d.ts +17 -2
- package/dist/types/Services/Local/MakeTheTypeLocal.d.ts +14 -2
- package/dist/types/Services/Local/UpdateCompositionLocal.d.ts +2 -0
- package/dist/types/Services/MakeTheConcept.d.ts +1 -1
- package/dist/types/Services/MakeTheInstanceConcept.d.ts +15 -1
- package/dist/types/Services/MakeTheTimestamp.d.ts +1 -1
- package/dist/types/Services/Search/SearchLinkInternal.d.ts +3 -0
- package/dist/types/Services/Search/SearchLinkMultiple.d.ts +55 -0
- package/dist/types/Services/Search/SearchWithTypeAndLinker.d.ts +17 -0
- package/dist/types/Services/Security/GetRequestHeader.d.ts +1 -0
- package/dist/types/Services/User/UserTranslation.d.ts +3 -3
- package/dist/types/Services/View/ViewInternalData.d.ts +1 -0
- package/dist/types/Visualize/ConceptCircle.d.ts +35 -0
- package/dist/types/Visualize/ConceptCircleList.d.ts +9 -0
- package/dist/types/Visualize/ConnectionLine.d.ts +21 -0
- package/dist/types/Visualize/ConnectionLineList.d.ts +6 -0
- package/dist/types/Visualize/drawExistingConcepts.d.ts +8 -0
- package/dist/types/Visualize/helper.d.ts +15 -0
- package/dist/types/Visualize/index.d.ts +0 -0
- package/dist/types/Widgets/BaseObserver.d.ts +21 -0
- package/dist/types/Widgets/BaseWidget.d.ts +20 -0
- package/dist/types/Widgets/StatefulWidget.d.ts +70 -0
- package/dist/types/Widgets/mainView.class.d.ts +6 -0
- package/dist/types/WrapperFunctions/DepenedencyObserver.d.ts +53 -0
- package/dist/types/WrapperFunctions/GetCompositionListObservable.d.ts +19 -0
- package/dist/types/WrapperFunctions/GetCompositionObservable.d.ts +13 -0
- package/dist/types/WrapperFunctions/GetLinkObservable.d.ts +32 -0
- package/dist/types/WrapperFunctions/RecursiveSearchObservable.d.ts +29 -0
- package/dist/types/WrapperFunctions/SearchLinkMultipleAllObservable.d.ts +15 -0
- package/dist/types/WrapperFunctions/SearchLinkMultipleAllWidget.d.ts +8 -0
- package/dist/types/WrapperFunctions/Wrapper.d.ts +17 -0
- package/dist/types/app.d.ts +55 -6
- package/package.json +48 -172
There are too many changes on this page to be displayed.
The amount of changes on this page would crash your brower.
You can still verify the content by downloading the package file manually.