Fix mapping for some unexpected types

This commit is contained in:
Pascal Birchler 2025-07-16 16:30:00 +02:00
parent dcccfc04ea
commit ef3f5500ec
No known key found for this signature in database
GPG key ID: 0DECE73DD74E8B2F

View file

@ -265,8 +265,10 @@ readonly class RestApi {
$mapping = array(
'string' => 'string',
'integer' => 'integer',
'int' => 'integer',
'number' => 'integer',
'boolean' => 'boolean',
'bool' => 'boolean',
);

// Validated types: