-
Notifications
You must be signed in to change notification settings - Fork 0
/
fakevars.hjson
39 lines (39 loc) · 1.94 KB
/
fakevars.hjson
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
[
{
type: 'fakevars',
module : 'fakevars',
action : 'assign',
groupTitle : 'Fakevars',
groupIcon : 'fad fa-lg fa-equals comp-flows',
title : 'Fakevars - @@var(name)@@',
icon : 'fad fa-lg fa-equals comp-flows',
properties : [
{
group: 'Info',
variables: [
{ name: 'info_Text', type: 'static', help: '🧪 EXPERIMENTAL</br>ℹ️ This action will only run if your NODE_ENV is set to development</br>☢️ Do not store sensitive data and then leave the code publicly available.'}
]},
{
group: 'Variables',
variables: [
{ name: 'get', optionName: 'getvars', key: 'var', keyValue: 'value', title: 'GET', type: 'grid', defaultValue: {}, serverDataBindings: true,
columns: [
{ field: 'var', caption: 'Name', size: '30%', editable: {type: 'text'}},
{ field: 'value', caption: 'Value', size: '70%', editable: {type: 'datapicker'}}]},
{ name: 'post', optionName: 'postvars', key: 'var', keyValue: 'value', title: 'POST', type: 'grid', defaultValue: {}, serverDataBindings: true,
columns: [
{ field: 'var', caption: 'Name', size: '30%', editable: {type: 'text'}},
{ field: 'value', caption: 'Value', size: '70%', editable: {type: 'datapicker'}}]},
{ name: 'param', optionName: 'paramvars', key: 'var', keyValue: 'value', title: 'PARAM', type: 'grid', defaultValue: {}, serverDataBindings: true,
columns: [
{ field: 'var', caption: 'Name', size: '30%', editable: {type: 'text'}},
{ field: 'value', caption: 'Value', size: '70%', editable: {type: 'datapicker'}}]}
]},
{
group: 'Output',
variables: [
{ name: 'output', optionName: 'output', title: 'Output', initValue: false, defaultValue: false, type: 'boolean'}
]}
]
}
]