update cicd

This commit is contained in:
2026-04-02 11:01:30 +00:00
parent 863a0ea2f6
commit 5a7f29c116
54 changed files with 4298 additions and 473 deletions

View File

@@ -0,0 +1,23 @@
syntax = "proto3";
package stream.app.v1;
option go_package = "stream.api/internal/gen/proto/app/v1;appv1";
import "app/v1/common.proto";
service VideoMetadata {
rpc GetVideoMetadata(GetVideoMetadataRequest) returns (GetVideoMetadataResponse);
}
message GetVideoMetadataRequest {
string video_id = 1;
}
message GetVideoMetadataResponse {
Video video = 1;
PlayerConfig default_player_config = 2;
AdTemplate ad_template = 3;
PopupAd active_popup_ad = 4;
repeated Domain domains = 5;
}