typespec-vscode 0.64.0-dev.8 → 0.65.0-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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "typespec-vscode",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.65.0-dev.0",
|
|
4
4
|
"author": "Microsoft Corporation",
|
|
5
5
|
"description": "TypeSpec language support for VS Code",
|
|
6
6
|
"homepage": "https://typespec.io",
|
|
@@ -108,104 +108,6 @@
|
|
|
108
108
|
],
|
|
109
109
|
"default": "off",
|
|
110
110
|
"description": "Define whether/how the TypeSpec language server should send traces to client. For the traces to show properly in vscode Output, make sure 'Log Level' is also set to 'Trace' so that they won't be filtered at client side, which can be set through 'Developer: Set Log Level...' command."
|
|
111
|
-
},
|
|
112
|
-
"typespec.generateCode.emitters": {
|
|
113
|
-
"scope": "window",
|
|
114
|
-
"type": "array",
|
|
115
|
-
"items": {
|
|
116
|
-
"type": "object",
|
|
117
|
-
"properties": {
|
|
118
|
-
"language": {
|
|
119
|
-
"type": "string",
|
|
120
|
-
"enum": [
|
|
121
|
-
".NET",
|
|
122
|
-
"Java",
|
|
123
|
-
"JavaScript",
|
|
124
|
-
"Python",
|
|
125
|
-
"Go",
|
|
126
|
-
"OpenAPI3",
|
|
127
|
-
"ProtoBuf",
|
|
128
|
-
"JsonSchema"
|
|
129
|
-
],
|
|
130
|
-
"description": "Define the language the emitter will emit."
|
|
131
|
-
},
|
|
132
|
-
"package": {
|
|
133
|
-
"type": "string",
|
|
134
|
-
"description": "Define the emitter package.\n\nExample (with version): @typespec/http-client-csharp@1.0.0\n\nExample (without version): @typespec/http-client-csharp"
|
|
135
|
-
},
|
|
136
|
-
"sourceRepo": {
|
|
137
|
-
"type": "string",
|
|
138
|
-
"description": "Define the source repository of the emitter package."
|
|
139
|
-
},
|
|
140
|
-
"requisites": {
|
|
141
|
-
"type": "array",
|
|
142
|
-
"items": {
|
|
143
|
-
"type": "string"
|
|
144
|
-
},
|
|
145
|
-
"description": "Define the requisites of the emitter package."
|
|
146
|
-
},
|
|
147
|
-
"kind": {
|
|
148
|
-
"type": "string",
|
|
149
|
-
"enum": [
|
|
150
|
-
"client",
|
|
151
|
-
"server",
|
|
152
|
-
"openapi"
|
|
153
|
-
],
|
|
154
|
-
"description": "Define the emitter kind."
|
|
155
|
-
}
|
|
156
|
-
}
|
|
157
|
-
},
|
|
158
|
-
"default": [
|
|
159
|
-
{
|
|
160
|
-
"language": ".NET",
|
|
161
|
-
"package": "@typespec/http-client-csharp",
|
|
162
|
-
"sourceRepo": "https://github.com/microsoft/typespec/tree/main/packages/http-client-csharp",
|
|
163
|
-
"requisites": [
|
|
164
|
-
".NET 8.0 SDK"
|
|
165
|
-
],
|
|
166
|
-
"kind": "client"
|
|
167
|
-
},
|
|
168
|
-
{
|
|
169
|
-
"language": "Java",
|
|
170
|
-
"package": "@typespec/http-client-java",
|
|
171
|
-
"sourceRepo": "https://github.com/microsoft/typespec/tree/main/packages/http-client-java",
|
|
172
|
-
"requisites": [
|
|
173
|
-
"Java 17 or above",
|
|
174
|
-
"Maven"
|
|
175
|
-
],
|
|
176
|
-
"kind": "client"
|
|
177
|
-
},
|
|
178
|
-
{
|
|
179
|
-
"language": "JavaScript",
|
|
180
|
-
"package": "@azure-tools/typespec-ts",
|
|
181
|
-
"sourceRepo": "https://github.com/Azure/autorest.typescript/tree/main/packages/typespec-ts",
|
|
182
|
-
"kind": "client"
|
|
183
|
-
},
|
|
184
|
-
{
|
|
185
|
-
"language": "Python",
|
|
186
|
-
"package": "@typespec/http-client-python",
|
|
187
|
-
"sourceRepo": "https://github.com/microsoft/typespec/tree/main/packages/http-client-python",
|
|
188
|
-
"kind": "client"
|
|
189
|
-
},
|
|
190
|
-
{
|
|
191
|
-
"language": ".NET",
|
|
192
|
-
"package": "@typespec/http-server-csharp",
|
|
193
|
-
"sourceRepo": "https://github.com/microsoft/typespec/tree/main/packages/http-server-csharp",
|
|
194
|
-
"kind": "server"
|
|
195
|
-
},
|
|
196
|
-
{
|
|
197
|
-
"language": "JavaScript",
|
|
198
|
-
"package": "@typespec/http-server-javascript",
|
|
199
|
-
"sourceRepo": "https://github.com/microsoft/typespec/tree/main/packages/http-server-javascript",
|
|
200
|
-
"kind": "server"
|
|
201
|
-
},
|
|
202
|
-
{
|
|
203
|
-
"language": "OpenAPI3",
|
|
204
|
-
"package": "@typespec/openapi3",
|
|
205
|
-
"sourceRepo": "https://github.com/microsoft/typespec/tree/main/packages/openapi3",
|
|
206
|
-
"kind": "openapi"
|
|
207
|
-
}
|
|
208
|
-
]
|
|
209
111
|
}
|
|
210
112
|
}
|
|
211
113
|
}
|
|
@@ -320,8 +222,8 @@
|
|
|
320
222
|
"@types/node": "~22.7.9",
|
|
321
223
|
"@types/vscode": "~1.94.0",
|
|
322
224
|
"@types/semver": "^7.5.8",
|
|
323
|
-
"@typespec/compiler": "~0.
|
|
324
|
-
"@typespec/internal-build-utils": "~0.
|
|
225
|
+
"@typespec/compiler": "~0.64.0 || >=0.65.0-dev <0.65.0",
|
|
226
|
+
"@typespec/internal-build-utils": "~0.64.0 || >=0.65.0-dev <0.65.0",
|
|
325
227
|
"@vitest/coverage-v8": "^2.1.5",
|
|
326
228
|
"@vitest/ui": "^2.1.2",
|
|
327
229
|
"@vscode/test-web": "^0.0.62",
|
|
index 680bc99..138300d 100644
|
|
|
Binary file
|