@nu-art/http-client 0.401.3 → 0.401.5
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/core/HttpClient.js +1 -1
- package/core/HttpRequest.js +1 -1
- package/exceptions/HttpException.js +1 -1
- package/index.js +1 -1
- package/package.json +9 -9
- package/types/api-types.js +1 -1
- package/types/error-types.js +1 -1
- package/types/types.js +1 -1
- package/utils/http-codes.js +1 -1
- package/utils/utils.js +1 -1
package/core/HttpClient.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*
|
|
2
|
-
* @nu-art/
|
|
2
|
+
* @nu-art/http-client - Type-safe HTTP client for Thunderstorm
|
|
3
3
|
* Copyright (C) 2024 Adam van der Kruk aka TacB0sS
|
|
4
4
|
* Licensed under the Apache License, Version 2.0
|
|
5
5
|
*/
|
package/core/HttpRequest.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*
|
|
2
|
-
* @nu-art/
|
|
2
|
+
* @nu-art/http-client - Type-safe HTTP client for Thunderstorm
|
|
3
3
|
* Copyright (C) 2024 Adam van der Kruk aka TacB0sS
|
|
4
4
|
* Licensed under the Apache License, Version 2.0
|
|
5
5
|
*/
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*
|
|
2
|
-
* @nu-art/
|
|
2
|
+
* @nu-art/http-client - Type-safe HTTP client for Thunderstorm
|
|
3
3
|
* Copyright (C) 2024 Adam van der Kruk aka TacB0sS
|
|
4
4
|
* Licensed under the Apache License, Version 2.0
|
|
5
5
|
*/
|
package/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*
|
|
2
|
-
* @nu-art/
|
|
2
|
+
* @nu-art/http-client - Type-safe HTTP client for Thunderstorm
|
|
3
3
|
* Copyright (C) 2024 Adam van der Kruk aka TacB0sS
|
|
4
4
|
* Licensed under the Apache License, Version 2.0
|
|
5
5
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nu-art/http-client",
|
|
3
|
-
"version": "0.401.
|
|
3
|
+
"version": "0.401.5",
|
|
4
4
|
"description": "Type-safe HTTP client with fluent API, comprehensive logging, and request/response type safety",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"TacB0sS",
|
|
@@ -10,19 +10,20 @@
|
|
|
10
10
|
"typescript",
|
|
11
11
|
"type-safe",
|
|
12
12
|
"api",
|
|
13
|
-
"request",
|
|
14
|
-
"response",
|
|
13
|
+
"http-request",
|
|
14
|
+
"http-response",
|
|
15
15
|
"infra",
|
|
16
16
|
"nu-art",
|
|
17
17
|
"thunderstorm"
|
|
18
18
|
],
|
|
19
19
|
"homepage": "https://github.com/nu-art-js/thunderstorm",
|
|
20
20
|
"bugs": {
|
|
21
|
-
"url": "https://github.com/nu-art-js/thunderstorm/issues"
|
|
21
|
+
"url": "https://github.com/nu-art-js/thunderstorm/issues?q=is%3Aissue+label%3Ahttp-client"
|
|
22
22
|
},
|
|
23
23
|
"repository": {
|
|
24
24
|
"type": "git",
|
|
25
|
-
"url": "git+ssh://git@github.com:nu-art-js/thunderstorm.git"
|
|
25
|
+
"url": "git+ssh://git@github.com:nu-art-js/thunderstorm.git",
|
|
26
|
+
"directory": "_thunderstorm/http"
|
|
26
27
|
},
|
|
27
28
|
"license": "Apache-2.0",
|
|
28
29
|
"author": "TacB0sS",
|
|
@@ -39,15 +40,14 @@
|
|
|
39
40
|
}
|
|
40
41
|
],
|
|
41
42
|
"publishConfig": {
|
|
42
|
-
"directory": "dist"
|
|
43
|
-
"linkDirectory": true
|
|
43
|
+
"directory": "dist"
|
|
44
44
|
},
|
|
45
45
|
"dependencies": {
|
|
46
|
-
"@nu-art/ts-common": "0.401.
|
|
46
|
+
"@nu-art/ts-common": "0.401.5",
|
|
47
47
|
"axios": "^1.13.1"
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
|
-
"@nu-art/testalot": "0.401.
|
|
50
|
+
"@nu-art/testalot": "0.401.5"
|
|
51
51
|
},
|
|
52
52
|
"unitConfig": {
|
|
53
53
|
"type": "typescript-lib"
|
package/types/api-types.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*
|
|
2
|
-
* @nu-art/
|
|
2
|
+
* @nu-art/http-client - Type-safe HTTP client for Thunderstorm
|
|
3
3
|
* Copyright (C) 2024 Adam van der Kruk aka TacB0sS
|
|
4
4
|
* Licensed under the Apache License, Version 2.0
|
|
5
5
|
*/
|
package/types/error-types.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*
|
|
2
|
-
* @nu-art/
|
|
2
|
+
* @nu-art/http-client - Type-safe HTTP client for Thunderstorm
|
|
3
3
|
* Copyright (C) 2024 Adam van der Kruk aka TacB0sS
|
|
4
4
|
* Licensed under the Apache License, Version 2.0
|
|
5
5
|
*/
|
package/types/types.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*
|
|
2
|
-
* @nu-art/
|
|
2
|
+
* @nu-art/http-client - Type-safe HTTP client for Thunderstorm
|
|
3
3
|
* Copyright (C) 2024 Adam van der Kruk aka TacB0sS
|
|
4
4
|
* Licensed under the Apache License, Version 2.0
|
|
5
5
|
*/
|
package/utils/http-codes.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*
|
|
2
|
-
* @nu-art/
|
|
2
|
+
* @nu-art/http-client - Type-safe HTTP client for Thunderstorm
|
|
3
3
|
* Copyright (C) 2024 Adam van der Kruk aka TacB0sS
|
|
4
4
|
* Licensed under the Apache License, Version 2.0
|
|
5
5
|
*/
|
package/utils/utils.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*
|
|
2
|
-
* @nu-art/
|
|
2
|
+
* @nu-art/http-client - Type-safe HTTP client for Thunderstorm
|
|
3
3
|
* Copyright (C) 2024 Adam van der Kruk aka TacB0sS
|
|
4
4
|
* Licensed under the Apache License, Version 2.0
|
|
5
5
|
*/
|