UNPKG

n8n-nodes-base

Version:

Base nodes of n8n

26 lines (22 loc) 537 B
/** * 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<string> | PlaceholderValue; }; export type SyncroMspV1RmmDeleteNode = { type: 'n8n-nodes-base.syncroMsp'; version: 1; credentials?: Credentials; config: NodeConfig<SyncroMspV1RmmDeleteParams>; };