@azure-tools/typespec-azure-resource-manager 0.56.0-dev.4 → 0.56.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/lib/operations.tsp +2 -2
- package/package.json +16 -16
package/lib/operations.tsp
CHANGED
|
@@ -311,7 +311,7 @@ op ArmResourcePatchAsync<
|
|
|
311
311
|
@doc("Update a {name}", Resource)
|
|
312
312
|
@armResourceUpdate(Resource)
|
|
313
313
|
@Private.enforceConstraint(Resource, Foundations.Resource)
|
|
314
|
-
@patch
|
|
314
|
+
@patch(#{ implicitOptionality: true })
|
|
315
315
|
op ArmCustomPatchAsync<
|
|
316
316
|
Resource extends Foundations.Resource,
|
|
317
317
|
PatchModel extends TypeSpec.Reflection.Model = TagsUpdateModel<Resource>,
|
|
@@ -376,7 +376,7 @@ op ArmResourcePatchSync<
|
|
|
376
376
|
@doc("Update a {name}", Resource)
|
|
377
377
|
@armResourceUpdate(Resource)
|
|
378
378
|
@Private.enforceConstraint(Resource, Foundations.Resource)
|
|
379
|
-
@patch
|
|
379
|
+
@patch(#{ implicitOptionality: true })
|
|
380
380
|
op ArmCustomPatchSync<
|
|
381
381
|
Resource extends Foundations.Resource,
|
|
382
382
|
PatchModel extends TypeSpec.Reflection.Model = TagsUpdateModel<Resource>,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@azure-tools/typespec-azure-resource-manager",
|
|
3
|
-
"version": "0.56.0
|
|
3
|
+
"version": "0.56.0",
|
|
4
4
|
"author": "Microsoft Corporation",
|
|
5
5
|
"description": "TypeSpec Azure Resource Manager library",
|
|
6
6
|
"homepage": "https://azure.github.io/typespec-azure",
|
|
@@ -44,30 +44,30 @@
|
|
|
44
44
|
"pluralize": "^8.0.0"
|
|
45
45
|
},
|
|
46
46
|
"peerDependencies": {
|
|
47
|
-
"@azure-tools/typespec-azure-core": "^0.
|
|
48
|
-
"@typespec/compiler": "^1.0.0
|
|
49
|
-
"@typespec/http": "^1.0.0
|
|
50
|
-
"@typespec/
|
|
51
|
-
"@typespec/
|
|
52
|
-
"@typespec/
|
|
47
|
+
"@azure-tools/typespec-azure-core": "^0.56.0",
|
|
48
|
+
"@typespec/compiler": "^1.0.0",
|
|
49
|
+
"@typespec/http": "^1.0.0",
|
|
50
|
+
"@typespec/rest": "^0.70.0",
|
|
51
|
+
"@typespec/versioning": "^0.70.0",
|
|
52
|
+
"@typespec/openapi": "^1.0.0"
|
|
53
53
|
},
|
|
54
54
|
"devDependencies": {
|
|
55
|
-
"@azure-tools/typespec-azure-core": "^0.55.0 || >=0.56.0-dev <0.56.0",
|
|
56
55
|
"@types/node": "~22.13.11",
|
|
57
56
|
"@types/pluralize": "^0.0.33",
|
|
58
|
-
"@typespec/compiler": "^1.0.0-rc.1",
|
|
59
|
-
"@typespec/http": "^1.0.0-rc.1",
|
|
60
|
-
"@typespec/library-linter": "^0.69.0 || >=0.70.0-dev <0.70.0",
|
|
61
|
-
"@typespec/openapi": "^1.0.0-rc.1",
|
|
62
|
-
"@typespec/rest": "^0.69.0 || >=0.70.0-dev <0.70.0",
|
|
63
|
-
"@typespec/tspd": "^0.69.0 || >=0.70.0-dev <0.70.0",
|
|
64
|
-
"@typespec/versioning": "^0.69.0 || >=0.70.0-dev <0.70.0",
|
|
65
57
|
"@vitest/coverage-v8": "^3.1.2",
|
|
66
58
|
"@vitest/ui": "^3.1.2",
|
|
67
59
|
"c8": "^10.1.3",
|
|
68
60
|
"rimraf": "~6.0.1",
|
|
69
61
|
"typescript": "~5.8.2",
|
|
70
|
-
"vitest": "^3.1.2"
|
|
62
|
+
"vitest": "^3.1.2",
|
|
63
|
+
"@azure-tools/typespec-azure-core": "^0.56.0",
|
|
64
|
+
"@typespec/compiler": "^1.0.0",
|
|
65
|
+
"@typespec/http": "^1.0.0",
|
|
66
|
+
"@typespec/openapi": "^1.0.0",
|
|
67
|
+
"@typespec/library-linter": "^0.70.0",
|
|
68
|
+
"@typespec/rest": "^0.70.0",
|
|
69
|
+
"@typespec/versioning": "^0.70.0",
|
|
70
|
+
"@typespec/tspd": "^0.70.0"
|
|
71
71
|
},
|
|
72
72
|
"scripts": {
|
|
73
73
|
"clean": "rimraf ./dist ./temp",
|