@epam/ai-dial-chat-hooks 1.1.0-dev.252 → 1.1.0-dev.253

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 (50) hide show
  1. package/attachment/useAttachmentValidation/useAttachmentValidation.d.ts +44 -0
  2. package/attachment/useAttachmentValidation/useAttachmentValidation.d.ts.map +1 -0
  3. package/conversation/conversation-transfer/async.d.ts +10 -0
  4. package/conversation/conversation-transfer/async.d.ts.map +1 -0
  5. package/conversation/conversation-transfer/attachment-refs.d.ts +12 -0
  6. package/conversation/conversation-transfer/attachment-refs.d.ts.map +1 -0
  7. package/conversation/conversation-transfer/build-upload-path.d.ts +40 -0
  8. package/conversation/conversation-transfer/build-upload-path.d.ts.map +1 -0
  9. package/conversation/conversation-transfer/date.d.ts +5 -0
  10. package/conversation/conversation-transfer/date.d.ts.map +1 -0
  11. package/conversation/conversation-transfer/dial-file-resolve.d.ts +10 -0
  12. package/conversation/conversation-transfer/dial-file-resolve.d.ts.map +1 -0
  13. package/conversation/conversation-transfer/export-conversation.d.ts +8 -0
  14. package/conversation/conversation-transfer/export-conversation.d.ts.map +1 -0
  15. package/conversation/conversation-transfer/import-conversation.d.ts +82 -0
  16. package/conversation/conversation-transfer/import-conversation.d.ts.map +1 -0
  17. package/conversation/conversation-transfer/queue.d.ts +31 -0
  18. package/conversation/conversation-transfer/queue.d.ts.map +1 -0
  19. package/conversation/conversation-transfer/types.d.ts +73 -0
  20. package/conversation/conversation-transfer/types.d.ts.map +1 -0
  21. package/conversation/conversation-transfer/zip-export.d.ts +31 -0
  22. package/conversation/conversation-transfer/zip-export.d.ts.map +1 -0
  23. package/conversation/conversation-transfer/zip-import.d.ts +17 -0
  24. package/conversation/conversation-transfer/zip-import.d.ts.map +1 -0
  25. package/conversation/useConversationExport/useConversationExport.d.ts +50 -0
  26. package/conversation/useConversationExport/useConversationExport.d.ts.map +1 -0
  27. package/conversation/useConversationHandlers/attachment-to-dto.d.ts +7 -0
  28. package/conversation/useConversationHandlers/attachment-to-dto.d.ts.map +1 -0
  29. package/conversation/useConversationHandlers/message-factory.d.ts +9 -0
  30. package/conversation/useConversationHandlers/message-factory.d.ts.map +1 -0
  31. package/conversation/useConversationHandlers/message-utils.d.ts +14 -0
  32. package/conversation/useConversationHandlers/message-utils.d.ts.map +1 -0
  33. package/conversation/useConversationHandlers/starter-option.d.ts +14 -0
  34. package/conversation/useConversationHandlers/starter-option.d.ts.map +1 -0
  35. package/conversation/useConversationHandlers/useConversationHandlers.d.ts +66 -0
  36. package/conversation/useConversationHandlers/useConversationHandlers.d.ts.map +1 -0
  37. package/conversation/useConversationImport/useConversationImport.d.ts +50 -0
  38. package/conversation/useConversationImport/useConversationImport.d.ts.map +1 -0
  39. package/conversation/useConversationStream/apply-chunk.d.ts +20 -0
  40. package/conversation/useConversationStream/apply-chunk.d.ts.map +1 -0
  41. package/conversation/useConversationStream/conversation-path.d.ts +9 -0
  42. package/conversation/useConversationStream/conversation-path.d.ts.map +1 -0
  43. package/conversation/useConversationStream/generation-resume.d.ts +10 -0
  44. package/conversation/useConversationStream/generation-resume.d.ts.map +1 -0
  45. package/conversation/useConversationStream/useConversationStream.d.ts +78 -0
  46. package/conversation/useConversationStream/useConversationStream.d.ts.map +1 -0
  47. package/index.d.ts +15 -0
  48. package/index.d.ts.map +1 -1
  49. package/index.js +1272 -92
  50. package/package.json +10 -7
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@epam/ai-dial-chat-hooks",
3
3
  "description": "Framework-level React hooks extracted from AI DIAL Chat for building custom chat interfaces",
4
- "version": "1.1.0-dev.252",
4
+ "version": "1.1.0-dev.253",
5
5
  "license": "Apache-2.0",
6
6
  "type": "module",
7
7
  "main": "./index.js",
@@ -17,12 +17,15 @@
17
17
  },
18
18
  "peerDependencies": {
19
19
  "react": "^19.2.6",
20
- "@epam/ai-dial-attachment-canvas": "1.1.0-dev.252",
21
- "@epam/ai-dial-chat-api-client": "1.1.0-dev.252",
22
- "@epam/ai-dial-chat-shared": "1.1.0-dev.252",
23
- "@epam/ai-dial-quotations": "1.1.0-dev.252",
24
- "@epam/ai-dial-share": "1.1.0-dev.252",
25
- "@epam/ai-dial-source-panel": "1.1.0-dev.252"
20
+ "@epam/ai-dial-attachment-canvas": "1.1.0-dev.253",
21
+ "@epam/ai-dial-attachment-input": "1.1.0-dev.253",
22
+ "@epam/ai-dial-chat-api-client": "1.1.0-dev.253",
23
+ "@epam/ai-dial-chat-shared": "1.1.0-dev.253",
24
+ "@epam/ai-dial-quotations": "1.1.0-dev.253",
25
+ "@epam/ai-dial-react-file-manager": "*",
26
+ "@epam/ai-dial-share": "1.1.0-dev.253",
27
+ "@epam/ai-dial-source-panel": "1.1.0-dev.253",
28
+ "fflate": "^0.8.3"
26
29
  },
27
30
  "repository": {
28
31
  "type": "git",