@typespec/http-specs 0.1.0-alpha.3-dev.4 → 0.1.0-alpha.3-dev.5

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@typespec/http-specs",
3
- "version": "0.1.0-alpha.3-dev.4",
3
+ "version": "0.1.0-alpha.3-dev.5",
4
4
  "description": "Spec scenarios and mock apis",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",
@@ -29,6 +29,10 @@ model VisibilityModel {
29
29
  @doc("Required bool, illustrating a delete property.")
30
30
  @visibility("delete")
31
31
  deleteProp: boolean;
32
+
33
+ @doc("Property that does not exist in any payload.")
34
+ @visibility("none")
35
+ noneProp: "none";
32
36
  }
33
37
 
34
38
  /** RoundTrip model with readonly optional properties. */