Requests, Notifications and Subscriptions from the Duckplayer feature

interface DuckplayerMessages {
    notifications:
        | OpenInfoNotification
        | OpenSettingsNotification
        | ReportInitExceptionNotification
        | ReportPageExceptionNotification
        | TelemetryEventNotification;
    requests: GetUserValuesRequest
    | InitialSetupRequest
    | SetUserValuesRequest;
    subscriptions: OnUserValuesChangedSubscription;
}

Properties