dev-classes 1.0.16 → 1.1.16

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.
@@ -0,0 +1,8 @@
1
+ import { AxiosRequestConfig } from 'axios';
2
+
3
+ export type RequestOptions_P = Omit<AxiosRequestConfig, 'url'>;
4
+ export type ItemRequest_P = {
5
+ url: string;
6
+ options: RequestOptions_P;
7
+ };
8
+ export type RequestUploadToken_F = (() => Promise<any>);
package/dist/index.d.ts CHANGED
@@ -7,3 +7,4 @@ export * from './classes/Numbers/Numbers';
7
7
  export * from './classes/ProcessingWS/ProcessingWS';
8
8
  export * from './classes/Utils/Utils';
9
9
  export * from './classes/SocketApi/SocketApi';
10
+ export * from './classes/HTTPSApi/HTTPSApi';
package/dist/index.js CHANGED
@@ -4,17 +4,19 @@ import { DateProcessing as f } from "./classes/DateProcessing/DateProcessing.js"
4
4
  import { DelaysPromise as s } from "./classes/Delay/Delay.js";
5
5
  import { DownloadFile as l } from "./classes/DownloadFile/DownloadFile.js";
6
6
  import { Numbers as n } from "./classes/Numbers/Numbers.js";
7
- import { ProcessingWS as D } from "./classes/ProcessingWS/ProcessingWS.js";
8
- import { Utils as S } from "./classes/Utils/Utils.js";
9
- import { SocketApi as k } from "./classes/SocketApi/SocketApi.js";
7
+ import { ProcessingWS as S } from "./classes/ProcessingWS/ProcessingWS.js";
8
+ import { Utils as A } from "./classes/Utils/Utils.js";
9
+ import { SocketApi as g } from "./classes/SocketApi/SocketApi.js";
10
+ import { HTTPSApi as y } from "./classes/HTTPSApi/HTTPSApi.js";
10
11
  export {
11
12
  e as Color,
12
13
  p as ControlAppBySocket,
13
14
  f as DateProcessing,
14
15
  s as DelaysPromise,
15
16
  l as DownloadFile,
17
+ y as HTTPSApi,
16
18
  n as Numbers,
17
- D as ProcessingWS,
18
- k as SocketApi,
19
- S as Utils
19
+ S as ProcessingWS,
20
+ g as SocketApi,
21
+ A as Utils
20
22
  };
package/package.json CHANGED
@@ -7,7 +7,7 @@
7
7
  "url": "git+https://github.com/SinGlEBW/dev-classes.git"
8
8
  },
9
9
  "license": "MIT",
10
- "version": "1.0.16",
10
+ "version": "1.1.16",
11
11
  "type": "module",
12
12
  "module": "./dist/index.js",
13
13
  "main": "./dist/index.js",
@@ -27,6 +27,7 @@
27
27
  "preview": "vite preview"
28
28
  },
29
29
  "devDependencies": {
30
+ "@types/js-cookie": "^3.0.6",
30
31
  "@types/node": "^20.12.7",
31
32
  "glob": "^10.3.12",
32
33
  "typescript": "^5.2.2",
@@ -35,6 +36,8 @@
35
36
  "vite-plugin-lib-inject-css": "^2.0.1"
36
37
  },
37
38
  "dependencies": {
39
+ "axios": "^1.7.7",
40
+ "js-cookie": "^3.0.5",
38
41
  "uuid4": "^2.0.3"
39
42
  }
40
43
  }