Skip to content

Commit

Permalink
Add support for the assist pipeline selector
Browse files Browse the repository at this point in the history
  • Loading branch information
frenck committed Oct 5, 2024
1 parent 1ff825c commit d894f52
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/language-service/src/schemas/integrations/selectors.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ export type Selector =
| AddonSelector
| AreaSelector
| AttributeSelector
| AssistPipelineSelectors
| BooleanSelector
| ColorRGBSelector
| ColorTempSelector
Expand Down Expand Up @@ -80,6 +81,14 @@ export interface AreaSelector {
} | null;
}

export interface AssistPipelineSelectors {
/**
* The assist pipeline selector shows all available assist pipelines (assistants) of which one can be selected.
* https://www.home-assistant.io/docs/blueprint/selectors/#assist-pipeline-selector
*/
assist_pipeline: null | Record<string, never>;
}

export interface AttributeSelector {
/**
* The attributes selector shows a list of state attribites from a provided entity of which one can be selected.
Expand Down

0 comments on commit d894f52

Please sign in to comment.