@memori.ai/memori-react 6.8.2 → 6.8.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1196) hide show
  1. package/CHANGELOG.md +1910 -0
  2. package/README.md +89 -48
  3. package/dist/I18nWrapper.js +3 -47
  4. package/dist/I18nWrapper.js.map +1 -1
  5. package/dist/components/AccountForm/AccountForm.d.ts +4 -2
  6. package/dist/components/AccountForm/AccountForm.js +2 -4
  7. package/dist/components/AccountForm/AccountForm.js.map +1 -1
  8. package/dist/components/AgeVerificationModal/AgeVerificationModal.css +1 -1
  9. package/dist/components/AgeVerificationModal/AgeVerificationModal.d.ts +1 -0
  10. package/dist/components/AgeVerificationModal/AgeVerificationModal.js +1 -1
  11. package/dist/components/AgeVerificationModal/AgeVerificationModal.js.map +1 -1
  12. package/dist/components/AttachmentLinkModal/AttachmentLinkModal.d.ts +1 -0
  13. package/dist/components/Auth/Auth.d.ts +1 -0
  14. package/dist/components/Avatar/Avatar.css +2 -2
  15. package/dist/components/Avatar/Avatar.d.ts +7 -0
  16. package/dist/components/Avatar/Avatar.js +70 -60
  17. package/dist/components/Avatar/Avatar.js.map +1 -1
  18. package/dist/components/Avatar/AvatarView/AvatarComponent/Shadow/DynamicShadow.d.ts +7 -0
  19. package/dist/components/Avatar/AvatarView/AvatarComponent/Shadow/DynamicShadow.js +62 -0
  20. package/dist/components/Avatar/AvatarView/AvatarComponent/Shadow/DynamicShadow.js.map +1 -0
  21. package/dist/components/Avatar/AvatarView/AvatarComponent/avatarComponent.d.ts +22 -0
  22. package/dist/components/Avatar/AvatarView/AvatarComponent/avatarComponent.js +41 -0
  23. package/dist/components/Avatar/AvatarView/AvatarComponent/avatarComponent.js.map +1 -0
  24. package/dist/components/Avatar/AvatarView/AvatarComponent/components/FullbodyAvatar/fullbodyAvatar.d.ts +18 -0
  25. package/dist/components/Avatar/AvatarView/AvatarComponent/components/FullbodyAvatar/fullbodyAvatar.js +185 -0
  26. package/dist/components/Avatar/AvatarView/AvatarComponent/components/FullbodyAvatar/fullbodyAvatar.js.map +1 -0
  27. package/dist/components/Avatar/AvatarView/AvatarComponent/components/FullbodyAvatar/types.d.ts +39 -0
  28. package/dist/components/Avatar/AvatarView/AvatarComponent/components/FullbodyAvatar/types.js +10 -0
  29. package/dist/components/Avatar/AvatarView/AvatarComponent/components/FullbodyAvatar/types.js.map +1 -0
  30. package/dist/components/Avatar/AvatarView/AvatarComponent/components/controllers/AvatarAnimator.d.ts +65 -0
  31. package/dist/components/Avatar/AvatarView/AvatarComponent/components/controllers/AvatarAnimator.js +747 -0
  32. package/dist/components/Avatar/AvatarView/AvatarComponent/components/controllers/AvatarAnimator.js.map +1 -0
  33. package/dist/components/Avatar/AvatarView/AvatarComponent/components/controllers/AvatarPositionController.d.ts +19 -0
  34. package/dist/components/Avatar/AvatarView/AvatarComponent/components/controllers/AvatarPositionController.js +60 -0
  35. package/dist/components/Avatar/AvatarView/AvatarComponent/components/controllers/AvatarPositionController.js.map +1 -0
  36. package/dist/components/Avatar/AvatarView/AvatarComponent/components/controllers/MorphTargetController.d.ts +24 -0
  37. package/dist/components/Avatar/AvatarView/AvatarComponent/components/controllers/MorphTargetController.js +133 -0
  38. package/dist/components/Avatar/AvatarView/AvatarComponent/components/controllers/MorphTargetController.js.map +1 -0
  39. package/dist/components/Avatar/AvatarView/AvatarComponent/components/controls.d.ts +26 -0
  40. package/dist/components/Avatar/AvatarView/AvatarComponent/components/controls.js +59 -0
  41. package/dist/components/Avatar/AvatarView/AvatarComponent/components/controls.js.map +1 -0
  42. package/dist/components/Avatar/AvatarView/AvatarComponent/components/halfbodyAvatar.d.ts +15 -0
  43. package/dist/components/Avatar/AvatarView/AvatarComponent/components/halfbodyAvatar.js +83 -0
  44. package/dist/components/Avatar/AvatarView/AvatarComponent/components/halfbodyAvatar.js.map +1 -0
  45. package/dist/components/{AvatarView → Avatar/AvatarView/AvatarComponent}/components/loader.d.ts +1 -0
  46. package/dist/components/{AvatarView → Avatar/AvatarView/AvatarComponent}/components/loader.js +1 -1
  47. package/dist/components/Avatar/AvatarView/AvatarComponent/components/loader.js.map +1 -0
  48. package/dist/components/Avatar/AvatarView/AvatarComponent/constants.d.ts +35 -0
  49. package/dist/components/Avatar/AvatarView/AvatarComponent/constants.js +99 -0
  50. package/dist/components/Avatar/AvatarView/AvatarComponent/constants.js.map +1 -0
  51. package/dist/components/Avatar/AvatarView/AvatarComponent/lights/Lights.d.ts +27 -0
  52. package/dist/components/Avatar/AvatarView/AvatarComponent/lights/Lights.js +52 -0
  53. package/dist/components/Avatar/AvatarView/AvatarComponent/lights/Lights.js.map +1 -0
  54. package/dist/components/Avatar/AvatarView/AvatarComponent/positionControls/positionControls.css +111 -0
  55. package/dist/components/Avatar/AvatarView/AvatarComponent/positionControls/positionControls.d.ts +11 -0
  56. package/dist/components/Avatar/AvatarView/AvatarComponent/positionControls/positionControls.js +110 -0
  57. package/dist/components/Avatar/AvatarView/AvatarComponent/positionControls/positionControls.js.map +1 -0
  58. package/dist/components/Avatar/AvatarView/index.d.ts +30 -0
  59. package/dist/components/Avatar/AvatarView/index.js +68 -0
  60. package/dist/components/Avatar/AvatarView/index.js.map +1 -0
  61. package/dist/components/Avatar/AvatarView/utils/hideHands.d.ts +2 -0
  62. package/dist/components/Avatar/AvatarView/utils/hideHands.js +14 -0
  63. package/dist/components/Avatar/AvatarView/utils/hideHands.js.map +1 -0
  64. package/dist/components/Avatar/AvatarView/utils/useEyeBlink.d.ts +16 -0
  65. package/dist/components/Avatar/AvatarView/utils/useEyeBlink.js +71 -0
  66. package/dist/components/Avatar/AvatarView/utils/useEyeBlink.js.map +1 -0
  67. package/dist/components/Avatar/AvatarView/utils/useHeadMovement.js.map +1 -0
  68. package/dist/components/Avatar/AvatarView/utils/useLoadingMorphAnim.js.map +1 -0
  69. package/dist/components/Avatar/AvatarView/utils/useMouthAnimation.d.ts +16 -0
  70. package/dist/components/Avatar/AvatarView/utils/useMouthAnimation.js +59 -0
  71. package/dist/components/Avatar/AvatarView/utils/useMouthAnimation.js.map +1 -0
  72. package/dist/components/Avatar/AvatarView/utils/useSmile.js +28 -0
  73. package/dist/components/Avatar/AvatarView/utils/useSmile.js.map +1 -0
  74. package/dist/components/Avatar/AvatarView/utils/utils.js.map +1 -0
  75. package/dist/components/Blob/Blob.d.ts +1 -0
  76. package/dist/components/BlockedMemoriBadge/BlockedMemoriBadge.d.ts +1 -0
  77. package/dist/components/Chat/Chat.d.ts +15 -7
  78. package/dist/components/Chat/Chat.js +49 -30
  79. package/dist/components/Chat/Chat.js.map +1 -1
  80. package/dist/components/ChatBubble/ChatBubble.css +87 -9
  81. package/dist/components/ChatBubble/ChatBubble.d.ts +14 -0
  82. package/dist/components/ChatBubble/ChatBubble.js +92 -67
  83. package/dist/components/ChatBubble/ChatBubble.js.map +1 -1
  84. package/dist/components/ChatHistoryDrawer/ChatHistory.css +414 -0
  85. package/dist/components/ChatHistoryDrawer/ChatHistory.d.ts +20 -0
  86. package/dist/components/ChatHistoryDrawer/ChatHistory.js +630 -0
  87. package/dist/components/ChatHistoryDrawer/ChatHistory.js.map +1 -0
  88. package/dist/components/ChatInputs/ChatInputs.d.ts +9 -3
  89. package/dist/components/ChatInputs/ChatInputs.js +47 -6
  90. package/dist/components/ChatInputs/ChatInputs.js.map +1 -1
  91. package/dist/components/ChatTextArea/ChatTextArea.css +9 -5
  92. package/dist/components/ChatTextArea/ChatTextArea.js +1 -1
  93. package/dist/components/ChatTextArea/ChatTextArea.js.map +1 -1
  94. package/dist/components/CompletionProviderStatus/CompletionProviderStatus.css +35 -17
  95. package/dist/components/CompletionProviderStatus/CompletionProviderStatus.d.ts +3 -3
  96. package/dist/components/CompletionProviderStatus/CompletionProviderStatus.js +141 -31
  97. package/dist/components/CompletionProviderStatus/CompletionProviderStatus.js.map +1 -1
  98. package/dist/components/CustomGLBModelViewer/ModelViewer.d.ts +1 -0
  99. package/dist/components/ExpertsDrawer/ExpertsDrawer.d.ts +1 -0
  100. package/dist/components/ExpertsDrawer/ExpertsDrawer.js +2 -2
  101. package/dist/components/ExpertsDrawer/ExpertsDrawer.js.map +1 -1
  102. package/dist/components/FeedbackButtons/FeedbackButtons.d.ts +1 -0
  103. package/dist/components/FilePreview/FilePreview.css +184 -0
  104. package/dist/components/FilePreview/FilePreview.d.ts +9 -0
  105. package/dist/components/FilePreview/FilePreview.js +74 -0
  106. package/dist/components/FilePreview/FilePreview.js.map +1 -0
  107. package/dist/components/Header/Header.css +3 -3
  108. package/dist/components/Header/Header.d.ts +5 -1
  109. package/dist/components/Header/Header.js +27 -13
  110. package/dist/components/Header/Header.js.map +1 -1
  111. package/dist/components/KnownFacts/KnownFacts.d.ts +4 -2
  112. package/dist/components/KnownFacts/KnownFacts.js +3 -5
  113. package/dist/components/KnownFacts/KnownFacts.js.map +1 -1
  114. package/dist/components/LoginDrawer/LoginDrawer.css +302 -0
  115. package/dist/components/LoginDrawer/LoginDrawer.d.ts +4 -2
  116. package/dist/components/LoginDrawer/LoginDrawer.js +9 -11
  117. package/dist/components/LoginDrawer/LoginDrawer.js.map +1 -1
  118. package/dist/components/MediaWidget/LinkItemWidget.css +10 -0
  119. package/dist/components/MediaWidget/LinkItemWidget.d.ts +1 -0
  120. package/dist/components/MediaWidget/LinkItemWidget.js +5 -2
  121. package/dist/components/MediaWidget/LinkItemWidget.js.map +1 -1
  122. package/dist/components/MediaWidget/MediaItemWidget.css +153 -3
  123. package/dist/components/MediaWidget/MediaItemWidget.d.ts +7 -2
  124. package/dist/components/MediaWidget/MediaItemWidget.js +89 -37
  125. package/dist/components/MediaWidget/MediaItemWidget.js.map +1 -1
  126. package/dist/components/MediaWidget/MediaWidget.d.ts +4 -1
  127. package/dist/components/MediaWidget/MediaWidget.js +2 -2
  128. package/dist/components/MediaWidget/MediaWidget.js.map +1 -1
  129. package/dist/components/MemoriArtifactSystem/components/ArtifactActions/ArtifactActions.css +163 -0
  130. package/dist/components/MemoriArtifactSystem/components/ArtifactActions/ArtifactActions.d.ts +12 -0
  131. package/dist/components/MemoriArtifactSystem/components/ArtifactActions/ArtifactActions.js +133 -0
  132. package/dist/components/MemoriArtifactSystem/components/ArtifactActions/ArtifactActions.js.map +1 -0
  133. package/dist/components/MemoriArtifactSystem/components/ArtifactActions/components/CopyButtonWithDropdown.d.ts +4 -0
  134. package/dist/components/MemoriArtifactSystem/components/ArtifactActions/components/CopyButtonWithDropdown.js +286 -0
  135. package/dist/components/MemoriArtifactSystem/components/ArtifactActions/components/CopyButtonWithDropdown.js.map +1 -0
  136. package/dist/components/MemoriArtifactSystem/components/ArtifactActions/components/CopyMenuItem.d.ts +6 -0
  137. package/dist/components/MemoriArtifactSystem/components/ArtifactActions/components/CopyMenuItem.js +40 -0
  138. package/dist/components/MemoriArtifactSystem/components/ArtifactActions/components/CopyMenuItem.js.map +1 -0
  139. package/dist/components/MemoriArtifactSystem/components/ArtifactActions/hooks/useCopyArtifact.d.ts +6 -0
  140. package/dist/components/MemoriArtifactSystem/components/ArtifactActions/hooks/useCopyArtifact.js +492 -0
  141. package/dist/components/MemoriArtifactSystem/components/ArtifactActions/hooks/useCopyArtifact.js.map +1 -0
  142. package/dist/components/MemoriArtifactSystem/components/ArtifactActions/index.d.ts +5 -0
  143. package/dist/components/MemoriArtifactSystem/components/ArtifactActions/index.js +14 -0
  144. package/dist/components/MemoriArtifactSystem/components/ArtifactActions/index.js.map +1 -0
  145. package/dist/components/MemoriArtifactSystem/components/ArtifactActions/styles.css +489 -0
  146. package/dist/components/MemoriArtifactSystem/components/ArtifactActions/test/CopyButtonTest.d.ts +3 -0
  147. package/dist/components/MemoriArtifactSystem/components/ArtifactActions/test/CopyButtonTest.js +64 -0
  148. package/dist/components/MemoriArtifactSystem/components/ArtifactActions/test/CopyButtonTest.js.map +1 -0
  149. package/dist/components/MemoriArtifactSystem/components/ArtifactActions/types.d.ts +61 -0
  150. package/dist/components/MemoriArtifactSystem/components/ArtifactActions/types.js +3 -0
  151. package/dist/components/MemoriArtifactSystem/components/ArtifactActions/types.js.map +1 -0
  152. package/dist/components/MemoriArtifactSystem/components/ArtifactActions/utils/PDFExporter.d.ts +15 -0
  153. package/dist/components/MemoriArtifactSystem/components/ArtifactActions/utils/PDFExporter.js +352 -0
  154. package/dist/components/MemoriArtifactSystem/components/ArtifactActions/utils/PDFExporter.js.map +1 -0
  155. package/dist/components/MemoriArtifactSystem/components/ArtifactDrawer/ArtifactDrawer.css +1059 -0
  156. package/dist/components/MemoriArtifactSystem/components/ArtifactDrawer/ArtifactDrawer.d.ts +5 -0
  157. package/dist/components/MemoriArtifactSystem/components/ArtifactDrawer/ArtifactDrawer.js +167 -0
  158. package/dist/components/MemoriArtifactSystem/components/ArtifactDrawer/ArtifactDrawer.js.map +1 -0
  159. package/dist/components/MemoriArtifactSystem/components/ArtifactDrawer/components/TabSwitch.css +150 -0
  160. package/dist/components/MemoriArtifactSystem/components/ArtifactDrawer/components/TabSwitch.d.ts +9 -0
  161. package/dist/components/MemoriArtifactSystem/components/ArtifactDrawer/components/TabSwitch.js +35 -0
  162. package/dist/components/MemoriArtifactSystem/components/ArtifactDrawer/components/TabSwitch.js.map +1 -0
  163. package/dist/components/MemoriArtifactSystem/components/ArtifactHandler/ArtifactHandler.css +253 -0
  164. package/dist/components/MemoriArtifactSystem/components/ArtifactHandler/ArtifactHandler.d.ts +8 -0
  165. package/dist/components/MemoriArtifactSystem/components/ArtifactHandler/ArtifactHandler.js +104 -0
  166. package/dist/components/MemoriArtifactSystem/components/ArtifactHandler/ArtifactHandler.js.map +1 -0
  167. package/dist/components/MemoriArtifactSystem/components/ArtifactPreview/ArtifactPreview.css +346 -0
  168. package/dist/components/MemoriArtifactSystem/components/ArtifactPreview/ArtifactPreview.d.ts +7 -0
  169. package/dist/components/MemoriArtifactSystem/components/ArtifactPreview/ArtifactPreview.js +89 -0
  170. package/dist/components/MemoriArtifactSystem/components/ArtifactPreview/ArtifactPreview.js.map +1 -0
  171. package/dist/components/MemoriArtifactSystem/context/ArtifactContext.d.ts +13 -0
  172. package/dist/components/MemoriArtifactSystem/context/ArtifactContext.js +55 -0
  173. package/dist/components/MemoriArtifactSystem/context/ArtifactContext.js.map +1 -0
  174. package/dist/components/MemoriArtifactSystem/types/artifact.types.d.ts +14 -0
  175. package/dist/components/MemoriArtifactSystem/types/artifact.types.js +3 -0
  176. package/dist/components/MemoriArtifactSystem/types/artifact.types.js.map +1 -0
  177. package/dist/components/MemoriWidget/MemoriWidget.css +10 -4
  178. package/dist/components/MemoriWidget/MemoriWidget.d.ts +29 -11
  179. package/dist/components/MemoriWidget/MemoriWidget.js +763 -1051
  180. package/dist/components/MemoriWidget/MemoriWidget.js.map +1 -1
  181. package/dist/components/MicrophoneButton/MicrophoneButton.d.ts +1 -0
  182. package/dist/components/MicrophoneButton/MicrophoneButton.js +1 -1
  183. package/dist/components/MicrophoneButton/MicrophoneButton.js.map +1 -1
  184. package/dist/components/PositionDrawer/PositionDrawer.d.ts +1 -0
  185. package/dist/components/PoweredBy/PoweredBy.d.ts +1 -0
  186. package/dist/components/SendOnEnterMenu/SendOnEnterMenu.css +3 -3
  187. package/dist/components/SettingsDrawer/SettingsDrawer.css +9 -2
  188. package/dist/components/SettingsDrawer/SettingsDrawer.d.ts +8 -1
  189. package/dist/components/SettingsDrawer/SettingsDrawer.js +15 -6
  190. package/dist/components/SettingsDrawer/SettingsDrawer.js.map +1 -1
  191. package/dist/components/ShareButton/ShareButton.css +6 -0
  192. package/dist/components/ShareButton/ShareButton.d.ts +3 -1
  193. package/dist/components/ShareButton/ShareButton.js +14 -3
  194. package/dist/components/ShareButton/ShareButton.js.map +1 -1
  195. package/dist/components/SignupForm/SignupForm.d.ts +4 -2
  196. package/dist/components/SignupForm/SignupForm.js +6 -8
  197. package/dist/components/SignupForm/SignupForm.js.map +1 -1
  198. package/dist/components/Snippet/Snippet.d.ts +2 -2
  199. package/dist/components/Snippet/Snippet.js +36 -25
  200. package/dist/components/Snippet/Snippet.js.map +1 -1
  201. package/dist/components/StartPanel/StartPanel.css +34 -8
  202. package/dist/components/StartPanel/StartPanel.d.ts +6 -2
  203. package/dist/components/StartPanel/StartPanel.js +26 -15
  204. package/dist/components/StartPanel/StartPanel.js.map +1 -1
  205. package/dist/components/Typing/Typing.d.ts +1 -0
  206. package/dist/components/Typing/Typing.js +49 -47
  207. package/dist/components/Typing/Typing.js.map +1 -1
  208. package/dist/components/UploadButton/UploadButton.css +544 -0
  209. package/dist/components/UploadButton/UploadButton.d.ts +19 -0
  210. package/dist/components/UploadButton/UploadButton.js +226 -0
  211. package/dist/components/UploadButton/UploadButton.js.map +1 -0
  212. package/dist/components/UploadButton/UploadDocuments/UploadDocuments.d.ts +31 -0
  213. package/dist/components/UploadButton/UploadDocuments/UploadDocuments.js +244 -0
  214. package/dist/components/UploadButton/UploadDocuments/UploadDocuments.js.map +1 -0
  215. package/dist/components/UploadButton/UploadImages/UploadImages.d.ts +20 -0
  216. package/dist/components/UploadButton/UploadImages/UploadImages.js +172 -0
  217. package/dist/components/UploadButton/UploadImages/UploadImages.js.map +1 -0
  218. package/dist/components/UploadMenu/UploadMenu.css +3 -3
  219. package/dist/components/VenueWidget/VenueWidget.css +7 -0
  220. package/dist/components/VenueWidget/VenueWidget.d.ts +1 -0
  221. package/dist/components/VenueWidget/VenueWidget.js +1 -1
  222. package/dist/components/VenueWidget/VenueWidget.js.map +1 -1
  223. package/dist/components/WhyThisAnswer/WhyThisAnswer.css +43 -0
  224. package/dist/components/WhyThisAnswer/WhyThisAnswer.d.ts +4 -2
  225. package/dist/components/WhyThisAnswer/WhyThisAnswer.js +5 -6
  226. package/dist/components/WhyThisAnswer/WhyThisAnswer.js.map +1 -1
  227. package/dist/components/icons/AI.d.ts +1 -0
  228. package/dist/components/icons/Alert.d.ts +6 -0
  229. package/dist/components/icons/Alert.js +6 -0
  230. package/dist/components/icons/Alert.js.map +1 -0
  231. package/dist/components/icons/ArrowUp.d.ts +6 -0
  232. package/dist/components/icons/ArrowUp.js +6 -0
  233. package/dist/components/icons/ArrowUp.js.map +1 -0
  234. package/dist/components/icons/Bug.d.ts +6 -0
  235. package/dist/components/icons/Bug.js +6 -0
  236. package/dist/components/icons/Bug.js.map +1 -0
  237. package/dist/components/icons/Chat.d.ts +6 -0
  238. package/dist/components/icons/Chat.js +6 -0
  239. package/dist/components/icons/Chat.js.map +1 -0
  240. package/dist/components/icons/ChevronDown.d.ts +6 -0
  241. package/dist/components/icons/ChevronDown.js +6 -0
  242. package/dist/components/icons/ChevronDown.js.map +1 -0
  243. package/dist/components/icons/ChevronLeft.d.ts +1 -0
  244. package/dist/components/icons/ChevronRight.d.ts +1 -0
  245. package/dist/components/icons/ChevronUp.d.ts +6 -0
  246. package/dist/components/icons/ChevronUp.js +6 -0
  247. package/dist/components/icons/ChevronUp.js.map +1 -0
  248. package/dist/components/icons/Clear.d.ts +1 -0
  249. package/dist/components/icons/Close.d.ts +3 -1
  250. package/dist/components/icons/Close.js +1 -1
  251. package/dist/components/icons/Close.js.map +1 -1
  252. package/dist/components/icons/Code.d.ts +6 -0
  253. package/dist/components/icons/Code.js +6 -0
  254. package/dist/components/icons/Code.js.map +1 -0
  255. package/dist/components/icons/Copy.d.ts +1 -0
  256. package/dist/components/icons/Copy.js +1 -1
  257. package/dist/components/icons/Copy.js.map +1 -1
  258. package/dist/components/icons/DeepThought.d.ts +1 -0
  259. package/dist/components/icons/Delete.d.ts +1 -0
  260. package/dist/components/icons/Document.d.ts +5 -0
  261. package/dist/components/icons/Document.js +10 -0
  262. package/dist/components/icons/Document.js.map +1 -0
  263. package/dist/components/icons/Download.d.ts +1 -0
  264. package/dist/components/icons/Edit.d.ts +1 -0
  265. package/dist/components/icons/Expand.d.ts +1 -0
  266. package/dist/components/icons/Eye.d.ts +1 -0
  267. package/dist/components/icons/EyeInvisible.d.ts +1 -0
  268. package/dist/components/icons/Facebook.d.ts +1 -0
  269. package/dist/components/icons/Feedback.d.ts +1 -0
  270. package/dist/components/icons/File.d.ts +1 -0
  271. package/dist/components/icons/FileExcel.d.ts +1 -0
  272. package/dist/components/icons/FilePdf.d.ts +1 -0
  273. package/dist/components/icons/FileWord.d.ts +1 -0
  274. package/dist/components/icons/Fullscreen.d.ts +1 -0
  275. package/dist/components/icons/FullscreenExit.d.ts +1 -0
  276. package/dist/components/icons/Group.d.ts +1 -0
  277. package/dist/components/icons/History.d.ts +7 -0
  278. package/dist/components/icons/History.js +6 -0
  279. package/dist/components/icons/History.js.map +1 -0
  280. package/dist/components/icons/Image.d.ts +4 -0
  281. package/dist/components/icons/Image.js +9 -0
  282. package/dist/components/icons/Image.js.map +1 -0
  283. package/dist/components/icons/Info.d.ts +6 -0
  284. package/dist/components/icons/Info.js +6 -0
  285. package/dist/components/icons/Info.js.map +1 -0
  286. package/dist/components/icons/Link.d.ts +1 -0
  287. package/dist/components/icons/Linkedin.d.ts +1 -0
  288. package/dist/components/icons/Loading.d.ts +1 -0
  289. package/dist/components/icons/Mail.d.ts +1 -0
  290. package/dist/components/icons/MapMarker.d.ts +1 -0
  291. package/dist/components/icons/MenuHorizontal.d.ts +7 -0
  292. package/dist/components/icons/MenuHorizontal.js +6 -0
  293. package/dist/components/icons/MenuHorizontal.js.map +1 -0
  294. package/dist/components/icons/MenuVertical.d.ts +7 -0
  295. package/dist/components/icons/MenuVertical.js +6 -0
  296. package/dist/components/icons/MenuVertical.js.map +1 -0
  297. package/dist/components/icons/Message.d.ts +1 -0
  298. package/dist/components/icons/Microphone.d.ts +1 -0
  299. package/dist/components/icons/Minus.d.ts +1 -0
  300. package/dist/components/icons/MinusCircle.d.ts +1 -0
  301. package/dist/components/icons/PaperClip.d.ts +1 -0
  302. package/dist/components/icons/Picture.d.ts +1 -0
  303. package/dist/components/icons/Plus.d.ts +1 -0
  304. package/dist/components/icons/Preview.d.ts +4 -0
  305. package/dist/components/icons/Preview.js +9 -0
  306. package/dist/components/icons/Preview.js.map +1 -0
  307. package/dist/components/icons/Print.d.ts +6 -0
  308. package/dist/components/icons/Print.js +6 -0
  309. package/dist/components/icons/Print.js.map +1 -0
  310. package/dist/components/icons/QuestionHelp.d.ts +1 -0
  311. package/dist/components/icons/Refresh.d.ts +1 -0
  312. package/dist/components/icons/SelectIcon.d.ts +1 -0
  313. package/dist/components/icons/Send.d.ts +1 -0
  314. package/dist/components/icons/Setting.d.ts +1 -0
  315. package/dist/components/icons/Share.d.ts +1 -0
  316. package/dist/components/icons/Sound.d.ts +1 -0
  317. package/dist/components/icons/SoundDeactivated.d.ts +1 -0
  318. package/dist/components/icons/Telegram.d.ts +1 -0
  319. package/dist/components/icons/ThumbDown.d.ts +1 -0
  320. package/dist/components/icons/ThumbUp.d.ts +1 -0
  321. package/dist/components/icons/Translation.d.ts +1 -0
  322. package/dist/components/icons/Twitter.d.ts +1 -0
  323. package/dist/components/icons/Upload.d.ts +4 -0
  324. package/dist/components/icons/Upload.js +9 -0
  325. package/dist/components/icons/Upload.js.map +1 -0
  326. package/dist/components/icons/User.d.ts +1 -0
  327. package/dist/components/icons/Warning.d.ts +1 -0
  328. package/dist/components/icons/Warning.js +1 -1
  329. package/dist/components/icons/Warning.js.map +1 -1
  330. package/dist/components/icons/WhatsApp.d.ts +1 -0
  331. package/dist/components/layouts/Chat.js +9 -1
  332. package/dist/components/layouts/Chat.js.map +1 -1
  333. package/dist/components/layouts/FullPage.js +10 -1
  334. package/dist/components/layouts/FullPage.js.map +1 -1
  335. package/dist/components/layouts/HiddenChat.d.ts +4 -0
  336. package/dist/components/layouts/HiddenChat.js +147 -0
  337. package/dist/components/layouts/HiddenChat.js.map +1 -0
  338. package/dist/components/layouts/Totem.js +1 -1
  339. package/dist/components/layouts/Totem.js.map +1 -1
  340. package/dist/components/layouts/WebsiteAssistant.js +2 -2
  341. package/dist/components/layouts/WebsiteAssistant.js.map +1 -1
  342. package/dist/components/layouts/ZoomedFullBody.d.ts +4 -0
  343. package/dist/components/layouts/ZoomedFullBody.js +17 -0
  344. package/dist/components/layouts/ZoomedFullBody.js.map +1 -0
  345. package/dist/components/layouts/chat.css +358 -19
  346. package/dist/components/layouts/hidden-chat.css +254 -0
  347. package/dist/components/layouts/totem.css +19 -10
  348. package/dist/components/layouts/website-assistant.css +2 -2
  349. package/dist/components/layouts/zoomed-full-body.css +18 -0
  350. package/dist/components/ui/Alert.css +93 -0
  351. package/dist/components/ui/Alert.d.ts +18 -0
  352. package/dist/components/ui/Alert.js +42 -0
  353. package/dist/components/ui/Alert.js.map +1 -0
  354. package/dist/components/ui/Button.css +8 -2
  355. package/dist/components/ui/Button.d.ts +1 -0
  356. package/dist/components/ui/Button.js +2 -1
  357. package/dist/components/ui/Button.js.map +1 -1
  358. package/dist/components/ui/Card.css +5 -0
  359. package/dist/components/ui/Card.d.ts +1 -0
  360. package/dist/components/ui/Card.js +2 -1
  361. package/dist/components/ui/Card.js.map +1 -1
  362. package/dist/components/ui/ConfirmDialog.css +42 -0
  363. package/dist/components/ui/ConfirmDialog.d.ts +11 -0
  364. package/dist/components/ui/ConfirmDialog.js +12 -0
  365. package/dist/components/ui/ConfirmDialog.js.map +1 -0
  366. package/dist/components/ui/Drawer.css +121 -96
  367. package/dist/components/ui/Drawer.d.ts +17 -6
  368. package/dist/components/ui/Drawer.js +44 -13
  369. package/dist/components/ui/Drawer.js.map +1 -1
  370. package/dist/components/ui/Expandable.d.ts +3 -2
  371. package/dist/components/ui/Expandable.js +35 -20
  372. package/dist/components/ui/Expandable.js.map +1 -1
  373. package/dist/components/ui/Select.d.ts +1 -0
  374. package/dist/components/ui/Slider.css +192 -0
  375. package/dist/components/ui/Slider.d.ts +12 -0
  376. package/dist/components/ui/Slider.js +78 -0
  377. package/dist/components/ui/Slider.js.map +1 -0
  378. package/dist/components/ui/Table.css +15 -2
  379. package/dist/context/visemeContext.d.ts +24 -0
  380. package/dist/context/visemeContext.js +192 -0
  381. package/dist/context/visemeContext.js.map +1 -0
  382. package/dist/helpers/configuration.js +0 -1
  383. package/dist/helpers/configuration.js.map +1 -1
  384. package/dist/helpers/constants.d.ts +6 -0
  385. package/dist/helpers/constants.js +7 -1
  386. package/dist/helpers/constants.js.map +1 -1
  387. package/dist/helpers/error.js +53 -6
  388. package/dist/helpers/error.js.map +1 -1
  389. package/dist/helpers/markedExtendedTables.js +1 -1
  390. package/dist/helpers/markedExtendedTables.js.map +1 -1
  391. package/dist/helpers/message.d.ts +5 -0
  392. package/dist/helpers/message.js +98 -0
  393. package/dist/helpers/message.js.map +1 -0
  394. package/dist/helpers/sanitizer.d.ts +1 -0
  395. package/dist/helpers/sanitizer.js +9 -0
  396. package/dist/helpers/sanitizer.js.map +1 -0
  397. package/dist/helpers/statistics.d.ts +1 -12
  398. package/dist/helpers/statistics.js +1 -165
  399. package/dist/helpers/statistics.js.map +1 -1
  400. package/dist/helpers/stt/useSTT.d.ts +40 -0
  401. package/dist/helpers/stt/useSTT.js +527 -0
  402. package/dist/helpers/stt/useSTT.js.map +1 -0
  403. package/dist/helpers/translations.js +23 -4
  404. package/dist/helpers/translations.js.map +1 -1
  405. package/dist/helpers/tts/ttsVoiceUtility.d.ts +158 -0
  406. package/dist/helpers/tts/ttsVoiceUtility.js +192 -0
  407. package/dist/helpers/tts/ttsVoiceUtility.js.map +1 -0
  408. package/dist/helpers/tts/useTTS.d.ts +27 -0
  409. package/dist/helpers/tts/useTTS.js +297 -0
  410. package/dist/helpers/tts/useTTS.js.map +1 -0
  411. package/dist/helpers/utils.d.ts +40 -0
  412. package/dist/helpers/utils.js +157 -1
  413. package/dist/helpers/utils.js.map +1 -1
  414. package/dist/i18n.js +13 -1
  415. package/dist/i18n.js.map +1 -1
  416. package/dist/index.d.ts +14 -4
  417. package/dist/index.js +136 -84
  418. package/dist/index.js.map +1 -1
  419. package/dist/locales/de.json +593 -0
  420. package/dist/locales/en.json +250 -40
  421. package/dist/locales/es.json +593 -0
  422. package/dist/locales/fr.json +603 -0
  423. package/dist/locales/it.json +260 -48
  424. package/dist/styles.css +18 -2
  425. package/esm/I18nWrapper.js +4 -48
  426. package/esm/I18nWrapper.js.map +1 -1
  427. package/esm/components/AccountForm/AccountForm.d.ts +4 -2
  428. package/esm/components/AccountForm/AccountForm.js +2 -4
  429. package/esm/components/AccountForm/AccountForm.js.map +1 -1
  430. package/esm/components/AgeVerificationModal/AgeVerificationModal.css +1 -1
  431. package/esm/components/AgeVerificationModal/AgeVerificationModal.d.ts +1 -0
  432. package/esm/components/AgeVerificationModal/AgeVerificationModal.js +1 -1
  433. package/esm/components/AgeVerificationModal/AgeVerificationModal.js.map +1 -1
  434. package/esm/components/AttachmentLinkModal/AttachmentLinkModal.d.ts +1 -0
  435. package/esm/components/Auth/Auth.d.ts +1 -0
  436. package/esm/components/Avatar/Avatar.css +2 -2
  437. package/esm/components/Avatar/Avatar.d.ts +7 -0
  438. package/esm/components/Avatar/Avatar.js +72 -62
  439. package/esm/components/Avatar/Avatar.js.map +1 -1
  440. package/esm/components/Avatar/AvatarView/AvatarComponent/Shadow/DynamicShadow.d.ts +7 -0
  441. package/esm/components/Avatar/AvatarView/AvatarComponent/Shadow/DynamicShadow.js +60 -0
  442. package/esm/components/Avatar/AvatarView/AvatarComponent/Shadow/DynamicShadow.js.map +1 -0
  443. package/esm/components/Avatar/AvatarView/AvatarComponent/avatarComponent.d.ts +22 -0
  444. package/esm/components/Avatar/AvatarView/AvatarComponent/avatarComponent.js +36 -0
  445. package/esm/components/Avatar/AvatarView/AvatarComponent/avatarComponent.js.map +1 -0
  446. package/esm/components/Avatar/AvatarView/AvatarComponent/components/FullbodyAvatar/fullbodyAvatar.d.ts +18 -0
  447. package/esm/components/Avatar/AvatarView/AvatarComponent/components/FullbodyAvatar/fullbodyAvatar.js +180 -0
  448. package/esm/components/Avatar/AvatarView/AvatarComponent/components/FullbodyAvatar/fullbodyAvatar.js.map +1 -0
  449. package/esm/components/Avatar/AvatarView/AvatarComponent/components/FullbodyAvatar/types.d.ts +39 -0
  450. package/esm/components/Avatar/AvatarView/AvatarComponent/components/FullbodyAvatar/types.js +7 -0
  451. package/esm/components/Avatar/AvatarView/AvatarComponent/components/FullbodyAvatar/types.js.map +1 -0
  452. package/esm/components/Avatar/AvatarView/AvatarComponent/components/controllers/AvatarAnimator.d.ts +65 -0
  453. package/esm/components/Avatar/AvatarView/AvatarComponent/components/controllers/AvatarAnimator.js +743 -0
  454. package/esm/components/Avatar/AvatarView/AvatarComponent/components/controllers/AvatarAnimator.js.map +1 -0
  455. package/esm/components/Avatar/AvatarView/AvatarComponent/components/controllers/AvatarPositionController.d.ts +19 -0
  456. package/esm/components/Avatar/AvatarView/AvatarComponent/components/controllers/AvatarPositionController.js +56 -0
  457. package/esm/components/Avatar/AvatarView/AvatarComponent/components/controllers/AvatarPositionController.js.map +1 -0
  458. package/esm/components/Avatar/AvatarView/AvatarComponent/components/controllers/MorphTargetController.d.ts +24 -0
  459. package/esm/components/Avatar/AvatarView/AvatarComponent/components/controllers/MorphTargetController.js +129 -0
  460. package/esm/components/Avatar/AvatarView/AvatarComponent/components/controllers/MorphTargetController.js.map +1 -0
  461. package/esm/components/Avatar/AvatarView/AvatarComponent/components/controls.d.ts +26 -0
  462. package/esm/components/Avatar/AvatarView/AvatarComponent/components/controls.js +56 -0
  463. package/esm/components/Avatar/AvatarView/AvatarComponent/components/controls.js.map +1 -0
  464. package/esm/components/Avatar/AvatarView/AvatarComponent/components/halfbodyAvatar.d.ts +15 -0
  465. package/esm/components/Avatar/AvatarView/AvatarComponent/components/halfbodyAvatar.js +79 -0
  466. package/esm/components/Avatar/AvatarView/AvatarComponent/components/halfbodyAvatar.js.map +1 -0
  467. package/esm/components/{AvatarView → Avatar/AvatarView/AvatarComponent}/components/loader.d.ts +1 -0
  468. package/esm/components/{AvatarView → Avatar/AvatarView/AvatarComponent}/components/loader.js +1 -1
  469. package/esm/components/Avatar/AvatarView/AvatarComponent/components/loader.js.map +1 -0
  470. package/esm/components/Avatar/AvatarView/AvatarComponent/constants.d.ts +35 -0
  471. package/esm/components/Avatar/AvatarView/AvatarComponent/constants.js +96 -0
  472. package/esm/components/Avatar/AvatarView/AvatarComponent/constants.js.map +1 -0
  473. package/esm/components/Avatar/AvatarView/AvatarComponent/lights/Lights.d.ts +27 -0
  474. package/esm/components/Avatar/AvatarView/AvatarComponent/lights/Lights.js +48 -0
  475. package/esm/components/Avatar/AvatarView/AvatarComponent/lights/Lights.js.map +1 -0
  476. package/esm/components/Avatar/AvatarView/AvatarComponent/positionControls/positionControls.css +111 -0
  477. package/esm/components/Avatar/AvatarView/AvatarComponent/positionControls/positionControls.d.ts +11 -0
  478. package/esm/components/Avatar/AvatarView/AvatarComponent/positionControls/positionControls.js +107 -0
  479. package/esm/components/Avatar/AvatarView/AvatarComponent/positionControls/positionControls.js.map +1 -0
  480. package/esm/components/Avatar/AvatarView/index.d.ts +30 -0
  481. package/esm/components/Avatar/AvatarView/index.js +64 -0
  482. package/esm/components/Avatar/AvatarView/index.js.map +1 -0
  483. package/esm/components/Avatar/AvatarView/utils/hideHands.d.ts +2 -0
  484. package/esm/components/Avatar/AvatarView/utils/hideHands.js +10 -0
  485. package/esm/components/Avatar/AvatarView/utils/hideHands.js.map +1 -0
  486. package/esm/components/Avatar/AvatarView/utils/useEyeBlink.d.ts +16 -0
  487. package/esm/components/Avatar/AvatarView/utils/useEyeBlink.js +67 -0
  488. package/esm/components/Avatar/AvatarView/utils/useEyeBlink.js.map +1 -0
  489. package/esm/components/Avatar/AvatarView/utils/useHeadMovement.js.map +1 -0
  490. package/esm/components/Avatar/AvatarView/utils/useLoadingMorphAnim.js.map +1 -0
  491. package/esm/components/Avatar/AvatarView/utils/useMouthAnimation.d.ts +16 -0
  492. package/esm/components/Avatar/AvatarView/utils/useMouthAnimation.js +55 -0
  493. package/esm/components/Avatar/AvatarView/utils/useMouthAnimation.js.map +1 -0
  494. package/esm/components/Avatar/AvatarView/utils/useSmile.js +25 -0
  495. package/esm/components/Avatar/AvatarView/utils/useSmile.js.map +1 -0
  496. package/esm/components/Avatar/AvatarView/utils/utils.js.map +1 -0
  497. package/esm/components/Blob/Blob.d.ts +1 -0
  498. package/esm/components/BlockedMemoriBadge/BlockedMemoriBadge.d.ts +1 -0
  499. package/esm/components/Chat/Chat.d.ts +15 -7
  500. package/esm/components/Chat/Chat.js +49 -30
  501. package/esm/components/Chat/Chat.js.map +1 -1
  502. package/esm/components/ChatBubble/ChatBubble.css +87 -9
  503. package/esm/components/ChatBubble/ChatBubble.d.ts +14 -0
  504. package/esm/components/ChatBubble/ChatBubble.js +93 -68
  505. package/esm/components/ChatBubble/ChatBubble.js.map +1 -1
  506. package/esm/components/ChatHistoryDrawer/ChatHistory.css +414 -0
  507. package/esm/components/ChatHistoryDrawer/ChatHistory.d.ts +20 -0
  508. package/esm/components/ChatHistoryDrawer/ChatHistory.js +627 -0
  509. package/esm/components/ChatHistoryDrawer/ChatHistory.js.map +1 -0
  510. package/esm/components/ChatInputs/ChatInputs.d.ts +9 -3
  511. package/esm/components/ChatInputs/ChatInputs.js +48 -7
  512. package/esm/components/ChatInputs/ChatInputs.js.map +1 -1
  513. package/esm/components/ChatTextArea/ChatTextArea.css +9 -5
  514. package/esm/components/ChatTextArea/ChatTextArea.js +1 -1
  515. package/esm/components/ChatTextArea/ChatTextArea.js.map +1 -1
  516. package/esm/components/CompletionProviderStatus/CompletionProviderStatus.css +35 -17
  517. package/esm/components/CompletionProviderStatus/CompletionProviderStatus.d.ts +3 -3
  518. package/esm/components/CompletionProviderStatus/CompletionProviderStatus.js +142 -32
  519. package/esm/components/CompletionProviderStatus/CompletionProviderStatus.js.map +1 -1
  520. package/esm/components/CustomGLBModelViewer/ModelViewer.d.ts +1 -0
  521. package/esm/components/ExpertsDrawer/ExpertsDrawer.d.ts +1 -0
  522. package/esm/components/ExpertsDrawer/ExpertsDrawer.js +2 -2
  523. package/esm/components/ExpertsDrawer/ExpertsDrawer.js.map +1 -1
  524. package/esm/components/FeedbackButtons/FeedbackButtons.d.ts +1 -0
  525. package/esm/components/FilePreview/FilePreview.css +184 -0
  526. package/esm/components/FilePreview/FilePreview.d.ts +9 -0
  527. package/esm/components/FilePreview/FilePreview.js +71 -0
  528. package/esm/components/FilePreview/FilePreview.js.map +1 -0
  529. package/esm/components/Header/Header.css +3 -3
  530. package/esm/components/Header/Header.d.ts +5 -1
  531. package/esm/components/Header/Header.js +27 -13
  532. package/esm/components/Header/Header.js.map +1 -1
  533. package/esm/components/KnownFacts/KnownFacts.d.ts +4 -2
  534. package/esm/components/KnownFacts/KnownFacts.js +3 -5
  535. package/esm/components/KnownFacts/KnownFacts.js.map +1 -1
  536. package/esm/components/LoginDrawer/LoginDrawer.css +302 -0
  537. package/esm/components/LoginDrawer/LoginDrawer.d.ts +4 -2
  538. package/esm/components/LoginDrawer/LoginDrawer.js +9 -11
  539. package/esm/components/LoginDrawer/LoginDrawer.js.map +1 -1
  540. package/esm/components/MediaWidget/LinkItemWidget.css +10 -0
  541. package/esm/components/MediaWidget/LinkItemWidget.d.ts +1 -0
  542. package/esm/components/MediaWidget/LinkItemWidget.js +5 -2
  543. package/esm/components/MediaWidget/LinkItemWidget.js.map +1 -1
  544. package/esm/components/MediaWidget/MediaItemWidget.css +153 -3
  545. package/esm/components/MediaWidget/MediaItemWidget.d.ts +7 -2
  546. package/esm/components/MediaWidget/MediaItemWidget.js +90 -38
  547. package/esm/components/MediaWidget/MediaItemWidget.js.map +1 -1
  548. package/esm/components/MediaWidget/MediaWidget.d.ts +4 -1
  549. package/esm/components/MediaWidget/MediaWidget.js +2 -2
  550. package/esm/components/MediaWidget/MediaWidget.js.map +1 -1
  551. package/esm/components/MemoriArtifactSystem/components/ArtifactActions/ArtifactActions.css +163 -0
  552. package/esm/components/MemoriArtifactSystem/components/ArtifactActions/ArtifactActions.d.ts +12 -0
  553. package/esm/components/MemoriArtifactSystem/components/ArtifactActions/ArtifactActions.js +130 -0
  554. package/esm/components/MemoriArtifactSystem/components/ArtifactActions/ArtifactActions.js.map +1 -0
  555. package/esm/components/MemoriArtifactSystem/components/ArtifactActions/components/CopyButtonWithDropdown.d.ts +4 -0
  556. package/esm/components/MemoriArtifactSystem/components/ArtifactActions/components/CopyButtonWithDropdown.js +283 -0
  557. package/esm/components/MemoriArtifactSystem/components/ArtifactActions/components/CopyButtonWithDropdown.js.map +1 -0
  558. package/esm/components/MemoriArtifactSystem/components/ArtifactActions/components/CopyMenuItem.d.ts +6 -0
  559. package/esm/components/MemoriArtifactSystem/components/ArtifactActions/components/CopyMenuItem.js +37 -0
  560. package/esm/components/MemoriArtifactSystem/components/ArtifactActions/components/CopyMenuItem.js.map +1 -0
  561. package/esm/components/MemoriArtifactSystem/components/ArtifactActions/hooks/useCopyArtifact.d.ts +6 -0
  562. package/esm/components/MemoriArtifactSystem/components/ArtifactActions/hooks/useCopyArtifact.js +487 -0
  563. package/esm/components/MemoriArtifactSystem/components/ArtifactActions/hooks/useCopyArtifact.js.map +1 -0
  564. package/esm/components/MemoriArtifactSystem/components/ArtifactActions/index.d.ts +5 -0
  565. package/esm/components/MemoriArtifactSystem/components/ArtifactActions/index.js +6 -0
  566. package/esm/components/MemoriArtifactSystem/components/ArtifactActions/index.js.map +1 -0
  567. package/esm/components/MemoriArtifactSystem/components/ArtifactActions/styles.css +489 -0
  568. package/esm/components/MemoriArtifactSystem/components/ArtifactActions/test/CopyButtonTest.d.ts +3 -0
  569. package/esm/components/MemoriArtifactSystem/components/ArtifactActions/test/CopyButtonTest.js +62 -0
  570. package/esm/components/MemoriArtifactSystem/components/ArtifactActions/test/CopyButtonTest.js.map +1 -0
  571. package/esm/components/MemoriArtifactSystem/components/ArtifactActions/types.d.ts +61 -0
  572. package/esm/components/MemoriArtifactSystem/components/ArtifactActions/types.js +2 -0
  573. package/esm/components/MemoriArtifactSystem/components/ArtifactActions/types.js.map +1 -0
  574. package/esm/components/MemoriArtifactSystem/components/ArtifactActions/utils/PDFExporter.d.ts +15 -0
  575. package/esm/components/MemoriArtifactSystem/components/ArtifactActions/utils/PDFExporter.js +348 -0
  576. package/esm/components/MemoriArtifactSystem/components/ArtifactActions/utils/PDFExporter.js.map +1 -0
  577. package/esm/components/MemoriArtifactSystem/components/ArtifactDrawer/ArtifactDrawer.css +1059 -0
  578. package/esm/components/MemoriArtifactSystem/components/ArtifactDrawer/ArtifactDrawer.d.ts +5 -0
  579. package/esm/components/MemoriArtifactSystem/components/ArtifactDrawer/ArtifactDrawer.js +164 -0
  580. package/esm/components/MemoriArtifactSystem/components/ArtifactDrawer/ArtifactDrawer.js.map +1 -0
  581. package/esm/components/MemoriArtifactSystem/components/ArtifactDrawer/components/TabSwitch.css +150 -0
  582. package/esm/components/MemoriArtifactSystem/components/ArtifactDrawer/components/TabSwitch.d.ts +9 -0
  583. package/esm/components/MemoriArtifactSystem/components/ArtifactDrawer/components/TabSwitch.js +32 -0
  584. package/esm/components/MemoriArtifactSystem/components/ArtifactDrawer/components/TabSwitch.js.map +1 -0
  585. package/esm/components/MemoriArtifactSystem/components/ArtifactHandler/ArtifactHandler.css +253 -0
  586. package/esm/components/MemoriArtifactSystem/components/ArtifactHandler/ArtifactHandler.d.ts +8 -0
  587. package/esm/components/MemoriArtifactSystem/components/ArtifactHandler/ArtifactHandler.js +101 -0
  588. package/esm/components/MemoriArtifactSystem/components/ArtifactHandler/ArtifactHandler.js.map +1 -0
  589. package/esm/components/MemoriArtifactSystem/components/ArtifactPreview/ArtifactPreview.css +346 -0
  590. package/esm/components/MemoriArtifactSystem/components/ArtifactPreview/ArtifactPreview.d.ts +7 -0
  591. package/esm/components/MemoriArtifactSystem/components/ArtifactPreview/ArtifactPreview.js +86 -0
  592. package/esm/components/MemoriArtifactSystem/components/ArtifactPreview/ArtifactPreview.js.map +1 -0
  593. package/esm/components/MemoriArtifactSystem/context/ArtifactContext.d.ts +13 -0
  594. package/esm/components/MemoriArtifactSystem/context/ArtifactContext.js +50 -0
  595. package/esm/components/MemoriArtifactSystem/context/ArtifactContext.js.map +1 -0
  596. package/esm/components/MemoriArtifactSystem/types/artifact.types.d.ts +14 -0
  597. package/esm/components/MemoriArtifactSystem/types/artifact.types.js +2 -0
  598. package/esm/components/MemoriArtifactSystem/types/artifact.types.js.map +1 -0
  599. package/esm/components/MemoriWidget/MemoriWidget.css +10 -4
  600. package/esm/components/MemoriWidget/MemoriWidget.d.ts +29 -11
  601. package/esm/components/MemoriWidget/MemoriWidget.js +766 -1054
  602. package/esm/components/MemoriWidget/MemoriWidget.js.map +1 -1
  603. package/esm/components/MicrophoneButton/MicrophoneButton.d.ts +1 -0
  604. package/esm/components/MicrophoneButton/MicrophoneButton.js +1 -1
  605. package/esm/components/MicrophoneButton/MicrophoneButton.js.map +1 -1
  606. package/esm/components/PositionDrawer/PositionDrawer.d.ts +1 -0
  607. package/esm/components/PoweredBy/PoweredBy.d.ts +1 -0
  608. package/esm/components/SendOnEnterMenu/SendOnEnterMenu.css +3 -3
  609. package/esm/components/SettingsDrawer/SettingsDrawer.css +9 -2
  610. package/esm/components/SettingsDrawer/SettingsDrawer.d.ts +8 -1
  611. package/esm/components/SettingsDrawer/SettingsDrawer.js +15 -6
  612. package/esm/components/SettingsDrawer/SettingsDrawer.js.map +1 -1
  613. package/esm/components/ShareButton/ShareButton.css +6 -0
  614. package/esm/components/ShareButton/ShareButton.d.ts +3 -1
  615. package/esm/components/ShareButton/ShareButton.js +14 -3
  616. package/esm/components/ShareButton/ShareButton.js.map +1 -1
  617. package/esm/components/SignupForm/SignupForm.d.ts +4 -2
  618. package/esm/components/SignupForm/SignupForm.js +6 -8
  619. package/esm/components/SignupForm/SignupForm.js.map +1 -1
  620. package/esm/components/Snippet/Snippet.d.ts +2 -2
  621. package/esm/components/Snippet/Snippet.js +36 -25
  622. package/esm/components/Snippet/Snippet.js.map +1 -1
  623. package/esm/components/StartPanel/StartPanel.css +34 -8
  624. package/esm/components/StartPanel/StartPanel.d.ts +6 -2
  625. package/esm/components/StartPanel/StartPanel.js +26 -15
  626. package/esm/components/StartPanel/StartPanel.js.map +1 -1
  627. package/esm/components/Typing/Typing.d.ts +1 -0
  628. package/esm/components/Typing/Typing.js +49 -47
  629. package/esm/components/Typing/Typing.js.map +1 -1
  630. package/esm/components/UploadButton/UploadButton.css +544 -0
  631. package/esm/components/UploadButton/UploadButton.d.ts +19 -0
  632. package/esm/components/UploadButton/UploadButton.js +223 -0
  633. package/esm/components/UploadButton/UploadButton.js.map +1 -0
  634. package/esm/components/UploadButton/UploadDocuments/UploadDocuments.d.ts +31 -0
  635. package/esm/components/UploadButton/UploadDocuments/UploadDocuments.js +241 -0
  636. package/esm/components/UploadButton/UploadDocuments/UploadDocuments.js.map +1 -0
  637. package/esm/components/UploadButton/UploadImages/UploadImages.d.ts +20 -0
  638. package/esm/components/UploadButton/UploadImages/UploadImages.js +169 -0
  639. package/esm/components/UploadButton/UploadImages/UploadImages.js.map +1 -0
  640. package/esm/components/UploadMenu/UploadMenu.css +3 -3
  641. package/esm/components/VenueWidget/VenueWidget.css +7 -0
  642. package/esm/components/VenueWidget/VenueWidget.d.ts +1 -0
  643. package/esm/components/VenueWidget/VenueWidget.js +1 -1
  644. package/esm/components/VenueWidget/VenueWidget.js.map +1 -1
  645. package/esm/components/WhyThisAnswer/WhyThisAnswer.css +43 -0
  646. package/esm/components/WhyThisAnswer/WhyThisAnswer.d.ts +4 -2
  647. package/esm/components/WhyThisAnswer/WhyThisAnswer.js +5 -6
  648. package/esm/components/WhyThisAnswer/WhyThisAnswer.js.map +1 -1
  649. package/esm/components/icons/AI.d.ts +1 -0
  650. package/esm/components/icons/Alert.d.ts +6 -0
  651. package/esm/components/icons/Alert.js +4 -0
  652. package/esm/components/icons/Alert.js.map +1 -0
  653. package/esm/components/icons/ArrowUp.d.ts +6 -0
  654. package/esm/components/icons/ArrowUp.js +4 -0
  655. package/esm/components/icons/ArrowUp.js.map +1 -0
  656. package/esm/components/icons/Bug.d.ts +6 -0
  657. package/esm/components/icons/Bug.js +4 -0
  658. package/esm/components/icons/Bug.js.map +1 -0
  659. package/esm/components/icons/Chat.d.ts +6 -0
  660. package/esm/components/icons/Chat.js +4 -0
  661. package/esm/components/icons/Chat.js.map +1 -0
  662. package/esm/components/icons/ChevronDown.d.ts +6 -0
  663. package/esm/components/icons/ChevronDown.js +4 -0
  664. package/esm/components/icons/ChevronDown.js.map +1 -0
  665. package/esm/components/icons/ChevronLeft.d.ts +1 -0
  666. package/esm/components/icons/ChevronRight.d.ts +1 -0
  667. package/esm/components/icons/ChevronUp.d.ts +6 -0
  668. package/esm/components/icons/ChevronUp.js +4 -0
  669. package/esm/components/icons/ChevronUp.js.map +1 -0
  670. package/esm/components/icons/Clear.d.ts +1 -0
  671. package/esm/components/icons/Close.d.ts +3 -1
  672. package/esm/components/icons/Close.js +1 -1
  673. package/esm/components/icons/Close.js.map +1 -1
  674. package/esm/components/icons/Code.d.ts +6 -0
  675. package/esm/components/icons/Code.js +4 -0
  676. package/esm/components/icons/Code.js.map +1 -0
  677. package/esm/components/icons/Copy.d.ts +1 -0
  678. package/esm/components/icons/Copy.js +2 -2
  679. package/esm/components/icons/Copy.js.map +1 -1
  680. package/esm/components/icons/DeepThought.d.ts +1 -0
  681. package/esm/components/icons/Delete.d.ts +1 -0
  682. package/esm/components/icons/Document.d.ts +5 -0
  683. package/esm/components/icons/Document.js +6 -0
  684. package/esm/components/icons/Document.js.map +1 -0
  685. package/esm/components/icons/Download.d.ts +1 -0
  686. package/esm/components/icons/Edit.d.ts +1 -0
  687. package/esm/components/icons/Expand.d.ts +1 -0
  688. package/esm/components/icons/Eye.d.ts +1 -0
  689. package/esm/components/icons/EyeInvisible.d.ts +1 -0
  690. package/esm/components/icons/Facebook.d.ts +1 -0
  691. package/esm/components/icons/Feedback.d.ts +1 -0
  692. package/esm/components/icons/File.d.ts +1 -0
  693. package/esm/components/icons/FileExcel.d.ts +1 -0
  694. package/esm/components/icons/FilePdf.d.ts +1 -0
  695. package/esm/components/icons/FileWord.d.ts +1 -0
  696. package/esm/components/icons/Fullscreen.d.ts +1 -0
  697. package/esm/components/icons/FullscreenExit.d.ts +1 -0
  698. package/esm/components/icons/Group.d.ts +1 -0
  699. package/esm/components/icons/History.d.ts +7 -0
  700. package/esm/components/icons/History.js +4 -0
  701. package/esm/components/icons/History.js.map +1 -0
  702. package/esm/components/icons/Image.d.ts +4 -0
  703. package/esm/components/icons/Image.js +5 -0
  704. package/esm/components/icons/Image.js.map +1 -0
  705. package/esm/components/icons/Info.d.ts +6 -0
  706. package/esm/components/icons/Info.js +4 -0
  707. package/esm/components/icons/Info.js.map +1 -0
  708. package/esm/components/icons/Link.d.ts +1 -0
  709. package/esm/components/icons/Linkedin.d.ts +1 -0
  710. package/esm/components/icons/Loading.d.ts +1 -0
  711. package/esm/components/icons/Mail.d.ts +1 -0
  712. package/esm/components/icons/MapMarker.d.ts +1 -0
  713. package/esm/components/icons/MenuHorizontal.d.ts +7 -0
  714. package/esm/components/icons/MenuHorizontal.js +4 -0
  715. package/esm/components/icons/MenuHorizontal.js.map +1 -0
  716. package/esm/components/icons/MenuVertical.d.ts +7 -0
  717. package/esm/components/icons/MenuVertical.js +4 -0
  718. package/esm/components/icons/MenuVertical.js.map +1 -0
  719. package/esm/components/icons/Message.d.ts +1 -0
  720. package/esm/components/icons/Microphone.d.ts +1 -0
  721. package/esm/components/icons/Minus.d.ts +1 -0
  722. package/esm/components/icons/MinusCircle.d.ts +1 -0
  723. package/esm/components/icons/PaperClip.d.ts +1 -0
  724. package/esm/components/icons/Picture.d.ts +1 -0
  725. package/esm/components/icons/Plus.d.ts +1 -0
  726. package/esm/components/icons/Preview.d.ts +4 -0
  727. package/esm/components/icons/Preview.js +5 -0
  728. package/esm/components/icons/Preview.js.map +1 -0
  729. package/esm/components/icons/Print.d.ts +6 -0
  730. package/esm/components/icons/Print.js +4 -0
  731. package/esm/components/icons/Print.js.map +1 -0
  732. package/esm/components/icons/QuestionHelp.d.ts +1 -0
  733. package/esm/components/icons/Refresh.d.ts +1 -0
  734. package/esm/components/icons/SelectIcon.d.ts +1 -0
  735. package/esm/components/icons/Send.d.ts +1 -0
  736. package/esm/components/icons/Setting.d.ts +1 -0
  737. package/esm/components/icons/Share.d.ts +1 -0
  738. package/esm/components/icons/Sound.d.ts +1 -0
  739. package/esm/components/icons/SoundDeactivated.d.ts +1 -0
  740. package/esm/components/icons/Telegram.d.ts +1 -0
  741. package/esm/components/icons/ThumbDown.d.ts +1 -0
  742. package/esm/components/icons/ThumbUp.d.ts +1 -0
  743. package/esm/components/icons/Translation.d.ts +1 -0
  744. package/esm/components/icons/Twitter.d.ts +1 -0
  745. package/esm/components/icons/Upload.d.ts +4 -0
  746. package/esm/components/icons/Upload.js +5 -0
  747. package/esm/components/icons/Upload.js.map +1 -0
  748. package/esm/components/icons/User.d.ts +1 -0
  749. package/esm/components/icons/Warning.d.ts +1 -0
  750. package/esm/components/icons/Warning.js +1 -1
  751. package/esm/components/icons/Warning.js.map +1 -1
  752. package/esm/components/icons/WhatsApp.d.ts +1 -0
  753. package/esm/components/layouts/Chat.js +9 -1
  754. package/esm/components/layouts/Chat.js.map +1 -1
  755. package/esm/components/layouts/FullPage.js +10 -1
  756. package/esm/components/layouts/FullPage.js.map +1 -1
  757. package/esm/components/layouts/HiddenChat.d.ts +4 -0
  758. package/esm/components/layouts/HiddenChat.js +144 -0
  759. package/esm/components/layouts/HiddenChat.js.map +1 -0
  760. package/esm/components/layouts/Totem.js +1 -1
  761. package/esm/components/layouts/Totem.js.map +1 -1
  762. package/esm/components/layouts/WebsiteAssistant.js +2 -2
  763. package/esm/components/layouts/WebsiteAssistant.js.map +1 -1
  764. package/esm/components/layouts/ZoomedFullBody.d.ts +4 -0
  765. package/esm/components/layouts/ZoomedFullBody.js +14 -0
  766. package/esm/components/layouts/ZoomedFullBody.js.map +1 -0
  767. package/esm/components/layouts/chat.css +358 -19
  768. package/esm/components/layouts/hidden-chat.css +254 -0
  769. package/esm/components/layouts/totem.css +19 -10
  770. package/esm/components/layouts/website-assistant.css +2 -2
  771. package/esm/components/layouts/zoomed-full-body.css +18 -0
  772. package/esm/components/ui/Alert.css +93 -0
  773. package/esm/components/ui/Alert.d.ts +18 -0
  774. package/esm/components/ui/Alert.js +39 -0
  775. package/esm/components/ui/Alert.js.map +1 -0
  776. package/esm/components/ui/Button.css +8 -2
  777. package/esm/components/ui/Button.d.ts +1 -0
  778. package/esm/components/ui/Button.js +2 -1
  779. package/esm/components/ui/Button.js.map +1 -1
  780. package/esm/components/ui/Card.css +5 -0
  781. package/esm/components/ui/Card.d.ts +1 -0
  782. package/esm/components/ui/Card.js +2 -1
  783. package/esm/components/ui/Card.js.map +1 -1
  784. package/esm/components/ui/ConfirmDialog.css +42 -0
  785. package/esm/components/ui/ConfirmDialog.d.ts +11 -0
  786. package/esm/components/ui/ConfirmDialog.js +9 -0
  787. package/esm/components/ui/ConfirmDialog.js.map +1 -0
  788. package/esm/components/ui/Drawer.css +121 -96
  789. package/esm/components/ui/Drawer.d.ts +17 -6
  790. package/esm/components/ui/Drawer.js +45 -14
  791. package/esm/components/ui/Drawer.js.map +1 -1
  792. package/esm/components/ui/Expandable.d.ts +3 -2
  793. package/esm/components/ui/Expandable.js +35 -20
  794. package/esm/components/ui/Expandable.js.map +1 -1
  795. package/esm/components/ui/Select.d.ts +1 -0
  796. package/esm/components/ui/Slider.css +192 -0
  797. package/esm/components/ui/Slider.d.ts +12 -0
  798. package/esm/components/ui/Slider.js +75 -0
  799. package/esm/components/ui/Slider.js.map +1 -0
  800. package/esm/components/ui/Table.css +15 -2
  801. package/esm/context/visemeContext.d.ts +24 -0
  802. package/esm/context/visemeContext.js +187 -0
  803. package/esm/context/visemeContext.js.map +1 -0
  804. package/esm/helpers/configuration.js +0 -1
  805. package/esm/helpers/configuration.js.map +1 -1
  806. package/esm/helpers/constants.d.ts +6 -0
  807. package/esm/helpers/constants.js +6 -0
  808. package/esm/helpers/constants.js.map +1 -1
  809. package/esm/helpers/error.js +53 -6
  810. package/esm/helpers/error.js.map +1 -1
  811. package/esm/helpers/markedExtendedTables.js +1 -1
  812. package/esm/helpers/markedExtendedTables.js.map +1 -1
  813. package/esm/helpers/message.d.ts +5 -0
  814. package/esm/helpers/message.js +91 -0
  815. package/esm/helpers/message.js.map +1 -0
  816. package/esm/helpers/sanitizer.d.ts +1 -0
  817. package/esm/helpers/sanitizer.js +5 -0
  818. package/esm/helpers/sanitizer.js.map +1 -0
  819. package/esm/helpers/statistics.d.ts +1 -12
  820. package/esm/helpers/statistics.js +0 -156
  821. package/esm/helpers/statistics.js.map +1 -1
  822. package/esm/helpers/stt/useSTT.d.ts +40 -0
  823. package/esm/helpers/stt/useSTT.js +523 -0
  824. package/esm/helpers/stt/useSTT.js.map +1 -0
  825. package/esm/helpers/translations.js +23 -4
  826. package/esm/helpers/translations.js.map +1 -1
  827. package/esm/helpers/tts/ttsVoiceUtility.d.ts +158 -0
  828. package/esm/helpers/tts/ttsVoiceUtility.js +182 -0
  829. package/esm/helpers/tts/ttsVoiceUtility.js.map +1 -0
  830. package/esm/helpers/tts/useTTS.d.ts +27 -0
  831. package/esm/helpers/tts/useTTS.js +293 -0
  832. package/esm/helpers/tts/useTTS.js.map +1 -0
  833. package/esm/helpers/utils.d.ts +40 -0
  834. package/esm/helpers/utils.js +143 -0
  835. package/esm/helpers/utils.js.map +1 -1
  836. package/esm/i18n.js +13 -1
  837. package/esm/i18n.js.map +1 -1
  838. package/esm/index.d.ts +14 -4
  839. package/esm/index.js +137 -85
  840. package/esm/index.js.map +1 -1
  841. package/esm/locales/de.json +593 -0
  842. package/esm/locales/en.json +250 -40
  843. package/esm/locales/es.json +593 -0
  844. package/esm/locales/fr.json +603 -0
  845. package/esm/locales/it.json +260 -48
  846. package/esm/styles.css +18 -2
  847. package/package.json +12 -13
  848. package/src/I18nWrapper.tsx +3 -60
  849. package/src/__snapshots__/index.test.tsx.snap +60 -0
  850. package/src/components/AccountForm/AccountForm.test.tsx +2 -1
  851. package/src/components/AccountForm/AccountForm.tsx +3 -5
  852. package/src/components/AgeVerificationModal/AgeVerificationModal.css +1 -1
  853. package/src/components/AgeVerificationModal/AgeVerificationModal.tsx +1 -1
  854. package/src/components/Avatar/Avatar.css +2 -2
  855. package/src/components/Avatar/Avatar.test.tsx +39 -20
  856. package/src/components/Avatar/Avatar.tsx +175 -145
  857. package/src/components/Avatar/AvatarView/AvatarComponent/Shadow/DynamicShadow.tsx +103 -0
  858. package/src/components/Avatar/AvatarView/AvatarComponent/avatarComponent.tsx +106 -0
  859. package/src/components/Avatar/AvatarView/AvatarComponent/components/FullbodyAvatar/fullbodyAvatar.tsx +348 -0
  860. package/src/components/Avatar/AvatarView/AvatarComponent/components/FullbodyAvatar/types.ts +44 -0
  861. package/src/components/Avatar/AvatarView/AvatarComponent/components/controllers/AvatarAnimator.ts +1250 -0
  862. package/src/components/Avatar/AvatarView/AvatarComponent/components/controllers/AvatarPositionController.ts +83 -0
  863. package/src/components/Avatar/AvatarView/AvatarComponent/components/controllers/MorphTargetController.ts +301 -0
  864. package/src/components/Avatar/AvatarView/AvatarComponent/components/controls.tsx +100 -0
  865. package/src/components/Avatar/AvatarView/AvatarComponent/components/halfbodyAvatar.tsx +152 -0
  866. package/src/components/{AvatarView → Avatar/AvatarView/AvatarComponent}/components/loader.tsx +1 -1
  867. package/src/components/Avatar/AvatarView/AvatarComponent/constants.ts +128 -0
  868. package/src/components/Avatar/AvatarView/AvatarComponent/lights/Lights.tsx +145 -0
  869. package/src/components/Avatar/AvatarView/AvatarComponent/positionControls/positionControls.css +111 -0
  870. package/src/components/Avatar/AvatarView/AvatarComponent/positionControls/positionControls.tsx +201 -0
  871. package/src/components/{AvatarView → Avatar/AvatarView}/AvatarView.stories.tsx +41 -7
  872. package/src/components/Avatar/AvatarView/index.tsx +194 -0
  873. package/src/components/Avatar/AvatarView/utils/hideHands.ts +11 -0
  874. package/src/components/Avatar/AvatarView/utils/useEyeBlink.ts +100 -0
  875. package/src/components/Avatar/AvatarView/utils/useMouthAnimation.ts +93 -0
  876. package/src/components/Avatar/AvatarView/utils/useSmile.ts +39 -0
  877. package/src/components/Avatar/__snapshots__/Avatar.test.tsx.snap +32 -93
  878. package/src/components/BlockedMemoriBadge/__snapshots__/BlockedMemoriBadge.test.tsx.snap +10 -0
  879. package/src/components/Chat/Chat.stories.tsx +498 -2
  880. package/src/components/Chat/Chat.test.tsx +241 -301
  881. package/src/components/Chat/Chat.tsx +120 -58
  882. package/src/components/Chat/__snapshots__/Chat.test.tsx.snap +1756 -1222
  883. package/src/components/ChatBubble/ChatBubble.css +87 -9
  884. package/src/components/ChatBubble/ChatBubble.stories.tsx +759 -16
  885. package/src/components/ChatBubble/ChatBubble.test.tsx +217 -2
  886. package/src/components/ChatBubble/ChatBubble.tsx +242 -90
  887. package/src/components/ChatBubble/__snapshots__/ChatBubble.test.tsx.snap +7728 -254
  888. package/src/components/ChatHistoryDrawer/ChatHistory.css +414 -0
  889. package/src/components/ChatHistoryDrawer/ChatHistory.stories.tsx +361 -0
  890. package/src/components/ChatHistoryDrawer/ChatHistory.test.tsx +107 -0
  891. package/src/components/ChatHistoryDrawer/ChatHistory.tsx +1191 -0
  892. package/src/components/ChatHistoryDrawer/__snapshots__/ChatHistory.test.tsx.snap +27 -0
  893. package/src/components/ChatInputs/ChatInputs.stories.tsx +5 -0
  894. package/src/components/ChatInputs/ChatInputs.test.tsx +0 -6
  895. package/src/components/ChatInputs/ChatInputs.tsx +136 -25
  896. package/src/components/ChatInputs/__snapshots__/ChatInputs.test.tsx.snap +6 -138
  897. package/src/components/ChatTextArea/ChatTextArea.css +9 -5
  898. package/src/components/ChatTextArea/ChatTextArea.tsx +1 -0
  899. package/src/components/ChatTextArea/__snapshots__/ChatTextArea.test.tsx.snap +3 -0
  900. package/src/components/CompletionProviderStatus/CompletionProviderStatus.css +35 -17
  901. package/src/components/CompletionProviderStatus/CompletionProviderStatus.stories.tsx +275 -22
  902. package/src/components/CompletionProviderStatus/CompletionProviderStatus.tsx +182 -48
  903. package/src/components/CompletionProviderStatus/__snapshots__/CompletionProviderStatus.test.tsx.snap +57 -21
  904. package/src/components/ExpertsDrawer/ExpertsDrawer.tsx +4 -2
  905. package/src/components/FilePreview/FilePreview.css +184 -0
  906. package/src/components/FilePreview/FilePreview.stories.tsx +66 -0
  907. package/src/components/FilePreview/FilePreview.test.tsx +26 -0
  908. package/src/components/FilePreview/FilePreview.tsx +177 -0
  909. package/src/components/FilePreview/__snapshots__/FilePreview.test.tsx.snap +275 -0
  910. package/src/components/Header/Header.css +3 -3
  911. package/src/components/Header/Header.stories.tsx +21 -1
  912. package/src/components/Header/Header.test.tsx +38 -1
  913. package/src/components/Header/Header.tsx +56 -16
  914. package/src/components/Header/__snapshots__/Header.test.tsx.snap +127 -375
  915. package/src/components/KnownFacts/KnownFacts.stories.tsx +5 -4
  916. package/src/components/KnownFacts/KnownFacts.test.tsx +6 -3
  917. package/src/components/KnownFacts/KnownFacts.tsx +4 -5
  918. package/src/components/LoginDrawer/LoginDrawer.css +302 -0
  919. package/src/components/LoginDrawer/LoginDrawer.stories.tsx +27 -1
  920. package/src/components/LoginDrawer/LoginDrawer.test.tsx +65 -8
  921. package/src/components/LoginDrawer/LoginDrawer.tsx +12 -13
  922. package/src/components/LoginDrawer/__snapshots__/LoginDrawer.test.tsx.snap +32 -0
  923. package/src/components/MediaWidget/LinkItemWidget.css +10 -0
  924. package/src/components/MediaWidget/LinkItemWidget.tsx +6 -1
  925. package/src/components/MediaWidget/MediaItemWidget.css +153 -3
  926. package/src/components/MediaWidget/MediaItemWidget.stories.tsx +6 -0
  927. package/src/components/MediaWidget/MediaItemWidget.tsx +229 -161
  928. package/src/components/MediaWidget/MediaWidget.test.tsx +2 -1
  929. package/src/components/MediaWidget/MediaWidget.tsx +5 -2
  930. package/src/components/MediaWidget/__snapshots__/LinkItemWidget.test.tsx.snap +4 -4
  931. package/src/components/MediaWidget/__snapshots__/MediaItemWidget.test.tsx.snap +150 -249
  932. package/src/components/MediaWidget/__snapshots__/MediaWidget.test.tsx.snap +2 -2
  933. package/src/components/MemoriArtifactSystem/ArtifactDrawer.stories.tsx +755 -0
  934. package/src/components/MemoriArtifactSystem/components/ArtifactActions/ArtifactActions.css +163 -0
  935. package/src/components/MemoriArtifactSystem/components/ArtifactActions/ArtifactActions.tsx +250 -0
  936. package/src/components/MemoriArtifactSystem/components/ArtifactActions/CopyButton.stories.tsx +30 -0
  937. package/src/components/MemoriArtifactSystem/components/ArtifactActions/components/CopyButtonWithDropdown.tsx +467 -0
  938. package/src/components/MemoriArtifactSystem/components/ArtifactActions/components/CopyMenuItem.tsx +86 -0
  939. package/src/components/MemoriArtifactSystem/components/ArtifactActions/hooks/useCopyArtifact.ts +619 -0
  940. package/src/components/MemoriArtifactSystem/components/ArtifactActions/index.ts +9 -0
  941. package/src/components/MemoriArtifactSystem/components/ArtifactActions/styles.css +489 -0
  942. package/src/components/MemoriArtifactSystem/components/ArtifactActions/test/CopyButtonTest.tsx +90 -0
  943. package/src/components/MemoriArtifactSystem/components/ArtifactActions/types.ts +73 -0
  944. package/src/components/MemoriArtifactSystem/components/ArtifactActions/utils/PDFExporter.ts +454 -0
  945. package/src/components/MemoriArtifactSystem/components/ArtifactDrawer/ArtifactDrawer.css +1059 -0
  946. package/src/components/MemoriArtifactSystem/components/ArtifactDrawer/ArtifactDrawer.tsx +428 -0
  947. package/src/components/MemoriArtifactSystem/components/ArtifactDrawer/components/TabSwitch.css +150 -0
  948. package/src/components/MemoriArtifactSystem/components/ArtifactDrawer/components/TabSwitch.tsx +79 -0
  949. package/src/components/MemoriArtifactSystem/components/ArtifactHandler/ArtifactHandler.css +253 -0
  950. package/src/components/MemoriArtifactSystem/components/ArtifactHandler/ArtifactHandler.tsx +169 -0
  951. package/src/components/MemoriArtifactSystem/components/ArtifactPreview/ArtifactPreview.css +346 -0
  952. package/src/components/MemoriArtifactSystem/components/ArtifactPreview/ArtifactPreview.tsx +165 -0
  953. package/src/components/MemoriArtifactSystem/context/ArtifactContext.tsx +69 -0
  954. package/src/components/MemoriArtifactSystem/types/artifact.types.ts +16 -0
  955. package/src/components/MemoriWidget/MemoriWidget.css +10 -4
  956. package/src/components/MemoriWidget/MemoriWidget.stories.tsx +70 -11
  957. package/src/components/MemoriWidget/MemoriWidget.tsx +1344 -1349
  958. package/src/components/MicrophoneButton/MicrophoneButton.tsx +0 -1
  959. package/src/components/SendOnEnterMenu/SendOnEnterMenu.css +3 -3
  960. package/src/components/SettingsDrawer/SettingsDrawer.css +9 -2
  961. package/src/components/SettingsDrawer/SettingsDrawer.test.tsx +24 -0
  962. package/src/components/SettingsDrawer/SettingsDrawer.tsx +104 -14
  963. package/src/components/ShareButton/ShareButton.css +6 -0
  964. package/src/components/ShareButton/ShareButton.stories.tsx +18 -1
  965. package/src/components/ShareButton/ShareButton.test.tsx +8 -1
  966. package/src/components/ShareButton/ShareButton.tsx +49 -2
  967. package/src/components/ShareButton/__snapshots__/ShareButton.test.tsx.snap +35 -0
  968. package/src/components/SignupForm/SignupForm.test.tsx +3 -2
  969. package/src/components/SignupForm/SignupForm.tsx +8 -9
  970. package/src/components/Snippet/Snippet.stories.tsx +0 -8
  971. package/src/components/Snippet/Snippet.test.tsx +0 -1
  972. package/src/components/Snippet/Snippet.tsx +55 -36
  973. package/src/components/Snippet/__snapshots__/Snippet.test.tsx.snap +186 -2560
  974. package/src/components/StartPanel/StartPanel.css +34 -8
  975. package/src/components/StartPanel/StartPanel.stories.tsx +58 -23
  976. package/src/components/StartPanel/StartPanel.test.tsx +49 -16
  977. package/src/components/StartPanel/StartPanel.tsx +214 -150
  978. package/src/components/StartPanel/__snapshots__/StartPanel.test.tsx.snap +1340 -171
  979. package/src/components/Typing/Typing.tsx +52 -47
  980. package/src/components/UploadButton/UploadButton.css +544 -0
  981. package/src/components/UploadButton/UploadButton.stories.tsx +164 -0
  982. package/src/components/UploadButton/UploadButton.test.tsx +11 -0
  983. package/src/components/UploadButton/UploadButton.tsx +490 -0
  984. package/src/components/UploadButton/UploadDocuments/UploadDocuments.tsx +422 -0
  985. package/src/components/UploadButton/UploadImages/UploadImages.tsx +362 -0
  986. package/src/components/UploadButton/__snapshots__/UploadButton.test.tsx.snap +156 -0
  987. package/src/components/UploadMenu/UploadMenu.css +3 -3
  988. package/src/components/VenueWidget/VenueWidget.css +7 -0
  989. package/src/components/VenueWidget/VenueWidget.tsx +4 -4
  990. package/src/components/WhyThisAnswer/WhyThisAnswer.css +43 -0
  991. package/src/components/WhyThisAnswer/WhyThisAnswer.stories.tsx +46 -4
  992. package/src/components/WhyThisAnswer/WhyThisAnswer.test.tsx +132 -11
  993. package/src/components/WhyThisAnswer/WhyThisAnswer.tsx +36 -10
  994. package/src/components/WhyThisAnswer/__snapshots__/WhyThisAnswer.test.tsx.snap +15 -1
  995. package/src/components/icons/Alert.tsx +31 -0
  996. package/src/components/icons/ArrowUp.tsx +28 -0
  997. package/src/components/icons/Bug.tsx +81 -0
  998. package/src/components/icons/Chat.tsx +30 -0
  999. package/src/components/icons/ChevronDown.tsx +26 -0
  1000. package/src/components/icons/ChevronUp.tsx +24 -0
  1001. package/src/components/icons/Close.tsx +8 -1
  1002. package/src/components/icons/Code.tsx +24 -0
  1003. package/src/components/icons/Copy.tsx +8 -2
  1004. package/src/components/icons/Document.tsx +50 -0
  1005. package/src/components/icons/History.tsx +33 -0
  1006. package/src/components/icons/Image.tsx +37 -0
  1007. package/src/components/icons/Info.tsx +31 -0
  1008. package/src/components/icons/MenuHorizontal.tsx +29 -0
  1009. package/src/components/icons/MenuVertical.tsx +29 -0
  1010. package/src/components/icons/Preview.tsx +29 -0
  1011. package/src/components/icons/Print.tsx +34 -0
  1012. package/src/components/icons/Upload.tsx +34 -0
  1013. package/src/components/icons/Warning.tsx +2 -1
  1014. package/src/components/icons/icons.stories.tsx +14 -6
  1015. package/src/components/layouts/Chat.test.tsx +18 -10
  1016. package/src/components/layouts/Chat.tsx +51 -31
  1017. package/src/components/layouts/FullPage.test.tsx +42 -9
  1018. package/src/components/layouts/FullPage.tsx +55 -30
  1019. package/src/components/layouts/HiddenChat.test.tsx +40 -0
  1020. package/src/components/layouts/HiddenChat.tsx +252 -0
  1021. package/src/components/layouts/Totem.test.tsx +18 -10
  1022. package/src/components/layouts/Totem.tsx +1 -7
  1023. package/src/components/layouts/WebsiteAssistant.test.tsx +18 -10
  1024. package/src/components/layouts/WebsiteAssistant.tsx +0 -7
  1025. package/src/components/layouts/ZoomedFullBody.test.tsx +40 -0
  1026. package/src/components/layouts/ZoomedFullBody.tsx +81 -0
  1027. package/src/components/layouts/__snapshots__/Chat.test.tsx.snap +287 -197
  1028. package/src/components/layouts/__snapshots__/FullPage.test.tsx.snap +827 -201
  1029. package/src/components/layouts/__snapshots__/HiddenChat.test.tsx.snap +470 -0
  1030. package/src/components/layouts/__snapshots__/Totem.test.tsx.snap +122 -36
  1031. package/src/components/layouts/__snapshots__/WebsiteAssistant.test.tsx.snap +1 -1
  1032. package/src/components/layouts/__snapshots__/ZoomedFullBody.test.tsx.snap +533 -0
  1033. package/src/components/layouts/chat.css +358 -19
  1034. package/src/components/layouts/hidden-chat.css +254 -0
  1035. package/src/components/layouts/layouts.stories.tsx +257 -57
  1036. package/src/components/layouts/totem.css +19 -10
  1037. package/src/components/layouts/website-assistant.css +2 -2
  1038. package/src/components/layouts/zoomed-full-body.css +18 -0
  1039. package/src/components/ui/Alert.css +93 -0
  1040. package/src/components/ui/Alert.stories.tsx +137 -0
  1041. package/src/components/ui/Alert.test.tsx +129 -0
  1042. package/src/components/ui/Alert.tsx +123 -0
  1043. package/src/components/ui/Button.css +8 -2
  1044. package/src/components/ui/Button.tsx +3 -0
  1045. package/src/components/ui/Card.css +5 -0
  1046. package/src/components/ui/Card.tsx +4 -0
  1047. package/src/components/ui/ConfirmDialog.css +42 -0
  1048. package/src/components/ui/ConfirmDialog.stories.tsx +216 -0
  1049. package/src/components/ui/ConfirmDialog.test.tsx +124 -0
  1050. package/src/components/ui/ConfirmDialog.tsx +58 -0
  1051. package/src/components/ui/Drawer.css +121 -96
  1052. package/src/components/ui/Drawer.stories.tsx +152 -67
  1053. package/src/components/ui/Drawer.test.tsx +6 -2
  1054. package/src/components/ui/Drawer.tsx +202 -90
  1055. package/src/components/ui/Expandable.stories.tsx +128 -1
  1056. package/src/components/ui/Expandable.tsx +44 -22
  1057. package/src/components/ui/Slider.css +192 -0
  1058. package/src/components/ui/Slider.stories.tsx +63 -0
  1059. package/src/components/ui/Slider.tsx +142 -0
  1060. package/src/components/ui/Table.css +15 -2
  1061. package/src/components/ui/__snapshots__/Alert.test.tsx.snap +59 -0
  1062. package/src/components/ui/__snapshots__/ConfirmDialog.test.tsx.snap +35 -0
  1063. package/src/context/visemeContext.tsx +391 -0
  1064. package/src/helpers/configuration.ts +0 -1
  1065. package/src/helpers/constants.ts +10 -0
  1066. package/src/helpers/error.ts +58 -6
  1067. package/src/helpers/markedExtendedTables.js +1 -1
  1068. package/src/helpers/message.ts +148 -0
  1069. package/src/helpers/sanitizer.ts +17 -0
  1070. package/src/helpers/statistics.ts +1 -195
  1071. package/src/helpers/stt/useSTT.ts +774 -0
  1072. package/src/helpers/translations.ts +29 -7
  1073. package/src/helpers/tts/ttsVoiceUtility.ts +275 -0
  1074. package/src/helpers/tts/useTTS.ts +464 -0
  1075. package/src/helpers/utils.test.ts +38 -1
  1076. package/src/helpers/utils.ts +200 -0
  1077. package/src/i18n.ts +13 -1
  1078. package/src/index.stories.tsx +266 -23
  1079. package/src/index.test.tsx +130 -0
  1080. package/src/index.tsx +245 -153
  1081. package/src/locales/de.json +621 -0
  1082. package/src/locales/en.json +251 -40
  1083. package/src/locales/es.json +593 -0
  1084. package/src/locales/fr.json +603 -0
  1085. package/src/locales/it.json +262 -48
  1086. package/src/mocks/data.ts +272 -9
  1087. package/src/styles.css +18 -2
  1088. package/dist/components/AttachmentMediaModal/AttachmentMediaModal.d.ts +0 -14
  1089. package/dist/components/AttachmentMediaModal/AttachmentMediaModal.js +0 -66
  1090. package/dist/components/AttachmentMediaModal/AttachmentMediaModal.js.map +0 -1
  1091. package/dist/components/AvatarView/components/avatar.d.ts +0 -9
  1092. package/dist/components/AvatarView/components/avatar.js +0 -35
  1093. package/dist/components/AvatarView/components/avatar.js.map +0 -1
  1094. package/dist/components/AvatarView/components/fullbodyAvatar.d.ts +0 -10
  1095. package/dist/components/AvatarView/components/fullbodyAvatar.js +0 -62
  1096. package/dist/components/AvatarView/components/fullbodyAvatar.js.map +0 -1
  1097. package/dist/components/AvatarView/components/loader.js.map +0 -1
  1098. package/dist/components/AvatarView/index.d.ts +0 -17
  1099. package/dist/components/AvatarView/index.js +0 -35
  1100. package/dist/components/AvatarView/index.js.map +0 -1
  1101. package/dist/components/AvatarView/utils/useEyeBlink.d.ts +0 -2
  1102. package/dist/components/AvatarView/utils/useEyeBlink.js +0 -40
  1103. package/dist/components/AvatarView/utils/useEyeBlink.js.map +0 -1
  1104. package/dist/components/AvatarView/utils/useHeadMovement.js.map +0 -1
  1105. package/dist/components/AvatarView/utils/useLoadingMorphAnim.js.map +0 -1
  1106. package/dist/components/AvatarView/utils/useMouthSpeaking.d.ts +0 -2
  1107. package/dist/components/AvatarView/utils/useMouthSpeaking.js +0 -60
  1108. package/dist/components/AvatarView/utils/useMouthSpeaking.js.map +0 -1
  1109. package/dist/components/AvatarView/utils/useSmile.js +0 -30
  1110. package/dist/components/AvatarView/utils/useSmile.js.map +0 -1
  1111. package/dist/components/AvatarView/utils/utils.js.map +0 -1
  1112. package/dist/components/ExportHistoryButton/ExportHistoryButton.d.ts +0 -14
  1113. package/dist/components/ExportHistoryButton/ExportHistoryButton.js +0 -38
  1114. package/dist/components/ExportHistoryButton/ExportHistoryButton.js.map +0 -1
  1115. package/dist/components/ImageUpload/ImageUpload.css +0 -168
  1116. package/dist/components/ImageUpload/ImageUpload.d.ts +0 -28
  1117. package/dist/components/ImageUpload/ImageUpload.js +0 -163
  1118. package/dist/components/ImageUpload/ImageUpload.js.map +0 -1
  1119. package/dist/components/layouts/Default.d.ts +0 -17
  1120. package/dist/components/layouts/Default.js +0 -8
  1121. package/dist/components/layouts/Default.js.map +0 -1
  1122. package/dist/components/ui/Message.d.ts +0 -17
  1123. package/dist/components/ui/Message.js +0 -13
  1124. package/dist/components/ui/Message.js.map +0 -1
  1125. package/dist/helpers/tenant.d.ts +0 -2
  1126. package/dist/helpers/tenant.js +0 -40
  1127. package/dist/helpers/tenant.js.map +0 -1
  1128. package/esm/components/AttachmentMediaModal/AttachmentMediaModal.d.ts +0 -14
  1129. package/esm/components/AttachmentMediaModal/AttachmentMediaModal.js +0 -63
  1130. package/esm/components/AttachmentMediaModal/AttachmentMediaModal.js.map +0 -1
  1131. package/esm/components/AvatarView/components/avatar.d.ts +0 -9
  1132. package/esm/components/AvatarView/components/avatar.js +0 -31
  1133. package/esm/components/AvatarView/components/avatar.js.map +0 -1
  1134. package/esm/components/AvatarView/components/fullbodyAvatar.d.ts +0 -10
  1135. package/esm/components/AvatarView/components/fullbodyAvatar.js +0 -58
  1136. package/esm/components/AvatarView/components/fullbodyAvatar.js.map +0 -1
  1137. package/esm/components/AvatarView/components/loader.js.map +0 -1
  1138. package/esm/components/AvatarView/index.d.ts +0 -17
  1139. package/esm/components/AvatarView/index.js +0 -31
  1140. package/esm/components/AvatarView/index.js.map +0 -1
  1141. package/esm/components/AvatarView/utils/useEyeBlink.d.ts +0 -2
  1142. package/esm/components/AvatarView/utils/useEyeBlink.js +0 -37
  1143. package/esm/components/AvatarView/utils/useEyeBlink.js.map +0 -1
  1144. package/esm/components/AvatarView/utils/useHeadMovement.js.map +0 -1
  1145. package/esm/components/AvatarView/utils/useLoadingMorphAnim.js.map +0 -1
  1146. package/esm/components/AvatarView/utils/useMouthSpeaking.d.ts +0 -2
  1147. package/esm/components/AvatarView/utils/useMouthSpeaking.js +0 -57
  1148. package/esm/components/AvatarView/utils/useMouthSpeaking.js.map +0 -1
  1149. package/esm/components/AvatarView/utils/useSmile.js +0 -27
  1150. package/esm/components/AvatarView/utils/useSmile.js.map +0 -1
  1151. package/esm/components/AvatarView/utils/utils.js.map +0 -1
  1152. package/esm/components/ExportHistoryButton/ExportHistoryButton.d.ts +0 -14
  1153. package/esm/components/ExportHistoryButton/ExportHistoryButton.js +0 -35
  1154. package/esm/components/ExportHistoryButton/ExportHistoryButton.js.map +0 -1
  1155. package/esm/components/ImageUpload/ImageUpload.css +0 -168
  1156. package/esm/components/ImageUpload/ImageUpload.d.ts +0 -28
  1157. package/esm/components/ImageUpload/ImageUpload.js +0 -160
  1158. package/esm/components/ImageUpload/ImageUpload.js.map +0 -1
  1159. package/esm/components/layouts/Default.d.ts +0 -17
  1160. package/esm/components/layouts/Default.js +0 -5
  1161. package/esm/components/layouts/Default.js.map +0 -1
  1162. package/esm/components/ui/Message.d.ts +0 -17
  1163. package/esm/components/ui/Message.js +0 -10
  1164. package/esm/components/ui/Message.js.map +0 -1
  1165. package/esm/helpers/tenant.d.ts +0 -2
  1166. package/esm/helpers/tenant.js +0 -36
  1167. package/esm/helpers/tenant.js.map +0 -1
  1168. package/src/components/AvatarView/components/avatar.tsx +0 -57
  1169. package/src/components/AvatarView/components/fullbodyAvatar.tsx +0 -99
  1170. package/src/components/AvatarView/index.tsx +0 -101
  1171. package/src/components/AvatarView/utils/useEyeBlink.ts +0 -48
  1172. package/src/components/AvatarView/utils/useMouthSpeaking.ts +0 -70
  1173. package/src/components/AvatarView/utils/useSmile.ts +0 -31
  1174. package/src/components/ExportHistoryButton/ExportHistoryButton.stories.tsx +0 -73
  1175. package/src/components/ExportHistoryButton/ExportHistoryButton.test.tsx +0 -69
  1176. package/src/components/ExportHistoryButton/ExportHistoryButton.tsx +0 -103
  1177. package/src/components/ExportHistoryButton/__snapshots__/ExportHistoryButton.test.tsx.snap +0 -239
  1178. package/src/helpers/statistics.test.ts +0 -213
  1179. package/src/helpers/tenant.ts +0 -47
  1180. /package/dist/components/{AvatarView → Avatar/AvatarView}/utils/useHeadMovement.d.ts +0 -0
  1181. /package/dist/components/{AvatarView → Avatar/AvatarView}/utils/useHeadMovement.js +0 -0
  1182. /package/dist/components/{AvatarView → Avatar/AvatarView}/utils/useLoadingMorphAnim.d.ts +0 -0
  1183. /package/dist/components/{AvatarView → Avatar/AvatarView}/utils/useLoadingMorphAnim.js +0 -0
  1184. /package/dist/components/{AvatarView → Avatar/AvatarView}/utils/useSmile.d.ts +0 -0
  1185. /package/dist/components/{AvatarView → Avatar/AvatarView}/utils/utils.d.ts +0 -0
  1186. /package/dist/components/{AvatarView → Avatar/AvatarView}/utils/utils.js +0 -0
  1187. /package/esm/components/{AvatarView → Avatar/AvatarView}/utils/useHeadMovement.d.ts +0 -0
  1188. /package/esm/components/{AvatarView → Avatar/AvatarView}/utils/useHeadMovement.js +0 -0
  1189. /package/esm/components/{AvatarView → Avatar/AvatarView}/utils/useLoadingMorphAnim.d.ts +0 -0
  1190. /package/esm/components/{AvatarView → Avatar/AvatarView}/utils/useLoadingMorphAnim.js +0 -0
  1191. /package/esm/components/{AvatarView → Avatar/AvatarView}/utils/useSmile.d.ts +0 -0
  1192. /package/esm/components/{AvatarView → Avatar/AvatarView}/utils/utils.d.ts +0 -0
  1193. /package/esm/components/{AvatarView → Avatar/AvatarView}/utils/utils.js +0 -0
  1194. /package/src/components/{AvatarView → Avatar/AvatarView}/utils/useHeadMovement.ts +0 -0
  1195. /package/src/components/{AvatarView → Avatar/AvatarView}/utils/useLoadingMorphAnim.ts +0 -0
  1196. /package/src/components/{AvatarView → Avatar/AvatarView}/utils/utils.ts +0 -0
