n8n/packages/nodes-base/nodes/Matrix/AccountDescription.ts

28 lines
449 B
TypeScript
Raw Normal View History

import {
INodeProperties,
} from 'n8n-workflow';
export const accountOperations = [
{
displayName: 'Operation',
name: 'operation',
type: 'options',
displayOptions: {
show: {
resource: [
'account',
],
},
},
options: [
{
name: 'Me',
value: 'me',
2021-01-13 11:20:30 -08:00
description: 'Get current user\'s account information',
},
],
default: 'me',
description: 'The operation to perform.',
},
] as INodeProperties[];