Skip to content

Commit

Permalink
Merge pull request #3153 from keesschollaart81/dev
Browse files Browse the repository at this point in the history
  • Loading branch information
frenck authored Sep 28, 2024
2 parents 0ad2129 + 2b3bd6b commit dd61806
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "vscode-home-assistant",
"displayName": "Home Assistant Config Helper",
"description": " Completion for entity-id's in Home Assistant Configurations",
"version": "1.41.0",
"version": "1.41.1",
"preview": false,
"engines": {
"vscode": "^1.45.1"
Expand Down
4 changes: 2 additions & 2 deletions src/language-service/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/language-service/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "home-assistant-language-service",
"version": "1.41.0",
"version": "1.41.1",
"description": "Home Assistant Language Service",
"source": "src/haLanguageService.ts",
"main": "dist/haLanguageService.js",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -112,13 +112,13 @@ export interface AutomationItem extends BaseItem {
* Triggers describe events that should trigger the automation rule.
* https://www.home-assistant.io/docs/automation/basics/
*/
trigger: Trigger | Trigger[] | IncludeList;
trigger?: Trigger | Trigger[] | IncludeList;

/**
* Triggers describe events that should trigger the automation rule.
* https://www.home-assistant.io/docs/automation/basics/
*/
triggers: Trigger | Trigger[] | IncludeList;
triggers?: Trigger | Trigger[] | IncludeList;

/**
* Available in trigger templates with the difference that only limited templates can be used to pass a value to the trigger variable.
Expand All @@ -130,13 +130,13 @@ export interface AutomationItem extends BaseItem {
* The action(s) which will be performed when a rule is triggered and all conditions are met. For example, it can turn a light on, set the temperature on your thermostat or activate a scene.
* https://www.home-assistant.io/docs/automation/basics/
*/
action: Action | Action[] | IncludeList;
action?: Action | Action[] | IncludeList;

/**
* The action(s) which will be performed when a rule is triggered and all conditions are met. For example, it can turn a light on, set the temperature on your thermostat or activate a scene.
* https://www.home-assistant.io/docs/automation/basics/
*/
actions: Action | Action[] | IncludeList;
actions?: Action | Action[] | IncludeList;
}

interface BlueprintItem extends BaseItem {
Expand Down

0 comments on commit dd61806

Please sign in to comment.