@carlonicora/nestjs-neo4jsonapi 0.0.1

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 (1687) hide show
  1. package/LICENSE +675 -0
  2. package/README.md +1139 -0
  3. package/dist/agents/agents.modules.d.ts +8 -0
  4. package/dist/agents/agents.modules.d.ts.map +1 -0
  5. package/dist/agents/agents.modules.js +29 -0
  6. package/dist/agents/agents.modules.js.map +1 -0
  7. package/dist/agents/contextualiser/contexts/citations.context.d.ts +13 -0
  8. package/dist/agents/contextualiser/contexts/citations.context.d.ts.map +1 -0
  9. package/dist/agents/contextualiser/contexts/citations.context.js +9 -0
  10. package/dist/agents/contextualiser/contexts/citations.context.js.map +1 -0
  11. package/dist/agents/contextualiser/contexts/contextualiser.context.d.ts +174 -0
  12. package/dist/agents/contextualiser/contexts/contextualiser.context.d.ts.map +1 -0
  13. package/dist/agents/contextualiser/contexts/contextualiser.context.js +203 -0
  14. package/dist/agents/contextualiser/contexts/contextualiser.context.js.map +1 -0
  15. package/dist/agents/contextualiser/contexts/history.context.d.ts +14 -0
  16. package/dist/agents/contextualiser/contexts/history.context.d.ts.map +1 -0
  17. package/dist/agents/contextualiser/contexts/history.context.js +9 -0
  18. package/dist/agents/contextualiser/contexts/history.context.js.map +1 -0
  19. package/dist/agents/contextualiser/contexts/limit.context.d.ts +2 -0
  20. package/dist/agents/contextualiser/contexts/limit.context.d.ts.map +1 -0
  21. package/dist/agents/contextualiser/contexts/limit.context.js +6 -0
  22. package/dist/agents/contextualiser/contexts/limit.context.js.map +1 -0
  23. package/dist/agents/contextualiser/contexts/notebook.context.d.ts +18 -0
  24. package/dist/agents/contextualiser/contexts/notebook.context.d.ts.map +1 -0
  25. package/dist/agents/contextualiser/contexts/notebook.context.js +10 -0
  26. package/dist/agents/contextualiser/contexts/notebook.context.js.map +1 -0
  27. package/dist/agents/contextualiser/contexts/prompt.context.d.ts +13 -0
  28. package/dist/agents/contextualiser/contexts/prompt.context.d.ts.map +1 -0
  29. package/dist/agents/contextualiser/contexts/prompt.context.js +9 -0
  30. package/dist/agents/contextualiser/contexts/prompt.context.js.map +1 -0
  31. package/dist/agents/contextualiser/contexts/request.context.d.ts +13 -0
  32. package/dist/agents/contextualiser/contexts/request.context.d.ts.map +1 -0
  33. package/dist/agents/contextualiser/contexts/request.context.js +9 -0
  34. package/dist/agents/contextualiser/contexts/request.context.js.map +1 -0
  35. package/dist/agents/contextualiser/contextualiser.module.d.ts +3 -0
  36. package/dist/agents/contextualiser/contextualiser.module.d.ts.map +1 -0
  37. package/dist/agents/contextualiser/contextualiser.module.js +44 -0
  38. package/dist/agents/contextualiser/contextualiser.module.js.map +1 -0
  39. package/dist/agents/contextualiser/factories/contextualiser.context.factory.d.ts +22 -0
  40. package/dist/agents/contextualiser/factories/contextualiser.context.factory.d.ts.map +1 -0
  41. package/dist/agents/contextualiser/factories/contextualiser.context.factory.js +77 -0
  42. package/dist/agents/contextualiser/factories/contextualiser.context.factory.js.map +1 -0
  43. package/dist/agents/contextualiser/interfaces/contextualiser.response.interface.d.ts +26 -0
  44. package/dist/agents/contextualiser/interfaces/contextualiser.response.interface.d.ts.map +1 -0
  45. package/dist/agents/contextualiser/interfaces/contextualiser.response.interface.js +3 -0
  46. package/dist/agents/contextualiser/interfaces/contextualiser.response.interface.js.map +1 -0
  47. package/dist/agents/contextualiser/nodes/atomicfacts.node.service.d.ts +25 -0
  48. package/dist/agents/contextualiser/nodes/atomicfacts.node.service.d.ts.map +1 -0
  49. package/dist/agents/contextualiser/nodes/atomicfacts.node.service.js +196 -0
  50. package/dist/agents/contextualiser/nodes/atomicfacts.node.service.js.map +1 -0
  51. package/dist/agents/contextualiser/nodes/chunk.node.service.d.ts +21 -0
  52. package/dist/agents/contextualiser/nodes/chunk.node.service.d.ts.map +1 -0
  53. package/dist/agents/contextualiser/nodes/chunk.node.service.js +229 -0
  54. package/dist/agents/contextualiser/nodes/chunk.node.service.js.map +1 -0
  55. package/dist/agents/contextualiser/nodes/chunk.vector.node.service.d.ts +21 -0
  56. package/dist/agents/contextualiser/nodes/chunk.vector.node.service.d.ts.map +1 -0
  57. package/dist/agents/contextualiser/nodes/chunk.vector.node.service.js +166 -0
  58. package/dist/agents/contextualiser/nodes/chunk.vector.node.service.js.map +1 -0
  59. package/dist/agents/contextualiser/nodes/keyconcepts.node.service.d.ts +22 -0
  60. package/dist/agents/contextualiser/nodes/keyconcepts.node.service.d.ts.map +1 -0
  61. package/dist/agents/contextualiser/nodes/keyconcepts.node.service.js +184 -0
  62. package/dist/agents/contextualiser/nodes/keyconcepts.node.service.js.map +1 -0
  63. package/dist/agents/contextualiser/nodes/question.refiner.node.service.d.ts +19 -0
  64. package/dist/agents/contextualiser/nodes/question.refiner.node.service.d.ts.map +1 -0
  65. package/dist/agents/contextualiser/nodes/question.refiner.node.service.js +125 -0
  66. package/dist/agents/contextualiser/nodes/question.refiner.node.service.js.map +1 -0
  67. package/dist/agents/contextualiser/nodes/rational.node.service.d.ts +19 -0
  68. package/dist/agents/contextualiser/nodes/rational.node.service.d.ts.map +1 -0
  69. package/dist/agents/contextualiser/nodes/rational.node.service.js +104 -0
  70. package/dist/agents/contextualiser/nodes/rational.node.service.js.map +1 -0
  71. package/dist/agents/contextualiser/services/contextualiser.service.d.ts +32 -0
  72. package/dist/agents/contextualiser/services/contextualiser.service.d.ts.map +1 -0
  73. package/dist/agents/contextualiser/services/contextualiser.service.js +193 -0
  74. package/dist/agents/contextualiser/services/contextualiser.service.js.map +1 -0
  75. package/dist/agents/graph.creator/graph.creator.module.d.ts +3 -0
  76. package/dist/agents/graph.creator/graph.creator.module.d.ts.map +1 -0
  77. package/dist/agents/graph.creator/graph.creator.module.js +24 -0
  78. package/dist/agents/graph.creator/graph.creator.module.js.map +1 -0
  79. package/dist/agents/graph.creator/interfaces/chunk.analysis.interface.d.ts +14 -0
  80. package/dist/agents/graph.creator/interfaces/chunk.analysis.interface.d.ts.map +1 -0
  81. package/dist/agents/graph.creator/interfaces/chunk.analysis.interface.js +3 -0
  82. package/dist/agents/graph.creator/interfaces/chunk.analysis.interface.js.map +1 -0
  83. package/dist/agents/graph.creator/services/graph.creator.service.d.ts +17 -0
  84. package/dist/agents/graph.creator/services/graph.creator.service.d.ts.map +1 -0
  85. package/dist/agents/graph.creator/services/graph.creator.service.js +450 -0
  86. package/dist/agents/graph.creator/services/graph.creator.service.js.map +1 -0
  87. package/dist/agents/index.d.ts +15 -0
  88. package/dist/agents/index.d.ts.map +1 -0
  89. package/dist/agents/index.js +45 -0
  90. package/dist/agents/index.js.map +1 -0
  91. package/dist/agents/prompts/index.d.ts +10 -0
  92. package/dist/agents/prompts/index.d.ts.map +1 -0
  93. package/dist/agents/prompts/index.js +29 -0
  94. package/dist/agents/prompts/index.js.map +1 -0
  95. package/dist/agents/prompts/prompt.interfaces.d.ts +128 -0
  96. package/dist/agents/prompts/prompt.interfaces.d.ts.map +1 -0
  97. package/dist/agents/prompts/prompt.interfaces.js +12 -0
  98. package/dist/agents/prompts/prompt.interfaces.js.map +1 -0
  99. package/dist/agents/prompts/prompt.tokens.d.ts +16 -0
  100. package/dist/agents/prompts/prompt.tokens.d.ts.map +1 -0
  101. package/dist/agents/prompts/prompt.tokens.js +23 -0
  102. package/dist/agents/prompts/prompt.tokens.js.map +1 -0
  103. package/dist/agents/responder/contexts/responder.answer.context.d.ts +28 -0
  104. package/dist/agents/responder/contexts/responder.answer.context.d.ts.map +1 -0
  105. package/dist/agents/responder/contexts/responder.answer.context.js +12 -0
  106. package/dist/agents/responder/contexts/responder.answer.context.js.map +1 -0
  107. package/dist/agents/responder/contexts/responder.context.d.ts +468 -0
  108. package/dist/agents/responder/contexts/responder.context.d.ts.map +1 -0
  109. package/dist/agents/responder/contexts/responder.context.js +32 -0
  110. package/dist/agents/responder/contexts/responder.context.js.map +1 -0
  111. package/dist/agents/responder/factories/responder.context.factory.d.ts +18 -0
  112. package/dist/agents/responder/factories/responder.context.factory.d.ts.map +1 -0
  113. package/dist/agents/responder/factories/responder.context.factory.js +50 -0
  114. package/dist/agents/responder/factories/responder.context.factory.js.map +1 -0
  115. package/dist/agents/responder/interfaces/responder.response.interface.d.ts +21 -0
  116. package/dist/agents/responder/interfaces/responder.response.interface.d.ts.map +1 -0
  117. package/dist/agents/responder/interfaces/responder.response.interface.js +3 -0
  118. package/dist/agents/responder/interfaces/responder.response.interface.js.map +1 -0
  119. package/dist/agents/responder/nodes/responder.answer.node.service.d.ts +16 -0
  120. package/dist/agents/responder/nodes/responder.answer.node.service.d.ts.map +1 -0
  121. package/dist/agents/responder/nodes/responder.answer.node.service.js +367 -0
  122. package/dist/agents/responder/nodes/responder.answer.node.service.js.map +1 -0
  123. package/dist/agents/responder/responder.module.d.ts +3 -0
  124. package/dist/agents/responder/responder.module.d.ts.map +1 -0
  125. package/dist/agents/responder/responder.module.js +28 -0
  126. package/dist/agents/responder/responder.module.js.map +1 -0
  127. package/dist/agents/responder/services/responder.service.d.ts +21 -0
  128. package/dist/agents/responder/services/responder.service.d.ts.map +1 -0
  129. package/dist/agents/responder/services/responder.service.js +87 -0
  130. package/dist/agents/responder/services/responder.service.js.map +1 -0
  131. package/dist/agents/summariser/services/summariser.service.d.ts +24 -0
  132. package/dist/agents/summariser/services/summariser.service.d.ts.map +1 -0
  133. package/dist/agents/summariser/services/summariser.service.js +105 -0
  134. package/dist/agents/summariser/services/summariser.service.js.map +1 -0
  135. package/dist/agents/summariser/summariser.module.d.ts +3 -0
  136. package/dist/agents/summariser/summariser.module.d.ts.map +1 -0
  137. package/dist/agents/summariser/summariser.module.js +23 -0
  138. package/dist/agents/summariser/summariser.module.js.map +1 -0
  139. package/dist/bootstrap/app.module.factory.d.ts +21 -0
  140. package/dist/bootstrap/app.module.factory.d.ts.map +1 -0
  141. package/dist/bootstrap/app.module.factory.js +156 -0
  142. package/dist/bootstrap/app.module.factory.js.map +1 -0
  143. package/dist/bootstrap/bootstrap.d.ts +31 -0
  144. package/dist/bootstrap/bootstrap.d.ts.map +1 -0
  145. package/dist/bootstrap/bootstrap.js +174 -0
  146. package/dist/bootstrap/bootstrap.js.map +1 -0
  147. package/dist/bootstrap/bootstrap.options.d.ts +40 -0
  148. package/dist/bootstrap/bootstrap.options.d.ts.map +1 -0
  149. package/dist/bootstrap/bootstrap.options.js +3 -0
  150. package/dist/bootstrap/bootstrap.options.js.map +1 -0
  151. package/dist/bootstrap/defaults.d.ts +33 -0
  152. package/dist/bootstrap/defaults.d.ts.map +1 -0
  153. package/dist/bootstrap/defaults.js +71 -0
  154. package/dist/bootstrap/defaults.js.map +1 -0
  155. package/dist/bootstrap/index.d.ts +47 -0
  156. package/dist/bootstrap/index.d.ts.map +1 -0
  157. package/dist/bootstrap/index.js +57 -0
  158. package/dist/bootstrap/index.js.map +1 -0
  159. package/dist/common/abstracts/abstract.company.configuration.d.ts +40 -0
  160. package/dist/common/abstracts/abstract.company.configuration.d.ts.map +1 -0
  161. package/dist/common/abstracts/abstract.company.configuration.js +44 -0
  162. package/dist/common/abstracts/abstract.company.configuration.js.map +1 -0
  163. package/dist/common/abstracts/entity.d.ts +13 -0
  164. package/dist/common/abstracts/entity.d.ts.map +1 -0
  165. package/dist/common/abstracts/entity.js +21 -0
  166. package/dist/common/abstracts/entity.js.map +1 -0
  167. package/dist/common/abstracts/index.d.ts +2 -0
  168. package/dist/common/abstracts/index.d.ts.map +1 -0
  169. package/dist/common/abstracts/index.js +18 -0
  170. package/dist/common/abstracts/index.js.map +1 -0
  171. package/dist/common/constants/system.roles.d.ts +18 -0
  172. package/dist/common/constants/system.roles.d.ts.map +1 -0
  173. package/dist/common/constants/system.roles.js +19 -0
  174. package/dist/common/constants/system.roles.js.map +1 -0
  175. package/dist/common/contexts/index.d.ts +2 -0
  176. package/dist/common/contexts/index.d.ts.map +1 -0
  177. package/dist/common/contexts/index.js +18 -0
  178. package/dist/common/contexts/index.js.map +1 -0
  179. package/dist/common/contexts/tokenusage.context.d.ts +13 -0
  180. package/dist/common/contexts/tokenusage.context.d.ts.map +1 -0
  181. package/dist/common/contexts/tokenusage.context.js +9 -0
  182. package/dist/common/contexts/tokenusage.context.js.map +1 -0
  183. package/dist/common/decorators/conditional-service.decorator.d.ts +50 -0
  184. package/dist/common/decorators/conditional-service.decorator.d.ts.map +1 -0
  185. package/dist/common/decorators/conditional-service.decorator.js +87 -0
  186. package/dist/common/decorators/conditional-service.decorator.js.map +1 -0
  187. package/dist/common/decorators/index.d.ts +6 -0
  188. package/dist/common/decorators/index.d.ts.map +1 -0
  189. package/dist/common/decorators/index.js +22 -0
  190. package/dist/common/decorators/index.js.map +1 -0
  191. package/dist/common/decorators/module.decorator.d.ts +6 -0
  192. package/dist/common/decorators/module.decorator.d.ts.map +1 -0
  193. package/dist/common/decorators/module.decorator.js +7 -0
  194. package/dist/common/decorators/module.decorator.js.map +1 -0
  195. package/dist/common/decorators/rate-limit.decorator.d.ts +6 -0
  196. package/dist/common/decorators/rate-limit.decorator.d.ts.map +1 -0
  197. package/dist/common/decorators/rate-limit.decorator.js +15 -0
  198. package/dist/common/decorators/rate-limit.decorator.js.map +1 -0
  199. package/dist/common/decorators/roles.decorator.d.ts +2 -0
  200. package/dist/common/decorators/roles.decorator.d.ts.map +1 -0
  201. package/dist/common/decorators/roles.decorator.js +7 -0
  202. package/dist/common/decorators/roles.decorator.js.map +1 -0
  203. package/dist/common/decorators/tool.decorator.d.ts +29 -0
  204. package/dist/common/decorators/tool.decorator.d.ts.map +1 -0
  205. package/dist/common/decorators/tool.decorator.js +38 -0
  206. package/dist/common/decorators/tool.decorator.js.map +1 -0
  207. package/dist/common/enums/action.d.ts +7 -0
  208. package/dist/common/enums/action.d.ts.map +1 -0
  209. package/dist/common/enums/action.js +11 -0
  210. package/dist/common/enums/action.js.map +1 -0
  211. package/dist/common/enums/agentmessage.type.d.ts +6 -0
  212. package/dist/common/enums/agentmessage.type.d.ts.map +1 -0
  213. package/dist/common/enums/agentmessage.type.js +10 -0
  214. package/dist/common/enums/agentmessage.type.js.map +1 -0
  215. package/dist/common/enums/ai.status.d.ts +8 -0
  216. package/dist/common/enums/ai.status.d.ts.map +1 -0
  217. package/dist/common/enums/ai.status.js +12 -0
  218. package/dist/common/enums/ai.status.js.map +1 -0
  219. package/dist/common/enums/index.d.ts +4 -0
  220. package/dist/common/enums/index.d.ts.map +1 -0
  221. package/dist/common/enums/index.js +20 -0
  222. package/dist/common/enums/index.js.map +1 -0
  223. package/dist/common/filters/http-exception.filter.d.ts +17 -0
  224. package/dist/common/filters/http-exception.filter.d.ts.map +1 -0
  225. package/dist/common/filters/http-exception.filter.js +92 -0
  226. package/dist/common/filters/http-exception.filter.js.map +1 -0
  227. package/dist/common/filters/index.d.ts +2 -0
  228. package/dist/common/filters/index.d.ts.map +1 -0
  229. package/dist/common/filters/index.js +18 -0
  230. package/dist/common/filters/index.js.map +1 -0
  231. package/dist/common/guards/index.d.ts +4 -0
  232. package/dist/common/guards/index.d.ts.map +1 -0
  233. package/dist/common/guards/index.js +20 -0
  234. package/dist/common/guards/index.js.map +1 -0
  235. package/dist/common/guards/jwt.auth.admin.guard.d.ts +18 -0
  236. package/dist/common/guards/jwt.auth.admin.guard.d.ts.map +1 -0
  237. package/dist/common/guards/jwt.auth.admin.guard.js +78 -0
  238. package/dist/common/guards/jwt.auth.admin.guard.js.map +1 -0
  239. package/dist/common/guards/jwt.auth.guard.d.ts +18 -0
  240. package/dist/common/guards/jwt.auth.guard.d.ts.map +1 -0
  241. package/dist/common/guards/jwt.auth.guard.js +81 -0
  242. package/dist/common/guards/jwt.auth.guard.js.map +1 -0
  243. package/dist/common/guards/jwt.auth.optional.guard.d.ts +16 -0
  244. package/dist/common/guards/jwt.auth.optional.guard.d.ts.map +1 -0
  245. package/dist/common/guards/jwt.auth.optional.guard.js +78 -0
  246. package/dist/common/guards/jwt.auth.optional.guard.js.map +1 -0
  247. package/dist/common/helpers/define-entity.d.ts +50 -0
  248. package/dist/common/helpers/define-entity.d.ts.map +1 -0
  249. package/dist/common/helpers/define-entity.js +196 -0
  250. package/dist/common/helpers/define-entity.js.map +1 -0
  251. package/dist/common/helpers/index.d.ts +2 -0
  252. package/dist/common/helpers/index.d.ts.map +1 -0
  253. package/dist/common/helpers/index.js +18 -0
  254. package/dist/common/helpers/index.js.map +1 -0
  255. package/dist/common/index.d.ts +21 -0
  256. package/dist/common/index.d.ts.map +1 -0
  257. package/dist/common/index.js +51 -0
  258. package/dist/common/index.js.map +1 -0
  259. package/dist/common/interfaces/agents/graph.creator.interface.d.ts +17 -0
  260. package/dist/common/interfaces/agents/graph.creator.interface.d.ts.map +1 -0
  261. package/dist/common/interfaces/agents/graph.creator.interface.js +3 -0
  262. package/dist/common/interfaces/agents/graph.creator.interface.js.map +1 -0
  263. package/dist/common/interfaces/authenticated.request.interface.d.ts +14 -0
  264. package/dist/common/interfaces/authenticated.request.interface.d.ts.map +1 -0
  265. package/dist/common/interfaces/authenticated.request.interface.js +3 -0
  266. package/dist/common/interfaces/authenticated.request.interface.js.map +1 -0
  267. package/dist/common/interfaces/datamodel.interface.d.ts +25 -0
  268. package/dist/common/interfaces/datamodel.interface.d.ts.map +1 -0
  269. package/dist/common/interfaces/datamodel.interface.js +7 -0
  270. package/dist/common/interfaces/datamodel.interface.js.map +1 -0
  271. package/dist/common/interfaces/entity.descriptor.interface.d.ts +34 -0
  272. package/dist/common/interfaces/entity.descriptor.interface.d.ts.map +1 -0
  273. package/dist/common/interfaces/entity.descriptor.interface.js +6 -0
  274. package/dist/common/interfaces/entity.descriptor.interface.js.map +1 -0
  275. package/dist/common/interfaces/entity.schema.interface.d.ts +154 -0
  276. package/dist/common/interfaces/entity.schema.interface.d.ts.map +1 -0
  277. package/dist/common/interfaces/entity.schema.interface.js +3 -0
  278. package/dist/common/interfaces/entity.schema.interface.js.map +1 -0
  279. package/dist/common/interfaces/index.d.ts +8 -0
  280. package/dist/common/interfaces/index.d.ts.map +1 -0
  281. package/dist/common/interfaces/index.js +24 -0
  282. package/dist/common/interfaces/index.js.map +1 -0
  283. package/dist/common/interfaces/langchain.usage.interface.d.ts +21 -0
  284. package/dist/common/interfaces/langchain.usage.interface.d.ts.map +1 -0
  285. package/dist/common/interfaces/langchain.usage.interface.js +3 -0
  286. package/dist/common/interfaces/langchain.usage.interface.js.map +1 -0
  287. package/dist/common/interfaces/message.interface.d.ts +6 -0
  288. package/dist/common/interfaces/message.interface.d.ts.map +1 -0
  289. package/dist/common/interfaces/message.interface.js +3 -0
  290. package/dist/common/interfaces/message.interface.js.map +1 -0
  291. package/dist/common/interfaces/token.usage.interface.d.ts +5 -0
  292. package/dist/common/interfaces/token.usage.interface.d.ts.map +1 -0
  293. package/dist/common/interfaces/token.usage.interface.js +3 -0
  294. package/dist/common/interfaces/token.usage.interface.js.map +1 -0
  295. package/dist/common/registries/index.d.ts +2 -0
  296. package/dist/common/registries/index.d.ts.map +1 -0
  297. package/dist/common/registries/index.js +18 -0
  298. package/dist/common/registries/index.js.map +1 -0
  299. package/dist/common/registries/registry.d.ts +23 -0
  300. package/dist/common/registries/registry.d.ts.map +1 -0
  301. package/dist/common/registries/registry.js +55 -0
  302. package/dist/common/registries/registry.js.map +1 -0
  303. package/dist/common/repositories/ai.source.query.d.ts +13 -0
  304. package/dist/common/repositories/ai.source.query.d.ts.map +1 -0
  305. package/dist/common/repositories/ai.source.query.js +23 -0
  306. package/dist/common/repositories/ai.source.query.js.map +1 -0
  307. package/dist/common/repositories/index.d.ts +2 -0
  308. package/dist/common/repositories/index.d.ts.map +1 -0
  309. package/dist/common/repositories/index.js +18 -0
  310. package/dist/common/repositories/index.js.map +1 -0
  311. package/dist/common/strategies/index.d.ts +2 -0
  312. package/dist/common/strategies/index.d.ts.map +1 -0
  313. package/dist/common/strategies/index.js +18 -0
  314. package/dist/common/strategies/index.js.map +1 -0
  315. package/dist/common/strategies/jwt.strategy.d.ts +14 -0
  316. package/dist/common/strategies/jwt.strategy.d.ts.map +1 -0
  317. package/dist/common/strategies/jwt.strategy.js +43 -0
  318. package/dist/common/strategies/jwt.strategy.js.map +1 -0
  319. package/dist/common/tokens.d.ts +14 -0
  320. package/dist/common/tokens.d.ts.map +1 -0
  321. package/dist/common/tokens.js +11 -0
  322. package/dist/common/tokens.js.map +1 -0
  323. package/dist/common/types/data.limits.d.ts +2 -0
  324. package/dist/common/types/data.limits.d.ts.map +1 -0
  325. package/dist/common/types/data.limits.js +3 -0
  326. package/dist/common/types/data.limits.js.map +1 -0
  327. package/dist/common/types/index.d.ts +3 -0
  328. package/dist/common/types/index.d.ts.map +1 -0
  329. package/dist/common/types/index.js +19 -0
  330. package/dist/common/types/index.js.map +1 -0
  331. package/dist/common/types/reducers.d.ts +13 -0
  332. package/dist/common/types/reducers.d.ts.map +1 -0
  333. package/dist/common/types/reducers.js +19 -0
  334. package/dist/common/types/reducers.js.map +1 -0
  335. package/dist/config/base.config.d.ts +90 -0
  336. package/dist/config/base.config.d.ts.map +1 -0
  337. package/dist/config/base.config.js +209 -0
  338. package/dist/config/base.config.js.map +1 -0
  339. package/dist/config/company.configurations.d.ts +19 -0
  340. package/dist/config/company.configurations.d.ts.map +1 -0
  341. package/dist/config/company.configurations.js +23 -0
  342. package/dist/config/company.configurations.js.map +1 -0
  343. package/dist/config/enums/content.types.d.ts +6 -0
  344. package/dist/config/enums/content.types.d.ts.map +1 -0
  345. package/dist/config/enums/content.types.js +9 -0
  346. package/dist/config/enums/content.types.js.map +1 -0
  347. package/dist/config/enums/index.d.ts +3 -0
  348. package/dist/config/enums/index.d.ts.map +1 -0
  349. package/dist/config/enums/index.js +19 -0
  350. package/dist/config/enums/index.js.map +1 -0
  351. package/dist/config/enums/job.name.d.ts +9 -0
  352. package/dist/config/enums/job.name.d.ts.map +1 -0
  353. package/dist/config/enums/job.name.js +12 -0
  354. package/dist/config/enums/job.name.js.map +1 -0
  355. package/dist/config/enums/queue.id.d.ts +9 -0
  356. package/dist/config/enums/queue.id.d.ts.map +1 -0
  357. package/dist/config/enums/queue.id.js +13 -0
  358. package/dist/config/enums/queue.id.js.map +1 -0
  359. package/dist/config/index.d.ts +10 -0
  360. package/dist/config/index.d.ts.map +1 -0
  361. package/dist/config/index.js +30 -0
  362. package/dist/config/index.js.map +1 -0
  363. package/dist/config/interfaces/base.config.interface.d.ts +45 -0
  364. package/dist/config/interfaces/base.config.interface.d.ts.map +1 -0
  365. package/dist/config/interfaces/base.config.interface.js +3 -0
  366. package/dist/config/interfaces/base.config.interface.js.map +1 -0
  367. package/dist/config/interfaces/config.ai.interface.d.ts +31 -0
  368. package/dist/config/interfaces/config.ai.interface.d.ts.map +1 -0
  369. package/dist/config/interfaces/config.ai.interface.js +3 -0
  370. package/dist/config/interfaces/config.ai.interface.js.map +1 -0
  371. package/dist/config/interfaces/config.api.interface.d.ts +6 -0
  372. package/dist/config/interfaces/config.api.interface.d.ts.map +1 -0
  373. package/dist/config/interfaces/config.api.interface.js +3 -0
  374. package/dist/config/interfaces/config.api.interface.js.map +1 -0
  375. package/dist/config/interfaces/config.app.interface.d.ts +4 -0
  376. package/dist/config/interfaces/config.app.interface.d.ts.map +1 -0
  377. package/dist/config/interfaces/config.app.interface.js +3 -0
  378. package/dist/config/interfaces/config.app.interface.js.map +1 -0
  379. package/dist/config/interfaces/config.cache.interface.d.ts +6 -0
  380. package/dist/config/interfaces/config.cache.interface.d.ts.map +1 -0
  381. package/dist/config/interfaces/config.cache.interface.js +3 -0
  382. package/dist/config/interfaces/config.cache.interface.js.map +1 -0
  383. package/dist/config/interfaces/config.chunk.queues.interface.d.ts +16 -0
  384. package/dist/config/interfaces/config.chunk.queues.interface.d.ts.map +1 -0
  385. package/dist/config/interfaces/config.chunk.queues.interface.js +3 -0
  386. package/dist/config/interfaces/config.chunk.queues.interface.js.map +1 -0
  387. package/dist/config/interfaces/config.content.types.interface.d.ts +8 -0
  388. package/dist/config/interfaces/config.content.types.interface.d.ts.map +1 -0
  389. package/dist/config/interfaces/config.content.types.interface.js +3 -0
  390. package/dist/config/interfaces/config.content.types.interface.js.map +1 -0
  391. package/dist/config/interfaces/config.cors.interface.d.ts +12 -0
  392. package/dist/config/interfaces/config.cors.interface.d.ts.map +1 -0
  393. package/dist/config/interfaces/config.cors.interface.js +3 -0
  394. package/dist/config/interfaces/config.cors.interface.js.map +1 -0
  395. package/dist/config/interfaces/config.email.interface.d.ts +11 -0
  396. package/dist/config/interfaces/config.email.interface.d.ts.map +1 -0
  397. package/dist/config/interfaces/config.email.interface.js +3 -0
  398. package/dist/config/interfaces/config.email.interface.js.map +1 -0
  399. package/dist/config/interfaces/config.encryption.interface.d.ts +4 -0
  400. package/dist/config/interfaces/config.encryption.interface.d.ts.map +1 -0
  401. package/dist/config/interfaces/config.encryption.interface.js +3 -0
  402. package/dist/config/interfaces/config.encryption.interface.js.map +1 -0
  403. package/dist/config/interfaces/config.environment.interface.d.ts +4 -0
  404. package/dist/config/interfaces/config.environment.interface.d.ts.map +1 -0
  405. package/dist/config/interfaces/config.environment.interface.js +3 -0
  406. package/dist/config/interfaces/config.environment.interface.js.map +1 -0
  407. package/dist/config/interfaces/config.interface.d.ts +8 -0
  408. package/dist/config/interfaces/config.interface.d.ts.map +1 -0
  409. package/dist/config/interfaces/config.interface.js +3 -0
  410. package/dist/config/interfaces/config.interface.js.map +1 -0
  411. package/dist/config/interfaces/config.job.names.interface.d.ts +20 -0
  412. package/dist/config/interfaces/config.job.names.interface.d.ts.map +1 -0
  413. package/dist/config/interfaces/config.job.names.interface.js +3 -0
  414. package/dist/config/interfaces/config.job.names.interface.js.map +1 -0
  415. package/dist/config/interfaces/config.jwt.interface.d.ts +5 -0
  416. package/dist/config/interfaces/config.jwt.interface.d.ts.map +1 -0
  417. package/dist/config/interfaces/config.jwt.interface.js +3 -0
  418. package/dist/config/interfaces/config.jwt.interface.js.map +1 -0
  419. package/dist/config/interfaces/config.logging.interface.d.ts +16 -0
  420. package/dist/config/interfaces/config.logging.interface.d.ts.map +1 -0
  421. package/dist/config/interfaces/config.logging.interface.js +3 -0
  422. package/dist/config/interfaces/config.logging.interface.js.map +1 -0
  423. package/dist/config/interfaces/config.neo4j.interface.d.ts +7 -0
  424. package/dist/config/interfaces/config.neo4j.interface.d.ts.map +1 -0
  425. package/dist/config/interfaces/config.neo4j.interface.js +3 -0
  426. package/dist/config/interfaces/config.neo4j.interface.js.map +1 -0
  427. package/dist/config/interfaces/config.prompts.interface.d.ts +18 -0
  428. package/dist/config/interfaces/config.prompts.interface.d.ts.map +1 -0
  429. package/dist/config/interfaces/config.prompts.interface.js +3 -0
  430. package/dist/config/interfaces/config.prompts.interface.js.map +1 -0
  431. package/dist/config/interfaces/config.ratelimit.interface.d.ts +7 -0
  432. package/dist/config/interfaces/config.ratelimit.interface.d.ts.map +1 -0
  433. package/dist/config/interfaces/config.ratelimit.interface.js +3 -0
  434. package/dist/config/interfaces/config.ratelimit.interface.js.map +1 -0
  435. package/dist/config/interfaces/config.redis.interface.d.ts +8 -0
  436. package/dist/config/interfaces/config.redis.interface.d.ts.map +1 -0
  437. package/dist/config/interfaces/config.redis.interface.js +3 -0
  438. package/dist/config/interfaces/config.redis.interface.js.map +1 -0
  439. package/dist/config/interfaces/config.s3.interface.d.ts +9 -0
  440. package/dist/config/interfaces/config.s3.interface.d.ts.map +1 -0
  441. package/dist/config/interfaces/config.s3.interface.js +3 -0
  442. package/dist/config/interfaces/config.s3.interface.js.map +1 -0
  443. package/dist/config/interfaces/config.stripe.interface.d.ts +9 -0
  444. package/dist/config/interfaces/config.stripe.interface.d.ts.map +1 -0
  445. package/dist/config/interfaces/config.stripe.interface.js +3 -0
  446. package/dist/config/interfaces/config.stripe.interface.js.map +1 -0
  447. package/dist/config/interfaces/config.tempo.interface.d.ts +7 -0
  448. package/dist/config/interfaces/config.tempo.interface.d.ts.map +1 -0
  449. package/dist/config/interfaces/config.tempo.interface.js +3 -0
  450. package/dist/config/interfaces/config.tempo.interface.js.map +1 -0
  451. package/dist/config/interfaces/config.vapid.interface.d.ts +6 -0
  452. package/dist/config/interfaces/config.vapid.interface.d.ts.map +1 -0
  453. package/dist/config/interfaces/config.vapid.interface.js +3 -0
  454. package/dist/config/interfaces/config.vapid.interface.js.map +1 -0
  455. package/dist/config/interfaces/index.d.ts +27 -0
  456. package/dist/config/interfaces/index.d.ts.map +1 -0
  457. package/dist/config/interfaces/index.js +43 -0
  458. package/dist/config/interfaces/index.js.map +1 -0
  459. package/dist/config/tokens.d.ts +12 -0
  460. package/dist/config/tokens.d.ts.map +1 -0
  461. package/dist/config/tokens.js +16 -0
  462. package/dist/config/tokens.js.map +1 -0
  463. package/dist/core/appmode/app.mode.module.d.ts +6 -0
  464. package/dist/core/appmode/app.mode.module.d.ts.map +1 -0
  465. package/dist/core/appmode/app.mode.module.js +47 -0
  466. package/dist/core/appmode/app.mode.module.js.map +1 -0
  467. package/dist/core/appmode/constants/app.mode.constant.d.ts +2 -0
  468. package/dist/core/appmode/constants/app.mode.constant.d.ts.map +1 -0
  469. package/dist/core/appmode/constants/app.mode.constant.js +8 -0
  470. package/dist/core/appmode/constants/app.mode.constant.js.map +1 -0
  471. package/dist/core/appmode/index.d.ts +8 -0
  472. package/dist/core/appmode/index.d.ts.map +1 -0
  473. package/dist/core/appmode/index.js +24 -0
  474. package/dist/core/appmode/index.js.map +1 -0
  475. package/dist/core/blocknote/blocknote.module.d.ts +22 -0
  476. package/dist/core/blocknote/blocknote.module.d.ts.map +1 -0
  477. package/dist/core/blocknote/blocknote.module.js +40 -0
  478. package/dist/core/blocknote/blocknote.module.js.map +1 -0
  479. package/dist/core/blocknote/index.d.ts +3 -0
  480. package/dist/core/blocknote/index.d.ts.map +1 -0
  481. package/dist/core/blocknote/index.js +19 -0
  482. package/dist/core/blocknote/index.js.map +1 -0
  483. package/dist/core/blocknote/services/blocknote.service.d.ts +53 -0
  484. package/dist/core/blocknote/services/blocknote.service.d.ts.map +1 -0
  485. package/dist/core/blocknote/services/blocknote.service.js +337 -0
  486. package/dist/core/blocknote/services/blocknote.service.js.map +1 -0
  487. package/dist/core/cache/cache.module.d.ts +3 -0
  488. package/dist/core/cache/cache.module.d.ts.map +1 -0
  489. package/dist/core/cache/cache.module.js +22 -0
  490. package/dist/core/cache/cache.module.js.map +1 -0
  491. package/dist/core/cache/index.d.ts +9 -0
  492. package/dist/core/cache/index.d.ts.map +1 -0
  493. package/dist/core/cache/index.js +25 -0
  494. package/dist/core/cache/index.js.map +1 -0
  495. package/dist/core/cache/interceptors/cache.interceptor.d.ts +16 -0
  496. package/dist/core/cache/interceptors/cache.interceptor.d.ts.map +1 -0
  497. package/dist/core/cache/interceptors/cache.interceptor.js +87 -0
  498. package/dist/core/cache/interceptors/cache.interceptor.js.map +1 -0
  499. package/dist/core/cache/services/cache.service.d.ts +36 -0
  500. package/dist/core/cache/services/cache.service.d.ts.map +1 -0
  501. package/dist/core/cache/services/cache.service.js +256 -0
  502. package/dist/core/cache/services/cache.service.js.map +1 -0
  503. package/dist/core/core.module.d.ts +36 -0
  504. package/dist/core/core.module.d.ts.map +1 -0
  505. package/dist/core/core.module.js +149 -0
  506. package/dist/core/core.module.js.map +1 -0
  507. package/dist/core/cors/cors.module.d.ts +12 -0
  508. package/dist/core/cors/cors.module.d.ts.map +1 -0
  509. package/dist/core/cors/cors.module.js +48 -0
  510. package/dist/core/cors/cors.module.js.map +1 -0
  511. package/dist/core/cors/index.d.ts +9 -0
  512. package/dist/core/cors/index.d.ts.map +1 -0
  513. package/dist/core/cors/index.js +27 -0
  514. package/dist/core/cors/index.js.map +1 -0
  515. package/dist/core/cors/services/cors.service.d.ts +17 -0
  516. package/dist/core/cors/services/cors.service.d.ts.map +1 -0
  517. package/dist/core/cors/services/cors.service.js +115 -0
  518. package/dist/core/cors/services/cors.service.js.map +1 -0
  519. package/dist/core/debug/debug.module.d.ts +26 -0
  520. package/dist/core/debug/debug.module.d.ts.map +1 -0
  521. package/dist/core/debug/debug.module.js +45 -0
  522. package/dist/core/debug/debug.module.js.map +1 -0
  523. package/dist/core/debug/index.d.ts +3 -0
  524. package/dist/core/debug/index.d.ts.map +1 -0
  525. package/dist/core/debug/index.js +19 -0
  526. package/dist/core/debug/index.js.map +1 -0
  527. package/dist/core/debug/services/debug.logger.service.d.ts +138 -0
  528. package/dist/core/debug/services/debug.logger.service.d.ts.map +1 -0
  529. package/dist/core/debug/services/debug.logger.service.js +350 -0
  530. package/dist/core/debug/services/debug.logger.service.js.map +1 -0
  531. package/dist/core/email/email.module.d.ts +12 -0
  532. package/dist/core/email/email.module.d.ts.map +1 -0
  533. package/dist/core/email/email.module.js +48 -0
  534. package/dist/core/email/email.module.js.map +1 -0
  535. package/dist/core/email/index.d.ts +9 -0
  536. package/dist/core/email/index.d.ts.map +1 -0
  537. package/dist/core/email/index.js +27 -0
  538. package/dist/core/email/index.js.map +1 -0
  539. package/dist/core/email/services/email.service.d.ts +18 -0
  540. package/dist/core/email/services/email.service.d.ts.map +1 -0
  541. package/dist/core/email/services/email.service.js +217 -0
  542. package/dist/core/email/services/email.service.js.map +1 -0
  543. package/dist/core/index.d.ts +31 -0
  544. package/dist/core/index.d.ts.map +1 -0
  545. package/dist/core/index.js +52 -0
  546. package/dist/core/index.js.map +1 -0
  547. package/dist/core/jsonapi/abstracts/abstract.jsonapi.serialiser.d.ts +26 -0
  548. package/dist/core/jsonapi/abstracts/abstract.jsonapi.serialiser.d.ts.map +1 -0
  549. package/dist/core/jsonapi/abstracts/abstract.jsonapi.serialiser.js +78 -0
  550. package/dist/core/jsonapi/abstracts/abstract.jsonapi.serialiser.js.map +1 -0
  551. package/dist/core/jsonapi/factories/dynamic.relationship.factory.d.ts +7 -0
  552. package/dist/core/jsonapi/factories/dynamic.relationship.factory.d.ts.map +1 -0
  553. package/dist/core/jsonapi/factories/dynamic.relationship.factory.js +61 -0
  554. package/dist/core/jsonapi/factories/dynamic.relationship.factory.js.map +1 -0
  555. package/dist/core/jsonapi/factories/jsonapi.serialiser.factory.d.ts +10 -0
  556. package/dist/core/jsonapi/factories/jsonapi.serialiser.factory.d.ts.map +1 -0
  557. package/dist/core/jsonapi/factories/jsonapi.serialiser.factory.js +43 -0
  558. package/dist/core/jsonapi/factories/jsonapi.serialiser.factory.js.map +1 -0
  559. package/dist/core/jsonapi/index.d.ts +20 -0
  560. package/dist/core/jsonapi/index.d.ts.map +1 -0
  561. package/dist/core/jsonapi/index.js +46 -0
  562. package/dist/core/jsonapi/index.js.map +1 -0
  563. package/dist/core/jsonapi/interfaces/jsonapi.cursor.interface.d.ts +5 -0
  564. package/dist/core/jsonapi/interfaces/jsonapi.cursor.interface.d.ts.map +1 -0
  565. package/dist/core/jsonapi/interfaces/jsonapi.cursor.interface.js +3 -0
  566. package/dist/core/jsonapi/interfaces/jsonapi.cursor.interface.js.map +1 -0
  567. package/dist/core/jsonapi/interfaces/jsonapi.data.interface.d.ts +31 -0
  568. package/dist/core/jsonapi/interfaces/jsonapi.data.interface.d.ts.map +1 -0
  569. package/dist/core/jsonapi/interfaces/jsonapi.data.interface.js +3 -0
  570. package/dist/core/jsonapi/interfaces/jsonapi.data.interface.js.map +1 -0
  571. package/dist/core/jsonapi/interfaces/jsonapi.pagination.interface.d.ts +8 -0
  572. package/dist/core/jsonapi/interfaces/jsonapi.pagination.interface.d.ts.map +1 -0
  573. package/dist/core/jsonapi/interfaces/jsonapi.pagination.interface.js +3 -0
  574. package/dist/core/jsonapi/interfaces/jsonapi.pagination.interface.js.map +1 -0
  575. package/dist/core/jsonapi/interfaces/jsonapi.relationship.builder.interface.d.ts +5 -0
  576. package/dist/core/jsonapi/interfaces/jsonapi.relationship.builder.interface.d.ts.map +1 -0
  577. package/dist/core/jsonapi/interfaces/jsonapi.relationship.builder.interface.js +3 -0
  578. package/dist/core/jsonapi/interfaces/jsonapi.relationship.builder.interface.js.map +1 -0
  579. package/dist/core/jsonapi/interfaces/jsonapi.service.interface.d.ts +8 -0
  580. package/dist/core/jsonapi/interfaces/jsonapi.service.interface.d.ts.map +1 -0
  581. package/dist/core/jsonapi/interfaces/jsonapi.service.interface.js +3 -0
  582. package/dist/core/jsonapi/interfaces/jsonapi.service.interface.js.map +1 -0
  583. package/dist/core/jsonapi/jsonapi.module.d.ts +12 -0
  584. package/dist/core/jsonapi/jsonapi.module.d.ts.map +1 -0
  585. package/dist/core/jsonapi/jsonapi.module.js +50 -0
  586. package/dist/core/jsonapi/jsonapi.module.js.map +1 -0
  587. package/dist/core/jsonapi/serialisers/descriptor.based.serialiser.d.ts +28 -0
  588. package/dist/core/jsonapi/serialisers/descriptor.based.serialiser.d.ts.map +1 -0
  589. package/dist/core/jsonapi/serialisers/descriptor.based.serialiser.js +121 -0
  590. package/dist/core/jsonapi/serialisers/descriptor.based.serialiser.js.map +1 -0
  591. package/dist/core/jsonapi/serialisers/jsonapi.paginator.d.ts +29 -0
  592. package/dist/core/jsonapi/serialisers/jsonapi.paginator.d.ts.map +1 -0
  593. package/dist/core/jsonapi/serialisers/jsonapi.paginator.js +183 -0
  594. package/dist/core/jsonapi/serialisers/jsonapi.paginator.js.map +1 -0
  595. package/dist/core/jsonapi/services/jsonapi.service.d.ts +26 -0
  596. package/dist/core/jsonapi/services/jsonapi.service.d.ts.map +1 -0
  597. package/dist/core/jsonapi/services/jsonapi.service.js +277 -0
  598. package/dist/core/jsonapi/services/jsonapi.service.js.map +1 -0
  599. package/dist/core/jsonapi/types/JsonApiIncludedFields.d.ts +5 -0
  600. package/dist/core/jsonapi/types/JsonApiIncludedFields.d.ts.map +1 -0
  601. package/dist/core/jsonapi/types/JsonApiIncludedFields.js +3 -0
  602. package/dist/core/jsonapi/types/JsonApiIncludedFields.js.map +1 -0
  603. package/dist/core/llm/abstracts/abstract.tools.d.ts +62 -0
  604. package/dist/core/llm/abstracts/abstract.tools.d.ts.map +1 -0
  605. package/dist/core/llm/abstracts/abstract.tools.js +69 -0
  606. package/dist/core/llm/abstracts/abstract.tools.js.map +1 -0
  607. package/dist/core/llm/index.d.ts +8 -0
  608. package/dist/core/llm/index.d.ts.map +1 -0
  609. package/dist/core/llm/index.js +24 -0
  610. package/dist/core/llm/index.js.map +1 -0
  611. package/dist/core/llm/llm.module.d.ts +16 -0
  612. package/dist/core/llm/llm.module.d.ts.map +1 -0
  613. package/dist/core/llm/llm.module.js +39 -0
  614. package/dist/core/llm/llm.module.js.map +1 -0
  615. package/dist/core/llm/services/embedder.service.d.ts +10 -0
  616. package/dist/core/llm/services/embedder.service.d.ts.map +1 -0
  617. package/dist/core/llm/services/embedder.service.js +31 -0
  618. package/dist/core/llm/services/embedder.service.js.map +1 -0
  619. package/dist/core/llm/services/llm.service.d.ts +196 -0
  620. package/dist/core/llm/services/llm.service.d.ts.map +1 -0
  621. package/dist/core/llm/services/llm.service.js +457 -0
  622. package/dist/core/llm/services/llm.service.js.map +1 -0
  623. package/dist/core/llm/services/model.service.d.ts +60 -0
  624. package/dist/core/llm/services/model.service.d.ts.map +1 -0
  625. package/dist/core/llm/services/model.service.js +215 -0
  626. package/dist/core/llm/services/model.service.js.map +1 -0
  627. package/dist/core/llm/services/vision.llm.service.d.ts +47 -0
  628. package/dist/core/llm/services/vision.llm.service.d.ts.map +1 -0
  629. package/dist/core/llm/services/vision.llm.service.js +105 -0
  630. package/dist/core/llm/services/vision.llm.service.js.map +1 -0
  631. package/dist/core/llm/types/llm.atomicfact.d.ts +6 -0
  632. package/dist/core/llm/types/llm.atomicfact.d.ts.map +1 -0
  633. package/dist/core/llm/types/llm.atomicfact.js +3 -0
  634. package/dist/core/llm/types/llm.atomicfact.js.map +1 -0
  635. package/dist/core/llm/types/llm.chunk.d.ts +8 -0
  636. package/dist/core/llm/types/llm.chunk.d.ts.map +1 -0
  637. package/dist/core/llm/types/llm.chunk.js +3 -0
  638. package/dist/core/llm/types/llm.chunk.js.map +1 -0
  639. package/dist/core/llm/types/llm.keyconcept.d.ts +4 -0
  640. package/dist/core/llm/types/llm.keyconcept.d.ts.map +1 -0
  641. package/dist/core/llm/types/llm.keyconcept.js +3 -0
  642. package/dist/core/llm/types/llm.keyconcept.js.map +1 -0
  643. package/dist/core/llm/types/llm.keyconcept.relationship.d.ts +8 -0
  644. package/dist/core/llm/types/llm.keyconcept.relationship.d.ts.map +1 -0
  645. package/dist/core/llm/types/llm.keyconcept.relationship.js +3 -0
  646. package/dist/core/llm/types/llm.keyconcept.relationship.js.map +1 -0
  647. package/dist/core/llm/utils/schema.utils.d.ts +89 -0
  648. package/dist/core/llm/utils/schema.utils.d.ts.map +1 -0
  649. package/dist/core/llm/utils/schema.utils.js +155 -0
  650. package/dist/core/llm/utils/schema.utils.js.map +1 -0
  651. package/dist/core/llm/utils/tools.utils.d.ts +56 -0
  652. package/dist/core/llm/utils/tools.utils.d.ts.map +1 -0
  653. package/dist/core/llm/utils/tools.utils.js +74 -0
  654. package/dist/core/llm/utils/tools.utils.js.map +1 -0
  655. package/dist/core/logging/index.d.ts +11 -0
  656. package/dist/core/logging/index.d.ts.map +1 -0
  657. package/dist/core/logging/index.js +30 -0
  658. package/dist/core/logging/index.js.map +1 -0
  659. package/dist/core/logging/interceptors/logging.interceptor.d.ts +12 -0
  660. package/dist/core/logging/interceptors/logging.interceptor.d.ts.map +1 -0
  661. package/dist/core/logging/interceptors/logging.interceptor.js +82 -0
  662. package/dist/core/logging/interceptors/logging.interceptor.js.map +1 -0
  663. package/dist/core/logging/interfaces/logging.interface.d.ts +35 -0
  664. package/dist/core/logging/interfaces/logging.interface.d.ts.map +1 -0
  665. package/dist/core/logging/interfaces/logging.interface.js +3 -0
  666. package/dist/core/logging/interfaces/logging.interface.js.map +1 -0
  667. package/dist/core/logging/logging.module.d.ts +3 -0
  668. package/dist/core/logging/logging.module.d.ts.map +1 -0
  669. package/dist/core/logging/logging.module.js +23 -0
  670. package/dist/core/logging/logging.module.js.map +1 -0
  671. package/dist/core/logging/services/logging.service.d.ts +32 -0
  672. package/dist/core/logging/services/logging.service.d.ts.map +1 -0
  673. package/dist/core/logging/services/logging.service.js +373 -0
  674. package/dist/core/logging/services/logging.service.js.map +1 -0
  675. package/dist/core/migrator/index.d.ts +4 -0
  676. package/dist/core/migrator/index.d.ts.map +1 -0
  677. package/dist/core/migrator/index.js +20 -0
  678. package/dist/core/migrator/index.js.map +1 -0
  679. package/dist/core/migrator/interfaces/migration.interface.d.ts +5 -0
  680. package/dist/core/migrator/interfaces/migration.interface.d.ts.map +1 -0
  681. package/dist/core/migrator/interfaces/migration.interface.js +3 -0
  682. package/dist/core/migrator/interfaces/migration.interface.js.map +1 -0
  683. package/dist/core/migrator/migrator.module.d.ts +27 -0
  684. package/dist/core/migrator/migrator.module.d.ts.map +1 -0
  685. package/dist/core/migrator/migrator.module.js +46 -0
  686. package/dist/core/migrator/migrator.module.js.map +1 -0
  687. package/dist/core/migrator/services/migrator.service.d.ts +40 -0
  688. package/dist/core/migrator/services/migrator.service.d.ts.map +1 -0
  689. package/dist/core/migrator/services/migrator.service.js +195 -0
  690. package/dist/core/migrator/services/migrator.service.js.map +1 -0
  691. package/dist/core/neo4j/abstracts/abstract.repository.d.ts +133 -0
  692. package/dist/core/neo4j/abstracts/abstract.repository.d.ts.map +1 -0
  693. package/dist/core/neo4j/abstracts/abstract.repository.js +509 -0
  694. package/dist/core/neo4j/abstracts/abstract.repository.js.map +1 -0
  695. package/dist/core/neo4j/abstracts/abstract.service.d.ts +166 -0
  696. package/dist/core/neo4j/abstracts/abstract.service.d.ts.map +1 -0
  697. package/dist/core/neo4j/abstracts/abstract.service.js +223 -0
  698. package/dist/core/neo4j/abstracts/abstract.service.js.map +1 -0
  699. package/dist/core/neo4j/abstracts/index.d.ts +3 -0
  700. package/dist/core/neo4j/abstracts/index.d.ts.map +1 -0
  701. package/dist/core/neo4j/abstracts/index.js +19 -0
  702. package/dist/core/neo4j/abstracts/index.js.map +1 -0
  703. package/dist/core/neo4j/factories/entity.factory.d.ts +17 -0
  704. package/dist/core/neo4j/factories/entity.factory.d.ts.map +1 -0
  705. package/dist/core/neo4j/factories/entity.factory.js +401 -0
  706. package/dist/core/neo4j/factories/entity.factory.js.map +1 -0
  707. package/dist/core/neo4j/index.d.ts +16 -0
  708. package/dist/core/neo4j/index.d.ts.map +1 -0
  709. package/dist/core/neo4j/index.js +41 -0
  710. package/dist/core/neo4j/index.js.map +1 -0
  711. package/dist/core/neo4j/neo4j.module.d.ts +3 -0
  712. package/dist/core/neo4j/neo4j.module.d.ts.map +1 -0
  713. package/dist/core/neo4j/neo4j.module.js +24 -0
  714. package/dist/core/neo4j/neo4j.module.js.map +1 -0
  715. package/dist/core/neo4j/queries/order.by.d.ts +11 -0
  716. package/dist/core/neo4j/queries/order.by.d.ts.map +1 -0
  717. package/dist/core/neo4j/queries/order.by.js +36 -0
  718. package/dist/core/neo4j/queries/order.by.js.map +1 -0
  719. package/dist/core/neo4j/queries/update.relationship.d.ts +15 -0
  720. package/dist/core/neo4j/queries/update.relationship.d.ts.map +1 -0
  721. package/dist/core/neo4j/queries/update.relationship.js +57 -0
  722. package/dist/core/neo4j/queries/update.relationship.js.map +1 -0
  723. package/dist/core/neo4j/services/cypher.service.d.ts +21 -0
  724. package/dist/core/neo4j/services/cypher.service.d.ts.map +1 -0
  725. package/dist/core/neo4j/services/cypher.service.js +49 -0
  726. package/dist/core/neo4j/services/cypher.service.js.map +1 -0
  727. package/dist/core/neo4j/services/neo4j.service.d.ts +59 -0
  728. package/dist/core/neo4j/services/neo4j.service.d.ts.map +1 -0
  729. package/dist/core/neo4j/services/neo4j.service.js +266 -0
  730. package/dist/core/neo4j/services/neo4j.service.js.map +1 -0
  731. package/dist/core/neo4j/services/token-resolver.service.d.ts +35 -0
  732. package/dist/core/neo4j/services/token-resolver.service.d.ts.map +1 -0
  733. package/dist/core/neo4j/services/token-resolver.service.js +100 -0
  734. package/dist/core/neo4j/services/token-resolver.service.js.map +1 -0
  735. package/dist/core/queue/index.d.ts +7 -0
  736. package/dist/core/queue/index.d.ts.map +1 -0
  737. package/dist/core/queue/index.js +24 -0
  738. package/dist/core/queue/index.js.map +1 -0
  739. package/dist/core/queue/queue.module.d.ts +19 -0
  740. package/dist/core/queue/queue.module.d.ts.map +1 -0
  741. package/dist/core/queue/queue.module.js +109 -0
  742. package/dist/core/queue/queue.module.js.map +1 -0
  743. package/dist/core/redis/index.d.ts +9 -0
  744. package/dist/core/redis/index.d.ts.map +1 -0
  745. package/dist/core/redis/index.js +25 -0
  746. package/dist/core/redis/index.js.map +1 -0
  747. package/dist/core/redis/redis.module.d.ts +3 -0
  748. package/dist/core/redis/redis.module.d.ts.map +1 -0
  749. package/dist/core/redis/redis.module.js +22 -0
  750. package/dist/core/redis/redis.module.js.map +1 -0
  751. package/dist/core/redis/services/redis.client.storage.service.d.ts +31 -0
  752. package/dist/core/redis/services/redis.client.storage.service.d.ts.map +1 -0
  753. package/dist/core/redis/services/redis.client.storage.service.js +162 -0
  754. package/dist/core/redis/services/redis.client.storage.service.js.map +1 -0
  755. package/dist/core/redis/services/redis.messaging.service.d.ts +28 -0
  756. package/dist/core/redis/services/redis.messaging.service.d.ts.map +1 -0
  757. package/dist/core/redis/services/redis.messaging.service.js +120 -0
  758. package/dist/core/redis/services/redis.messaging.service.js.map +1 -0
  759. package/dist/core/security/index.d.ts +8 -0
  760. package/dist/core/security/index.d.ts.map +1 -0
  761. package/dist/core/security/index.js +24 -0
  762. package/dist/core/security/index.js.map +1 -0
  763. package/dist/core/security/security.module.d.ts +3 -0
  764. package/dist/core/security/security.module.d.ts.map +1 -0
  765. package/dist/core/security/security.module.js +26 -0
  766. package/dist/core/security/security.module.js.map +1 -0
  767. package/dist/core/security/services/security.service.d.ts +30 -0
  768. package/dist/core/security/services/security.service.d.ts.map +1 -0
  769. package/dist/core/security/services/security.service.js +109 -0
  770. package/dist/core/security/services/security.service.js.map +1 -0
  771. package/dist/core/stripe/errors/stripe.errors.d.ts +9 -0
  772. package/dist/core/stripe/errors/stripe.errors.d.ts.map +1 -0
  773. package/dist/core/stripe/errors/stripe.errors.js +54 -0
  774. package/dist/core/stripe/errors/stripe.errors.js.map +1 -0
  775. package/dist/core/stripe/index.d.ts +12 -0
  776. package/dist/core/stripe/index.d.ts.map +1 -0
  777. package/dist/core/stripe/index.js +28 -0
  778. package/dist/core/stripe/index.js.map +1 -0
  779. package/dist/core/stripe/services/stripe.customer.service.d.ts +25 -0
  780. package/dist/core/stripe/services/stripe.customer.service.d.ts.map +1 -0
  781. package/dist/core/stripe/services/stripe.customer.service.js +124 -0
  782. package/dist/core/stripe/services/stripe.customer.service.js.map +1 -0
  783. package/dist/core/stripe/services/stripe.invoice.service.d.ts +20 -0
  784. package/dist/core/stripe/services/stripe.invoice.service.d.ts.map +1 -0
  785. package/dist/core/stripe/services/stripe.invoice.service.js +102 -0
  786. package/dist/core/stripe/services/stripe.invoice.service.js.map +1 -0
  787. package/dist/core/stripe/services/stripe.payment.service.d.ts +25 -0
  788. package/dist/core/stripe/services/stripe.payment.service.d.ts.map +1 -0
  789. package/dist/core/stripe/services/stripe.payment.service.js +111 -0
  790. package/dist/core/stripe/services/stripe.payment.service.js.map +1 -0
  791. package/dist/core/stripe/services/stripe.portal.service.d.ts +8 -0
  792. package/dist/core/stripe/services/stripe.portal.service.d.ts.map +1 -0
  793. package/dist/core/stripe/services/stripe.portal.service.js +44 -0
  794. package/dist/core/stripe/services/stripe.portal.service.js.map +1 -0
  795. package/dist/core/stripe/services/stripe.product.service.d.ts +46 -0
  796. package/dist/core/stripe/services/stripe.product.service.d.ts.map +1 -0
  797. package/dist/core/stripe/services/stripe.product.service.js +161 -0
  798. package/dist/core/stripe/services/stripe.product.service.js.map +1 -0
  799. package/dist/core/stripe/services/stripe.service.d.ts +36 -0
  800. package/dist/core/stripe/services/stripe.service.d.ts.map +1 -0
  801. package/dist/core/stripe/services/stripe.service.js +89 -0
  802. package/dist/core/stripe/services/stripe.service.js.map +1 -0
  803. package/dist/core/stripe/services/stripe.subscription.service.d.ts +26 -0
  804. package/dist/core/stripe/services/stripe.subscription.service.d.ts.map +1 -0
  805. package/dist/core/stripe/services/stripe.subscription.service.js +166 -0
  806. package/dist/core/stripe/services/stripe.subscription.service.js.map +1 -0
  807. package/dist/core/stripe/services/stripe.usage.service.d.ts +35 -0
  808. package/dist/core/stripe/services/stripe.usage.service.d.ts.map +1 -0
  809. package/dist/core/stripe/services/stripe.usage.service.js +100 -0
  810. package/dist/core/stripe/services/stripe.usage.service.js.map +1 -0
  811. package/dist/core/stripe/services/stripe.webhook.service.d.ts +24 -0
  812. package/dist/core/stripe/services/stripe.webhook.service.d.ts.map +1 -0
  813. package/dist/core/stripe/services/stripe.webhook.service.js +63 -0
  814. package/dist/core/stripe/services/stripe.webhook.service.js.map +1 -0
  815. package/dist/core/stripe/stripe.module.d.ts +21 -0
  816. package/dist/core/stripe/stripe.module.d.ts.map +1 -0
  817. package/dist/core/stripe/stripe.module.js +66 -0
  818. package/dist/core/stripe/stripe.module.js.map +1 -0
  819. package/dist/core/tracing/index.d.ts +12 -0
  820. package/dist/core/tracing/index.d.ts.map +1 -0
  821. package/dist/core/tracing/index.js +33 -0
  822. package/dist/core/tracing/index.js.map +1 -0
  823. package/dist/core/tracing/interceptors/tracing.interceptor.d.ts +9 -0
  824. package/dist/core/tracing/interceptors/tracing.interceptor.d.ts.map +1 -0
  825. package/dist/core/tracing/interceptors/tracing.interceptor.js +119 -0
  826. package/dist/core/tracing/interceptors/tracing.interceptor.js.map +1 -0
  827. package/dist/core/tracing/interfaces/tracing.interface.d.ts +14 -0
  828. package/dist/core/tracing/interfaces/tracing.interface.d.ts.map +1 -0
  829. package/dist/core/tracing/interfaces/tracing.interface.js +3 -0
  830. package/dist/core/tracing/interfaces/tracing.interface.js.map +1 -0
  831. package/dist/core/tracing/services/tracing.service.d.ts +74 -0
  832. package/dist/core/tracing/services/tracing.service.d.ts.map +1 -0
  833. package/dist/core/tracing/services/tracing.service.js +262 -0
  834. package/dist/core/tracing/services/tracing.service.js.map +1 -0
  835. package/dist/core/tracing/tracing.module.d.ts +12 -0
  836. package/dist/core/tracing/tracing.module.d.ts.map +1 -0
  837. package/dist/core/tracing/tracing.module.js +46 -0
  838. package/dist/core/tracing/tracing.module.js.map +1 -0
  839. package/dist/core/tracing/tracing.setup.d.ts +17 -0
  840. package/dist/core/tracing/tracing.setup.d.ts.map +1 -0
  841. package/dist/core/tracing/tracing.setup.js +94 -0
  842. package/dist/core/tracing/tracing.setup.js.map +1 -0
  843. package/dist/core/version/index.d.ts +3 -0
  844. package/dist/core/version/index.d.ts.map +1 -0
  845. package/dist/core/version/index.js +19 -0
  846. package/dist/core/version/index.js.map +1 -0
  847. package/dist/core/version/services/version.service.d.ts +6 -0
  848. package/dist/core/version/services/version.service.d.ts.map +1 -0
  849. package/dist/core/version/services/version.service.js +27 -0
  850. package/dist/core/version/services/version.service.js.map +1 -0
  851. package/dist/core/version/version.module.d.ts +5 -0
  852. package/dist/core/version/version.module.d.ts.map +1 -0
  853. package/dist/core/version/version.module.js +27 -0
  854. package/dist/core/version/version.module.js.map +1 -0
  855. package/dist/core/websocket/gateways/event.gateway.d.ts +41 -0
  856. package/dist/core/websocket/gateways/event.gateway.d.ts.map +1 -0
  857. package/dist/core/websocket/gateways/event.gateway.js +164 -0
  858. package/dist/core/websocket/gateways/event.gateway.js.map +1 -0
  859. package/dist/core/websocket/guards/ws.jwt.auth.guard.d.ts +13 -0
  860. package/dist/core/websocket/guards/ws.jwt.auth.guard.d.ts.map +1 -0
  861. package/dist/core/websocket/guards/ws.jwt.auth.guard.js +62 -0
  862. package/dist/core/websocket/guards/ws.jwt.auth.guard.js.map +1 -0
  863. package/dist/core/websocket/index.d.ts +4 -0
  864. package/dist/core/websocket/index.d.ts.map +1 -0
  865. package/dist/core/websocket/index.js +20 -0
  866. package/dist/core/websocket/index.js.map +1 -0
  867. package/dist/core/websocket/services/presence.service.d.ts +59 -0
  868. package/dist/core/websocket/services/presence.service.d.ts.map +1 -0
  869. package/dist/core/websocket/services/presence.service.js +255 -0
  870. package/dist/core/websocket/services/presence.service.js.map +1 -0
  871. package/dist/core/websocket/services/websocket.service.d.ts +45 -0
  872. package/dist/core/websocket/services/websocket.service.d.ts.map +1 -0
  873. package/dist/core/websocket/services/websocket.service.js +169 -0
  874. package/dist/core/websocket/services/websocket.service.js.map +1 -0
  875. package/dist/core/websocket/websocket.module.d.ts +25 -0
  876. package/dist/core/websocket/websocket.module.d.ts.map +1 -0
  877. package/dist/core/websocket/websocket.module.js +57 -0
  878. package/dist/core/websocket/websocket.module.js.map +1 -0
  879. package/dist/foundations/atomicfact/atomicfact.module.d.ts +5 -0
  880. package/dist/foundations/atomicfact/atomicfact.module.d.ts.map +1 -0
  881. package/dist/foundations/atomicfact/atomicfact.module.js +29 -0
  882. package/dist/foundations/atomicfact/atomicfact.module.js.map +1 -0
  883. package/dist/foundations/atomicfact/entities/atomic.fact.entity.d.ts +7 -0
  884. package/dist/foundations/atomicfact/entities/atomic.fact.entity.d.ts.map +1 -0
  885. package/dist/foundations/atomicfact/entities/atomic.fact.entity.js +3 -0
  886. package/dist/foundations/atomicfact/entities/atomic.fact.entity.js.map +1 -0
  887. package/dist/foundations/atomicfact/entities/atomic.fact.map.d.ts +8 -0
  888. package/dist/foundations/atomicfact/entities/atomic.fact.map.d.ts.map +1 -0
  889. package/dist/foundations/atomicfact/entities/atomic.fact.map.js +13 -0
  890. package/dist/foundations/atomicfact/entities/atomic.fact.map.js.map +1 -0
  891. package/dist/foundations/atomicfact/entities/atomic.fact.meta.d.ts +3 -0
  892. package/dist/foundations/atomicfact/entities/atomic.fact.meta.d.ts.map +1 -0
  893. package/dist/foundations/atomicfact/entities/atomic.fact.meta.js +10 -0
  894. package/dist/foundations/atomicfact/entities/atomic.fact.meta.js.map +1 -0
  895. package/dist/foundations/atomicfact/entities/atomic.fact.model.d.ts +4 -0
  896. package/dist/foundations/atomicfact/entities/atomic.fact.model.d.ts.map +1 -0
  897. package/dist/foundations/atomicfact/entities/atomic.fact.model.js +13 -0
  898. package/dist/foundations/atomicfact/entities/atomic.fact.model.js.map +1 -0
  899. package/dist/foundations/atomicfact/index.d.ts +4 -0
  900. package/dist/foundations/atomicfact/index.d.ts.map +1 -0
  901. package/dist/foundations/atomicfact/index.js +8 -0
  902. package/dist/foundations/atomicfact/index.js.map +1 -0
  903. package/dist/foundations/atomicfact/repositories/atomicfact.repository.d.ts +32 -0
  904. package/dist/foundations/atomicfact/repositories/atomicfact.repository.d.ts.map +1 -0
  905. package/dist/foundations/atomicfact/repositories/atomicfact.repository.js +111 -0
  906. package/dist/foundations/atomicfact/repositories/atomicfact.repository.js.map +1 -0
  907. package/dist/foundations/atomicfact/services/atomicfact.service.d.ts +14 -0
  908. package/dist/foundations/atomicfact/services/atomicfact.service.d.ts.map +1 -0
  909. package/dist/foundations/atomicfact/services/atomicfact.service.js +47 -0
  910. package/dist/foundations/atomicfact/services/atomicfact.service.js.map +1 -0
  911. package/dist/foundations/audit/audit.module.d.ts +5 -0
  912. package/dist/foundations/audit/audit.module.d.ts.map +1 -0
  913. package/dist/foundations/audit/audit.module.js +33 -0
  914. package/dist/foundations/audit/audit.module.js.map +1 -0
  915. package/dist/foundations/audit/controllers/audit.controller.d.ts +9 -0
  916. package/dist/foundations/audit/controllers/audit.controller.d.ts.map +1 -0
  917. package/dist/foundations/audit/controllers/audit.controller.js +47 -0
  918. package/dist/foundations/audit/controllers/audit.controller.js.map +1 -0
  919. package/dist/foundations/audit/entities/audit.entity.d.ts +8 -0
  920. package/dist/foundations/audit/entities/audit.entity.d.ts.map +1 -0
  921. package/dist/foundations/audit/entities/audit.entity.js +3 -0
  922. package/dist/foundations/audit/entities/audit.entity.js.map +1 -0
  923. package/dist/foundations/audit/entities/audit.map.d.ts +8 -0
  924. package/dist/foundations/audit/entities/audit.map.d.ts.map +1 -0
  925. package/dist/foundations/audit/entities/audit.map.js +15 -0
  926. package/dist/foundations/audit/entities/audit.map.js.map +1 -0
  927. package/dist/foundations/audit/entities/audit.meta.d.ts +3 -0
  928. package/dist/foundations/audit/entities/audit.meta.d.ts.map +1 -0
  929. package/dist/foundations/audit/entities/audit.meta.js +10 -0
  930. package/dist/foundations/audit/entities/audit.meta.js.map +1 -0
  931. package/dist/foundations/audit/entities/audit.model.d.ts +4 -0
  932. package/dist/foundations/audit/entities/audit.model.d.ts.map +1 -0
  933. package/dist/foundations/audit/entities/audit.model.js +17 -0
  934. package/dist/foundations/audit/entities/audit.model.js.map +1 -0
  935. package/dist/foundations/audit/index.d.ts +7 -0
  936. package/dist/foundations/audit/index.d.ts.map +1 -0
  937. package/dist/foundations/audit/index.js +14 -0
  938. package/dist/foundations/audit/index.js.map +1 -0
  939. package/dist/foundations/audit/repositories/audit.repository.d.ts +20 -0
  940. package/dist/foundations/audit/repositories/audit.repository.d.ts.map +1 -0
  941. package/dist/foundations/audit/repositories/audit.repository.js +72 -0
  942. package/dist/foundations/audit/repositories/audit.repository.js.map +1 -0
  943. package/dist/foundations/audit/serialisers/audit.serialiser.d.ts +14 -0
  944. package/dist/foundations/audit/serialisers/audit.serialiser.d.ts.map +1 -0
  945. package/dist/foundations/audit/serialisers/audit.serialiser.js +52 -0
  946. package/dist/foundations/audit/serialisers/audit.serialiser.js.map +1 -0
  947. package/dist/foundations/audit/services/audit.service.d.ts +18 -0
  948. package/dist/foundations/audit/services/audit.service.d.ts.map +1 -0
  949. package/dist/foundations/audit/services/audit.service.js +54 -0
  950. package/dist/foundations/audit/services/audit.service.js.map +1 -0
  951. package/dist/foundations/auth/auth.module.d.ts +5 -0
  952. package/dist/foundations/auth/auth.module.d.ts.map +1 -0
  953. package/dist/foundations/auth/auth.module.js +36 -0
  954. package/dist/foundations/auth/auth.module.js.map +1 -0
  955. package/dist/foundations/auth/controllers/auth.controller.d.ts +20 -0
  956. package/dist/foundations/auth/controllers/auth.controller.d.ts.map +1 -0
  957. package/dist/foundations/auth/controllers/auth.controller.js +148 -0
  958. package/dist/foundations/auth/controllers/auth.controller.js.map +1 -0
  959. package/dist/foundations/auth/dtos/auth.post.forgot.dto.d.ts +11 -0
  960. package/dist/foundations/auth/dtos/auth.post.forgot.dto.d.ts.map +1 -0
  961. package/dist/foundations/auth/dtos/auth.post.forgot.dto.js +46 -0
  962. package/dist/foundations/auth/dtos/auth.post.forgot.dto.js.map +1 -0
  963. package/dist/foundations/auth/dtos/auth.post.login.dto.d.ts +12 -0
  964. package/dist/foundations/auth/dtos/auth.post.login.dto.d.ts.map +1 -0
  965. package/dist/foundations/auth/dtos/auth.post.login.dto.js +53 -0
  966. package/dist/foundations/auth/dtos/auth.post.login.dto.js.map +1 -0
  967. package/dist/foundations/auth/dtos/auth.post.register.dto.d.ts +14 -0
  968. package/dist/foundations/auth/dtos/auth.post.register.dto.d.ts.map +1 -0
  969. package/dist/foundations/auth/dtos/auth.post.register.dto.js +60 -0
  970. package/dist/foundations/auth/dtos/auth.post.register.dto.js.map +1 -0
  971. package/dist/foundations/auth/dtos/auth.post.resetpassword.dto.d.ts +11 -0
  972. package/dist/foundations/auth/dtos/auth.post.resetpassword.dto.d.ts.map +1 -0
  973. package/dist/foundations/auth/dtos/auth.post.resetpassword.dto.js +46 -0
  974. package/dist/foundations/auth/dtos/auth.post.resetpassword.dto.js.map +1 -0
  975. package/dist/foundations/auth/entities/auth.code.entity.d.ts +7 -0
  976. package/dist/foundations/auth/entities/auth.code.entity.d.ts.map +1 -0
  977. package/dist/foundations/auth/entities/auth.code.entity.js +3 -0
  978. package/dist/foundations/auth/entities/auth.code.entity.js.map +1 -0
  979. package/dist/foundations/auth/entities/auth.code.map.d.ts +8 -0
  980. package/dist/foundations/auth/entities/auth.code.map.d.ts.map +1 -0
  981. package/dist/foundations/auth/entities/auth.code.map.js +13 -0
  982. package/dist/foundations/auth/entities/auth.code.map.js.map +1 -0
  983. package/dist/foundations/auth/entities/auth.code.meta.d.ts +3 -0
  984. package/dist/foundations/auth/entities/auth.code.meta.d.ts.map +1 -0
  985. package/dist/foundations/auth/entities/auth.code.meta.js +10 -0
  986. package/dist/foundations/auth/entities/auth.code.meta.js.map +1 -0
  987. package/dist/foundations/auth/entities/auth.code.model.d.ts +4 -0
  988. package/dist/foundations/auth/entities/auth.code.model.d.ts.map +1 -0
  989. package/dist/foundations/auth/entities/auth.code.model.js +13 -0
  990. package/dist/foundations/auth/entities/auth.code.model.js.map +1 -0
  991. package/dist/foundations/auth/entities/auth.entity.d.ts +8 -0
  992. package/dist/foundations/auth/entities/auth.entity.d.ts.map +1 -0
  993. package/dist/foundations/auth/entities/auth.entity.js +3 -0
  994. package/dist/foundations/auth/entities/auth.entity.js.map +1 -0
  995. package/dist/foundations/auth/entities/auth.map.d.ts +8 -0
  996. package/dist/foundations/auth/entities/auth.map.d.ts.map +1 -0
  997. package/dist/foundations/auth/entities/auth.map.js +14 -0
  998. package/dist/foundations/auth/entities/auth.map.js.map +1 -0
  999. package/dist/foundations/auth/entities/auth.meta.d.ts +3 -0
  1000. package/dist/foundations/auth/entities/auth.meta.d.ts.map +1 -0
  1001. package/dist/foundations/auth/entities/auth.meta.js +10 -0
  1002. package/dist/foundations/auth/entities/auth.meta.js.map +1 -0
  1003. package/dist/foundations/auth/entities/auth.model.d.ts +4 -0
  1004. package/dist/foundations/auth/entities/auth.model.d.ts.map +1 -0
  1005. package/dist/foundations/auth/entities/auth.model.js +15 -0
  1006. package/dist/foundations/auth/entities/auth.model.js.map +1 -0
  1007. package/dist/foundations/auth/index.d.ts +2 -0
  1008. package/dist/foundations/auth/index.d.ts.map +1 -0
  1009. package/dist/foundations/auth/index.js +6 -0
  1010. package/dist/foundations/auth/index.js.map +1 -0
  1011. package/dist/foundations/auth/repositories/auth.repository.d.ts +75 -0
  1012. package/dist/foundations/auth/repositories/auth.repository.d.ts.map +1 -0
  1013. package/dist/foundations/auth/repositories/auth.repository.js +581 -0
  1014. package/dist/foundations/auth/repositories/auth.repository.js.map +1 -0
  1015. package/dist/foundations/auth/serialisers/auth.serialiser.d.ts +13 -0
  1016. package/dist/foundations/auth/serialisers/auth.serialiser.d.ts.map +1 -0
  1017. package/dist/foundations/auth/serialisers/auth.serialiser.js +48 -0
  1018. package/dist/foundations/auth/serialisers/auth.serialiser.js.map +1 -0
  1019. package/dist/foundations/auth/services/auth.service.d.ts +67 -0
  1020. package/dist/foundations/auth/services/auth.service.d.ts.map +1 -0
  1021. package/dist/foundations/auth/services/auth.service.js +260 -0
  1022. package/dist/foundations/auth/services/auth.service.js.map +1 -0
  1023. package/dist/foundations/chunk/chunk.module.d.ts +12 -0
  1024. package/dist/foundations/chunk/chunk.module.d.ts.map +1 -0
  1025. package/dist/foundations/chunk/chunk.module.js +46 -0
  1026. package/dist/foundations/chunk/chunk.module.js.map +1 -0
  1027. package/dist/foundations/chunk/controllers/chunk.controller.d.ts +7 -0
  1028. package/dist/foundations/chunk/controllers/chunk.controller.d.ts.map +1 -0
  1029. package/dist/foundations/chunk/controllers/chunk.controller.js +41 -0
  1030. package/dist/foundations/chunk/controllers/chunk.controller.js.map +1 -0
  1031. package/dist/foundations/chunk/entities/chunk.entity.d.ts +12 -0
  1032. package/dist/foundations/chunk/entities/chunk.entity.d.ts.map +1 -0
  1033. package/dist/foundations/chunk/entities/chunk.entity.js +3 -0
  1034. package/dist/foundations/chunk/entities/chunk.entity.js.map +1 -0
  1035. package/dist/foundations/chunk/entities/chunk.map.d.ts +8 -0
  1036. package/dist/foundations/chunk/entities/chunk.map.d.ts.map +1 -0
  1037. package/dist/foundations/chunk/entities/chunk.map.js +31 -0
  1038. package/dist/foundations/chunk/entities/chunk.map.js.map +1 -0
  1039. package/dist/foundations/chunk/entities/chunk.meta.d.ts +3 -0
  1040. package/dist/foundations/chunk/entities/chunk.meta.d.ts.map +1 -0
  1041. package/dist/foundations/chunk/entities/chunk.meta.js +10 -0
  1042. package/dist/foundations/chunk/entities/chunk.meta.js.map +1 -0
  1043. package/dist/foundations/chunk/entities/chunk.model.d.ts +4 -0
  1044. package/dist/foundations/chunk/entities/chunk.model.d.ts.map +1 -0
  1045. package/dist/foundations/chunk/entities/chunk.model.js +13 -0
  1046. package/dist/foundations/chunk/entities/chunk.model.js.map +1 -0
  1047. package/dist/foundations/chunk/index.d.ts +7 -0
  1048. package/dist/foundations/chunk/index.d.ts.map +1 -0
  1049. package/dist/foundations/chunk/index.js +14 -0
  1050. package/dist/foundations/chunk/index.js.map +1 -0
  1051. package/dist/foundations/chunk/processors/chunk.processor.d.ts +21 -0
  1052. package/dist/foundations/chunk/processors/chunk.processor.d.ts.map +1 -0
  1053. package/dist/foundations/chunk/processors/chunk.processor.js +83 -0
  1054. package/dist/foundations/chunk/processors/chunk.processor.js.map +1 -0
  1055. package/dist/foundations/chunk/repositories/chunk.repository.d.ts +69 -0
  1056. package/dist/foundations/chunk/repositories/chunk.repository.d.ts.map +1 -0
  1057. package/dist/foundations/chunk/repositories/chunk.repository.js +259 -0
  1058. package/dist/foundations/chunk/repositories/chunk.repository.js.map +1 -0
  1059. package/dist/foundations/chunk/serialisers/chunk.serialiser.d.ts +14 -0
  1060. package/dist/foundations/chunk/serialisers/chunk.serialiser.d.ts.map +1 -0
  1061. package/dist/foundations/chunk/serialisers/chunk.serialiser.js +54 -0
  1062. package/dist/foundations/chunk/serialisers/chunk.serialiser.js.map +1 -0
  1063. package/dist/foundations/chunk/services/chunk.service.d.ts +61 -0
  1064. package/dist/foundations/chunk/services/chunk.service.d.ts.map +1 -0
  1065. package/dist/foundations/chunk/services/chunk.service.js +282 -0
  1066. package/dist/foundations/chunk/services/chunk.service.js.map +1 -0
  1067. package/dist/foundations/chunker/chunker.module.d.ts +3 -0
  1068. package/dist/foundations/chunker/chunker.module.d.ts.map +1 -0
  1069. package/dist/foundations/chunker/chunker.module.js +38 -0
  1070. package/dist/foundations/chunker/chunker.module.js.map +1 -0
  1071. package/dist/foundations/chunker/constants/file.types.d.ts +3 -0
  1072. package/dist/foundations/chunker/constants/file.types.d.ts.map +1 -0
  1073. package/dist/foundations/chunker/constants/file.types.js +9 -0
  1074. package/dist/foundations/chunker/constants/file.types.js.map +1 -0
  1075. package/dist/foundations/chunker/index.d.ts +4 -0
  1076. package/dist/foundations/chunker/index.d.ts.map +1 -0
  1077. package/dist/foundations/chunker/index.js +20 -0
  1078. package/dist/foundations/chunker/index.js.map +1 -0
  1079. package/dist/foundations/chunker/loaders/json.loader.d.ts +23 -0
  1080. package/dist/foundations/chunker/loaders/json.loader.d.ts.map +1 -0
  1081. package/dist/foundations/chunker/loaders/json.loader.js +113 -0
  1082. package/dist/foundations/chunker/loaders/json.loader.js.map +1 -0
  1083. package/dist/foundations/chunker/loaders/text.loader.d.ts +12 -0
  1084. package/dist/foundations/chunker/loaders/text.loader.d.ts.map +1 -0
  1085. package/dist/foundations/chunker/loaders/text.loader.js +56 -0
  1086. package/dist/foundations/chunker/loaders/text.loader.js.map +1 -0
  1087. package/dist/foundations/chunker/services/chunker.service.d.ts +36 -0
  1088. package/dist/foundations/chunker/services/chunker.service.d.ts.map +1 -0
  1089. package/dist/foundations/chunker/services/chunker.service.js +371 -0
  1090. package/dist/foundations/chunker/services/chunker.service.js.map +1 -0
  1091. package/dist/foundations/chunker/services/types/docx.service.d.ts +26 -0
  1092. package/dist/foundations/chunker/services/types/docx.service.d.ts.map +1 -0
  1093. package/dist/foundations/chunker/services/types/docx.service.js +501 -0
  1094. package/dist/foundations/chunker/services/types/docx.service.js.map +1 -0
  1095. package/dist/foundations/chunker/services/types/imageextractor.service.d.ts +16 -0
  1096. package/dist/foundations/chunker/services/types/imageextractor.service.d.ts.map +1 -0
  1097. package/dist/foundations/chunker/services/types/imageextractor.service.js +196 -0
  1098. package/dist/foundations/chunker/services/types/imageextractor.service.js.map +1 -0
  1099. package/dist/foundations/chunker/services/types/pdf/extractors/layout.extractor.d.ts +14 -0
  1100. package/dist/foundations/chunker/services/types/pdf/extractors/layout.extractor.d.ts.map +1 -0
  1101. package/dist/foundations/chunker/services/types/pdf/extractors/layout.extractor.js +198 -0
  1102. package/dist/foundations/chunker/services/types/pdf/extractors/layout.extractor.js.map +1 -0
  1103. package/dist/foundations/chunker/services/types/pdf/extractors/table.extractor.d.ts +27 -0
  1104. package/dist/foundations/chunker/services/types/pdf/extractors/table.extractor.d.ts.map +1 -0
  1105. package/dist/foundations/chunker/services/types/pdf/extractors/table.extractor.js +396 -0
  1106. package/dist/foundations/chunker/services/types/pdf/extractors/table.extractor.js.map +1 -0
  1107. package/dist/foundations/chunker/services/types/pdf/interfaces/pdf-content.interface.d.ts +89 -0
  1108. package/dist/foundations/chunker/services/types/pdf/interfaces/pdf-content.interface.d.ts.map +1 -0
  1109. package/dist/foundations/chunker/services/types/pdf/interfaces/pdf-content.interface.js +3 -0
  1110. package/dist/foundations/chunker/services/types/pdf/interfaces/pdf-content.interface.js.map +1 -0
  1111. package/dist/foundations/chunker/services/types/pdf/interfaces/pdf-element.interface.d.ts +95 -0
  1112. package/dist/foundations/chunker/services/types/pdf/interfaces/pdf-element.interface.d.ts.map +1 -0
  1113. package/dist/foundations/chunker/services/types/pdf/interfaces/pdf-element.interface.js +3 -0
  1114. package/dist/foundations/chunker/services/types/pdf/interfaces/pdf-element.interface.js.map +1 -0
  1115. package/dist/foundations/chunker/services/types/pdf/interfaces/pdf-layout.interface.d.ts +86 -0
  1116. package/dist/foundations/chunker/services/types/pdf/interfaces/pdf-layout.interface.d.ts.map +1 -0
  1117. package/dist/foundations/chunker/services/types/pdf/interfaces/pdf-layout.interface.js +3 -0
  1118. package/dist/foundations/chunker/services/types/pdf/interfaces/pdf-layout.interface.js.map +1 -0
  1119. package/dist/foundations/chunker/services/types/pdf.service.d.ts +64 -0
  1120. package/dist/foundations/chunker/services/types/pdf.service.d.ts.map +1 -0
  1121. package/dist/foundations/chunker/services/types/pdf.service.js +1329 -0
  1122. package/dist/foundations/chunker/services/types/pdf.service.js.map +1 -0
  1123. package/dist/foundations/chunker/services/types/pptx.service.d.ts +11 -0
  1124. package/dist/foundations/chunker/services/types/pptx.service.d.ts.map +1 -0
  1125. package/dist/foundations/chunker/services/types/pptx.service.js +161 -0
  1126. package/dist/foundations/chunker/services/types/pptx.service.js.map +1 -0
  1127. package/dist/foundations/chunker/services/types/semanticsplitter.service.d.ts +40 -0
  1128. package/dist/foundations/chunker/services/types/semanticsplitter.service.d.ts.map +1 -0
  1129. package/dist/foundations/chunker/services/types/semanticsplitter.service.js +634 -0
  1130. package/dist/foundations/chunker/services/types/semanticsplitter.service.js.map +1 -0
  1131. package/dist/foundations/chunker/services/types/xlsx.service.d.ts +22 -0
  1132. package/dist/foundations/chunker/services/types/xlsx.service.d.ts.map +1 -0
  1133. package/dist/foundations/chunker/services/types/xlsx.service.js +284 -0
  1134. package/dist/foundations/chunker/services/types/xlsx.service.js.map +1 -0
  1135. package/dist/foundations/chunker/utils/file.downloader.d.ts +9 -0
  1136. package/dist/foundations/chunker/utils/file.downloader.d.ts.map +1 -0
  1137. package/dist/foundations/chunker/utils/file.downloader.js +58 -0
  1138. package/dist/foundations/chunker/utils/file.downloader.js.map +1 -0
  1139. package/dist/foundations/company/company.module.d.ts +5 -0
  1140. package/dist/foundations/company/company.module.d.ts.map +1 -0
  1141. package/dist/foundations/company/company.module.js +37 -0
  1142. package/dist/foundations/company/company.module.js.map +1 -0
  1143. package/dist/foundations/company/controllers/company.controller.d.ts +21 -0
  1144. package/dist/foundations/company/controllers/company.controller.d.ts.map +1 -0
  1145. package/dist/foundations/company/controllers/company.controller.js +164 -0
  1146. package/dist/foundations/company/controllers/company.controller.js.map +1 -0
  1147. package/dist/foundations/company/dtos/company.configurations.put.dto.d.ts +13 -0
  1148. package/dist/foundations/company/dtos/company.configurations.put.dto.d.ts.map +1 -0
  1149. package/dist/foundations/company/dtos/company.configurations.put.dto.js +54 -0
  1150. package/dist/foundations/company/dtos/company.configurations.put.dto.js.map +1 -0
  1151. package/dist/foundations/company/dtos/company.dto.d.ts +11 -0
  1152. package/dist/foundations/company/dtos/company.dto.d.ts.map +1 -0
  1153. package/dist/foundations/company/dtos/company.dto.js +45 -0
  1154. package/dist/foundations/company/dtos/company.dto.js.map +1 -0
  1155. package/dist/foundations/company/dtos/company.license.put.dto.d.ts +14 -0
  1156. package/dist/foundations/company/dtos/company.license.put.dto.d.ts.map +1 -0
  1157. package/dist/foundations/company/dtos/company.license.put.dto.js +59 -0
  1158. package/dist/foundations/company/dtos/company.license.put.dto.js.map +1 -0
  1159. package/dist/foundations/company/dtos/company.post.dto.d.ts +22 -0
  1160. package/dist/foundations/company/dtos/company.post.dto.d.ts.map +1 -0
  1161. package/dist/foundations/company/dtos/company.post.dto.js +87 -0
  1162. package/dist/foundations/company/dtos/company.post.dto.js.map +1 -0
  1163. package/dist/foundations/company/dtos/company.put.dto.d.ts +23 -0
  1164. package/dist/foundations/company/dtos/company.put.dto.d.ts.map +1 -0
  1165. package/dist/foundations/company/dtos/company.put.dto.js +92 -0
  1166. package/dist/foundations/company/dtos/company.put.dto.js.map +1 -0
  1167. package/dist/foundations/company/entities/company.entity.d.ts +17 -0
  1168. package/dist/foundations/company/entities/company.entity.d.ts.map +1 -0
  1169. package/dist/foundations/company/entities/company.entity.js +3 -0
  1170. package/dist/foundations/company/entities/company.entity.js.map +1 -0
  1171. package/dist/foundations/company/entities/company.map.d.ts +8 -0
  1172. package/dist/foundations/company/entities/company.map.d.ts.map +1 -0
  1173. package/dist/foundations/company/entities/company.map.js +22 -0
  1174. package/dist/foundations/company/entities/company.map.js.map +1 -0
  1175. package/dist/foundations/company/entities/company.meta.d.ts +3 -0
  1176. package/dist/foundations/company/entities/company.meta.d.ts.map +1 -0
  1177. package/dist/foundations/company/entities/company.meta.js +10 -0
  1178. package/dist/foundations/company/entities/company.meta.js.map +1 -0
  1179. package/dist/foundations/company/entities/company.model.d.ts +4 -0
  1180. package/dist/foundations/company/entities/company.model.d.ts.map +1 -0
  1181. package/dist/foundations/company/entities/company.model.js +17 -0
  1182. package/dist/foundations/company/entities/company.model.js.map +1 -0
  1183. package/dist/foundations/company/index.d.ts +7 -0
  1184. package/dist/foundations/company/index.d.ts.map +1 -0
  1185. package/dist/foundations/company/index.js +14 -0
  1186. package/dist/foundations/company/index.js.map +1 -0
  1187. package/dist/foundations/company/processors/company.processor.d.ts +23 -0
  1188. package/dist/foundations/company/processors/company.processor.d.ts.map +1 -0
  1189. package/dist/foundations/company/processors/company.processor.js +79 -0
  1190. package/dist/foundations/company/processors/company.processor.js.map +1 -0
  1191. package/dist/foundations/company/repositories/company.repository.d.ts +61 -0
  1192. package/dist/foundations/company/repositories/company.repository.d.ts.map +1 -0
  1193. package/dist/foundations/company/repositories/company.repository.js +295 -0
  1194. package/dist/foundations/company/repositories/company.repository.js.map +1 -0
  1195. package/dist/foundations/company/serialisers/company.serialiser.d.ts +14 -0
  1196. package/dist/foundations/company/serialisers/company.serialiser.d.ts.map +1 -0
  1197. package/dist/foundations/company/serialisers/company.serialiser.js +66 -0
  1198. package/dist/foundations/company/serialisers/company.serialiser.js.map +1 -0
  1199. package/dist/foundations/company/services/company.service.d.ts +65 -0
  1200. package/dist/foundations/company/services/company.service.d.ts.map +1 -0
  1201. package/dist/foundations/company/services/company.service.js +210 -0
  1202. package/dist/foundations/company/services/company.service.js.map +1 -0
  1203. package/dist/foundations/content/content.module.d.ts +5 -0
  1204. package/dist/foundations/content/content.module.d.ts.map +1 -0
  1205. package/dist/foundations/content/content.module.js +33 -0
  1206. package/dist/foundations/content/content.module.js.map +1 -0
  1207. package/dist/foundations/content/controllers/content.controller.d.ts +17 -0
  1208. package/dist/foundations/content/controllers/content.controller.d.ts.map +1 -0
  1209. package/dist/foundations/content/controllers/content.controller.js +129 -0
  1210. package/dist/foundations/content/controllers/content.controller.js.map +1 -0
  1211. package/dist/foundations/content/dtos/content.dto.d.ts +11 -0
  1212. package/dist/foundations/content/dtos/content.dto.d.ts.map +1 -0
  1213. package/dist/foundations/content/dtos/content.dto.js +45 -0
  1214. package/dist/foundations/content/dtos/content.dto.js.map +1 -0
  1215. package/dist/foundations/content/entities/content.entity.d.ts +13 -0
  1216. package/dist/foundations/content/entities/content.entity.d.ts.map +1 -0
  1217. package/dist/foundations/content/entities/content.entity.js +3 -0
  1218. package/dist/foundations/content/entities/content.entity.js.map +1 -0
  1219. package/dist/foundations/content/entities/content.map.d.ts +8 -0
  1220. package/dist/foundations/content/entities/content.map.d.ts.map +1 -0
  1221. package/dist/foundations/content/entities/content.map.js +19 -0
  1222. package/dist/foundations/content/entities/content.map.js.map +1 -0
  1223. package/dist/foundations/content/entities/content.meta.d.ts +3 -0
  1224. package/dist/foundations/content/entities/content.meta.d.ts.map +1 -0
  1225. package/dist/foundations/content/entities/content.meta.js +10 -0
  1226. package/dist/foundations/content/entities/content.meta.js.map +1 -0
  1227. package/dist/foundations/content/entities/content.model.d.ts +4 -0
  1228. package/dist/foundations/content/entities/content.model.d.ts.map +1 -0
  1229. package/dist/foundations/content/entities/content.model.js +16 -0
  1230. package/dist/foundations/content/entities/content.model.js.map +1 -0
  1231. package/dist/foundations/content/index.d.ts +8 -0
  1232. package/dist/foundations/content/index.d.ts.map +1 -0
  1233. package/dist/foundations/content/index.js +16 -0
  1234. package/dist/foundations/content/index.js.map +1 -0
  1235. package/dist/foundations/content/repositories/content.repository.d.ts +33 -0
  1236. package/dist/foundations/content/repositories/content.repository.d.ts.map +1 -0
  1237. package/dist/foundations/content/repositories/content.repository.js +100 -0
  1238. package/dist/foundations/content/repositories/content.repository.js.map +1 -0
  1239. package/dist/foundations/content/serialisers/content.serialiser.d.ts +12 -0
  1240. package/dist/foundations/content/serialisers/content.serialiser.d.ts.map +1 -0
  1241. package/dist/foundations/content/serialisers/content.serialiser.js +53 -0
  1242. package/dist/foundations/content/serialisers/content.serialiser.js.map +1 -0
  1243. package/dist/foundations/content/services/content.cypher.service.d.ts +20 -0
  1244. package/dist/foundations/content/services/content.cypher.service.d.ts.map +1 -0
  1245. package/dist/foundations/content/services/content.cypher.service.js +65 -0
  1246. package/dist/foundations/content/services/content.cypher.service.js.map +1 -0
  1247. package/dist/foundations/content/services/content.service.d.ts +25 -0
  1248. package/dist/foundations/content/services/content.service.d.ts.map +1 -0
  1249. package/dist/foundations/content/services/content.service.js +54 -0
  1250. package/dist/foundations/content/services/content.service.js.map +1 -0
  1251. package/dist/foundations/feature/controllers/feature.controller.d.ts +7 -0
  1252. package/dist/foundations/feature/controllers/feature.controller.d.ts.map +1 -0
  1253. package/dist/foundations/feature/controllers/feature.controller.js +47 -0
  1254. package/dist/foundations/feature/controllers/feature.controller.js.map +1 -0
  1255. package/dist/foundations/feature/dtos/feature.dto.d.ts +11 -0
  1256. package/dist/foundations/feature/dtos/feature.dto.d.ts.map +1 -0
  1257. package/dist/foundations/feature/dtos/feature.dto.js +45 -0
  1258. package/dist/foundations/feature/dtos/feature.dto.js.map +1 -0
  1259. package/dist/foundations/feature/entities/feature.entity.d.ts +8 -0
  1260. package/dist/foundations/feature/entities/feature.entity.d.ts.map +1 -0
  1261. package/dist/foundations/feature/entities/feature.entity.js +3 -0
  1262. package/dist/foundations/feature/entities/feature.entity.js.map +1 -0
  1263. package/dist/foundations/feature/entities/feature.map.d.ts +8 -0
  1264. package/dist/foundations/feature/entities/feature.map.d.ts.map +1 -0
  1265. package/dist/foundations/feature/entities/feature.map.js +14 -0
  1266. package/dist/foundations/feature/entities/feature.map.js.map +1 -0
  1267. package/dist/foundations/feature/entities/feature.meta.d.ts +3 -0
  1268. package/dist/foundations/feature/entities/feature.meta.d.ts.map +1 -0
  1269. package/dist/foundations/feature/entities/feature.meta.js +10 -0
  1270. package/dist/foundations/feature/entities/feature.meta.js.map +1 -0
  1271. package/dist/foundations/feature/entities/feature.model.d.ts +4 -0
  1272. package/dist/foundations/feature/entities/feature.model.d.ts.map +1 -0
  1273. package/dist/foundations/feature/entities/feature.model.js +15 -0
  1274. package/dist/foundations/feature/entities/feature.model.js.map +1 -0
  1275. package/dist/foundations/feature/feature.module.d.ts +5 -0
  1276. package/dist/foundations/feature/feature.module.d.ts.map +1 -0
  1277. package/dist/foundations/feature/feature.module.js +30 -0
  1278. package/dist/foundations/feature/feature.module.js.map +1 -0
  1279. package/dist/foundations/feature/index.d.ts +2 -0
  1280. package/dist/foundations/feature/index.d.ts.map +1 -0
  1281. package/dist/foundations/feature/index.js +6 -0
  1282. package/dist/foundations/feature/index.js.map +1 -0
  1283. package/dist/foundations/feature/repositories/feature.repository.d.ts +19 -0
  1284. package/dist/foundations/feature/repositories/feature.repository.d.ts.map +1 -0
  1285. package/dist/foundations/feature/repositories/feature.repository.js +64 -0
  1286. package/dist/foundations/feature/repositories/feature.repository.js.map +1 -0
  1287. package/dist/foundations/feature/serialisers/feature.serialiser.d.ts +12 -0
  1288. package/dist/foundations/feature/serialisers/feature.serialiser.d.ts.map +1 -0
  1289. package/dist/foundations/feature/serialisers/feature.serialiser.js +45 -0
  1290. package/dist/foundations/feature/serialisers/feature.serialiser.js.map +1 -0
  1291. package/dist/foundations/feature/services/feature.service.d.ts +16 -0
  1292. package/dist/foundations/feature/services/feature.service.d.ts.map +1 -0
  1293. package/dist/foundations/feature/services/feature.service.js +42 -0
  1294. package/dist/foundations/feature/services/feature.service.js.map +1 -0
  1295. package/dist/foundations/foundations.modules.d.ts +28 -0
  1296. package/dist/foundations/foundations.modules.d.ts.map +1 -0
  1297. package/dist/foundations/foundations.modules.js +85 -0
  1298. package/dist/foundations/foundations.modules.js.map +1 -0
  1299. package/dist/foundations/index.d.ts +22 -0
  1300. package/dist/foundations/index.d.ts.map +1 -0
  1301. package/dist/foundations/index.js +40 -0
  1302. package/dist/foundations/index.js.map +1 -0
  1303. package/dist/foundations/keyconcept/entities/key.concept.entity.d.ts +8 -0
  1304. package/dist/foundations/keyconcept/entities/key.concept.entity.d.ts.map +1 -0
  1305. package/dist/foundations/keyconcept/entities/key.concept.entity.js +3 -0
  1306. package/dist/foundations/keyconcept/entities/key.concept.entity.js.map +1 -0
  1307. package/dist/foundations/keyconcept/entities/key.concept.map.d.ts +8 -0
  1308. package/dist/foundations/keyconcept/entities/key.concept.map.d.ts.map +1 -0
  1309. package/dist/foundations/keyconcept/entities/key.concept.map.js +14 -0
  1310. package/dist/foundations/keyconcept/entities/key.concept.map.js.map +1 -0
  1311. package/dist/foundations/keyconcept/entities/key.concept.meta.d.ts +3 -0
  1312. package/dist/foundations/keyconcept/entities/key.concept.meta.d.ts.map +1 -0
  1313. package/dist/foundations/keyconcept/entities/key.concept.meta.js +10 -0
  1314. package/dist/foundations/keyconcept/entities/key.concept.meta.js.map +1 -0
  1315. package/dist/foundations/keyconcept/entities/key.concept.model.d.ts +4 -0
  1316. package/dist/foundations/keyconcept/entities/key.concept.model.d.ts.map +1 -0
  1317. package/dist/foundations/keyconcept/entities/key.concept.model.js +14 -0
  1318. package/dist/foundations/keyconcept/entities/key.concept.model.js.map +1 -0
  1319. package/dist/foundations/keyconcept/index.d.ts +4 -0
  1320. package/dist/foundations/keyconcept/index.d.ts.map +1 -0
  1321. package/dist/foundations/keyconcept/index.js +8 -0
  1322. package/dist/foundations/keyconcept/index.js.map +1 -0
  1323. package/dist/foundations/keyconcept/keyconcept.module.d.ts +5 -0
  1324. package/dist/foundations/keyconcept/keyconcept.module.d.ts.map +1 -0
  1325. package/dist/foundations/keyconcept/keyconcept.module.js +29 -0
  1326. package/dist/foundations/keyconcept/keyconcept.module.js.map +1 -0
  1327. package/dist/foundations/keyconcept/repositories/keyconcept.repository.d.ts +54 -0
  1328. package/dist/foundations/keyconcept/repositories/keyconcept.repository.d.ts.map +1 -0
  1329. package/dist/foundations/keyconcept/repositories/keyconcept.repository.js +290 -0
  1330. package/dist/foundations/keyconcept/repositories/keyconcept.repository.js.map +1 -0
  1331. package/dist/foundations/keyconcept/services/keyconcept.service.d.ts +26 -0
  1332. package/dist/foundations/keyconcept/services/keyconcept.service.d.ts.map +1 -0
  1333. package/dist/foundations/keyconcept/services/keyconcept.service.js +68 -0
  1334. package/dist/foundations/keyconcept/services/keyconcept.service.js.map +1 -0
  1335. package/dist/foundations/module/dtos/module.dto.d.ts +11 -0
  1336. package/dist/foundations/module/dtos/module.dto.d.ts.map +1 -0
  1337. package/dist/foundations/module/dtos/module.dto.js +45 -0
  1338. package/dist/foundations/module/dtos/module.dto.js.map +1 -0
  1339. package/dist/foundations/module/entities/module.entity.d.ts +12 -0
  1340. package/dist/foundations/module/entities/module.entity.d.ts.map +1 -0
  1341. package/dist/foundations/module/entities/module.entity.js +3 -0
  1342. package/dist/foundations/module/entities/module.entity.js.map +1 -0
  1343. package/dist/foundations/module/entities/module.map.d.ts +8 -0
  1344. package/dist/foundations/module/entities/module.map.d.ts.map +1 -0
  1345. package/dist/foundations/module/entities/module.map.js +19 -0
  1346. package/dist/foundations/module/entities/module.map.js.map +1 -0
  1347. package/dist/foundations/module/entities/module.meta.d.ts +3 -0
  1348. package/dist/foundations/module/entities/module.meta.d.ts.map +1 -0
  1349. package/dist/foundations/module/entities/module.meta.js +10 -0
  1350. package/dist/foundations/module/entities/module.meta.js.map +1 -0
  1351. package/dist/foundations/module/entities/module.model.d.ts +4 -0
  1352. package/dist/foundations/module/entities/module.model.d.ts.map +1 -0
  1353. package/dist/foundations/module/entities/module.model.js +13 -0
  1354. package/dist/foundations/module/entities/module.model.js.map +1 -0
  1355. package/dist/foundations/module/enums/module.id.d.ts +11 -0
  1356. package/dist/foundations/module/enums/module.id.d.ts.map +1 -0
  1357. package/dist/foundations/module/enums/module.id.js +57 -0
  1358. package/dist/foundations/module/enums/module.id.js.map +1 -0
  1359. package/dist/foundations/module/index.d.ts +6 -0
  1360. package/dist/foundations/module/index.d.ts.map +1 -0
  1361. package/dist/foundations/module/index.js +12 -0
  1362. package/dist/foundations/module/index.js.map +1 -0
  1363. package/dist/foundations/module/module.module.d.ts +5 -0
  1364. package/dist/foundations/module/module.module.d.ts.map +1 -0
  1365. package/dist/foundations/module/module.module.js +29 -0
  1366. package/dist/foundations/module/module.module.js.map +1 -0
  1367. package/dist/foundations/module/repositories/module.repository.d.ts +10 -0
  1368. package/dist/foundations/module/repositories/module.repository.d.ts.map +1 -0
  1369. package/dist/foundations/module/repositories/module.repository.js +33 -0
  1370. package/dist/foundations/module/repositories/module.repository.js.map +1 -0
  1371. package/dist/foundations/module/serialisers/module.serialiser.d.ts +12 -0
  1372. package/dist/foundations/module/serialisers/module.serialiser.d.ts.map +1 -0
  1373. package/dist/foundations/module/serialisers/module.serialiser.js +46 -0
  1374. package/dist/foundations/module/serialisers/module.serialiser.js.map +1 -0
  1375. package/dist/foundations/notification/controllers/notification.controller.d.ts +11 -0
  1376. package/dist/foundations/notification/controllers/notification.controller.d.ts.map +1 -0
  1377. package/dist/foundations/notification/controllers/notification.controller.js +86 -0
  1378. package/dist/foundations/notification/controllers/notification.controller.js.map +1 -0
  1379. package/dist/foundations/notification/dtos/notification.patch.dto.d.ts +15 -0
  1380. package/dist/foundations/notification/dtos/notification.patch.dto.d.ts.map +1 -0
  1381. package/dist/foundations/notification/dtos/notification.patch.dto.js +59 -0
  1382. package/dist/foundations/notification/dtos/notification.patch.dto.js.map +1 -0
  1383. package/dist/foundations/notification/entities/notification.entity.d.ts +8 -0
  1384. package/dist/foundations/notification/entities/notification.entity.d.ts.map +1 -0
  1385. package/dist/foundations/notification/entities/notification.entity.js +3 -0
  1386. package/dist/foundations/notification/entities/notification.entity.js.map +1 -0
  1387. package/dist/foundations/notification/entities/notification.map.d.ts +8 -0
  1388. package/dist/foundations/notification/entities/notification.map.d.ts.map +1 -0
  1389. package/dist/foundations/notification/entities/notification.map.js +14 -0
  1390. package/dist/foundations/notification/entities/notification.map.js.map +1 -0
  1391. package/dist/foundations/notification/entities/notification.meta.d.ts +3 -0
  1392. package/dist/foundations/notification/entities/notification.meta.d.ts.map +1 -0
  1393. package/dist/foundations/notification/entities/notification.meta.js +10 -0
  1394. package/dist/foundations/notification/entities/notification.meta.js.map +1 -0
  1395. package/dist/foundations/notification/entities/notification.model.d.ts +4 -0
  1396. package/dist/foundations/notification/entities/notification.model.d.ts.map +1 -0
  1397. package/dist/foundations/notification/entities/notification.model.js +15 -0
  1398. package/dist/foundations/notification/entities/notification.model.js.map +1 -0
  1399. package/dist/foundations/notification/index.d.ts +2 -0
  1400. package/dist/foundations/notification/index.d.ts.map +1 -0
  1401. package/dist/foundations/notification/index.js +6 -0
  1402. package/dist/foundations/notification/index.js.map +1 -0
  1403. package/dist/foundations/notification/interfaces/notification.service.interface.d.ts +4 -0
  1404. package/dist/foundations/notification/interfaces/notification.service.interface.d.ts.map +1 -0
  1405. package/dist/foundations/notification/interfaces/notification.service.interface.js +3 -0
  1406. package/dist/foundations/notification/interfaces/notification.service.interface.js.map +1 -0
  1407. package/dist/foundations/notification/notification.module.d.ts +5 -0
  1408. package/dist/foundations/notification/notification.module.d.ts.map +1 -0
  1409. package/dist/foundations/notification/notification.module.js +31 -0
  1410. package/dist/foundations/notification/notification.module.js.map +1 -0
  1411. package/dist/foundations/notification/repositories/notification.repository.d.ts +31 -0
  1412. package/dist/foundations/notification/repositories/notification.repository.d.ts.map +1 -0
  1413. package/dist/foundations/notification/repositories/notification.repository.js +154 -0
  1414. package/dist/foundations/notification/repositories/notification.repository.js.map +1 -0
  1415. package/dist/foundations/notification/serialisers/notifications.serialiser.d.ts +12 -0
  1416. package/dist/foundations/notification/serialisers/notifications.serialiser.d.ts.map +1 -0
  1417. package/dist/foundations/notification/serialisers/notifications.serialiser.js +45 -0
  1418. package/dist/foundations/notification/serialisers/notifications.serialiser.js.map +1 -0
  1419. package/dist/foundations/notification/services/notification.service.d.ts +24 -0
  1420. package/dist/foundations/notification/services/notification.service.d.ts.map +1 -0
  1421. package/dist/foundations/notification/services/notification.service.js +47 -0
  1422. package/dist/foundations/notification/services/notification.service.js.map +1 -0
  1423. package/dist/foundations/push/controllers/push.controller.d.ts +8 -0
  1424. package/dist/foundations/push/controllers/push.controller.d.ts.map +1 -0
  1425. package/dist/foundations/push/controllers/push.controller.js +41 -0
  1426. package/dist/foundations/push/controllers/push.controller.js.map +1 -0
  1427. package/dist/foundations/push/dtos/subscription.push.dto.d.ts +8 -0
  1428. package/dist/foundations/push/dtos/subscription.push.dto.d.ts.map +1 -0
  1429. package/dist/foundations/push/dtos/subscription.push.dto.js +3 -0
  1430. package/dist/foundations/push/dtos/subscription.push.dto.js.map +1 -0
  1431. package/dist/foundations/push/entities/push.entity.d.ts +9 -0
  1432. package/dist/foundations/push/entities/push.entity.d.ts.map +1 -0
  1433. package/dist/foundations/push/entities/push.entity.js +3 -0
  1434. package/dist/foundations/push/entities/push.entity.js.map +1 -0
  1435. package/dist/foundations/push/entities/push.map.d.ts +8 -0
  1436. package/dist/foundations/push/entities/push.map.d.ts.map +1 -0
  1437. package/dist/foundations/push/entities/push.map.js +21 -0
  1438. package/dist/foundations/push/entities/push.map.js.map +1 -0
  1439. package/dist/foundations/push/entities/push.meta.d.ts +3 -0
  1440. package/dist/foundations/push/entities/push.meta.d.ts.map +1 -0
  1441. package/dist/foundations/push/entities/push.meta.js +10 -0
  1442. package/dist/foundations/push/entities/push.meta.js.map +1 -0
  1443. package/dist/foundations/push/entities/push.model.d.ts +4 -0
  1444. package/dist/foundations/push/entities/push.model.d.ts.map +1 -0
  1445. package/dist/foundations/push/entities/push.model.js +11 -0
  1446. package/dist/foundations/push/entities/push.model.js.map +1 -0
  1447. package/dist/foundations/push/index.d.ts +2 -0
  1448. package/dist/foundations/push/index.d.ts.map +1 -0
  1449. package/dist/foundations/push/index.js +6 -0
  1450. package/dist/foundations/push/index.js.map +1 -0
  1451. package/dist/foundations/push/push.module.d.ts +5 -0
  1452. package/dist/foundations/push/push.module.d.ts.map +1 -0
  1453. package/dist/foundations/push/push.module.js +30 -0
  1454. package/dist/foundations/push/push.module.js.map +1 -0
  1455. package/dist/foundations/push/repositories/push.repository.d.ts +18 -0
  1456. package/dist/foundations/push/repositories/push.repository.d.ts.map +1 -0
  1457. package/dist/foundations/push/repositories/push.repository.js +75 -0
  1458. package/dist/foundations/push/repositories/push.repository.js.map +1 -0
  1459. package/dist/foundations/push/services/push.service.d.ts +21 -0
  1460. package/dist/foundations/push/services/push.service.d.ts.map +1 -0
  1461. package/dist/foundations/push/services/push.service.js +97 -0
  1462. package/dist/foundations/push/services/push.service.js.map +1 -0
  1463. package/dist/foundations/relevancy/index.d.ts +5 -0
  1464. package/dist/foundations/relevancy/index.d.ts.map +1 -0
  1465. package/dist/foundations/relevancy/index.js +8 -0
  1466. package/dist/foundations/relevancy/index.js.map +1 -0
  1467. package/dist/foundations/relevancy/interfaces/relevance.repository.interface.d.ts +17 -0
  1468. package/dist/foundations/relevancy/interfaces/relevance.repository.interface.d.ts.map +1 -0
  1469. package/dist/foundations/relevancy/interfaces/relevance.repository.interface.js +3 -0
  1470. package/dist/foundations/relevancy/interfaces/relevance.repository.interface.js.map +1 -0
  1471. package/dist/foundations/relevancy/interfaces/relevance.service.interface.d.ts +17 -0
  1472. package/dist/foundations/relevancy/interfaces/relevance.service.interface.d.ts.map +1 -0
  1473. package/dist/foundations/relevancy/interfaces/relevance.service.interface.js +3 -0
  1474. package/dist/foundations/relevancy/interfaces/relevance.service.interface.js.map +1 -0
  1475. package/dist/foundations/relevancy/queries/relevance.d.ts +13 -0
  1476. package/dist/foundations/relevancy/queries/relevance.d.ts.map +1 -0
  1477. package/dist/foundations/relevancy/queries/relevance.js +134 -0
  1478. package/dist/foundations/relevancy/queries/relevance.js.map +1 -0
  1479. package/dist/foundations/relevancy/relevancy.module.d.ts +3 -0
  1480. package/dist/foundations/relevancy/relevancy.module.d.ts.map +1 -0
  1481. package/dist/foundations/relevancy/relevancy.module.js +23 -0
  1482. package/dist/foundations/relevancy/relevancy.module.js.map +1 -0
  1483. package/dist/foundations/relevancy/repositories/relevancy.repository.d.ts +31 -0
  1484. package/dist/foundations/relevancy/repositories/relevancy.repository.d.ts.map +1 -0
  1485. package/dist/foundations/relevancy/repositories/relevancy.repository.js +94 -0
  1486. package/dist/foundations/relevancy/repositories/relevancy.repository.js.map +1 -0
  1487. package/dist/foundations/relevancy/services/relevancy.service.d.ts +29 -0
  1488. package/dist/foundations/relevancy/services/relevancy.service.d.ts.map +1 -0
  1489. package/dist/foundations/relevancy/services/relevancy.service.js +66 -0
  1490. package/dist/foundations/relevancy/services/relevancy.service.js.map +1 -0
  1491. package/dist/foundations/role/controllers/role.controller.d.ts +12 -0
  1492. package/dist/foundations/role/controllers/role.controller.d.ts.map +1 -0
  1493. package/dist/foundations/role/controllers/role.controller.js +104 -0
  1494. package/dist/foundations/role/controllers/role.controller.js.map +1 -0
  1495. package/dist/foundations/role/controllers/role.user.controller.d.ts +9 -0
  1496. package/dist/foundations/role/controllers/role.user.controller.d.ts.map +1 -0
  1497. package/dist/foundations/role/controllers/role.user.controller.js +59 -0
  1498. package/dist/foundations/role/controllers/role.user.controller.js.map +1 -0
  1499. package/dist/foundations/role/dtos/role.dto.d.ts +11 -0
  1500. package/dist/foundations/role/dtos/role.dto.d.ts.map +1 -0
  1501. package/dist/foundations/role/dtos/role.dto.js +45 -0
  1502. package/dist/foundations/role/dtos/role.dto.js.map +1 -0
  1503. package/dist/foundations/role/dtos/role.post.dto.d.ts +15 -0
  1504. package/dist/foundations/role/dtos/role.post.dto.d.ts.map +1 -0
  1505. package/dist/foundations/role/dtos/role.post.dto.js +59 -0
  1506. package/dist/foundations/role/dtos/role.post.dto.js.map +1 -0
  1507. package/dist/foundations/role/entities/role.entity.d.ts +9 -0
  1508. package/dist/foundations/role/entities/role.entity.d.ts.map +1 -0
  1509. package/dist/foundations/role/entities/role.entity.js +3 -0
  1510. package/dist/foundations/role/entities/role.entity.js.map +1 -0
  1511. package/dist/foundations/role/entities/role.map.d.ts +8 -0
  1512. package/dist/foundations/role/entities/role.map.d.ts.map +1 -0
  1513. package/dist/foundations/role/entities/role.map.js +15 -0
  1514. package/dist/foundations/role/entities/role.map.js.map +1 -0
  1515. package/dist/foundations/role/entities/role.meta.d.ts +3 -0
  1516. package/dist/foundations/role/entities/role.meta.d.ts.map +1 -0
  1517. package/dist/foundations/role/entities/role.meta.js +10 -0
  1518. package/dist/foundations/role/entities/role.meta.js.map +1 -0
  1519. package/dist/foundations/role/entities/role.model.d.ts +4 -0
  1520. package/dist/foundations/role/entities/role.model.d.ts.map +1 -0
  1521. package/dist/foundations/role/entities/role.model.js +15 -0
  1522. package/dist/foundations/role/entities/role.model.js.map +1 -0
  1523. package/dist/foundations/role/index.d.ts +3 -0
  1524. package/dist/foundations/role/index.d.ts.map +1 -0
  1525. package/dist/foundations/role/index.js +8 -0
  1526. package/dist/foundations/role/index.js.map +1 -0
  1527. package/dist/foundations/role/repositories/role.repository.d.ts +47 -0
  1528. package/dist/foundations/role/repositories/role.repository.d.ts.map +1 -0
  1529. package/dist/foundations/role/repositories/role.repository.js +175 -0
  1530. package/dist/foundations/role/repositories/role.repository.js.map +1 -0
  1531. package/dist/foundations/role/role.module.d.ts +5 -0
  1532. package/dist/foundations/role/role.module.d.ts.map +1 -0
  1533. package/dist/foundations/role/role.module.js +32 -0
  1534. package/dist/foundations/role/role.module.js.map +1 -0
  1535. package/dist/foundations/role/serialisers/role.serialiser.d.ts +12 -0
  1536. package/dist/foundations/role/serialisers/role.serialiser.d.ts.map +1 -0
  1537. package/dist/foundations/role/serialisers/role.serialiser.js +46 -0
  1538. package/dist/foundations/role/serialisers/role.serialiser.js.map +1 -0
  1539. package/dist/foundations/role/services/role.service.d.ts +39 -0
  1540. package/dist/foundations/role/services/role.service.d.ts.map +1 -0
  1541. package/dist/foundations/role/services/role.service.js +88 -0
  1542. package/dist/foundations/role/services/role.service.js.map +1 -0
  1543. package/dist/foundations/s3/controllers/s3.controller.d.ts +9 -0
  1544. package/dist/foundations/s3/controllers/s3.controller.d.ts.map +1 -0
  1545. package/dist/foundations/s3/controllers/s3.controller.js +74 -0
  1546. package/dist/foundations/s3/controllers/s3.controller.js.map +1 -0
  1547. package/dist/foundations/s3/entities/s3.entity.d.ts +9 -0
  1548. package/dist/foundations/s3/entities/s3.entity.d.ts.map +1 -0
  1549. package/dist/foundations/s3/entities/s3.entity.js +3 -0
  1550. package/dist/foundations/s3/entities/s3.entity.js.map +1 -0
  1551. package/dist/foundations/s3/entities/s3.map.d.ts +8 -0
  1552. package/dist/foundations/s3/entities/s3.map.d.ts.map +1 -0
  1553. package/dist/foundations/s3/entities/s3.map.js +16 -0
  1554. package/dist/foundations/s3/entities/s3.map.js.map +1 -0
  1555. package/dist/foundations/s3/entities/s3.meta.d.ts +3 -0
  1556. package/dist/foundations/s3/entities/s3.meta.d.ts.map +1 -0
  1557. package/dist/foundations/s3/entities/s3.meta.js +10 -0
  1558. package/dist/foundations/s3/entities/s3.meta.js.map +1 -0
  1559. package/dist/foundations/s3/entities/s3.model.d.ts +4 -0
  1560. package/dist/foundations/s3/entities/s3.model.d.ts.map +1 -0
  1561. package/dist/foundations/s3/entities/s3.model.js +13 -0
  1562. package/dist/foundations/s3/entities/s3.model.js.map +1 -0
  1563. package/dist/foundations/s3/index.d.ts +3 -0
  1564. package/dist/foundations/s3/index.d.ts.map +1 -0
  1565. package/dist/foundations/s3/index.js +8 -0
  1566. package/dist/foundations/s3/index.js.map +1 -0
  1567. package/dist/foundations/s3/s3.module.d.ts +5 -0
  1568. package/dist/foundations/s3/s3.module.d.ts.map +1 -0
  1569. package/dist/foundations/s3/s3.module.js +29 -0
  1570. package/dist/foundations/s3/s3.module.js.map +1 -0
  1571. package/dist/foundations/s3/serialisers/s3.serialiser.d.ts +12 -0
  1572. package/dist/foundations/s3/serialisers/s3.serialiser.d.ts.map +1 -0
  1573. package/dist/foundations/s3/serialisers/s3.serialiser.js +41 -0
  1574. package/dist/foundations/s3/serialisers/s3.serialiser.js.map +1 -0
  1575. package/dist/foundations/s3/services/s3.service.d.ts +72 -0
  1576. package/dist/foundations/s3/services/s3.service.d.ts.map +1 -0
  1577. package/dist/foundations/s3/services/s3.service.js +468 -0
  1578. package/dist/foundations/s3/services/s3.service.js.map +1 -0
  1579. package/dist/foundations/tokenusage/entities/tokenusage.entity.d.ts +10 -0
  1580. package/dist/foundations/tokenusage/entities/tokenusage.entity.d.ts.map +1 -0
  1581. package/dist/foundations/tokenusage/entities/tokenusage.entity.js +3 -0
  1582. package/dist/foundations/tokenusage/entities/tokenusage.entity.js.map +1 -0
  1583. package/dist/foundations/tokenusage/entities/tokenusage.map.d.ts +8 -0
  1584. package/dist/foundations/tokenusage/entities/tokenusage.map.d.ts.map +1 -0
  1585. package/dist/foundations/tokenusage/entities/tokenusage.map.js +16 -0
  1586. package/dist/foundations/tokenusage/entities/tokenusage.map.js.map +1 -0
  1587. package/dist/foundations/tokenusage/entities/tokenusage.meta.d.ts +3 -0
  1588. package/dist/foundations/tokenusage/entities/tokenusage.meta.d.ts.map +1 -0
  1589. package/dist/foundations/tokenusage/entities/tokenusage.meta.js +10 -0
  1590. package/dist/foundations/tokenusage/entities/tokenusage.meta.js.map +1 -0
  1591. package/dist/foundations/tokenusage/entities/tokenusage.model.d.ts +4 -0
  1592. package/dist/foundations/tokenusage/entities/tokenusage.model.d.ts.map +1 -0
  1593. package/dist/foundations/tokenusage/entities/tokenusage.model.js +15 -0
  1594. package/dist/foundations/tokenusage/entities/tokenusage.model.js.map +1 -0
  1595. package/dist/foundations/tokenusage/enums/tokenusage.type.d.ts +10 -0
  1596. package/dist/foundations/tokenusage/enums/tokenusage.type.d.ts.map +1 -0
  1597. package/dist/foundations/tokenusage/enums/tokenusage.type.js +14 -0
  1598. package/dist/foundations/tokenusage/enums/tokenusage.type.js.map +1 -0
  1599. package/dist/foundations/tokenusage/index.d.ts +8 -0
  1600. package/dist/foundations/tokenusage/index.d.ts.map +1 -0
  1601. package/dist/foundations/tokenusage/index.js +16 -0
  1602. package/dist/foundations/tokenusage/index.js.map +1 -0
  1603. package/dist/foundations/tokenusage/repositories/tokenusage.repository.d.ts +18 -0
  1604. package/dist/foundations/tokenusage/repositories/tokenusage.repository.d.ts.map +1 -0
  1605. package/dist/foundations/tokenusage/repositories/tokenusage.repository.js +60 -0
  1606. package/dist/foundations/tokenusage/repositories/tokenusage.repository.js.map +1 -0
  1607. package/dist/foundations/tokenusage/services/tokenusage.service.d.ts +18 -0
  1608. package/dist/foundations/tokenusage/services/tokenusage.service.d.ts.map +1 -0
  1609. package/dist/foundations/tokenusage/services/tokenusage.service.js +49 -0
  1610. package/dist/foundations/tokenusage/services/tokenusage.service.js.map +1 -0
  1611. package/dist/foundations/tokenusage/tokenusage.module.d.ts +5 -0
  1612. package/dist/foundations/tokenusage/tokenusage.module.d.ts.map +1 -0
  1613. package/dist/foundations/tokenusage/tokenusage.module.js +29 -0
  1614. package/dist/foundations/tokenusage/tokenusage.module.js.map +1 -0
  1615. package/dist/foundations/user/controllers/user.controller.d.ts +39 -0
  1616. package/dist/foundations/user/controllers/user.controller.d.ts.map +1 -0
  1617. package/dist/foundations/user/controllers/user.controller.js +374 -0
  1618. package/dist/foundations/user/controllers/user.controller.js.map +1 -0
  1619. package/dist/foundations/user/dtos/user.dto.d.ts +11 -0
  1620. package/dist/foundations/user/dtos/user.dto.d.ts.map +1 -0
  1621. package/dist/foundations/user/dtos/user.dto.js +45 -0
  1622. package/dist/foundations/user/dtos/user.dto.js.map +1 -0
  1623. package/dist/foundations/user/dtos/user.patch.rate.dto.d.ts +13 -0
  1624. package/dist/foundations/user/dtos/user.patch.rate.dto.d.ts.map +1 -0
  1625. package/dist/foundations/user/dtos/user.patch.rate.dto.js +54 -0
  1626. package/dist/foundations/user/dtos/user.patch.rate.dto.js.map +1 -0
  1627. package/dist/foundations/user/dtos/user.post.dto.d.ts +29 -0
  1628. package/dist/foundations/user/dtos/user.post.dto.d.ts.map +1 -0
  1629. package/dist/foundations/user/dtos/user.post.dto.js +117 -0
  1630. package/dist/foundations/user/dtos/user.post.dto.js.map +1 -0
  1631. package/dist/foundations/user/dtos/user.put.dto.d.ts +24 -0
  1632. package/dist/foundations/user/dtos/user.put.dto.d.ts.map +1 -0
  1633. package/dist/foundations/user/dtos/user.put.dto.js +100 -0
  1634. package/dist/foundations/user/dtos/user.put.dto.js.map +1 -0
  1635. package/dist/foundations/user/entities/user.entity.d.ts +23 -0
  1636. package/dist/foundations/user/entities/user.entity.d.ts.map +1 -0
  1637. package/dist/foundations/user/entities/user.entity.js +3 -0
  1638. package/dist/foundations/user/entities/user.entity.js.map +1 -0
  1639. package/dist/foundations/user/entities/user.map.d.ts +8 -0
  1640. package/dist/foundations/user/entities/user.map.d.ts.map +1 -0
  1641. package/dist/foundations/user/entities/user.map.js +27 -0
  1642. package/dist/foundations/user/entities/user.map.js.map +1 -0
  1643. package/dist/foundations/user/entities/user.meta.d.ts +6 -0
  1644. package/dist/foundations/user/entities/user.meta.d.ts.map +1 -0
  1645. package/dist/foundations/user/entities/user.meta.js +25 -0
  1646. package/dist/foundations/user/entities/user.meta.js.map +1 -0
  1647. package/dist/foundations/user/entities/user.model.d.ts +7 -0
  1648. package/dist/foundations/user/entities/user.model.d.ts.map +1 -0
  1649. package/dist/foundations/user/entities/user.model.js +30 -0
  1650. package/dist/foundations/user/entities/user.model.js.map +1 -0
  1651. package/dist/foundations/user/index.d.ts +11 -0
  1652. package/dist/foundations/user/index.d.ts.map +1 -0
  1653. package/dist/foundations/user/index.js +41 -0
  1654. package/dist/foundations/user/index.js.map +1 -0
  1655. package/dist/foundations/user/repositories/user.repository.d.ts +109 -0
  1656. package/dist/foundations/user/repositories/user.repository.d.ts.map +1 -0
  1657. package/dist/foundations/user/repositories/user.repository.js +491 -0
  1658. package/dist/foundations/user/repositories/user.repository.js.map +1 -0
  1659. package/dist/foundations/user/serialisers/user.serialiser.d.ts +14 -0
  1660. package/dist/foundations/user/serialisers/user.serialiser.d.ts.map +1 -0
  1661. package/dist/foundations/user/serialisers/user.serialiser.js +80 -0
  1662. package/dist/foundations/user/serialisers/user.serialiser.js.map +1 -0
  1663. package/dist/foundations/user/services/user.cypher.service.d.ts +13 -0
  1664. package/dist/foundations/user/services/user.cypher.service.d.ts.map +1 -0
  1665. package/dist/foundations/user/services/user.cypher.service.js +46 -0
  1666. package/dist/foundations/user/services/user.cypher.service.js.map +1 -0
  1667. package/dist/foundations/user/services/user.service.d.ts +107 -0
  1668. package/dist/foundations/user/services/user.service.d.ts.map +1 -0
  1669. package/dist/foundations/user/services/user.service.js +231 -0
  1670. package/dist/foundations/user/services/user.service.js.map +1 -0
  1671. package/dist/foundations/user/user.module.d.ts +5 -0
  1672. package/dist/foundations/user/user.module.d.ts.map +1 -0
  1673. package/dist/foundations/user/user.module.js +38 -0
  1674. package/dist/foundations/user/user.module.js.map +1 -0
  1675. package/dist/index.d.ts +12 -0
  1676. package/dist/index.d.ts.map +1 -0
  1677. package/dist/index.js +34 -0
  1678. package/dist/index.js.map +1 -0
  1679. package/dist/tools/migrate-entity/index.js +65 -0
  1680. package/dist/tools/migrate-entity/lib/ast-parser.js +543 -0
  1681. package/dist/tools/migrate-entity/lib/descriptor-generator.js +385 -0
  1682. package/dist/tools/migrate-entity/lib/entity-migrator.js +300 -0
  1683. package/dist/tools/migrate-entity/lib/file-discovery.js +123 -0
  1684. package/dist/tools/migrate-entity/lib/module-updater.js +131 -0
  1685. package/dist/tools/migrate-entity/lib/reference-updater.js +304 -0
  1686. package/dist/tools/migrate-entity/lib/types.js +7 -0
  1687. package/package.json +181 -0
