@typespec/http-specs 0.1.0-alpha.32-dev.8 → 0.1.0-alpha.33-dev.0
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/CHANGELOG.md +16 -0
- package/package.json +10 -10
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @typespec/http-specs
|
|
2
2
|
|
|
3
|
+
## 0.1.0-alpha.32
|
|
4
|
+
|
|
5
|
+
### Features
|
|
6
|
+
|
|
7
|
+
- [#9390](https://github.com/microsoft/typespec/pull/9390) Add array encoding test for enum and extensible enum arrays.
|
|
8
|
+
- [#9513](https://github.com/microsoft/typespec/pull/9513) Add Spector tests for File type with various content types (body and multipart)
|
|
9
|
+
- [#9499](https://github.com/microsoft/typespec/pull/9499) Add test for xml error deserialization
|
|
10
|
+
- [#9455](https://github.com/microsoft/typespec/pull/9455) Add test for xml pagination with next link
|
|
11
|
+
- [#9455](https://github.com/microsoft/typespec/pull/9455) Add test for xml paging
|
|
12
|
+
|
|
13
|
+
### Bug Fixes
|
|
14
|
+
|
|
15
|
+
- [#9570](https://github.com/microsoft/typespec/pull/9570) Fix payload/xml XmlErrorValue response to wrap SimpleModel with content-type "application/xml" for consistency with XmlError
|
|
16
|
+
- [#9636](https://github.com/microsoft/typespec/pull/9636) Fix expectation for query larger unit tests
|
|
17
|
+
|
|
18
|
+
|
|
3
19
|
## 0.1.0-alpha.31
|
|
4
20
|
|
|
5
21
|
### Features
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@typespec/http-specs",
|
|
3
3
|
"displayName": "Http Specs",
|
|
4
|
-
"version": "0.1.0-alpha.
|
|
4
|
+
"version": "0.1.0-alpha.33-dev.0",
|
|
5
5
|
"description": "Spec scenarios and mock apis",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"type": "module",
|
|
@@ -23,26 +23,26 @@
|
|
|
23
23
|
"homepage": "https://github.com/microsoft/typespec#readme",
|
|
24
24
|
"dependencies": {
|
|
25
25
|
"@typespec/spec-api": "^0.1.0-alpha.12 || >=0.1.0-alpha.13-dev <0.1.0-alpha.13",
|
|
26
|
-
"@typespec/spector": "^0.1.0-alpha.
|
|
26
|
+
"@typespec/spector": "^0.1.0-alpha.23 || >=0.1.0-alpha.24-dev <0.1.0-alpha.24",
|
|
27
27
|
"deep-equal": "^2.2.0"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
30
|
"@types/deep-equal": "^1.0.1",
|
|
31
31
|
"@types/multer": "^2.0.0",
|
|
32
32
|
"@types/node": "~25.0.2",
|
|
33
|
-
"@typespec/json-schema": "^1.
|
|
34
|
-
"@typespec/openapi": "^1.
|
|
35
|
-
"@typespec/openapi3": "^1.
|
|
33
|
+
"@typespec/json-schema": "^1.9.0",
|
|
34
|
+
"@typespec/openapi": "^1.9.0",
|
|
35
|
+
"@typespec/openapi3": "^1.9.0",
|
|
36
36
|
"concurrently": "^9.1.2",
|
|
37
37
|
"rimraf": "~6.1.2",
|
|
38
38
|
"typescript": "~5.9.2"
|
|
39
39
|
},
|
|
40
40
|
"peerDependencies": {
|
|
41
|
-
"@typespec/compiler": "^1.
|
|
42
|
-
"@typespec/http": "^1.
|
|
43
|
-
"@typespec/rest": "^0.
|
|
44
|
-
"@typespec/versioning": "^0.
|
|
45
|
-
"@typespec/xml": "^0.
|
|
41
|
+
"@typespec/compiler": "^1.9.0",
|
|
42
|
+
"@typespec/http": "^1.9.0",
|
|
43
|
+
"@typespec/rest": "^0.79.0 || >=0.80.0-dev <0.80.0",
|
|
44
|
+
"@typespec/versioning": "^0.79.0 || >=0.80.0-dev <0.80.0",
|
|
45
|
+
"@typespec/xml": "^0.79.0 || >=0.80.0-dev <0.80.0"
|
|
46
46
|
},
|
|
47
47
|
"scripts": {
|
|
48
48
|
"watch": "tsc -p ./tsconfig.build.json --watch",
|