/** * Salesmate Node - Version 1 * Discriminator: resource=company, operation=create */ interface Credentials { salesmateApi: CredentialReference; } /** Create a company */ export type SalesmateV1CompanyCreateParams = { resource: 'company'; operation: 'create'; /** * Name */ name?: string | Expression | PlaceholderValue; /** * Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a> */ owner?: string | Expression; /** * Whether the data should include the fields details * @default false */ rawData?: boolean | Expression; /** * Additional Fields * @default {} */ additionalFields?: { /** Website */ website?: string | Expression | PlaceholderValue; /** Phone */ phone?: string | Expression | PlaceholderValue; /** Other Phone */ otherPhone?: string | Expression | PlaceholderValue; /** Facebook Handle */ facebookHandle?: string | Expression | PlaceholderValue; /** Google Plus Handle */ googlePlusHandle?: string | Expression | PlaceholderValue; /** LinkedIn Handle */ linkedInHandle?: string | Expression | PlaceholderValue; /** Skype ID */ skypeId?: string | Expression | PlaceholderValue; /** Twitter Handle */ twitterHandle?: string | Expression | PlaceholderValue; /** Currency */ currency?: string | Expression | PlaceholderValue; /** Billing Address Line 1 */ billingAddressLine1?: string | Expression | PlaceholderValue; /** Billing Address Line 2 */ billingAddressLine2?: string | Expression | PlaceholderValue; /** Billing City */ billingCity?: string | Expression | PlaceholderValue; /** Billing Zip Code */ billingZipCode?: string | Expression | PlaceholderValue; /** Billing State */ billingState?: string | Expression | PlaceholderValue; /** Billing Country */ billingState?: string | Expression | PlaceholderValue; /** Description */ description?: string | Expression | PlaceholderValue; /** Tags */ tags?: string | Expression | PlaceholderValue; }; }; export type SalesmateV1CompanyCreateNode = { type: 'n8n-nodes-base.salesmate'; version: 1; credentials?: Credentials; config: NodeConfig; };