@@ -19,6 +19,11 @@
19
19
  "bottom": "Bottom",
20
20
  "hidden": "Hidden",
21
21
  "day": "Day",
22
+ "all": "All",
23
+ "today": "Today",
24
+ "yesterday": "Yesterday",
25
+ "last_7_days": "Last 7 days",
26
+ "last_30_days": "Last 30 days",
22
27
  "month": "Month",
23
28
  "year": "Year",
24
29
  "createdAt": "Creation date",
@@ -28,6 +33,7 @@
28
33
  "next": "Next",
29
34
  "previous": "Previous",
30
35
  "copy": "Copy",
36
+ "copyRawCode": "Copy raw code",
31
37
  "copyToClipboard": "Copy to clipboard",
32
38
  "showOriginalText": "Show original",
33
39
  "showTranslatedText": "Show translation",
@@ -37,33 +43,46 @@
37
43
  "nothingFound": "Nothing found",
38
44
  "venue": "Venue",
39
45
  "searchVenue": "Search venue...",
46
+ "privacyPolicy": "Privacy policy",
40
47
  "memoriBlockedTitle": "Blocked",
41
- "memoriBlockedUntil": "Memori blocked until {{date}}",
48
+ "memoriBlockedUntil": "Agent blocked until {{date}}",
42
49
  "memoriBlockedAnon": "Currently \"{{name}}\" can't answer, come back here on {{date}}",
