propresenter7-php-lib/proto/analyticsCreate.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

67 lines
1.5 KiB
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 Create {
message Library {
enum Source {
SOURCE_UNKNOWN = 0;
SOURCE_APPLICATION_MENU = 1;
SOURCE_LIBRARY_OUTLINE_ADD_BUTTON = 2;
}
.rv.analytics.Create.Library.Source source = 1;
}
message Playlist {
enum Source {
SOURCE_UNKNOWN = 0;
SOURCE_APPLICATION_MENU = 1;
SOURCE_LIBRARY_OUTLINE_ADD_BUTTON = 2;
}
enum Type {
TYPE_UNKNOWN = 0;
TYPE_PRESENTATION = 1;
TYPE_PLANNING_CENTER = 2;
TYPE_FOLDER = 3;
TYPE_TEMPLATE_PLAYLIST = 4;
}
.rv.analytics.Create.Playlist.Source source = 1;
.rv.analytics.Create.Playlist.Type type = 2;
}
message Presentation {
enum Source {
SOURCE_UNKNOWN = 0;
SOURCE_APPLICATION_MENU = 1;
SOURCE_LIBRARY_OUTLINE_ADD_BUTTON = 2;
SOURCE_DETAIL_ADD_BUTTON = 3;
SOURCE_UNLINKED_HEADER = 4;
}
.rv.analytics.Create.Presentation.Source source = 1;
}
message TemplatePlaylist {
int32 total_item_count = 1;
int32 header_count = 2;
int32 placeholder_count = 3;
int32 presentation_count = 4;
int32 media_count = 5;
}
oneof Component {
.rv.analytics.Create.Library library = 1;
.rv.analytics.Create.Playlist playlist = 2;
.rv.analytics.Create.Presentation presentation = 3;
.rv.analytics.Create.TemplatePlaylist template_playlist = 4;
}
}