@dvxch/yandex-music
    Preparing search index...

    Interface UpdateFullStateRequest

    The shape of an UpdateFullState request (betterproto JSON, defaults omitted).

    interface UpdateFullStateRequest {
        rid: string;
        updateFullState: {
            device: {
                capabilities: { canBeRemoteController: true };
                info: {
                    appName: string;
                    appVersion?: string;
                    deviceId: string;
                    title: string;
                    type: string;
                };
                volumeInfo: Record<string, never>;
            };
            playerState: {
                playerQueue: {
                    currentPlayableIndex: -1;
                    entityType: "VARIOUS";
                    fromOptional: "";
                    options: { repeatMode: "NONE" };
                    version: { deviceId: string };
                };
                status: { paused: true; playbackSpeed: 1; version: { deviceId: string } };
            };
        };
    }
    Index

    Properties

    Properties

    rid: string
    updateFullState: {
        device: {
            capabilities: { canBeRemoteController: true };
            info: {
                appName: string;
                appVersion?: string;
                deviceId: string;
                title: string;
                type: string;
            };
            volumeInfo: Record<string, never>;
        };
        playerState: {
            playerQueue: {
                currentPlayableIndex: -1;
                entityType: "VARIOUS";
                fromOptional: "";
                options: { repeatMode: "NONE" };
                version: { deviceId: string };
            };
            status: { paused: true; playbackSpeed: 1; version: { deviceId: string } };
        };
    }