43
50
  "memoriBlockedReasonExceedChats": "because it has exceeded the monthly threshold of allowed chats.",
44
51
  "memoriBlockedGiverHelper": "You can still manage it as administrator, but other users will not be able to interact with it.",
45
52
  "generatedByAI": "Answer generated by AI, may occasionally generate incorrect informations",
53
+ "reasoning": "Reasoning...",
46
54
  "whyThisAnswer": "Why this answer?",
47
55
  "whyThisAnswerHelper": "This answer was generated automatically by an artificial intelligence based on these verified contents.",
56
+ "receiverLabel": "Assigned to",
48
57
  "completionsEnabled": "Advanced AI, can respond with automatically generated answers that may sometimes contain incorrect information",
49
- "completionProviderDown": "This Twin is integrated with a generative AI from {{provider}}, but it is currently unavailable. Try again later.",
58
+ "completionProviderDown": "This agent is integrated with a generative AI from {{provider}}, but it is currently unavailable. Try again later.",
59
+ "completionProviderMajorOutage": "This agent is integrated with a generative AI from {{provider}}, but it is completely down. This feature will not be available until the service is restored.",
60
+ "completionProviderPartialOutage": "This agent is integrated with a generative AI from {{provider}}, but it is experiencing partial outages. Some features may be unavailable or perform poorly.",
61
+ "completionProviderDegraded": "This agent is integrated with a generative AI from {{provider}}, but it is performing slower than usual. Responses may take longer or be less accurate.",
50
62
  "completionProviderFallbackName": "an external provider",
