updated to iwa 14.2

The deprecated message 0x847 (`.TSWP.UpdateDateTimeFieldCommandArchive`)
was preserved in the registry since the protobuf defs were not removed
from the official frameworks.
This commit is contained in:
SheetJS 2024-09-20 20:16:46 -04:00
parent ba9c776731
commit c04812f839
2 changed files with 14 additions and 3 deletions

@ -77,7 +77,14 @@ copy the raw byte representation (array of numbers) or parsed object (JSON).
`make deps` requires a SIP-disabled Mac with Keynote + Numbers + Pages.
The last run was on 2024-06-13 against version 14.1 (7040.0.73)
The last run was on 2024-09-20 against version 14.2 (7041.0.109)
<details><summary><b>Notes</b> (click to show)</summary>
14.2 deprecated message 0x847 (`.TSWP.UpdateDateTimeFieldCommandArchive`).
Curiously the message definition was retained in the protobuf definitions.
</details>
#### Software License Agreements

@ -1951,11 +1951,11 @@ message .TSWP.TextCommandArchive {
kKindInsertBibliographyEntry = 11;
kKindFormatCitationFields = 12;
kKindInsertTOCSmartField = 13;
kKindInsertDateTimeField = 14;
kKindInsertDateTimeField_DEPRECATED = 14;
kKindUpdateDateTimeField = 15;
kKindSetParagraphFirstTopicNumber = 16;
kKindCharacterStyle = 17;
kKindRevertStyles = 18;
kKindRevertStyles_DEPRECATED = 18;
kKindSetParagraphBidi = 19;
}
optional .TSK.CommandArchive super = 1;
@ -5386,6 +5386,7 @@ message .TSS.StylesheetArchive {
optional .TSS.StylesheetArchive.VersionedStyles styles_for_13_2 = 18;
optional .TSS.StylesheetArchive.VersionedStyles styles_for_14_0 = 19;
optional .TSS.StylesheetArchive.VersionedStyles styles_for_14_1 = 20;
optional .TSS.StylesheetArchive.VersionedStyles styles_for_14_2 = 21;
}
message .TSS.ThemeArchive {
@ -6820,6 +6821,7 @@ message .TSK.DocumentArchive {
optional .TSP.Reference collaboration_operation_history = 14;
optional bool should_measure_negatively_tracked_text_correctly = 15;
optional bool use_optimized_text_vertical_alignment = 16;
optional bool should_allow_ligatures_in_minimally_tracked_text = 18;
optional .TSK.FormattingSymbolsArchive formatting_symbols = 17;
optional .TSP.Reference activity_stream = 199;
}
@ -7137,6 +7139,8 @@ message .TSK.OutgoingCommandQueueItem {
optional .TSP.Reference command = 1;
optional string serialized_json_without_data_base64_encoded_string = 2;
optional .TSP.DataReference serialized_json_without_data_base64_encoded_data = 4;
optional bool did_rollback_reapply = 6;
optional bool contains_large_pending_upload_data = 7;
repeated .TSK.OutgoingCommandQueueItemUUIDToDataMapEntry uuid_to_data_map_entries = 3;
repeated .TSP.DataReference large_data_list = 5;
}