/** * SyncroMSP Node - Version 1 * Discriminator: resource=rmm, operation=create */ interface Credentials { syncroMspApi: CredentialReference; } /** Create new customer */ export type SyncroMspV1RmmCreateParams = { resource: 'rmm'; operation: 'create'; /** * Asset ID */ assetId?: string | Expression | PlaceholderValue; /** * Customer ID */ customerId?: string | Expression | PlaceholderValue; /** * Description */ description?: string | Expression | PlaceholderValue; /** * Additional Fields * @default {} */ additionalFields?: { /** Resolved * @default false */ resolved?: boolean | Expression; }; }; export type SyncroMspV1RmmCreateNode = { type: 'n8n-nodes-base.syncroMsp'; version: 1; credentials?: Credentials; config: NodeConfig; };