51
63
  "completionProviderCheckStatusPage": "Check status page",
52
64
  "boardOfExperts": "Board of experts",
53
65
  "birthDate": "Birth date",
54
66
  "birthDateHelper": "We ask for your birth date only to enable or disable functionalities that have age restrictions",
55
67
  "underage": "You must be at least {{age}} years old to sign up.",
56
- "underageTwinSession": "You must be at least {{age}} years old to interact with this Twin.",
68
+ "underageTwinSession": "You must be at least {{age}} years old to interact with this agent.",
69
+ "errorFetchingSession": "Error during session loading",
70
+ "errorGettingReferralURL": "Error during referral loading",
71
+ "errorReopeningSession": "Error during session reopening",
57
72
  "ageVerification": "Age verification",
58
- "ageVerificationText": "To interact with this Twin, you must be at least {{minAge}} years old.",
59
- "nsfw": "NSFW: This Twin contains adult contents",
73
+ "ageVerificationText": "To interact with this agent, you must be at least {{minAge}} years old.",
74
+ "nsfw": "NSFW: This agent contains adult contents",
60
75
  "deepThought": "Deep Thought",
61
- "deepThoughtHelper": "Deep Thought is an advanced feature of the AI that will allow you to fully exploit your conversations by keeping track of them. The AI with Deep Thought can give you information tailored to you and the things you will share together. Allow the twin's author to contact you for commercial offers regarding products you have shown interest in.",
76
+ "deepThoughtHelper": "Deep Thought is an advanced feature of the AI that will allow you to fully exploit your conversations by keeping track of them. The AI with Deep Thought can give you information tailored to you and the things you will share together. Allow the agent's author to contact you for commercial offers regarding products you have shown interest in.",
62
77
  "deepThoughtDisclaimerTitle": "Deep Thought enabled",
