@azure-tools/typespec-azure-core 0.30.0-dev.26 → 0.30.0-dev.27
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/models.tsp +2 -0
- package/package.json +1 -1
package/lib/models.tsp
CHANGED
|
@@ -82,6 +82,7 @@ model MaxPageSizeQueryParameter {
|
|
|
82
82
|
|
|
83
83
|
@doc("Provides the standard 'orderby' query parameter for list operations.")
|
|
84
84
|
model OrderByQueryParameter {
|
|
85
|
+
#suppress "@azure-tools/typespec-azure-core/prefer-csv-collection-format" "By design"
|
|
85
86
|
@query({
|
|
86
87
|
format: "multi",
|
|
87
88
|
})
|
|
@@ -108,6 +109,7 @@ model SelectQueryParameter {
|
|
|
108
109
|
|
|
109
110
|
@doc("Provides the standard 'expand' query parameter for list operations.")
|
|
110
111
|
model ExpandQueryParameter {
|
|
112
|
+
#suppress "@azure-tools/typespec-azure-core/prefer-csv-collection-format" "By design"
|
|
111
113
|
@query({
|
|
112
114
|
format: "multi",
|
|
113
115
|
})
|
package/package.json
CHANGED