@webitel/ui-sdk 26.8.36 → 26.8.37

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@webitel/ui-sdk",
3
- "version": "26.8.36",
3
+ "version": "26.8.37",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "dev": "npm run docs:dev",
@@ -37,12 +37,12 @@
37
37
  </template>
38
38
 
39
39
  <script setup lang="ts">
40
- import type { EngineForAgentPauseCauseList } from '@webitel/api-services/gen';
40
+ import { OnlineSkillsAPI } from '@webitel/api-services/api';
41
+ import type { EngineForAgentPauseCause } from '@webitel/api-services/gen';
41
42
  import { ref } from 'vue';
42
43
  import { useI18n } from 'vue-i18n';
43
44
  import { useStore } from 'vuex';
44
45
  import { PauseNotAllowedError } from 'webitel-sdk';
45
- import { OnlineSkillsAPI } from '../../../../packages/api-services/src/api/clients/onlineSkills/onlineSkills';
46
46
  import WtSwitcher from '../../../components/wt-switcher/wt-switcher.vue';
47
47
  import { AgentStatus } from '../../../enums';
48
48
  import type { LookupOption } from '../../../types';
@@ -87,7 +87,7 @@ const PauseCauseAPI = PauseCauseAPIFactory(api);
87
87
  const { t } = useI18n();
88
88
 
89
89
  const isPauseCausePopup = ref(false);
90
- const pauseCauses = ref<EngineForAgentPauseCauseList>([]);
90
+ const pauseCauses = ref<EngineForAgentPauseCause[]>([]);
91
91
  const error = ref(null);
92
92
  const chosenStatus = ref('');
93
93