63
78
  "deepThoughtDisclaimer": "Deep Thought is an advanced feature of the AI that will allow you to fully exploit your conversations by keeping track of them. The AI with Deep Thought can give you information tailored to you and the things you will share together.",
64
79
  "deepThoughtPreDisclaimerUnlogged": "Log in to enable Deep Thought.",
65
80
  "deepThoughtPreDisclaimerNotAllowed": "Deep Thought is disabled since you didn't consent its usage, you can change this any time in your account settings.",
66
- "notEnoughCredits": "The author of this Twin does not have enough credits to answer your question.",
81
+ "notEnoughCredits": "The author of this agent does not have enough credits to answer your question.",
82
+ "confirmDialog": {
83
+ "title": "Do you want to leave this page?",
84
+ "message": "The changes you made will be lost."
85
+ },
67
86
  "knownFacts": {
68
87
  "title": "Known facts",
69
88
  "description": "Details of the information shared between you and {{memoriName}}",
@@ -93,6 +112,7 @@
93
112
  "position": "Position preferences",
94
113
  "settings": "Settings",
95
114
  "share": "Share",
115
+ "shareChat": "Share chat",
96
116
  "sendOnKeypress": "Hit Enter to send",
97
117
  "sendOnClick": "Click on Submit",
98
118
  "boardOfExperts": "Board of experts",
@@ -105,22 +125,49 @@
105
125
  "micButtonPopoverListening": "Click the button to stop speak",
106
126
  "pageInstructExplanation": "To teach me new things click on the INSTRUCT ME button to get started",
107
127
  "pageTryMeExplanation": "To talk to me click on the START button to get started",
128
+ "pagePrivacyExplanation": "The conversations are visible by the author of the agent",
129
+ "downloadChat": "Download chat",
130
+ "pagePrivacyExplanationList": {
131
+ "allConversations": "All conversations with this agent are visible to the author of the agent",
132
+ "anonymousUser": "For anonymous users: the author will see the content of the conversation and your IP address",
133
+ "registeredUser": "For registered users: the author will see the content of the conversation and your username",
134
+ "contentAndUsername": "The author can see the content, your username and your IP address",
135
+ "contentAndIpAddress": "The author can see the content and your IP address",
136
+ "authorUsesInfo": "The author uses this information to improve the features of the agent and to provide you with a better service. Continuing the conversation, you accept these conditions."
137
+ },
108
138
  "instructButton": "INSTRUCT ME",
109
139
  "tryMeButton": "START",
140
+ "resumeButton": "RESUME",
110
141
  "chatHistory": "Chat history",
111
- "exportChatHistory": "Export chat history",
112
- "exportChatHistoryMessage": "Do you want to export chat history?",
113
- "chatBotButtonText": "CLICK HERE TO OPEN CHATBOT",
114
- "conversationStartedLabel": "Conversation started on",
115
- "settingsHeaderLabel": "Setup here if you want to set the memori as continuous speech, and change the silence seconds if you want to customize them.",
142
+ "chatHistoryDescription": "Show the chat history with this agent",
143
+ "loadingChatHistory": "Loading chat history...",
144
+ "noChatHistoryAvailable": "No chat history available",
145
+ "noResultsFound": "No results found for \"{{searchText}}\"",
146
+ "searchInChatHistory": "Search in chat history...",
147
+ "latestFirst": "Latest first",
148
+ "oldestFirst": "Oldest first",
149
+ "exportChat": "Export Chat",
150
+ "settingsHeaderLabel": "Setup here if you want to set the continuous speech, and change the silence seconds if you want to customize them.",
116
151
  "continuousSpeechLabel": "Continuous speech",
152
+ "continuousSpeechDisabled": "Continuous speech disabled because the agent is in mute mode",
117
153
  "holdToSpeak": "Hold to speak",
118
154
  "releaseToEndListening": "Release to end listening",
119
155
  "pressAndHoldToSpeak": "Press and hold to speak",
120
156
  "microphoneMode": "Microphone mode",
121
- "hideEmissionsLabel": "Hide text emitted by the Twin",
157
+ "hideEmissionsLabel": "Hide text emitted by the agent",
122
158
  "secondsLabel": "Set seconds",
123
159
  "controlsPosition": "Controls position",
160
+ "avatarControls": "Avatar controls",
161
+ "height": "Height",
162
+ "depth": "Depth",
163
+ "avatarType": "Avatar type",
164
+ "suggestions": "Use the arrow keys to adjust the avatar height\nUse +/- to adjust the avatar depth",
165
+ "blob": "Blob",
166
+ "avatar3d": "3D Avatar",
167
+ "zoomed": "Zoomed",
168
+ "normal": "Normal",
169
+ "far": "Far",
170
+ "enablePositionControls": "Enable position controls",
124
171
  "tryMeHeaderLabel": "TRY",
125
172
  "unknownPosition": "Unknown position",
126
173
  "fieldPlace": "Write the place (eg 'Milano')",
@@ -133,7 +180,89 @@
133
180
  "requirePositionHelp": "To talk to {{name}} you have to decide whether to provide your position or not. This is because different answers that it can provide you may depend on where you are.",
134
181
  "dontWantToProvidePosition": "I don't want to provide my position",
135
182
  "attachmentsLabel": "Enrich your message",
136
- "iWantToTalkToIn": "I want to talk to {{name}} in"
183
+ "iWantToTalkToIn": "I want to talk to {{name}} in",
184
+ "message": "message",
185
+ "messages": "messages",
186
+ "page": "Page {{current}} of {{total}}"
187
+ },
188
+ "artifact": {
189
+ "close": "Close",
190
+ "size": "Size",
191
+ "generated": "Generated",
192
+ "download": "Download",
193
+ "print": "Print",
194
+ "external": "Open in a new window",
195
+ "type": "Type",
196
+ "fullscreen": "Fullscreen",
197
+ "exitFullscreen": "Exit fullscreen",
198
+ "generatedAt": "Generated at",
199
+ "copy": "Copy",
200
+ "open": "Open",
201
+ "code": "Code",
202
+ "preview": "Preview",
203
+ "copied": "Copied!",
204
+ "error": "Error",
205
+ "generatingPdf": "Generating PDF...",
206
+ "copying": "Copying...",
207
+ "moreCopyOptions": "More copy options",
208
+ "copyAs": "Copy as",
209
+ "downloadAsMarkdown": "Download as Markdown",
210
+ "downloadRawMarkdownText": "Download raw markdown text",
211
+ "downloadAsPdf": "Download as PDF",
212
+ "exportAsPdfDocument": "Export as PDF document",
213
+ "downloadAsHtml": "Download as HTML",
214
+ "downloadFormattedHtml": "Download formatted HTML",
215
+ "viewMode": "View Mode",
216
+ "codeMode": "Code Mode",
217
+ "refresh": "Refresh",
218
+ "share": "Share",
219
+ "downloadAsJson": "Download as JSON",
220
+ "downloadJsonData": "Download JSON data",
221
+ "downloadAsPng": "Download as PNG",
222
+ "downloadPngImage": "Download PNG image",
223
+ "downloadAsJpeg": "Download as JPEG",
224
+ "downloadJpegImage": "Download JPEG image",
225
+ "downloadAsGif": "Download as GIF",
226
+ "downloadGifImage": "Download GIF image",
227
+ "downloadAsWebp": "Download as WebP",
228
+ "downloadWebpImage": "Download WebP image",
229
+ "copyAsSvg": "Copy as SVG",
230
+ "copySvgSourceCode": "Copy SVG source code",
231
+ "copyAsPlainText": "Copy as Plain Text",
232
+ "copyAsText": "Copy as text",
233
+ "copyAsLanguage": "Copy as {{language}}",
234
+ "copyLanguageCode": "Copy {{language}} code",
235
+ "copyWithoutSyntaxHighlighting": "Copy without syntax highlighting",
236
+ "copyTextContent": "Copy text content",
237
+ "pdfExportNotSupported": "PDF export is not supported in this browser",
238
+ "popupBlocked": "Popup blocked! Please enable popups to print.",
239
+ "safariPdfInstructions": "PDF export opened in new window. Please use Cmd+P (Mac) or Ctrl+P (Windows) to print and save as PDF."
240
+ },
241
+ "upload": {
242
+ "loginRequired": "Login required",
243
+ "loginRequiredDescription": "Please login to upload images",
244
+ "uploadFiles": "Upload files",
245
+ "uploadImage": "Upload image",
246
+ "replace": "Replace",
247
+ "maxImagesReached": "You can upload up to {{max}} images",
248
+ "maxDocumentsReached": "You can upload up to {{max}} documents",
249
+ "remaining": "remaining",
250
+ "lastDocumentSlot": "Upload last document",
251
+ "uploadDocument": "Upload document",
252
+ "maxReached": "Max limit reached",
253
+ "imageTitle": "Image title: {{title}}",
254
+ "titleHelp": "Adding a descriptive title helps the AI provide more context and appropriate responses.",
255
+ "titlePlaceholder": "Enter image title",
256
+ "apiClientNotConfigured": "API client not configured properly for media upload",
257
+ "fileReadingFailed": "File reading failed",
258
+ "uploadFailed": "Upload failed",
259
+ "uploadSuccess": "Upload success",
260
+ "titleImage": "Image: {{title}}",
261
+ "uploadSuccessDescription": "The file has been uploaded successfully",
262
+ "titleImageUpload": "Upload images",
263
+ "partialUpload": "Only {{uploaded}} images on {{total}} will be uploaded. Maximum {{max}} images allowed.",
264
+ "maxImages": "Maximum {{max}} images allowed.",
265
+ "upload": "Upload"
137
266
  },
