/** * HaloPSA Node - Version 1 * Discriminator: resource=site, operation=get */ interface Credentials { haloPSAApi: CredentialReference; } /** Get a client */ export type HaloPSAV1SiteGetParams = { resource: 'site'; operation: 'get'; /** * Site ID */ siteId?: string | Expression | PlaceholderValue; /** * Whether to return a simplified version of the response instead of the raw data * @default true */ simplify?: boolean | Expression; }; export type HaloPSAV1SiteGetNode = { type: 'n8n-nodes-base.haloPSA'; version: 1; credentials?: Credentials; config: NodeConfig; };