/** * HaloPSA Node - Version 1 * Discriminator: resource=site, operation=update */ interface Credentials { haloPSAApi: CredentialReference; } /** Update a client */ export type HaloPSAV1SiteUpdateParams = { resource: 'site'; operation: 'update'; /** * Site ID */ siteId?: string | Expression | PlaceholderValue; /** * Update Fields * @default {} */ updateFields?: { /** Client ID */ client_id?: string | Expression | PlaceholderValue; /** Main Contact */ maincontact_name?: string | Expression | PlaceholderValue; /** Enter site name */ name?: string | Expression | PlaceholderValue; /** Notes */ notes?: string | Expression | PlaceholderValue; /** Phone Number */ phonenumber?: string | Expression | PlaceholderValue; }; }; export type HaloPSAV1SiteUpdateNode = { type: 'n8n-nodes-base.haloPSA'; version: 1; credentials?: Credentials; config: NodeConfig; };