2021-07-10 04:44:23 -07:00
import {
INodeProperties
} from 'n8n-workflow' ;
export const templateOperations = [
{
displayName : 'Operation' ,
name : 'operation' ,
type : 'options' ,
displayOptions : {
show : {
resource : [
'template' ,
] ,
} ,
} ,
options : [
{
name : 'Create' ,
value : 'create' ,
description : 'create a template' ,
} ,
] ,
default : 'create' ,
description : 'The operation to perform.' ,
} ,
] as INodeProperties [ ] ;
export const templateFields = [
/* -------------------------------------------------------------------------- */
/* template:create */
/* -------------------------------------------------------------------------- */
{
displayName : 'Template' ,
name : 'template' ,
type : 'string' ,
displayOptions : {
show : {
resource : [
'template' ,
] ,
operation : [
'create' ,
] ,
} ,
} ,
required : true ,
default : '' ,
2021-08-26 10:42:38 -07:00
description : 'Render a Home Assistant template. <a href="https://www.home-assistant.io/docs/configuration/templating/">See template docs for more information.</a>' ,
2021-07-10 04:44:23 -07:00
} ,
] as INodeProperties [ ] ;