Add Event resource to Home Assistant

This commit is contained in:
Jan Oberhauser
2021-07-28 13:27:46 +02:00
parent 231c15801a
commit 1faaef1171
2 changed files with 13 additions and 13 deletions

View File

@@ -15,16 +15,16 @@ export const eventOperations = [
},
},
options: [
{
name: 'Create',
value: 'create',
description: 'Create an event',
},
{
name: 'Get All',
value: 'getAll',
description: 'Get all events',
},
{
name: 'Post',
value: 'post',
description: 'Post an event',
},
],
default: 'getAll',
description: 'The operation to perform.',
@@ -79,7 +79,7 @@ export const eventFields = [
},
/* -------------------------------------------------------------------------- */
/* event:post */
/* event:create */
/* -------------------------------------------------------------------------- */
{
displayName: 'Event Type',
@@ -88,7 +88,7 @@ export const eventFields = [
displayOptions: {
show: {
operation: [
'post',
'create',
],
resource: [
'event',
@@ -114,7 +114,7 @@ export const eventFields = [
'event',
],
operation: [
'post',
'create',
],
},
},