@twentyhq/people-data-labs 1.0.2 → 1.0.7
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.
- package/README.md +16 -0
- package/manifest.json +39 -38
- package/package.json +5 -4
- package/src/front-components/enrich-companies-component-effect.mjs +10 -10
- package/src/front-components/enrich-companies-component-effect.mjs.map +4 -4
- package/src/front-components/enrich-companies-component-effect.tsx +21 -0
- package/src/front-components/enrich-people-component-effect.mjs +10 -10
- package/src/front-components/enrich-people-component-effect.mjs.map +4 -4
- package/src/front-components/enrich-people-component-effect.tsx +21 -0
- package/src/logic-functions/enrich-companies.function.mjs +22 -17
- package/src/logic-functions/enrich-companies.function.mjs.map +4 -4
- package/src/logic-functions/enrich-companies.function.ts +77 -0
- package/src/logic-functions/enrich-company.function.mjs +22 -16
- package/src/logic-functions/enrich-company.function.mjs.map +4 -4
- package/src/logic-functions/enrich-company.function.ts +75 -0
- package/src/logic-functions/enrich-people.function.mjs +22 -17
- package/src/logic-functions/enrich-people.function.mjs.map +4 -4
- package/src/logic-functions/enrich-people.function.ts +77 -0
- package/src/logic-functions/enrich-person.function.mjs +22 -16
- package/src/logic-functions/enrich-person.function.mjs.map +4 -4
- package/src/logic-functions/enrich-person.function.ts +75 -0
- package/src/logic-functions/post-install.function.mjs.map +1 -1
- package/src/logic-functions/post-install.function.ts +17 -0
package/README.md
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# People Data Labs
|
|
2
|
+
|
|
3
|
+
**Turn a name into a full profile — enrich any Person or Company in one click.**
|
|
4
|
+
|
|
5
|
+
## ✨ What you get
|
|
6
|
+
|
|
7
|
+
- **+30 rich data fields** per Person and Company — seniority, skills, firmographics, funding, socials & more
|
|
8
|
+
- **Run it anywhere** — from the command menu, as a workflow step, or straight from AI chat
|
|
9
|
+
- **Smart matching** — finds the right profile from a LinkedIn, email, or domain, and only writes confident matches
|
|
10
|
+
|
|
11
|
+
## 💳 Billing
|
|
12
|
+
|
|
13
|
+
Pay only for matches, in Twenty credits — **not found and skipped records are free.**
|
|
14
|
+
|
|
15
|
+
- **Person match:** $0.336
|
|
16
|
+
- **Company match:** $0.12
|
package/manifest.json
CHANGED
|
@@ -3,10 +3,8 @@
|
|
|
3
3
|
"universalIdentifier": "4a1178c1-3535-4a47-b592-231d3216b36f",
|
|
4
4
|
"displayName": "People Data Labs",
|
|
5
5
|
"description": "Enrich People and Companies with People Data Labs data.",
|
|
6
|
-
"
|
|
7
|
-
"
|
|
8
|
-
"public/gallery/cover.png"
|
|
9
|
-
],
|
|
6
|
+
"category": "Enrichment",
|
|
7
|
+
"author": "Twenty",
|
|
10
8
|
"serverVariables": {
|
|
11
9
|
"PDL_API_KEY": {
|
|
12
10
|
"description": "People Data Labs API key",
|
|
@@ -14,10 +12,15 @@
|
|
|
14
12
|
"isRequired": true
|
|
15
13
|
}
|
|
16
14
|
},
|
|
15
|
+
"logo": "public/people-data-labs-icon.png",
|
|
16
|
+
"galleryImages": [
|
|
17
|
+
"public/gallery/cover.png"
|
|
18
|
+
],
|
|
17
19
|
"defaultRoleUniversalIdentifier": "abb2aa9f-8e9c-4e8b-a336-f864ee78b7cd",
|
|
18
20
|
"aboutDescription": "# People Data Labs\n\n**Turn a name into a full profile — enrich any Person or Company in one click.**\n\n## ✨ What you get\n\n- **+30 rich data fields** per Person and Company — seniority, skills, firmographics, funding, socials & more\n- **Run it anywhere** — from the command menu, as a workflow step, or straight from AI chat\n- **Smart matching** — finds the right profile from a LinkedIn, email, or domain, and only writes confident matches\n\n## 💳 Billing\n\nPay only for matches, in Twenty credits — **not found and skipped records are free.**\n\n- **Person match:** $0.336\n- **Company match:** $0.12\n",
|
|
19
|
-
"yarnLockChecksum": "
|
|
20
|
-
"packageJsonChecksum": "
|
|
21
|
+
"yarnLockChecksum": "c5e12891fbe2a664fa11ac920249078d",
|
|
22
|
+
"packageJsonChecksum": "52ad9e6dcd5f37a063bffe961f60b7f1",
|
|
23
|
+
"requiredServerVersionRange": ">=2.23.0",
|
|
21
24
|
"postInstallLogicFunction": {
|
|
22
25
|
"universalIdentifier": "9de46f15-05ec-4314-84c1-b9919b545269",
|
|
23
26
|
"shouldRunOnVersionUpgrade": false,
|
|
@@ -10416,7 +10419,8 @@
|
|
|
10416
10419
|
"type": "object",
|
|
10417
10420
|
"properties": {
|
|
10418
10421
|
"recordId": {
|
|
10419
|
-
"type": "
|
|
10422
|
+
"type": "record",
|
|
10423
|
+
"objectUniversalIdentifier": "20202020-b374-4779-a561-80086cb2e17f",
|
|
10420
10424
|
"label": "Record"
|
|
10421
10425
|
},
|
|
10422
10426
|
"updateFields": {
|
|
@@ -10493,7 +10497,7 @@
|
|
|
10493
10497
|
"handlerName": "default.config.handler",
|
|
10494
10498
|
"sourceHandlerPath": "src/logic-functions/enrich-company.function.ts",
|
|
10495
10499
|
"builtHandlerPath": "src/logic-functions/enrich-company.function.mjs",
|
|
10496
|
-
"builtHandlerChecksum": "
|
|
10500
|
+
"builtHandlerChecksum": "8e2d1cafffaca86ad689db521b42d0c7"
|
|
10497
10501
|
},
|
|
10498
10502
|
{
|
|
10499
10503
|
"universalIdentifier": "65356a82-6734-4fc9-8172-7d30ed1b7859",
|
|
@@ -10513,10 +10517,8 @@
|
|
|
10513
10517
|
"type": "object",
|
|
10514
10518
|
"properties": {
|
|
10515
10519
|
"records": {
|
|
10516
|
-
"type": "
|
|
10517
|
-
"
|
|
10518
|
-
"type": "object"
|
|
10519
|
-
},
|
|
10520
|
+
"type": "records",
|
|
10521
|
+
"objectUniversalIdentifier": "20202020-e674-48e5-a542-72570eee7213",
|
|
10520
10522
|
"label": "Records"
|
|
10521
10523
|
},
|
|
10522
10524
|
"updateFields": {
|
|
@@ -10602,7 +10604,7 @@
|
|
|
10602
10604
|
"handlerName": "default.config.handler",
|
|
10603
10605
|
"sourceHandlerPath": "src/logic-functions/enrich-people.function.ts",
|
|
10604
10606
|
"builtHandlerPath": "src/logic-functions/enrich-people.function.mjs",
|
|
10605
|
-
"builtHandlerChecksum": "
|
|
10607
|
+
"builtHandlerChecksum": "5ac239752d97e621077a8c139f1ee8a3"
|
|
10606
10608
|
},
|
|
10607
10609
|
{
|
|
10608
10610
|
"universalIdentifier": "864ad69b-ff9f-4635-9aed-16fd0c2ad210",
|
|
@@ -10617,7 +10619,8 @@
|
|
|
10617
10619
|
"type": "object",
|
|
10618
10620
|
"properties": {
|
|
10619
10621
|
"recordId": {
|
|
10620
|
-
"type": "
|
|
10622
|
+
"type": "record",
|
|
10623
|
+
"objectUniversalIdentifier": "20202020-e674-48e5-a542-72570eee7213",
|
|
10621
10624
|
"label": "Record"
|
|
10622
10625
|
},
|
|
10623
10626
|
"updateFields": {
|
|
@@ -10694,7 +10697,7 @@
|
|
|
10694
10697
|
"handlerName": "default.config.handler",
|
|
10695
10698
|
"sourceHandlerPath": "src/logic-functions/enrich-person.function.ts",
|
|
10696
10699
|
"builtHandlerPath": "src/logic-functions/enrich-person.function.mjs",
|
|
10697
|
-
"builtHandlerChecksum": "
|
|
10700
|
+
"builtHandlerChecksum": "0bc3c9d3db1465bcf8931006e9cca994"
|
|
10698
10701
|
},
|
|
10699
10702
|
{
|
|
10700
10703
|
"universalIdentifier": "9de46f15-05ec-4314-84c1-b9919b545269",
|
|
@@ -10725,10 +10728,8 @@
|
|
|
10725
10728
|
"type": "object",
|
|
10726
10729
|
"properties": {
|
|
10727
10730
|
"records": {
|
|
10728
|
-
"type": "
|
|
10729
|
-
"
|
|
10730
|
-
"type": "object"
|
|
10731
|
-
},
|
|
10731
|
+
"type": "records",
|
|
10732
|
+
"objectUniversalIdentifier": "20202020-b374-4779-a561-80086cb2e17f",
|
|
10732
10733
|
"label": "Records"
|
|
10733
10734
|
},
|
|
10734
10735
|
"updateFields": {
|
|
@@ -10814,7 +10815,7 @@
|
|
|
10814
10815
|
"handlerName": "default.config.handler",
|
|
10815
10816
|
"sourceHandlerPath": "src/logic-functions/enrich-companies.function.ts",
|
|
10816
10817
|
"builtHandlerPath": "src/logic-functions/enrich-companies.function.mjs",
|
|
10817
|
-
"builtHandlerChecksum": "
|
|
10818
|
+
"builtHandlerChecksum": "38231f0fd2a66cfde170f2d55da1a89c"
|
|
10818
10819
|
}
|
|
10819
10820
|
],
|
|
10820
10821
|
"frontComponents": [
|
|
@@ -10826,7 +10827,7 @@
|
|
|
10826
10827
|
"componentName": "Enrich",
|
|
10827
10828
|
"sourceComponentPath": "src/front-components/enrich-companies-component-effect.tsx",
|
|
10828
10829
|
"builtComponentPath": "src/front-components/enrich-companies-component-effect.mjs",
|
|
10829
|
-
"builtComponentChecksum": "
|
|
10830
|
+
"builtComponentChecksum": "cad4cf0f83cb47632a1051e5cde019822712cb13951277dd4579c806dfbbb645",
|
|
10830
10831
|
"usesSdkClient": false
|
|
10831
10832
|
},
|
|
10832
10833
|
{
|
|
@@ -10837,7 +10838,7 @@
|
|
|
10837
10838
|
"componentName": "Enrich",
|
|
10838
10839
|
"sourceComponentPath": "src/front-components/enrich-people-component-effect.tsx",
|
|
10839
10840
|
"builtComponentPath": "src/front-components/enrich-people-component-effect.mjs",
|
|
10840
|
-
"builtComponentChecksum": "
|
|
10841
|
+
"builtComponentChecksum": "c869e0870394e28d3cca3f8ad1fbe2cea35547c230230f86d207b8ca849e4aa4",
|
|
10841
10842
|
"usesSdkClient": false
|
|
10842
10843
|
}
|
|
10843
10844
|
],
|
|
@@ -11075,49 +11076,49 @@
|
|
|
11075
11076
|
},
|
|
11076
11077
|
{
|
|
11077
11078
|
"universalIdentifier": "3f0e5a60-3f49-4872-8451-5344a3715374",
|
|
11078
|
-
"fieldMetadataUniversalIdentifier": "
|
|
11079
|
+
"fieldMetadataUniversalIdentifier": "0b28db77-8099-5ce3-a11f-86a5778d7740",
|
|
11079
11080
|
"position": 35,
|
|
11080
11081
|
"isVisible": true
|
|
11081
11082
|
},
|
|
11082
11083
|
{
|
|
11083
11084
|
"universalIdentifier": "70ab74e1-d2ff-4f15-81ef-196e223a783e",
|
|
11084
|
-
"fieldMetadataUniversalIdentifier": "
|
|
11085
|
+
"fieldMetadataUniversalIdentifier": "9d7b0087-7037-55dc-bb59-456064455694",
|
|
11085
11086
|
"position": 36,
|
|
11086
11087
|
"isVisible": true
|
|
11087
11088
|
},
|
|
11088
11089
|
{
|
|
11089
11090
|
"universalIdentifier": "035b3904-59b9-4fce-a366-ee0139770346",
|
|
11090
|
-
"fieldMetadataUniversalIdentifier": "
|
|
11091
|
+
"fieldMetadataUniversalIdentifier": "a4399ae3-fe89-59fe-a282-aec77d4e63a8",
|
|
11091
11092
|
"position": 37,
|
|
11092
11093
|
"isVisible": true
|
|
11093
11094
|
},
|
|
11094
11095
|
{
|
|
11095
11096
|
"universalIdentifier": "617b7343-1ae5-4813-b4f5-6e99d0a833bb",
|
|
11096
|
-
"fieldMetadataUniversalIdentifier": "
|
|
11097
|
+
"fieldMetadataUniversalIdentifier": "28ec0f8f-ad23-5317-b2d9-1a487bcefee2",
|
|
11097
11098
|
"position": 38,
|
|
11098
11099
|
"isVisible": true
|
|
11099
11100
|
},
|
|
11100
11101
|
{
|
|
11101
11102
|
"universalIdentifier": "24d0411e-23d2-4cf8-9781-6efc8443efdc",
|
|
11102
|
-
"fieldMetadataUniversalIdentifier": "
|
|
11103
|
+
"fieldMetadataUniversalIdentifier": "6046f5a2-f52b-5c41-95b3-134d95b2cc99",
|
|
11103
11104
|
"position": 39,
|
|
11104
11105
|
"isVisible": true
|
|
11105
11106
|
},
|
|
11106
11107
|
{
|
|
11107
11108
|
"universalIdentifier": "4036071d-e527-46c8-940c-401f33803aa9",
|
|
11108
|
-
"fieldMetadataUniversalIdentifier": "
|
|
11109
|
+
"fieldMetadataUniversalIdentifier": "17127ec7-3667-5615-85fa-428dc34768c6",
|
|
11109
11110
|
"position": 40,
|
|
11110
11111
|
"isVisible": true
|
|
11111
11112
|
},
|
|
11112
11113
|
{
|
|
11113
11114
|
"universalIdentifier": "ab123fcd-ec53-4d33-b43c-c7319db72be4",
|
|
11114
|
-
"fieldMetadataUniversalIdentifier": "
|
|
11115
|
+
"fieldMetadataUniversalIdentifier": "d206d586-fd61-56e1-80a8-9993beb7be0b",
|
|
11115
11116
|
"position": 41,
|
|
11116
11117
|
"isVisible": true
|
|
11117
11118
|
},
|
|
11118
11119
|
{
|
|
11119
11120
|
"universalIdentifier": "f4c2ee74-f9b7-43f6-8bc9-1ca8ffe92a9f",
|
|
11120
|
-
"fieldMetadataUniversalIdentifier": "
|
|
11121
|
+
"fieldMetadataUniversalIdentifier": "a1add354-649b-5ab6-9fc4-a5ab112110ac",
|
|
11121
11122
|
"position": 42,
|
|
11122
11123
|
"isVisible": true
|
|
11123
11124
|
},
|
|
@@ -11396,49 +11397,49 @@
|
|
|
11396
11397
|
},
|
|
11397
11398
|
{
|
|
11398
11399
|
"universalIdentifier": "ef6e496c-de6c-47ed-bd44-886736f942ec",
|
|
11399
|
-
"fieldMetadataUniversalIdentifier": "
|
|
11400
|
+
"fieldMetadataUniversalIdentifier": "1c0e0dfe-a01f-58d6-8948-08b93164d03c",
|
|
11400
11401
|
"position": 39,
|
|
11401
11402
|
"isVisible": true
|
|
11402
11403
|
},
|
|
11403
11404
|
{
|
|
11404
11405
|
"universalIdentifier": "3758ed96-f76d-49a0-b37b-7c5c9aa4c1c1",
|
|
11405
|
-
"fieldMetadataUniversalIdentifier": "
|
|
11406
|
+
"fieldMetadataUniversalIdentifier": "ddea86e6-5766-5798-ac32-14fbab6089f6",
|
|
11406
11407
|
"position": 40,
|
|
11407
11408
|
"isVisible": true
|
|
11408
11409
|
},
|
|
11409
11410
|
{
|
|
11410
11411
|
"universalIdentifier": "a5bf7046-8fc9-4704-91a5-ba6c1b0f4b58",
|
|
11411
|
-
"fieldMetadataUniversalIdentifier": "
|
|
11412
|
+
"fieldMetadataUniversalIdentifier": "54dd92e1-67bf-5381-86f3-c747976dcdaf",
|
|
11412
11413
|
"position": 41,
|
|
11413
11414
|
"isVisible": true
|
|
11414
11415
|
},
|
|
11415
11416
|
{
|
|
11416
11417
|
"universalIdentifier": "f6ed39c3-aff2-4ccf-b4e8-57de72b64cdd",
|
|
11417
|
-
"fieldMetadataUniversalIdentifier": "
|
|
11418
|
+
"fieldMetadataUniversalIdentifier": "32d7483f-6227-528b-bc65-62d9cf858cd8",
|
|
11418
11419
|
"position": 42,
|
|
11419
11420
|
"isVisible": true
|
|
11420
11421
|
},
|
|
11421
11422
|
{
|
|
11422
11423
|
"universalIdentifier": "45159f0c-bac0-439c-ad8d-c7e4fce4b457",
|
|
11423
|
-
"fieldMetadataUniversalIdentifier": "
|
|
11424
|
+
"fieldMetadataUniversalIdentifier": "91b4c732-ea34-5593-b217-34d2120da23e",
|
|
11424
11425
|
"position": 43,
|
|
11425
11426
|
"isVisible": true
|
|
11426
11427
|
},
|
|
11427
11428
|
{
|
|
11428
11429
|
"universalIdentifier": "8a5f1742-317f-4b01-b0c1-5d0866f78fa9",
|
|
11429
|
-
"fieldMetadataUniversalIdentifier": "
|
|
11430
|
+
"fieldMetadataUniversalIdentifier": "50d01fec-5628-506c-8a1d-9ac0616aab03",
|
|
11430
11431
|
"position": 44,
|
|
11431
11432
|
"isVisible": true
|
|
11432
11433
|
},
|
|
11433
11434
|
{
|
|
11434
11435
|
"universalIdentifier": "1614c9fb-3566-481f-9dfb-bbba37b1c8aa",
|
|
11435
|
-
"fieldMetadataUniversalIdentifier": "
|
|
11436
|
+
"fieldMetadataUniversalIdentifier": "11e31107-be74-53e5-ba99-e536c6b73ee6",
|
|
11436
11437
|
"position": 45,
|
|
11437
11438
|
"isVisible": true
|
|
11438
11439
|
},
|
|
11439
11440
|
{
|
|
11440
11441
|
"universalIdentifier": "01dfdc66-6df5-4b7a-8b11-63feabcb915d",
|
|
11441
|
-
"fieldMetadataUniversalIdentifier": "
|
|
11442
|
+
"fieldMetadataUniversalIdentifier": "962cedc2-cb8f-5f33-b5e1-256aabe6f14e",
|
|
11442
11443
|
"position": 46,
|
|
11443
11444
|
"isVisible": true
|
|
11444
11445
|
},
|
package/package.json
CHANGED
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@twentyhq/people-data-labs",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.7",
|
|
4
4
|
"description": "People Data Labs enrichment app for Twenty",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"engines": {
|
|
7
7
|
"node": "^24.5.0",
|
|
8
8
|
"npm": "please-use-yarn",
|
|
9
|
-
"yarn": ">=4.0.2"
|
|
9
|
+
"yarn": ">=4.0.2",
|
|
10
|
+
"twenty": ">=2.23.0"
|
|
10
11
|
},
|
|
11
12
|
"keywords": [
|
|
12
13
|
"twenty-app"
|
|
@@ -28,8 +29,8 @@
|
|
|
28
29
|
"oxlint": "^0.16.0",
|
|
29
30
|
"react": "^18.2.0",
|
|
30
31
|
"react-dom": "^18.2.0",
|
|
31
|
-
"twenty-client-sdk": "
|
|
32
|
-
"twenty-sdk": "
|
|
32
|
+
"twenty-client-sdk": "2.23.0-alpha.2",
|
|
33
|
+
"twenty-sdk": "2.23.0-alpha.2",
|
|
33
34
|
"typescript": "^5.9.3",
|
|
34
35
|
"vite-tsconfig-paths": "^4.2.1",
|
|
35
36
|
"vitest": "^4.0.0"
|