@typespec/spector 0.1.0-alpha.9-dev.4 → 0.1.0-alpha.9
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 +8 -9
- package/temp/.tsbuildinfo +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# Change Log - @typespec/spector
|
|
2
2
|
|
|
3
|
+
## 0.1.0-alpha.9
|
|
4
|
+
|
|
5
|
+
### Features
|
|
6
|
+
|
|
7
|
+
- [#6327](https://github.com/microsoft/typespec/pull/6327) Remove reference to delete projection feature
|
|
8
|
+
- [#6201](https://github.com/microsoft/typespec/pull/6201) Support `application/jsonl` as binary.
|
|
9
|
+
|
|
10
|
+
### Bump dependencies
|
|
11
|
+
|
|
12
|
+
- [#6266](https://github.com/microsoft/typespec/pull/6266) Update dependencies
|
|
13
|
+
|
|
14
|
+
|
|
3
15
|
## 0.1.0-alpha.8
|
|
4
16
|
|
|
5
17
|
No changes, version bump only.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@typespec/spector",
|
|
3
|
-
"version": "0.1.0-alpha.9
|
|
3
|
+
"version": "0.1.0-alpha.9",
|
|
4
4
|
"description": "Typespec Core Tool to validate, run mock api, collect coverage.",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": {
|
|
@@ -28,12 +28,6 @@
|
|
|
28
28
|
"dependencies": {
|
|
29
29
|
"@azure/identity": "~4.7.0",
|
|
30
30
|
"@types/js-yaml": "^4.0.5",
|
|
31
|
-
"@typespec/compiler": "^0.66.0 || >=0.67.0-dev <0.67.0",
|
|
32
|
-
"@typespec/http": "^0.66.0 || >=0.67.0-dev <0.67.0",
|
|
33
|
-
"@typespec/rest": "^0.66.0 || >=0.67.0-dev <0.67.0",
|
|
34
|
-
"@typespec/spec-api": "^0.1.0-alpha.1 || >=0.1.0-alpha.2-dev <0.1.0-alpha.2",
|
|
35
|
-
"@typespec/spec-coverage-sdk": "^0.1.0-alpha.3 || >=0.1.0-alpha.4-dev <0.1.0-alpha.4",
|
|
36
|
-
"@typespec/versioning": "^0.66.0 || >=0.67.0-dev <0.67.0",
|
|
37
31
|
"ajv": "~8.17.1",
|
|
38
32
|
"axios": "^1.8.1",
|
|
39
33
|
"body-parser": "^1.20.3",
|
|
@@ -51,7 +45,13 @@
|
|
|
51
45
|
"source-map-support": "~0.5.21",
|
|
52
46
|
"winston": "^3.17.0",
|
|
53
47
|
"xml2js": "^0.6.2",
|
|
54
|
-
"yargs": "~17.7.2"
|
|
48
|
+
"yargs": "~17.7.2",
|
|
49
|
+
"@typespec/compiler": "^0.67.0",
|
|
50
|
+
"@typespec/http": "^0.67.0",
|
|
51
|
+
"@typespec/spec-api": "^0.1.0-alpha.2",
|
|
52
|
+
"@typespec/rest": "^0.67.0",
|
|
53
|
+
"@typespec/spec-coverage-sdk": "^0.1.0-alpha.4",
|
|
54
|
+
"@typespec/versioning": "^0.67.0"
|
|
55
55
|
},
|
|
56
56
|
"devDependencies": {
|
|
57
57
|
"@types/body-parser": "^1.19.2",
|
|
@@ -67,7 +67,6 @@
|
|
|
67
67
|
"typescript": "~5.8.2",
|
|
68
68
|
"@typespec/tspd": "^0.46.0"
|
|
69
69
|
},
|
|
70
|
-
"peerDependencies": {},
|
|
71
70
|
"scripts": {
|
|
72
71
|
"watch": "tsc -p ./tsconfig.build.json --watch",
|
|
73
72
|
"build": "npm run gen-extern-signature && tsc -p tsconfig.build.json",
|