mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-07-04 03:51:00 +00:00
* refactor: Add extracted protos * refactor: Remove old stuff and update affected code * chore(package): Update `build:proto` script * chore(ClientInfo): Rename `androidSdkVersion` to `android_sdk_version` * chore: remove refs to old proto file * refactor(sabr_request): Rename `Gw` to `media_type` * chore(sabr_request): Fix typo in field num * feat(parser): Parse `video_playback_ustreamer_config` and `server_abr_streaming_url` * refactor: update protos * chore(package): streamline clean and build scripts * chore: update package.json * chore: update npmignore * chore(protos): Remove unneeded definitions See https://github.com/LuanRT/googlevideo for video playback proto definitions. * chore(package): add `rimraf` dependency
11 lines
284 B
Protocol Buffer
11 lines
284 B
Protocol Buffer
syntax = "proto3";
|
|
package youtube.api.pfiinnertube;
|
|
|
|
message PlayerAttestationRequestData {
|
|
optional IosguardChallengeRequestData iosguard_request = 1;
|
|
optional bool omit_botguard_data = 2;
|
|
|
|
message IosguardChallengeRequestData {
|
|
optional bytes challenge_request = 1;
|
|
}
|
|
} |