propresenter7-php-lib/proto/analyticsSync.proto
Thorsten Buss 4d10db4f17 Initial public release
PHP 8.4 library and CLI tools to read, modify, and generate ProPresenter 7
files: songs (.pro), playlists (.proplaylist), bundles (.probundle), themes,
and the global library files (Macros, Labels, Groups, ClearGroups, CCLI,
Messages, Timers, Stage, Workspace, Props, TestPatterns, Calendar,
KeyMappings, CommunicationDevices).

Built on the MIT-licensed ProPresenter7-Proto schema by greyshirtguy
(v7.16.2). Includes 18 CLI parsers, comprehensive API docs in doc/,
binary-format specs, and a synthetic 369-test PHPUnit suite covering
RTF extraction, translation slides, ZIP64 repair, round-trip fidelity,
and end-to-end generation.
2026-05-03 22:21:01 +02:00

30 lines
605 B
Protocol Buffer
Executable file

syntax = "proto3";
package rv.analytics;
option cc_enable_arenas = true;
option csharp_namespace = "Pro.SerializationInterop.RVProtoData.Analytics";
option swift_prefix = "Analytics_";
message Sync {
message Local {
enum SyncType {
SYNC_TYPE_UP = 0;
SYNC_TYPE_DOWN = 1;
}
.rv.analytics.Sync.Local.SyncType sync_type = 1;
bool include_library = 2;
bool include_media = 3;
bool include_playlists = 4;
bool include_themes = 5;
bool include_support_files = 6;
bool replace_files = 7;
}
oneof SyncType {
.rv.analytics.Sync.Local local = 1;
}
}