fullstackgtm 0.56.1 → 0.58.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/CHANGELOG.md +43 -0
- package/README.md +163 -492
- package/dist/cli/enrich.d.ts +2 -2
- package/dist/cli/enrich.js +39 -12
- package/dist/cli/help.js +4 -4
- package/dist/cli/icp.js +99 -6
- package/dist/cli/signals.js +19 -4
- package/dist/enrich.d.ts +1 -1
- package/dist/enrich.js +1 -1
- package/dist/enrichZoomInfo.d.ts +33 -0
- package/dist/enrichZoomInfo.js +144 -0
- package/dist/hostedArtifacts.d.ts +35 -1
- package/dist/hostedArtifacts.js +35 -10
- package/dist/icp.d.ts +3 -0
- package/dist/icp.js +7 -4
- package/dist/icpSync.d.ts +55 -0
- package/dist/icpSync.js +93 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +2 -0
- package/dist/runReport.js +11 -0
- package/docs/api.md +1 -1
- package/docs/architecture.md +5 -0
- package/llms.txt +3 -2
- package/package.json +2 -2
- package/src/cli/enrich.ts +40 -13
- package/src/cli/help.ts +4 -4
- package/src/cli/icp.ts +80 -5
- package/src/cli/signals.ts +20 -3
- package/src/enrich.ts +2 -2
- package/src/enrichZoomInfo.ts +197 -0
- package/src/hostedArtifacts.ts +51 -22
- package/src/icp.ts +10 -4
- package/src/icpSync.ts +74 -0
- package/src/index.ts +24 -0
- package/src/runReport.ts +12 -0
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,49 @@ 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.58.0] — 2026-07-14
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
|
|
14
|
+
- ZoomInfo is available as a governed `enrich append|refresh` source through
|
|
15
|
+
ZoomInfo's official `gtm` CLI. ZoomInfo retains OAuth, entitlements, and
|
|
16
|
+
credit accounting; FullstackGTM turns returned records into fill-blanks-only,
|
|
17
|
+
approval-gated CRM patch plans with provenance and apply receipts.
|
|
18
|
+
|
|
19
|
+
### Changed
|
|
20
|
+
|
|
21
|
+
- The package README and npm description now lead with FullstackGTM's focused
|
|
22
|
+
role as the CRM control plane and safety toolbox for agents. Adjacent GTM
|
|
23
|
+
workflows are linked from an appendix instead of obscuring the core loop.
|
|
24
|
+
|
|
25
|
+
### Fixed
|
|
26
|
+
|
|
27
|
+
- The public CI runtime smoke test no longer redirects output to `/dev/null`,
|
|
28
|
+
which PowerShell interpreted as `D:\\dev\\null` on Windows and caused the npm
|
|
29
|
+
README's CI badge to report failure despite successful Linux/macOS jobs.
|
|
30
|
+
|
|
31
|
+
## [0.57.0] — 2026-07-13
|
|
32
|
+
|
|
33
|
+
### Added
|
|
34
|
+
|
|
35
|
+
- Paired CLIs can inspect and safely reconcile hosted ICPs with `icp status`,
|
|
36
|
+
`icp pull`, `icp push`, and `icp sync`. A private adjacent sidecar records
|
|
37
|
+
the last synchronized revision and content hash without changing `icp.json`.
|
|
38
|
+
- Hosted ICP edits publish immutable numbered revisions with author, timestamp,
|
|
39
|
+
origin, content hash, change summary, comparison, and restore-as-new-revision
|
|
40
|
+
history.
|
|
41
|
+
- Signal evidence and ICP-scored lead previews record the exact ICP revision
|
|
42
|
+
and hash used to produce them.
|
|
43
|
+
|
|
44
|
+
### Changed
|
|
45
|
+
|
|
46
|
+
- Hosted changes never silently replace a local ICP. Concurrent local and
|
|
47
|
+
hosted edits are reported as conflicts, and `icp sync` writes the hosted
|
|
48
|
+
revision to a separate review file.
|
|
49
|
+
- Older CLIs may continue updating CLI-origin artifacts, but blind writes can
|
|
50
|
+
no longer overwrite an artifact whose latest revision was published in the
|
|
51
|
+
hosted editor.
|
|
52
|
+
|
|
10
53
|
## [0.56.1] — 2026-07-13
|
|
11
54
|
|
|
12
55
|
### Fixed
|