-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: remove "empty object" type from schema #353
Conversation
This is blocking updates downstream. |
Hey @wolfy1339, Thanks for opening this PR and being on top of this. I've tried to quickly catch up on the root cause of the issue. Checking the failing test, I see the inferred TS type giving problems are: // ...
type Without<T, U> = { [P in Exclude<keyof T, keyof U>]?: never };
type XOR<T, U> = T | U extends object
? (Without<T, U> & U) | (Without<U, T> & T)
: T | U;
type OneOf<T extends any[]> = T extends [infer Only]
? Only
: T extends [infer A, infer B, ...infer Rest]
? OneOf<[XOR<A, B>, ...Rest]>
: never;
// ...
files?: {
[key: string]:
| OneOf<
[
{
/** @description The new content of the file. */
content?: string;
/** @description The new filename for the file. */
filename?: string | null;
},
Record<string, never>
]
>
| undefined;
}; The associated schema I find in "files": {
"description": "The gist files to be updated, renamed, or deleted. Each `key` must match the current filename\n(including extension) of the targeted gist file. For example: `hello.py`.\n\nTo delete a file, set the whole file to null. For example: `hello.py : null`.",
"example": {
"hello.rb": {
"content": "blah",
"filename": "goodbye.rb"
}
},
"type": "object",
"additionalProperties": {
"type": "object",
"nullable": true,
"properties": {
"content": {
"description": "The new content of the file.",
"type": "string"
},
"filename": {
"description": "The new filename for the file.",
"type": "string",
"nullable": true
}
},
"anyOf": [
{
"required": [
"content"
]
},
{
"required": [
"filename"
]
},
{
"type": "object",
"maxProperties": 0
}
]
}
} Should we try to fix the generated TS type instead of excluding part of the schema? Here's a TS playground link with the issue. A simple solution that comes to my mind is to move the files?: {
[key: string]:
| OneOf<
[
{
/** @description The new content of the file. */
content?: string;
/** @description The new filename for the file. */
filename?: string | null;
},
- Record<string, never>
]
>
+ | Record<string, never>
| undefined;
}; |
The way the override for the schema is made, an empty object is possible already since none of the properties are set as required. Which makes it equivalent to the original schema |
Also see #349 for more context |
Oh! It's true! I should have double-checked that in my first TS Playground example. |
🎉 This PR is included in version 11.1.2 🎉 The release is available on: Your semantic-release bot 📦🚀 |
See https://github.com/octokit/plugin-rest-endpoint-methods.js/actions/runs/4896632745/jobs/8743680367?pr=632#step:5:21
Behavior
Before the change?
After the change?
Other information
Additional info
Pull request checklist
Does this introduce a breaking change?
Please see our docs on breaking changes to help!
Type: Breaking change
label)If
Yes
, what's the impact:Pull request type
Please add the corresponding label for change this PR introduces:
Type: Bug