polfan-server-js-client 0.2.3 → 0.2.6

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 (86) hide show
  1. package/.idea/copilot.data.migration.agent.xml +6 -0
  2. package/.idea/copilot.data.migration.ask.xml +6 -0
  3. package/.idea/copilot.data.migration.ask2agent.xml +6 -0
  4. package/.idea/copilot.data.migration.edit.xml +6 -0
  5. package/.idea/workspace.xml +372 -153
  6. package/babel.config.js +4 -5
  7. package/build/index.cjs.js +4538 -1816
  8. package/build/index.cjs.js.map +1 -1
  9. package/build/index.umd.js +1 -1
  10. package/build/index.umd.js.map +1 -1
  11. package/build/types/AbstractChatClient.d.ts +12 -2
  12. package/build/types/FilesClient.d.ts +7 -6
  13. package/build/types/IndexedObjectCollection.d.ts +4 -3
  14. package/build/types/Permissions.d.ts +4 -0
  15. package/build/types/WebSocketChatClient.d.ts +2 -0
  16. package/build/types/state-tracker/ChatStateTracker.d.ts +5 -0
  17. package/build/types/state-tracker/RelationshipsManager.d.ts +15 -0
  18. package/build/types/state-tracker/RoomMessagesHistory.d.ts +2 -0
  19. package/build/types/state-tracker/SpacesManager.d.ts +1 -0
  20. package/build/types/state-tracker/TopicHistoryWindow.d.ts +23 -5
  21. package/build/types/state-tracker/UsersManager.d.ts +3 -1
  22. package/build/types/types/src/index.d.ts +12 -3
  23. package/build/types/types/src/schemes/Emoticon.d.ts +1 -0
  24. package/build/types/types/src/schemes/Message.d.ts +1 -1
  25. package/build/types/types/src/schemes/Room.d.ts +2 -0
  26. package/build/types/types/src/schemes/RoomHistory.d.ts +5 -0
  27. package/build/types/types/src/schemes/RoomSummary.d.ts +1 -0
  28. package/build/types/types/src/schemes/SpaceSummary.d.ts +1 -0
  29. package/build/types/types/src/schemes/User.d.ts +2 -2
  30. package/build/types/types/src/schemes/UserRelationship.d.ts +6 -0
  31. package/build/types/types/src/schemes/commands/CreateMessage.d.ts +2 -0
  32. package/build/types/types/src/schemes/commands/CreateRelationship.d.ts +5 -0
  33. package/build/types/types/src/schemes/commands/CreateTopic.d.ts +5 -2
  34. package/build/types/types/src/schemes/commands/DeleteRelationship.d.ts +5 -0
  35. package/build/types/types/src/schemes/commands/GetRelationships.d.ts +2 -0
  36. package/build/types/types/src/schemes/commands/UpdateRoom.d.ts +2 -0
  37. package/build/types/types/src/schemes/commands/UpdateRoomMember.d.ts +7 -0
  38. package/build/types/types/src/schemes/commands/UpdateSpaceMember.d.ts +5 -0
  39. package/build/types/types/src/schemes/events/NewRelationship.d.ts +4 -0
  40. package/build/types/types/src/schemes/events/RelationshipDeleted.d.ts +4 -0
  41. package/build/types/types/src/schemes/events/Relationships.d.ts +4 -0
  42. package/build/types/types/src/schemes/events/RoomSummaryUpdated.d.ts +7 -0
  43. package/build/types/types/src/schemes/events/Session.d.ts +1 -0
  44. package/package.json +15 -28
  45. package/src/AbstractChatClient.ts +28 -4
  46. package/src/FilesClient.ts +26 -13
  47. package/src/IndexedObjectCollection.ts +26 -10
  48. package/src/Permissions.ts +1 -0
  49. package/src/WebSocketChatClient.ts +19 -11
  50. package/src/state-tracker/ChatStateTracker.ts +22 -6
  51. package/src/state-tracker/EmoticonsManager.ts +6 -4
  52. package/src/state-tracker/MessagesManager.ts +3 -3
  53. package/src/state-tracker/RelationshipsManager.ts +68 -0
  54. package/src/state-tracker/RoomMessagesHistory.ts +20 -3
  55. package/src/state-tracker/RoomsManager.ts +30 -7
  56. package/src/state-tracker/SpacesManager.ts +28 -1
  57. package/src/state-tracker/TopicHistoryWindow.ts +94 -23
  58. package/src/state-tracker/UsersManager.ts +16 -6
  59. package/src/types/src/index.ts +26 -5
  60. package/src/types/src/schemes/Emoticon.ts +1 -0
  61. package/src/types/src/schemes/Message.ts +1 -1
  62. package/src/types/src/schemes/Room.ts +2 -0
  63. package/src/types/src/schemes/RoomHistory.ts +6 -0
  64. package/src/types/src/schemes/RoomSummary.ts +1 -0
  65. package/src/types/src/schemes/SpaceSummary.ts +1 -0
  66. package/src/types/src/schemes/User.ts +2 -2
  67. package/src/types/src/schemes/UserRelationship.ts +8 -0
  68. package/src/types/src/schemes/commands/CreateMessage.ts +2 -0
  69. package/src/types/src/schemes/commands/CreateRelationship.ts +6 -0
  70. package/src/types/src/schemes/commands/CreateTopic.ts +6 -2
  71. package/src/types/src/schemes/commands/DeleteRelationship.ts +6 -0
  72. package/src/types/src/schemes/commands/GetRelationships.ts +3 -0
  73. package/src/types/src/schemes/commands/UpdateRoom.ts +2 -0
  74. package/src/types/src/schemes/commands/UpdateRoomMember.ts +7 -0
  75. package/src/types/src/schemes/commands/UpdateSpaceMember.ts +5 -0
  76. package/src/types/src/schemes/events/NewRelationship.ts +5 -0
  77. package/src/types/src/schemes/events/RelationshipDeleted.ts +5 -0
  78. package/src/types/src/schemes/events/Relationships.ts +5 -0
  79. package/src/types/src/schemes/events/RoomSummaryUpdated.ts +8 -0
  80. package/src/types/src/schemes/events/Session.ts +1 -0
  81. package/tests/history-window.test.ts +6 -1
  82. package/webpack.config.browser.js +2 -24
  83. package/webpack.config.node.js +2 -14
  84. package/.eslintignore +0 -0
  85. package/.eslintrc.json +0 -0
  86. package/src/types/src/schemes/commands/SetCustomNick.ts +0 -5

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.