@azure-tools/typespec-azure-core 0.29.0-dev.1 → 0.29.0-dev.2

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.
Files changed (2) hide show
  1. package/lib/models.tsp +9 -3
  2. package/package.json +1 -1
package/lib/models.tsp CHANGED
@@ -64,7 +64,9 @@ model MaxPageSizeQueryParameter {
64
64
 
65
65
  @doc("Provides the standard 'orderby' query parameter for list operations.")
66
66
  model OrderByQueryParameter {
67
- @query
67
+ @query({
68
+ format: "multi",
69
+ })
68
70
  @doc("Expressions that specify the order of returned results.")
69
71
  orderby?: string[];
70
72
  }
@@ -78,14 +80,18 @@ model FilterQueryParameter {
78
80
 
79
81
  @doc("Provides the standard 'select' query parameter for list operations.")
80
82
  model SelectQueryParameter {
81
- @query
83
+ @query({
84
+ format: "multi",
85
+ })
82
86
  @doc("Select the specified fields to be included in the response.")
83
87
  select?: string[];
84
88
  }
85
89
 
86
90
  @doc("Provides the standard 'expand' query parameter for list operations.")
87
91
  model ExpandQueryParameter {
88
- @query
92
+ @query({
93
+ format: "multi",
94
+ })
89
95
  @doc("Expand the indicated resources into the response.")
90
96
  expand?: string[];
91
97
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@azure-tools/typespec-azure-core",
3
- "version": "0.29.0-dev.1",
3
+ "version": "0.29.0-dev.2",
4
4
  "author": "Microsoft Corporation",
5
5
  "description": "TypeSpec Azure Core library",
6
6
  "homepage": "https://azure.github.io/typespec-azure",