@autometa/http 1.4.16 → 1.4.17
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 +7 -7
package/.turbo/turbo-test.log
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
|
|
2
|
-
> @autometa/http@1.4.
|
|
2
|
+
> @autometa/http@1.4.16 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)
|
|
9
|
-
✓ src/schema.map.spec.ts (5 tests)
|
|
8
|
+
✓ src/default-client-factory.other.spec.ts (1 test) 4ms
|
|
9
|
+
✓ src/schema.map.spec.ts (5 tests) 3ms
|
|
10
|
+
✓ src/http-request.spec.ts (11 tests) 69ms
|
|
10
11
|
✓ src/request-meta.config.spec.ts (8 tests) 3ms
|
|
11
|
-
✓ src/default-schema.spec.ts (13 tests)
|
|
12
|
-
✓ src/
|
|
13
|
-
✓ src/default-client-factory.axios.spec.ts (1 test) 3ms
|
|
12
|
+
✓ src/default-schema.spec.ts (13 tests) 6ms
|
|
13
|
+
✓ src/default-client-factory.axios.spec.ts (1 test) 77ms
|
|
14
14
|
stdout | src/http.spec.ts > HTTP > resolving dynamic headers > should resolve dynamic headers
|
|
15
15
|
HTTPRequest {
|
|
16
16
|
headers: { foo: 'bar' },
|
|
@@ -91,7 +91,6 @@ HTTPRequest {
|
|
|
91
91
|
data: undefined
|
|
92
92
|
}
|
|
93
93
|
|
|
94
|
-
✓ src/http.spec.ts (13 tests) 12ms
|
|
95
94
|
stdout | src/http.spec.ts > HTTP > schemas > should return the response if the status matches a schema
|
|
96
95
|
HTTPRequest {
|
|
97
96
|
headers: {},
|
|
@@ -112,9 +111,10 @@ HTTPRequest {
|
|
|
112
111
|
data: undefined
|
|
113
112
|
}
|
|
114
113
|
|
|
114
|
+
✓ src/http.spec.ts (13 tests) 27ms
|
|
115
115
|
|
|
116
116
|
Test Files 7 passed (7)
|
|
117
117
|
Tests 52 passed (52)
|
|
118
|
-
Start at
|
|
119
|
-
Duration
|
|
118
|
+
Start at 16:48:22
|
|
119
|
+
Duration 3.30s (transform 1.94s, setup 1.05s, collect 4.71s, tests 189ms, environment 1ms, prepare 5.86s)
|
|
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.17",
|
|
4
4
|
"description": "An Axios Based HTTP Client for Autometa",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -27,8 +27,8 @@
|
|
|
27
27
|
"typescript": "^4.9.5",
|
|
28
28
|
"vitest": "1.4.0",
|
|
29
29
|
"@autometa/types": "^0.4.1",
|
|
30
|
-
"
|
|
31
|
-
"
|
|
30
|
+
"tsconfig": "0.7.0",
|
|
31
|
+
"eslint-config-custom": "0.6.0"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
34
|
"@stdlib/assert-is-json": "^0.1.1",
|
|
@@ -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/app": "^0.3.4",
|
|
43
|
-
"@autometa/dto-builder": "^0.13.9",
|
|
44
42
|
"@autometa/errors": "^0.2.2",
|
|
45
|
-
"@autometa/
|
|
46
|
-
"@autometa/
|
|
43
|
+
"@autometa/status-codes": "^0.4.1",
|
|
44
|
+
"@autometa/dto-builder": "^0.13.9",
|
|
45
|
+
"@autometa/app": "^0.3.5",
|
|
46
|
+
"@autometa/injection": "^0.1.3"
|
|
47
47
|
},
|
|
48
48
|
"scripts": {
|
|
49
49
|
"test": "vitest run --passWithNoTests",
|