n8n/packages/nodes-base/nodes/Oura/ProfileDescription.ts

28 lines
446 B
TypeScript
Raw Normal View History

import {
INodeProperties,
} from 'n8n-workflow';
export const profileOperations = [
{
displayName: 'Operation',
name: 'operation',
type: 'options',
displayOptions: {
show: {
resource: [
'profile',
],
},
},
options: [
{
name: 'Get',
value: 'get',
description: 'Get the user\'s personal information.',
},
],
default: 'get',
description: 'Operation to perform.',
},
] as INodeProperties[];