2021-07-10 04:44:23 -07:00
import {
INodeProperties
} from 'n8n-workflow' ;
2021-12-03 00:44:16 -08:00
export const templateOperations : INodeProperties [ ] = [
2021-07-10 04:44:23 -07:00
{
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.' ,
} ,
2021-12-03 00:44:16 -08:00
] ;
2021-07-10 04:44:23 -07:00
2021-12-03 00:44:16 -08:00
export const templateFields : INodeProperties [ ] = [
2021-07-10 04:44:23 -07:00
/* -------------------------------------------------------------------------- */
/* 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
} ,
2021-12-03 00:44:16 -08:00
] ;