changedInput schema / properties / links / description
Previous value: -"One or more existing outgoing links to delete."New value: +"One or more existing outgoing links to delete (1-50)."
removedInput schema / properties / links / items / properties / role / description
Removed value: -"Link role id; must match exactly."
removedInput schema / properties / links / items / properties / target_project_id / description
Removed value: -"Target's project; defaults to the source's project."
removedInput schema / properties / links / items / properties / target_work_item_id / description
Removed value: -"Target work item ID."
addedInput schema / properties / links / maxItems
Added value: +50
removedOutput schema / $defs
Removed value: -{
- "JsonValue": {
- "anyOf": [
- {
- "type": "string"
- },
- {
- "type": "integer"
- },
- {
- "type": "number"
- },
- {
- "type": "boolean"
- },
- {
- "items": {
- "$ref": "#/$defs/JsonValue"
- },
- "type": "array"
- },
- {
- "additionalProperties": {
- "$ref": "#/$defs/JsonValue"
- },
- "type": "object"
- },
- {
- "type": "null"
- }
- ]
- }
-}
changedOutput schema / description
Previous value: -"Result of a ``delete_work_item_links`` operation.\n\n``link_ids`` echoes the REQUEST — Polarion silently ignores body-level\nrefs that do not match an existing link, so the echo is not a list of\nwhat was actually deleted. Cross-check with ``list_work_item_links``\nif exact accounting is required."New value: +"Result of a ``delete_work_item_links`` operation."
removedOutput schema / properties / deleted / description
Removed value: -"True on a real delete; False on dry-run."
addedOutput schema / properties / deleted_link_ids
Added value: +{
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+}
removedOutput schema / properties / dry_run / description
Removed value: -"Whether this was a dry-run."
removedOutput schema / properties / link_ids / description
Removed value: -"Composite 5-segment ids reconstructed from the request refs."
addedOutput schema / properties / not_found_link_ids
Added value: +{
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+}
changedOutput schema / properties / payload_preview / anyOf
Previous value: -[
- {
- "additionalProperties": {
- "$ref": "#/$defs/JsonValue"
- },
- "type": "object"
- },
- {
- "type": "null"
- }
-]New value: +[
+ {
+ "additionalProperties": true,
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+]
removedOutput schema / properties / payload_preview / description
Removed value: -"JSON:API payload sent or previewed; None after real ops."