You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+12Lines changed: 12 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -77,6 +77,18 @@ npx openapi-to-cli onboard \
77
77
78
78
In practice this improves compatibility with APIs that define inputs outside simple path/query parameters, especially for `POST`, `PUT`, and `PATCH` operations.
79
79
80
+
81
+
### Multi-file specs and richer help
82
+
83
+
`ocli` now works better with larger, more structured API descriptions:
84
+
85
+
- external `$ref` resolution across multiple local or remote OpenAPI / Swagger documents
86
+
- support for multi-document specs that split paths, parameters, and request bodies into separate files
87
+
- richer `--help` output with schema hints such as `enum`, `default`, `nullable`, and `oneOf`
88
+
- better handling of composed schemas that use `allOf` for shared request object structure
89
+
90
+
In practice this improves compatibility with modular specs and makes generated commands easier to use without opening the original OpenAPI document.
0 commit comments