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

export const unarchiveDevicesDescription: INodeProperties[] = [
	{
		displayName: 'Serial Numbers',
		name: 'serials',
		required: true,
		type: 'string',
		default: '',
		placeholder: 'ABC1234567,DEF7890123',
		description: 'Comma-separated list of serial numbers to unarchive',
		displayOptions: {
			show: {
				domain: ['inventory'],
				resource: ['devices'],
				operation: ['unarchiveDevices'],
			},
		},
	},
];
