Skip to content

Commit

Permalink
Merge branch 'master' into fix/props-in-wt-action-bar
Browse files Browse the repository at this point in the history
  • Loading branch information
dlohvinov authored Nov 7, 2024
2 parents 6f1531b + f7b988e commit a89616f
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 13 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@


## [v24.10.62] - 2024-11-07
### :sparkles: New Features
- [`d153ba8`](https://github.com/webitel/webitel-ui-sdk/commit/d153ba813e0d9b60050004dddbd172720aa5191d) - changed agent chat service in agent chat api [WTEL-5456](https://webitel.atlassian.net/browse/WTEL-5456) *(commit by [@liza-pohranichna](https://github.com/liza-pohranichna))*


## [v24.10.61] - 2024-11-06
### :bug: Bug Fixes
- [`be1b3a2`](https://github.com/webitel/webitel-ui-sdk/commit/be1b3a25d6b6e6b3c0a5d3287556bc775d6bef8e) - fix import agent chat service


## [v24.10.60] - 2024-11-06
### :sparkles: New Features
- [`1968f0c`](https://github.com/webitel/webitel-ui-sdk/commit/1968f0ca73eba9be929b31f50570553037245559) - update version [WTEL-5443](https://webitel.atlassian.net/browse/WTEL-5443)
Expand Down Expand Up @@ -73,3 +83,5 @@
[v24.10.57]: https://github.com/webitel/webitel-ui-sdk/compare/v24.10.56...v24.10.57
[v24.10.59]: https://github.com/webitel/webitel-ui-sdk/compare/v24.10.57...v24.10.59
[v24.10.60]: https://github.com/webitel/webitel-ui-sdk/compare/v24.10.59...v24.10.60
[v24.10.61]: https://github.com/webitel/webitel-ui-sdk/compare/v24.10.60...v24.10.61
[v24.10.62]: https://github.com/webitel/webitel-ui-sdk/compare/v24.10.61...v24.10.62
18 changes: 9 additions & 9 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@webitel/ui-sdk",
"version": "24.10.61",
"version": "24.10.63",
"private": false,
"scripts": {
"dev": "vite",
Expand Down Expand Up @@ -128,7 +128,7 @@
"vue-multiselect": "^3.0.0-beta.3",
"vue-observe-visibility": "^2.0.0-alpha.1",
"vue-router": "^4.1.6",
"webitel-sdk": "^24.8.5",
"webitel-sdk": "^24.8.6",
"xlsx": "^0.18.5"
},
"devDependencies": {
Expand Down
4 changes: 2 additions & 2 deletions src/api/clients/agents/agentChats.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { AgentChatsServiceApi } from 'webitel-sdk';
import { AgentChatServiceApiFactory } from 'webitel-sdk';
import {
getDefaultInstance,
getDefaultOpenAPIConfig,
Expand All @@ -14,7 +14,7 @@ const { t } = i18n.global;
const instance = getDefaultInstance();
const configuration = getDefaultOpenAPIConfig();

const agentChatsService = new AgentChatsServiceApi(configuration, '', instance);
const agentChatsService = new AgentChatServiceApiFactory(configuration, '', instance);

const getChatsList = async (params) => {
const { onlyClosed } = params;
Expand Down

0 comments on commit a89616f

Please sign in to comment.