fullstackgtm 0.57.0 → 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 +21 -0
- package/README.md +162 -508
- package/dist/cli/enrich.d.ts +2 -2
- package/dist/cli/enrich.js +27 -14
- package/dist/cli/help.js +2 -2
- package/dist/cli/signals.js +14 -3
- 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/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/dist/runReport.js +11 -0
- package/docs/api.md +1 -1
- package/llms.txt +3 -2
- package/package.json +2 -2
- package/src/cli/enrich.ts +30 -15
- package/src/cli/help.ts +2 -2
- package/src/cli/signals.ts +14 -2
- package/src/enrich.ts +2 -2
- package/src/enrichZoomInfo.ts +197 -0
- package/src/index.ts +11 -0
- package/src/runReport.ts +12 -0
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,27 @@ 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
|
+
|
|
10
31
|
## [0.57.0] — 2026-07-13
|
|
11
32
|
|
|
12
33
|
### Added
|