mftsccs-browser 2.1.239-dev → 2.1.240-dev

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 (272) hide show
  1. package/dist/main.bundle.js +404 -95
  2. package/dist/main.bundle.js.map +1 -1
  3. package/dist/serviceWorker.bundle.js +398 -94
  4. package/dist/serviceWorker.bundle.js.map +1 -1
  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/CreateTheCharacter.d.ts +24 -0
  8. package/dist/types/Api/Create/CreateTheConceptApi.d.ts +20 -0
  9. package/dist/types/Api/Create/CreateTheConnectionApi.d.ts +18 -0
  10. package/dist/types/Api/Create/CreateTheGhostConceptApi.d.ts +28 -0
  11. package/dist/types/Api/Create/CreateTheGhostConnectionApi.d.ts +18 -0
  12. package/dist/types/Api/Create/CreateTheTextData.d.ts +18 -0
  13. package/dist/types/Api/Delete/DeleteConceptInBackend.d.ts +14 -0
  14. package/dist/types/Api/Delete/DeleteUserInBackend.d.ts +19 -0
  15. package/dist/types/Api/DeleteConnectionBulkApi.d.ts +20 -0
  16. package/dist/types/Api/DeleteTheConcept.d.ts +20 -0
  17. package/dist/types/Api/DeleteTheConnection.d.ts +20 -0
  18. package/dist/types/Api/GetAiData.d.ts +10 -0
  19. package/dist/types/Api/GetAllConceptsByType.d.ts +12 -0
  20. package/dist/types/Api/GetAllConnectionsOfComposition.d.ts +23 -0
  21. package/dist/types/Api/GetAllConnectionsOfCompositionBulk.d.ts +23 -0
  22. package/dist/types/Api/GetAllLinkerConnectionsFromTheConcept.d.ts +12 -0
  23. package/dist/types/Api/GetAllLinkerConnectionsToTheConcept.d.ts +12 -0
  24. package/dist/types/Api/GetCharacterDataByCharacter.d.ts +12 -0
  25. package/dist/types/Api/GetCompositionConnectionsBetweenTwoConcepts.d.ts +13 -0
  26. package/dist/types/Api/GetConcept.d.ts +6 -0
  27. package/dist/types/Api/GetConceptBulk.d.ts +20 -0
  28. package/dist/types/Api/GetConceptByCharacterAndType.d.ts +15 -0
  29. package/dist/types/Api/GetConceptByCharacterValue.d.ts +12 -0
  30. package/dist/types/Api/GetConnection.d.ts +15 -0
  31. package/dist/types/Api/GetConnectionBulk.d.ts +7 -0
  32. package/dist/types/Api/GetConnectionOfTheConcept.d.ts +15 -0
  33. package/dist/types/Api/GetConnectionToTheConcept.d.ts +17 -0
  34. package/dist/types/Api/GetConnections/GetConnectionsBetweenApi.d.ts +40 -0
  35. package/dist/types/Api/GetConnections/GetConnectionsByTypeApi.d.ts +15 -0
  36. package/dist/types/Api/GetInstanceConceptByCharacterType.d.ts +9 -0
  37. package/dist/types/Api/GetReservedConnectionIds.d.ts +10 -0
  38. package/dist/types/Api/GetReservedIds.d.ts +10 -0
  39. package/dist/types/Api/Images/GetImages.d.ts +15 -0
  40. package/dist/types/Api/Local/GetLocalConceptByCharacterValue.d.ts +13 -0
  41. package/dist/types/Api/Login.d.ts +78 -0
  42. package/dist/types/Api/MakeTheNameInBackend.d.ts +14 -0
  43. package/dist/types/Api/MakeTheTypeConceptApi.d.ts +9 -0
  44. package/dist/types/Api/Prototype/Selector.d.ts +26 -0
  45. package/dist/types/Api/RecursiveSearch.d.ts +67 -0
  46. package/dist/types/Api/Search/FreeschemaQueryApi.d.ts +18 -0
  47. package/dist/types/Api/Search/Search.d.ts +73 -0
  48. package/dist/types/Api/Search/SearchInternalApi.d.ts +28 -0
  49. package/dist/types/Api/Search/SearchLinkMultipleApi.d.ts +15 -0
  50. package/dist/types/Api/Search/SearchWithLinker.d.ts +16 -0
  51. package/dist/types/Api/Search/SearchWithTypeAndLinker.d.ts +14 -0
  52. package/dist/types/Api/SearchConcept/GetConceptByCharacterAndCategoryApi.d.ts +12 -0
  53. package/dist/types/Api/SearchConcept/GetConceptByCharacterAndCategoryDirect.d.ts +13 -0
  54. package/dist/types/Api/SearchConcept/GetTypeConceptByBulk.d.ts +15 -0
  55. package/dist/types/Api/Session/CreateSession.d.ts +16 -0
  56. package/dist/types/Api/Session/CreateSessionVisit.d.ts +12 -0
  57. package/dist/types/Api/Signin.d.ts +24 -0
  58. package/dist/types/Api/Signup.d.ts +61 -0
  59. package/dist/types/Api/Translate/TranslateLocalToReal.d.ts +12 -0
  60. package/dist/types/Api/View/ViewInternalDataApi.d.ts +15 -0
  61. package/dist/types/Constants/AccessConstants.d.ts +3 -0
  62. package/dist/types/Constants/ApiConstants.d.ts +23 -0
  63. package/dist/types/Constants/FormatConstants.d.ts +8 -0
  64. package/dist/types/Constants/ckeditorCSS.d.ts +1 -0
  65. package/dist/types/Constants/general.const.d.ts +6 -0
  66. package/dist/types/Constants/page.const.d.ts +5 -0
  67. package/dist/types/DataStructures/BaseUrl.d.ts +94 -0
  68. package/dist/types/DataStructures/BinaryCharacterTree.d.ts +16 -0
  69. package/dist/types/DataStructures/BinaryTree.d.ts +77 -0
  70. package/dist/types/DataStructures/BinaryTypeTree.d.ts +17 -0
  71. package/dist/types/DataStructures/CharacterRepository.d.ts +8 -0
  72. package/dist/types/DataStructures/Composition/Composition.d.ts +14 -0
  73. package/dist/types/DataStructures/Composition/CompositionBinaryTree.d.ts +10 -0
  74. package/dist/types/DataStructures/Composition/CompositionNode.d.ts +21 -0
  75. package/dist/types/DataStructures/Concept.d.ts +25 -0
  76. package/dist/types/DataStructures/ConceptData.d.ts +30 -0
  77. package/dist/types/DataStructures/ConceptsToDraw.d.ts +11 -0
  78. package/dist/types/DataStructures/Connection.d.ts +23 -0
  79. package/dist/types/DataStructures/ConnectionBinaryTree/ConnectionBinaryTree.d.ts +81 -0
  80. package/dist/types/DataStructures/ConnectionBinaryTree/ConnectionNode.d.ts +27 -0
  81. package/dist/types/DataStructures/ConnectionBinaryTree/ConnectionOfNode.d.ts +10 -0
  82. package/dist/types/DataStructures/ConnectionBinaryTree/ConnectionOfTheTree.d.ts +24 -0
  83. package/dist/types/DataStructures/ConnectionBinaryTree/ConnectionTypeNode.d.ts +10 -0
  84. package/dist/types/DataStructures/ConnectionBinaryTree/ConnectionTypeTree.d.ts +20 -0
  85. package/dist/types/DataStructures/ConnectionBinaryTree/NodePrimitive.d.ts +15 -0
  86. package/dist/types/DataStructures/ConnectionByType/GetConnectionByType.d.ts +4 -0
  87. package/dist/types/DataStructures/ConnectionData.d.ts +26 -0
  88. package/dist/types/DataStructures/Count/CountInfo.d.ts +6 -0
  89. package/dist/types/DataStructures/FetchConnection.d.ts +64 -0
  90. package/dist/types/DataStructures/FilterSearch.d.ts +9 -0
  91. package/dist/types/DataStructures/IdentifierFlags.d.ts +11 -0
  92. package/dist/types/DataStructures/Local/LConcept.d.ts +23 -0
  93. package/dist/types/DataStructures/Local/LConnection.d.ts +18 -0
  94. package/dist/types/DataStructures/Local/LNode.d.ts +29 -0
  95. package/dist/types/DataStructures/Local/LocalBinaryCharacterTree.d.ts +13 -0
  96. package/dist/types/DataStructures/Local/LocalBinaryTree.d.ts +13 -0
  97. package/dist/types/DataStructures/Local/LocalBinaryTypeTree.d.ts +13 -0
  98. package/dist/types/DataStructures/Local/LocalConceptData.d.ts +21 -0
  99. package/dist/types/DataStructures/Local/LocalConnectionData.d.ts +20 -0
  100. package/dist/types/DataStructures/Local/LocalGhostIdTree.d.ts +11 -0
  101. package/dist/types/DataStructures/Local/LocalId.d.ts +19 -0
  102. package/dist/types/DataStructures/Local/LocalSyncData.d.ts +33 -0
  103. package/dist/types/DataStructures/Node.d.ts +30 -0
  104. package/dist/types/DataStructures/PatcherStructure.d.ts +8 -0
  105. package/dist/types/DataStructures/Prototype/Prototype.d.ts +19 -0
  106. package/dist/types/DataStructures/Prototype/PrototypeOption.d.ts +4 -0
  107. package/dist/types/DataStructures/Prototype/QuerySelector.d.ts +4 -0
  108. package/dist/types/DataStructures/ReservedIds.d.ts +10 -0
  109. package/dist/types/DataStructures/Responses/ErrorResponse.d.ts +74 -0
  110. package/dist/types/DataStructures/Responses/StandardResponses.d.ts +6 -0
  111. package/dist/types/DataStructures/Returner.d.ts +7 -0
  112. package/dist/types/DataStructures/Search/FreeschemaQuery.d.ts +25 -0
  113. package/dist/types/DataStructures/Search/SearchStructure.d.ts +10 -0
  114. package/dist/types/DataStructures/SearchQuery.d.ts +17 -0
  115. package/dist/types/DataStructures/Security/SecureStorage.d.ts +14 -0
  116. package/dist/types/DataStructures/Security/TokenStorage.d.ts +24 -0
  117. package/dist/types/DataStructures/Session/SessionData.d.ts +13 -0
  118. package/dist/types/DataStructures/SettingData.d.ts +5 -0
  119. package/dist/types/DataStructures/Settings.d.ts +4 -0
  120. package/dist/types/DataStructures/SigninModel.d.ts +4 -0
  121. package/dist/types/DataStructures/SignupModel.d.ts +4 -0
  122. package/dist/types/DataStructures/SyncData.d.ts +14 -0
  123. package/dist/types/DataStructures/TheCharacter.d.ts +13 -0
  124. package/dist/types/DataStructures/TheTexts.d.ts +14 -0
  125. package/dist/types/DataStructures/TypeLibrary.d.ts +19 -0
  126. package/dist/types/DataStructures/TypeNode.d.ts +18 -0
  127. package/dist/types/DataStructures/User/UserBinaryTree.d.ts +13 -0
  128. package/dist/types/DataStructures/User/UserNode.d.ts +18 -0
  129. package/dist/types/DataStructures/WidgetCache/WidgetCache.d.ts +10 -0
  130. package/dist/types/DataStructures/WidgetCache/WidgetDetails.d.ts +9 -0
  131. package/dist/types/DataStructures/WidgetCache/WidgetNode.d.ts +18 -0
  132. package/dist/types/DataStructures/environments/environments.d.ts +48 -0
  133. package/dist/types/Database/CacheDatabase.d.ts +57 -0
  134. package/dist/types/Database/IndexUpdate.d.ts +47 -0
  135. package/dist/types/Database/NoIndexDb.d.ts +9 -0
  136. package/dist/types/Database/indexdblocal.d.ts +43 -0
  137. package/dist/types/Database/indexeddb.d.ts +58 -0
  138. package/dist/types/Helpers/CheckIfExists.d.ts +9 -0
  139. package/dist/types/Helpers/RemoveFromArray.d.ts +5 -0
  140. package/dist/types/Helpers/UniqueInsert.d.ts +1 -0
  141. package/dist/types/Middleware/ApplicationMonitor.d.ts +14 -0
  142. package/dist/types/Middleware/logger.service.d.ts +144 -0
  143. package/dist/types/ServiceWorker/actions/connectionActions.d.ts +2 -0
  144. package/dist/types/ServiceWorker/actions/createActions.d.ts +2 -0
  145. package/dist/types/ServiceWorker/actions/deleteActions.d.ts +2 -0
  146. package/dist/types/ServiceWorker/actions/getActions.d.ts +2 -0
  147. package/dist/types/ServiceWorker/actions/index.d.ts +15 -0
  148. package/dist/types/ServiceWorker/actions/searchActions.d.ts +2 -0
  149. package/dist/types/ServiceWorker/actions/syncActions.d.ts +2 -0
  150. package/dist/types/ServiceWorker/actions/updateActions.d.ts +2 -0
  151. package/dist/types/ServiceWorker/index.d.ts +11 -0
  152. package/dist/types/Services/CacheClear.d.ts +7 -0
  153. package/dist/types/Services/CheckForConnectionDeletion.d.ts +3 -0
  154. package/dist/types/Services/Common/DecodeCountInfo.d.ts +3 -0
  155. package/dist/types/Services/Common/DelayFunction.d.ts +7 -0
  156. package/dist/types/Services/Common/ErrorPosting.d.ts +10 -0
  157. package/dist/types/Services/Common/MergeArrays.d.ts +7 -0
  158. package/dist/types/Services/Common/RegexFunction.d.ts +1 -0
  159. package/dist/types/Services/Common/RemoveAllChild.d.ts +1 -0
  160. package/dist/types/Services/Composition/BuildComposition.d.ts +3 -0
  161. package/dist/types/Services/Composition/CompositionCache.d.ts +4 -0
  162. package/dist/types/Services/Composition/CreateCompositionCache.d.ts +3 -0
  163. package/dist/types/Services/ConceptFinding/GetConceptByCharacterAndCategory.d.ts +5 -0
  164. package/dist/types/Services/Conversion/ConvertConcepts.d.ts +5 -0
  165. package/dist/types/Services/CreateBinaryTreeFromData.d.ts +5 -0
  166. package/dist/types/Services/CreateConnection/CreateConnectionEntity.d.ts +2 -0
  167. package/dist/types/Services/CreateConnectionBetweenTwoConcepts.d.ts +5 -0
  168. package/dist/types/Services/CreateDefaultConcept.d.ts +3 -0
  169. package/dist/types/Services/CreateTheComposition.d.ts +1 -0
  170. package/dist/types/Services/CreateTheConcept.d.ts +122 -0
  171. package/dist/types/Services/CreateTheConnection.d.ts +63 -0
  172. package/dist/types/Services/CreateTheConnectionGeneral.d.ts +2 -0
  173. package/dist/types/Services/DeleteConcept.d.ts +2 -0
  174. package/dist/types/Services/DeleteConnection.d.ts +2 -0
  175. package/dist/types/Services/DeleteConnectionByType.d.ts +22 -0
  176. package/dist/types/Services/FindConeceptsFromConnection.d.ts +6 -0
  177. package/dist/types/Services/FindConnectionsOfCompositionBulkInMemory.d.ts +1 -0
  178. package/dist/types/Services/GetComposition.d.ts +205 -0
  179. package/dist/types/Services/GetCompositionBulk.d.ts +100 -0
  180. package/dist/types/Services/GetCompositionList.d.ts +7 -0
  181. package/dist/types/Services/GetConceptByCharacter.d.ts +2 -0
  182. package/dist/types/Services/GetConnectionBetweenTwoConceptsLinker.d.ts +11 -0
  183. package/dist/types/Services/GetConnections.d.ts +1 -0
  184. package/dist/types/Services/GetDataFromIndexDb.d.ts +2 -0
  185. package/dist/types/Services/GetLink.d.ts +3 -0
  186. package/dist/types/Services/GetLinkerConnectionFromConcept.d.ts +3 -0
  187. package/dist/types/Services/GetRelation.d.ts +3 -0
  188. package/dist/types/Services/GetTheConcept.d.ts +96 -0
  189. package/dist/types/Services/InitializeSystem.d.ts +2 -0
  190. package/dist/types/Services/Local/ConvertFromLConceptToConcept.d.ts +41 -0
  191. package/dist/types/Services/Local/ConvertFromLConnectionToConnection.d.ts +47 -0
  192. package/dist/types/Services/Local/CreateConnectionBetweenTwoConceptsLocal.d.ts +44 -0
  193. package/dist/types/Services/Local/CreateDefaultLConcept.d.ts +46 -0
  194. package/dist/types/Services/Local/CreateLocalBinaryTreeFromData.d.ts +34 -0
  195. package/dist/types/Services/Local/CreateTheCompositionLocal.d.ts +104 -0
  196. package/dist/types/Services/Local/CreateTheConceptLocal.d.ts +84 -0
  197. package/dist/types/Services/Local/CreateTheConnectionLocal.d.ts +140 -0
  198. package/dist/types/Services/Local/DeleteConceptLocal.d.ts +47 -0
  199. package/dist/types/Services/Local/GetCompositionListLocal.d.ts +37 -0
  200. package/dist/types/Services/Local/GetCompositionLocal.d.ts +97 -0
  201. package/dist/types/Services/Local/GetConceptByCharacterLocal.d.ts +56 -0
  202. package/dist/types/Services/Local/GetConnectionOfTheConceptLocal.d.ts +19 -0
  203. package/dist/types/Services/Local/GetRelationLocal.d.ts +21 -0
  204. package/dist/types/Services/Local/GetTheConceptLocal.d.ts +63 -0
  205. package/dist/types/Services/Local/MakeTheConceptLocal.d.ts +22 -0
  206. package/dist/types/Services/Local/MakeTheInstanceConceptLocal.d.ts +164 -0
  207. package/dist/types/Services/Local/MakeTheTypeLocal.d.ts +36 -0
  208. package/dist/types/Services/Local/UpdateCompositionLocal.d.ts +42 -0
  209. package/dist/types/Services/Logs/LogEvent.d.ts +1 -0
  210. package/dist/types/Services/Mail.d.ts +41 -0
  211. package/dist/types/Services/MakeTheCharacter.d.ts +2 -0
  212. package/dist/types/Services/MakeTheCharacterData.d.ts +2 -0
  213. package/dist/types/Services/MakeTheConcept.d.ts +2 -0
  214. package/dist/types/Services/MakeTheInstanceConcept.d.ts +15 -0
  215. package/dist/types/Services/MakeTheTimestamp.d.ts +1 -0
  216. package/dist/types/Services/MakeTheTypeConcept.d.ts +1 -0
  217. package/dist/types/Services/Mqtt/publishMessage.d.ts +1 -0
  218. package/dist/types/Services/Search/DataIdFormat.d.ts +32 -0
  219. package/dist/types/Services/Search/FormatData.d.ts +36 -0
  220. package/dist/types/Services/Search/JustIdFormat.d.ts +23 -0
  221. package/dist/types/Services/Search/NewFormat.d.ts +4 -0
  222. package/dist/types/Services/Search/SearchLinkInternal.d.ts +3 -0
  223. package/dist/types/Services/Search/SearchLinkMultiple.d.ts +55 -0
  224. package/dist/types/Services/Search/SearchWithTypeAndLinker.d.ts +82 -0
  225. package/dist/types/Services/Search/orderingConnections.d.ts +2 -0
  226. package/dist/types/Services/Security/GetRequestHeader.d.ts +6 -0
  227. package/dist/types/Services/SplitStrings.d.ts +1 -0
  228. package/dist/types/Services/Transaction/LocalTransaction.d.ts +117 -0
  229. package/dist/types/Services/UpdateComposition.d.ts +2 -0
  230. package/dist/types/Services/Upload.d.ts +111 -0
  231. package/dist/types/Services/User/UserFromLocalStorage.d.ts +10 -0
  232. package/dist/types/Services/User/UserTranslation.d.ts +3 -0
  233. package/dist/types/Services/View/ViewInternalData.d.ts +1 -0
  234. package/dist/types/Services/assets/GetImageService.d.ts +14 -0
  235. package/dist/types/Services/automated/automated-concept-connection.d.ts +7 -0
  236. package/dist/types/Services/cacheService.d.ts +1 -0
  237. package/dist/types/Validator/constant.d.ts +3 -0
  238. package/dist/types/Validator/interface.d.ts +19 -0
  239. package/dist/types/Validator/utils.d.ts +7 -0
  240. package/dist/types/Validator/validator.d.ts +37 -0
  241. package/dist/types/Visualize/ConceptCircle.d.ts +35 -0
  242. package/dist/types/Visualize/ConceptCircleList.d.ts +9 -0
  243. package/dist/types/Visualize/ConnectionLine.d.ts +21 -0
  244. package/dist/types/Visualize/ConnectionLineList.d.ts +6 -0
  245. package/dist/types/Visualize/drawExistingConcepts.d.ts +8 -0
  246. package/dist/types/Visualize/helper.d.ts +15 -0
  247. package/dist/types/Widgets/BaseObserver.d.ts +25 -0
  248. package/dist/types/Widgets/BaseWidget.d.ts +37 -0
  249. package/dist/types/Widgets/BuilderSpeceficFunctions.d.ts +11 -0
  250. package/dist/types/Widgets/BuilderStatefulWidget.d.ts +392 -0
  251. package/dist/types/Widgets/CacheWidget.service.d.ts +77 -0
  252. package/dist/types/Widgets/NormalizeStyles.service.d.ts +10 -0
  253. package/dist/types/Widgets/RenderPage.service.d.ts +17 -0
  254. package/dist/types/Widgets/RenderWidgetLibrary.service.d.ts +22 -0
  255. package/dist/types/Widgets/RenderWidgetService.d.ts +187 -0
  256. package/dist/types/Widgets/StatefulWidget.d.ts +167 -0
  257. package/dist/types/Widgets/WidgetBuild.d.ts +45 -0
  258. package/dist/types/Widgets/WidgetCacheManager.d.ts +108 -0
  259. package/dist/types/Widgets/WidgetTree.d.ts +61 -0
  260. package/dist/types/WrapperFunctions/DepenedencyObserver.d.ts +95 -0
  261. package/dist/types/WrapperFunctions/GetCompositionListObservable.d.ts +51 -0
  262. package/dist/types/WrapperFunctions/GetCompositionObservable.d.ts +35 -0
  263. package/dist/types/WrapperFunctions/GetLinkListObservable.d.ts +57 -0
  264. package/dist/types/WrapperFunctions/GetLinkObservable.d.ts +50 -0
  265. package/dist/types/WrapperFunctions/QueryCacheManager.d.ts +107 -0
  266. package/dist/types/WrapperFunctions/RecursiveSearchObservable.d.ts +55 -0
  267. package/dist/types/WrapperFunctions/SchemaQueryObservable.d.ts +60 -0
  268. package/dist/types/WrapperFunctions/SearchLinkMultipleAllObservable.d.ts +36 -0
  269. package/dist/types/app.d.ts +381 -0
  270. package/dist/types/prototype/prototype.service.d.ts +25 -0
  271. package/dist/types/service-worker.d.ts +1 -0
  272. package/package.json +1 -1
