Update machine-api spec (#3346)

* YOYO NEW API SPEC!

* New machine-api types

---------

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
zoo-github-actions-auth[bot]
2024-08-11 18:04:30 -07:00
committed by GitHub
parent e86a5622c8
commit 4b9f71c994
2 changed files with 3 additions and 3 deletions

View File

@ -79,7 +79,8 @@
"$ref": "#/components/schemas/Result"
}
],
"description": "The result of the info command."
"description": "The result of the info command.",
"nullable": true
},
"sequence_id": {
"allOf": [
@ -93,7 +94,6 @@
"required": [
"command",
"module",
"result",
"sequence_id"
],
"type": "object"

View File

@ -110,7 +110,7 @@ export interface components {
/** @description The reason of the info command. */
reason?: components['schemas']['Reason'] | null
/** @description The result of the info command. */
result: components['schemas']['Result']
result?: components['schemas']['Result'] | null
/** @description The sequence id. */
sequence_id: components['schemas']['SequenceId']
} & {