changedInput schema / properties / idempotencyKey / description
Previous value: -"v0.7.0: optional key for duplicate protection. A repeat call with the same key within AVITO_MCP_IDEMPOTENCY_TTL_SEC returns the cached result. The same key with different args returns a conflict error — this is safe by design."New value: +"v0.7.0: optional key for duplicate protection. A repeat call with the same key within AVITO_MCP_IDEMPOTENCY_TTL_SEC returns the cached result. The same key with different args returns a conflict error. Keys are stored as bounded SHA-256 fingerprints."
changedInput schema / properties / items / description
Previous value: -"Parcel contents — items (optional)."New value: +"Parcel contents (optional)."
removedInput schema / properties / items / items / additionalProperties
Removed value: -{}
removedInput schema / properties / items / items / description
Removed value: -"See Item in swaggers/delivery.json"
addedInput schema / properties / items / items / properties
Added value: +{
+ "breadcrumbs": {
+ "items": {
+ "properties": {
+ "name": {
+ "maxLength": 255,
+ "type": "string"
+ }
+ },
+ "required": [
+ "name"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "cost": {
+ "maximum": 9007199254740991,
+ "minimum": -9007199254740991,
+ "type": "integer"
+ },
+ "description": {
+ "type": "string"
+ },
+ "dimensions": {
+ "properties": {
+ "values": {
+ "items": {
+ "maximum": 9007199254740991,
+ "minimum": -9007199254740991,
+ "type": "integer"
+ },
+ "maxItems": 3,
+ "minItems": 3,
+ "type": "array"
+ }
+ },
+ "type": "object"
+ },
+ "quantity": {
+ "maximum": 10,
+ "minimum": 1,
+ "type": "integer"
+ },
+ "tags": {
+ "items": {
+ "const": "TRY_ON",
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "title": {
+ "type": "string"
+ },
+ "weight": {
+ "properties": {
+ "value": {
+ "maximum": 9007199254740991,
+ "minimum": -9007199254740991,
+ "type": "integer"
+ }
+ },
+ "type": "object"
+ }
+}
removedInput schema / properties / items / items / propertyNames
Removed value: -{
- "type": "string"
-}
addedInput schema / properties / items / items / required
Added value: +[
+ "quantity"
+]
removedInput schema / properties / options / additionalProperties
Removed value: -{}
addedInput schema / properties / options / properties
Added value: +{
+ "registrationUrl": {
+ "type": "string"
+ }
+}
removedInput schema / properties / options / propertyNames
Removed value: -{
- "type": "string"
-}
removedInput schema / properties / receiver / additionalProperties
Removed value: -{}
changedInput schema / properties / receiver / description
Previous value: -"Receiver: full name, phone, address/pickup-point code (optional)."New value: +"Receiver delivery options (optional)."
addedInput schema / properties / receiver / properties
Added value: +{
+ "delivery": {
+ "properties": {
+ "courier": {
+ "properties": {
+ "address": {
+ "properties": {
+ "addressRow": {
+ "type": "string"
+ },
+ "coordinates": {
+ "properties": {
+ "latitude": {
+ "maximum": 90,
+ "minimum": -90,
+ "type": "number"
+ },
+ "longitude": {
+ "maximum": 180,
+ "minimum": -180,
+ "type": "number"
+ }
+ },
+ "required": [
+ "latitude",
+ "longitude"
+ ],
+ "type": "object"
+ },
+ "details": {
+ "properties": {
+ "flat": {
+ "type": "string"
+ },
+ "floor": {
+ "type": "string"
+ },
+ "house": {
+ "type": "string"
+ },
+ "porch": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "flat",
+ "floor",
+ "house",
+ "porch"
+ ],
+ "type": "object"
+ }
+ },
+ "required": [
+ "addressRow",
+ "coordinates",
+ "details"
+ ],
+ "type": "object"
+ },
+ "dateTimeInterval": {
+ "properties": {
+ "end": {
+ "minLength": 1,
+ "type": "string"
+ },
+ "start": {
+ "minLength": 1,
+ "type": "string"
+ }
+ },
+ "required": [
+ "end",
+ "start"
+ ],
+ "type": "object"
+ },
+ "options": {
+ "properties": {
+ "comment": {
+ "type": "string"
+ },
+ "elevatorAvailable": {
+ "type": "boolean"
+ }
+ },
+ "type": "object"
+ }
+ },
+ "type": "object"
+ },
+ "terminal": {
+ "properties": {
+ "id": {
+ "type": "string"
+ }
+ },
+ "type": "object"
+ }
+ },
+ "type": "object"
+ }
+}
removedInput schema / properties / receiver / propertyNames
Removed value: -{
- "type": "string"
-}
removedInput schema / properties / sender / additionalProperties
Removed value: -{}
changedInput schema / properties / sender / description
Previous value: -"Sender: details and sending node (optional)."New value: +"Sender and departure terminal (optional)."
addedInput schema / properties / sender / properties
Added value: +{
+ "delivery": {
+ "properties": {
+ "terminal": {
+ "properties": {
+ "id": {
+ "type": "string"
+ }
+ },
+ "type": "object"
+ }
+ },
+ "type": "object"
+ },
+ "inn": {
+ "type": "string"
+ }
+}
removedInput schema / properties / sender / propertyNames
Removed value: -{
- "type": "string"
-}