UNPKG

n8n-nodes-linkupapi

Version:

n8n node for LINKUP API - Complete LinkedIn automation with 100% API coverage and full documentation

38 lines (37 loc) 1.17 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.authenticationProperties = void 0; exports.authenticationProperties = [ // AUTH - Parameters Linkup { displayName: "Verify Code Parameters", name: "verifyCodeParams", type: "collection", placeholder: "Add verification parameter", default: {}, displayOptions: { show: { resource: ["authentication"], operation: ["verifyCode"], }, }, options: [ { displayName: "Verification Code *", name: "verificationCode", type: "string", default: "", placeholder: "123456", description: "Verification code received via email/SMS", }, { displayName: "Country", name: "country", type: "string", default: "FR", placeholder: "FR, US, UK, DE, ES, IT, CA, AU, etc.", description: "Country code for proxy selection", }, ], }, ];