mftsccs-node 0.2.2 → 0.2.4

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 (217) hide show
  1. package/dist/main.bundle.js +2 -0
  2. package/dist/main.bundle.js.LICENSE.txt +1 -0
  3. package/dist/serviceWorker.bundle.js +2 -0
  4. package/dist/serviceWorker.bundle.js.LICENSE.txt +1 -0
  5. package/dist/types/AccessTracker/accessTracker.d.ts +67 -0
  6. package/dist/types/Anomaly/anomaly.d.ts +103 -0
  7. package/dist/types/Api/Create/CreateTheConceptApi.d.ts +1 -1
  8. package/dist/types/Api/Create/CreateTheGhostConceptApi.d.ts +3 -0
  9. package/dist/types/Api/Create/CreateTheGhostConnectionApi.d.ts +2 -0
  10. package/dist/types/Api/Delete/DeleteUserInBackend.d.ts +1 -0
  11. package/dist/types/Api/DeleteConnectionBulkApi.d.ts +1 -0
  12. package/dist/types/Api/DeleteTheConcept.d.ts +1 -1
  13. package/dist/types/Api/DeleteTheConnection.d.ts +1 -1
  14. package/dist/types/Api/GetAllConnectionsOfComposition.d.ts +1 -1
  15. package/dist/types/Api/GetAllConnectionsOfCompositionBulk.d.ts +2 -2
  16. package/dist/types/Api/GetCharacterDataByCharacter.d.ts +1 -1
  17. package/dist/types/Api/GetCompositionConnectionsBetweenTwoConcepts.d.ts +1 -2
  18. package/dist/types/Api/GetConcept.d.ts +6 -2
  19. package/dist/types/Api/GetConceptBulk.d.ts +8 -1
  20. package/dist/types/Api/GetConceptByCharacterAndType.d.ts +1 -2
  21. package/dist/types/Api/GetConnection.d.ts +1 -1
  22. package/dist/types/Api/GetConnectionBulk.d.ts +5 -0
  23. package/dist/types/Api/GetConnectionOfTheConcept.d.ts +1 -2
  24. package/dist/types/Api/GetConnections/GetConnectionsByTypeApi.d.ts +3 -0
  25. package/dist/types/Api/Images/GetImages.d.ts +1 -0
  26. package/dist/types/Api/Local/GetLocalConceptByCharacterValue.d.ts +2 -0
  27. package/dist/types/Api/Login.d.ts +1 -1
  28. package/dist/types/Api/MakeTheTypeConceptApi.d.ts +7 -0
  29. package/dist/types/Api/Prototype/CreatePrototype.d.ts +2 -0
  30. package/dist/types/Api/Prototype/Selector.d.ts +15 -0
  31. package/dist/types/Api/RecursiveSearch.d.ts +6 -1
  32. package/dist/types/Api/Search/FreeschemaQueryApi.d.ts +1 -1
  33. package/dist/types/Api/Search/SearchInternalApi.d.ts +1 -0
  34. package/dist/types/Api/Search/SearchWithTypeAndLinker.d.ts +2 -0
  35. package/dist/types/Api/SearchConcept/GetConceptByCharacterAndCategoryApi.d.ts +1 -1
  36. package/dist/types/Api/Signin.d.ts +1 -1
  37. package/dist/types/Api/Signup.d.ts +17 -1
  38. package/dist/types/Api/Translate/TranslateLocalToReal.d.ts +2 -0
  39. package/dist/types/Constants/AccessConstants.d.ts +3 -0
  40. package/dist/types/Constants/FormatConstants.d.ts +1 -0
  41. package/dist/types/Constants/ckeditorCSS.d.ts +1 -0
  42. package/dist/types/Constants/general.const.d.ts +6 -0
  43. package/dist/types/Constants/page.const.d.ts +5 -0
  44. package/dist/types/DataStructures/BaseUrl.d.ts +33 -0
  45. package/dist/types/DataStructures/BinaryTree.d.ts +1 -0
  46. package/dist/types/DataStructures/BinaryTypeTree.d.ts +7 -5
  47. package/dist/types/DataStructures/Concept.d.ts +11 -15
  48. package/dist/types/DataStructures/ConceptData.d.ts +7 -2
  49. package/dist/types/DataStructures/Connection.d.ts +6 -10
  50. package/dist/types/DataStructures/ConnectionBinaryTree/ConnectionBinaryTree.d.ts +3 -1
  51. package/dist/types/DataStructures/ConnectionBinaryTree/ConnectionNode.d.ts +3 -0
  52. package/dist/types/DataStructures/ConnectionBinaryTree/ConnectionOfNode.d.ts +10 -0
  53. package/dist/types/DataStructures/ConnectionBinaryTree/ConnectionOfTheTree.d.ts +24 -0
  54. package/dist/types/DataStructures/ConnectionBinaryTree/ConnectionTypeNode.d.ts +10 -0
  55. package/dist/types/DataStructures/ConnectionBinaryTree/ConnectionTypeTree.d.ts +16 -9
  56. package/dist/types/DataStructures/ConnectionBinaryTree/NodePrimitive.d.ts +15 -0
  57. package/dist/types/DataStructures/ConnectionByType/GetConnectionByType.d.ts +4 -0
  58. package/dist/types/DataStructures/ConnectionData.d.ts +11 -3
  59. package/dist/types/DataStructures/Local/LConcept.d.ts +5 -3
  60. package/dist/types/DataStructures/Local/LConnection.d.ts +3 -3
  61. package/dist/types/DataStructures/Local/LNode.d.ts +5 -3
  62. package/dist/types/DataStructures/Local/LocalBinaryCharacterTree.d.ts +3 -2
  63. package/dist/types/DataStructures/Local/LocalBinaryTree.d.ts +3 -2
  64. package/dist/types/DataStructures/Local/LocalBinaryTypeTree.d.ts +4 -4
  65. package/dist/types/DataStructures/Local/LocalConceptData.d.ts +16 -9
  66. package/dist/types/DataStructures/Local/LocalConnectionData.d.ts +13 -9
  67. package/dist/types/DataStructures/Local/LocalGhostIdTree.d.ts +11 -0
  68. package/dist/types/DataStructures/Local/LocalId.d.ts +19 -0
  69. package/dist/types/DataStructures/Local/LocalSyncData.d.ts +29 -10
  70. package/dist/types/DataStructures/Node.d.ts +1 -0
  71. package/dist/types/DataStructures/Prototype/Prototype.d.ts +19 -0
  72. package/dist/types/DataStructures/Prototype/PrototypeOption.d.ts +4 -0
  73. package/dist/types/DataStructures/Prototype/QuerySelector.d.ts +4 -0
  74. package/dist/types/DataStructures/Search/FreeschemaQuery.d.ts +2 -1
  75. package/dist/types/DataStructures/Search/SearchStructure.d.ts +1 -0
  76. package/dist/types/DataStructures/SearchQuery.d.ts +1 -0
  77. package/dist/types/DataStructures/Security/TokenStorage.d.ts +2 -1
  78. package/dist/types/DataStructures/SyncData.d.ts +1 -2
  79. package/dist/types/DataStructures/TypeLibrary.d.ts +19 -0
  80. package/dist/types/DataStructures/TypeNode.d.ts +18 -0
  81. package/dist/types/DataStructures/User/UserBinaryTree.d.ts +5 -7
  82. package/dist/types/DataStructures/User/UserNode.d.ts +3 -5
  83. package/dist/types/DataStructures/WidgetCache/WidgetCache.d.ts +10 -0
  84. package/dist/types/DataStructures/WidgetCache/WidgetDetails.d.ts +9 -0
  85. package/dist/types/DataStructures/WidgetCache/WidgetNode.d.ts +18 -0
  86. package/dist/types/Database/IndexUpdate.d.ts +47 -0
  87. package/dist/types/Database/NoIndexDb.d.ts +1 -1
  88. package/dist/types/Database/indexdblocal.d.ts +40 -0
  89. package/dist/types/Database/indexeddb.d.ts +50 -0
  90. package/dist/types/Helpers/CheckIfExists.d.ts +2 -3
  91. package/dist/types/Helpers/RemoveFromArray.d.ts +1 -2
  92. package/dist/types/Middleware/ApplicationMonitor.d.ts +14 -0
  93. package/dist/types/Middleware/logger.service.d.ts +144 -0
  94. package/dist/types/ServiceWorker/actions/connectionActions.d.ts +2 -0
  95. package/dist/types/ServiceWorker/actions/createActions.d.ts +2 -0
  96. package/dist/types/ServiceWorker/actions/deleteActions.d.ts +2 -0
  97. package/dist/types/ServiceWorker/actions/getActions.d.ts +2 -0
  98. package/dist/types/ServiceWorker/actions/index.d.ts +15 -0
  99. package/dist/types/ServiceWorker/actions/searchActions.d.ts +2 -0
  100. package/dist/types/ServiceWorker/actions/syncActions.d.ts +2 -0
  101. package/dist/types/ServiceWorker/actions/updateActions.d.ts +2 -0
  102. package/dist/types/ServiceWorker/index.d.ts +11 -0
  103. package/dist/types/Services/AccessControl/AccessControl.d.ts +218 -0
  104. package/dist/types/Services/Common/DelayFunction.d.ts +7 -0
  105. package/dist/types/Services/Common/ErrorPosting.d.ts +8 -0
  106. package/dist/types/Services/Common/MergeArrays.d.ts +7 -0
  107. package/dist/types/Services/Common/RemoveAllChild.d.ts +1 -0
  108. package/dist/types/Services/ConceptFinding/GetConceptByCharacterAndCategory.d.ts +0 -1
  109. package/dist/types/Services/Conversion/ConvertConcepts.d.ts +3 -5
  110. package/dist/types/Services/CreateBinaryTreeFromData.d.ts +4 -1
  111. package/dist/types/Services/CreateCharacterBinaryTreeFromData.d.ts +4 -0
  112. package/dist/types/Services/CreateConnection/CreateConnectionEntity.d.ts +2 -0
  113. package/dist/types/Services/CreateConnectionBetweenTwoConcepts.d.ts +1 -1
  114. package/dist/types/Services/CreateTheComposition.d.ts +1 -2
  115. package/dist/types/Services/CreateTheConcept.d.ts +3 -3
  116. package/dist/types/Services/CreateTheConnection.d.ts +9 -1
  117. package/dist/types/Services/CreateTheConnectionGeneral.d.ts +1 -3
  118. package/dist/types/Services/DeleteConcept.d.ts +2 -1
  119. package/dist/types/Services/DeleteConnection.d.ts +2 -1
  120. package/dist/types/Services/DeleteConnectionByType.d.ts +22 -0
  121. package/dist/types/Services/FindConeceptsFromConnection.d.ts +4 -0
  122. package/dist/types/Services/FindConnectionsOfCompositionBulkInMemory.d.ts +1 -2
  123. package/dist/types/Services/GetComposition.d.ts +139 -1
  124. package/dist/types/Services/GetCompositionBulk.d.ts +94 -5
  125. package/dist/types/Services/GetCompositionList.d.ts +5 -0
  126. package/dist/types/Services/GetConceptByCharacter.d.ts +2 -3
  127. package/dist/types/Services/GetConnectionBetweenTwoConceptsLinker.d.ts +11 -0
  128. package/dist/types/Services/GetConnections.d.ts +1 -2
  129. package/dist/types/Services/GetDataFromIndexDb.d.ts +2 -2
  130. package/dist/types/Services/GetLink.d.ts +1 -1
  131. package/dist/types/Services/GetRelation.d.ts +2 -5
  132. package/dist/types/Services/GetTheConcept.d.ts +7 -0
  133. package/dist/types/Services/InitializeSystem.d.ts +1 -1
  134. package/dist/types/Services/Local/ConvertFromLConceptToConcept.d.ts +2 -0
  135. package/dist/types/Services/Local/ConvertFromLConnectionToConnection.d.ts +2 -0
  136. package/dist/types/Services/Local/CreateConnectionBetweenTwoConceptsLocal.d.ts +3 -0
  137. package/dist/types/Services/Local/CreateDefaultLConcept.d.ts +2 -2
  138. package/dist/types/Services/Local/CreateLocalBinaryTreeFromData.d.ts +29 -1
  139. package/dist/types/Services/Local/CreateTheCompositionLocal.d.ts +14 -2
  140. package/dist/types/Services/Local/CreateTheConceptLocal.d.ts +22 -2
  141. package/dist/types/Services/Local/CreateTheConnectionLocal.d.ts +16 -2
  142. package/dist/types/Services/Local/DeleteConceptLocal.d.ts +1 -0
  143. package/dist/types/Services/Local/GetCompositionListLocal.d.ts +12 -0
  144. package/dist/types/Services/Local/GetConceptByCharacterLocal.d.ts +10 -1
  145. package/dist/types/Services/Local/GetConnectionOfTheConceptLocal.d.ts +2 -0
  146. package/dist/types/Services/Local/GetRelationLocal.d.ts +1 -0
  147. package/dist/types/Services/Local/GetTheConceptLocal.d.ts +9 -0
  148. package/dist/types/Services/Local/MakeTheConceptLocal.d.ts +2 -2
  149. package/dist/types/Services/Local/MakeTheInstanceConceptLocal.d.ts +18 -2
  150. package/dist/types/Services/Local/MakeTheTypeLocal.d.ts +16 -2
  151. package/dist/types/Services/Local/UpdateCompositionLocal.d.ts +3 -2
  152. package/dist/types/Services/Mail.d.ts +18 -0
  153. package/dist/types/Services/MakeTheConcept.d.ts +1 -1
  154. package/dist/types/Services/MakeTheInstanceConcept.d.ts +15 -2
  155. package/dist/types/Services/MakeTheTimestamp.d.ts +1 -2
  156. package/dist/types/Services/MakeTheTypeConcept.d.ts +1 -2
  157. package/dist/types/Services/Search/DataIdFormat.d.ts +18 -18
  158. package/dist/types/Services/Search/FormatData.d.ts +20 -10
  159. package/dist/types/Services/Search/NewFormat.d.ts +4 -0
  160. package/dist/types/Services/Search/SearchLinkInternal.d.ts +1 -0
  161. package/dist/types/Services/Search/SearchLinkMultiple.d.ts +53 -1
  162. package/dist/types/Services/Search/SearchWithTypeAndLinker.d.ts +53 -5
  163. package/dist/types/Services/Security/GetRequestHeader.d.ts +3 -10
  164. package/dist/types/Services/Transaction/LocalTransaction.d.ts +45 -0
  165. package/dist/types/Services/UpdateComposition.d.ts +1 -1
  166. package/dist/types/Services/Upload.d.ts +33 -0
  167. package/dist/types/Services/User/UserFromLocalStorage.d.ts +6 -0
  168. package/dist/types/Services/User/UserTranslation.d.ts +3 -6
  169. package/dist/types/Services/assets/GetImageService.d.ts +14 -0
  170. package/dist/types/Services/automated/automated-concept-connection.d.ts +7 -0
  171. package/dist/types/Services/cacheService.d.ts +1 -0
  172. package/dist/types/Validator/constant.d.ts +3 -0
  173. package/dist/types/Validator/interface.d.ts +19 -0
  174. package/dist/types/Validator/utils.d.ts +7 -0
  175. package/dist/types/Validator/validator.d.ts +37 -0
  176. package/dist/types/Visualize/ConceptCircle.d.ts +35 -0
  177. package/dist/types/Visualize/ConceptCircleList.d.ts +9 -0
  178. package/dist/types/Visualize/ConnectionLine.d.ts +21 -0
  179. package/dist/types/Visualize/ConnectionLineList.d.ts +6 -0
  180. package/dist/types/Visualize/drawExistingConcepts.d.ts +8 -0
  181. package/dist/types/Visualize/helper.d.ts +15 -0
  182. package/dist/types/Visualize/index.d.ts +0 -0
  183. package/dist/types/Widgets/BaseObserver.d.ts +22 -0
  184. package/dist/types/Widgets/BaseWidget.d.ts +24 -0
  185. package/dist/types/Widgets/BuilderSpeceficFunctions.d.ts +2 -0
  186. package/dist/types/Widgets/BuilderStatefulWidget.d.ts +42 -0
  187. package/dist/types/Widgets/CacheWidget.service.d.ts +17 -0
  188. package/dist/types/Widgets/NormalizeStyles.service.d.ts +1 -0
  189. package/dist/types/Widgets/RenderPage.service.d.ts +12 -0
  190. package/dist/types/Widgets/RenderWidgetLibrary.service.d.ts +14 -0
  191. package/dist/types/Widgets/RenderWidgetService.d.ts +50 -0
  192. package/dist/types/Widgets/StatefulWidget.d.ts +102 -0
  193. package/dist/types/Widgets/WidgetBuild.d.ts +4 -0
  194. package/dist/types/Widgets/WidgetTree.d.ts +29 -0
  195. package/dist/types/Widgets/mainView.class.d.ts +6 -0
  196. package/dist/types/WrapperFunctions/DepenedencyObserver.d.ts +73 -0
  197. package/dist/types/WrapperFunctions/GetCompositionListObservable.d.ts +19 -0
  198. package/dist/types/WrapperFunctions/GetCompositionObservable.d.ts +13 -0
  199. package/dist/types/WrapperFunctions/GetLinkListObservable.d.ts +28 -0
  200. package/dist/types/WrapperFunctions/GetLinkObservable.d.ts +32 -0
  201. package/dist/types/WrapperFunctions/RecursiveSearchObservable.d.ts +37 -0
  202. package/dist/types/WrapperFunctions/SchemaQueryObservable.d.ts +9 -11
  203. package/dist/types/WrapperFunctions/SearchLinkMultipleAllObservable.d.ts +15 -0
  204. package/dist/types/app.d.ts +128 -21
  205. package/dist/types/prototype/getPrototype.service.d.ts +2 -0
  206. package/dist/types/prototype/prototype.service.d.ts +25 -0
  207. package/dist/types/service-worker.d.ts +1 -0
  208. package/package.json +1 -1
  209. package/dist/bundle.js +0 -2
  210. package/dist/bundle.js.LICENSE.txt +0 -1
  211. package/dist/types/Services/AccessControl/AccessControlCacheService.d.ts +0 -19
  212. package/dist/types/Services/AccessControl/AccessControlService.d.ts +0 -4
  213. package/dist/types/Services/AccessControl/PermissionSet.d.ts +0 -8
  214. package/dist/types/Services/Delete/GetAllConnectionByType.d.ts +0 -16
  215. package/dist/types/Services/MakeTheName.d.ts +0 -2
  216. package/dist/types/Services/auth/AuthService.d.ts +0 -1
  217. /package/dist/types/{Services/MakeTheLocalConcept.d.ts → Middleware/ErrorHandling.d.ts} +0 -0
