twenty-app-intake 0.2.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.
package/package.json ADDED
@@ -0,0 +1,56 @@
1
+ {
2
+ "name": "twenty-app-intake",
3
+ "version": "0.2.0",
4
+ "description": "The missing ingestion layer for Twenty CRM. Automatically sync any webhook source — contact forms, pipeline apps, or any platform — with native schema extension, field normalization, and deduplication. Zero manual configuration required.",
5
+ "keywords": [
6
+ "twenty-app",
7
+ "twenty-crm",
8
+ "crm",
9
+ "webhook",
10
+ "lead-ingestion",
11
+ "lead-capture",
12
+ "contact-form",
13
+ "webhook-crm",
14
+ "crm-integration",
15
+ "lead-normalization",
16
+ "form",
17
+ "intake",
18
+ "automation"
19
+ ],
20
+ "license": "MIT",
21
+ "engines": {
22
+ "node": ">=24.0.0",
23
+ "twenty": ">=2.5.0"
24
+ },
25
+ "scripts": {
26
+ "twenty": "twenty",
27
+ "test": "vitest run --config vitest.config.ts",
28
+ "test:watch": "vitest --config vitest.config.ts",
29
+ "test:integration": "vitest run --config vitest.integration.config.ts",
30
+ "test:coverage": "vitest run --config vitest.config.ts --coverage",
31
+ "typecheck": "twenty typecheck",
32
+ "build": "twenty build",
33
+ "publish:app": "twenty publish"
34
+ },
35
+ "dependencies": {
36
+ "cockatiel": "^3.2.1",
37
+ "neverthrow": "^8.0.0",
38
+ "twenty-client-sdk": "^2.5.1",
39
+ "twenty-sdk": "^2.5.1"
40
+ },
41
+ "devDependencies": {
42
+ "@changesets/cli": "^2.27.0",
43
+ "@types/react": "^19.2.15",
44
+ "@types/react-dom": "^19",
45
+ "@vitest/coverage-v8": "^3.2.0",
46
+ "fast-check": "^3.22.0",
47
+ "react": "^19.2.6",
48
+ "react-dom": "^19.2.6",
49
+ "tsup": "^8.0.0",
50
+ "typescript": "~5.8.3",
51
+ "vite": "^8.0.13",
52
+ "vite-tsconfig-paths": "^5.1.4",
53
+ "vitest": "^3.2.0"
54
+ },
55
+ "packageManager": "yarn@4.9.1+sha512.f95ce356460e05be48d66401c1ae64ef84d163dd689964962c6888a9810865e39097a5e9de748876c2e0bf89b232d583c33982773e9903ae7a76257270986538"
56
+ }
@@ -0,0 +1,20 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200">
2
+ <!-- Background -->
3
+ <rect width="200" height="200" rx="40" fill="#0F172A"/>
4
+
5
+ <!-- Funnel shape — wide at top, narrow at bottom, representing data flowing in and being refined -->
6
+ <!-- Top wide opening -->
7
+ <path d="M 40 55 L 160 55 L 125 100 L 125 145 L 75 145 L 75 100 Z"
8
+ fill="none"
9
+ stroke="#FFFFFF"
10
+ stroke-width="10"
11
+ stroke-linejoin="round"
12
+ stroke-linecap="round"/>
13
+
14
+ <!-- Flow lines inside the funnel suggesting data movement -->
15
+ <line x1="75" y1="120" x2="125" y2="120" stroke="#FFFFFF" stroke-width="4" stroke-opacity="0.35" stroke-linecap="round"/>
16
+ <line x1="83" y1="133" x2="117" y2="133" stroke="#FFFFFF" stroke-width="4" stroke-opacity="0.2" stroke-linecap="round"/>
17
+
18
+ <!-- Small dot at the output — the clean record -->
19
+ <circle cx="100" cy="158" r="6" fill="#FFFFFF"/>
20
+ </svg>