@azure-tools/typespec-java 0.11.3 → 0.12.1
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/dist/src/code-model-builder.d.ts.map +1 -1
- package/dist/src/code-model-builder.js +66 -28
- package/dist/src/code-model-builder.js.map +1 -1
- package/dist/src/common/schemas/usage.d.ts +3 -1
- package/dist/src/common/schemas/usage.d.ts.map +1 -1
- package/dist/src/common/schemas/usage.js +2 -0
- package/dist/src/common/schemas/usage.js.map +1 -1
- package/dist/src/emitter.js +1 -1
- package/dist/src/emitter.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +22 -14
- package/readme.md +1 -1
- package/target/{azure-typespec-extension-jar-with-dependencies.jar → emitter.jar} +0 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@azure-tools/typespec-java",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.12.1",
|
|
4
4
|
"description": "TypeSpec library for emitting Java client from the TypeSpec REST protocol binding",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"TypeSpec"
|
|
@@ -42,15 +42,16 @@
|
|
|
42
42
|
"lib/*.tsp",
|
|
43
43
|
"dist/**",
|
|
44
44
|
"!dist/test/**",
|
|
45
|
-
"target/
|
|
45
|
+
"target/emitter.jar"
|
|
46
46
|
],
|
|
47
47
|
"peerDependencies": {
|
|
48
|
-
"@typespec/compiler": ">=0.
|
|
49
|
-
"@typespec/
|
|
50
|
-
"@typespec/
|
|
51
|
-
"@typespec/
|
|
52
|
-
"@
|
|
53
|
-
"@azure-tools/typespec-
|
|
48
|
+
"@typespec/compiler": ">=0.51.0 <1.0.0",
|
|
49
|
+
"@typespec/http": ">=0.51.0 <1.0.0",
|
|
50
|
+
"@typespec/rest": ">=0.51.0 <1.0.0",
|
|
51
|
+
"@typespec/openapi": ">=0.51.0 <1.0.0",
|
|
52
|
+
"@typespec/versioning": ">=0.51.0 <1.0.0",
|
|
53
|
+
"@azure-tools/typespec-azure-core": ">=0.37.0 <1.0.0",
|
|
54
|
+
"@azure-tools/typespec-client-generator-core": ">=0.37.0 <1.0.0"
|
|
54
55
|
},
|
|
55
56
|
"dependencies": {
|
|
56
57
|
"@autorest/codemodel": "~4.20.0",
|
|
@@ -62,14 +63,21 @@
|
|
|
62
63
|
"@types/lodash": "~4.14.202",
|
|
63
64
|
"@types/js-yaml": "~4.0.9",
|
|
64
65
|
"@types/mocha": "~10.0.6",
|
|
65
|
-
"@types/node": "~20.10.
|
|
66
|
+
"@types/node": "~20.10.3",
|
|
66
67
|
"c8": "~8.0.1",
|
|
67
|
-
"eslint": "~8.
|
|
68
|
+
"eslint": "~8.55.0",
|
|
68
69
|
"mocha": "~10.2.0",
|
|
69
70
|
"rimraf": "~5.0.5",
|
|
70
|
-
"typescript": "~5.3.
|
|
71
|
-
"@typescript-eslint/parser": "~6.
|
|
72
|
-
"@typescript-eslint/eslint-plugin": "~6.
|
|
73
|
-
"eslint-plugin-deprecation": "~2.0.0"
|
|
71
|
+
"typescript": "~5.3.3",
|
|
72
|
+
"@typescript-eslint/parser": "~6.13.2",
|
|
73
|
+
"@typescript-eslint/eslint-plugin": "~6.13.2",
|
|
74
|
+
"eslint-plugin-deprecation": "~2.0.0",
|
|
75
|
+
"@azure-tools/typespec-azure-core": "0.37.0",
|
|
76
|
+
"@azure-tools/typespec-client-generator-core": "0.37.0",
|
|
77
|
+
"@typespec/compiler": "0.51.0",
|
|
78
|
+
"@typespec/http": "0.51.0",
|
|
79
|
+
"@typespec/openapi": "0.51.0",
|
|
80
|
+
"@typespec/rest": "0.51.0",
|
|
81
|
+
"@typespec/versioning": "0.51.0"
|
|
74
82
|
}
|
|
75
83
|
}
|
package/readme.md
CHANGED
|
@@ -4,7 +4,7 @@ Install [Node.js](https://nodejs.org/en/download/) 16 or above. (Verify by `node
|
|
|
4
4
|
|
|
5
5
|
Install [Java](https://docs.microsoft.com/java/openjdk/download) 11 or above. (Verify by `java --version`)
|
|
6
6
|
|
|
7
|
-
Install [TypeSpec](https://github.com/microsoft/typespec/) 0.
|
|
7
|
+
Install [TypeSpec](https://github.com/microsoft/typespec/) 0.51.
|
|
8
8
|
|
|
9
9
|
# Initialize TypeSpec Project
|
|
10
10
|
|
|
index e52ec43..796e61a 100644
|
|
|
Binary file
|