mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-07-04 12:47:04 +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
16 lines
445 B
Protocol Buffer
16 lines
445 B
Protocol Buffer
syntax = "proto3";
|
|
package youtube.api.pfiinnertube;
|
|
|
|
message AttestationResponseData {
|
|
optional string challenge = 1;
|
|
optional string web_response = 2;
|
|
optional string android_response = 3;
|
|
optional bytes ios_response = 4;
|
|
optional int32 error = 5;
|
|
optional AdblockReporting adblock_reporting = 6;
|
|
|
|
message AdblockReporting {
|
|
optional uint64 reporting_status = 1;
|
|
optional uint64 broad_spectrum_detection_result = 2;
|
|
}
|
|
} |