2023-01-27 03:22:44 -08:00
import type { INodeProperties } from 'n8n-workflow' ;
2021-07-10 04:44:23 -07:00
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 : {
2022-08-17 08:50:24 -07:00
resource : [ 'template' ] ,
2021-07-10 04:44:23 -07:00
} ,
} ,
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 : {
2022-08-17 08:50:24 -07:00
resource : [ 'template' ] ,
operation : [ 'create' ] ,
2021-07-10 04:44:23 -07:00
} ,
} ,
required : true ,
default : '' ,
2022-08-17 08:50:24 -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
] ;