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.
Files changed (145) hide show
  1. package/dist/bundle.js +8259 -2285
  2. package/dist/bundle.js.map +1 -0
  3. package/dist/types/Api/Create/CreateTheCharacter.d.ts +1 -1
  4. package/dist/types/Api/Create/CreateTheConceptApi.d.ts +1 -1
  5. package/dist/types/Api/Create/CreateTheGhostConceptApi.d.ts +3 -3
  6. package/dist/types/Api/Create/CreateTheGhostConnectionApi.d.ts +2 -2
  7. package/dist/types/Api/Create/CreateTheTextData.d.ts +1 -1
  8. package/dist/types/Api/Delete/DeleteConceptInBackend.d.ts +1 -1
  9. package/dist/types/Api/GetAiData.d.ts +1 -1
  10. package/dist/types/Api/GetAllConnectionsOfComposition.d.ts +1 -1
  11. package/dist/types/Api/GetAllConnectionsOfCompositionBulk.d.ts +1 -1
  12. package/dist/types/Api/GetAllLinkerConnectionsToTheConcept.d.ts +2 -0
  13. package/dist/types/Api/GetAllPrefetchConnections.d.ts +1 -1
  14. package/dist/types/Api/GetCharacterDataByCharacter.d.ts +1 -1
  15. package/dist/types/Api/GetConcept.d.ts +6 -1
  16. package/dist/types/Api/GetConceptBulk.d.ts +8 -1
  17. package/dist/types/Api/GetConceptByCharacterAndType.d.ts +1 -1
  18. package/dist/types/Api/GetConnection.d.ts +1 -1
  19. package/dist/types/Api/GetConnectionBulk.d.ts +5 -0
  20. package/dist/types/Api/GetConnectionOfTheConcept.d.ts +1 -1
  21. package/dist/types/Api/GetReservedConnectionIds.d.ts +1 -1
  22. package/dist/types/Api/GetReservedIds.d.ts +1 -1
  23. package/dist/types/Api/Local/GetLocalConceptByCharacterValue.d.ts +2 -2
  24. package/dist/types/Api/MakeTheNameInBackend.d.ts +1 -1
  25. package/dist/types/Api/MakeTheTypeConceptApi.d.ts +7 -0
  26. package/dist/types/Api/RecursiveSearch.d.ts +4 -0
  27. package/dist/types/Api/Search/SearchInternalApi.d.ts +3 -0
  28. package/dist/types/Api/Search/SearchLinkMultipleApi.d.ts +2 -0
  29. package/dist/types/Api/Search/SearchWithTypeAndLinker.d.ts +2 -0
  30. package/dist/types/Api/SearchConcept/GetConceptByCharacterAndCategory.d.ts +2 -0
  31. package/dist/types/Api/SearchConcept/GetConceptByCharacterAndCategoryApi.d.ts +2 -0
  32. package/dist/types/Api/SearchConcept/GetConceptByCharacterAndCategoryDirect.d.ts +2 -0
  33. package/dist/types/Api/Signin.d.ts +1 -1
  34. package/dist/types/Api/Signup.d.ts +1 -1
  35. package/dist/types/Api/Translate/TranslateLocalToReal.d.ts +2 -0
  36. package/dist/types/Api/View/ViewInternalDataApi.d.ts +1 -0
  37. package/dist/types/Constants/AccessConstants.d.ts +3 -0
  38. package/dist/types/Constants/FormatConstants.d.ts +5 -0
  39. package/dist/types/DataStructures/BaseUrl.d.ts +12 -0
  40. package/dist/types/DataStructures/BinaryCharacterTree.d.ts +2 -0
  41. package/dist/types/DataStructures/BinaryTree.d.ts +1 -0
  42. package/dist/types/DataStructures/BinaryTypeTree.d.ts +7 -5
  43. package/dist/types/DataStructures/Concept.d.ts +11 -16
  44. package/dist/types/DataStructures/ConceptData.d.ts +6 -0
  45. package/dist/types/DataStructures/Connection.d.ts +7 -12
  46. package/dist/types/DataStructures/ConnectionBinaryTree/ConnectionBinaryTree.d.ts +2 -0
  47. package/dist/types/DataStructures/ConnectionBinaryTree/ConnectionNode.d.ts +2 -0
  48. package/dist/types/DataStructures/ConnectionBinaryTree/ConnectionOfNode.d.ts +10 -0
  49. package/dist/types/DataStructures/ConnectionBinaryTree/ConnectionOfTheTree.d.ts +24 -0
  50. package/dist/types/DataStructures/ConnectionBinaryTree/NodePrimitive.d.ts +15 -0
  51. package/dist/types/DataStructures/ConnectionData.d.ts +4 -0
  52. package/dist/types/DataStructures/FilterSearch.d.ts +1 -0
  53. package/dist/types/DataStructures/Local/LConcept.d.ts +3 -1
  54. package/dist/types/DataStructures/Local/LConnection.d.ts +4 -4
  55. package/dist/types/DataStructures/Local/LNode.d.ts +4 -3
  56. package/dist/types/DataStructures/Local/LocalBinaryCharacterTree.d.ts +3 -2
  57. package/dist/types/DataStructures/Local/LocalBinaryTree.d.ts +2 -2
  58. package/dist/types/DataStructures/Local/LocalBinaryTypeTree.d.ts +4 -4
  59. package/dist/types/DataStructures/Local/LocalConceptData.d.ts +13 -11
  60. package/dist/types/DataStructures/Local/LocalConnectionData.d.ts +12 -10
  61. package/dist/types/DataStructures/Local/LocalGhostIdTree.d.ts +2 -2
  62. package/dist/types/DataStructures/Local/LocalId.d.ts +19 -0
  63. package/dist/types/DataStructures/Local/LocalSyncData.d.ts +15 -14
  64. package/dist/types/DataStructures/Node.d.ts +3 -0
  65. package/dist/types/DataStructures/Responses/ErrorResponse.d.ts +74 -0
  66. package/dist/types/DataStructures/Search/SearchStructure.d.ts +9 -0
  67. package/dist/types/DataStructures/SearchQuery.d.ts +2 -0
  68. package/dist/types/DataStructures/TypeNode.d.ts +18 -0
  69. package/dist/types/DataStructures/User/UserBinaryTree.d.ts +5 -4
  70. package/dist/types/DataStructures/User/UserNode.d.ts +5 -5
  71. package/dist/types/Database/IndexUpdate.d.ts +47 -0
  72. package/dist/types/Database/NoIndexDb.d.ts +1 -1
  73. package/dist/types/Database/indexdblocal.d.ts +40 -5
  74. package/dist/types/Database/indexeddb.d.ts +49 -7
  75. package/dist/types/Helpers/CheckIfExists.d.ts +2 -1
  76. package/dist/types/Helpers/RemoveFromArray.d.ts +1 -0
  77. package/dist/types/Services/Common/DelayFunction.d.ts +7 -0
  78. package/dist/types/Services/Common/ErrorPosting.d.ts +2 -0
  79. package/dist/types/Services/ConceptFinding/GetConceptByCharacterAndCategory.d.ts +4 -0
  80. package/dist/types/Services/Conversion/ConvertConcepts.d.ts +5 -0
  81. package/dist/types/Services/CreateBinaryTreeFromData.d.ts +4 -1
  82. package/dist/types/Services/CreateCharacterBinaryTreeFromData.d.ts +4 -0
  83. package/dist/types/Services/CreateConnectionBetweenTwoConcepts.d.ts +3 -1
  84. package/dist/types/Services/CreateTheConcept.d.ts +3 -3
  85. package/dist/types/Services/CreateTheConnection.d.ts +9 -1
  86. package/dist/types/Services/CreateTheConnectionGeneral.d.ts +1 -1
  87. package/dist/types/Services/FindConeceptsFromConnection.d.ts +4 -0
  88. package/dist/types/Services/GetComposition.d.ts +126 -2
  89. package/dist/types/Services/GetCompositionBulk.d.ts +80 -3
  90. package/dist/types/Services/GetCompositionList.d.ts +3 -2
  91. package/dist/types/Services/GetConceptByCharacter.d.ts +1 -0
  92. package/dist/types/Services/GetConnectionBetweenTwoConceptsLinker.d.ts +11 -0
  93. package/dist/types/Services/GetDataFromIndexDb.d.ts +2 -2
  94. package/dist/types/Services/GetLinkerConnectionFromConcept.d.ts +1 -0
  95. package/dist/types/Services/GetRelation.d.ts +3 -0
  96. package/dist/types/Services/GetTheConcept.d.ts +7 -1
  97. package/dist/types/Services/InitializeSystem.d.ts +1 -1
  98. package/dist/types/Services/Local/ConvertFromLConceptToConcept.d.ts +1 -2
  99. package/dist/types/Services/Local/ConvertFromLConnectionToConnection.d.ts +1 -2
  100. package/dist/types/Services/Local/CreateConnectionBetweenTwoConceptsLocal.d.ts +2 -0
  101. package/dist/types/Services/Local/CreateDefaultLConcept.d.ts +2 -2
  102. package/dist/types/Services/Local/CreateLocalBinaryTreeFromData.d.ts +29 -1
  103. package/dist/types/Services/Local/CreateTheCompositionLocal.d.ts +14 -2
  104. package/dist/types/Services/Local/CreateTheConceptLocal.d.ts +22 -2
  105. package/dist/types/Services/Local/CreateTheConnectionLocal.d.ts +15 -2
  106. package/dist/types/Services/Local/DeleteConceptLocal.d.ts +1 -0
  107. package/dist/types/Services/Local/GetCompositionListLocal.d.ts +12 -0
  108. package/dist/types/Services/Local/GetConceptByCharacterLocal.d.ts +10 -2
  109. package/dist/types/Services/Local/GetConnectionOfTheConceptLocal.d.ts +2 -0
  110. package/dist/types/Services/Local/GetRelationLocal.d.ts +1 -0
  111. package/dist/types/Services/Local/GetTheConceptLocal.d.ts +10 -0
  112. package/dist/types/Services/Local/MakeTheConceptLocal.d.ts +2 -2
  113. package/dist/types/Services/Local/MakeTheInstanceConceptLocal.d.ts +17 -2
  114. package/dist/types/Services/Local/MakeTheTypeLocal.d.ts +14 -2
  115. package/dist/types/Services/Local/UpdateCompositionLocal.d.ts +2 -0
  116. package/dist/types/Services/MakeTheConcept.d.ts +1 -1
  117. package/dist/types/Services/MakeTheInstanceConcept.d.ts +15 -1
  118. package/dist/types/Services/MakeTheTimestamp.d.ts +1 -1
  119. package/dist/types/Services/Search/SearchLinkInternal.d.ts +3 -0
  120. package/dist/types/Services/Search/SearchLinkMultiple.d.ts +55 -0
  121. package/dist/types/Services/Search/SearchWithTypeAndLinker.d.ts +17 -0
  122. package/dist/types/Services/Security/GetRequestHeader.d.ts +1 -0
  123. package/dist/types/Services/User/UserTranslation.d.ts +3 -3
  124. package/dist/types/Services/View/ViewInternalData.d.ts +1 -0
  125. package/dist/types/Visualize/ConceptCircle.d.ts +35 -0
  126. package/dist/types/Visualize/ConceptCircleList.d.ts +9 -0
  127. package/dist/types/Visualize/ConnectionLine.d.ts +21 -0
  128. package/dist/types/Visualize/ConnectionLineList.d.ts +6 -0
  129. package/dist/types/Visualize/drawExistingConcepts.d.ts +8 -0
  130. package/dist/types/Visualize/helper.d.ts +15 -0
  131. package/dist/types/Visualize/index.d.ts +0 -0
  132. package/dist/types/Widgets/BaseObserver.d.ts +21 -0
  133. package/dist/types/Widgets/BaseWidget.d.ts +20 -0
  134. package/dist/types/Widgets/StatefulWidget.d.ts +70 -0
  135. package/dist/types/Widgets/mainView.class.d.ts +6 -0
  136. package/dist/types/WrapperFunctions/DepenedencyObserver.d.ts +53 -0
  137. package/dist/types/WrapperFunctions/GetCompositionListObservable.d.ts +19 -0
  138. package/dist/types/WrapperFunctions/GetCompositionObservable.d.ts +13 -0
  139. package/dist/types/WrapperFunctions/GetLinkObservable.d.ts +32 -0
  140. package/dist/types/WrapperFunctions/RecursiveSearchObservable.d.ts +29 -0
  141. package/dist/types/WrapperFunctions/SearchLinkMultipleAllObservable.d.ts +15 -0
  142. package/dist/types/WrapperFunctions/SearchLinkMultipleAllWidget.d.ts +8 -0
  143. package/dist/types/WrapperFunctions/Wrapper.d.ts +17 -0
  144. package/dist/types/app.d.ts +55 -6
  145. 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.