chore(protos): Remove outdated comment and update exports

This commit is contained in:
Luan
2025-03-19 18:15:48 -03:00
parent 33878c6aff
commit d72f8b2dae
3 changed files with 3 additions and 5 deletions

View File

@@ -10,7 +10,6 @@ import { BinaryReader, BinaryWriter } from "@bufbuild/protobuf/wire";
export const protobufPackage = "video_streaming";
export interface EncryptedPlayerRequest {
/** InnerTubeContext proto? */
context?: Uint8Array | undefined;
encryptedOnesiePlayerRequest?: Uint8Array | undefined;
encryptedClientKey?: Uint8Array | undefined;

View File

@@ -1,10 +1,8 @@
syntax = "proto2";
package video_streaming;
import "video_streaming/onesie_player_request.proto";
message EncryptedPlayerRequest {
optional bytes context = 1; // InnerTubeContext proto?
optional bytes context = 1;
optional bytes encrypted_onesie_player_request = 2;
optional bytes encrypted_client_key = 5;
optional bytes iv = 6;

View File

@@ -20,4 +20,5 @@ export { StreamerContext } from '../../protos/generated/video_streaming/streamer
export { ProxyStatus } from '../../protos/generated/video_streaming/proxy_status.js';
export { MediaCapabilities } from '../../protos/generated/video_streaming/media_capabilities.js';
export { CryptoParams } from '../../protos/generated/video_streaming/crypto_params.js';
export { LiveMetadata } from '../../protos/generated/video_streaming/live_metadata.js';
export { LiveMetadata } from '../../protos/generated/video_streaming/live_metadata.js';
export { FormatId, KeyValuePair, InitRange, IndexRange, HttpHeader } from '../../protos/generated/misc/common.js';