@typespec/http-specs 0.1.0-alpha.24-dev.3 → 0.1.0-alpha.25-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 +12 -0
- package/package.json +11 -11
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @typespec/http-specs
|
|
2
2
|
|
|
3
|
+
## 0.1.0-alpha.24
|
|
4
|
+
|
|
5
|
+
### Features
|
|
6
|
+
|
|
7
|
+
- [#7602](https://github.com/microsoft/typespec/pull/7602) Add discriminated union spector test cases covering default serialization, custom property names, and inline discriminator scenarios
|
|
8
|
+
- [#6477](https://github.com/microsoft/typespec/pull/6477) Add nested cases for paging
|
|
9
|
+
|
|
10
|
+
### Bump dependencies
|
|
11
|
+
|
|
12
|
+
- [#7674](https://github.com/microsoft/typespec/pull/7674) Upgrade dependencies
|
|
13
|
+
|
|
14
|
+
|
|
3
15
|
## 0.1.0-alpha.23
|
|
4
16
|
|
|
5
17
|
### Features
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@typespec/http-specs",
|
|
3
|
-
"version": "0.1.0-alpha.
|
|
3
|
+
"version": "0.1.0-alpha.25-dev.0",
|
|
4
4
|
"description": "Spec scenarios and mock apis",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -18,27 +18,27 @@
|
|
|
18
18
|
},
|
|
19
19
|
"homepage": "https://github.com/microsoft/typespec#readme",
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@typespec/spec-api": "^0.1.0-alpha.
|
|
22
|
-
"@typespec/spector": "^0.1.0-alpha.
|
|
21
|
+
"@typespec/spec-api": "^0.1.0-alpha.7 || >=0.1.0-alpha.8-dev <0.1.0-alpha.8",
|
|
22
|
+
"@typespec/spector": "^0.1.0-alpha.16 || >=0.1.0-alpha.17-dev <0.1.0-alpha.17",
|
|
23
23
|
"deep-equal": "^2.2.0"
|
|
24
24
|
},
|
|
25
25
|
"devDependencies": {
|
|
26
26
|
"@types/deep-equal": "^1.0.1",
|
|
27
27
|
"@types/multer": "^1.4.10",
|
|
28
28
|
"@types/node": "~24.0.3",
|
|
29
|
-
"@typespec/json-schema": "^1.
|
|
30
|
-
"@typespec/openapi": "^1.
|
|
31
|
-
"@typespec/openapi3": "^1.
|
|
29
|
+
"@typespec/json-schema": "^1.2.0",
|
|
30
|
+
"@typespec/openapi": "^1.2.0",
|
|
31
|
+
"@typespec/openapi3": "^1.2.0",
|
|
32
32
|
"concurrently": "^9.1.2",
|
|
33
33
|
"rimraf": "~6.0.1",
|
|
34
34
|
"typescript": "~5.8.2"
|
|
35
35
|
},
|
|
36
36
|
"peerDependencies": {
|
|
37
|
-
"@typespec/compiler": "^1.
|
|
38
|
-
"@typespec/http": "^1.
|
|
39
|
-
"@typespec/rest": "^0.
|
|
40
|
-
"@typespec/versioning": "^0.
|
|
41
|
-
"@typespec/xml": "^0.
|
|
37
|
+
"@typespec/compiler": "^1.2.0",
|
|
38
|
+
"@typespec/http": "^1.2.0",
|
|
39
|
+
"@typespec/rest": "^0.72.0 || >=0.73.0-dev <0.73.0",
|
|
40
|
+
"@typespec/versioning": "^0.72.0 || >=0.73.0-dev <0.73.0",
|
|
41
|
+
"@typespec/xml": "^0.72.0 || >=0.73.0-dev <0.73.0"
|
|
42
42
|
},
|
|
43
43
|
"scripts": {
|
|
44
44
|
"watch": "tsc -p ./tsconfig.build.json --watch",
|