Files
n8n_Demo/n8n-n8n-1.109.2/packages/nodes-base/nodes/Raindrop/descriptions/UserDescription.ts

59 lines
1.0 KiB
TypeScript
Raw Normal View History

2025-09-08 04:48:28 +08:00
import type { INodeProperties } from 'n8n-workflow';
export const userOperations: INodeProperties[] = [
{
displayName: 'Operation',
name: 'operation',
type: 'options',
noDataExpression: true,
default: 'get',
options: [
{
name: 'Get',
value: 'get',
action: 'Get a user',
},
],
displayOptions: {
show: {
resource: ['user'],
},
},
},
];
export const userFields: INodeProperties[] = [
// ----------------------------------
// user: get
// ----------------------------------
{
displayName: 'Self',
name: 'self',
type: 'boolean',
default: true,
required: true,
description: 'Whether to return details on the logged-in user',
displayOptions: {
show: {
resource: ['user'],
operation: ['get'],
},
},
},
{
displayName: 'User ID',
name: 'userId',
type: 'string',
default: '',
required: true,
description: 'The ID of the user to retrieve',
displayOptions: {
show: {
resource: ['user'],
operation: ['get'],
self: [false],
},
},
},
];