@typespec/compiler 0.45.0-dev.13 → 0.45.0-dev.14
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/dist/manifest.js +1 -1
- package/lib/decorators.tsp +5 -0
- package/package.json +1 -1
package/dist/manifest.js
CHANGED
package/lib/decorators.tsp
CHANGED
|
@@ -500,6 +500,11 @@ extern dec withDefaultKeyVisibility(target: Model, visibility: unknown);
|
|
|
500
500
|
*/
|
|
501
501
|
extern dec withUpdateableProperties(target: Model);
|
|
502
502
|
|
|
503
|
+
/**
|
|
504
|
+
* Returns the model with required properties removed.
|
|
505
|
+
*/
|
|
506
|
+
extern dec withOptionalProperties(target: Model);
|
|
507
|
+
|
|
503
508
|
/**
|
|
504
509
|
* Returns the model with any default values removed.
|
|
505
510
|
*/
|