@webitel/ui-sdk 25.8.9 → 25.8.11

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,9 +1,9 @@
1
1
  {
2
2
  "name": "@webitel/ui-sdk",
3
- "version": "25.8.9",
3
+ "version": "25.8.11",
4
4
  "private": false,
5
5
  "scripts": {
6
- "make-all": "npm version patch && npm run build && (npm run build:types || true) && (npm run lint:fix || true) && npm run publish-lib",
6
+ "make-all": "npm version patch --git-tag-version false && npm run build && (npm run build:types || true) && (npm run lint:fix || true) && npm run publish-lib",
7
7
  "dev": "npm run docs:dev",
8
8
  "build": "vite build",
9
9
  "test:unit": "vitest",
@@ -1,4 +1,4 @@
1
- import { generateInstance } from '@webitel/api-services/src/api/axios';
1
+ import { generateInstance } from '@webitel/api-services/api/axios';
2
2
 
3
3
  // todo: replace imports of this file with source file, rm this file
4
4
  export default generateInstance;
@@ -1 +1,2 @@
1
1
  export default generateInstance;
2
+ import { generateInstance } from '@webitel/api-services/api/axios';
@@ -1,4 +1,4 @@
1
- export function downloadMedia(id: any): Promise<any>;
1
+ export function downloadMedia(id: any): Promise<import("axios").AxiosResponse<any, any>>;
2
2
  export default MediaAPI;
3
3
  declare namespace MediaAPI {
4
4
  export { getMediaList as getList };
@@ -13,7 +13,7 @@ declare function getMediaList(params: any): Promise<{
13
13
  }>;
14
14
  declare function getMedia({ itemId }: {
15
15
  itemId: any;
16
- }): Promise<any>;
16
+ }): Promise<import("axios").AxiosResponse<any, any>>;
17
17
  declare function addMedia(params: any): Promise<import("axios").AxiosResponse<any, any>>;
18
18
  declare function deleteMedia({ id }: {
19
19
  id: any;
@@ -1,2 +1,2 @@
1
1
  export default getDefaultInstance;
2
- export function getDefaultInstance(): any;
2
+ export function getDefaultInstance(): import("axios").AxiosInstance;