Command Line YAML configuration has moved

Hi all,
I am using ha core and this evening after upgrading to 2023-6.0 I saw repair:

Command Line YAML configuration has moved
This stops working in version 2023.8.0. Please address before upgrading.
Configuring Command Line `notify` using YAML has moved.
Consult the documentation to move your YAML configuration to integration key and restart Home Assistant to fix this issue.
This issue was ignored in version 2023.6.0.

I really have three notify metods defined via command line, but I have no clue how to move YAML to integration.
Help please.

It used to be something like:

notify:
  - platform: command_line
    name: Towel

now it’s

command_line:
  - notify:
      name: Towel

See the docs.

If you are still stuck share what you have and somebody can probably help you.

I did see the docs.
There are nothing about ‘moving YAML to integration’. Quite opposite, everything written there is about configuring via YAML.
notify
and that is exactly what I have:

  - name: newtifry
    platform: command_line
    # Just field message in service call used
    command: "newtifry -p3 -t HAss -m-"
  - name: newtifryfull
    platform: command_line
    command: "newtifry-full"

So, why this repairs?

Just for test, I tryed gui add integration command line, this is the result:
cmd_line

Something is really wrong, this message have no sense.

A, I see.
Just little bit different order. Thanks @ Tinkerer

Try this in the configuration.yaml:

notify:
  - name: newtifry
    command: "newtifry -p3 -t HAss -m-"
  - name: newtifryfull
    command: "newtifry-full"

If that doesnt work, maybe:

command_line:
  - sensor:
    - name: newtifry
      command: "newtifry -p3 -t HAss -m-"
    - name: newtifryfull
      command: "newtifry-full"

Try to creat one sensor by name
Like this

command_line:
  - sensor:
      name: newtifry
      command: "newtifry -p3 -t HAss -m-"
  - sensor:
      name: newtifryfull
      command: "newtifry-full"