zapier/common/Lightning.js
2021-12-11 21:19:26 +01:00

26 lines
697 B
JavaScript

module.exports = {
outputFields: [
// {key: 'id', label: 'Invoice ID', type: 'string'},
],
inputFields: {
node_uri: {
key: 'node_uri',
label: 'Lightning Node URI',
type: 'string',
helpText: 'The Lightning Node\'s URI..',
required: true,
list: false,
altersDynamicFields: false,
},
bolt11: {
key: 'bolt11',
label: 'BOLT 11 Lightning Invoice',
type: 'string',
helpText: 'A Lightning invoice in BOLT11 format.',
required: true,
list: false,
altersDynamicFields: false,
}
},
}