@typespec/http-specs 0.1.0-alpha.33-dev.6 → 0.1.0-alpha.33
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 +17 -0
- package/package.json +13 -13
- package/manifest.json +0 -11200
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# @typespec/http-specs
|
|
2
2
|
|
|
3
|
+
## 0.1.0-alpha.33
|
|
4
|
+
|
|
5
|
+
### Features
|
|
6
|
+
|
|
7
|
+
- [#9785](https://github.com/microsoft/typespec/pull/9785) Add spector case for extensible enum with special word member names
|
|
8
|
+
- [#9660](https://github.com/microsoft/typespec/pull/9660) Add test case for XML model with datetime properties (rfc3339 and rfc7231 encodings)
|
|
9
|
+
- [#9660](https://github.com/microsoft/typespec/pull/9660) Add test case for XML model with enum property
|
|
10
|
+
|
|
11
|
+
### Bump dependencies
|
|
12
|
+
|
|
13
|
+
- [#9838](https://github.com/microsoft/typespec/pull/9838) Upgrade dependencies
|
|
14
|
+
|
|
15
|
+
### Bug Fixes
|
|
16
|
+
|
|
17
|
+
- [#9945](https://github.com/microsoft/typespec/pull/9945) Fix float comparison in duration encode mockapi for query and header params to use numeric comparison instead of string comparison, allowing values like `35625.0` to match `35625`
|
|
18
|
+
|
|
19
|
+
|
|
3
20
|
## 0.1.0-alpha.32
|
|
4
21
|
|
|
5
22
|
### 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.33
|
|
4
|
+
"version": "0.1.0-alpha.33",
|
|
5
5
|
"description": "Spec scenarios and mock apis",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"type": "module",
|
|
@@ -22,27 +22,27 @@
|
|
|
22
22
|
},
|
|
23
23
|
"homepage": "https://github.com/microsoft/typespec#readme",
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"
|
|
26
|
-
"@typespec/spector": "^0.1.0-alpha.
|
|
27
|
-
"
|
|
25
|
+
"deep-equal": "^2.2.0",
|
|
26
|
+
"@typespec/spector": "^0.1.0-alpha.24",
|
|
27
|
+
"@typespec/spec-api": "^0.1.0-alpha.13"
|
|
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.3.0",
|
|
33
|
-
"@typespec/json-schema": "^1.9.0 || >= 1.10.0-dev.3",
|
|
34
|
-
"@typespec/openapi": "^1.9.0 || >= 1.10.0-dev.4",
|
|
35
|
-
"@typespec/openapi3": "^1.9.0 || >= 1.10.0-dev.8",
|
|
36
33
|
"concurrently": "^9.1.2",
|
|
37
34
|
"rimraf": "~6.1.3",
|
|
38
|
-
"typescript": "~5.9.3"
|
|
35
|
+
"typescript": "~5.9.3",
|
|
36
|
+
"@typespec/json-schema": "^1.10.0",
|
|
37
|
+
"@typespec/openapi": "^1.10.0",
|
|
38
|
+
"@typespec/openapi3": "^1.10.0"
|
|
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.10.0",
|
|
42
|
+
"@typespec/http": "^1.10.0",
|
|
43
|
+
"@typespec/rest": "^0.80.0",
|
|
44
|
+
"@typespec/versioning": "^0.80.0",
|
|
45
|
+
"@typespec/xml": "^0.80.0"
|
|
46
46
|
},
|
|
47
47
|
"scripts": {
|
|
48
48
|
"watch": "tsc -p ./tsconfig.build.json --watch",
|