@leadbay/mcp 0.4.0 → 0.6.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 +98 -0
- package/MIGRATION.md +236 -0
- package/README.md +217 -11
- package/dist/bin.js +444 -15
- package/dist/{chunk-O2UOXRZO.js → chunk-NLG7GUZ3.js} +5393 -2221
- package/dist/{dist-RONMQBYU.js → dist-JUTSXWBL.js} +7 -1
- package/package.json +1 -1
|
@@ -45,10 +45,12 @@ import {
|
|
|
45
45
|
granularReadTools,
|
|
46
46
|
granularTools,
|
|
47
47
|
granularWriteTools,
|
|
48
|
+
importAndQualify,
|
|
48
49
|
importLeads,
|
|
49
50
|
isValidBulkId,
|
|
50
51
|
launchBulkEnrichment,
|
|
51
52
|
listLenses,
|
|
53
|
+
listMappableFields,
|
|
52
54
|
listSectors,
|
|
53
55
|
login,
|
|
54
56
|
pickClarification,
|
|
@@ -57,6 +59,7 @@ import {
|
|
|
57
59
|
promoteLens,
|
|
58
60
|
pullLeads,
|
|
59
61
|
qualifyLead,
|
|
62
|
+
qualifyStatus,
|
|
60
63
|
recallOrderedTitles,
|
|
61
64
|
refinePrompt,
|
|
62
65
|
removeEpilogue,
|
|
@@ -71,7 +74,7 @@ import {
|
|
|
71
74
|
tools,
|
|
72
75
|
updateLens,
|
|
73
76
|
updateLensFilter
|
|
74
|
-
} from "./chunk-
|
|
77
|
+
} from "./chunk-NLG7GUZ3.js";
|
|
75
78
|
export {
|
|
76
79
|
InMemoryBulkStore,
|
|
77
80
|
LeadbayClient,
|
|
@@ -118,10 +121,12 @@ export {
|
|
|
118
121
|
granularReadTools,
|
|
119
122
|
granularTools,
|
|
120
123
|
granularWriteTools,
|
|
124
|
+
importAndQualify,
|
|
121
125
|
importLeads,
|
|
122
126
|
isValidBulkId,
|
|
123
127
|
launchBulkEnrichment,
|
|
124
128
|
listLenses,
|
|
129
|
+
listMappableFields,
|
|
125
130
|
listSectors,
|
|
126
131
|
login,
|
|
127
132
|
pickClarification,
|
|
@@ -130,6 +135,7 @@ export {
|
|
|
130
135
|
promoteLens,
|
|
131
136
|
pullLeads,
|
|
132
137
|
qualifyLead,
|
|
138
|
+
qualifyStatus,
|
|
133
139
|
recallOrderedTitles,
|
|
134
140
|
refinePrompt,
|
|
135
141
|
removeEpilogue,
|
package/package.json
CHANGED