@typespec/http-specs 0.1.0-alpha.36-dev.3 → 0.1.0-alpha.36
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 +7 -0
- package/package.json +13 -13
- package/manifest.json +0 -11545
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# @typespec/http-specs
|
|
2
2
|
|
|
3
|
+
## 0.1.0-alpha.36
|
|
4
|
+
|
|
5
|
+
### Features
|
|
6
|
+
|
|
7
|
+
- [#10011](https://github.com/microsoft/typespec/pull/10011) Add matcher framework for flexible value comparison in scenarios. `match.dateTime()` enables semantic datetime comparison that handles precision and timezone differences across languages.
|
|
8
|
+
|
|
9
|
+
|
|
3
10
|
## 0.1.0-alpha.35
|
|
4
11
|
|
|
5
12
|
### 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.36
|
|
4
|
+
"version": "0.1.0-alpha.36",
|
|
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/
|
|
27
|
-
"
|
|
25
|
+
"deep-equal": "^2.2.3",
|
|
26
|
+
"@typespec/spec-api": "^0.1.0-alpha.14",
|
|
27
|
+
"@typespec/spector": "^0.1.0-alpha.25"
|
|
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.2",
|
|
34
|
-
"@typespec/openapi": "^1.10.0 || >= 1.11.0-dev.2",
|
|
35
|
-
"@typespec/openapi3": "^1.10.0 || >= 1.11.0-dev.4",
|
|
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.11.0",
|
|
37
|
+
"@typespec/openapi": "^1.11.0",
|
|
38
|
+
"@typespec/openapi3": "^1.11.0"
|
|
39
39
|
},
|
|
40
40
|
"peerDependencies": {
|
|
41
|
-
"@typespec/compiler": "^1.
|
|
42
|
-
"@typespec/
|
|
43
|
-
"@typespec/
|
|
44
|
-
"@typespec/
|
|
45
|
-
"@typespec/
|
|
41
|
+
"@typespec/compiler": "^1.11.0",
|
|
42
|
+
"@typespec/versioning": "^0.81.0",
|
|
43
|
+
"@typespec/http": "^1.11.0",
|
|
44
|
+
"@typespec/xml": "^0.81.0",
|
|
45
|
+
"@typespec/rest": "^0.81.0"
|
|
46
46
|
},
|
|
47
47
|
"scripts": {
|
|
48
48
|
"watch": "tsc -p ./tsconfig.build.json --watch",
|