fullstackgtm 0.56.0 → 0.56.1

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/CHANGELOG.md CHANGED
@@ -7,6 +7,14 @@ The path to 1.0 is planned in [docs/roadmap-to-1.0.md](https://github.com/fullst
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.56.1] — 2026-07-13
11
+
12
+ ### Fixed
13
+
14
+ - Portable Clay normalization retains provider `work_email` and fallback
15
+ `personal_email` fields, preserving the homepage demo's pre-existing contact
16
+ disclosure behavior while still returning only the canonical prospect shape.
17
+
10
18
  ## [0.56.0] — 2026-07-13
11
19
 
12
20
  ### Added
@@ -26,7 +26,7 @@ export function normalizeClayPerson(value) {
26
26
  companyName: stringValue(row.latest_experience_company),
27
27
  companyDomain: bareDomain(stringValue(row.domain)),
28
28
  linkedin: normalizeLinkedin(stringValue(row.url)),
29
- email: stringValue(row.email),
29
+ email: stringValue(row.work_email) ?? stringValue(row.email) ?? stringValue(row.personal_email),
30
30
  sourceId: normalizeLinkedin(stringValue(row.url)) ?? fullName,
31
31
  location: {
32
32
  city: stringValue(location.city),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fullstackgtm",
3
- "version": "0.56.0",
3
+ "version": "0.56.1",
4
4
  "description": "Open-source agentic GTM ops framework: canonical GTM data model, pluggable deterministic audits, reviewable dry-run patch plans, approval-gated write-back with conflict detection, and cross-system entity resolution. HubSpot, Salesforce, and Stripe connectors included.",
5
5
  "license": "Apache-2.0",
6
6
  "author": "Full Stack GTM LLC <ryan@fullstackgtm.com> (https://fullstackgtm.com)",
@@ -40,7 +40,7 @@ export function normalizeClayPerson(value: unknown): Prospect {
40
40
  companyName: stringValue(row.latest_experience_company),
41
41
  companyDomain: bareDomain(stringValue(row.domain)),
42
42
  linkedin: normalizeLinkedin(stringValue(row.url)),
43
- email: stringValue(row.email),
43
+ email: stringValue(row.work_email) ?? stringValue(row.email) ?? stringValue(row.personal_email),
44
44
  sourceId: normalizeLinkedin(stringValue(row.url)) ?? fullName,
45
45
  location: {
46
46
  city: stringValue(location.city),