@@ -0,0 +1 @@
1
+ {"version":3,"file":"responder.response.interface.d.ts","sourceRoot":"","sources":["../../../../src/agents/responder/interfaces/responder.response.interface.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,+BAA+B,EAAE,MAAM,mEAAmE,CAAC;AACpH,OAAO,EAAE,gBAAgB,EAAE,MAAM,yCAAyC,CAAC;AAC3E,OAAO,EAAE,mBAAmB,EAAE,MAAM,kDAAkD,CAAC;AAEvF,MAAM,WAAW,0BAA0B;IACzC,IAAI,EAAE,gBAAgB,CAAC;IACvB,OAAO,EAAE,+BAA+B,CAAC;IACzC,MAAM,EAAE,mBAAmB,CAAC;IAC5B,MAAM,EAAE;QACN,KAAK,EAAE,MAAM,CAAC;QACd,QAAQ,EAAE,MAAM,CAAC;QACjB,MAAM,EAAE,GAAG,CAAC;QACZ,SAAS,EAAE,MAAM,EAAE,CAAC;KACrB,CAAC;IACF,OAAO,EAAE;QAAE,OAAO,EAAE,MAAM,CAAC;QAAC,SAAS,EAAE,MAAM,CAAC;QAAC,MAAM,EAAE,MAAM,CAAA;KAAE,EAAE,CAAC;IAClE,UAAU,EAAE,MAAM,EAAE,CAAC;CACtB"}
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=responder.response.interface.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"responder.response.interface.js","sourceRoot":"","sources":["../../../../src/agents/responder/interfaces/responder.response.interface.ts"],"names":[],"mappings":""}
@@ -0,0 +1,16 @@
1
+ import { ConfigService } from "@nestjs/config";
2
+ import { BaseConfigInterface } from "../../../config/interfaces";
3
+ import { LLMService } from "../../../core/llm/services/llm.service";
4
+ import { ResponderContext, ResponderContextState } from "../../responder/contexts/responder.context";
5
+ export declare const defaultAnswerPrompt = "\nAs an intelligent assistant, your primary objective is to answer questions based on information within a text.\nYou have explored multiple paths from various starting nodes on a graph, recording key information for each path in a **notebook**.\nYour task now is to **analyze these memories and reason to answer the question**. \n\n---\n\n### **Strategy:**\n\n1. **Provide a Title**:\n - Create a short **title** that the user can read as a quick reference.\n\n2. **Analyze Notebook Content**:\n - Carefully review each entry in your notebook before providing a final answer.\n - Consider complementary information from different notes.\n\n3. **Assess Availability of Information**:\n - Determine whether the notebook contains **explicit and sufficient information** to answer the question.\n - **Do not infer or assume information** not explicitly present in the notebook.\n - **If the notebook contains sufficient information**, proceed to formulate the final answer using only the information provided.\n - **If the notebook does NOT contain enough information**, clearly state that the answer to the question is not available in the company knowledge.\n - **Do not use any external information, prior knowledge, or make assumptions beyond what is in the notebook.**\n\n4. **Citations with Relevance Scores**:\n - For each line in your notebook, consider the **chunkId** at the beginning of the line.\n - **ChunkIds are valid UUIDs** (e.g., '123e4567-e89b-12d3-a456-426614174000').\n - **Use only the chunkIds provided in the notebook**. **Do not invent or make up chunkIds**.\n - **Do not use line numbers or indices as chunkIds**.\n - Assign a **percentage relevance score** to indicate how much each line influenced your final answer.\n - This relevance score reflects the parts of your thought process used to generate the answer and will be used for citations.\n - **If the notebook is empty or lacks relevant information, the citations section should be empty.**\n\n5. **Generate Follow-up Questions**:\n - **If sufficient information is available**, provide a list of **5 follow-up or refinement questions** based on the final answer.\n - **If the answer is not available**, **do not generate any follow-up questions**.\n\n6. **Provide a Comprehensive Final Answer**:\n - **When sufficient information is available**, create a thorough, detailed, and well-structured response that goes beyond minimal explanations.\n - **Expand on concepts thoroughly**: Don't just state facts - explain them, provide context, and help users understand the complete picture.\n - **Use structured formatting**: Organize content with headers, subheadings, bullet points, and numbered lists to make complex information digestible.\n - **Be educational and informative**: Treat each answer as an opportunity to teach and provide comprehensive understanding of the topic.\n - **If the answer is not available**, clearly inform the user that the information is not present in the company knowledge.\n - **Format Requirements for Comprehensive Answers**:\n - Use proper markdown formatting with headers (##, ###) to organize different sections\n - Include bullet points or numbered lists when presenting multiple items or steps\n - Expand on concepts with detailed explanations rather than brief summaries\n - Use subheadings to break down complex topics into digestible sections\n - Provide context and background information when relevant to help users understand the full picture\n - Include examples or specific details from the notebook when available\n - Ensure the answer flows logically from one section to another\n - Make the response comprehensive, detailed, and educational rather than minimalistic\n - **Do not include any technical terms** such as \"nodes,\" \"text chunks,\" or \"atomic facts\" in your final answer or title.\n - Avoid using technical jargon and ensure the response is user-friendly while being comprehensive.\n\n---\n\n### **Important Notes:**\n\n- **Use Only Notebook Information**:\n - Do not use any external sources, prior knowledge, or make up information not present in the notebook.\n - Do not provide definitions, explanations, or details that are not explicitly stated in the notebook.\n\n- **No Paraphrasing Beyond Notebook Content**:\n - Do not restate or rephrase the notebook content as the final answer unless it directly and explicitly answers the question.\n\n- **Do Not Infer or Assume**:\n - Avoid making inferences or assumptions based on partial information.\n - If the notebook does not explicitly provide the answer, acknowledge that the information is not available.\n\n- **Do Not guess the presume to know the acronyms**:\n - If your notebook contains the definition of an acronym, you can use it, but if the precise definition of the acronym does NOT exist in the notebook, you must not use it.\n - NEVER GUESS an ACRONYM. If you don't have a clear definition in the notebook, use only the acronym and don't try to explain it.\n - **NEVER** write your own definitions or explanations for acronyms. An acronym is a word on its own, and you don't have to explain it.\n\n- **ChunkIds Must Match Exactly**:\n - Use only the actual chunkIds provided in the notebook entries.\n - **ChunkIds are valid UUIDs**. Do not use line numbers, indices, or any other placeholders.\n - **Do not invent or make up chunkIds**.\n\n- **Empty or Insufficient Notebook Handling**:\n - If the notebook is empty or lacks sufficient information, acknowledge this in your analysis and final answer.\n - **Do not provide a final answer based on assumptions or external knowledge**.\n - **Do not generate any follow-up questions if the answer is not available**.\n\n- **Provide Clear and User-Friendly Responses**:\n - Communicate clearly without technical jargon.\n - Do not include any technical terms such as \"nodes,\" \"text chunks,\" or \"atomic facts\" in your final answer or title.\n\n---\n\n### **Expected Output Format:**\n\nYour output should include the following fields in the order specified:\n\n- **Title**: A short title providing the user with a quick reference to the answer.\n\n- **Analyse**:\n - An analysis of the notebook content, considering complementary information and resolving inconsistencies.\n - State whether the notebook contains sufficient information to answer the question.\n - If not, acknowledge that the information is not available.\n\n- **Citations**:\n - A list of citations for the information you used to generate the final answer.\n - Each citation includes:\n - **chunkId**: The ID of the line in your notebook.\n - **relevance**: The relevance of the information in that line (as a percentage).\n - **If the notebook is empty or lacks relevant information, the citations section should be empty**.\n\n- **Questions**:\n - **If sufficient information is available**, provide a list of **5 follow-up or refinement questions** based on the final answer.\n - **If the answer is not available**, **do not generate any follow-up questions**.\n\n- **Final Answer**:\n - **If sufficient information is available**, provide a comprehensive, detailed, and well-structured answer, strictly using only the information from the notebook.\n - The answer should be thorough and educational, expanding on concepts with proper explanations.\n - Use markdown formatting with appropriate headers, subheadings, lists, and sections to organize the content clearly.\n - **If insufficient information is available**, state that the answer is not available in the company knowledge.\n\n---\n\n### **Example When Information Is Available:**\n\n**User:**\n\nQuestion: What is project management?\n\nNotebook of different exploration paths:\n\n- 123e4567-e89b-12d3-a456-426614174000: Project management is the application of processes, methods, skills, knowledge and experience to achieve specific project objectives.\n- 987f6543-e21a-34c5-b678-539725841901: Project management involves planning, organizing, securing, managing, leading, and controlling resources to achieve specific goals.\n- 456a1234-f56b-78c9-d012-345678901234: The primary challenge of project management is to achieve all project goals within the given constraints like time, budget, and scope.\n\n**Assistant:**\n\n**Title:**\n\nUnderstanding Project Management: Processes, Goals, and Constraints\n\n**Analyse:**\n\nThe notebook contains comprehensive information about project management, covering its definition, key activities, and primary challenges. The information is consistent across different sources and provides a complete foundation for explaining what project management entails.\n\n**Citations:**\n\n- chunkId: \"123e4567-e89b-12d3-a456-426614174000\", relevance: 95\n- chunkId: \"987f6543-e21a-34c5-b678-539725841901\", relevance: 90\n- chunkId: \"456a1234-f56b-78c9-d012-345678901234\", relevance: 85\n\n**Questions:**\n\n1. What specific methodologies are commonly used in project management?\n2. How do project managers handle scope creep and changing requirements?\n3. What tools and software are most effective for project planning and tracking?\n4. How does project management differ across various industries?\n5. What skills are essential for becoming an effective project manager?\n\n**Final Answer:**\n\n## What is Project Management?\n\nProject management is a comprehensive discipline that involves **the application of processes, methods, skills, knowledge, and experience to achieve specific project objectives**. It represents a structured approach to turning ideas and goals into tangible results within defined parameters.\n\n### Core Components of Project Management\n\nProject management encompasses several critical activities that work together to ensure project success:\n\n- **Planning**: Establishing clear objectives, timelines, and resource requirements\n- **Organizing**: Structuring teams, workflows, and project elements efficiently\n- **Securing**: Obtaining necessary resources, approvals, and stakeholder buy-in\n- **Managing**: Overseeing day-to-day operations and progress monitoring\n- **Leading**: Guiding teams and stakeholders toward common goals\n- **Controlling**: Monitoring performance and making necessary adjustments\n\n### The Primary Challenge\n\nThe fundamental challenge of project management lies in **achieving all project goals within the given constraints**. These constraints typically include:\n\n- **Time**: Meeting established deadlines and milestones\n- **Budget**: Staying within allocated financial resources\n- **Scope**: Delivering all required features and functionality without exceeding boundaries\n\n### Why Project Management Matters\n\nProject management serves as the bridge between conceptual ideas and practical implementation. By applying systematic approaches and proven methodologies, project managers help organizations transform vision into reality while minimizing risks and maximizing efficiency.\n\nThe discipline ensures that resources are used effectively, stakeholders remain aligned, and deliverables meet quality standards within the established timeframe and budget constraints.\n\n---\n\n### **Example When Information Is Not Available:**\n\n**User:**\n\nQuestion: What is Ontology?\n\nNotebook of different exploration paths:\n\n- *(Notebook is empty or does not contain relevant information.)*\n\n**Assistant:**\n\n**Title:**\n\nInformation on Ontology\n\n**Analyse:**\n\n- After reviewing the notebook, there is no information available regarding the definition or explanation of ontology.\n- The notebook does not contain sufficient information to answer the question.\n\n**Citations:**\n\n*(No citations since the notebook is empty or lacks relevant information.)*\n\n**Questions:**\n\n*(No questions since the answer is not available.)*\n\n**Final Answer:**\n\nThe answer to your question is not available in the company knowledge. There is insufficient information to explain what ontology is based on the provided data.\n\n---\n\n### **Please Proceed by Following These Instructions Carefully:**\n\n- **Use Only Information Provided in the Notebook**:\n - Do not incorporate any external knowledge or make assumptions.\n - Do not provide definitions or explanations that are not explicitly in the notebook.\n\n- **Do Not Restate Notebook Content as Answer**:\n - Unless the notebook explicitly answers the question, do not restate the notebook content as the final answer.\n\n- **ChunkIds are Valid UUIDs**:\n - Use only the chunkIds provided in the notebook, which are valid UUIDs (e.g., '123e4567-e89b-12d3-a456-426614174000').\n - **Do not invent or make up chunkIds**.\n - **Do not use line numbers or indices as chunkIds**.\n\n- **Handle Empty or Insufficient Notebooks Appropriately**:\n - If the notebook is empty or lacks sufficient information, acknowledge this in your analysis and final answer.\n - **Do not generate any follow-up questions if the answer is not available**.\n\n- **Provide Clear and User-Friendly Responses**:\n - Communicate clearly without technical jargon.\n\n---\n\nBy emphasizing that ChunkIds are valid UUIDs and that you should not invent or make up any chunkIds, as well as specifying that no follow-up questions should be generated if the answer is not available, this updated prompt should help prevent the LLM from including information from outside the notebook or making up chunkIds. It also clarifies how to handle situations where the notebook does not contain sufficient information to answer the question.\n";
6
+ export declare class ResponderAnswerNodeService {
7
+ private readonly llmService;
8
+ private readonly configService;
9
+ private readonly logger;
10
+ private readonly systemPrompt;
11
+ constructor(llmService: LLMService, configService: ConfigService<BaseConfigInterface>);
12
+ execute(params: {
13
+ state: typeof ResponderContext.State;
14
+ }): Promise<ResponderContextState>;
15
+ }
16
+ //# sourceMappingURL=responder.answer.node.service.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"responder.answer.node.service.d.ts","sourceRoot":"","sources":["../../../../src/agents/responder/nodes/responder.answer.node.service.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,aAAa,EAAE,MAAM,gBAAgB,CAAC;AAE/C,OAAO,EAAE,mBAAmB,EAA0B,MAAM,4BAA4B,CAAC;AACzF,OAAO,EAAE,UAAU,EAAE,MAAM,wCAAwC,CAAC;AACpE,OAAO,EAAE,gBAAgB,EAAE,qBAAqB,EAAE,MAAM,4CAA4C,CAAC;AAErG,eAAO,MAAM,mBAAmB,+xaAwP/B,CAAC;AAyDF,qBACa,0BAA0B;IAKnC,OAAO,CAAC,QAAQ,CAAC,UAAU;IAC3B,OAAO,CAAC,QAAQ,CAAC,aAAa;IALhC,OAAO,CAAC,QAAQ,CAAC,MAAM,CAA+C;IACtE,OAAO,CAAC,QAAQ,CAAC,YAAY,CAAS;gBAGnB,UAAU,EAAE,UAAU,EACtB,aAAa,EAAE,aAAa,CAAC,mBAAmB,CAAC;IAM9D,OAAO,CAAC,MAAM,EAAE;QAAE,KAAK,EAAE,OAAO,gBAAgB,CAAC,KAAK,CAAA;KAAE,GAAG,OAAO,CAAC,qBAAqB,CAAC;CAqDhG"}
@@ -0,0 +1,367 @@
1
+ "use strict";
2
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
3
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
4
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
5
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
6
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
7
+ };
8
+ var __metadata = (this && this.__metadata) || function (k, v) {
9
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
10
+ };
11
+ var ResponderAnswerNodeService_1;
12
+ Object.defineProperty(exports, "__esModule", { value: true });
13
+ exports.ResponderAnswerNodeService = exports.defaultAnswerPrompt = void 0;
14
+ const common_1 = require("@nestjs/common");
15
+ const config_1 = require("@nestjs/config");
16
+ const zod_1 = require("zod");
17
+ const llm_service_1 = require("../../../core/llm/services/llm.service");
18
+ exports.defaultAnswerPrompt = `
19
+ As an intelligent assistant, your primary objective is to answer questions based on information within a text.
20
+ You have explored multiple paths from various starting nodes on a graph, recording key information for each path in a **notebook**.
21
+ Your task now is to **analyze these memories and reason to answer the question**.
22
+
23
+ ---
24
+
25
+ ### **Strategy:**
26
+
27
+ 1. **Provide a Title**:
28
+ - Create a short **title** that the user can read as a quick reference.
29
+
30
+ 2. **Analyze Notebook Content**:
31
+ - Carefully review each entry in your notebook before providing a final answer.
32
+ - Consider complementary information from different notes.
33
+
34
+ 3. **Assess Availability of Information**:
35
+ - Determine whether the notebook contains **explicit and sufficient information** to answer the question.
36
+ - **Do not infer or assume information** not explicitly present in the notebook.
37
+ - **If the notebook contains sufficient information**, proceed to formulate the final answer using only the information provided.
38
+ - **If the notebook does NOT contain enough information**, clearly state that the answer to the question is not available in the company knowledge.
39
+ - **Do not use any external information, prior knowledge, or make assumptions beyond what is in the notebook.**
40
+
41
+ 4. **Citations with Relevance Scores**:
42
+ - For each line in your notebook, consider the **chunkId** at the beginning of the line.
43
+ - **ChunkIds are valid UUIDs** (e.g., '123e4567-e89b-12d3-a456-426614174000').
44
+ - **Use only the chunkIds provided in the notebook**. **Do not invent or make up chunkIds**.
45
+ - **Do not use line numbers or indices as chunkIds**.
46
+ - Assign a **percentage relevance score** to indicate how much each line influenced your final answer.
47
+ - This relevance score reflects the parts of your thought process used to generate the answer and will be used for citations.
48
+ - **If the notebook is empty or lacks relevant information, the citations section should be empty.**
49
+
50
+ 5. **Generate Follow-up Questions**:
51
+ - **If sufficient information is available**, provide a list of **5 follow-up or refinement questions** based on the final answer.
52
+ - **If the answer is not available**, **do not generate any follow-up questions**.
53
+
54
+ 6. **Provide a Comprehensive Final Answer**:
55
+ - **When sufficient information is available**, create a thorough, detailed, and well-structured response that goes beyond minimal explanations.
56
+ - **Expand on concepts thoroughly**: Don't just state facts - explain them, provide context, and help users understand the complete picture.
57
+ - **Use structured formatting**: Organize content with headers, subheadings, bullet points, and numbered lists to make complex information digestible.
58
+ - **Be educational and informative**: Treat each answer as an opportunity to teach and provide comprehensive understanding of the topic.
59
+ - **If the answer is not available**, clearly inform the user that the information is not present in the company knowledge.
60
+ - **Format Requirements for Comprehensive Answers**:
61
+ - Use proper markdown formatting with headers (##, ###) to organize different sections
62
+ - Include bullet points or numbered lists when presenting multiple items or steps
63
+ - Expand on concepts with detailed explanations rather than brief summaries
64
+ - Use subheadings to break down complex topics into digestible sections
65
+ - Provide context and background information when relevant to help users understand the full picture
66
+ - Include examples or specific details from the notebook when available
67
+ - Ensure the answer flows logically from one section to another
68
+ - Make the response comprehensive, detailed, and educational rather than minimalistic
69
+ - **Do not include any technical terms** such as "nodes," "text chunks," or "atomic facts" in your final answer or title.
70
+ - Avoid using technical jargon and ensure the response is user-friendly while being comprehensive.
71
+
72
+ ---
73
+
74
+ ### **Important Notes:**
75
+
76
+ - **Use Only Notebook Information**:
77
+ - Do not use any external sources, prior knowledge, or make up information not present in the notebook.
78
+ - Do not provide definitions, explanations, or details that are not explicitly stated in the notebook.
79
+
80
+ - **No Paraphrasing Beyond Notebook Content**:
81
+ - Do not restate or rephrase the notebook content as the final answer unless it directly and explicitly answers the question.
82
+
83
+ - **Do Not Infer or Assume**:
84
+ - Avoid making inferences or assumptions based on partial information.
85
+ - If the notebook does not explicitly provide the answer, acknowledge that the information is not available.
86
+
87
+ - **Do Not guess the presume to know the acronyms**:
88
+ - If your notebook contains the definition of an acronym, you can use it, but if the precise definition of the acronym does NOT exist in the notebook, you must not use it.
89
+ - NEVER GUESS an ACRONYM. If you don't have a clear definition in the notebook, use only the acronym and don't try to explain it.
90
+ - **NEVER** write your own definitions or explanations for acronyms. An acronym is a word on its own, and you don't have to explain it.
91
+
92
+ - **ChunkIds Must Match Exactly**:
93
+ - Use only the actual chunkIds provided in the notebook entries.
94
+ - **ChunkIds are valid UUIDs**. Do not use line numbers, indices, or any other placeholders.
95
+ - **Do not invent or make up chunkIds**.
96
+
97
+ - **Empty or Insufficient Notebook Handling**:
98
+ - If the notebook is empty or lacks sufficient information, acknowledge this in your analysis and final answer.
99
+ - **Do not provide a final answer based on assumptions or external knowledge**.
100
+ - **Do not generate any follow-up questions if the answer is not available**.
101
+
102
+ - **Provide Clear and User-Friendly Responses**:
103
+ - Communicate clearly without technical jargon.
104
+ - Do not include any technical terms such as "nodes," "text chunks," or "atomic facts" in your final answer or title.
105
+
106
+ ---
107
+
108
+ ### **Expected Output Format:**
109
+
110
+ Your output should include the following fields in the order specified:
111
+
112
+ - **Title**: A short title providing the user with a quick reference to the answer.
113
+
114
+ - **Analyse**:
115
+ - An analysis of the notebook content, considering complementary information and resolving inconsistencies.
116
+ - State whether the notebook contains sufficient information to answer the question.
117
+ - If not, acknowledge that the information is not available.
118
+
119
+ - **Citations**:
120
+ - A list of citations for the information you used to generate the final answer.
121
+ - Each citation includes:
122
+ - **chunkId**: The ID of the line in your notebook.
123
+ - **relevance**: The relevance of the information in that line (as a percentage).
124
+ - **If the notebook is empty or lacks relevant information, the citations section should be empty**.
125
+
126
+ - **Questions**:
127
+ - **If sufficient information is available**, provide a list of **5 follow-up or refinement questions** based on the final answer.
128
+ - **If the answer is not available**, **do not generate any follow-up questions**.
129
+
130
+ - **Final Answer**:
131
+ - **If sufficient information is available**, provide a comprehensive, detailed, and well-structured answer, strictly using only the information from the notebook.
132
+ - The answer should be thorough and educational, expanding on concepts with proper explanations.
133
+ - Use markdown formatting with appropriate headers, subheadings, lists, and sections to organize the content clearly.
134
+ - **If insufficient information is available**, state that the answer is not available in the company knowledge.
135
+
136
+ ---
137
+
138
+ ### **Example When Information Is Available:**
139
+
140
+ **User:**
141
+
142
+ Question: What is project management?
143
+
144
+ Notebook of different exploration paths:
145
+
146
+ - 123e4567-e89b-12d3-a456-426614174000: Project management is the application of processes, methods, skills, knowledge and experience to achieve specific project objectives.
147
+ - 987f6543-e21a-34c5-b678-539725841901: Project management involves planning, organizing, securing, managing, leading, and controlling resources to achieve specific goals.
148
+ - 456a1234-f56b-78c9-d012-345678901234: The primary challenge of project management is to achieve all project goals within the given constraints like time, budget, and scope.
149
+
150
+ **Assistant:**
151
+
152
+ **Title:**
153
+
154
+ Understanding Project Management: Processes, Goals, and Constraints
155
+
156
+ **Analyse:**
157
+
158
+ The notebook contains comprehensive information about project management, covering its definition, key activities, and primary challenges. The information is consistent across different sources and provides a complete foundation for explaining what project management entails.
159
+
160
+ **Citations:**
161
+
162
+ - chunkId: "123e4567-e89b-12d3-a456-426614174000", relevance: 95
163
+ - chunkId: "987f6543-e21a-34c5-b678-539725841901", relevance: 90
164
+ - chunkId: "456a1234-f56b-78c9-d012-345678901234", relevance: 85
165
+
166
+ **Questions:**
167
+
168
+ 1. What specific methodologies are commonly used in project management?
169
+ 2. How do project managers handle scope creep and changing requirements?
170
+ 3. What tools and software are most effective for project planning and tracking?
171
+ 4. How does project management differ across various industries?
172
+ 5. What skills are essential for becoming an effective project manager?
173
+
174
+ **Final Answer:**
175
+
176
+ ## What is Project Management?
177
+
178
+ Project management is a comprehensive discipline that involves **the application of processes, methods, skills, knowledge, and experience to achieve specific project objectives**. It represents a structured approach to turning ideas and goals into tangible results within defined parameters.
179
+
180
+ ### Core Components of Project Management
181
+
182
+ Project management encompasses several critical activities that work together to ensure project success:
183
+
184
+ - **Planning**: Establishing clear objectives, timelines, and resource requirements
185
+ - **Organizing**: Structuring teams, workflows, and project elements efficiently
186
+ - **Securing**: Obtaining necessary resources, approvals, and stakeholder buy-in
187
+ - **Managing**: Overseeing day-to-day operations and progress monitoring
188
+ - **Leading**: Guiding teams and stakeholders toward common goals
189
+ - **Controlling**: Monitoring performance and making necessary adjustments
190
+
191
+ ### The Primary Challenge
192
+
193
+ The fundamental challenge of project management lies in **achieving all project goals within the given constraints**. These constraints typically include:
194
+
195
+ - **Time**: Meeting established deadlines and milestones
196
+ - **Budget**: Staying within allocated financial resources
197
+ - **Scope**: Delivering all required features and functionality without exceeding boundaries
198
+
199
+ ### Why Project Management Matters
200
+
201
+ Project management serves as the bridge between conceptual ideas and practical implementation. By applying systematic approaches and proven methodologies, project managers help organizations transform vision into reality while minimizing risks and maximizing efficiency.
202
+
203
+ The discipline ensures that resources are used effectively, stakeholders remain aligned, and deliverables meet quality standards within the established timeframe and budget constraints.
204
+
205
+ ---
206
+
207
+ ### **Example When Information Is Not Available:**
208
+
209
+ **User:**
210
+
211
+ Question: What is Ontology?
212
+
213
+ Notebook of different exploration paths:
214
+
215
+ - *(Notebook is empty or does not contain relevant information.)*
216
+
217
+ **Assistant:**
218
+
219
+ **Title:**
220
+
221
+ Information on Ontology
222
+
223
+ **Analyse:**
224
+
225
+ - After reviewing the notebook, there is no information available regarding the definition or explanation of ontology.
226
+ - The notebook does not contain sufficient information to answer the question.
227
+
228
+ **Citations:**
229
+
230
+ *(No citations since the notebook is empty or lacks relevant information.)*
231
+
232
+ **Questions:**
233
+
234
+ *(No questions since the answer is not available.)*
235
+
236
+ **Final Answer:**
237
+
238
+ The answer to your question is not available in the company knowledge. There is insufficient information to explain what ontology is based on the provided data.
239
+
240
+ ---
241
+
242
+ ### **Please Proceed by Following These Instructions Carefully:**
243
+
244
+ - **Use Only Information Provided in the Notebook**:
245
+ - Do not incorporate any external knowledge or make assumptions.
246
+ - Do not provide definitions or explanations that are not explicitly in the notebook.
247
+
248
+ - **Do Not Restate Notebook Content as Answer**:
249
+ - Unless the notebook explicitly answers the question, do not restate the notebook content as the final answer.
250
+
251
+ - **ChunkIds are Valid UUIDs**:
252
+ - Use only the chunkIds provided in the notebook, which are valid UUIDs (e.g., '123e4567-e89b-12d3-a456-426614174000').
253
+ - **Do not invent or make up chunkIds**.
254
+ - **Do not use line numbers or indices as chunkIds**.
255
+
256
+ - **Handle Empty or Insufficient Notebooks Appropriately**:
257
+ - If the notebook is empty or lacks sufficient information, acknowledge this in your analysis and final answer.
258
+ - **Do not generate any follow-up questions if the answer is not available**.
259
+
260
+ - **Provide Clear and User-Friendly Responses**:
261
+ - Communicate clearly without technical jargon.
262
+
263
+ ---
264
+
265
+ By emphasizing that ChunkIds are valid UUIDs and that you should not invent or make up any chunkIds, as well as specifying that no follow-up questions should be generated if the answer is not available, this updated prompt should help prevent the LLM from including information from outside the notebook or making up chunkIds. It also clarifies how to handle situations where the notebook does not contain sufficient information to answer the question.
266
+ `;
267
+ const outputSchema = zod_1.z.object({
268
+ title: zod_1.z.string().describe(`You should generate a short title to provide the user a quick reference`),
269
+ analyse: zod_1.z
270
+ .string()
271
+ .describe(`You should first analyse each notebook content before providing a final answer. During the analysis, consider complementary information from other notes and employ a majority voting strategy to resolve any inconsistencies.`),
272
+ citations: zod_1.z
273
+ .array(zod_1.z.object({
274
+ chunkId: zod_1.z.string().describe(`The UUID of the line in your notebook`),
275
+ relevance: zod_1.z
276
+ .number()
277
+ .describe(`The relevance of the information in the line of your notebook in percentage between 0 and 100. This defines if the information is relevant to the question or not and if it will be used as a citation.`),
278
+ }))
279
+ .describe(`You should provide citations to the information you used to generate the final answer. Consider ALL the ChunkIds in your notebook. Each citation should have a relevance score. Each ChunkId should be unique. Each ChunkId should have a relevance score.`),
280
+ questions: zod_1.z
281
+ .array(zod_1.z.string())
282
+ .describe(`A list of **5 follow-up or refinement questions** based on the final answer.`),
283
+ finalAnswer: zod_1.z.string().describe(`Generate a comprehensive, detailed, and well-structured final answer using only information from the notebook. If insufficient information is available, clearly state that the answer is not available in the company knowledge.
284
+
285
+ Format Requirements:
286
+ - Use proper markdown formatting with headers (##, ###) to organize content into logical sections
287
+ - Include bullet points or numbered lists for multiple items, steps, or concepts
288
+ - Expand on concepts with thorough explanations rather than brief summaries
289
+ - Use subheadings to break complex topics into digestible parts
290
+ - Provide detailed context and background information to help users understand completely
291
+ - Include specific examples or details from the notebook when available
292
+ - Ensure the answer flows logically and is educational in nature
293
+ - Make the response comprehensive and informative, not minimalistic
294
+ `),
295
+ });
296
+ const inputSchema = zod_1.z.object({
297
+ question: zod_1.z.string().describe("The question asked by the user"),
298
+ annotations: zod_1.z.string().describe("A set of annotations to provide additional context"),
299
+ notebook: zod_1.z
300
+ .array(zod_1.z.object({
301
+ chunkId: zod_1.z.string().describe("The UUID of the chunk"),
302
+ content: zod_1.z
303
+ .string()
304
+ .describe("The note you took about the content of the text chunk in relation to the user question."),
305
+ }))
306
+ .describe("A set of notes identified for each chunk of text that could be used as sources"),
307
+ });
308
+ let ResponderAnswerNodeService = ResponderAnswerNodeService_1 = class ResponderAnswerNodeService {
309
+ constructor(llmService, configService) {
310
+ this.llmService = llmService;
311
+ this.configService = configService;
312
+ this.logger = new common_1.Logger(ResponderAnswerNodeService_1.name);
313
+ const prompts = this.configService.get("prompts");
314
+ this.systemPrompt = prompts?.responder ?? exports.defaultAnswerPrompt;
315
+ }
316
+ async execute(params) {
317
+ const inputParams = {
318
+ question: params.state.context.question,
319
+ annotations: params.state.context.annotations,
320
+ notebook: params.state.context.notebook,
321
+ };
322
+ const llmResponse = await this.llmService.call({
323
+ inputSchema: inputSchema,
324
+ inputParams: inputParams,
325
+ outputSchema: outputSchema,
326
+ systemPrompts: [this.systemPrompt],
327
+ temperature: 0.1,
328
+ });
329
+ const sources = llmResponse.citations.map((citation) => ({
330
+ chunkId: citation.chunkId ?? "",
331
+ relevance: citation.relevance ?? 0,
332
+ reason: "",
333
+ }));
334
+ const filteredSources = [];
335
+ for (const source of sources) {
336
+ const existingSource = filteredSources.find((s) => s.chunkId === source.chunkId);
337
+ const existingNote = params.state.context.notebook.find((n) => n.chunkId === source.chunkId);
338
+ if (existingNote)
339
+ source.reason = existingNote.reason;
340
+ if (!existingSource) {
341
+ filteredSources.push(source);
342
+ continue;
343
+ }
344
+ if (source.relevance > existingSource.relevance) {
345
+ existingSource.relevance = source.relevance;
346
+ }
347
+ }
348
+ params.state.sources = filteredSources;
349
+ params.state.ontologies = params.state.context.ontology;
350
+ params.state.tokens = llmResponse.tokenUsage;
351
+ params.state.finalAnswer = {
352
+ title: llmResponse.title,
353
+ answer: llmResponse.finalAnswer,
354
+ analysis: llmResponse.analyse,
355
+ questions: llmResponse.questions,
356
+ hasAnswer: true,
357
+ };
358
+ return params.state;
359
+ }
360
+ };
361
+ exports.ResponderAnswerNodeService = ResponderAnswerNodeService;
362
+ exports.ResponderAnswerNodeService = ResponderAnswerNodeService = ResponderAnswerNodeService_1 = __decorate([
363
+ (0, common_1.Injectable)(),
364
+ __metadata("design:paramtypes", [llm_service_1.LLMService,
365
+ config_1.ConfigService])
366
+ ], ResponderAnswerNodeService);
367
+ //# sourceMappingURL=responder.answer.node.service.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"responder.answer.node.service.js","sourceRoot":"","sources":["../../../../src/agents/responder/nodes/responder.answer.node.service.ts"],"names":[],"mappings":";;;;;;;;;;;;;AAAA,2CAAoD;AACpD,2CAA+C;AAC/C,6BAAwB;AAExB,wEAAoE;AAGvD,QAAA,mBAAmB,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAwPlC,CAAC;AAEF,MAAM,YAAY,GAAG,OAAC,CAAC,MAAM,CAAC;IAC5B,KAAK,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,yEAAyE,CAAC;IACrG,OAAO,EAAE,OAAC;SACP,MAAM,EAAE;SACR,QAAQ,CACP,gOAAgO,CACjO;IACH,SAAS,EAAE,OAAC;SACT,KAAK,CACJ,OAAC,CAAC,MAAM,CAAC;QACP,OAAO,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,uCAAuC,CAAC;QACrE,SAAS,EAAE,OAAC;aACT,MAAM,EAAE;aACR,QAAQ,CACP,yMAAyM,CAC1M;KACJ,CAAC,CACH;SACA,QAAQ,CACP,4PAA4P,CAC7P;IACH,SAAS,EAAE,OAAC;SACT,KAAK,CAAC,OAAC,CAAC,MAAM,EAAE,CAAC;SACjB,QAAQ,CAAC,8EAA8E,CAAC;IAC3F,WAAW,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAC9B;;;;;;;;;;;OAWG,CACJ;CACF,CAAC,CAAC;AAEH,MAAM,WAAW,GAAG,OAAC,CAAC,MAAM,CAAC;IAC3B,QAAQ,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,gCAAgC,CAAC;IAC/D,WAAW,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,oDAAoD,CAAC;IACtF,QAAQ,EAAE,OAAC;SACR,KAAK,CACJ,OAAC,CAAC,MAAM,CAAC;QACP,OAAO,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,uBAAuB,CAAC;QACrD,OAAO,EAAE,OAAC;aACP,MAAM,EAAE;aACR,QAAQ,CAAC,yFAAyF,CAAC;KACvG,CAAC,CACH;SACA,QAAQ,CAAC,gFAAgF,CAAC;CAC9F,CAAC,CAAC;AAGI,IAAM,0BAA0B,kCAAhC,MAAM,0BAA0B;IAIrC,YACmB,UAAsB,EACtB,aAAiD;QADjD,eAAU,GAAV,UAAU,CAAY;QACtB,kBAAa,GAAb,aAAa,CAAoC;QALnD,WAAM,GAAG,IAAI,eAAM,CAAC,4BAA0B,CAAC,IAAI,CAAC,CAAC;QAOpE,MAAM,OAAO,GAAG,IAAI,CAAC,aAAa,CAAC,GAAG,CAAyB,SAAS,CAAC,CAAC;QAC1E,IAAI,CAAC,YAAY,GAAG,OAAO,EAAE,SAAS,IAAI,2BAAmB,CAAC;IAChE,CAAC;IAED,KAAK,CAAC,OAAO,CAAC,MAAgD;QAC5D,MAAM,WAAW,GAAgC;YAC/C,QAAQ,EAAE,MAAM,CAAC,KAAK,CAAC,OAAO,CAAC,QAAQ;YACvC,WAAW,EAAE,MAAM,CAAC,KAAK,CAAC,OAAO,CAAC,WAAW;YAC7C,QAAQ,EAAE,MAAM,CAAC,KAAK,CAAC,OAAO,CAAC,QAAQ;SACxC,CAAC;QAEF,MAAM,WAAW,GAAG,MAAM,IAAI,CAAC,UAAU,CAAC,IAAI,CAA+B;YAC3E,WAAW,EAAE,WAAW;YACxB,WAAW,EAAE,WAAW;YACxB,YAAY,EAAE,YAAY;YAC1B,aAAa,EAAE,CAAC,IAAI,CAAC,YAAY,CAAC;YAClC,WAAW,EAAE,GAAG;SACjB,CAAC,CAAC;QAEH,MAAM,OAAO,GAAG,WAAW,CAAC,SAAS,CAAC,GAAG,CAAC,CAAC,QAAQ,EAAE,EAAE,CAAC,CAAC;YACvD,OAAO,EAAE,QAAQ,CAAC,OAAO,IAAI,EAAE;YAC/B,SAAS,EAAE,QAAQ,CAAC,SAAS,IAAI,CAAC;YAClC,MAAM,EAAE,EAAE;SACX,CAAC,CAAC,CAAC;QAEJ,MAAM,eAAe,GAAG,EAAE,CAAC;QAC3B,KAAK,MAAM,MAAM,IAAI,OAAO,EAAE,CAAC;YAC7B,MAAM,cAAc,GAAG,eAAe,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,OAAO,KAAK,MAAM,CAAC,OAAO,CAAC,CAAC;YACjF,MAAM,YAAY,GAAG,MAAM,CAAC,KAAK,CAAC,OAAO,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,OAAO,KAAK,MAAM,CAAC,OAAO,CAAC,CAAC;YAE7F,IAAI,YAAY;gBAAE,MAAM,CAAC,MAAM,GAAG,YAAY,CAAC,MAAM,CAAC;YAEtD,IAAI,CAAC,cAAc,EAAE,CAAC;gBACpB,eAAe,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;gBAC7B,SAAS;YACX,CAAC;YAED,IAAI,MAAM,CAAC,SAAS,GAAG,cAAc,CAAC,SAAS,EAAE,CAAC;gBAChD,cAAc,CAAC,SAAS,GAAG,MAAM,CAAC,SAAS,CAAC;YAC9C,CAAC;QACH,CAAC;QAED,MAAM,CAAC,KAAK,CAAC,OAAO,GAAG,eAAe,CAAC;QACvC,MAAM,CAAC,KAAK,CAAC,UAAU,GAAG,MAAM,CAAC,KAAK,CAAC,OAAO,CAAC,QAAQ,CAAC;QAExD,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,WAAW,CAAC,UAAU,CAAC;QAE7C,MAAM,CAAC,KAAK,CAAC,WAAW,GAAG;YACzB,KAAK,EAAE,WAAW,CAAC,KAAK;YACxB,MAAM,EAAE,WAAW,CAAC,WAAW;YAC/B,QAAQ,EAAE,WAAW,CAAC,OAAO;YAC7B,SAAS,EAAE,WAAW,CAAC,SAAS;YAChC,SAAS,EAAE,IAAI;SAChB,CAAC;QAEF,OAAO,MAAM,CAAC,KAAK,CAAC;IACtB,CAAC;CACF,CAAA;AAjEY,gEAA0B;qCAA1B,0BAA0B;IADtC,IAAA,mBAAU,GAAE;qCAMoB,wBAAU;QACP,sBAAa;GANpC,0BAA0B,CAiEtC"}
@@ -0,0 +1,3 @@
1
+ export declare class ResponderModule {
2
+ }
3
+ //# sourceMappingURL=responder.module.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"responder.module.d.ts","sourceRoot":"","sources":["../../../src/agents/responder/responder.module.ts"],"names":[],"mappings":"AASA,qBAKa,eAAe;CAAG"}
@@ -0,0 +1,28 @@
1
+ "use strict";
2
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
3
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
4
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
5
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
6
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
7
+ };
8
+ Object.defineProperty(exports, "__esModule", { value: true });
9
+ exports.ResponderModule = void 0;
10
+ const common_1 = require("@nestjs/common");
11
+ const contextualiser_module_1 = require("../contextualiser/contextualiser.module");
12
+ const responder_context_factory_1 = require("./factories/responder.context.factory");
13
+ const responder_answer_node_service_1 = require("./nodes/responder.answer.node.service");
14
+ const responder_service_1 = require("./services/responder.service");
15
+ const llm_module_1 = require("../../core/llm/llm.module");
16
+ const company_module_1 = require("../../foundations/company/company.module");
17
+ const s3_module_1 = require("../../foundations/s3/s3.module");
18
+ let ResponderModule = class ResponderModule {
19
+ };
20
+ exports.ResponderModule = ResponderModule;
21
+ exports.ResponderModule = ResponderModule = __decorate([
22
+ (0, common_1.Module)({
23
+ imports: [llm_module_1.LLMModule, s3_module_1.S3Module, company_module_1.CompanyModule, contextualiser_module_1.ContextualiserModule],
24
+ providers: [responder_context_factory_1.ResponderContextFactoryService, responder_service_1.ResponderService, responder_answer_node_service_1.ResponderAnswerNodeService],
25
+ exports: [responder_service_1.ResponderService],
26
+ })
27
+ ], ResponderModule);
28
+ //# sourceMappingURL=responder.module.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"responder.module.js","sourceRoot":"","sources":["../../../src/agents/responder/responder.module.ts"],"names":[],"mappings":";;;;;;;;;AAAA,2CAAwC;AACxC,mFAA+E;AAC/E,qFAAuF;AACvF,yFAAmF;AACnF,oEAAgE;AAChE,0DAAsD;AACtD,6EAAyE;AACzE,8DAA0D;AAOnD,IAAM,eAAe,GAArB,MAAM,eAAe;CAAG,CAAA;AAAlB,0CAAe;0BAAf,eAAe;IAL3B,IAAA,eAAM,EAAC;QACN,OAAO,EAAE,CAAC,sBAAS,EAAE,oBAAQ,EAAE,8BAAa,EAAE,4CAAoB,CAAC;QACnE,SAAS,EAAE,CAAC,0DAA8B,EAAE,oCAAgB,EAAE,0DAA0B,CAAC;QACzF,OAAO,EAAE,CAAC,oCAAgB,CAAC;KAC5B,CAAC;GACW,eAAe,CAAG"}
@@ -0,0 +1,21 @@
1
+ import { ContextualiserService } from "../../contextualiser/services/contextualiser.service";
2
+ import { ResponderContextFactoryService } from "../../responder/factories/responder.context.factory";
3
+ import { ResponderResponseInterface } from "../../responder/interfaces/responder.response.interface";
4
+ import { ResponderAnswerNodeService } from "../../responder/nodes/responder.answer.node.service";
5
+ import { MessageInterface } from "../../../common/interfaces/message.interface";
6
+ import { DataLimits } from "../../../common/types/data.limits";
7
+ export declare class ResponderService {
8
+ private readonly responderContextFactoryService;
9
+ private readonly contextualiserService;
10
+ private readonly answerNode;
11
+ constructor(responderContextFactoryService: ResponderContextFactoryService, contextualiserService: ContextualiserService, answerNode: ResponderAnswerNodeService);
12
+ run(params: {
13
+ companyId: string;
14
+ contentId: string;
15
+ contentType: string;
16
+ dataLimits: DataLimits;
17
+ messages: MessageInterface[];
18
+ question?: string;
19
+ }): Promise<ResponderResponseInterface>;
20
+ }
21
+ //# sourceMappingURL=responder.service.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"responder.service.d.ts","sourceRoot":"","sources":["../../../../src/agents/responder/services/responder.service.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,qBAAqB,EAAE,MAAM,sDAAsD,CAAC;AAE7F,OAAO,EAAE,8BAA8B,EAAE,MAAM,qDAAqD,CAAC;AACrG,OAAO,EAAE,0BAA0B,EAAE,MAAM,yDAAyD,CAAC;AACrG,OAAO,EAAE,0BAA0B,EAAE,MAAM,qDAAqD,CAAC;AACjG,OAAO,EAAE,gBAAgB,EAAE,MAAM,8CAA8C,CAAC;AAChF,OAAO,EAAE,UAAU,EAAE,MAAM,mCAAmC,CAAC;AAE/D,qBACa,gBAAgB;IAEzB,OAAO,CAAC,QAAQ,CAAC,8BAA8B;IAC/C,OAAO,CAAC,QAAQ,CAAC,qBAAqB;IACtC,OAAO,CAAC,QAAQ,CAAC,UAAU;gBAFV,8BAA8B,EAAE,8BAA8B,EAC9D,qBAAqB,EAAE,qBAAqB,EAC5C,UAAU,EAAE,0BAA0B;IAGnD,GAAG,CAAC,MAAM,EAAE;QAChB,SAAS,EAAE,MAAM,CAAC;QAClB,SAAS,EAAE,MAAM,CAAC;QAClB,WAAW,EAAE,MAAM,CAAC;QACpB,UAAU,EAAE,UAAU,CAAC;QACvB,QAAQ,EAAE,gBAAgB,EAAE,CAAC;QAC7B,QAAQ,CAAC,EAAE,MAAM,CAAC;KACnB,GAAG,OAAO,CAAC,0BAA0B,CAAC;CA0DxC"}
@@ -0,0 +1,87 @@
1
+ "use strict";
2
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
3
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
4
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
5
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
6
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
7
+ };
8
+ var __metadata = (this && this.__metadata) || function (k, v) {
9
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
10
+ };
11
+ Object.defineProperty(exports, "__esModule", { value: true });
12
+ exports.ResponderService = void 0;
13
+ const langgraph_1 = require("@langchain/langgraph");
14
+ const common_1 = require("@nestjs/common");
15
+ const crypto_1 = require("crypto");
16
+ const contextualiser_service_1 = require("../../contextualiser/services/contextualiser.service");
17
+ const responder_context_1 = require("../../responder/contexts/responder.context");
18
+ const responder_context_factory_1 = require("../../responder/factories/responder.context.factory");
19
+ const responder_answer_node_service_1 = require("../../responder/nodes/responder.answer.node.service");
20
+ let ResponderService = class ResponderService {
21
+ constructor(responderContextFactoryService, contextualiserService, answerNode) {
22
+ this.responderContextFactoryService = responderContextFactoryService;
23
+ this.contextualiserService = contextualiserService;
24
+ this.answerNode = answerNode;
25
+ }
26
+ async run(params) {
27
+ const workflow = new langgraph_1.StateGraph(responder_context_1.ResponderContext)
28
+ .addNode("contextualiser", async (state) => {
29
+ const context = await this.contextualiserService.run({
30
+ companyId: state.companyId,
31
+ contentId: state.contentId,
32
+ contentType: state.contentType,
33
+ dataLimits: params.dataLimits,
34
+ messages: params.messages,
35
+ question: params.question,
36
+ });
37
+ state.context = context;
38
+ state.tokens = context.tokens;
39
+ return state;
40
+ })
41
+ .addNode("answer", async (state) => {
42
+ const result = await this.answerNode.execute({
43
+ state: state,
44
+ });
45
+ return result;
46
+ })
47
+ .addEdge(langgraph_1.START, "contextualiser")
48
+ .addEdge("contextualiser", "answer")
49
+ .addEdge("answer", langgraph_1.END);
50
+ const threadId = (0, crypto_1.randomUUID)();
51
+ const checkpointer = new langgraph_1.MemorySaver();
52
+ const app = workflow.compile({ checkpointer: checkpointer });
53
+ const initialState = this.responderContextFactoryService.create({
54
+ companyId: params.companyId,
55
+ contentId: params.contentId,
56
+ contentType: params.contentType,
57
+ dataLimits: params.dataLimits,
58
+ });
59
+ let finalState;
60
+ try {
61
+ finalState = await app.invoke(initialState, {
62
+ configurable: { thread_id: threadId },
63
+ recursionLimit: 100,
64
+ });
65
+ }
66
+ catch (e) {
67
+ console.error("[WORKFLOW:Responder] Failed with error", {
68
+ error: e.message,
69
+ errorCode: e.lc_error_code,
70
+ recursionLimit: 100,
71
+ });
72
+ throw e;
73
+ }
74
+ const response = this.responderContextFactoryService.createAnswer({
75
+ state: finalState,
76
+ });
77
+ return response;
78
+ }
79
+ };
80
+ exports.ResponderService = ResponderService;
81
+ exports.ResponderService = ResponderService = __decorate([
82
+ (0, common_1.Injectable)(),
83
+ __metadata("design:paramtypes", [responder_context_factory_1.ResponderContextFactoryService,
84
+ contextualiser_service_1.ContextualiserService,
85
+ responder_answer_node_service_1.ResponderAnswerNodeService])
86
+ ], ResponderService);
87
+ //# sourceMappingURL=responder.service.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"responder.service.js","sourceRoot":"","sources":["../../../../src/agents/responder/services/responder.service.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,oDAA2E;AAC3E,2CAA4C;AAC5C,mCAAoC;AACpC,iGAA6F;AAC7F,kFAAqG;AACrG,mGAAqG;AAErG,uGAAiG;AAK1F,IAAM,gBAAgB,GAAtB,MAAM,gBAAgB;IAC3B,YACmB,8BAA8D,EAC9D,qBAA4C,EAC5C,UAAsC;QAFtC,mCAA8B,GAA9B,8BAA8B,CAAgC;QAC9D,0BAAqB,GAArB,qBAAqB,CAAuB;QAC5C,eAAU,GAAV,UAAU,CAA4B;IACtD,CAAC;IAEJ,KAAK,CAAC,GAAG,CAAC,MAOT;QACC,MAAM,QAAQ,GAAG,IAAI,sBAAU,CAAC,oCAAgB,CAAC;aAC9C,OAAO,CAAC,gBAAgB,EAAE,KAAK,EAAE,KAAK,EAAE,EAAE;YACzC,MAAM,OAAO,GAAG,MAAM,IAAI,CAAC,qBAAqB,CAAC,GAAG,CAAC;gBACnD,SAAS,EAAE,KAAK,CAAC,SAAS;gBAC1B,SAAS,EAAE,KAAK,CAAC,SAAS;gBAC1B,WAAW,EAAE,KAAK,CAAC,WAAW;gBAC9B,UAAU,EAAE,MAAM,CAAC,UAAU;gBAC7B,QAAQ,EAAE,MAAM,CAAC,QAAQ;gBACzB,QAAQ,EAAE,MAAM,CAAC,QAAQ;aAC1B,CAAC,CAAC;YACH,KAAK,CAAC,OAAO,GAAG,OAAO,CAAC;YACxB,KAAK,CAAC,MAAM,GAAG,OAAO,CAAC,MAAM,CAAC;YAE9B,OAAO,KAAK,CAAC;QACf,CAAC,CAAC;aACD,OAAO,CAAC,QAAQ,EAAE,KAAK,EAAE,KAA4B,EAAE,EAAE;YACxD,MAAM,MAAM,GAAG,MAAM,IAAI,CAAC,UAAU,CAAC,OAAO,CAAC;gBAC3C,KAAK,EAAE,KAAK;aACb,CAAC,CAAC;YACH,OAAO,MAAM,CAAC;QAChB,CAAC,CAAC;aACD,OAAO,CAAC,iBAAK,EAAE,gBAAgB,CAAC;aAChC,OAAO,CAAC,gBAAgB,EAAE,QAAQ,CAAC;aACnC,OAAO,CAAC,QAAQ,EAAE,eAAG,CAAC,CAAC;QAE1B,MAAM,QAAQ,GAAG,IAAA,mBAAU,GAAE,CAAC;QAC9B,MAAM,YAAY,GAAG,IAAI,uBAAW,EAAE,CAAC;QACvC,MAAM,GAAG,GAAG,QAAQ,CAAC,OAAO,CAAC,EAAE,YAAY,EAAE,YAAY,EAAE,CAAC,CAAC;QAE7D,MAAM,YAAY,GAA0B,IAAI,CAAC,8BAA8B,CAAC,MAAM,CAAC;YACrF,SAAS,EAAE,MAAM,CAAC,SAAS;YAC3B,SAAS,EAAE,MAAM,CAAC,SAAS;YAC3B,WAAW,EAAE,MAAM,CAAC,WAAW;YAC/B,UAAU,EAAE,MAAM,CAAC,UAAU;SAC9B,CAAC,CAAC;QAEH,IAAI,UAAiC,CAAC;QACtC,IAAI,CAAC;YACH,UAAU,GAAG,MAAM,GAAG,CAAC,MAAM,CAAC,YAAY,EAAE;gBAC1C,YAAY,EAAE,EAAE,SAAS,EAAE,QAAQ,EAAE;gBACrC,cAAc,EAAE,GAAG;aACb,CAAC,CAAC;QACZ,CAAC;QAAC,OAAO,CAAC,EAAE,CAAC;YACX,OAAO,CAAC,KAAK,CAAC,wCAAwC,EAAE;gBACtD,KAAK,EAAG,CAAW,CAAC,OAAO;gBAC3B,SAAS,EAAG,CAAS,CAAC,aAAa;gBACnC,cAAc,EAAE,GAAG;aACpB,CAAC,CAAC;YACH,MAAM,CAAC,CAAC;QACV,CAAC;QAED,MAAM,QAAQ,GAA+B,IAAI,CAAC,8BAA8B,CAAC,YAAY,CAAC;YAC5F,KAAK,EAAE,UAAU;SAClB,CAAC,CAAC;QAEH,OAAO,QAAQ,CAAC;IAClB,CAAC;CACF,CAAA;AAxEY,4CAAgB;2BAAhB,gBAAgB;IAD5B,IAAA,mBAAU,GAAE;qCAGwC,0DAA8B;QACvC,8CAAqB;QAChC,0DAA0B;GAJ9C,gBAAgB,CAwE5B"}
@@ -0,0 +1,24 @@
1
+ import { ConfigService } from "@nestjs/config";
2
+ import { TokenUsageInterface } from "../../../common/interfaces/token.usage.interface";
3
+ import { BaseConfigInterface } from "../../../config/interfaces";
4
+ import { ModelService } from "../../../core/llm/services/model.service";
5
+ import { Chunk } from "../../../foundations/chunk/entities/chunk.entity";
6
+ export declare const defaultMapPrompt = "Summarize the following content using clean markdown formatting.\n\nIMPORTANT: Output ONLY the summary content directly. Do NOT include:\n- Introductory phrases like \"Here is a summary\"\n- Meta-commentary about what you're doing\n- Unnecessary horizontal rules or separators\n\nJust write the summary content itself.\n\n{context}";
7
+ export declare const defaultCombinePrompt = "Based on the following summaries, write a consolidated summary that integrates all the main themes and key points.\n\n{text}\n\nIMPORTANT: Output ONLY the summary content directly. Do NOT include:\n- Introductory phrases like \"Here is a summary\"\n- Meta-commentary about what you're doing\n- Unnecessary horizontal rules or separators\n- Any reference to the fact that you are synthesizing summaries\n\nWrite directly about the content subject. Use well-structured markdown with appropriate headings, bullet points, and emphasis.";
8
+ export declare const defaultTldrPrompt = "Create a single concise sentence (maximum 20 words) that captures the essential point of this summary:\n\n{summary}";
9
+ export declare class SummariserService {
10
+ private readonly modelService;
11
+ private readonly configService;
12
+ private readonly mapPromptText;
13
+ private readonly combinePromptText;
14
+ private readonly tldrPromptText;
15
+ constructor(modelService: ModelService, configService: ConfigService<BaseConfigInterface>);
16
+ summarise(params: {
17
+ chunks: Chunk[];
18
+ }): Promise<{
19
+ content: string;
20
+ tldr: string;
21
+ tokens: TokenUsageInterface;
22
+ }>;
23
+ }
24
+ //# sourceMappingURL=summariser.service.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"summariser.service.d.ts","sourceRoot":"","sources":["../../../../src/agents/summariser/services/summariser.service.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,aAAa,EAAE,MAAM,gBAAgB,CAAC;AAE/C,OAAO,EAAE,mBAAmB,EAAE,MAAM,kDAAkD,CAAC;AACvF,OAAO,EAAE,mBAAmB,EAA0B,MAAM,4BAA4B,CAAC;AACzF,OAAO,EAAE,YAAY,EAAE,MAAM,0CAA0C,CAAC;AACxE,OAAO,EAAE,KAAK,EAAE,MAAM,kDAAkD,CAAC;AAEzE,eAAO,MAAM,gBAAgB,gVASnB,CAAC;AAEX,eAAO,MAAM,oBAAoB,whBAU8F,CAAC;AAEhI,eAAO,MAAM,iBAAiB,wHAEpB,CAAC;AAEX,qBACa,iBAAiB;IAM1B,OAAO,CAAC,QAAQ,CAAC,YAAY;IAC7B,OAAO,CAAC,QAAQ,CAAC,aAAa;IANhC,OAAO,CAAC,QAAQ,CAAC,aAAa,CAAS;IACvC,OAAO,CAAC,QAAQ,CAAC,iBAAiB,CAAS;IAC3C,OAAO,CAAC,QAAQ,CAAC,cAAc,CAAS;gBAGrB,YAAY,EAAE,YAAY,EAC1B,aAAa,EAAE,aAAa,CAAC,mBAAmB,CAAC;IAQ9D,SAAS,CAAC,MAAM,EAAE;QAAE,MAAM,EAAE,KAAK,EAAE,CAAA;KAAE,GAAG,OAAO,CAAC;QACpD,OAAO,EAAE,MAAM,CAAC;QAChB,IAAI,EAAE,MAAM,CAAC;QACb,MAAM,EAAE,mBAAmB,CAAC;KAC7B,CAAC;CAiEH"}