@azure-tools/typespec-azure-resource-manager 0.33.0-dev.1 → 0.33.0-dev.3

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.
@@ -41,7 +41,7 @@ interface Operations {
41
41
  * @template TBaseParameters The http parameters that are part of the request
42
42
  *
43
43
  */
44
- @deprecated("Use Azure.ResourceManager.TrackedResourceOperations instead")
44
+ #deprecated "Use Azure.ResourceManager.TrackedResourceOperations instead"
45
45
  interface ResourceOperations<
46
46
  TResource extends ArmResource,
47
47
  TProperties extends TypeSpec.Reflection.Model,
@@ -154,9 +154,9 @@ alias ArmResourceCreateOrReplaceAsync<
154
154
  */
155
155
  alias ArmTagsPatchAsync<
156
156
  TResource extends ArmResource,
157
- TProperties extends object,
157
+ TProperties extends {} = TagsUpdateModel<TResource>,
158
158
  TBaseParameters = BaseParameters<TResource>
159
- > = ArmCustomPatchAsync<TResource, TagsUpdateModel<TResource>, TBaseParameters>;
159
+ > = ArmCustomPatchAsync<TResource, TProperties, TBaseParameters>;
160
160
 
161
161
  /**
162
162
  * A long-running resource update using the items from the resource marked with visibility "update"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@azure-tools/typespec-azure-resource-manager",
3
- "version": "0.33.0-dev.1",
3
+ "version": "0.33.0-dev.3",
4
4
  "author": "Microsoft Corporation",
5
5
  "description": "TypeSpec Azure Resource Manager library",
6
6
  "homepage": "https://azure.github.io/typespec-azure",