@@ -0,0 +1,381 @@
1
+ export { init, updateAccessToken };
2
+ export { SearchLinkMultipleApi } from './Api/Search/SearchLinkMultipleApi';
3
+ export { SplitStrings } from './Services/SplitStrings';
4
+ export { GetCompositionList, GetCompositionListWithId } from './Services/GetCompositionList';
5
+ export { GetCompositionListLocal, GetCompositionListLocalWithId } from './Services/Local/GetCompositionListLocal';
6
+ export { GetAllConnectionsOfComposition } from './Api/GetAllConnectionsOfComposition';
7
+ export { GetComposition, GetCompositionWithId, recursiveFetch, GetCompositionWithAllIds } from './Services/GetComposition';
8
+ export { GetCompositionLocal, GetCompositionLocalWithId } from './Services/Local/GetCompositionLocal';
9
+ export { default as CreateComposition } from './Services/CreateTheComposition';
10
+ export { CreateTheCompositionLocal } from './Services/Local/CreateTheCompositionLocal';
11
+ export { CreateConnectionBetweenTwoConcepts, CreateConnectionBetweenTwoConceptsGeneral } from './Services/CreateConnectionBetweenTwoConcepts';
12
+ export { default as GetTheConcept } from './Services/GetTheConcept';
13
+ export { default as MakeTheInstanceConcept } from './Services/MakeTheInstanceConcept';
14
+ export { MakeTheInstanceConceptLocal } from './Services/Local/MakeTheInstanceConceptLocal';
15
+ export { storeToDatabase, getFromDatabaseWithType, getObjectsFromIndexDb } from './Database/NoIndexDb';
16
+ export { createTheConnection as CreateTheConnection } from './Services/CreateTheConnection';
17
+ export { default as GetConceptByCharacter } from './Services/GetConceptByCharacter';
18
+ export { GetLink, GetLinkRaw } from './Services/GetLink';
19
+ export { CreateDefaultConcept } from './Services/CreateDefaultConcept';
20
+ export { MakeTheTypeConceptLocal } from './Services/Local/MakeTheTypeLocal';
21
+ export { MakeTheTypeConceptApi } from './Api/MakeTheTypeConceptApi';
22
+ export { GetLinkerConnectionFromConcepts, GetLinkerConnectionToConcepts } from './Services/GetLinkerConnectionFromConcept';
23
+ export { DeleteConceptById } from './Services/DeleteConcept';
24
+ export { DeleteConnectionById, DeleteConnectionByIdBulk } from './Services/DeleteConnection';
25
+ export { TrashTheConcept } from './Api/Delete/DeleteConceptInBackend';
26
+ export { GetConnectionById } from './Services/GetConnections';
27
+ export { MakeTheTimestamp } from './Services/MakeTheTimestamp';
28
+ export { RecursiveSearchApi, RecursiveSearchApiWithInternalConnections, RecursiveSearchApiRaw, RecursiveSearchApiRawFullLinker, RecursiveSearchApiNewRawFullLinker } from './Api/RecursiveSearch';
29
+ export { GetCompositionBulkWithDataId, GetCompositionFromConnectionsWithDataIdFromConnections, GetCompositionFromConnectionsWithIndexFromConnections, GetCompositionBulk, GetCompositionFromConnectionsWithDataId } from './Services/GetCompositionBulk';
30
+ export { uploadAttachment, getR2PresignedUploadUrl, getUploadFileLimit, uploadFile, uploadImage, uploadImageV2, uploadR2Storage, uploadToR2PresignedUrl, uploadWithR2PresignedUrl, validDocumentFormats, validImageFormats, } from './Services/Upload';
31
+ export type { R2PresignedUploadOptions, R2PresignedUploadResult, R2PresignedUploadUrlData, R2PresignedUploadUrlRequest, R2UploadData, UploadResponse, } from './Services/Upload';
32
+ export { GetConceptBulk } from './Api/GetConceptBulk';
33
+ export { GetConnectionBulk } from './Api/GetConnectionBulk';
34
+ export { GetAllConnectionsOfCompositionBulk } from './Api/GetAllConnectionsOfCompositionBulk';
35
+ export { LoginToBackend } from './Api/Login';
36
+ export { GetConnectionOfTheConcept } from './Api/GetConnectionOfTheConcept';
37
+ export { default as Signup } from './Api/Signup';
38
+ export { default as Signin } from './Api/Signin';
39
+ export { SignupEntity } from './Api/Signup';
40
+ export { default as UpdateComposition } from './Services/UpdateComposition';
41
+ export { SearchAllConcepts } from './Api/Search/Search';
42
+ export { SearchWithLinker } from './Api/Search/SearchWithLinker';
43
+ export { GetCompositionWithCache, GetCompositionWithDataIdWithCache, GetCompositionWithDataIdBulk } from './Services/Composition/CompositionCache';
44
+ export { CreateSession } from './Api/Session/CreateSession';
45
+ export { CreateSessionVisit } from './Api/Session/CreateSessionVisit';
46
+ export {} from './Api/GetConceptByCharacterAndType';
47
+ export { GetRelation, GetRelationRaw, GetRelationNew } from './Services/GetRelation';
48
+ export { recursiveFetchNew } from './Services/Composition/BuildComposition';
49
+ export { CreateTheCompositionWithCache } from './Services/Composition/CreateCompositionCache';
50
+ export { CreateDefaultLConcept } from './Services/Local/CreateDefaultLConcept';
51
+ export { CreateTheConnectionGeneral } from './Services/CreateTheConnectionGeneral';
52
+ export { CreateTheConnectionLocal, CreateConnection } from './Services/Local/CreateTheConnectionLocal';
53
+ export { GetCompositionListAll, GetCompositionListAllWithId, GetCompositionListWithIdUpdated } from './Services/GetCompositionList';
54
+ export { GetUserGhostId, AddGhostConcept } from './Services/User/UserTranslation';
55
+ export { SearchLinkMultipleAll, FormatFromConnections } from './Services/Search/SearchLinkMultiple';
56
+ export { GetTheConceptLocal } from './Services/Local/GetTheConceptLocal';
57
+ export { UpdateCompositionLocal } from './Services/Local/UpdateCompositionLocal';
58
+ export { GetCompositionFromConnectionsWithDataIdInObject, GetCompositionFromConnectionsWithIndex, GetCompositionFromConnectionsWithDataIdIndex } from './Services/GetCompositionBulk';
59
+ export { GetRelationLocal } from './Services/Local/GetRelationLocal';
60
+ export { GetConceptByCharacterAndCategoryLocal } from './Services/Local/GetConceptByCharacterLocal';
61
+ export { ViewInternalData } from './Services/View/ViewInternalData';
62
+ export { ViewInternalDataApi } from './Api/View/ViewInternalDataApi';
63
+ export { convertFromLConceptToConcept, convertFromConceptToLConcept } from './Services/Conversion/ConvertConcepts';
64
+ export { SearchLinkInternal, SearchLinkInternalAll } from './Services/Search/SearchLinkInternal';
65
+ export { CreateConnectionBetweenTwoConceptsLocal } from './Services/Local/CreateConnectionBetweenTwoConceptsLocal';
66
+ export { DeleteConceptLocal } from './Services/Local/DeleteConceptLocal';
67
+ export { GetConnectionBetweenTwoConceptsLinker } from './Services/GetConnectionBetweenTwoConceptsLinker';
68
+ export { DelayFunctionExecution } from './Services/Common/DelayFunction';
69
+ export { GetCompositionWithIdAndDateFromMemory, GetCompositionFromMemoryWithConnections } from './Services/GetComposition';
70
+ export { GetConceptByCharacterAndType } from './Api/GetConceptByCharacterAndType';
71
+ export { GetInstanceConceptByCharacterType } from './Api/GetInstanceConceptByCharacterType';
72
+ export { GetConnectionDataPrefetch } from './Services/GetCompositionBulk';
73
+ export { FormatFromConnectionsAltered } from './Services/Search/SearchLinkMultiple';
74
+ export { NORMAL, JUSTDATA, DATAID, DATAIDDATE, RAW, ALLID, LISTNORMAL, DATAV2 } from './Constants/FormatConstants';
75
+ export { PRIVATE, PUBLIC, ADMIN } from './Constants/AccessConstants';
76
+ export { SearchWithTypeAndLinkerApi } from './Api/Search/SearchWithTypeAndLinker';
77
+ export { DependencyObserver } from './WrapperFunctions/DepenedencyObserver';
78
+ export { SearchLinkMultipleAllObservable, searchLinkMultipleListener } from './WrapperFunctions/SearchLinkMultipleAllObservable';
79
+ export { GetCompositionListener } from './WrapperFunctions/GetCompositionObservable';
80
+ export { GetCompositionListListener } from './WrapperFunctions/GetCompositionListObservable';
81
+ export { SearchWithTypeAndLinker } from './Services/Search/SearchWithTypeAndLinker';
82
+ export { GetLinkListener } from './WrapperFunctions/GetLinkObservable';
83
+ export { RecursiveSearchListener } from './WrapperFunctions/RecursiveSearchObservable';
84
+ export { GetLinkListListener } from './WrapperFunctions/GetLinkListObservable';
85
+ export { GetConnectionTypeForCount } from './Services/Common/DecodeCountInfo';
86
+ export { orderTheConnections } from './Services/Search/orderingConnections';
87
+ export { SyncData } from './DataStructures/SyncData';
88
+ export { Concept } from './DataStructures/Concept';
89
+ export { LConcept } from './DataStructures/Local/LConcept';
90
+ export { LConnection } from './DataStructures/Local/LConnection';
91
+ export { Connection } from './DataStructures/Connection';
92
+ export { ConceptsData } from './DataStructures/ConceptData';
93
+ export { ConnectionData } from './DataStructures/ConnectionData';
94
+ export { BinaryTree } from './DataStructures/BinaryTree';
95
+ export { SearchQuery } from './DataStructures/SearchQuery';
96
+ export { SignupModel } from './DataStructures/SignupModel';
97
+ export { SigninModel } from './DataStructures/SigninModel';
98
+ export { FreeschemaResponse } from './DataStructures/Responses/StandardResponses';
99
+ export { PatcherStructure } from './DataStructures/PatcherStructure';
100
+ export { SessionData } from './DataStructures/Session/SessionData';
101
+ export { Composition } from './DataStructures/Composition/Composition';
102
+ export { CompositionBinaryTree } from './DataStructures/Composition/CompositionBinaryTree';
103
+ export { CompositionNode } from './DataStructures/Composition/CompositionNode';
104
+ export { LocalSyncData } from './DataStructures/Local/LocalSyncData';
105
+ export { UserBinaryTree } from './DataStructures/User/UserBinaryTree';
106
+ export { FilterSearch } from './DataStructures/FilterSearch';
107
+ export { SearchStructure } from './DataStructures/Search/SearchStructure';
108
+ export { LocalConceptsData } from './DataStructures/Local/LocalConceptData';
109
+ export { Logger } from "./Middleware/logger.service";
110
+ export { sendEmail, sendPersonalEmail } from "./Services/Mail";
111
+ export type { RecaptchaOptions, SendEmailOptions } from "./Services/Mail";
112
+ export { BuilderStatefulWidget } from "./Widgets/BuilderStatefulWidget";
113
+ export { LocalTransaction } from "./Services/Transaction/LocalTransaction";
114
+ export { InnerActions } from "./Constants/general.const";
115
+ export { Anomaly } from './Anomaly/anomaly';
116
+ export { Validator } from './Validator/validator';
117
+ export { createFormFieldData } from './Validator/utils';
118
+ export { BaseUrl } from './DataStructures/BaseUrl';
119
+ export { StatefulWidget } from './Widgets/StatefulWidget';
120
+ export { DeleteConnectionByType, DeleteConnectionByTypeBulk, GetAllTheConnectionsByTypeAndOfTheConcept } from './Services/DeleteConnectionByType';
121
+ export { GetConnectionsBetweenApi } from './Api/GetConnections/GetConnectionsBetweenApi';
122
+ export { FetchConnection, FetchConnectionQuery, buildFetchConnection } from './DataStructures/FetchConnection';
123
+ export { FreeschemaQuery } from './DataStructures/Search/FreeschemaQuery';
124
+ export { FreeschemaQueryApi } from './Api/Search/FreeschemaQueryApi';
125
+ export { SchemaQueryListener, SchemaQuery } from './WrapperFunctions/SchemaQueryObservable';
126
+ export { WidgetTree } from './Widgets/WidgetTree';
127
+ export { DeleteUser } from './Services/DeleteConcept';
128
+ export { AccessTracker } from './AccessTracker/accessTracker';
129
+ export { CreateConnectionBetweenEntityLocal } from './Services/CreateConnection/CreateConnectionEntity';
130
+ export { BuildWidgetFromId } from './Widgets/WidgetBuild';
131
+ export { clearAllCaches } from './Services/CacheClear';
132
+ export { removeAllChildren } from './Services/Common/RemoveAllChild';
133
+ export { getUserDetails, getUserDetailsWithRefresh } from './Services/User/UserFromLocalStorage';
134
+ export { TokenStorage } from './DataStructures/Security/TokenStorage';
135
+ export { CountInfo } from './DataStructures/Count/CountInfo';
136
+ export { LogEvent } from './Services/Logs/LogEvent';
137
+ export { Selector } from './Api/Prototype/Selector';
138
+ export { importLatestWidget, importRecentWidget, renderImportedWidget, renderLatestWidget, renderPage, renderWidget, convertWidgetTreeToWidgetWithWrapper, getWidgetFromId, convertWidgetTreeToWidget, unwrapContainers, getWidgetBulkFromId } from './Widgets/RenderWidgetService';
139
+ export { CreateData } from './Services/automated/automated-concept-connection';
140
+ export { Prototype } from './DataStructures/Prototype/Prototype';
141
+ export { Environments } from './DataStructures/environments/environments';
142
+ export { createPrototypeLocal } from './prototype/prototype.service';
143
+ export { GetImageApi } from './Api/Images/GetImages';
144
+ export { GetFreeschemaImage, GetFreeschemaImageUrl } from './Services/assets/GetImageService';
145
+ type listeners = {
146
+ listenerId: string | number;
147
+ callback: any;
148
+ createdAt: number;
149
+ };
150
+ export declare var serviceWorker: any;
151
+ export declare let subscribedListeners: listeners[];
152
+ export declare let hasActivatedSW: boolean;
153
+ export declare function setHasActivatedSW(value: boolean): void;
154
+ /**
155
+ * Updates the JWT access token used for authenticated API requests.
156
+ *
157
+ * This function should be called after user authentication to set or update the bearer token
158
+ * that will be used for all subsequent authenticated operations. The token is stored in
159
+ * TokenStorage and automatically included in API request headers.
160
+ *
161
+ * **When to Use:**
162
+ * - After successful login (LoginToBackend or Signin)
163
+ * - When refreshing an expired token
164
+ * - When switching between user sessions
165
+ * - When restoring a saved session on app reload
166
+ *
167
+ * **Token Flow:**
168
+ * 1. User logs in via LoginToBackend() or Signin()
169
+ * 2. Backend returns JWT token
170
+ * 3. Call updateAccessToken() with the token
171
+ * 4. Token is stored in memory (TokenStorage.BearerAccessToken)
172
+ * 5. All API calls automatically use this token
173
+ * 6. If service worker enabled, token is synced to service worker
174
+ *
175
+ * **Security Notes:**
176
+ * - Token is stored in memory only (not persisted to disk)
177
+ * - Token is cleared on page refresh (unless you save/restore it)
178
+ * - Never expose token in logs or client-side code
179
+ * - Token should be refreshed before expiration
180
+ *
181
+ * @param accessToken - The JWT bearer token obtained from authentication.
182
+ * Format: "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9..."
183
+ * Pass empty string to clear the token (logout).
184
+ *
185
+ * @param session - Optional session information to sync with token.
186
+ * Reserved for future use. Currently not fully implemented.
187
+ *
188
+ * @returns void
189
+ *
190
+ * @example
191
+ * // After login, update token
192
+ * const loginResult = await LoginToBackend("user@example.com", "password");
193
+ * updateAccessToken(loginResult.data.token);
194
+ * console.log("Token updated - now authenticated");
195
+ *
196
+ * @example
197
+ * // Restore token from localStorage on app reload
198
+ * const savedToken = localStorage.getItem("authToken");
199
+ * if (savedToken) {
200
+ * updateAccessToken(savedToken);
201
+ * }
202
+ *
203
+ * @example
204
+ * // Clear token on logout
205
+ * updateAccessToken("");
206
+ * console.log("Token cleared - logged out");
207
+ *
208
+ * @example
209
+ * // Refresh expired token
210
+ * const newToken = await refreshTokenFromBackend();
211
+ * updateAccessToken(newToken);
212
+ *
213
+ * @see {@link LoginToBackend} for obtaining initial token
214
+ * @see {@link Signin} for alternative authentication
215
+ * @see {@link init} which can also set initial token
216
+ */
217
+ declare function updateAccessToken(accessToken?: string, session?: any, refreshToken?: string): void;
218
+ /**
219
+ * Initializes the mftsccs-browser package and sets up all required subsystems.
220
+ *
221
+ * This is the FIRST function you must call before using any other functionality in the package.
222
+ * It configures the backend connections, initializes local databases, sets up service workers,
223
+ * and prepares the system for concept and connection operations.
224
+ *
225
+ * **Initialization Process:**
226
+ * 1. Configures Base URLs for backend, AI, and node servers
227
+ * 2. Sets up access token for authenticated requests
228
+ * 3. Generates unique application randomizer for IndexedDB identification
229
+ * 4. Initializes feature flags (logging, access tracking, etc.)
230
+ * 5. Checks for service worker support
231
+ * 6. Initializes local IndexedDB databases for caching
232
+ * 7. Sets up message listeners for service worker communication
233
+ * 8. Optionally registers and activates service worker
234
+ * 9. Falls back to main thread if service worker unavailable
235
+ *
236
+ * **Subsystems Initialized:**
237
+ * - IndexedDB databases (concepts, connections, settings)
238
+ * - Service worker (if enabled and supported)
239
+ * - Message passing between main thread and service worker
240
+ * - Broadcast channel for cross-tab communication
241
+ * - Access token storage
242
+ * - Logging and monitoring systems
243
+ * - Access tracking (if enabled)
244
+ *
245
+ * @param url - The backend API base URL (C# data fabric server).
246
+ * This is the primary server for concept and connection data.
247
+ * Example: "https://api.example.com" or "https://backend.yourdomain.com"
248
+ * **Required** for most operations.
249
+ *
250
+ * @param aiurl - The AI service URL for AI-powered features and data preloading.
251
+ * If not using AI features, pass empty string and set enableAi to false.
252
+ * Example: "https://ai.example.com"
253
+ *
254
+ * @param accessToken - JWT bearer token for authenticated API requests.
255
+ * Can be empty string on initialization - set later with updateAccessToken().
256
+ * Token is obtained through LoginToBackend() or Signin().
257
+ * Example: "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9..."
258
+ *
259
+ * @param nodeUrl - The Node.js server URL for business logic and security features.
260
+ * Used for additional server-side operations.
261
+ * Example: "https://node.example.com"
262
+ *
263
+ * @param enableAi - Flag to enable/disable AI features and AI data preloading to IndexedDB.
264
+ * Set to false if not using AI features or if aiurl is not provided.
265
+ * Default: true
266
+ *
267
+ * @param applicationName - Unique identifier for your application.
268
+ * Used to create separate IndexedDB instances for different apps.
269
+ * Example: "my-app-v1", "project-manager", "knowledge-base"
270
+ * Useful when multiple applications share the same domain.
271
+ *
272
+ * @param enableSW - Service worker configuration object. Service worker enables background
273
+ * processing for better performance and offline capabilities.
274
+ * - activate: boolean - Enable/disable service worker
275
+ * - scope: string (optional) - Service worker scope path (default: "/")
276
+ * - pathToSW: string (optional) - Path to service worker file (default: "/service-worker.js")
277
+ * - manual: boolean (optional) - If true, assumes SW already registered manually
278
+ * Example: {activate: true, scope: "/", pathToSW: "/sw.js"}
279
+ *
280
+ * @param flags - Feature flags object for enabling/disabling various features:
281
+ * - logApplication: boolean - Enable application-level logging
282
+ * - logPackage: boolean - Enable package-level logging
283
+ * - accessTracker: boolean - Enable access tracking/analytics
284
+ * - isTest: boolean - Mark as test environment
285
+ * All default to false if not specified.
286
+ *
287
+ * @param parameters - Additional configuration parameters:
288
+ * - logserver: string - Custom log server URL (default: "https://logdev.freeschema.com")
289
+ * - isPwa: boolean - Enable PWA offline persistence to IndexedDB (default: false)
290
+ * - enableCache: boolean - Enable/disable widget and FreeschemaQuery caching.
291
+ * When false, QueryCacheManager and WidgetCacheManager skip all reads and writes
292
+ * (memory and IndexedDB). Stored in Environments under key 'enableCache' so it
293
+ * can be read or changed at runtime via Environments.getValue/setValue.
294
+ * Default: true.
295
+ *
296
+ * @returns Promise<boolean> - Returns true if initialization succeeds, undefined if it fails.
297
+ * On failure, falls back to main thread operation and logs warnings.
298
+ *
299
+ * @example
300
+ * // Basic initialization (minimum required)
301
+ * await init(
302
+ * "https://api.myapp.com", // backend URL
303
+ * "", // no AI
304
+ * "", // no token yet
305
+ * "", // no node server
306
+ * false, // disable AI
307
+ * "my-app" // app name
308
+ * );
309
+ *
310
+ * @example
311
+ * // Full initialization with service worker
312
+ * await init(
313
+ * "https://api.myapp.com",
314
+ * "https://ai.myapp.com",
315
+ * "",
316
+ * "https://node.myapp.com",
317
+ * true,
318
+ * "my-app-v2",
319
+ * {
320
+ * activate: true,
321
+ * scope: "/",
322
+ * pathToSW: "/service-worker.js"
323
+ * },
324
+ * {
325
+ * logApplication: true,
326
+ * accessTracker: true
327
+ * },
328
+ * {
329
+ * logserver: "https://logs.myapp.com"
330
+ * }
331
+ * );
332
+ *
333
+ * @example
334
+ * // Initialize then login
335
+ * await init("https://api.example.com", "", "", "", false, "my-app");
336
+ * const loginResult = await LoginToBackend("user@example.com", "password");
337
+ * updateAccessToken(loginResult.data.token);
338
+ * // Now ready to use all authenticated operations
339
+ *
340
+ * @throws Does not throw - logs warnings and falls back to main thread on errors.
341
+ * Common issues: Service worker registration failures, IndexedDB access denied.
342
+ *
343
+ * @see {@link updateAccessToken} for updating the access token after initialization
344
+ * @see {@link LoginToBackend} for obtaining an access token
345
+ * @see {@link sendMessage} for communicating with service worker after initialization
346
+ */
347
+ declare function init(url?: string, aiurl?: string, accessToken?: string, nodeUrl?: string, enableAi?: boolean, applicationName?: string, enableSW?: {
348
+ activate: boolean;
349
+ scope?: string;
350
+ pathToSW?: string;
351
+ manual?: boolean;
352
+ } | undefined, flags?: {
353
+ logApplication?: boolean;
354
+ logPackage?: boolean;
355
+ accessTracker?: boolean;
356
+ isTest?: boolean;
357
+ }, parameters?: {
358
+ logserver?: string;
359
+ isPwa?: boolean;
360
+ enableCache?: boolean;
361
+ recaptchaSiteKey?: string;
362
+ recaptchaAction?: string;
363
+ }): Promise<true | undefined>;
364
+ /**
365
+ * Method to send message to the service worker from main thread
366
+ * @param type string
367
+ * @param payload any
368
+ * @returns Promise<any>
369
+ */
370
+ export declare function sendMessage(type: string, payload: any, retryCount?: number): Promise<unknown>;
371
+ /**
372
+ * Method to dispatch Event received from SW
373
+ * @param id number|string
374
+ * @param data any
375
+ */
376
+ export declare function dispatchIdEvent(id: number | string, data?: any): void;
377
+ /**
378
+ * Method to handle global exception occured in service worker
379
+ * @param error any
380
+ */
381
+ export declare const handleServiceWorkerException: (error: any) => void;
@@ -0,0 +1,25 @@
1
+ import { Concept, Connection, LocalTransaction } from "../app";
2
+ import { Prototype } from "../DataStructures/Prototype/Prototype";
3
+ import { PrototypeOption } from "../DataStructures/Prototype/PrototypeOption";
4
+ import { QuerySelector } from "../DataStructures/Prototype/QuerySelector";
5
+ export declare function createPrototypeLocal(prototype: Prototype, passedTransaction?: LocalTransaction | null): Promise<{
6
+ concepts: Concept[];
7
+ connections: Connection[];
8
+ mainConcept: Concept;
9
+ }>;
10
+ export declare function addOptions(options: PrototypeOption[], mainPrototype: Concept, passedTransaction: LocalTransaction): Promise<{
11
+ concepts: Concept[];
12
+ connections: Connection[];
13
+ }>;
14
+ export declare function addPrototypeSelector(selector: QuerySelector | null, mainPrototype: Concept, passedTransaction: LocalTransaction): Promise<{
15
+ concepts: Concept[];
16
+ connections: Connection[];
17
+ }>;
18
+ export declare function addPrototype(type: string, passedTransaction: LocalTransaction): Promise<any>;
19
+ export declare function addCompositionPrototype(type: string, concepts: Concept[], connections: Connection[], passedTransaction: LocalTransaction): Promise<Concept>;
20
+ export declare function CreatePrototypeConcept(prototypeConcept: Concept, typeConcept: Concept, userId: number, passedTransaction: LocalTransaction): Promise<any>;
21
+ export declare function typeSemantic(mainPrototype: Concept, required?: boolean, isComposition?: boolean): string;
22
+ export declare function compositionalTypeSemantic(mainPrototype: Concept, isOption?: boolean): string;
23
+ export declare function filterTypeSemantic(mainPrototype: Concept, isOption?: boolean): string;
24
+ export declare function selectorTypeSemantic(mainPrototype: Concept, isOption?: boolean): string;
25
+ export declare function AddPrototypeConnections(types: string[], prototype: Concept, allConcepts: Concept[], passedTransaction: LocalTransaction, required?: boolean, isComposition?: boolean): Promise<Connection[]>;
@@ -0,0 +1 @@
1
+ export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mftsccs-browser",
3
- "version": "2.1.239-dev",
3
+ "version": "2.1.240-dev",
4
4
  "environment": "production",
5
5
  "description": "Full Pack of concept and connection system",
6
6
  "main": "dist/main.bundle.js",