@autometa/http 1.4.17 → 1.4.18
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/.turbo/turbo-test.log +9 -9
- package/CHANGELOG.md +7 -0
- package/package.json +5 -5
package/.turbo/turbo-test.log
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
|
|
2
|
-
> @autometa/http@1.4.
|
|
2
|
+
> @autometa/http@1.4.17 test /Users/ben.aherne/Documents/GitHub/autometa/packages/http
|
|
3
3
|
> vitest run --passWithNoTests
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
RUN v1.4.0 /Users/ben.aherne/Documents/GitHub/autometa/packages/http
|
|
7
7
|
|
|
8
|
-
✓ src/default-client-factory.other.spec.ts (1 test) 4ms
|
|
9
8
|
✓ src/schema.map.spec.ts (5 tests) 3ms
|
|
10
|
-
✓ src/
|
|
11
|
-
✓ src/request-meta.config.spec.ts (8 tests)
|
|
12
|
-
✓ src/
|
|
13
|
-
✓ src/default-
|
|
9
|
+
✓ src/default-client-factory.other.spec.ts (1 test) 2ms
|
|
10
|
+
✓ src/request-meta.config.spec.ts (8 tests) 5ms
|
|
11
|
+
✓ src/http-request.spec.ts (11 tests) 4ms
|
|
12
|
+
✓ src/default-schema.spec.ts (13 tests) 4ms
|
|
13
|
+
✓ src/default-client-factory.axios.spec.ts (1 test) 2ms
|
|
14
14
|
stdout | src/http.spec.ts > HTTP > resolving dynamic headers > should resolve dynamic headers
|
|
15
15
|
HTTPRequest {
|
|
16
16
|
headers: { foo: 'bar' },
|
|
@@ -111,10 +111,10 @@ HTTPRequest {
|
|
|
111
111
|
data: undefined
|
|
112
112
|
}
|
|
113
113
|
|
|
114
|
-
✓ src/http.spec.ts (13 tests)
|
|
114
|
+
✓ src/http.spec.ts (13 tests) 35ms
|
|
115
115
|
|
|
116
116
|
Test Files 7 passed (7)
|
|
117
117
|
Tests 52 passed (52)
|
|
118
|
-
Start at
|
|
119
|
-
Duration
|
|
118
|
+
Start at 13:56:48
|
|
119
|
+
Duration 5.28s (transform 2.17s, setup 169ms, collect 5.60s, tests 55ms, environment 7ms, prepare 4.76s)
|
|
120
120
|
|
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@autometa/http",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.18",
|
|
4
4
|
"description": "An Axios Based HTTP Client for Autometa",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -39,11 +39,11 @@
|
|
|
39
39
|
"reflect-metadata": "^0.1.13",
|
|
40
40
|
"ts-retry": "^4.2.3",
|
|
41
41
|
"url-join-ts": "^1.0.5",
|
|
42
|
-
"@autometa/
|
|
43
|
-
"@autometa/
|
|
42
|
+
"@autometa/app": "^0.4.0",
|
|
43
|
+
"@autometa/injection": "^0.1.3",
|
|
44
44
|
"@autometa/dto-builder": "^0.13.9",
|
|
45
|
-
"@autometa/
|
|
46
|
-
"@autometa/
|
|
45
|
+
"@autometa/errors": "^0.2.2",
|
|
46
|
+
"@autometa/status-codes": "^0.4.1"
|
|
47
47
|
},
|
|
48
48
|
"scripts": {
|
|
49
49
|
"test": "vitest run --passWithNoTests",
|