- Move src/, tests/, bin/, generated/, proto/, composer.json, composer.lock, phpunit.xml from php/ to repo root - Move ref/ to doc/reference_samples/ for better organization - Remove vendor/ from git tracking (now properly gitignored) - Update all test file paths (dirname adjustments and ref/ -> doc/reference_samples/) - Update all documentation paths (AGENTS.md, doc/*.md) - Remove php.bak/ directory - All 252 tests pass
33 lines
1 KiB
Protocol Buffer
Executable file
33 lines
1 KiB
Protocol Buffer
Executable file
syntax = "proto3";
|
|
|
|
package rv.data;
|
|
|
|
option cc_enable_arenas = true;
|
|
option csharp_namespace = "Pro.SerializationInterop.RVProtoData";
|
|
option swift_prefix = "RVData_";
|
|
|
|
import "audio.proto";
|
|
import "digitalAudio.proto";
|
|
import "input.proto";
|
|
import "proAudienceLook.proto";
|
|
import "proscreen.proto";
|
|
import "proMask.proto";
|
|
import "recording.proto";
|
|
import "stage.proto";
|
|
|
|
message ProPresenterWorkspace {
|
|
repeated .rv.data.ProPresenterScreen pro_screens = 1;
|
|
repeated .rv.data.ProAudienceLook audience_looks = 2;
|
|
.rv.data.ProAudienceLook live_audience_look = 3;
|
|
repeated .rv.data.ProMask masks = 4;
|
|
repeated .rv.data.VideoInput videoInputs = 5;
|
|
repeated .rv.data.Stage.ScreenAssignment stage_layout_mappings = 6;
|
|
.rv.data.Audio.SettingsDocument audio_settings = 7;
|
|
string selected_library_name = 8;
|
|
.rv.data.Recording.SettingsDocument record_settings = 9;
|
|
.rv.data.DigitalAudio.Setup digital_audio_setup = 10;
|
|
repeated .rv.data.AudioInput audio_inputs = 11;
|
|
double audio_input_transition_time = 12;
|
|
}
|
|
|