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: .github/workflows/issue-stale.yml
+2-2
Original file line number
Diff line number
Diff line change
@@ -10,11 +10,11 @@ jobs:
10
10
steps:
11
11
- uses: actions/stale@v9
12
12
with:
13
-
stale-issue-message: "This issue is stale because it has been open for 90 days with no activity. If there is no activity in the next 7 days, the issue will be closed."
13
+
stale-issue-message: "This issue is stale because it has been open for 180 days with no activity. If there is no activity in the next 7 days, the issue will be closed."
14
14
close-issue-message: "This issue was closed because it has been inactive for 7 days since being marked as stale. Please open a new issue if you believe you are encountering a related problem."
<palign="center"><ahref="https://github.com/customerio"><imgwidth="64"height="64"alt="@customerio on GitHub"src="https://avatars.githubusercontent.com/u/1152079?s=200&v=4"></a>
28
-
<ahref="https://github.com/shaunpersad"><imgwidth="64"height="64"alt="@shaunpersad on GitHub"src="https://avatars.githubusercontent.com/u/1702976?s=52&v=4"></a><ahref="https://github.com/yoshi2no"><imgwidth="64"height="64"alt="@yoshi2no on GitHub"src="https://avatars.githubusercontent.com/u/57059705?v=4"></a></p>
30
+
<palign="center">
31
+
<ahref="https://github.com/customerio"><imgwidth="64"height="64"alt="@customerio on GitHub"src="https://avatars.githubusercontent.com/u/1152079?s=200&v=4"></a>
32
+
<ahref="https://github.com/shaunpersad"><imgwidth="64"height="64"alt="@shaunpersad on GitHub"src="https://avatars.githubusercontent.com/u/1702976?s=52&v=4"></a>
33
+
<ahref="https://github.com/yoshi2no"><imgwidth="64"height="64"alt="@yoshi2no on GitHub"src="https://avatars.githubusercontent.com/u/57059705?v=4"></a>
34
+
<ahref="https://github.com/siketyan"><imgwidth="64"height="64"alt="@siketyan on GitHub"src="https://avatars.githubusercontent.com/u/12772118?v=4"></a>
35
+
</p>
29
36
30
37
Become a sponsor by supporting this project on [OpenCollective](https://opencollective.com/openapi-ts)!
Copy file name to clipboardExpand all lines: docs/cli.md
+7-5
Original file line number
Diff line number
Diff line change
@@ -65,7 +65,7 @@ In previous versions globbing was supported, but that has been **deprecated** in
65
65
66
66
## Redocly config
67
67
68
-
A `redocly.yaml` file isn’t required to use openapi-typescript. By default it extends the `"minimal"` built-in config. But it is recommended if you want to have custom validation rules (or build types for [multiple schemas](#multiple-schemas)). The CLI will try to automatically find a `redocly.yaml` in the root of your project, but you can also provide its location with the `--redoc` flag:
68
+
A `redocly.yaml` file isn’t required to use openapi-typescript. By default it extends the `"minimal"` built-in config. But it is recommended if you want to have custom validation rules (or build types for [multiple schemas](#multiple-schemas)). The CLI will try to automatically find a `redocly.yaml` in the root of your project, but you can also provide its location with the `--redocly` flag:
| `--default-non-nullable` | | `true` | Treat schema objects with default values as non-nullable (with the exception of parameters) |
111
+
| `--default-non-nullable` | | `true` | Treat schema objects with default values as non-nullable (with the exception of parameters) |
112
112
| `--properties-required-by-default` | | `false` | Treat schema objects without `required` as having all properties required. |
113
113
| `--empty-objects-unknown` | | `false` | Allow arbitrary properties for schema objects with no specified properties, and no specified `additionalProperties` |
114
114
| `--enum` | | `false` | Generate true [TS enums](https://www.typescriptlang.org/docs/handbook/enums.html) rather than string unions. |
0 commit comments