addedInput schema / properties / balance / anyOf
Added value: +[
+ {
+ "pattern": "^-?\\d+(\\.\\d{1,18})?$",
+ "type": "string"
+ },
+ {
+ "type": "number"
+ }
+]
changedInput schema / properties / balance / description
Previous value: -"Updated balance of the crypto account."New value: +"New balance as a numeric string with up to 18 decimal places. Pass a string to avoid losing precision."
removedInput schema / properties / balance / type
Removed value: -"number"
changedInput schema / properties / crypto_id / description
Previous value: -"ID of the manual crypto asset to update. Synced crypto assets cannot be updated."New value: +"Id of the manual crypto balance to update. Synced crypto balances cannot be updated."
changedInput schema / properties / crypto_id / type
Previous value: -"number"New value: +"integer"
removedInput schema / properties / currency
Removed value: -{
- "description": "Optional supported cryptocurrency code.",
- "type": "string"
-}
addedInput schema / properties / display_name / anyOf
Added value: +[
+ {
+ "maxLength": 45,
+ "minLength": 1,
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+]
changedInput schema / properties / display_name / description
Previous value: -"Optional display name for the account."New value: +"New display name for the crypto asset. Pass null to clear it."
removedInput schema / properties / display_name / maxLength
Removed value: -25
removedInput schema / properties / display_name / type
Removed value: -"string"
addedInput schema / properties / institution_name / anyOf
Added value: +[
+ {
+ "maxLength": 50,
+ "minLength": 1,
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+]
changedInput schema / properties / institution_name / description
Previous value: -"Optional provider that holds the asset."New value: +"New institution or wallet provider display name. Pass null to clear it."
removedInput schema / properties / institution_name / maxLength
Removed value: -50
removedInput schema / properties / institution_name / type
Removed value: -"string"
changedInput schema / properties / name / description
Previous value: -"Optional official or full name of the account."New value: +"New name for the crypto asset."
addedInput schema / properties / name / minLength
Added value: +1
changedInput schema / required
Previous value: -[
- "crypto_id",
- "balance"
-]New value: +[
+ "crypto_id"
+]