@azure-tools/typespec-azure-core 0.54.0-dev.3 → 0.54.0-dev.5
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/legacy.tsp +14 -0
- package/package.json +7 -7
package/lib/legacy.tsp
CHANGED
|
@@ -4,6 +4,20 @@ namespace Azure.Core.Legacy;
|
|
|
4
4
|
|
|
5
5
|
/**
|
|
6
6
|
* A scalar type representing a next link that requires formatting with parameters to be used.
|
|
7
|
+
*
|
|
8
|
+
* @example
|
|
9
|
+
* ```typespec
|
|
10
|
+
* model ListCertificateOptions {
|
|
11
|
+
* includePending?: string;
|
|
12
|
+
* }
|
|
13
|
+
* model Certificate {
|
|
14
|
+
* name: string;
|
|
15
|
+
* }
|
|
16
|
+
* model Page {
|
|
17
|
+
* @items items: Certificate[];
|
|
18
|
+
* @nextLink nextLink: Azure.Core.Legacy.parameterizedNextLink<[ListCertificateOptions.includePending]>;
|
|
19
|
+
* }
|
|
20
|
+
* ```
|
|
7
21
|
*/
|
|
8
22
|
@Azure.Core.Foundations.Private.parameterizedNextLinkConfig(TypeSpec.Reflection.ModelProperty[])
|
|
9
23
|
scalar parameterizedNextLink<ParameterizedParams extends TypeSpec.Reflection.ModelProperty[]>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@azure-tools/typespec-azure-core",
|
|
3
|
-
"version": "0.54.0-dev.
|
|
3
|
+
"version": "0.54.0-dev.5",
|
|
4
4
|
"author": "Microsoft Corporation",
|
|
5
5
|
"description": "TypeSpec Azure Core library",
|
|
6
6
|
"homepage": "https://azure.github.io/typespec-azure",
|
|
@@ -40,24 +40,24 @@
|
|
|
40
40
|
"!dist/test/**"
|
|
41
41
|
],
|
|
42
42
|
"peerDependencies": {
|
|
43
|
-
"@typespec/compiler": "^0.67.
|
|
43
|
+
"@typespec/compiler": "^0.67.2 || >=0.68.0-dev <0.68.0",
|
|
44
44
|
"@typespec/http": "^0.67.1 || >=0.68.0-dev <0.68.0",
|
|
45
45
|
"@typespec/rest": "^0.67.1 || >=0.68.0-dev <0.68.0"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
|
-
"@types/node": "~22.13.
|
|
49
|
-
"@typespec/compiler": "^0.67.
|
|
48
|
+
"@types/node": "~22.13.11",
|
|
49
|
+
"@typespec/compiler": "^0.67.2 || >=0.68.0-dev <0.68.0",
|
|
50
50
|
"@typespec/http": "^0.67.1 || >=0.68.0-dev <0.68.0",
|
|
51
51
|
"@typespec/library-linter": "^0.67.1 || >=0.68.0-dev <0.68.0",
|
|
52
52
|
"@typespec/openapi": "^0.67.1 || >=0.68.0-dev <0.68.0",
|
|
53
53
|
"@typespec/rest": "^0.67.1 || >=0.68.0-dev <0.68.0",
|
|
54
54
|
"@typespec/versioning": "^0.67.1 || >=0.68.0-dev <0.68.0",
|
|
55
|
-
"@vitest/coverage-v8": "^3.0.
|
|
56
|
-
"@vitest/ui": "^3.0.
|
|
55
|
+
"@vitest/coverage-v8": "^3.0.9",
|
|
56
|
+
"@vitest/ui": "^3.0.9",
|
|
57
57
|
"c8": "^10.1.3",
|
|
58
58
|
"rimraf": "~6.0.1",
|
|
59
59
|
"typescript": "~5.8.2",
|
|
60
|
-
"vitest": "^3.0.
|
|
60
|
+
"vitest": "^3.0.9",
|
|
61
61
|
"@typespec/tspd": "^0.46.0"
|
|
62
62
|
},
|
|
63
63
|
"dependencies": {},
|