/** * HaloPSA Node - Version 1 * Discriminator: resource=site, operation=create */ interface Credentials { haloPSAApi: CredentialReference; } /** Create a client */ export type HaloPSAV1SiteCreateParams = { resource: 'site'; operation: 'create'; /** * Enter site name */ siteName?: string | Expression | PlaceholderValue; /** * Whether client can be selected by ID * @default false */ selectOption?: boolean | Expression; /** * Client ID * @displayOptions.show { selectOption: [true] } */ clientId?: string | Expression | PlaceholderValue; /** * Additional Fields * @default {} */ additionalFields?: { /** Main Contact */ maincontact_name?: string | Expression | PlaceholderValue; /** Notes */ notes?: string | Expression | PlaceholderValue; /** Phone Number */ phonenumber?: string | Expression | PlaceholderValue; }; }; export type HaloPSAV1SiteCreateNode = { type: 'n8n-nodes-base.haloPSA'; version: 1; credentials?: Credentials; config: NodeConfig; };