changedInput schema / properties / announcementType / description
Previous value: -"Announcement type. Enum: DELIVERY | PICKUP."New value: +"Announcement type."
addedInput schema / properties / announcementType / enum
Added value: +[
+ "DELIVERY",
+ "PICKUP"
+]
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."
removedInput schema / properties / options / additionalProperties
Removed value: -{}
changedInput schema / properties / options / description
Previous value: -"Additional announcement options."New value: +"Announcement callback options."
addedInput schema / properties / options / properties
Added value: +{
+ "urlToSendAnnouncement": {
+ "minLength": 1,
+ "type": "string"
+ }
+}
removedInput schema / properties / options / propertyNames
Removed value: -{
- "type": "string"
-}
addedInput schema / properties / options / required
Added value: +[
+ "urlToSendAnnouncement"
+]
removedInput schema / properties / packages / items / additionalProperties
Removed value: -{}
removedInput schema / properties / packages / items / description
Removed value: -"See Package in swaggers/delivery.json"
addedInput schema / properties / packages / items / properties
Added value: +{
+ "id": {
+ "minLength": 1,
+ "type": "string"
+ },
+ "parcelIDs": {
+ "items": {
+ "minLength": 1,
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "sealID": {
+ "type": "string"
+ }
+}
removedInput schema / properties / packages / items / propertyNames
Removed value: -{
- "type": "string"
-}
addedInput schema / properties / packages / items / required
Added value: +[
+ "id",
+ "parcelIDs"
+]
removedInput schema / properties / receiver / additionalProperties
Removed value: -{}
changedInput schema / properties / receiver / description
Previous value: -"Receiving delivery service: type, name, phones, email, delivery node/sorting center."New value: +"Receiving delivery service and delivery point."
addedInput schema / properties / receiver / properties
Added value: +{
+ "delivery": {
+ "properties": {
+ "sortingCenter": {
+ "properties": {
+ "accuracy": {
+ "enum": [
+ "EXACT",
+ "APPROXIMATE"
+ ],
+ "type": "string"
+ },
+ "id": {
+ "type": "string"
+ },
+ "provider": {
+ "minLength": 1,
+ "type": "string"
+ }
+ },
+ "required": [
+ "provider"
+ ],
+ "type": "object"
+ },
+ "terminal": {
+ "properties": {
+ "accuracy": {
+ "enum": [
+ "EXACT",
+ "APPROXIMATE"
+ ],
+ "type": "string"
+ },
+ "id": {
+ "type": "string"
+ },
+ "provider": {
+ "minLength": 1,
+ "type": "string"
+ }
+ },
+ "required": [
+ "provider"
+ ],
+ "type": "object"
+ },
+ "type": {
+ "enum": [
+ "TERMINAL",
+ "SORTING_CENTER"
+ ],
+ "type": "string"
+ }
+ },
+ "required": [
+ "type"
+ ],
+ "type": "object"
+ },
+ "email": {
+ "type": "string"
+ },
+ "name": {
+ "type": "string"
+ },
+ "phones": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "type": {
+ "enum": [
+ "3PL",
+ "ABD"
+ ],
+ "type": "string"
+ }
+}
removedInput schema / properties / receiver / propertyNames
Removed value: -{
- "type": "string"
-}
addedInput schema / properties / receiver / required
Added value: +[
+ "delivery",
+ "email",
+ "name",
+ "phones",
+ "type"
+]
removedInput schema / properties / sender / additionalProperties
Removed value: -{}
changedInput schema / properties / sender / description
Previous value: -"Sending party: type, name, phones, email, sending node."New value: +"Sending delivery service and delivery point."
addedInput schema / properties / sender / properties
Added value: +{
+ "delivery": {
+ "properties": {
+ "sortingCenter": {
+ "properties": {
+ "accuracy": {
+ "enum": [
+ "EXACT",
+ "APPROXIMATE"
+ ],
+ "type": "string"
+ },
+ "id": {
+ "type": "string"
+ },
+ "provider": {
+ "minLength": 1,
+ "type": "string"
+ }
+ },
+ "required": [
+ "provider"
+ ],
+ "type": "object"
+ },
+ "terminal": {
+ "properties": {
+ "accuracy": {
+ "enum": [
+ "EXACT",
+ "APPROXIMATE"
+ ],
+ "type": "string"
+ },
+ "id": {
+ "type": "string"
+ },
+ "provider": {
+ "minLength": 1,
+ "type": "string"
+ }
+ },
+ "required": [
+ "provider"
+ ],
+ "type": "object"
+ },
+ "type": {
+ "enum": [
+ "TERMINAL",
+ "SORTING_CENTER"
+ ],
+ "type": "string"
+ }
+ },
+ "required": [
+ "type"
+ ],
+ "type": "object"
+ },
+ "email": {
+ "type": "string"
+ },
+ "name": {
+ "type": "string"
+ },
+ "phones": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "type": {
+ "enum": [
+ "3PL",
+ "ABD"
+ ],
+ "type": "string"
+ }
+}
removedInput schema / properties / sender / propertyNames
Removed value: -{
- "type": "string"
-}
addedInput schema / properties / sender / required
Added value: +[
+ "delivery",
+ "email",
+ "name",
+ "phones",
+ "type"
+]