@sellable/mcp 0.1.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.
Files changed (200) hide show
  1. package/.claude-plugin/plugin.json +12 -0
  2. package/.mcp.json +9 -0
  3. package/README.md +355 -0
  4. package/dist/api.d.ts +21 -0
  5. package/dist/api.js +73 -0
  6. package/dist/auth.d.ts +60 -0
  7. package/dist/auth.js +246 -0
  8. package/dist/engage-memory.d.ts +63 -0
  9. package/dist/engage-memory.js +354 -0
  10. package/dist/index-dev.d.ts +2 -0
  11. package/dist/index-dev.js +17 -0
  12. package/dist/index.d.ts +7 -0
  13. package/dist/index.js +8 -0
  14. package/dist/server.d.ts +1 -0
  15. package/dist/server.js +499 -0
  16. package/dist/skills.d.ts +11 -0
  17. package/dist/skills.js +97 -0
  18. package/dist/tools/auth.d.ts +30 -0
  19. package/dist/tools/auth.js +124 -0
  20. package/dist/tools/blueprint-commit.d.ts +174 -0
  21. package/dist/tools/blueprint-commit.js +286 -0
  22. package/dist/tools/bootstrap.d.ts +64 -0
  23. package/dist/tools/bootstrap.js +246 -0
  24. package/dist/tools/campaigns.d.ts +589 -0
  25. package/dist/tools/campaigns.js +892 -0
  26. package/dist/tools/cells.d.ts +58 -0
  27. package/dist/tools/cells.js +48 -0
  28. package/dist/tools/context.d.ts +88 -0
  29. package/dist/tools/context.js +271 -0
  30. package/dist/tools/csv-domains.d.ts +73 -0
  31. package/dist/tools/csv-domains.js +464 -0
  32. package/dist/tools/csv-linkedin.d.ts +102 -0
  33. package/dist/tools/csv-linkedin.js +712 -0
  34. package/dist/tools/direct-campaigns.d.ts +240 -0
  35. package/dist/tools/direct-campaigns.js +250 -0
  36. package/dist/tools/engage-bootstrap.d.ts +94 -0
  37. package/dist/tools/engage-bootstrap.js +205 -0
  38. package/dist/tools/engage-discovery.d.ts +78 -0
  39. package/dist/tools/engage-discovery.js +150 -0
  40. package/dist/tools/engage-memory.d.ts +181 -0
  41. package/dist/tools/engage-memory.js +143 -0
  42. package/dist/tools/engage-state.d.ts +72 -0
  43. package/dist/tools/engage-state.js +62 -0
  44. package/dist/tools/enrichment.d.ts +167 -0
  45. package/dist/tools/enrichment.js +174 -0
  46. package/dist/tools/flow-preflight.d.ts +68 -0
  47. package/dist/tools/flow-preflight.js +138 -0
  48. package/dist/tools/framework.d.ts +44 -0
  49. package/dist/tools/framework.js +153 -0
  50. package/dist/tools/interaction-mode.d.ts +27 -0
  51. package/dist/tools/interaction-mode.js +102 -0
  52. package/dist/tools/leads.d.ts +2417 -0
  53. package/dist/tools/leads.js +2307 -0
  54. package/dist/tools/linkedin.d.ts +210 -0
  55. package/dist/tools/linkedin.js +229 -0
  56. package/dist/tools/navigation.d.ts +91 -0
  57. package/dist/tools/navigation.js +381 -0
  58. package/dist/tools/one-off.d.ts +229 -0
  59. package/dist/tools/one-off.js +273 -0
  60. package/dist/tools/processing.d.ts +70 -0
  61. package/dist/tools/processing.js +56 -0
  62. package/dist/tools/prompts.d.ts +211 -0
  63. package/dist/tools/prompts.js +210 -0
  64. package/dist/tools/provider-preflight.d.ts +21 -0
  65. package/dist/tools/provider-preflight.js +59 -0
  66. package/dist/tools/readiness.d.ts +261 -0
  67. package/dist/tools/readiness.js +510 -0
  68. package/dist/tools/rows.d.ts +126 -0
  69. package/dist/tools/rows.js +105 -0
  70. package/dist/tools/rubrics.d.ts +497 -0
  71. package/dist/tools/rubrics.js +681 -0
  72. package/dist/tools/senders.d.ts +44 -0
  73. package/dist/tools/senders.js +69 -0
  74. package/dist/tools/sequencer.d.ts +127 -0
  75. package/dist/tools/sequencer.js +194 -0
  76. package/dist/tools/tables.d.ts +35 -0
  77. package/dist/tools/tables.js +36 -0
  78. package/dist/tools/verify-row.d.ts +36 -0
  79. package/dist/tools/verify-row.js +38 -0
  80. package/dist/tools/workspaces.d.ts +140 -0
  81. package/dist/tools/workspaces.js +139 -0
  82. package/dist/utils/workspace-root.d.ts +1 -0
  83. package/dist/utils/workspace-root.js +39 -0
  84. package/package.json +46 -0
  85. package/skills/building-gtm-tables/SKILL.md +216 -0
  86. package/skills/building-gtm-tables/core/auto-execute.yaml +19 -0
  87. package/skills/building-gtm-tables/core/blueprint-schema.json +72 -0
  88. package/skills/building-gtm-tables/references/brief-to-blueprint.md +334 -0
  89. package/skills/building-gtm-tables/references/column-type-catalog.md +318 -0
  90. package/skills/building-gtm-tables/references/common-blueprints.fixtures.ts +199 -0
  91. package/skills/building-gtm-tables/references/common-blueprints.md +44 -0
  92. package/skills/building-gtm-tables/references/failure-taxonomy.md +197 -0
  93. package/skills/building-gtm-tables/references/uat-seed-prompts.md +37 -0
  94. package/skills/building-gtm-tables/references/verify-loop.md +74 -0
  95. package/skills/campaign-messages/SKILL.md +173 -0
  96. package/skills/campaign-messages/flow.v1.json +75 -0
  97. package/skills/craft-message/SKILL.md +401 -0
  98. package/skills/create-campaign/ARCHITECTURE.md +232 -0
  99. package/skills/create-campaign/DISCUSS.md +296 -0
  100. package/skills/create-campaign/FLOW_ASCII.md +240 -0
  101. package/skills/create-campaign/HOST-PARITY-CHECKLIST.md +49 -0
  102. package/skills/create-campaign/README.md +142 -0
  103. package/skills/create-campaign/SKILL.md +286 -0
  104. package/skills/create-campaign/context/README.md +67 -0
  105. package/skills/create-campaign/context/_TEMPLATE.md +12 -0
  106. package/skills/create-campaign/context/context.md +35 -0
  107. package/skills/create-campaign/context/learnings.md +16 -0
  108. package/skills/create-campaign/context/registry.json +19 -0
  109. package/skills/create-campaign/core/flow.v1.json +217 -0
  110. package/skills/create-campaign/core/policy.md +191 -0
  111. package/skills/create-campaign/core/providers/apollo.json +35 -0
  112. package/skills/create-campaign/core/providers/prospeo.json +34 -0
  113. package/skills/create-campaign/core/providers/registry.json +31 -0
  114. package/skills/create-campaign/core/providers/sales-nav.json +37 -0
  115. package/skills/create-campaign/core/providers/signal-discovery.json +42 -0
  116. package/skills/create-campaign/references/brief-template.md +64 -0
  117. package/skills/create-campaign/references/campaign-quality.md +84 -0
  118. package/skills/create-campaign/references/copy-calibration-examples.md +120 -0
  119. package/skills/create-campaign/references/offer-patterns.md +108 -0
  120. package/skills/create-campaign/references/provider-selection-strategy.md +212 -0
  121. package/skills/create-campaign/references/question-examples.md +167 -0
  122. package/skills/create-campaign/references/token-fill-examples.md +81 -0
  123. package/skills/create-campaign-brief/ARCHITECTURE.md +72 -0
  124. package/skills/create-campaign-brief/DISCUSS.md +64 -0
  125. package/skills/create-campaign-brief/README.md +176 -0
  126. package/skills/create-campaign-brief/SKILL.md +537 -0
  127. package/skills/create-campaign-brief/references/brief-synthesis-rules.md +100 -0
  128. package/skills/create-campaign-brief/references/brief-template.md +220 -0
  129. package/skills/create-campaign-brief/references/campaign-idea-options.md +30 -0
  130. package/skills/create-campaign-brief/references/copy-appendix-template.md +62 -0
  131. package/skills/create-campaign-brief/references/draft-lifecycle.md +23 -0
  132. package/skills/create-campaign-brief/references/examples/MANIFEST.json +89 -0
  133. package/skills/create-campaign-brief/references/examples/briefs/clover.md +223 -0
  134. package/skills/create-campaign-brief/references/examples/briefs/galley.md +222 -0
  135. package/skills/create-campaign-brief/references/examples/briefs/gelee.md +220 -0
  136. package/skills/create-campaign-brief/references/examples/briefs/hey-digital.md +234 -0
  137. package/skills/create-campaign-brief/references/examples/briefs/persona.md +231 -0
  138. package/skills/create-campaign-brief/references/examples/briefs/revvix.md +220 -0
  139. package/skills/create-campaign-brief/references/examples/briefs/sellable-dev.md +220 -0
  140. package/skills/create-campaign-brief/references/examples/briefs/superposition.md +233 -0
  141. package/skills/create-campaign-brief/references/examples/briefs/superpower.md +219 -0
  142. package/skills/create-campaign-brief/references/examples/briefs/westpark-villas.md +220 -0
  143. package/skills/create-campaign-brief/references/icp-lock-question-bank.md +43 -0
  144. package/skills/create-campaign-brief/references/messaging-inputs.md +58 -0
  145. package/skills/create-campaign-brief/references/output-acceptance-rubric.md +62 -0
  146. package/skills/create-campaign-brief/references/phase75-active-runtime-message-pack.md +248 -0
  147. package/skills/create-campaign-brief/references/phase75-canonical-brief-template.md +319 -0
  148. package/skills/create-campaign-brief/references/phase75-good-brief-and-messaging-examples.md +445 -0
  149. package/skills/create-campaign-brief/references/quick-research-protocol.md +39 -0
  150. package/skills/create-campaign-brief/references/reference-sheet-protocol.md +60 -0
  151. package/skills/create-campaign-brief/references/zero-shot-iteration-rules.md +66 -0
  152. package/skills/create-campaign-v2/SKILL.md +1619 -0
  153. package/skills/create-campaign-v2/core/auto-execute.README.md +219 -0
  154. package/skills/create-campaign-v2/core/auto-execute.yaml +121 -0
  155. package/skills/create-campaign-v2/core/flow.v2.json +1643 -0
  156. package/skills/create-campaign-v2/core/policy.md +82 -0
  157. package/skills/create-campaign-v2/references/ai-tells.md +253 -0
  158. package/skills/create-campaign-v2/references/approval-gate-framing.md +346 -0
  159. package/skills/create-campaign-v2/references/draft-lifecycle.md +110 -0
  160. package/skills/create-campaign-v2/references/escalation-ladder.md +119 -0
  161. package/skills/create-campaign-v2/references/filter-leads.md +495 -0
  162. package/skills/create-campaign-v2/references/final-handoff-contract.md +176 -0
  163. package/skills/create-campaign-v2/references/gold-standard-message-examples.md +394 -0
  164. package/skills/create-campaign-v2/references/gold-standard-message-patterns.md +314 -0
  165. package/skills/create-campaign-v2/references/gold-standard-message-validation-example.md +212 -0
  166. package/skills/create-campaign-v2/references/lead-validation-preview.md +172 -0
  167. package/skills/create-campaign-v2/references/parallel-critique-protocol.md +368 -0
  168. package/skills/create-campaign-v2/references/sample-validation-loop.md +289 -0
  169. package/skills/create-campaign-v2/references/step-13-import-leads.md +151 -0
  170. package/skills/create-campaign-v2/references/step-15-re-cascade.md +90 -0
  171. package/skills/create-campaign-v2/references/thomas-revision-filters.md +521 -0
  172. package/skills/create-campaign-v2/references/thomas-variant-selection.md +202 -0
  173. package/skills/create-campaign-v2/references/tier-routing-matrix.md +66 -0
  174. package/skills/create-campaign-v2/references/validation-criteria.md +367 -0
  175. package/skills/create-campaign-v2/references/watch-link-handoff.md +106 -0
  176. package/skills/create-campaign-v2-validation/SKILL.md +296 -0
  177. package/skills/create-post/SKILL.md +1308 -0
  178. package/skills/create-rubric/SKILL.md +251 -0
  179. package/skills/engage/SKILL.md +549 -0
  180. package/skills/engage/core/README.md +23 -0
  181. package/skills/engage/core/proven-searches.json +11 -0
  182. package/skills/engage/core/style-guide.template.md +47 -0
  183. package/skills/engage/core/tracked-people.json +10 -0
  184. package/skills/enrich-prospects/SKILL.md +97 -0
  185. package/skills/find-leads/SKILL.md +467 -0
  186. package/skills/generate-messages/SKILL.md +2361 -0
  187. package/skills/interview/SKILL.md +132 -0
  188. package/skills/interview/core/ENGAGE_STYLE_GUIDE.template.md +54 -0
  189. package/skills/interview/core/ICP.template.md +54 -0
  190. package/skills/interview/core/VOICE_PROFILE.template.md +101 -0
  191. package/skills/providers/apollo.md +520 -0
  192. package/skills/providers/prospeo.md +398 -0
  193. package/skills/providers/sales-nav.md +372 -0
  194. package/skills/providers/signal-discovery.md +495 -0
  195. package/skills/research/SKILL.md +258 -0
  196. package/skills/research/config.json +9 -0
  197. package/skills/research/override.md +13 -0
  198. package/skills/research-prospect/SKILL.md +99 -0
  199. package/skills/research-sender/SKILL.md +158 -0
  200. package/skills/workflow-sequences/SKILL.md +85 -0
