@webitel/chat-web-sdk 0.0.2 → 0.0.4-1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -1
- package/dist/gen/ws/AckPayload.d.ts +18 -0
- package/dist/gen/ws/AckPayload.d.ts.map +1 -0
- package/dist/gen/ws/ConnectedPayload.d.ts +22 -0
- package/dist/gen/ws/ConnectedPayload.d.ts.map +1 -0
- package/dist/gen/ws/DisconnectedPayload.d.ts +22 -0
- package/dist/gen/ws/DisconnectedPayload.d.ts.map +1 -0
- package/dist/gen/ws/ErrorPayload.d.ts +22 -0
- package/dist/gen/ws/ErrorPayload.d.ts.map +1 -0
- package/dist/gen/ws/EventPayload.d.ts +45 -0
- package/dist/gen/ws/EventPayload.d.ts.map +1 -0
- package/dist/gen/ws/EventPriority.d.ts +8 -0
- package/dist/gen/ws/EventPriority.d.ts.map +1 -0
- package/dist/gen/ws/PingPayload.d.ts +14 -0
- package/dist/gen/ws/PingPayload.d.ts.map +1 -0
- package/dist/gen/ws/ServerEventPayload.d.ts +28 -0
- package/dist/gen/ws/ServerEventPayload.d.ts.map +1 -0
- package/dist/gen/ws/WsMessage.d.ts +51 -0
- package/dist/gen/ws/WsMessage.d.ts.map +1 -0
- package/dist/gen/ws/WsPeer.d.ts +30 -0
- package/dist/gen/ws/WsPeer.d.ts.map +1 -0
- package/dist/gen/ws/WsThread.d.ts +35 -0
- package/dist/gen/ws/WsThread.d.ts.map +1 -0
- package/dist/index.d.ts +16 -112
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +5840 -7329
- package/dist/index.js.map +1 -1
- package/dist/modules/account/accountSevice.d.ts +5 -0
- package/dist/modules/account/accountSevice.d.ts.map +1 -0
- package/dist/modules/account/api/Account.api.d.ts +10 -0
- package/dist/modules/account/api/Account.api.d.ts.map +1 -0
- package/dist/modules/account/index.d.ts +3 -0
- package/dist/modules/account/index.d.ts.map +1 -0
- package/dist/modules/account/types/Account.types.d.ts +3 -0
- package/dist/modules/account/types/Account.types.d.ts.map +1 -0
- package/dist/modules/account/utils/fetchAccount.d.ts +7 -0
- package/dist/modules/account/utils/fetchAccount.d.ts.map +1 -0
- package/dist/modules/configs/index.d.ts +4 -0
- package/dist/modules/configs/index.d.ts.map +1 -0
- package/dist/modules/configs/serviceConfig/ServiceConfig.class.d.ts +14 -0
- package/dist/modules/configs/serviceConfig/ServiceConfig.class.d.ts.map +1 -0
- package/dist/modules/configs/socketConfig/SocketConfig.class.d.ts +11 -0
- package/dist/modules/configs/socketConfig/SocketConfig.class.d.ts.map +1 -0
- package/dist/modules/configs/types/ServiceConfigurable.types.d.ts +5 -0
- package/dist/modules/configs/types/ServiceConfigurable.types.d.ts.map +1 -0
- package/dist/modules/contacts/api/Contacts.api.d.ts +6 -0
- package/dist/modules/contacts/api/Contacts.api.d.ts.map +1 -0
- package/dist/modules/contacts/classes/Contact.class.d.ts +6 -0
- package/dist/modules/contacts/classes/Contact.class.d.ts.map +1 -0
- package/dist/modules/contacts/contactsSevice.d.ts +6 -0
- package/dist/modules/contacts/contactsSevice.d.ts.map +1 -0
- package/dist/modules/contacts/index.d.ts +4 -0
- package/dist/modules/contacts/index.d.ts.map +1 -0
- package/dist/modules/contacts/types/Contact.types.d.ts +11 -0
- package/dist/modules/contacts/types/Contact.types.d.ts.map +1 -0
- package/dist/modules/contacts/utils/fetchContacts.d.ts +9 -0
- package/dist/modules/contacts/utils/fetchContacts.d.ts.map +1 -0
- package/dist/modules/messages/api/Messages.api.d.ts +14 -0
- package/dist/modules/messages/api/Messages.api.d.ts.map +1 -0
- package/dist/modules/messages/classes/Message.class.d.ts +6 -0
- package/dist/modules/messages/classes/Message.class.d.ts.map +1 -0
- package/dist/modules/messages/index.d.ts +4 -0
- package/dist/modules/messages/index.d.ts.map +1 -0
- package/dist/modules/messages/messagesSevice.d.ts +11 -0
- package/dist/modules/messages/messagesSevice.d.ts.map +1 -0
- package/dist/modules/messages/types/Message.types.d.ts +22 -0
- package/dist/modules/messages/types/Message.types.d.ts.map +1 -0
- package/dist/modules/messages/utils/fetchMessageHistory.d.ts +9 -0
- package/dist/modules/messages/utils/fetchMessageHistory.d.ts.map +1 -0
- package/dist/modules/messages/utils/sendFileMessage.d.ts +5 -0
- package/dist/modules/messages/utils/sendFileMessage.d.ts.map +1 -0
- package/dist/modules/messages/utils/sendImageMessage.d.ts +5 -0
- package/dist/modules/messages/utils/sendImageMessage.d.ts.map +1 -0
- package/dist/modules/messages/utils/sendTextMessage.d.ts +5 -0
- package/dist/modules/messages/utils/sendTextMessage.d.ts.map +1 -0
- package/dist/modules/socket/classes/ChatsSoketClient.d.ts +25 -0
- package/dist/modules/socket/classes/ChatsSoketClient.d.ts.map +1 -0
- package/dist/modules/socket/enums/ChatsSocketMessage.enum.d.ts +12 -0
- package/dist/modules/socket/enums/ChatsSocketMessage.enum.d.ts.map +1 -0
- package/dist/modules/socket/enums/SocketClientConnectionStatus.enum.d.ts +9 -0
- package/dist/modules/socket/enums/SocketClientConnectionStatus.enum.d.ts.map +1 -0
- package/dist/modules/socket/index.d.ts +4 -0
- package/dist/modules/socket/index.d.ts.map +1 -0
- package/dist/modules/socket/types/ChatsSocketClientEventsPayload.types.d.ts +9 -0
- package/dist/modules/socket/types/ChatsSocketClientEventsPayload.types.d.ts.map +1 -0
- package/dist/modules/socket/utils/getSocketMessageNameFromEvent.d.ts +4 -0
- package/dist/modules/socket/utils/getSocketMessageNameFromEvent.d.ts.map +1 -0
- package/dist/modules/threads/api/Threads.api.d.ts +6 -0
- package/dist/modules/threads/api/Threads.api.d.ts.map +1 -0
- package/dist/modules/threads/classes/Thread.class.d.ts +6 -0
- package/dist/modules/threads/classes/Thread.class.d.ts.map +1 -0
- package/dist/modules/threads/index.d.ts +4 -0
- package/dist/modules/threads/index.d.ts.map +1 -0
- package/dist/modules/threads/threadsSevice.d.ts +6 -0
- package/dist/modules/threads/threadsSevice.d.ts.map +1 -0
- package/dist/modules/threads/types/Thread.types.d.ts +18 -0
- package/dist/modules/threads/types/Thread.types.d.ts.map +1 -0
- package/dist/modules/threads/utils/fetchThreads.d.ts +13 -0
- package/dist/modules/threads/utils/fetchThreads.d.ts.map +1 -0
- package/dist/modules/ui/components/WtChatAvatar.ce.d.ts +7 -0
- package/dist/modules/ui/components/WtChatAvatar.ce.d.ts.map +1 -0
- package/dist/modules/ui/components/WtChatAvatar.vue.d.ts +12 -0
- package/dist/modules/ui/components/WtChatAvatar.vue.d.ts.map +1 -0
- package/dist/modules/ui/components/WtChatMessageBubble.ce.d.ts +8 -0
- package/dist/modules/ui/components/WtChatMessageBubble.ce.d.ts.map +1 -0
- package/dist/modules/ui/components/WtChatMessageBubble.vue.d.ts +29 -0
- package/dist/modules/ui/components/WtChatMessageBubble.vue.d.ts.map +1 -0
- package/dist/modules/ui/index.d.ts +8 -0
- package/dist/modules/ui/index.d.ts.map +1 -0
- package/package.json +42 -34
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.