fix(all): Libraries update.

This commit is contained in:
Rodrigo Rodriguez 2024-05-25 21:53:21 -03:00
parent 2dcde51c95
commit 9d3d29d0c1

View file

@ -766,6 +766,9 @@ ENDPOINT_UPDATE=true
if (!value){
value = instance['dataValues'][name];
}
if (!value){
value = instance[name];
}
}
}
@ -784,6 +787,7 @@ ENDPOINT_UPDATE=true
return new Number(value ? value : defaultValue ? defaultValue : 0).valueOf();
}
return value ?? defaultValue;
}