@@ -0,0 +1,2417 @@
1
+ export declare function normalizeTargetLeadCount(targetLeadCount: unknown, maxImportCount: number): number | undefined;
2
+ export type GetProviderPromptInput = {
3
+ provider: "apollo" | "sales-nav" | "prospeo" | "signal-discovery";
4
+ campaignOfferId?: string;
5
+ confirmed?: boolean;
6
+ };
7
+ export type ApolloSearchInput = {
8
+ filters?: Record<string, unknown>;
9
+ page?: number;
10
+ searchId?: string;
11
+ campaignOfferId?: string;
12
+ searchName?: string;
13
+ companySearchMode?: "ai" | "domainList";
14
+ uploadedDomains?: string[];
15
+ currentStep?: string | null;
16
+ confirmed?: boolean;
17
+ searchMode?: "people" | "combined";
18
+ companyFilters?: Record<string, unknown>;
19
+ contactFilters?: Record<string, unknown>;
20
+ person_titles?: string[];
21
+ person_seniorities?: string[];
22
+ person_locations?: string[];
23
+ include_similar_titles?: boolean;
24
+ q_keywords?: string;
25
+ organization_num_employees_ranges?: string[];
26
+ organization_locations?: string[];
27
+ organization_not_locations?: string[];
28
+ q_organization_keyword_tags?: string[];
29
+ organization_industry_tag_ids?: string[];
30
+ latest_funding_amount_min?: number;
31
+ latest_funding_amount_max?: number;
32
+ organization_revenue_min?: number;
33
+ organization_revenue_max?: number;
34
+ q_organization_domains_list?: string[];
35
+ };
36
+ export type SalesNavSearchInput = {
37
+ filters: unknown[];
38
+ keywords?: string;
39
+ page?: number;
40
+ searchId?: string;
41
+ campaignOfferId?: string;
42
+ searchName?: string;
43
+ currentStep?: string | null;
44
+ confirmed?: boolean;
45
+ };
46
+ export type ProspeoSearchInput = {
47
+ filters: Record<string, unknown>;
48
+ page?: number;
49
+ searchId?: string;
50
+ campaignOfferId?: string;
51
+ searchName?: string;
52
+ domainFilterId?: string;
53
+ currentStep?: string | null;
54
+ confirmed?: boolean;
55
+ };
56
+ export type SaveDomainFiltersInput = {
57
+ include?: string[];
58
+ exclude?: string[];
59
+ };
60
+ export type LoadCsvDomainsInput = {
61
+ filePath: string;
62
+ campaignOfferId?: string;
63
+ domainColumn?: string;
64
+ selectedColumns?: string[];
65
+ confirmationToken?: string;
66
+ confirmed?: boolean;
67
+ };
68
+ export type LoadCsvLinkedinLeadsInput = {
69
+ filePath: string;
70
+ campaignOfferId?: string;
71
+ currentStep?: string | null;
72
+ leadListId?: string;
73
+ leadListName?: string;
74
+ linkedInColumn?: string;
75
+ selectedColumns?: string[];
76
+ confirmationToken?: string;
77
+ confirmed?: boolean;
78
+ };
79
+ export type LookupSalesNavFilterInput = {
80
+ filterType: string;
81
+ query: string;
82
+ };
83
+ export type SignalSearchInput = {
84
+ type?: "keywords" | "profile" | "post" | "company";
85
+ keywords?: Array<{
86
+ keyword: string;
87
+ id?: string;
88
+ confidence?: number | string;
89
+ page?: number;
90
+ source?: string;
91
+ }>;
92
+ profileUrl?: string;
93
+ postUrl?: string;
94
+ companyUrl?: string;
95
+ campaignOfferId?: string;
96
+ currentStep?: string | null;
97
+ page?: number;
98
+ limit?: number;
99
+ headlineICPCriteria?: string[];
100
+ rubricGuidelines?: string[];
101
+ confirmed?: boolean;
102
+ };
103
+ export type ImportLeadsInput = {
104
+ campaignOfferId: string;
105
+ currentStep?: string | null;
106
+ confirmed?: boolean;
107
+ provider?: "apollo" | "sales-nav" | "prospeo" | "signal-discovery";
108
+ sourceLeadListId?: string;
109
+ searchId?: string;
110
+ targetLeadCount?: number;
111
+ mode?: "add" | "replace";
112
+ searchName?: string;
113
+ leadListName?: string;
114
+ headlineICPCriteria?: string[];
115
+ rubricGuidelines?: string[];
116
+ };
117
+ export type CancelLeadImportInput = {
118
+ campaignOfferId: string;
119
+ tableId: string;
120
+ provider: "apollo" | "prospeo" | "sales-nav";
121
+ };
122
+ export type ConfirmLeadListInput = {
123
+ campaignOfferId: string;
124
+ currentStep?: string | null;
125
+ confirmed?: boolean;
126
+ sourceLeadListId?: string;
127
+ campaignName?: string;
128
+ keepInSync?: boolean;
129
+ jobId?: string;
130
+ targetLeadCount?: number;
131
+ };
132
+ export type SelectPromisingPostsInput = {
133
+ campaignOfferId: string;
134
+ selections: Array<{
135
+ postId: string;
136
+ reason: string;
137
+ }>;
138
+ headlineICPCriteria: string[];
139
+ currentStep?: string | null;
140
+ selectionMode?: "add" | "replace";
141
+ mode?: "add" | "replace";
142
+ };
143
+ export type SetHeadlineICPCriteriaInput = {
144
+ campaignOfferId: string;
145
+ headlineICPCriteria: string[];
146
+ currentStep?: string | null;
147
+ };
148
+ export declare const leadToolDefinitions: ({
149
+ name: string;
150
+ description: string;
151
+ inputSchema: {
152
+ type: string;
153
+ properties: {
154
+ provider: {
155
+ type: string;
156
+ enum: string[];
157
+ description: string;
158
+ };
159
+ campaignOfferId: {
160
+ type: string;
161
+ description: string;
162
+ };
163
+ confirmed: {
164
+ type: string;
165
+ description: string;
166
+ };
167
+ searchMode?: undefined;
168
+ organization_num_employees_ranges?: undefined;
169
+ organization_locations?: undefined;
170
+ organization_not_locations?: undefined;
171
+ q_organization_keyword_tags?: undefined;
172
+ organization_industry_tag_ids?: undefined;
173
+ latest_funding_amount_min?: undefined;
174
+ latest_funding_amount_max?: undefined;
175
+ organization_revenue_min?: undefined;
176
+ organization_revenue_max?: undefined;
177
+ person_titles?: undefined;
178
+ person_seniorities?: undefined;
179
+ person_locations?: undefined;
180
+ include_similar_titles?: undefined;
181
+ q_keywords?: undefined;
182
+ filters?: undefined;
183
+ companyFilters?: undefined;
184
+ contactFilters?: undefined;
185
+ page?: undefined;
186
+ searchId?: undefined;
187
+ searchName?: undefined;
188
+ companySearchMode?: undefined;
189
+ uploadedDomains?: undefined;
190
+ currentStep?: undefined;
191
+ filterType?: undefined;
192
+ query?: undefined;
193
+ keywords?: undefined;
194
+ filePath?: undefined;
195
+ domainColumn?: undefined;
196
+ selectedColumns?: undefined;
197
+ confirmationToken?: undefined;
198
+ leadListId?: undefined;
199
+ leadListName?: undefined;
200
+ linkedInColumn?: undefined;
201
+ include?: undefined;
202
+ exclude?: undefined;
203
+ domainFilterId?: undefined;
204
+ type?: undefined;
205
+ profileUrl?: undefined;
206
+ postUrl?: undefined;
207
+ companyUrl?: undefined;
208
+ limit?: undefined;
209
+ headlineICPCriteria?: undefined;
210
+ rubricGuidelines?: undefined;
211
+ sourceLeadListId?: undefined;
212
+ targetLeadCount?: undefined;
213
+ mode?: undefined;
214
+ tableId?: undefined;
215
+ campaignName?: undefined;
216
+ keepInSync?: undefined;
217
+ jobId?: undefined;
218
+ selections?: undefined;
219
+ selectionMode?: undefined;
220
+ };
221
+ required: string[];
222
+ };
223
+ } | {
224
+ name: string;
225
+ description: string;
226
+ inputSchema: {
227
+ type: string;
228
+ properties: {
229
+ searchMode: {
230
+ type: string;
231
+ enum: string[];
232
+ description: string;
233
+ };
234
+ organization_num_employees_ranges: {
235
+ type: string;
236
+ items: {
237
+ type: string;
238
+ };
239
+ description: string;
240
+ };
241
+ organization_locations: {
242
+ type: string;
243
+ items: {
244
+ type: string;
245
+ };
246
+ description: string;
247
+ };
248
+ organization_not_locations: {
249
+ type: string;
250
+ items: {
251
+ type: string;
252
+ };
253
+ description: string;
254
+ };
255
+ q_organization_keyword_tags: {
256
+ type: string;
257
+ items: {
258
+ type: string;
259
+ };
260
+ description: string;
261
+ };
262
+ organization_industry_tag_ids: {
263
+ type: string;
264
+ items: {
265
+ type: string;
266
+ };
267
+ description: string;
268
+ };
269
+ latest_funding_amount_min: {
270
+ type: string;
271
+ description: string;
272
+ };
273
+ latest_funding_amount_max: {
274
+ type: string;
275
+ description: string;
276
+ };
277
+ organization_revenue_min: {
278
+ type: string;
279
+ description: string;
280
+ };
281
+ organization_revenue_max: {
282
+ type: string;
283
+ description: string;
284
+ };
285
+ person_titles: {
286
+ type: string;
287
+ items: {
288
+ type: string;
289
+ };
290
+ description: string;
291
+ };
292
+ person_seniorities: {
293
+ type: string;
294
+ items: {
295
+ type: string;
296
+ };
297
+ description: string;
298
+ };
299
+ person_locations: {
300
+ type: string;
301
+ items: {
302
+ type: string;
303
+ };
304
+ description: string;
305
+ };
306
+ include_similar_titles: {
307
+ type: string;
308
+ description: string;
309
+ };
310
+ q_keywords: {
311
+ type: string;
312
+ description: string;
313
+ };
314
+ filters: {
315
+ type: string;
316
+ description: string;
317
+ properties?: undefined;
318
+ };
319
+ companyFilters: {
320
+ type: string;
321
+ description: string;
322
+ };
323
+ contactFilters: {
324
+ type: string;
325
+ description: string;
326
+ };
327
+ page: {
328
+ type: string;
329
+ description: string;
330
+ };
331
+ searchId: {
332
+ type: string;
333
+ description: string;
334
+ };
335
+ campaignOfferId: {
336
+ type: string;
337
+ description: string;
338
+ };
339
+ searchName: {
340
+ type: string;
341
+ description: string;
342
+ };
343
+ companySearchMode: {
344
+ type: string;
345
+ description: string;
346
+ };
347
+ uploadedDomains: {
348
+ type: string;
349
+ items: {
350
+ type: string;
351
+ };
352
+ description: string;
353
+ };
354
+ currentStep: {
355
+ type: string[];
356
+ description: string;
357
+ };
358
+ confirmed: {
359
+ type: string;
360
+ description: string;
361
+ };
362
+ provider?: undefined;
363
+ filterType?: undefined;
364
+ query?: undefined;
365
+ keywords?: undefined;
366
+ filePath?: undefined;
367
+ domainColumn?: undefined;
368
+ selectedColumns?: undefined;
369
+ confirmationToken?: undefined;
370
+ leadListId?: undefined;
371
+ leadListName?: undefined;
372
+ linkedInColumn?: undefined;
373
+ include?: undefined;
374
+ exclude?: undefined;
375
+ domainFilterId?: undefined;
376
+ type?: undefined;
377
+ profileUrl?: undefined;
378
+ postUrl?: undefined;
379
+ companyUrl?: undefined;
380
+ limit?: undefined;
381
+ headlineICPCriteria?: undefined;
382
+ rubricGuidelines?: undefined;
383
+ sourceLeadListId?: undefined;
384
+ targetLeadCount?: undefined;
385
+ mode?: undefined;
386
+ tableId?: undefined;
387
+ campaignName?: undefined;
388
+ keepInSync?: undefined;
389
+ jobId?: undefined;
390
+ selections?: undefined;
391
+ selectionMode?: undefined;
392
+ };
393
+ required: never[];
394
+ };
395
+ } | {
396
+ name: string;
397
+ description: string;
398
+ inputSchema: {
399
+ type: string;
400
+ properties: {
401
+ filterType: {
402
+ type: string;
403
+ enum: string[];
404
+ description: string;
405
+ };
406
+ query: {
407
+ type: string;
408
+ description: string;
409
+ };
410
+ provider?: undefined;
411
+ campaignOfferId?: undefined;
412
+ confirmed?: undefined;
413
+ searchMode?: undefined;
414
+ organization_num_employees_ranges?: undefined;
415
+ organization_locations?: undefined;
416
+ organization_not_locations?: undefined;
417
+ q_organization_keyword_tags?: undefined;
418
+ organization_industry_tag_ids?: undefined;
419
+ latest_funding_amount_min?: undefined;
420
+ latest_funding_amount_max?: undefined;
421
+ organization_revenue_min?: undefined;
422
+ organization_revenue_max?: undefined;
423
+ person_titles?: undefined;
424
+ person_seniorities?: undefined;
425
+ person_locations?: undefined;
426
+ include_similar_titles?: undefined;
427
+ q_keywords?: undefined;
428
+ filters?: undefined;
429
+ companyFilters?: undefined;
430
+ contactFilters?: undefined;
431
+ page?: undefined;
432
+ searchId?: undefined;
433
+ searchName?: undefined;
434
+ companySearchMode?: undefined;
435
+ uploadedDomains?: undefined;
436
+ currentStep?: undefined;
437
+ keywords?: undefined;
438
+ filePath?: undefined;
439
+ domainColumn?: undefined;
440
+ selectedColumns?: undefined;
441
+ confirmationToken?: undefined;
442
+ leadListId?: undefined;
443
+ leadListName?: undefined;
444
+ linkedInColumn?: undefined;
445
+ include?: undefined;
446
+ exclude?: undefined;
447
+ domainFilterId?: undefined;
448
+ type?: undefined;
449
+ profileUrl?: undefined;
450
+ postUrl?: undefined;
451
+ companyUrl?: undefined;
452
+ limit?: undefined;
453
+ headlineICPCriteria?: undefined;
454
+ rubricGuidelines?: undefined;
455
+ sourceLeadListId?: undefined;
456
+ targetLeadCount?: undefined;
457
+ mode?: undefined;
458
+ tableId?: undefined;
459
+ campaignName?: undefined;
460
+ keepInSync?: undefined;
461
+ jobId?: undefined;
462
+ selections?: undefined;
463
+ selectionMode?: undefined;
464
+ };
465
+ required: string[];
466
+ };
467
+ } | {
468
+ name: string;
469
+ description: string;
470
+ inputSchema: {
471
+ type: string;
472
+ properties: {
473
+ filters: {
474
+ type: string;
475
+ description: string;
476
+ properties?: undefined;
477
+ };
478
+ keywords: {
479
+ type: string;
480
+ description: string;
481
+ items?: undefined;
482
+ };
483
+ page: {
484
+ type: string;
485
+ description: string;
486
+ };
487
+ searchId: {
488
+ type: string;
489
+ description: string;
490
+ };
491
+ campaignOfferId: {
492
+ type: string;
493
+ description: string;
494
+ };
495
+ searchName: {
496
+ type: string;
497
+ description: string;
498
+ };
499
+ currentStep: {
500
+ type: string[];
501
+ description: string;
502
+ };
503
+ confirmed: {
504
+ type: string;
505
+ description: string;
506
+ };
507
+ provider?: undefined;
508
+ searchMode?: undefined;
509
+ organization_num_employees_ranges?: undefined;
510
+ organization_locations?: undefined;
511
+ organization_not_locations?: undefined;
512
+ q_organization_keyword_tags?: undefined;
513
+ organization_industry_tag_ids?: undefined;
514
+ latest_funding_amount_min?: undefined;
515
+ latest_funding_amount_max?: undefined;
516
+ organization_revenue_min?: undefined;
517
+ organization_revenue_max?: undefined;
518
+ person_titles?: undefined;
519
+ person_seniorities?: undefined;
520
+ person_locations?: undefined;
521
+ include_similar_titles?: undefined;
522
+ q_keywords?: undefined;
523
+ companyFilters?: undefined;
524
+ contactFilters?: undefined;
525
+ companySearchMode?: undefined;
526
+ uploadedDomains?: undefined;
527
+ filterType?: undefined;
528
+ query?: undefined;
529
+ filePath?: undefined;
530
+ domainColumn?: undefined;
531
+ selectedColumns?: undefined;
532
+ confirmationToken?: undefined;
533
+ leadListId?: undefined;
534
+ leadListName?: undefined;
535
+ linkedInColumn?: undefined;
536
+ include?: undefined;
537
+ exclude?: undefined;
538
+ domainFilterId?: undefined;
539
+ type?: undefined;
540
+ profileUrl?: undefined;
541
+ postUrl?: undefined;
542
+ companyUrl?: undefined;
543
+ limit?: undefined;
544
+ headlineICPCriteria?: undefined;
545
+ rubricGuidelines?: undefined;
546
+ sourceLeadListId?: undefined;
547
+ targetLeadCount?: undefined;
548
+ mode?: undefined;
549
+ tableId?: undefined;
550
+ campaignName?: undefined;
551
+ keepInSync?: undefined;
552
+ jobId?: undefined;
553
+ selections?: undefined;
554
+ selectionMode?: undefined;
555
+ };
556
+ required: string[];
557
+ };
558
+ } | {
559
+ name: string;
560
+ description: string;
561
+ inputSchema: {
562
+ type: string;
563
+ properties: {
564
+ filePath: {
565
+ type: string;
566
+ description: string;
567
+ };
568
+ campaignOfferId: {
569
+ type: string;
570
+ description: string;
571
+ };
572
+ domainColumn: {
573
+ type: string;
574
+ description: string;
575
+ };
576
+ selectedColumns: {
577
+ type: string;
578
+ items: {
579
+ type: string;
580
+ };
581
+ description: string;
582
+ };
583
+ confirmationToken: {
584
+ type: string;
585
+ description: string;
586
+ };
587
+ confirmed: {
588
+ type: string;
589
+ description: string;
590
+ };
591
+ provider?: undefined;
592
+ searchMode?: undefined;
593
+ organization_num_employees_ranges?: undefined;
594
+ organization_locations?: undefined;
595
+ organization_not_locations?: undefined;
596
+ q_organization_keyword_tags?: undefined;
597
+ organization_industry_tag_ids?: undefined;
598
+ latest_funding_amount_min?: undefined;
599
+ latest_funding_amount_max?: undefined;
600
+ organization_revenue_min?: undefined;
601
+ organization_revenue_max?: undefined;
602
+ person_titles?: undefined;
603
+ person_seniorities?: undefined;
604
+ person_locations?: undefined;
605
+ include_similar_titles?: undefined;
606
+ q_keywords?: undefined;
607
+ filters?: undefined;
608
+ companyFilters?: undefined;
609
+ contactFilters?: undefined;
610
+ page?: undefined;
611
+ searchId?: undefined;
612
+ searchName?: undefined;
613
+ companySearchMode?: undefined;
614
+ uploadedDomains?: undefined;
615
+ currentStep?: undefined;
616
+ filterType?: undefined;
617
+ query?: undefined;
618
+ keywords?: undefined;
619
+ leadListId?: undefined;
620
+ leadListName?: undefined;
621
+ linkedInColumn?: undefined;
622
+ include?: undefined;
623
+ exclude?: undefined;
624
+ domainFilterId?: undefined;
625
+ type?: undefined;
626
+ profileUrl?: undefined;
627
+ postUrl?: undefined;
628
+ companyUrl?: undefined;
629
+ limit?: undefined;
630
+ headlineICPCriteria?: undefined;
631
+ rubricGuidelines?: undefined;
632
+ sourceLeadListId?: undefined;
633
+ targetLeadCount?: undefined;
634
+ mode?: undefined;
635
+ tableId?: undefined;
636
+ campaignName?: undefined;
637
+ keepInSync?: undefined;
638
+ jobId?: undefined;
639
+ selections?: undefined;
640
+ selectionMode?: undefined;
641
+ };
642
+ required: string[];
643
+ };
644
+ } | {
645
+ name: string;
646
+ description: string;
647
+ inputSchema: {
648
+ type: string;
649
+ properties: {
650
+ filePath: {
651
+ type: string;
652
+ description: string;
653
+ };
654
+ campaignOfferId: {
655
+ type: string;
656
+ description: string;
657
+ };
658
+ currentStep: {
659
+ type: string[];
660
+ description: string;
661
+ };
662
+ leadListId: {
663
+ type: string;
664
+ description: string;
665
+ };
666
+ leadListName: {
667
+ type: string;
668
+ description: string;
669
+ };
670
+ linkedInColumn: {
671
+ type: string;
672
+ description: string;
673
+ };
674
+ selectedColumns: {
675
+ type: string;
676
+ items: {
677
+ type: string;
678
+ };
679
+ description: string;
680
+ };
681
+ confirmationToken: {
682
+ type: string;
683
+ description: string;
684
+ };
685
+ confirmed: {
686
+ type: string;
687
+ description: string;
688
+ };
689
+ provider?: undefined;
690
+ searchMode?: undefined;
691
+ organization_num_employees_ranges?: undefined;
692
+ organization_locations?: undefined;
693
+ organization_not_locations?: undefined;
694
+ q_organization_keyword_tags?: undefined;
695
+ organization_industry_tag_ids?: undefined;
696
+ latest_funding_amount_min?: undefined;
697
+ latest_funding_amount_max?: undefined;
698
+ organization_revenue_min?: undefined;
699
+ organization_revenue_max?: undefined;
700
+ person_titles?: undefined;
701
+ person_seniorities?: undefined;
702
+ person_locations?: undefined;
703
+ include_similar_titles?: undefined;
704
+ q_keywords?: undefined;
705
+ filters?: undefined;
706
+ companyFilters?: undefined;
707
+ contactFilters?: undefined;
708
+ page?: undefined;
709
+ searchId?: undefined;
710
+ searchName?: undefined;
711
+ companySearchMode?: undefined;
712
+ uploadedDomains?: undefined;
713
+ filterType?: undefined;
714
+ query?: undefined;
715
+ keywords?: undefined;
716
+ domainColumn?: undefined;
717
+ include?: undefined;
718
+ exclude?: undefined;
719
+ domainFilterId?: undefined;
720
+ type?: undefined;
721
+ profileUrl?: undefined;
722
+ postUrl?: undefined;
723
+ companyUrl?: undefined;
724
+ limit?: undefined;
725
+ headlineICPCriteria?: undefined;
726
+ rubricGuidelines?: undefined;
727
+ sourceLeadListId?: undefined;
728
+ targetLeadCount?: undefined;
729
+ mode?: undefined;
730
+ tableId?: undefined;
731
+ campaignName?: undefined;
732
+ keepInSync?: undefined;
733
+ jobId?: undefined;
734
+ selections?: undefined;
735
+ selectionMode?: undefined;
736
+ };
737
+ required: string[];
738
+ };
739
+ } | {
740
+ name: string;
741
+ description: string;
742
+ inputSchema: {
743
+ type: string;
744
+ properties: {
745
+ include: {
746
+ type: string;
747
+ items: {
748
+ type: string;
749
+ };
750
+ description: string;
751
+ };
752
+ exclude: {
753
+ type: string;
754
+ items: {
755
+ type: string;
756
+ };
757
+ description: string;
758
+ };
759
+ provider?: undefined;
760
+ campaignOfferId?: undefined;
761
+ confirmed?: undefined;
762
+ searchMode?: undefined;
763
+ organization_num_employees_ranges?: undefined;
764
+ organization_locations?: undefined;
765
+ organization_not_locations?: undefined;
766
+ q_organization_keyword_tags?: undefined;
767
+ organization_industry_tag_ids?: undefined;
768
+ latest_funding_amount_min?: undefined;
769
+ latest_funding_amount_max?: undefined;
770
+ organization_revenue_min?: undefined;
771
+ organization_revenue_max?: undefined;
772
+ person_titles?: undefined;
773
+ person_seniorities?: undefined;
774
+ person_locations?: undefined;
775
+ include_similar_titles?: undefined;
776
+ q_keywords?: undefined;
777
+ filters?: undefined;
778
+ companyFilters?: undefined;
779
+ contactFilters?: undefined;
780
+ page?: undefined;
781
+ searchId?: undefined;
782
+ searchName?: undefined;
783
+ companySearchMode?: undefined;
784
+ uploadedDomains?: undefined;
785
+ currentStep?: undefined;
786
+ filterType?: undefined;
787
+ query?: undefined;
788
+ keywords?: undefined;
789
+ filePath?: undefined;
790
+ domainColumn?: undefined;
791
+ selectedColumns?: undefined;
792
+ confirmationToken?: undefined;
793
+ leadListId?: undefined;
794
+ leadListName?: undefined;
795
+ linkedInColumn?: undefined;
796
+ domainFilterId?: undefined;
797
+ type?: undefined;
798
+ profileUrl?: undefined;
799
+ postUrl?: undefined;
800
+ companyUrl?: undefined;
801
+ limit?: undefined;
802
+ headlineICPCriteria?: undefined;
803
+ rubricGuidelines?: undefined;
804
+ sourceLeadListId?: undefined;
805
+ targetLeadCount?: undefined;
806
+ mode?: undefined;
807
+ tableId?: undefined;
808
+ campaignName?: undefined;
809
+ keepInSync?: undefined;
810
+ jobId?: undefined;
811
+ selections?: undefined;
812
+ selectionMode?: undefined;
813
+ };
814
+ required: never[];
815
+ };
816
+ } | {
817
+ name: string;
818
+ description: string;
819
+ inputSchema: {
820
+ type: string;
821
+ properties: {
822
+ filters: {
823
+ type: string;
824
+ description: string;
825
+ properties: {
826
+ person_name: {
827
+ type: string;
828
+ description: string;
829
+ properties: {
830
+ include: {
831
+ type: string;
832
+ items: {
833
+ type: string;
834
+ };
835
+ };
836
+ exclude: {
837
+ type: string;
838
+ items: {
839
+ type: string;
840
+ };
841
+ };
842
+ };
843
+ };
844
+ person_name_or_job_title: {
845
+ type: string;
846
+ description: string;
847
+ };
848
+ person_job_title: {
849
+ type: string;
850
+ description: string;
851
+ properties: {
852
+ include: {
853
+ type: string;
854
+ items: {
855
+ type: string;
856
+ };
857
+ };
858
+ exclude: {
859
+ type: string;
860
+ items: {
861
+ type: string;
862
+ };
863
+ };
864
+ boolean_search: {
865
+ type: string;
866
+ };
867
+ match_only_exact_job_titles: {
868
+ type: string;
869
+ };
870
+ };
871
+ };
872
+ person_seniority: {
873
+ description: string;
874
+ type: string;
875
+ properties: {
876
+ include: {
877
+ type: string;
878
+ items: {
879
+ type: string;
880
+ };
881
+ };
882
+ exclude: {
883
+ type: string;
884
+ items: {
885
+ type: string;
886
+ };
887
+ };
888
+ };
889
+ };
890
+ person_department: {
891
+ description: string;
892
+ type: string;
893
+ properties: {
894
+ include: {
895
+ type: string;
896
+ items: {
897
+ type: string;
898
+ };
899
+ };
900
+ exclude: {
901
+ type: string;
902
+ items: {
903
+ type: string;
904
+ };
905
+ };
906
+ };
907
+ };
908
+ person_year_of_experience: {
909
+ type: string;
910
+ description: string;
911
+ properties: {
912
+ min: {
913
+ type: string;
914
+ };
915
+ max: {
916
+ type: string;
917
+ };
918
+ };
919
+ };
920
+ person_time_in_current_role: {
921
+ type: string;
922
+ description: string;
923
+ properties: {
924
+ min: {
925
+ type: string;
926
+ };
927
+ max: {
928
+ type: string;
929
+ };
930
+ };
931
+ };
932
+ person_time_in_current_company: {
933
+ type: string;
934
+ description: string;
935
+ properties: {
936
+ min: {
937
+ type: string;
938
+ };
939
+ max: {
940
+ type: string;
941
+ };
942
+ };
943
+ };
944
+ person_location_search: {
945
+ type: string;
946
+ description: string;
947
+ properties: {
948
+ include: {
949
+ type: string;
950
+ items: {
951
+ type: string;
952
+ };
953
+ };
954
+ exclude: {
955
+ type: string;
956
+ items: {
957
+ type: string;
958
+ };
959
+ };
960
+ };
961
+ };
962
+ person_contact_details: {
963
+ type: string;
964
+ description: string;
965
+ properties: {
966
+ email: {
967
+ type: string;
968
+ items: {
969
+ type: string;
970
+ };
971
+ };
972
+ mobile: {
973
+ type: string;
974
+ items: {
975
+ type: string;
976
+ };
977
+ };
978
+ operator: {
979
+ type: string;
980
+ enum: string[];
981
+ };
982
+ hide_people_with_details_already_revealed: {
983
+ type: string;
984
+ };
985
+ };
986
+ };
987
+ person_job_change: {
988
+ type: string;
989
+ description: string;
990
+ properties: {
991
+ timeframe_days: {
992
+ type: string;
993
+ };
994
+ only_promotion: {
995
+ type: string;
996
+ };
997
+ only_new_company: {
998
+ type: string;
999
+ };
1000
+ };
1001
+ };
1002
+ max_person_per_company: {
1003
+ type: string;
1004
+ };
1005
+ company_industry: {
1006
+ description: string;
1007
+ type: string;
1008
+ properties: {
1009
+ include: {
1010
+ type: string;
1011
+ items: {
1012
+ type: string;
1013
+ };
1014
+ };
1015
+ exclude: {
1016
+ type: string;
1017
+ items: {
1018
+ type: string;
1019
+ };
1020
+ };
1021
+ };
1022
+ };
1023
+ company_technology: {
1024
+ description: string;
1025
+ type: string;
1026
+ properties: {
1027
+ include: {
1028
+ type: string;
1029
+ items: {
1030
+ type: string;
1031
+ };
1032
+ };
1033
+ exclude: {
1034
+ type: string;
1035
+ items: {
1036
+ type: string;
1037
+ };
1038
+ };
1039
+ };
1040
+ };
1041
+ company_email_provider: {
1042
+ type: string;
1043
+ items: {
1044
+ type: string;
1045
+ };
1046
+ description: string;
1047
+ };
1048
+ company_naics: {
1049
+ type: string;
1050
+ description: string;
1051
+ properties: {
1052
+ include: {
1053
+ type: string;
1054
+ items: {
1055
+ type: string;
1056
+ };
1057
+ };
1058
+ exclude: {
1059
+ type: string;
1060
+ items: {
1061
+ type: string;
1062
+ };
1063
+ };
1064
+ };
1065
+ };
1066
+ company_sics: {
1067
+ type: string;
1068
+ description: string;
1069
+ properties: {
1070
+ include: {
1071
+ type: string;
1072
+ items: {
1073
+ type: string;
1074
+ };
1075
+ };
1076
+ exclude: {
1077
+ type: string;
1078
+ items: {
1079
+ type: string;
1080
+ };
1081
+ };
1082
+ };
1083
+ };
1084
+ company_headcount_range: {
1085
+ type: string;
1086
+ items: {
1087
+ type: string;
1088
+ };
1089
+ description: string;
1090
+ };
1091
+ company_headcount_custom: {
1092
+ type: string;
1093
+ description: string;
1094
+ properties: {
1095
+ min: {
1096
+ type: string;
1097
+ };
1098
+ max: {
1099
+ type: string;
1100
+ };
1101
+ };
1102
+ };
1103
+ company_location_search: {
1104
+ type: string;
1105
+ description: string;
1106
+ properties: {
1107
+ include: {
1108
+ type: string;
1109
+ items: {
1110
+ type: string;
1111
+ };
1112
+ };
1113
+ exclude: {
1114
+ type: string;
1115
+ items: {
1116
+ type: string;
1117
+ };
1118
+ };
1119
+ };
1120
+ };
1121
+ company_type: {
1122
+ type: string;
1123
+ description: string;
1124
+ };
1125
+ company_funding: {
1126
+ description: string;
1127
+ type: string;
1128
+ properties: {
1129
+ stage: {
1130
+ type: string;
1131
+ items: {
1132
+ type: string;
1133
+ };
1134
+ };
1135
+ funding_date: {
1136
+ oneOf: ({
1137
+ type: string;
1138
+ description: string;
1139
+ properties: {
1140
+ min: {
1141
+ type: string;
1142
+ };
1143
+ max: {
1144
+ type: string;
1145
+ };
1146
+ };
1147
+ } | {
1148
+ type: string;
1149
+ })[];
1150
+ description: string;
1151
+ };
1152
+ last_funding: {
1153
+ type: string;
1154
+ description: string;
1155
+ properties: {
1156
+ min: {
1157
+ type: string;
1158
+ };
1159
+ max: {
1160
+ type: string;
1161
+ };
1162
+ };
1163
+ };
1164
+ total_funding: {
1165
+ type: string;
1166
+ description: string;
1167
+ properties: {
1168
+ min: {
1169
+ type: string;
1170
+ };
1171
+ max: {
1172
+ type: string;
1173
+ };
1174
+ };
1175
+ };
1176
+ funding_stage: {
1177
+ type: string;
1178
+ description: string;
1179
+ properties: {
1180
+ include: {
1181
+ type: string;
1182
+ items: {
1183
+ type: string;
1184
+ };
1185
+ };
1186
+ exclude: {
1187
+ type: string;
1188
+ items: {
1189
+ type: string;
1190
+ };
1191
+ };
1192
+ };
1193
+ };
1194
+ funding_amount: {
1195
+ type: string;
1196
+ description: string;
1197
+ properties: {
1198
+ min: {
1199
+ type: string;
1200
+ };
1201
+ max: {
1202
+ type: string;
1203
+ };
1204
+ };
1205
+ };
1206
+ };
1207
+ };
1208
+ company_keywords: {
1209
+ type: string;
1210
+ description: string;
1211
+ properties: {
1212
+ include: {
1213
+ type: string;
1214
+ items: {
1215
+ type: string;
1216
+ };
1217
+ };
1218
+ exclude: {
1219
+ type: string;
1220
+ items: {
1221
+ type: string;
1222
+ };
1223
+ };
1224
+ include_all: {
1225
+ type: string;
1226
+ };
1227
+ include_company_description: {
1228
+ type: string;
1229
+ };
1230
+ include_company_description_seo: {
1231
+ type: string;
1232
+ };
1233
+ };
1234
+ };
1235
+ company_attributes: {
1236
+ type: string;
1237
+ description: string;
1238
+ properties: {
1239
+ b2b: {
1240
+ type: string[];
1241
+ };
1242
+ demo: {
1243
+ type: string[];
1244
+ };
1245
+ freetrial: {
1246
+ type: string[];
1247
+ };
1248
+ downloadable: {
1249
+ type: string[];
1250
+ };
1251
+ mobileapps: {
1252
+ type: string[];
1253
+ };
1254
+ onlinereviews: {
1255
+ type: string[];
1256
+ };
1257
+ pricing: {
1258
+ type: string[];
1259
+ };
1260
+ };
1261
+ };
1262
+ company_revenue: {
1263
+ type: string;
1264
+ description: string;
1265
+ properties: {
1266
+ min: {
1267
+ type: string;
1268
+ };
1269
+ max: {
1270
+ type: string;
1271
+ };
1272
+ include_unknown_revenue: {
1273
+ type: string;
1274
+ };
1275
+ };
1276
+ };
1277
+ company_founded: {
1278
+ type: string;
1279
+ description: string;
1280
+ properties: {
1281
+ min: {
1282
+ type: string;
1283
+ };
1284
+ max: {
1285
+ type: string;
1286
+ };
1287
+ include_unknown_founded: {
1288
+ type: string;
1289
+ };
1290
+ };
1291
+ };
1292
+ company_headcount_growth: {
1293
+ type: string;
1294
+ description: string;
1295
+ properties: {
1296
+ timeframe_month: {
1297
+ type: string;
1298
+ };
1299
+ min: {
1300
+ type: string;
1301
+ };
1302
+ max: {
1303
+ type: string;
1304
+ };
1305
+ departments: {
1306
+ type: string;
1307
+ items: {
1308
+ type: string;
1309
+ };
1310
+ };
1311
+ };
1312
+ };
1313
+ company_job_posting_hiring_for: {
1314
+ type: string;
1315
+ items: {
1316
+ type: string;
1317
+ };
1318
+ };
1319
+ company_job_posting_quantity: {
1320
+ type: string;
1321
+ description: string;
1322
+ properties: {
1323
+ min: {
1324
+ type: string;
1325
+ };
1326
+ max: {
1327
+ type: string;
1328
+ };
1329
+ };
1330
+ };
1331
+ company_headcount_by_department: {
1332
+ type: string;
1333
+ items: {
1334
+ type: string;
1335
+ description: string;
1336
+ properties: {
1337
+ department: {
1338
+ type: string;
1339
+ };
1340
+ min: {
1341
+ type: string;
1342
+ };
1343
+ max: {
1344
+ type: string;
1345
+ };
1346
+ };
1347
+ };
1348
+ };
1349
+ };
1350
+ };
1351
+ page: {
1352
+ type: string;
1353
+ description: string;
1354
+ };
1355
+ searchId: {
1356
+ type: string;
1357
+ description: string;
1358
+ };
1359
+ campaignOfferId: {
1360
+ type: string;
1361
+ description: string;
1362
+ };
1363
+ searchName: {
1364
+ type: string;
1365
+ description: string;
1366
+ };
1367
+ domainFilterId: {
1368
+ type: string;
1369
+ description: string;
1370
+ };
1371
+ currentStep: {
1372
+ type: string[];
1373
+ description: string;
1374
+ };
1375
+ confirmed: {
1376
+ type: string;
1377
+ description: string;
1378
+ };
1379
+ provider?: undefined;
1380
+ searchMode?: undefined;
1381
+ organization_num_employees_ranges?: undefined;
1382
+ organization_locations?: undefined;
1383
+ organization_not_locations?: undefined;
1384
+ q_organization_keyword_tags?: undefined;
1385
+ organization_industry_tag_ids?: undefined;
1386
+ latest_funding_amount_min?: undefined;
1387
+ latest_funding_amount_max?: undefined;
1388
+ organization_revenue_min?: undefined;
1389
+ organization_revenue_max?: undefined;
1390
+ person_titles?: undefined;
1391
+ person_seniorities?: undefined;
1392
+ person_locations?: undefined;
1393
+ include_similar_titles?: undefined;
1394
+ q_keywords?: undefined;
1395
+ companyFilters?: undefined;
1396
+ contactFilters?: undefined;
1397
+ companySearchMode?: undefined;
1398
+ uploadedDomains?: undefined;
1399
+ filterType?: undefined;
1400
+ query?: undefined;
1401
+ keywords?: undefined;
1402
+ filePath?: undefined;
1403
+ domainColumn?: undefined;
1404
+ selectedColumns?: undefined;
1405
+ confirmationToken?: undefined;
1406
+ leadListId?: undefined;
1407
+ leadListName?: undefined;
1408
+ linkedInColumn?: undefined;
1409
+ include?: undefined;
1410
+ exclude?: undefined;
1411
+ type?: undefined;
1412
+ profileUrl?: undefined;
1413
+ postUrl?: undefined;
1414
+ companyUrl?: undefined;
1415
+ limit?: undefined;
1416
+ headlineICPCriteria?: undefined;
1417
+ rubricGuidelines?: undefined;
1418
+ sourceLeadListId?: undefined;
1419
+ targetLeadCount?: undefined;
1420
+ mode?: undefined;
1421
+ tableId?: undefined;
1422
+ campaignName?: undefined;
1423
+ keepInSync?: undefined;
1424
+ jobId?: undefined;
1425
+ selections?: undefined;
1426
+ selectionMode?: undefined;
1427
+ };
1428
+ required: string[];
1429
+ };
1430
+ } | {
1431
+ name: string;
1432
+ description: string;
1433
+ inputSchema: {
1434
+ type: string;
1435
+ properties: {
1436
+ type: {
1437
+ type: string;
1438
+ enum: string[];
1439
+ description: string;
1440
+ default: string;
1441
+ };
1442
+ keywords: {
1443
+ type: string;
1444
+ description: string;
1445
+ items: {
1446
+ type: string;
1447
+ properties: {
1448
+ keyword: {
1449
+ type: string;
1450
+ };
1451
+ id: {
1452
+ type: string;
1453
+ };
1454
+ confidence: {
1455
+ type: string[];
1456
+ };
1457
+ page: {
1458
+ type: string;
1459
+ };
1460
+ };
1461
+ required: string[];
1462
+ };
1463
+ };
1464
+ profileUrl: {
1465
+ type: string;
1466
+ description: string;
1467
+ };
1468
+ postUrl: {
1469
+ type: string;
1470
+ description: string;
1471
+ };
1472
+ companyUrl: {
1473
+ type: string;
1474
+ description: string;
1475
+ };
1476
+ campaignOfferId: {
1477
+ type: string;
1478
+ description: string;
1479
+ };
1480
+ currentStep: {
1481
+ type: string[];
1482
+ description: string;
1483
+ };
1484
+ page: {
1485
+ type: string;
1486
+ description: string;
1487
+ };
1488
+ limit: {
1489
+ type: string;
1490
+ description: string;
1491
+ };
1492
+ headlineICPCriteria: {
1493
+ type: string;
1494
+ items: {
1495
+ type: string;
1496
+ };
1497
+ description: string;
1498
+ minItems?: undefined;
1499
+ maxItems?: undefined;
1500
+ };
1501
+ rubricGuidelines: {
1502
+ type: string;
1503
+ items: {
1504
+ type: string;
1505
+ };
1506
+ description: string;
1507
+ };
1508
+ confirmed: {
1509
+ type: string;
1510
+ description: string;
1511
+ };
1512
+ provider?: undefined;
1513
+ searchMode?: undefined;
1514
+ organization_num_employees_ranges?: undefined;
1515
+ organization_locations?: undefined;
1516
+ organization_not_locations?: undefined;
1517
+ q_organization_keyword_tags?: undefined;
1518
+ organization_industry_tag_ids?: undefined;
1519
+ latest_funding_amount_min?: undefined;
1520
+ latest_funding_amount_max?: undefined;
1521
+ organization_revenue_min?: undefined;
1522
+ organization_revenue_max?: undefined;
1523
+ person_titles?: undefined;
1524
+ person_seniorities?: undefined;
1525
+ person_locations?: undefined;
1526
+ include_similar_titles?: undefined;
1527
+ q_keywords?: undefined;
1528
+ filters?: undefined;
1529
+ companyFilters?: undefined;
1530
+ contactFilters?: undefined;
1531
+ searchId?: undefined;
1532
+ searchName?: undefined;
1533
+ companySearchMode?: undefined;
1534
+ uploadedDomains?: undefined;
1535
+ filterType?: undefined;
1536
+ query?: undefined;
1537
+ filePath?: undefined;
1538
+ domainColumn?: undefined;
1539
+ selectedColumns?: undefined;
1540
+ confirmationToken?: undefined;
1541
+ leadListId?: undefined;
1542
+ leadListName?: undefined;
1543
+ linkedInColumn?: undefined;
1544
+ include?: undefined;
1545
+ exclude?: undefined;
1546
+ domainFilterId?: undefined;
1547
+ sourceLeadListId?: undefined;
1548
+ targetLeadCount?: undefined;
1549
+ mode?: undefined;
1550
+ tableId?: undefined;
1551
+ campaignName?: undefined;
1552
+ keepInSync?: undefined;
1553
+ jobId?: undefined;
1554
+ selections?: undefined;
1555
+ selectionMode?: undefined;
1556
+ };
1557
+ required: never[];
1558
+ };
1559
+ } | {
1560
+ name: string;
1561
+ description: string;
1562
+ inputSchema: {
1563
+ type: string;
1564
+ properties: {
1565
+ campaignOfferId: {
1566
+ type: string;
1567
+ description: string;
1568
+ };
1569
+ provider: {
1570
+ type: string;
1571
+ enum: string[];
1572
+ description: string;
1573
+ };
1574
+ currentStep: {
1575
+ type: string[];
1576
+ description: string;
1577
+ };
1578
+ sourceLeadListId: {
1579
+ type: string;
1580
+ description: string;
1581
+ };
1582
+ searchId: {
1583
+ type: string;
1584
+ description: string;
1585
+ };
1586
+ targetLeadCount: {
1587
+ type: string;
1588
+ description: string;
1589
+ };
1590
+ mode: {
1591
+ type: string;
1592
+ enum: string[];
1593
+ description: string;
1594
+ };
1595
+ searchName: {
1596
+ type: string;
1597
+ description: string;
1598
+ };
1599
+ leadListName: {
1600
+ type: string;
1601
+ description: string;
1602
+ };
1603
+ headlineICPCriteria: {
1604
+ type: string;
1605
+ items: {
1606
+ type: string;
1607
+ };
1608
+ description: string;
1609
+ minItems?: undefined;
1610
+ maxItems?: undefined;
1611
+ };
1612
+ rubricGuidelines: {
1613
+ type: string;
1614
+ items: {
1615
+ type: string;
1616
+ };
1617
+ description: string;
1618
+ };
1619
+ confirmed: {
1620
+ type: string;
1621
+ description: string;
1622
+ };
1623
+ searchMode?: undefined;
1624
+ organization_num_employees_ranges?: undefined;
1625
+ organization_locations?: undefined;
1626
+ organization_not_locations?: undefined;
1627
+ q_organization_keyword_tags?: undefined;
1628
+ organization_industry_tag_ids?: undefined;
1629
+ latest_funding_amount_min?: undefined;
1630
+ latest_funding_amount_max?: undefined;
1631
+ organization_revenue_min?: undefined;
1632
+ organization_revenue_max?: undefined;
1633
+ person_titles?: undefined;
1634
+ person_seniorities?: undefined;
1635
+ person_locations?: undefined;
1636
+ include_similar_titles?: undefined;
1637
+ q_keywords?: undefined;
1638
+ filters?: undefined;
1639
+ companyFilters?: undefined;
1640
+ contactFilters?: undefined;
1641
+ page?: undefined;
1642
+ companySearchMode?: undefined;
1643
+ uploadedDomains?: undefined;
1644
+ filterType?: undefined;
1645
+ query?: undefined;
1646
+ keywords?: undefined;
1647
+ filePath?: undefined;
1648
+ domainColumn?: undefined;
1649
+ selectedColumns?: undefined;
1650
+ confirmationToken?: undefined;
1651
+ leadListId?: undefined;
1652
+ linkedInColumn?: undefined;
1653
+ include?: undefined;
1654
+ exclude?: undefined;
1655
+ domainFilterId?: undefined;
1656
+ type?: undefined;
1657
+ profileUrl?: undefined;
1658
+ postUrl?: undefined;
1659
+ companyUrl?: undefined;
1660
+ limit?: undefined;
1661
+ tableId?: undefined;
1662
+ campaignName?: undefined;
1663
+ keepInSync?: undefined;
1664
+ jobId?: undefined;
1665
+ selections?: undefined;
1666
+ selectionMode?: undefined;
1667
+ };
1668
+ required: string[];
1669
+ };
1670
+ } | {
1671
+ name: string;
1672
+ description: string;
1673
+ inputSchema: {
1674
+ type: string;
1675
+ properties: {
1676
+ campaignOfferId: {
1677
+ type: string;
1678
+ description: string;
1679
+ };
1680
+ tableId: {
1681
+ type: string;
1682
+ description: string;
1683
+ };
1684
+ provider: {
1685
+ type: string;
1686
+ enum: string[];
1687
+ description: string;
1688
+ };
1689
+ confirmed?: undefined;
1690
+ searchMode?: undefined;
1691
+ organization_num_employees_ranges?: undefined;
1692
+ organization_locations?: undefined;
1693
+ organization_not_locations?: undefined;
1694
+ q_organization_keyword_tags?: undefined;
1695
+ organization_industry_tag_ids?: undefined;
1696
+ latest_funding_amount_min?: undefined;
1697
+ latest_funding_amount_max?: undefined;
1698
+ organization_revenue_min?: undefined;
1699
+ organization_revenue_max?: undefined;
1700
+ person_titles?: undefined;
1701
+ person_seniorities?: undefined;
1702
+ person_locations?: undefined;
1703
+ include_similar_titles?: undefined;
1704
+ q_keywords?: undefined;
1705
+ filters?: undefined;
1706
+ companyFilters?: undefined;
1707
+ contactFilters?: undefined;
1708
+ page?: undefined;
1709
+ searchId?: undefined;
1710
+ searchName?: undefined;
1711
+ companySearchMode?: undefined;
1712
+ uploadedDomains?: undefined;
1713
+ currentStep?: undefined;
1714
+ filterType?: undefined;
1715
+ query?: undefined;
1716
+ keywords?: undefined;
1717
+ filePath?: undefined;
1718
+ domainColumn?: undefined;
1719
+ selectedColumns?: undefined;
1720
+ confirmationToken?: undefined;
1721
+ leadListId?: undefined;
1722
+ leadListName?: undefined;
1723
+ linkedInColumn?: undefined;
1724
+ include?: undefined;
1725
+ exclude?: undefined;
1726
+ domainFilterId?: undefined;
1727
+ type?: undefined;
1728
+ profileUrl?: undefined;
1729
+ postUrl?: undefined;
1730
+ companyUrl?: undefined;
1731
+ limit?: undefined;
1732
+ headlineICPCriteria?: undefined;
1733
+ rubricGuidelines?: undefined;
1734
+ sourceLeadListId?: undefined;
1735
+ targetLeadCount?: undefined;
1736
+ mode?: undefined;
1737
+ campaignName?: undefined;
1738
+ keepInSync?: undefined;
1739
+ jobId?: undefined;
1740
+ selections?: undefined;
1741
+ selectionMode?: undefined;
1742
+ };
1743
+ required: string[];
1744
+ };
1745
+ } | {
1746
+ name: string;
1747
+ description: string;
1748
+ inputSchema: {
1749
+ type: string;
1750
+ properties: {
1751
+ campaignOfferId: {
1752
+ type: string;
1753
+ description: string;
1754
+ };
1755
+ sourceLeadListId: {
1756
+ type: string;
1757
+ description: string;
1758
+ };
1759
+ currentStep: {
1760
+ type: string[];
1761
+ description: string;
1762
+ };
1763
+ campaignName: {
1764
+ type: string;
1765
+ description: string;
1766
+ };
1767
+ keepInSync: {
1768
+ type: string;
1769
+ description: string;
1770
+ };
1771
+ jobId: {
1772
+ type: string;
1773
+ description: string;
1774
+ };
1775
+ targetLeadCount: {
1776
+ type: string;
1777
+ description: string;
1778
+ };
1779
+ confirmed: {
1780
+ type: string;
1781
+ description: string;
1782
+ };
1783
+ provider?: undefined;
1784
+ searchMode?: undefined;
1785
+ organization_num_employees_ranges?: undefined;
1786
+ organization_locations?: undefined;
1787
+ organization_not_locations?: undefined;
1788
+ q_organization_keyword_tags?: undefined;
1789
+ organization_industry_tag_ids?: undefined;
1790
+ latest_funding_amount_min?: undefined;
1791
+ latest_funding_amount_max?: undefined;
1792
+ organization_revenue_min?: undefined;
1793
+ organization_revenue_max?: undefined;
1794
+ person_titles?: undefined;
1795
+ person_seniorities?: undefined;
1796
+ person_locations?: undefined;
1797
+ include_similar_titles?: undefined;
1798
+ q_keywords?: undefined;
1799
+ filters?: undefined;
1800
+ companyFilters?: undefined;
1801
+ contactFilters?: undefined;
1802
+ page?: undefined;
1803
+ searchId?: undefined;
1804
+ searchName?: undefined;
1805
+ companySearchMode?: undefined;
1806
+ uploadedDomains?: undefined;
1807
+ filterType?: undefined;
1808
+ query?: undefined;
1809
+ keywords?: undefined;
1810
+ filePath?: undefined;
1811
+ domainColumn?: undefined;
1812
+ selectedColumns?: undefined;
1813
+ confirmationToken?: undefined;
1814
+ leadListId?: undefined;
1815
+ leadListName?: undefined;
1816
+ linkedInColumn?: undefined;
1817
+ include?: undefined;
1818
+ exclude?: undefined;
1819
+ domainFilterId?: undefined;
1820
+ type?: undefined;
1821
+ profileUrl?: undefined;
1822
+ postUrl?: undefined;
1823
+ companyUrl?: undefined;
1824
+ limit?: undefined;
1825
+ headlineICPCriteria?: undefined;
1826
+ rubricGuidelines?: undefined;
1827
+ mode?: undefined;
1828
+ tableId?: undefined;
1829
+ selections?: undefined;
1830
+ selectionMode?: undefined;
1831
+ };
1832
+ required: string[];
1833
+ };
1834
+ } | {
1835
+ name: string;
1836
+ description: string;
1837
+ inputSchema: {
1838
+ type: string;
1839
+ properties: {
1840
+ campaignOfferId: {
1841
+ type: string;
1842
+ description: string;
1843
+ };
1844
+ selections: {
1845
+ type: string;
1846
+ description: string;
1847
+ items: {
1848
+ type: string;
1849
+ properties: {
1850
+ postId: {
1851
+ type: string;
1852
+ description: string;
1853
+ };
1854
+ reason: {
1855
+ type: string;
1856
+ description: string;
1857
+ };
1858
+ };
1859
+ required: string[];
1860
+ };
1861
+ minItems: number;
1862
+ maxItems: number;
1863
+ };
1864
+ headlineICPCriteria: {
1865
+ type: string;
1866
+ description: string;
1867
+ items: {
1868
+ type: string;
1869
+ };
1870
+ minItems: number;
1871
+ maxItems: number;
1872
+ };
1873
+ selectionMode: {
1874
+ type: string;
1875
+ enum: string[];
1876
+ description: string;
1877
+ };
1878
+ currentStep: {
1879
+ type: string[];
1880
+ description: string;
1881
+ };
1882
+ provider?: undefined;
1883
+ confirmed?: undefined;
1884
+ searchMode?: undefined;
1885
+ organization_num_employees_ranges?: undefined;
1886
+ organization_locations?: undefined;
1887
+ organization_not_locations?: undefined;
1888
+ q_organization_keyword_tags?: undefined;
1889
+ organization_industry_tag_ids?: undefined;
1890
+ latest_funding_amount_min?: undefined;
1891
+ latest_funding_amount_max?: undefined;
1892
+ organization_revenue_min?: undefined;
1893
+ organization_revenue_max?: undefined;
1894
+ person_titles?: undefined;
1895
+ person_seniorities?: undefined;
1896
+ person_locations?: undefined;
1897
+ include_similar_titles?: undefined;
1898
+ q_keywords?: undefined;
1899
+ filters?: undefined;
1900
+ companyFilters?: undefined;
1901
+ contactFilters?: undefined;
1902
+ page?: undefined;
1903
+ searchId?: undefined;
1904
+ searchName?: undefined;
1905
+ companySearchMode?: undefined;
1906
+ uploadedDomains?: undefined;
1907
+ filterType?: undefined;
1908
+ query?: undefined;
1909
+ keywords?: undefined;
1910
+ filePath?: undefined;
1911
+ domainColumn?: undefined;
1912
+ selectedColumns?: undefined;
1913
+ confirmationToken?: undefined;
1914
+ leadListId?: undefined;
1915
+ leadListName?: undefined;
1916
+ linkedInColumn?: undefined;
1917
+ include?: undefined;
1918
+ exclude?: undefined;
1919
+ domainFilterId?: undefined;
1920
+ type?: undefined;
1921
+ profileUrl?: undefined;
1922
+ postUrl?: undefined;
1923
+ companyUrl?: undefined;
1924
+ limit?: undefined;
1925
+ rubricGuidelines?: undefined;
1926
+ sourceLeadListId?: undefined;
1927
+ targetLeadCount?: undefined;
1928
+ mode?: undefined;
1929
+ tableId?: undefined;
1930
+ campaignName?: undefined;
1931
+ keepInSync?: undefined;
1932
+ jobId?: undefined;
1933
+ };
1934
+ required: string[];
1935
+ };
1936
+ } | {
1937
+ name: string;
1938
+ description: string;
1939
+ inputSchema: {
1940
+ type: string;
1941
+ properties: {
1942
+ campaignOfferId: {
1943
+ type: string;
1944
+ description: string;
1945
+ };
1946
+ headlineICPCriteria: {
1947
+ type: string;
1948
+ description: string;
1949
+ items: {
1950
+ type: string;
1951
+ };
1952
+ minItems: number;
1953
+ maxItems: number;
1954
+ };
1955
+ currentStep: {
1956
+ type: string[];
1957
+ description: string;
1958
+ };
1959
+ provider?: undefined;
1960
+ confirmed?: undefined;
1961
+ searchMode?: undefined;
1962
+ organization_num_employees_ranges?: undefined;
1963
+ organization_locations?: undefined;
1964
+ organization_not_locations?: undefined;
1965
+ q_organization_keyword_tags?: undefined;
1966
+ organization_industry_tag_ids?: undefined;
1967
+ latest_funding_amount_min?: undefined;
1968
+ latest_funding_amount_max?: undefined;
1969
+ organization_revenue_min?: undefined;
1970
+ organization_revenue_max?: undefined;
1971
+ person_titles?: undefined;
1972
+ person_seniorities?: undefined;
1973
+ person_locations?: undefined;
1974
+ include_similar_titles?: undefined;
1975
+ q_keywords?: undefined;
1976
+ filters?: undefined;
1977
+ companyFilters?: undefined;
1978
+ contactFilters?: undefined;
1979
+ page?: undefined;
1980
+ searchId?: undefined;
1981
+ searchName?: undefined;
1982
+ companySearchMode?: undefined;
1983
+ uploadedDomains?: undefined;
1984
+ filterType?: undefined;
1985
+ query?: undefined;
1986
+ keywords?: undefined;
1987
+ filePath?: undefined;
1988
+ domainColumn?: undefined;
1989
+ selectedColumns?: undefined;
1990
+ confirmationToken?: undefined;
1991
+ leadListId?: undefined;
1992
+ leadListName?: undefined;
1993
+ linkedInColumn?: undefined;
1994
+ include?: undefined;
1995
+ exclude?: undefined;
1996
+ domainFilterId?: undefined;
1997
+ type?: undefined;
1998
+ profileUrl?: undefined;
1999
+ postUrl?: undefined;
2000
+ companyUrl?: undefined;
2001
+ limit?: undefined;
2002
+ rubricGuidelines?: undefined;
2003
+ sourceLeadListId?: undefined;
2004
+ targetLeadCount?: undefined;
2005
+ mode?: undefined;
2006
+ tableId?: undefined;
2007
+ campaignName?: undefined;
2008
+ keepInSync?: undefined;
2009
+ jobId?: undefined;
2010
+ selections?: undefined;
2011
+ selectionMode?: undefined;
2012
+ };
2013
+ required: string[];
2014
+ };
2015
+ })[];
2016
+ export declare function searchApollo(input: ApolloSearchInput): Promise<unknown>;
2017
+ export declare function searchSalesNav(input: SalesNavSearchInput): Promise<unknown>;
2018
+ export declare function searchProspeo(input: ProspeoSearchInput): Promise<any>;
2019
+ export declare function loadCsvDomains(input: LoadCsvDomainsInput): Promise<{
2020
+ ok: boolean;
2021
+ requiresConfirmation: boolean;
2022
+ resolvedFilePath: string;
2023
+ domainColumn: string;
2024
+ selectedColumns: string[];
2025
+ domainFilterId: string;
2026
+ validCount: number;
2027
+ invalidCount: number;
2028
+ droppedCount: number;
2029
+ truncatedDomainCount: number;
2030
+ apiCallCount: number;
2031
+ duplicatePolicy: "last_wins";
2032
+ limits: import("./csv-domains.js").CsvDomainLimits;
2033
+ warnings: string[];
2034
+ suggestedToolCalls: ({
2035
+ tool: string;
2036
+ args: {
2037
+ provider: string;
2038
+ campaignOfferId: string;
2039
+ filters?: undefined;
2040
+ domainFilterId?: undefined;
2041
+ };
2042
+ } | {
2043
+ tool: string;
2044
+ args: {
2045
+ campaignOfferId: string;
2046
+ filters: {};
2047
+ domainFilterId: string;
2048
+ provider?: undefined;
2049
+ };
2050
+ })[];
2051
+ guidance: string;
2052
+ preview?: undefined;
2053
+ confirmationToken?: undefined;
2054
+ } | {
2055
+ ok: boolean;
2056
+ requiresConfirmation: boolean;
2057
+ preview: import("./csv-domains.js").CsvDomainPreview;
2058
+ suggestedToolCalls: never[];
2059
+ resolvedFilePath?: undefined;
2060
+ domainColumn?: undefined;
2061
+ selectedColumns?: undefined;
2062
+ domainFilterId?: undefined;
2063
+ validCount?: undefined;
2064
+ invalidCount?: undefined;
2065
+ droppedCount?: undefined;
2066
+ truncatedDomainCount?: undefined;
2067
+ apiCallCount?: undefined;
2068
+ duplicatePolicy?: undefined;
2069
+ limits?: undefined;
2070
+ warnings?: undefined;
2071
+ guidance?: undefined;
2072
+ confirmationToken?: undefined;
2073
+ } | {
2074
+ ok: boolean;
2075
+ requiresConfirmation: boolean;
2076
+ preview: import("./csv-domains.js").CsvDomainPreview;
2077
+ confirmationToken: string;
2078
+ suggestedToolCalls: {
2079
+ tool: string;
2080
+ args: {
2081
+ filePath: string;
2082
+ confirmed: boolean;
2083
+ confirmationToken: string;
2084
+ campaignOfferId?: string | undefined;
2085
+ };
2086
+ }[];
2087
+ resolvedFilePath?: undefined;
2088
+ domainColumn?: undefined;
2089
+ selectedColumns?: undefined;
2090
+ domainFilterId?: undefined;
2091
+ validCount?: undefined;
2092
+ invalidCount?: undefined;
2093
+ droppedCount?: undefined;
2094
+ truncatedDomainCount?: undefined;
2095
+ apiCallCount?: undefined;
2096
+ duplicatePolicy?: undefined;
2097
+ limits?: undefined;
2098
+ warnings?: undefined;
2099
+ guidance?: undefined;
2100
+ }>;
2101
+ export declare function loadCsvLinkedinLeads(input: LoadCsvLinkedinLeadsInput): Promise<{
2102
+ ok: boolean;
2103
+ requiresConfirmation: boolean;
2104
+ resolvedFilePath: string;
2105
+ linkedInColumn: string;
2106
+ selectedColumns: string[];
2107
+ standardMappings: Partial<Record<"Name" | "Title" | "Company Website" | "Location", string | string[]>>;
2108
+ customColumnTargets: string[];
2109
+ leadListId: string;
2110
+ leadListName: string;
2111
+ createdLeadList: boolean;
2112
+ selectedLeadListIdUpdated: boolean;
2113
+ rowsInserted: number;
2114
+ jobId: string | null;
2115
+ importStatus: string | null;
2116
+ validCount: number;
2117
+ invalidCount: number;
2118
+ duplicateCount: number;
2119
+ emptyLinkedInRowCount: number;
2120
+ duplicatePolicy: "first_wins";
2121
+ limits: import("./csv-linkedin.js").CsvLinkedinLimits;
2122
+ warnings: string[];
2123
+ readinessWarning: string | null;
2124
+ suggestedToolCalls: {
2125
+ tool: string;
2126
+ args: {
2127
+ campaignOfferId: string;
2128
+ sourceLeadListId: string;
2129
+ };
2130
+ }[];
2131
+ guidance: string;
2132
+ preview?: undefined;
2133
+ confirmationToken?: undefined;
2134
+ } | {
2135
+ ok: boolean;
2136
+ requiresConfirmation: boolean;
2137
+ preview: import("./csv-linkedin.js").CsvLinkedinPreview;
2138
+ suggestedToolCalls: never[];
2139
+ resolvedFilePath?: undefined;
2140
+ linkedInColumn?: undefined;
2141
+ selectedColumns?: undefined;
2142
+ standardMappings?: undefined;
2143
+ customColumnTargets?: undefined;
2144
+ leadListId?: undefined;
2145
+ leadListName?: undefined;
2146
+ createdLeadList?: undefined;
2147
+ selectedLeadListIdUpdated?: undefined;
2148
+ rowsInserted?: undefined;
2149
+ jobId?: undefined;
2150
+ importStatus?: undefined;
2151
+ validCount?: undefined;
2152
+ invalidCount?: undefined;
2153
+ duplicateCount?: undefined;
2154
+ emptyLinkedInRowCount?: undefined;
2155
+ duplicatePolicy?: undefined;
2156
+ limits?: undefined;
2157
+ warnings?: undefined;
2158
+ readinessWarning?: undefined;
2159
+ guidance?: undefined;
2160
+ confirmationToken?: undefined;
2161
+ } | {
2162
+ ok: boolean;
2163
+ requiresConfirmation: boolean;
2164
+ preview: import("./csv-linkedin.js").CsvLinkedinPreview;
2165
+ confirmationToken: string;
2166
+ suggestedToolCalls: {
2167
+ tool: string;
2168
+ args: {
2169
+ filePath: string;
2170
+ confirmed: boolean;
2171
+ confirmationToken: string;
2172
+ leadListName?: string | undefined;
2173
+ leadListId?: string | undefined;
2174
+ currentStep?: string | null | undefined;
2175
+ campaignOfferId?: string | undefined;
2176
+ };
2177
+ }[];
2178
+ resolvedFilePath?: undefined;
2179
+ linkedInColumn?: undefined;
2180
+ selectedColumns?: undefined;
2181
+ standardMappings?: undefined;
2182
+ customColumnTargets?: undefined;
2183
+ leadListId?: undefined;
2184
+ leadListName?: undefined;
2185
+ createdLeadList?: undefined;
2186
+ selectedLeadListIdUpdated?: undefined;
2187
+ rowsInserted?: undefined;
2188
+ jobId?: undefined;
2189
+ importStatus?: undefined;
2190
+ validCount?: undefined;
2191
+ invalidCount?: undefined;
2192
+ duplicateCount?: undefined;
2193
+ emptyLinkedInRowCount?: undefined;
2194
+ duplicatePolicy?: undefined;
2195
+ limits?: undefined;
2196
+ warnings?: undefined;
2197
+ readinessWarning?: undefined;
2198
+ guidance?: undefined;
2199
+ }>;
2200
+ export declare function saveDomainFilters(input: SaveDomainFiltersInput): Promise<unknown>;
2201
+ export declare function lookupSalesNavFilter(input: LookupSalesNavFilterInput): Promise<{
2202
+ filterType: string;
2203
+ query: string;
2204
+ options: {
2205
+ id: string;
2206
+ displayValue: string;
2207
+ text: string;
2208
+ }[];
2209
+ usage: string;
2210
+ }>;
2211
+ export declare function searchSignals(input: SignalSearchInput): Promise<{
2212
+ success: boolean;
2213
+ totalPosts: number;
2214
+ postsReturned: number;
2215
+ selectionTarget: number;
2216
+ recommendedPostIds: string[];
2217
+ topPosts: {
2218
+ id: string;
2219
+ url: string | undefined;
2220
+ matchedKeyword: string | null;
2221
+ authorName: string;
2222
+ authorHeadline: string;
2223
+ authorProfileUrl: string;
2224
+ postedAt: string | null;
2225
+ recencyDays: number | null;
2226
+ aiScore: number | null;
2227
+ engagement: {
2228
+ likes: number;
2229
+ comments: number;
2230
+ shares: number;
2231
+ weighted: number;
2232
+ };
2233
+ score: number;
2234
+ excerpt: string;
2235
+ }[];
2236
+ keywordResults: {
2237
+ keyword: string;
2238
+ postCount: number;
2239
+ avgEngagement: number | null;
2240
+ hasMore: boolean;
2241
+ error: string | null;
2242
+ }[];
2243
+ notes: string[];
2244
+ }>;
2245
+ export declare function importLeads(input: ImportLeadsInput): Promise<{
2246
+ error: string;
2247
+ message: string;
2248
+ existingLeadListId: string;
2249
+ suggestedToolCalls: {
2250
+ tool: string;
2251
+ args: {
2252
+ sourceLeadListId: string;
2253
+ campaignOfferId: string;
2254
+ currentStep?: string | null;
2255
+ confirmed?: boolean;
2256
+ provider?: "apollo" | "sales-nav" | "prospeo" | "signal-discovery";
2257
+ searchId?: string;
2258
+ targetLeadCount?: number;
2259
+ mode?: "add" | "replace";
2260
+ searchName?: string;
2261
+ leadListName?: string;
2262
+ headlineICPCriteria?: string[];
2263
+ rubricGuidelines?: string[];
2264
+ };
2265
+ }[];
2266
+ provider?: undefined;
2267
+ leadListId?: undefined;
2268
+ needsModeSelection?: undefined;
2269
+ modeOptions?: undefined;
2270
+ jobId?: undefined;
2271
+ estimatedEngagers?: undefined;
2272
+ selectedPostCount?: undefined;
2273
+ targetLeadCount?: undefined;
2274
+ existingCount?: undefined;
2275
+ createdLeadList?: undefined;
2276
+ jobResult?: undefined;
2277
+ } | {
2278
+ provider: "signal-discovery" | "apollo" | "sales-nav" | "prospeo";
2279
+ leadListId: string;
2280
+ existingLeadListId: string;
2281
+ needsModeSelection: boolean;
2282
+ modeOptions: string[];
2283
+ message: string;
2284
+ suggestedToolCalls: {
2285
+ tool: string;
2286
+ args: {
2287
+ sourceLeadListId: string;
2288
+ mode: string;
2289
+ campaignOfferId: string;
2290
+ currentStep?: string | null;
2291
+ confirmed?: boolean;
2292
+ provider?: "apollo" | "sales-nav" | "prospeo" | "signal-discovery";
2293
+ searchId?: string;
2294
+ targetLeadCount?: number;
2295
+ searchName?: string;
2296
+ leadListName?: string;
2297
+ headlineICPCriteria?: string[];
2298
+ rubricGuidelines?: string[];
2299
+ };
2300
+ }[];
2301
+ error?: undefined;
2302
+ jobId?: undefined;
2303
+ estimatedEngagers?: undefined;
2304
+ selectedPostCount?: undefined;
2305
+ targetLeadCount?: undefined;
2306
+ existingCount?: undefined;
2307
+ createdLeadList?: undefined;
2308
+ jobResult?: undefined;
2309
+ } | {
2310
+ provider: string;
2311
+ leadListId: string;
2312
+ jobId: string;
2313
+ estimatedEngagers: number;
2314
+ selectedPostCount: number;
2315
+ targetLeadCount: number | null;
2316
+ message: string;
2317
+ error?: undefined;
2318
+ existingLeadListId?: undefined;
2319
+ suggestedToolCalls?: undefined;
2320
+ needsModeSelection?: undefined;
2321
+ modeOptions?: undefined;
2322
+ existingCount?: undefined;
2323
+ createdLeadList?: undefined;
2324
+ jobResult?: undefined;
2325
+ } | {
2326
+ provider: "apollo" | "sales-nav" | "prospeo";
2327
+ leadListId: string;
2328
+ existingLeadListId: string;
2329
+ needsModeSelection: boolean;
2330
+ modeOptions: string[];
2331
+ existingCount: any;
2332
+ message: string;
2333
+ suggestedToolCalls: {
2334
+ tool: string;
2335
+ args: {
2336
+ sourceLeadListId: string;
2337
+ mode: string;
2338
+ campaignOfferId: string;
2339
+ currentStep?: string | null;
2340
+ confirmed?: boolean;
2341
+ provider?: "apollo" | "sales-nav" | "prospeo" | "signal-discovery";
2342
+ searchId?: string;
2343
+ targetLeadCount?: number;
2344
+ searchName?: string;
2345
+ leadListName?: string;
2346
+ headlineICPCriteria?: string[];
2347
+ rubricGuidelines?: string[];
2348
+ };
2349
+ }[];
2350
+ error?: undefined;
2351
+ jobId?: undefined;
2352
+ estimatedEngagers?: undefined;
2353
+ selectedPostCount?: undefined;
2354
+ targetLeadCount?: undefined;
2355
+ createdLeadList?: undefined;
2356
+ jobResult?: undefined;
2357
+ } | {
2358
+ provider: "apollo" | "sales-nav" | "prospeo";
2359
+ leadListId: string;
2360
+ createdLeadList: any;
2361
+ jobResult: any;
2362
+ jobId: string | undefined;
2363
+ targetLeadCount: number | null;
2364
+ message: string;
2365
+ error?: undefined;
2366
+ existingLeadListId?: undefined;
2367
+ suggestedToolCalls?: undefined;
2368
+ needsModeSelection?: undefined;
2369
+ modeOptions?: undefined;
2370
+ estimatedEngagers?: undefined;
2371
+ selectedPostCount?: undefined;
2372
+ existingCount?: undefined;
2373
+ }>;
2374
+ export declare function cancelLeadImport(input: CancelLeadImportInput): Promise<{
2375
+ cancelled: boolean;
2376
+ provider: "apollo" | "sales-nav" | "prospeo";
2377
+ tableId: string;
2378
+ jobId: string;
2379
+ status: "CANCELLED";
2380
+ fetchedLeads: number;
2381
+ previousStatus: string;
2382
+ reason?: undefined;
2383
+ } | {
2384
+ cancelled: boolean;
2385
+ provider: "apollo" | "sales-nav" | "prospeo";
2386
+ tableId: string;
2387
+ reason: string;
2388
+ jobId?: undefined;
2389
+ status?: undefined;
2390
+ fetchedLeads?: undefined;
2391
+ previousStatus?: undefined;
2392
+ }>;
2393
+ export declare function confirmLeadList(input: ConfirmLeadListInput): Promise<{
2394
+ sourceLeadListId: string;
2395
+ campaignTableId: string | null;
2396
+ importResult: {
2397
+ workflowTableId?: string;
2398
+ campaignTableId?: string;
2399
+ campaignTableName?: string;
2400
+ leadsImported?: number;
2401
+ leadsSkipped?: number;
2402
+ };
2403
+ message: string;
2404
+ }>;
2405
+ export declare function getProviderPrompt(input: GetProviderPromptInput): string;
2406
+ export declare function selectPromisingPosts(input: SelectPromisingPostsInput): Promise<{
2407
+ success: boolean;
2408
+ selectedCount: number;
2409
+ unselectedCount: number;
2410
+ criteriaCount: number;
2411
+ message: string;
2412
+ }>;
2413
+ export declare function setHeadlineICPCriteria(input: SetHeadlineICPCriteriaInput): Promise<{
2414
+ success: boolean;
2415
+ criteriaCount: number;
2416
+ message: string;
2417
+ }>;