@meistrari/chat-nuxt 1.10.0 → 1.12.0

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 (82) hide show
  1. package/dist/module.json +1 -1
  2. package/dist/module.mjs +15 -0
  3. package/dist/runtime/components/chat/conversation-item.d.vue.ts +6 -1
  4. package/dist/runtime/components/chat/conversation-item.vue +30 -141
  5. package/dist/runtime/components/chat/conversation-item.vue.d.ts +6 -1
  6. package/dist/runtime/components/chat/conversation-list.d.vue.ts +1 -0
  7. package/dist/runtime/components/chat/conversation-list.vue +300 -72
  8. package/dist/runtime/components/chat/conversation-list.vue.d.ts +1 -0
  9. package/dist/runtime/components/chat/conversation-new-group-button.d.vue.ts +7 -0
  10. package/dist/runtime/components/chat/conversation-new-group-button.vue +90 -0
  11. package/dist/runtime/components/chat/conversation-new-group-button.vue.d.ts +7 -0
  12. package/dist/runtime/components/chat/conversation-new-group-popover-content.d.vue.ts +23 -0
  13. package/dist/runtime/components/chat/conversation-new-group-popover-content.vue +75 -0
  14. package/dist/runtime/components/chat/conversation-new-group-popover-content.vue.d.ts +23 -0
  15. package/dist/runtime/components/chat/mobile/shell/drawer.d.vue.ts +2 -2
  16. package/dist/runtime/components/chat/mobile/shell/drawer.vue +370 -41
  17. package/dist/runtime/components/chat/mobile/shell/drawer.vue.d.ts +2 -2
  18. package/dist/runtime/components/chat/mobile/shell/header.d.vue.ts +4 -4
  19. package/dist/runtime/components/chat/mobile/shell/header.vue.d.ts +4 -4
  20. package/dist/runtime/components/chat/mobile/shell/shell.d.vue.ts +20 -20
  21. package/dist/runtime/components/chat/mobile/shell/shell.vue +1 -1
  22. package/dist/runtime/components/chat/mobile/shell/shell.vue.d.ts +20 -20
  23. package/dist/runtime/components/chat/topbar.d.vue.ts +8 -8
  24. package/dist/runtime/components/chat/topbar.vue.d.ts +8 -8
  25. package/dist/runtime/composables/useConversationGroups.d.ts +12 -0
  26. package/dist/runtime/composables/useConversationGroups.js +160 -0
  27. package/dist/runtime/composables/useConversationItem.d.ts +48 -0
  28. package/dist/runtime/composables/useConversationItem.js +176 -0
  29. package/dist/runtime/composables/useConversationList.d.ts +128 -0
  30. package/dist/runtime/composables/useConversationList.js +553 -0
  31. package/dist/runtime/composables/useConversations.d.ts +2 -0
  32. package/dist/runtime/composables/useConversations.js +246 -107
  33. package/dist/runtime/composables/usePendingConversationGroup.d.ts +5 -0
  34. package/dist/runtime/composables/usePendingConversationGroup.js +33 -0
  35. package/dist/runtime/embed/components/ChatConfigurationModal.d.vue.ts +1 -1
  36. package/dist/runtime/embed/components/ChatConfigurationModal.vue.d.ts +1 -1
  37. package/dist/runtime/embed/components/ChatEmbedInner.vue +24 -5
  38. package/dist/runtime/embed/components/configuration/ChatConfigurationContextFilesTab.d.vue.ts +4 -4
  39. package/dist/runtime/embed/components/configuration/ChatConfigurationContextFilesTab.vue.d.ts +4 -4
  40. package/dist/runtime/embed/components/configuration/ChatConfigurationMobileShell.d.vue.ts +2 -2
  41. package/dist/runtime/embed/components/configuration/ChatConfigurationMobileShell.vue.d.ts +2 -2
  42. package/dist/runtime/server/api/chat/conversations/[id]/group.patch.d.ts +1 -0
  43. package/dist/runtime/server/api/chat/conversations/[id]/group.patch.js +1 -0
  44. package/dist/runtime/server/api/chat/conversations/groups/[groupId]/index.delete.d.ts +1 -0
  45. package/dist/runtime/server/api/chat/conversations/groups/[groupId]/index.delete.js +1 -0
  46. package/dist/runtime/server/api/chat/conversations/groups/[groupId]/index.patch.d.ts +1 -0
  47. package/dist/runtime/server/api/chat/conversations/groups/[groupId]/index.patch.js +1 -0
  48. package/dist/runtime/server/api/chat/conversations/groups/index.get.d.ts +1 -0
  49. package/dist/runtime/server/api/chat/conversations/groups/index.get.js +1 -0
  50. package/dist/runtime/server/api/chat/conversations/groups/index.post.d.ts +1 -0
  51. package/dist/runtime/server/api/chat/conversations/groups/index.post.js +1 -0
  52. package/dist/runtime/server/api/chat/conversations/metadata.get.d.ts +1 -0
  53. package/dist/runtime/server/api/chat/conversations/metadata.get.js +1 -0
  54. package/dist/runtime/server/api/conversations/[id]/duplicate.post.js +1 -0
  55. package/dist/runtime/server/api/conversations/[id]/group.patch.d.ts +2 -0
  56. package/dist/runtime/server/api/conversations/[id]/group.patch.js +46 -0
  57. package/dist/runtime/server/api/conversations/groups/[groupId]/index.delete.d.ts +4 -0
  58. package/dist/runtime/server/api/conversations/groups/[groupId]/index.delete.js +25 -0
  59. package/dist/runtime/server/api/conversations/groups/[groupId]/index.patch.d.ts +2 -0
  60. package/dist/runtime/server/api/conversations/groups/[groupId]/index.patch.js +30 -0
  61. package/dist/runtime/server/api/conversations/groups/index.get.d.ts +2 -0
  62. package/dist/runtime/server/api/conversations/groups/index.get.js +13 -0
  63. package/dist/runtime/server/api/conversations/groups/index.post.d.ts +2 -0
  64. package/dist/runtime/server/api/conversations/groups/index.post.js +26 -0
  65. package/dist/runtime/server/api/conversations/index.post.js +1 -0
  66. package/dist/runtime/server/api/conversations/metadata.get.d.ts +2 -0
  67. package/dist/runtime/server/api/conversations/metadata.get.js +20 -0
  68. package/dist/runtime/server/db/schema/conversation-groups.d.ts +143 -0
  69. package/dist/runtime/server/db/schema/conversation-groups.js +20 -0
  70. package/dist/runtime/server/db/schema/conversations.d.ts +17 -0
  71. package/dist/runtime/server/db/schema/conversations.js +3 -0
  72. package/dist/runtime/server/db/schema/index.d.ts +1 -0
  73. package/dist/runtime/server/db/schema/index.js +1 -0
  74. package/dist/runtime/server/utils/conversation-group.d.ts +4 -0
  75. package/dist/runtime/server/utils/conversation-group.js +48 -0
  76. package/dist/runtime/types/chat.d.ts +6 -1
  77. package/dist/runtime/utils/conversation-groups.d.ts +18 -0
  78. package/dist/runtime/utils/conversation-groups.js +30 -0
  79. package/drizzle/0016_dry_aaron_stack.sql +16 -0
  80. package/drizzle/meta/0016_snapshot.json +887 -0
  81. package/drizzle/meta/_journal.json +7 -0
  82. package/package.json +1 -1
@@ -113,6 +113,13 @@
113
113
  "when": 1779212743677,
114
114
  "tag": "0015_illegal_blindfold",
115
115
  "breakpoints": true
116
+ },
117
+ {
118
+ "idx": 16,
119
+ "version": "7",
120
+ "when": 1779929076514,
121
+ "tag": "0016_dry_aaron_stack",
122
+ "breakpoints": true
116
123
  }
117
124
  ]
118
125
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@meistrari/chat-nuxt",
3
- "version": "1.10.0",
3
+ "version": "1.12.0",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  ".": {