138
267
  "media": {
139
268
  "title": "Title",
@@ -141,7 +270,7 @@
141
270
  "uploadMimeTypeNotAllowed": "The file type is not allowed",
142
271
  "uploadSizeLimitMessage": "The uploaded size is too big (max {{size}}MB)",
143
272
  "uploadWrongResolutionMessage": "The resolution must be {{width}}x{{height}} pixel",
144
- "memoriNameAlreadyUsed": "You already have a Twin with this name",
273
+ "memoriNameAlreadyUsed": "You already have an agent with this name",
145
274
  "uploadHelperImages": "Upload a file with extension png, jpg, jpeg or gif, and having at maximum a size of {{size}}MB",
146
275
  "uploadHelper": "Upload a file having at maximum a size of {{size}}MB",
147
276
  "uploadError": "Upload failed",
@@ -161,7 +290,7 @@
161
290
  "memoriReachedLevel": "became more evolved and reached level",
162
291
  "levelGoToStatistics": "{{memori}} is at level {{level}} with {{points}} points. Click to go to statistics.",
163
292
  "congratulationsNewLevel": "Congratulations, you have reached a new level!",
164
- "congratulationsNewLevelDescription": "Your Memori became more evolved with {{points}} points, look at the",
293
+ "congratulationsNewLevelDescription": "Your agent became more evolved with {{points}} points, look at the",
165
294
  "statistics": "statistics"
166
295
  },
