You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: apps/docs/document-api/reference/track-changes/get.mdx
+5-1Lines changed: 5 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -20,7 +20,7 @@ Retrieve a single tracked change by ID.
20
20
21
21
## Expected result
22
22
23
-
Returns a TrackChangeInfo object with the change type, author, date, affected content, and source Word revision IDs when available.
23
+
Returns a TrackChangeInfo object with the change type, author, date, affected content, and raw imported Word OOXML revision IDs (`w:id`) when available.
24
24
25
25
## Input fields
26
26
@@ -137,14 +137,18 @@ Returns a TrackChangeInfo object with the change type, author, date, affected co
137
137
},
138
138
"wordRevisionIds": {
139
139
"additionalProperties": false,
140
+
"description": "Raw imported Word OOXML revision IDs (`w:id`) from the source document when available. This is provenance metadata, not the canonical SuperDoc tracked-change ID. Replacements may include both `insert` and `delete` IDs.",
140
141
"properties": {
141
142
"delete": {
143
+
"description": "Raw imported Word OOXML revision ID (`w:id`) from a `<w:del>` element when this logical change includes a deletion.",
142
144
"type": "string"
143
145
},
144
146
"format": {
147
+
"description": "Raw imported Word OOXML revision ID (`w:id`) from a `<w:rPrChange>` element when this logical change includes a formatting revision.",
145
148
"type": "string"
146
149
},
147
150
"insert": {
151
+
"description": "Raw imported Word OOXML revision ID (`w:id`) from a `<w:ins>` element when this logical change includes an insertion.",
Copy file name to clipboardExpand all lines: apps/docs/document-api/reference/track-changes/list.mdx
+5-1Lines changed: 5 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -20,7 +20,7 @@ List all tracked changes in the document.
20
20
21
21
## Expected result
22
22
23
-
Returns a TrackChangesListResult with tracked change entries, total count, and source Word revision IDs when available.
23
+
Returns a TrackChangesListResult with tracked change entries, total count, and raw imported Word OOXML revision IDs (`w:id`) when available.
24
24
25
25
## Input fields
26
26
@@ -168,14 +168,18 @@ Returns a TrackChangesListResult with tracked change entries, total count, and s
168
168
},
169
169
"wordRevisionIds": {
170
170
"additionalProperties": false,
171
+
"description": "Raw imported Word OOXML revision IDs (`w:id`) from the source document when available. This is provenance metadata, not the canonical SuperDoc tracked-change ID. Replacements may include both `insert` and `delete` IDs.",
171
172
"properties": {
172
173
"delete": {
174
+
"description": "Raw imported Word OOXML revision ID (`w:id`) from a `<w:del>` element when this logical change includes a deletion.",
173
175
"type": "string"
174
176
},
175
177
"format": {
178
+
"description": "Raw imported Word OOXML revision ID (`w:id`) from a `<w:rPrChange>` element when this logical change includes a formatting revision.",
176
179
"type": "string"
177
180
},
178
181
"insert": {
182
+
"description": "Raw imported Word OOXML revision ID (`w:id`) from a `<w:ins>` element when this logical change includes an insertion.",
description: 'Retrieve a single tracked change by ID.',
2232
2232
expectedResult:
2233
-
'Returns a TrackChangeInfo object with the change type, author, date, affected content, and source Word revision IDs when available.',
2233
+
'Returns a TrackChangeInfo object with the change type, author, date, affected content, and raw imported Word OOXML revision IDs (`w:id`) when available.',
'Raw imported Word OOXML revision ID (`w:id`) from a `<w:ins>` element when this logical change includes an insertion.',
1487
+
},
1488
+
delete: {
1489
+
type: 'string',
1490
+
description:
1491
+
'Raw imported Word OOXML revision ID (`w:id`) from a `<w:del>` element when this logical change includes a deletion.',
1492
+
},
1493
+
format: {
1494
+
type: 'string',
1495
+
description:
1496
+
'Raw imported Word OOXML revision ID (`w:id`) from a `<w:rPrChange>` element when this logical change includes a formatting revision.',
1497
+
},
1498
+
}),
1499
+
description:
1500
+
'Raw imported Word OOXML revision IDs (`w:id`) from the source document when available. This is provenance metadata, not the canonical SuperDoc tracked-change ID. Replacements may include both `insert` and `delete` IDs.',
0 commit comments