update dependencies

This commit is contained in:
Folling 2025-01-02 09:39:58 +01:00
parent e6233cf3f2
commit ef27673846
No known key found for this signature in database
21 changed files with 800 additions and 370 deletions

View file

@ -31,24 +31,27 @@ enum IkarusErrorInfo {
/// \brief The client provided a non-existent resource.
/// Example: Passing an entity to a function after it has been deleted.
IkarusErrorInfo_Client_NonExistent = 0x01000003,
/// \brief The client provided a resource which exists but is not linked to the current context.
/// Example: Passing a property that isn't linked to the current entity.
IkarusErrorInfo_Client_NotLinked = 0x01000004,
/// \brief The client provided an index that was out of bounds for some array.
/// Example: Passing the index 3 for an `IkarusToggleValue` with size 3.
IkarusErrorInfo_Client_IndexOutOfBounds = 0x01000004,
IkarusErrorInfo_Client_IndexOutOfBounds = 0x01000005,
/// \brief The client provided a numeric value that was out of bounds
/// Example: Passing the value 2^32 to an i32 (might be passed as a string).
IkarusErrorInfo_Client_ValueOutOfBounds = 0x01000005,
IkarusErrorInfo_Client_ValueOutOfBounds = 0x01000006,
/// \brief The client provided invalid input that doesn't fit in any of the other categories.
/// Example: Passing an empty/blank string for a string that must be
/// non-empty/-blank.
IkarusErrorInfo_Client_InvalidInput = 0x01000006,
IkarusErrorInfo_Client_InvalidInput = 0x01000007,
/// \brief The client provided valid data in an invalid format.
/// Example: Passing a malformed JSON string.
IkarusErrorInfo_Client_InvalidFormat = 0x01000007,
IkarusErrorInfo_Client_InvalidFormat = 0x01000008,
/// \brief The client violated a constraint.
/// \details This error is most likely caused by clients.
/// Example: A user tries to set the age of a character to a value outside
/// its specified range.
IkarusErrorInfo_Client_ConstraintViolated = 0x10000008,
IkarusErrorInfo_Client_ConstraintViolated = 0x10000009,
// 0x02 reserved for dependency errors