Skip to content

Commit

Permalink
Merge pull request #345 from webitel/fix/update-import-chat-api
Browse files Browse the repository at this point in the history
fix: fix import agent chat service
  • Loading branch information
stanislav-kozak authored Nov 6, 2024
2 parents d94d6d5 + be1b3a2 commit b141781
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 13 deletions.
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.60",
"version": "24.10.61",
"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 { AgentChatServiceApi } 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 AgentChatServiceApi(configuration, '', instance);

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

0 comments on commit b141781

Please sign in to comment.