/** * SyncroMSP Node - Version 1 * Discriminator: resource=rmm, operation=delete */ interface Credentials { syncroMspApi: CredentialReference; } /** Delete customer */ export type SyncroMspV1RmmDeleteParams = { resource: 'rmm'; operation: 'delete'; /** * Delete the RMM alert by ID */ alertId?: string | Expression | PlaceholderValue; }; export type SyncroMspV1RmmDeleteNode = { type: 'n8n-nodes-base.syncroMsp'; version: 1; credentials?: Credentials; config: NodeConfig; };