Skip to content

Commit

Permalink
Regenerate CDDL files
Browse files Browse the repository at this point in the history
  • Loading branch information
jugglinmike committed Sep 5, 2024
1 parent 4a0aab4 commit 71e88bb
Showing 1 changed file with 16 additions and 6 deletions.
22 changes: 16 additions & 6 deletions schemas/at-driver-remote.cddl
Original file line number Diff line number Diff line change
Expand Up @@ -74,18 +74,28 @@ SettingsGetSupportedSettingsCommand = {
params: EmptyParams
}

InteractionCommand = (InteractionPressKeysCommand)
InteractionCommand = (InteractionUserIntentCommand)

InteractionPressKeysCommand = {
method: "interaction.pressKeys",
params: InteractionPressKeysParameters
InteractionUserIntentCommand = {
method: "interaction.userIntent",
params: InteractionUserIntentParameters
}

InteractionPressKeysParameters = {
InteractionUserIntentParameters = (
PressKeysIntentParameters /
ExtensionIntentParameters
)

PressKeysIntentParameters = {
"name" => "pressKeys",
"keys" => KeyCombination,
Extensible,
}

KeyCombination = [
1* text
]

ExtensionIntentParameters = {
"name" => text,
Extensible,
}

0 comments on commit 71e88bb

Please sign in to comment.