@typespec/http-specs 0.1.0-alpha.35-dev.5 → 0.1.0-alpha.35
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 +13 -13
- package/manifest.json +0 -11545
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @typespec/http-specs
|
|
2
2
|
|
|
3
|
+
## 0.1.0-alpha.35
|
|
4
|
+
|
|
5
|
+
### Features
|
|
6
|
+
|
|
7
|
+
- Added new scenario for next link based pagination where the initial verb is not GET
|
|
8
|
+
- Add missing scenarios for xml handling
|
|
9
|
+
|
|
10
|
+
### Bug Fixes
|
|
11
|
+
|
|
12
|
+
- Accept both `2022-08-26T18:38:00.000Z` and `2022-08-26T18:38:00Z` as valid RFC3339 UTC datetime forms in the `ModelWithDatetime` XML scenario.
|
|
13
|
+
|
|
14
|
+
|
|
3
15
|
## 0.1.0-alpha.34
|
|
4
16
|
|
|
5
17
|
### Bug Fixes
|
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.35
|
|
4
|
+
"version": "0.1.0-alpha.35",
|
|
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.24
|
|
27
|
-
"
|
|
25
|
+
"deep-equal": "^2.2.3",
|
|
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.4",
|
|
31
31
|
"@types/multer": "^2.1.0",
|
|
32
32
|
"@types/node": "~25.5.0",
|
|
33
|
-
"@typespec/json-schema": "^1.10.0 || >= 1.11.0-dev.1",
|
|
34
|
-
"@typespec/openapi": "^1.10.0 || >= 1.11.0-dev.1",
|
|
35
|
-
"@typespec/openapi3": "^1.10.0 || >= 1.11.0-dev.3",
|
|
36
33
|
"concurrently": "^9.2.1",
|
|
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.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
|
|
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",
|