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