/** * Box Node - Version 1 * Discriminator: resource=file, operation=delete */ interface Credentials { boxOAuth2Api: CredentialReference; } /** Delete a file */ export type BoxV1FileDeleteParams = { resource: 'file'; operation: 'delete'; /** * Field ID */ fileId?: string | Expression | PlaceholderValue; }; export type BoxV1FileDeleteOutput = { success?: boolean; }; export type BoxV1FileDeleteNode = { type: 'n8n-nodes-base.box'; version: 1; credentials?: Credentials; config: NodeConfig; output?: Items; };