@azure-tools/typespec-azure-core 0.30.0-dev.20 → 0.30.0-dev.21

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.
@@ -27,7 +27,12 @@ op RpcOperation<
27
27
  TResponse,
28
28
  Traits extends object = {},
29
29
  TErrorResponse = Azure.Core.Foundations.ErrorResponse
30
- > is Foundations.Operation<TParams, TResponse, Traits, TErrorResponse>;
30
+ > is Foundations.Operation<
31
+ TParams & TraitProperties<Traits, TraitLocation.Parameters>,
32
+ TResponse & TraitProperties<Traits, TraitLocation.Response>,
33
+ Traits,
34
+ TErrorResponse
35
+ >;
31
36
 
32
37
  // Standard Resource Lifecycle Operations
33
38
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@azure-tools/typespec-azure-core",
3
- "version": "0.30.0-dev.20",
3
+ "version": "0.30.0-dev.21",
4
4
  "author": "Microsoft Corporation",
5
5
  "description": "TypeSpec Azure Core library",
6
6
  "homepage": "https://azure.github.io/typespec-azure",