Disable "Public" in status selection

Is there a way to disable the Public option when a user changes the status of a page in the panel?

The post Disable Draft Status makes it seem that one can hide certain options, but it shows only an excerpt of a blueprint and I can’t figure out how to use it.
The only option I could find in the documentation was changeStatus but I want to be able to change between Draft and Unlisted on the “Other Pages” tab of my dashboard.

Here is my blueprint for the dashboard:

title: Site

tabs:

  home:
    label: Home

    sections:

      listed: 
        headline: Releases and Live
        type: pages
        status: listed
        layout: cards
        size: medium
        image:
          cover: true

  other:
    label: Other Pages

    sections:

      drafts:
        headline: Drafts
        type: pages
        status: draft
        template: default
        
      unlisted:
        headline: Pages
        type: pages
        status: unlisted
        template: default

  preferences:
    fields:
      max_releases:
        label: Max number of releases on homepage
        type: number
        width: 1/4
        min: 0
      max_events:
        label: Max number of events on homepage
        type: number
        width: 1/4
        min: 0

Got it!

I added

status:
draft: Draft
unlisted: Unlisted

to the default.yml just under title