linkedin-secret-sauce 0.5.1 → 0.6.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -6,7 +6,7 @@
6
6
  * stateless - consumers pass their own API keys and configuration.
7
7
  */
8
8
  Object.defineProperty(exports, "__esModule", { value: true });
9
- exports.PROVIDER_COSTS = exports.DEFAULT_PROVIDER_ORDER = void 0;
9
+ exports.SMARTPROSPECT_SUB_INDUSTRIES = exports.PROVIDER_COSTS = exports.DEFAULT_PROVIDER_ORDER = void 0;
10
10
  /**
11
11
  * Default provider order
12
12
  */
@@ -29,3 +29,52 @@ exports.PROVIDER_COSTS = {
29
29
  apollo: 0,
30
30
  dropcontact: 0.01,
31
31
  };
32
+ /**
33
+ * SmartProspect Sub-Industry values (exact API values - partial list)
34
+ * Note: This is a subset of available sub-industries. The API accepts many more.
35
+ */
36
+ exports.SMARTPROSPECT_SUB_INDUSTRIES = [
37
+ // Software & Internet
38
+ 'Internet',
39
+ 'Information Technology and Services',
40
+ 'Information Services',
41
+ 'Computer Software',
42
+ 'Computer & Network Security',
43
+ 'Computer Games',
44
+ // Real Estate & Construction
45
+ 'Glass, Ceramics & Concrete',
46
+ 'Construction',
47
+ 'Commercial Real Estate',
48
+ 'Civil Engineering',
49
+ 'Building Materials',
50
+ 'Architecture & Planning',
51
+ // Business Services
52
+ 'Writing and Editing',
53
+ 'Translation and Localization',
54
+ 'Think Tanks',
55
+ 'Staffing and Recruiting',
56
+ 'Security and Investigations',
57
+ 'Public Safety',
58
+ 'Public Relations and Communications',
59
+ 'Program Development',
60
+ 'Professional Training & Coaching',
61
+ 'Market Research',
62
+ 'Marketing and Advertising',
63
+ 'Management Consulting',
64
+ 'Legal Services',
65
+ 'Law Practice',
66
+ 'Law Enforcement',
67
+ 'International Trade and Development',
68
+ 'Import and Export',
69
+ 'Human Resources',
70
+ 'Graphic Design',
71
+ 'Facilities Services',
72
+ 'Executive Office',
73
+ 'Events Services',
74
+ 'Environmental Services',
75
+ 'Design',
76
+ 'Business Supplies and Equipment',
77
+ 'Animation',
78
+ 'Alternative Dispute Resolution',
79
+ 'Outsourcing/Offshoring',
80
+ ];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "linkedin-secret-sauce",
3
- "version": "0.5.1",
3
+ "version": "0.6.0",
4
4
  "description": "Private LinkedIn Sales Navigator client with automatic cookie management",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -10,6 +10,20 @@
10
10
  "publishConfig": {
11
11
  "registry": "https://registry.npmjs.org/"
12
12
  },
13
+ "scripts": {
14
+ "dev:playground": "pnpm -C apps/playground dev",
15
+ "search": "node scripts/rg-fast.mjs",
16
+ "rg:fast": "node scripts/rg-fast.mjs",
17
+ "build": "tsc -p tsconfig.json",
18
+ "lint": "eslint \"src/**/*.ts\" --max-warnings=0",
19
+ "lint:fix": "eslint \"src/**/*.ts\" --fix",
20
+ "dev": "tsc -w -p tsconfig.json",
21
+ "test": "vitest run",
22
+ "prepublishOnly": "npm run build",
23
+ "release:patch": "npm version patch && git push --follow-tags",
24
+ "release:minor": "npm version minor && git push --follow-tags",
25
+ "release:major": "npm version major && git push --follow-tags"
26
+ },
13
27
  "keywords": [
14
28
  "linkedin",
15
29
  "sales-navigator",
@@ -39,18 +53,5 @@
39
53
  "husky": "^9.0.11",
40
54
  "typescript": "^5.9.3",
41
55
  "vitest": "^1.6.0"
42
- },
43
- "scripts": {
44
- "dev:playground": "pnpm -C apps/playground dev",
45
- "search": "node scripts/rg-fast.mjs",
46
- "rg:fast": "node scripts/rg-fast.mjs",
47
- "build": "tsc -p tsconfig.json",
48
- "lint": "eslint \"src/**/*.ts\" --max-warnings=0",
49
- "lint:fix": "eslint \"src/**/*.ts\" --fix",
50
- "dev": "tsc -w -p tsconfig.json",
51
- "test": "vitest run",
52
- "release:patch": "npm version patch && git push --follow-tags",
53
- "release:minor": "npm version minor && git push --follow-tags",
54
- "release:major": "npm version major && git push --follow-tags"
55
56
  }
56
- }
57
+ }