167
296
  "login": {
@@ -169,6 +298,9 @@
169
298
  "logout": "Logout",
170
299
  "user": "User",
171
300
  "loggedDrawerTitle": "Hi, {{name}}!",
301
+ "userNameRequired": "Username required",
302
+ "userName": "Username",
303
+ "userNamePlaceholder": "Enter username",
172
304
  "loginDrawerTitle": "Login",
173
305
  "signupDrawerTitle": "Sign up",
174
306
  "newUserSignUp": "New user?",
@@ -186,6 +318,20 @@
186
318
  "otpCode": "Verification code",
187
319
  "resendVerificationCode": "Resend code",
188
320
  "resentVerificationCode": "Confirmation code sent! Please check your email.",
321
+ "welcomeTitle": "Welcome back",
322
+ "welcomeDescription": "Enter your 4-digit verification code to continue to your account",
323
+ "otpTitle": "Enter verification code",
324
+ "otpDescription": "Enter the 4-digit code you generated in your account",
325
+ "otpStep1": "Click the button below to open your account",
326
+ "otpStep2": "Generate a 4-digit verification code (valid for 60 seconds)",
327
+ "otpStep3": "Return here and enter the code",
328
+ "startOtpLogin": "Start verification",
329
+ "generateOtp": "Generate code",
330
+ "otpTimer": "Code expires in {{seconds}} seconds",
331
+ "otpInvalidFormat": "Please enter a valid 4-digit code",
332
+ "otpInvalid": "Invalid verification code",
333
+ "otpError": "Error validating code. Please try again.",
334
+ "otpSuccess": "Login successful!",
189
335
  "password": "Password",
190
336
  "newPassword": "New password",
191
337
  "confirmPassword": "Confirm Password",
@@ -206,7 +352,7 @@
206
352
  "missingData": "Missing informations",
207
353
  "missingDataHelper": "We know that this is a bit annoying, but we need some more informations to complete your registration.",
208
354
  "goToAccountToChangeYourPreferences": "You can change your choice at any time from your Account page.",
209
- "deepThoughtExplaination": "Deep Thought is an advanced feature of the AI that will allow you to fully exploit your conversations by keeping track of them. The AI with Deep Thought can give you information tailored to you and the things you will share together. Allow the twin's author to contact you for commercial offers regarding products you have shown interest in.",
355
+ "deepThoughtExplaination": "Deep Thought is an advanced feature of the AI that will allow you to fully exploit your conversations by keeping track of them. The AI with Deep Thought can give you information tailored to you and the things you will share together. Allow the agent's author to contact you for commercial offers regarding products you have shown interest in.",
210
356
  "tnCAndPPAcceptedHelper": "Since your last login, T&C and Privacy Policy have changed. Please accept them, otherwise you won't be able to make changes to your Twins. You can always delete your account in your user profile page.",
211
357
  "privacyLabel": "I have read and accepted the",
212
358
  "privacyAndCookiePolicy": "Privacy e Cookie Policy",
@@ -216,6 +362,17 @@
216
362
  "editAccount": "Edit account",
217
363
  "save": "Save"
218
364
  },
365
+ "chatLogs": {
366
+ "anyMessage": "Any message",
367
+ "atLeast": "At least {{count}} messages",
368
+ "atLeast2": "At least 2 messages",
369
+ "atLeast3": "At least 3 messages",
370
+ "atLeast5": "At least 5 messages",
371
+ "atLeast10": "At least 10 messages",
372
+ "atLeast15": "At least 15 messages",
373
+ "atLeast20": "At least 20 messages",
374
+ "customMinimumMessages": "Customize the number of messages"
375
+ },
219
376
  "success": "Success",
220
377
  "Error": "Error",
221
378
  "internal server error": "Oupsie, sorry... Something went wrong on the server",
@@ -238,6 +395,7 @@
238
395
  "TENANT_ALREADY_EXISTS": "Tenant already exists",
239
396
  "TENANT_MISSING_DESCRIPTION": "Tenant: description missing",
240
397
  "TENANT_CANT_SET_COMPLETION_PROVIDER": "Tenant: can't set completion provider",
398
+ "TENANT_INVALID_TYPE": "Tenant: invalid type",
241
399
  "USER_NOT_CONFIRMED": "User still not confirmed",
242
400
  "USER_NOT_FOUND": "User not found",
243
401
  "USER_OR_PASSWORD_INVALID": "Invalid user or password",
@@ -258,8 +416,8 @@
258
416
  "USER_HAS_ONE_OR_MORE_MEMORI": "The user has one or more memories",
