/** * Freshservice Node - Version 1 * Discriminator: resource=product, operation=update */ interface Credentials { freshserviceApi: CredentialReference; } /** Update an agent */ export type FreshserviceV1ProductUpdateParams = { resource: 'product'; operation: 'update'; /** * ID of the product to update */ productId?: string | Expression | PlaceholderValue; /** * Update Fields * @default {} */ updateFields?: { /** Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a> */ asset_type_id?: string | Expression; /** HTML supported */ description?: string | Expression | PlaceholderValue; /** Manufacturer */ manufacturer?: string | Expression | PlaceholderValue; /** Mode of Procurement * @default Buy */ mode_of_procurement?: 'Buy' | 'Lease' | 'Both' | Expression; /** Name */ name?: string | Expression | PlaceholderValue; /** Status * @default In Production */ status?: 'In Production' | 'In Pipeline' | 'Retired' | Expression; }; }; export type FreshserviceV1ProductUpdateNode = { type: 'n8n-nodes-base.freshservice'; version: 1; credentials?: Credentials; config: NodeConfig; };