/** * Humantic AI Node - Version 1 * Discriminator: resource=profile, operation=create */ interface Credentials { humanticAiApi: CredentialReference; } /** Create a profile */ export type HumanticAiV1ProfileCreateParams = { resource: 'profile'; operation: 'create'; /** * The LinkedIn profile URL or email ID for creating a Humantic profile. If you are sending the resume, this should be a unique string. */ userId?: string | Expression | PlaceholderValue; /** * Whether to send a resume for a resume based analysis * @default false */ sendResume?: boolean | Expression; /** * Input Binary Field * @hint The name of the input binary field containing the resume in PDF or DOCX format * @displayOptions.show { sendResume: [true] } * @default data */ binaryPropertyName?: string | Expression | PlaceholderValue; }; export type HumanticAiV1ProfileCreateNode = { type: 'n8n-nodes-base.humanticAi'; version: 1; credentials?: Credentials; config: NodeConfig; };