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' ,
2022-05-20 14:47:24 -07:00
noDataExpression : true ,
2021-07-10 04:44:23 -07:00
displayOptions : {
show : {
resource : [
'template' ,
] ,
} ,
} ,
options : [
{
name : 'Create' ,
value : 'create' ,
2022-06-03 10:23:49 -07:00
description : 'Create a template' ,
2022-07-10 13:50:51 -07:00
action : 'Create a template' ,
2021-07-10 04:44:23 -07:00
} ,
] ,
default : 'create' ,
} ,
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 : '' ,
2022-04-22 09:29:51 -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
] ;