n8n-nodes-linkupapi
Version:
n8n node for LINKUP API - Complete LinkedIn automation with 100% API coverage and full documentation
114 lines (113 loc) • 3.52 kB
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.companyApiProperties = void 0;
exports.companyApiProperties = [
// COMPANY API - Parameters
{
displayName: "Search Companies Parameters",
name: "searchCompaniesParams",
type: "collection",
placeholder: "Add search parameter",
default: {},
displayOptions: {
show: {
resource: ["companyApi"],
operation: ["searchCompanies"],
},
},
options: [
{
displayName: "Company Keyword *",
name: "companyKeyword",
type: "string",
default: "",
placeholder: "Microsoft",
description: "Company name or keyword to search",
},
{
displayName: "Industry",
name: "industry",
type: "string",
default: "",
placeholder: "Technology",
description: "Industry to filter by",
},
{
displayName: "Location",
name: "location",
type: "string",
default: "",
placeholder: "San Francisco",
description: "Location to filter by",
},
{
displayName: "Employee Range",
name: "employee_range",
type: "string",
default: "",
placeholder: "1000-5000",
description: "Employee count range",
},
{
displayName: "Founding Company",
name: "founding_company",
type: "boolean",
default: false,
description: "Whether to filter by founding companies",
},
{
displayName: "Total Results",
name: "total_results",
type: "number",
default: 10,
description: "Number of results to return",
},
],
},
{
displayName: "Get Company Info Parameters",
name: "getCompanyInfoParams",
type: "collection",
placeholder: "Add company parameter",
default: {},
displayOptions: {
show: {
resource: ["companyApi"],
operation: ["getCompanyInfo"],
},
},
options: [
{
displayName: "Company URL *",
name: "companyUrl",
type: "string",
default: "",
placeholder: "https://www.linkedin.com/company/microsoft",
description: "LinkedIn company URL",
},
],
},
{
displayName: "Get Company Info By Domain Parameters",
name: "getCompanyInfoByDomainParams",
type: "collection",
placeholder: "Add domain parameter",
default: {},
displayOptions: {
show: {
resource: ["companyApi"],
operation: ["getCompanyInfoByDomain"],
},
},
options: [
{
displayName: "Domain *",
name: "domain",
type: "string",
default: "",
placeholder: "microsoft.com",
description: "Company domain name",
},
],
},
];