1
0
Fork 0
mirror of https://codeberg.org/demostf/parser.git synced 2026-06-03 10:14:06 +02:00

fix schema for serde_repr usage

This commit is contained in:
Robin Appelman 2024-05-06 15:47:02 +02:00
commit dd3cd6364e
3 changed files with 11 additions and 11 deletions

View file

@ -206,10 +206,10 @@
],
"definitions": {
"BaselineIndex": {
"type": "string",
"type": "integer",
"enum": [
"First",
"Second"
0,
1
]
},
"BitReadStream": {
@ -12993,12 +12993,12 @@
}
},
"UpdateType": {
"type": "string",
"type": "integer",
"enum": [
"Preserve",
"Leave",
"Enter",
"Delete"
0,
1,
2,
3
]
},
"UserCmd": {