259
417
  "USER_MISSING_NEW_PASSWORD": "User: new password missing",
260
418
  "USER_NOTHING_TO_DO": "Nothing to do",
261
- "USER_CANT_CREATE_MEMORI": "User not allowed to create Memori",
262
- "USER_MAX_MEMORI_REACHED": "Maximum number of Memori reached",
419
+ "USER_CANT_CREATE_MEMORI": "User not allowed to create agents",
420
+ "USER_MAX_MEMORI_REACHED": "Maximum number of agents reached",
263
421
  "USER_TOO_MANY_ATTEMPTS": "Too many attempts",
264
422
  "USER_MUST_ACCEPT_TNC_AND_PP": "You must accept the terms and conditions",
265
423
  "USER_BIRTH_DATE_CANT_BE_CHANGED": "Date of birth cannot be changed",
@@ -267,39 +425,48 @@
267
425
  "USER_CANT_ENABLE_DEEP_THOUGHT": "User: not enabled to manage Deep Thought",
268
426
  "USER_CANT_ENABLE_DCM_INTEGRATION": "User: not enabled to manage DCM integration",
269
427
  "USER_CANT_ENABLE_CHAINING_OR_BOARD_OF_EXPERTS": "User: not allowed to manage chaining or expert group",
270
- "USER_CREATION_BILLING_DENIED_PERMISSION": "You don't have enough credits to create a Twin",
271
- "MEMORI_NOT_FOUND": "Memori not found",
272
- "MEMORI_NOT_ACCESSIBLE": "Memori not accessible",
428
+ "USER_CREATION_BILLING_DENIED_PERMISSION": "You don't have enough credits to create an agent",
429
+ "USER_HAS_ONE_OR_MORE_COMPLETION_CONFIGS": "The user has one or more completion configurations",
430
+ "USER_CANT_BE_DELETED": "User can't be deleted",
431
+ "USER_ORDER_BY_INVALID": "Order by invalid",
432
+ "MEMORI_NOT_FOUND": "Agent not found",
433
+ "MEMORI_NOT_ACCESSIBLE": "Agent not accessible",
273
434
  "MEMORI_ONLY_OWNER_CAN_CHANGE_GIVER_TAG_AND_PIN": "Only owner can change tag or pin",
274
435
  "SESSION_NOT_FOUND": "Session not found",
275
436
  "SESSION_IS_NOT_ADMINISTRATIVE": "Non-administrative session",
276
437
  "SESSION_EXPIRED": "Session expired",
277
- "MEMORI_MISSING_CONFIGURATION": "Memori: missing configuration",
278
- "MEMORI_CONFIGURATION_NOT_FOUND": "Memories: configuration not found",
279
- "MEMORI_INVALID_PRIVACY_TYPE": "Memories: invalid privacy type",
280
- "MEMORI_MISSING_PASSWORD": "Memori: missing password",
281
- "MEMORI_INVALID_TOTAL_NUMBER_OF_RECOVERY_TOKENS": "Memories: total number of invalid recovery tokens",
282
- "MEMORI_INVALID_MINIMUM_NUMBER_OF_RECOVERY_TOKENS": "Memories: minimum number of invalid recovery tokens",
283
- "MEMORI_INVALID_VOICE_TYPE": "Memories: invalid voice type",
284
- "MEMORI_MISSING_NAME": "Memories: missing name",
285
- "MEMORI_MISSING_PASSWORD_OR_RECOVERY_TOKENS": "Memories: missing password or recovery token",
286
- "MEMORI_INVALID_ID": "Memories: invalid ID",
287
- "MEMORI_NAME_ALREADY_USED": "Memory name already in use",
288
- "MEMORI_INVALID_PIN": "Memories: Invalid PIN",
289
- "MEMORI_GIVER_TAG_PIN_CHANGE_REQUIRES_SEPARATE_OPERATION": "Memories: TAG and PIN change require separate operations",
290
- "MEMORI_NO_PASSWORD_WHEN_PUBLIC": "Memories: no password required when public",
438
+ "MEMORI_MISSING_CONFIGURATION": "Agent: missing configuration",
439
+ "MEMORI_CONFIGURATION_NOT_FOUND": "Agent: configuration not found",
440
+ "MEMORI_INVALID_PRIVACY_TYPE": "Agent: invalid privacy type",
441
+ "MEMORI_MISSING_PASSWORD": "Agent: missing password",
442
+ "MEMORI_INVALID_TOTAL_NUMBER_OF_RECOVERY_TOKENS": "Agent: total number of invalid recovery tokens",
443
+ "MEMORI_INVALID_MINIMUM_NUMBER_OF_RECOVERY_TOKENS": "Agent: minimum number of invalid recovery tokens",
444
+ "MEMORI_INVALID_VOICE_TYPE": "Agent: invalid voice type",
445
+ "MEMORI_MISSING_NAME": "Agent: missing name",
446
+ "MEMORI_MISSING_PASSWORD_OR_RECOVERY_TOKENS": "Agent: missing password or recovery token",
447
+ "MEMORI_INVALID_ID": "Agent: invalid ID",
448
+ "MEMORI_NAME_ALREADY_USED": "Agent name already in use",
449
+ "MEMORI_INVALID_PIN": "Agent: Invalid PIN",
450
+ "MEMORI_GIVER_TAG_PIN_CHANGE_REQUIRES_SEPARATE_OPERATION": "Agent: TAG and PIN change require separate operations",
451
+ "MEMORI_NO_PASSWORD_WHEN_PUBLIC": "Agent: no password required when public",
291
452
  "MEMORI_DEEP_THOUGHT_REQUIRES_COMPLETIONS": "Deep Thought requires completions to be enabled",
292
453
  "MEMORI_BOARD_OF_EXPERTS_REQUIRES_COMPLETIONS": "The expert group requires completions to be enabled",
454
+ "MEMORI_INVALID_COMPLETION_CONFIG": "Agent: invalid completions configuration",
455
+ "MEMORI_MACRO_FUNCTIONS_REQUIRES_COMPLETIONS": "Macro functions requires completions to be enabled",
456
+ "MEMORI_BLOCKING_DATE_MISSING_OR_WRONG": "Agent: blocking date missing or wrong",
457
+ "MEMORI_LIST_FILTER_NOT_SPECIFIED": "Agent: list filter not specified",
293
458
  "MEMORI_TRANSFER_MISSING_DESTINATION_USER": "Transfer: missing destination user",
294
459
  "MEMORI_TRANSFER_INVALID_DESTINATION_USER_ID": "Transfer: invalid destination user ID",
295
460
  "MEMORI_TRANSFER_DESTINATION_USER_DATA_INCONSISTENT": "Transfer: invalid destination user data",
296
461
  "MEMORI_TRANSFER_NOTHING_TO_DO": "Transfer: nothing to do",
297
- "MEMORI_CONFIGURATION_CANT_BE_CHANGED": "Memories: configuration cannot be changed",
298
- "MEMORI_MISSING_NEW_PASSWORD": "Memories: new password missing",
462
+ "MEMORI_CONFIGURATION_CANT_BE_CHANGED": "Agent: configuration cannot be changed",
463
+ "MEMORI_MISSING_NEW_PASSWORD": "Agent: new password missing",
299
464
  "MEMORI_FEATURE_REQUIRES_SUBSCRIPTION": "Feature requires subscription",
300
465
  "INTEGRATION_NOT_FOUND": "Integration not found",
301
466
  "MEMORI_SESSIONS_INVALID_DATE_FROM_FORMAT": "Invalid date from format",
302
467
  "MEMORI_SESSIONS_INVALID_DATE_TO_FORMAT": "Invalid date to format",
468
+ "MEMORI_SESSION_NOT_FOUND": "Session not found",
469
+ "MEMORI_SESSION_DOESNT_ACCEPT_MEDIA": "Session doesn't accept media",
303
470
  "INTEGRATION_INVALID_TYPE": "Invalid integration type",
304
471
  "INTEGRATION_ALREADY_EXISTS": "Integration already exists",
305
472
  "INTEGRATION_MEMORI_IS_NOT_PUBLIC": "Non-public memories cannot be integrated",
@@ -323,6 +490,7 @@
323
490
  "ASSET_NOT_ACCESSIBLE": "Asset not accessible",
324
491
  "ASSET_MISSING_SESSION_ID": "Asset: missing session ID",
325
492
  "ASSET_INVALID_FILE_NAME": "Asset: invalid file name",
493
+ "ASSET_MALWARE_SCAN_THREATS_FOUND": "Asset: found malware threats",
326
494
  "INVITATION_NOT_FOUND": "Invitation not found",
327
495
  "INVITATION_NOT_ACCESSIBLE": "Invitation not accessible",
328
496
  "INVITATION_ALREADY_ACCEPTED": "Invitation already accepted",
@@ -346,6 +514,11 @@
346
514
  "CONSUMPTIONLOG_INVALID_USER_ID": "Invalid user ID",
347
515
  "CONSUMPTIONLOG_INVALID_MEMORI_ID": "Invalid Memori ID",
348
516
  "NOTIFICATIONPREFS_INVALID_CHATLOG_EXTRACTION_PERIOD": "Notifications: Invalid chat log extraction period",
517
+ "BROADCAST_NOT_ALLOWED": "Broadcast not allowed",
518
+ "INVALID_NOTIFICATION_TYPE": "Invalid notification type",
519
+ "NOTIFICATION_NOT_FOUND": "Notification not found",
520
+ "INVALID_NOTIFICATION_FILTER": "Invalid notification filter",
521
+ "INVALID_NOTIFICATION_PERIOD": "Invalid notification period",
349
522
  "PROCESS_INVALID_TYPE": "Invalid process type",
350
523
  "PROCESS_ALREADY_RUNNING": "Process already running",
351
524
  "PROCESS_NOT_FOUND": "Process not found",
@@ -357,18 +530,26 @@
357
530
  "IMPORTCSV_MISSING_TITLE_VARIANT_SEPARATOR": "CSV import: missing title variant separator",
358
531
  "IMPORTCSV_INVALID_RECEIVER_ID": "CSV import: invalid receiver ID",
359
532
  "IMPORTCSV_INVALID_MEDIA_LINK": "CSV import: invalid media link",
533
+ "IMPORTCSV_INVALID_LINK_TITLE_HANDLING": "CSV import: invalid link title",
360
534
  "IMPORTCSV_UNDETECTABLE_CHAR_ENCODING": "CSV import: undetectable character encoding",
361
535
  "IMPORTCSV_CANT_IMPORT_TO_SECRET_MEMORI": "CSV Import: Cannot import to Secret Memories",
362
536
  "IMPORTTXT_MISSING_ROWS": "Importing TXT: missing rows",
363
537
  "IMPORTTXT_INVALID_GRANULARITY": "Import TXT: invalid granularity",
364
538
  "IMPORTTXT_INVALID_RECEIVER_ID": "Import TXT: invalid receiver ID",
365
539
  "IMPORTTXT_INVALID_MEDIA_LINK": "Import TXT: invalid media link",
540
+ "IMPORTTXT_INVALID_LINK_TITLE_HANDLING": "Import TXT: invalid link title",
366
541
  "IMPORTTXT_UNDETECTABLE_CHAR_ENCODING": "TXT import: undetectable character encoding",
367
542
  "IMPORTTXT_CANT_IMPORT_TO_SECRET_MEMORI": "TXT Import: Cannot import to Secret Memories",
368
543
  "IMPORTTXT_IMPORT_LIMIT_EXCEEDED": "Import TXT: import limit exceeded",
369
544
  "IMPORTTXT_IMPORT_ON_GPT4_REQUIRES_API_KEY": "Import TXT: import on GPT-4 requires API key",
370
545
  "IMPORTTXT_IMPORT_REQUIRES_PAYING": "Import TXT: Import requires a paying plan",
371
546
  "IMPORTTXT_BILLING_DENIED_PERMISSION": "Import TXT: you don't have enough credits for the operation",
547
+ "IMPORT_MISSING_ROWS": "Import: missing rows",
548
+ "IMPORT_CANT_IMPORT_TO_SECRET_MEMORI": "Import: can't import to Secret Memories",
549
+ "IMPORTMEMORI_INVALID_MEMORI_SPECS": "Import MEMORI: invalid memory specs",
550
+ "IMPORT_MISSING_JSONL": "Import: missing JSONL",
551
+ "IMPORTMEMORI_INVALID_SPECS": "Import MEMORI: invalid specs",
552
+ "EXPORT_MISSING_PASSWORD": "Export: missing password",
372
553
  "EXPORTCSV_MISSING_CSV_SPECS": "CSV export: missing CSV specifications",
373
554
  "EXPORTCSV_MISSING_SEPARATOR": "CSV export: missing separator",
374
555
  "EXPORTCSV_INVALID_SEPARATOR": "CSV export: invalid separator",
@@ -398,7 +579,36 @@
398
579
  "BADGE_ASSIGNMENT_UNKNOWN_RECIPIENT_HASH_TYPE": "Badge assignment: recipient hash type unknown",
399
580
  "BADGE_ASSIGNMENT_WRONG_RECIPIENT_IDENTITY": "Badge assignment: incorrect recipient identity",
400
581
  "BADGE_NOT_FOUND": "Badge not found",
401
- "OUTCOME_NO_DCM_CONFIGURED": "Result: no DCM configured",
402
- "OUTCOME_USER_BADGES_DISABLED": "Result: user badges disabled"
582
+ "OUTCOME_NO_DCM_CONFIGURED": "Outcome: no DCM configured",
583
+ "OUTCOME_USER_BADGES_DISABLED": "Outcome: user badges disabled",
584
+ "COMPLETION_CONFIG_MISSING_NAME": "Completions configuration: missing name",
585
+ "COMPLETION_CONFIG_MISSING_PROVIDER": "Completions configuration: missing provider",
586
+ "COMPLETION_CONFIG_MISSING_ENDPOINT": "Completions configuration: missing endpoint",
587
+ "COMPLETION_CONFIG_MISSING_API_KEY": "Completions configuration: missing API key",
588
+ "COMPLETION_CONFIG_MISSING_MODEL": "Completions configuration: missing model",
589
+ "COMPLETION_CONFIG_NO_PURPOSE_SPECIFIED": "Completions configuration: at least one completions type must be specified",
590
+ "COMPLETION_CONFIG_INVALID_NAME": "Completions configuration: invalid name",
591
+ "COMPLETION_CONFIG_INVALID_PURPOSE": "Completions configuration: invalid completions type",
592
+ "COMPLETION_CONFIG_INVALID_ENDPOINT": "Completions configuration: invalid endpoint",
593
+ "COMPLETION_CONFIG_INCONSISTENT_ENDPOINT": "Completions configuration: inconsistent endpoint",
594
+ "COMPLETION_CONFIG_INVALID_PROVIDER": "Completions configuration: invalid provider",
595
+ "COMPLETION_CONFIG_NOT_FOUND": "Completions configuration: not found",
596
+ "COMPLETION_CONFIG_NOT_ACCESSIBLE": "Completions configuration: not accessible",
597
+ "COMPLETION_CONFIG_NAME_RESERVED": "Completions configuration: name reserved",
598
+ "COMPLETION_CONFIG_NAME_ALREADY_EXISTS": "Completions configuration: name already exists",
599
+ "COMPLETION_CONFIG_VISIBILITY_CHANGE_NOT_ALLOWED": "Completions configuration: visibility change not allowed",
600
+ "COMPLETION_CONFIG_MISSING_MANDATORY_PREFIX": "Completions configuration: missing mandatory prefix",
601
+ "COMPLETION_CONFIG_VISIBILITY_NOT_PERMITTED": "Completions configuration: visibility not permitted",
602
+ "COMPLETION_CONFIG_USE_AS_DEFAULT_NOT_PERMITTED": "Completions configuration: use as default not permitted",
603
+ "COMPLETION_CONFIG_USE_AS_DEFAULT_REQUIRES_TENANT_VISIBILITY": "Completions configuration: use as default requires tenant visibility",
604
+ "COMPLETION_CONFIG_CHARGEABLE_NOT_PERMITTED": "Completions configuration: chargeable not permitted",
605
+ "COMPLETION_CONFIG_INVALID_APPLY_TO": "Completions configuration: apply to invalid",
606
+ "COMPLETION_CONFIG_APPLY_TO_TENANT_NOT_ALLOWED": "Completions configuration: apply to tenant not allowed",
607
+ "TRUSTED_APPLICATION_NOT_FOUND": "Trusted application not found",
608
+ "TRUSTED_APPLICATION_NOT_ACCESSIBLE": "Trusted application not accessible",
609
+ "TRUSTED_APPLICATION_NAME_REQUIRED": "Trusted application: name required",
610
+ "TRUSTED_APPLICATION_TOKEN_REQUIRED": "Trusted application: token required",
611
+ "TRUSTED_APPLICATION_NAME_ALREADY_EXISTS": "Trusted application: name already exists",
612
+ "TRUSTED_APPLICATION_INVALID_TOKEN": "Trusted application: invalid token"
403
613
  }
404
614
  }