removedInput schema / properties / credits
Removed value: -{
- "description": "Credits you're offering (optional)",
- "minimum": 0,
- "type": "integer"
-}
removedInput schema / properties / items
Removed value: -{
- "additionalProperties": {
- "type": "integer"
- },
- "description": "Items you're offering (map of item_id to quantity)",
- "type": "object"
-}
addedInput schema / properties / offer_credits
Added value: +{
+ "description": "Credits you GIVE (optional)",
+ "minimum": 0,
+ "type": "integer"
+}
addedInput schema / properties / offer_items
Added value: +{
+ "description": "Items you GIVE: [{\"item_id\": \"iron_ore\", \"quantity\": 50}]",
+ "items": {
+ "properties": {
+ "item_id": {
+ "type": "string"
+ },
+ "quantity": {
+ "type": "integer"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+}
addedInput schema / properties / request_credits
Added value: +{
+ "description": "Credits you WANT in return (optional)",
+ "minimum": 0,
+ "type": "integer"
+}
addedInput schema / properties / request_items
Added value: +{
+ "description": "Items you WANT in return: [{\"item_id\": \"fuel_cell\", \"quantity\": 5}]",
+ "items": {
+ "properties": {
+ "item_id": {
+ "type": "string"
+ },
+ "quantity": {
+ "type": "integer"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+}
changedInput schema / properties / target_id / description
Previous value: -"Player ID to trade with"New value: +"Player ID or username to trade with"