// api/inventory/devices/deleteDevice.descriptions.ts
import { INodeProperties } from 'n8n-workflow';

export const deleteDeviceDescription: INodeProperties[] = [
	{
		displayName: 'Serial Number',
		name: 'serial',
		type: 'string',
		required: true,
		default: '',
		placeholder: 'ABC1234567',
		description: 'Serial number of the device to delete',
		displayOptions: {
			show: {
				domain: ['inventory'],
				resource: ['devices'],
				operation: ['deleteDevice'],
			},
		},
	},
];
