feat: fix boolean null in registry action data

This commit is contained in:
wznln
2025-05-06 20:33:32 +08:00
parent e373220ce3
commit de28c50d8b

View File

@@ -566,6 +566,7 @@ basic_type_map = {
'float32': {'type': 'number'},
'float64': {'type': 'number'},
'string': {'type': 'string'},
'boolean': {'type': 'boolean'},
'char': {'type': 'string', 'maxLength': 1},
'byte': {'type': 'integer', 'minimum': 0, 'maximum': 255},
}