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