// getClientRoamHistory.descriptions.ts
import { INodeProperties } from 'n8n-workflow';

export const getClientRoamHistoryDescription: INodeProperties[] = [
	{
		displayName: 'Operation',
		name: 'operation',
		type: 'options',
		noDataExpression: true,
		displayOptions: {
			show: {
				domain: ['keymanagement'],
				resource: ['clientroamhistory'],
			},
		},
		options: [
			{
				name: 'Get Client Roam History',
				value: 'getClientRoamHistory',
				description:
					'Retrieve roaming history for a specific client (Note: API implementation may be incomplete)',
				action: 'Get client roam history',
			},
		],
		default: 'getClientRoamHistory',
	},
	{
		displayName: 'Client MAC Address',
		name: 'client_mac',
		type: 'string',
		required: true,
		displayOptions: {
			show: {
				domain: ['keymanagement'],
				resource: ['clientroamhistory'],
				operation: ['getClientRoamHistory'],
			},
		},
		default: '',
		placeholder: '00:11:22:33:44:55',
		description: 'MAC address of the client to retrieve roam history for',
	},
];