@@ -1,16 +0,0 @@
1
- import { Connection } from "../../app";
2
- /**
3
- * This function returns all the connections from the ofTheConceptId and connection type
4
- * @param id ofTheConceptId
5
- * @param linker the connection type
6
- * @param reverse if you put in reverse true then the reverse connections are returned.
7
- * @returns Array of connections
8
- */
9
- export declare function GetAllTheConnectionsByTypeAndOfTheConcept(id: number, linker: string, reverse?: boolean): Promise<Connection[]>;
10
- /**
11
- * This function returns all the connections from the ofTheConceptId with toTheConceptId and linkers as given, the reverse is also true.
12
- * @param id ofTheConceptId
13
- * @param linker the connection type
14
- * @returns Array of connections
15
- */
16
- export declare function GiveConnection(ofTheConceptId: number, toTheConceptId: number, linker: string, reverse?: boolean): Promise<Connection[]>;
@@ -1,2 +0,0 @@
1
- import { Concept } from "../DataStructures/Concept";
2
- export declare function MakeTheName(theCharacterData: string, userId: number, securityId: number, securityUserId: number, accessId: number, accessUserId: number, sessionInformationId: number, sessionInformationUserId: number, typeId: number, typeUserId: number, existingConcept: Concept): Promise<Concept>;
@@ -1 +0,0 @@
1
- export declare const getServerJwtToken: () => string;