@azure-tools/typespec-azure-core 0.63.0-dev.5 → 0.63.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/lib/models.tsp +3 -3
- package/package.json +12 -13
package/lib/models.tsp
CHANGED
|
@@ -301,7 +301,7 @@ scalar uuid extends string;
|
|
|
301
301
|
* 129.144.50.56
|
|
302
302
|
* ```
|
|
303
303
|
*/
|
|
304
|
-
#suppress "@azure-tools/typespec-autorest/
|
|
304
|
+
#suppress "@azure-tools/typespec-autorest/unknown-format" "Foundation."
|
|
305
305
|
@format("ipV4Address")
|
|
306
306
|
scalar ipV4Address extends string;
|
|
307
307
|
|
|
@@ -316,7 +316,7 @@ scalar ipV4Address extends string;
|
|
|
316
316
|
* 2001:db8:3333:4444:CCCC:DDDD:EEEE:FFFF
|
|
317
317
|
* ```
|
|
318
318
|
*/
|
|
319
|
-
#suppress "@azure-tools/typespec-autorest/
|
|
319
|
+
#suppress "@azure-tools/typespec-autorest/unknown-format" "Foundation."
|
|
320
320
|
@format("ipV6Address")
|
|
321
321
|
scalar ipV6Address extends string;
|
|
322
322
|
|
|
@@ -332,7 +332,7 @@ scalar ipV6Address extends string;
|
|
|
332
332
|
* ETag: "675af34563dc-tr34"
|
|
333
333
|
* ```
|
|
334
334
|
*/
|
|
335
|
-
#suppress "@azure-tools/typespec-autorest/
|
|
335
|
+
#suppress "@azure-tools/typespec-autorest/unknown-format" "Foundation."
|
|
336
336
|
@format("eTag")
|
|
337
337
|
scalar eTag extends string;
|
|
338
338
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@azure-tools/typespec-azure-core",
|
|
3
|
-
"version": "0.63.
|
|
3
|
+
"version": "0.63.1",
|
|
4
4
|
"author": "Microsoft Corporation",
|
|
5
5
|
"description": "TypeSpec Azure Core library",
|
|
6
6
|
"homepage": "https://azure.github.io/typespec-azure",
|
|
@@ -47,27 +47,26 @@
|
|
|
47
47
|
"!dist/test/**"
|
|
48
48
|
],
|
|
49
49
|
"peerDependencies": {
|
|
50
|
-
"@typespec/compiler": "^1.
|
|
51
|
-
"@typespec/http": "^1.
|
|
52
|
-
"@typespec/rest": "^0.
|
|
50
|
+
"@typespec/compiler": "^1.7.0",
|
|
51
|
+
"@typespec/http": "^1.7.0",
|
|
52
|
+
"@typespec/rest": "^0.77.0"
|
|
53
53
|
},
|
|
54
54
|
"devDependencies": {
|
|
55
55
|
"@types/node": "~24.10.1",
|
|
56
|
-
"@typespec/compiler": "^1.6.0",
|
|
57
|
-
"@typespec/http": "^1.6.0",
|
|
58
|
-
"@typespec/library-linter": "^0.76.0 || >=0.77.0-dev <0.77.0",
|
|
59
|
-
"@typespec/openapi": "^1.6.0",
|
|
60
|
-
"@typespec/rest": "^0.76.0 || >=0.77.0-dev <0.77.0",
|
|
61
|
-
"@typespec/tspd": "^0.73.1 || >=0.74.0-dev <0.74.0",
|
|
62
|
-
"@typespec/versioning": "^0.76.0 || >=0.77.0-dev <0.77.0",
|
|
63
56
|
"@vitest/coverage-v8": "^4.0.4",
|
|
64
57
|
"@vitest/ui": "^4.0.4",
|
|
65
58
|
"c8": "^10.1.3",
|
|
66
59
|
"rimraf": "~6.1.2",
|
|
67
60
|
"typescript": "~5.9.2",
|
|
68
|
-
"vitest": "^4.0.4"
|
|
61
|
+
"vitest": "^4.0.4",
|
|
62
|
+
"@typespec/compiler": "^1.7.0",
|
|
63
|
+
"@typespec/openapi": "^1.7.0",
|
|
64
|
+
"@typespec/http": "^1.7.0",
|
|
65
|
+
"@typespec/library-linter": "^0.77.0",
|
|
66
|
+
"@typespec/rest": "^0.77.0",
|
|
67
|
+
"@typespec/tspd": "^0.73.2",
|
|
68
|
+
"@typespec/versioning": "^0.77.0"
|
|
69
69
|
},
|
|
70
|
-
"dependencies": {},
|
|
71
70
|
"scripts": {
|
|
72
71
|
"clean": "rimraf ./dist ./temp",
|
|
73
72
|
"build": "pnpm run gen-extern-signature && tsc -p . && pnpm run lint-typespec-library",
|