@sellable/mcp 0.1.258 → 0.1.259
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/dist/index-dev.js +0 -0
- package/dist/index.js +0 -0
- package/dist/server.js +4 -1
- package/dist/tools/csv-dnc.d.ts +36 -0
- package/dist/tools/csv-dnc.js +94 -2
- package/dist/tools/engage-discovery.d.ts +0 -21
- package/dist/tools/engage-discovery.js +9 -136
- package/dist/tools/leads.d.ts +381 -21
- package/dist/tools/leads.js +219 -5
- package/dist/tools/registry.d.ts +207 -23
- package/package.json +1 -1
- package/skills/create-campaign/SKILL.md +6 -0
- package/skills/create-campaign-v2/references/filter-leads.md +2 -0
- package/skills/create-campaign-v2/references/lead-validation-preview.md +2 -0
- package/skills/create-campaign-v2/references/step-13-import-leads.md +3 -1
- package/skills/create-post/SKILL.md +28 -122
- package/skills/create-post/references/gold-standard-post-pack.md +0 -11
- package/skills/create-post/references/hook-research-playbook.md +15 -314
- package/skills/create-post/references/post-file-contract.md +0 -21
- package/skills/create-post/references/post-validation.md +15 -205
- package/skills/find-leads/SKILL.md +6 -0
- package/skills/create-post/references/linkedin-preview-rendering.md +0 -176
- package/skills/research/config.json +0 -9
package/dist/tools/leads.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { type LoadCsvDncEntriesInput } from "./csv-dnc.js";
|
|
1
|
+
import { type ListDncEntriesInput, type LoadCsvDncEntriesInput } from "./csv-dnc.js";
|
|
2
2
|
export declare const MAX_SIGNAL_DISCOVERY_POSTS = 10;
|
|
3
3
|
export declare function normalizeTargetLeadCount(targetLeadCount: unknown, maxImportCount: number): number | undefined;
|
|
4
4
|
type SignalPostForImportSelection = {
|
|
@@ -151,6 +151,7 @@ export type ImportLeadsInput = {
|
|
|
151
151
|
headlineICPCriteria?: string[];
|
|
152
152
|
targetEngagerCount?: number;
|
|
153
153
|
maxPostsToScrape?: number;
|
|
154
|
+
allowInvalidSignalPosts?: boolean;
|
|
154
155
|
rubricGuidelines?: string[];
|
|
155
156
|
};
|
|
156
157
|
export type CancelLeadImportInput = {
|
|
@@ -248,6 +249,11 @@ export declare const leadToolDefinitions: ({
|
|
|
248
249
|
leadListId?: undefined;
|
|
249
250
|
leadListName?: undefined;
|
|
250
251
|
linkedInColumn?: undefined;
|
|
252
|
+
limit?: undefined;
|
|
253
|
+
search?: undefined;
|
|
254
|
+
listName?: undefined;
|
|
255
|
+
sourceType?: undefined;
|
|
256
|
+
includeDeleted?: undefined;
|
|
251
257
|
csvText?: undefined;
|
|
252
258
|
rawText?: undefined;
|
|
253
259
|
name?: undefined;
|
|
@@ -255,7 +261,6 @@ export declare const leadToolDefinitions: ({
|
|
|
255
261
|
exclude?: undefined;
|
|
256
262
|
seedCompanies?: undefined;
|
|
257
263
|
seedDomains?: undefined;
|
|
258
|
-
limit?: undefined;
|
|
259
264
|
sort?: undefined;
|
|
260
265
|
previewOnly?: undefined;
|
|
261
266
|
companySearchToken?: undefined;
|
|
@@ -272,6 +277,7 @@ export declare const leadToolDefinitions: ({
|
|
|
272
277
|
mode?: undefined;
|
|
273
278
|
targetEngagerCount?: undefined;
|
|
274
279
|
maxPostsToScrape?: undefined;
|
|
280
|
+
allowInvalidSignalPosts?: undefined;
|
|
275
281
|
tableId?: undefined;
|
|
276
282
|
campaignName?: undefined;
|
|
277
283
|
keepInSync?: undefined;
|
|
@@ -436,6 +442,11 @@ export declare const leadToolDefinitions: ({
|
|
|
436
442
|
leadListId?: undefined;
|
|
437
443
|
leadListName?: undefined;
|
|
438
444
|
linkedInColumn?: undefined;
|
|
445
|
+
limit?: undefined;
|
|
446
|
+
search?: undefined;
|
|
447
|
+
listName?: undefined;
|
|
448
|
+
sourceType?: undefined;
|
|
449
|
+
includeDeleted?: undefined;
|
|
439
450
|
csvText?: undefined;
|
|
440
451
|
rawText?: undefined;
|
|
441
452
|
name?: undefined;
|
|
@@ -443,7 +454,6 @@ export declare const leadToolDefinitions: ({
|
|
|
443
454
|
exclude?: undefined;
|
|
444
455
|
seedCompanies?: undefined;
|
|
445
456
|
seedDomains?: undefined;
|
|
446
|
-
limit?: undefined;
|
|
447
457
|
sort?: undefined;
|
|
448
458
|
previewOnly?: undefined;
|
|
449
459
|
companySearchToken?: undefined;
|
|
@@ -460,6 +470,7 @@ export declare const leadToolDefinitions: ({
|
|
|
460
470
|
mode?: undefined;
|
|
461
471
|
targetEngagerCount?: undefined;
|
|
462
472
|
maxPostsToScrape?: undefined;
|
|
473
|
+
allowInvalidSignalPosts?: undefined;
|
|
463
474
|
tableId?: undefined;
|
|
464
475
|
campaignName?: undefined;
|
|
465
476
|
keepInSync?: undefined;
|
|
@@ -523,6 +534,11 @@ export declare const leadToolDefinitions: ({
|
|
|
523
534
|
leadListId?: undefined;
|
|
524
535
|
leadListName?: undefined;
|
|
525
536
|
linkedInColumn?: undefined;
|
|
537
|
+
limit?: undefined;
|
|
538
|
+
search?: undefined;
|
|
539
|
+
listName?: undefined;
|
|
540
|
+
sourceType?: undefined;
|
|
541
|
+
includeDeleted?: undefined;
|
|
526
542
|
csvText?: undefined;
|
|
527
543
|
rawText?: undefined;
|
|
528
544
|
name?: undefined;
|
|
@@ -530,7 +546,6 @@ export declare const leadToolDefinitions: ({
|
|
|
530
546
|
exclude?: undefined;
|
|
531
547
|
seedCompanies?: undefined;
|
|
532
548
|
seedDomains?: undefined;
|
|
533
|
-
limit?: undefined;
|
|
534
549
|
sort?: undefined;
|
|
535
550
|
previewOnly?: undefined;
|
|
536
551
|
companySearchToken?: undefined;
|
|
@@ -547,6 +562,7 @@ export declare const leadToolDefinitions: ({
|
|
|
547
562
|
mode?: undefined;
|
|
548
563
|
targetEngagerCount?: undefined;
|
|
549
564
|
maxPostsToScrape?: undefined;
|
|
565
|
+
allowInvalidSignalPosts?: undefined;
|
|
550
566
|
tableId?: undefined;
|
|
551
567
|
campaignName?: undefined;
|
|
552
568
|
keepInSync?: undefined;
|
|
@@ -682,6 +698,11 @@ export declare const leadToolDefinitions: ({
|
|
|
682
698
|
leadListId?: undefined;
|
|
683
699
|
leadListName?: undefined;
|
|
684
700
|
linkedInColumn?: undefined;
|
|
701
|
+
limit?: undefined;
|
|
702
|
+
search?: undefined;
|
|
703
|
+
listName?: undefined;
|
|
704
|
+
sourceType?: undefined;
|
|
705
|
+
includeDeleted?: undefined;
|
|
685
706
|
csvText?: undefined;
|
|
686
707
|
rawText?: undefined;
|
|
687
708
|
name?: undefined;
|
|
@@ -689,7 +710,6 @@ export declare const leadToolDefinitions: ({
|
|
|
689
710
|
exclude?: undefined;
|
|
690
711
|
seedCompanies?: undefined;
|
|
691
712
|
seedDomains?: undefined;
|
|
692
|
-
limit?: undefined;
|
|
693
713
|
sort?: undefined;
|
|
694
714
|
previewOnly?: undefined;
|
|
695
715
|
companySearchToken?: undefined;
|
|
@@ -706,6 +726,7 @@ export declare const leadToolDefinitions: ({
|
|
|
706
726
|
mode?: undefined;
|
|
707
727
|
targetEngagerCount?: undefined;
|
|
708
728
|
maxPostsToScrape?: undefined;
|
|
729
|
+
allowInvalidSignalPosts?: undefined;
|
|
709
730
|
tableId?: undefined;
|
|
710
731
|
campaignName?: undefined;
|
|
711
732
|
keepInSync?: undefined;
|
|
@@ -783,6 +804,11 @@ export declare const leadToolDefinitions: ({
|
|
|
783
804
|
leadListId?: undefined;
|
|
784
805
|
leadListName?: undefined;
|
|
785
806
|
linkedInColumn?: undefined;
|
|
807
|
+
limit?: undefined;
|
|
808
|
+
search?: undefined;
|
|
809
|
+
listName?: undefined;
|
|
810
|
+
sourceType?: undefined;
|
|
811
|
+
includeDeleted?: undefined;
|
|
786
812
|
csvText?: undefined;
|
|
787
813
|
rawText?: undefined;
|
|
788
814
|
name?: undefined;
|
|
@@ -790,7 +816,6 @@ export declare const leadToolDefinitions: ({
|
|
|
790
816
|
exclude?: undefined;
|
|
791
817
|
seedCompanies?: undefined;
|
|
792
818
|
seedDomains?: undefined;
|
|
793
|
-
limit?: undefined;
|
|
794
819
|
sort?: undefined;
|
|
795
820
|
previewOnly?: undefined;
|
|
796
821
|
companySearchToken?: undefined;
|
|
@@ -807,6 +832,7 @@ export declare const leadToolDefinitions: ({
|
|
|
807
832
|
mode?: undefined;
|
|
808
833
|
targetEngagerCount?: undefined;
|
|
809
834
|
maxPostsToScrape?: undefined;
|
|
835
|
+
allowInvalidSignalPosts?: undefined;
|
|
810
836
|
tableId?: undefined;
|
|
811
837
|
campaignName?: undefined;
|
|
812
838
|
keepInSync?: undefined;
|
|
@@ -893,6 +919,11 @@ export declare const leadToolDefinitions: ({
|
|
|
893
919
|
query?: undefined;
|
|
894
920
|
keywords?: undefined;
|
|
895
921
|
domainColumn?: undefined;
|
|
922
|
+
limit?: undefined;
|
|
923
|
+
search?: undefined;
|
|
924
|
+
listName?: undefined;
|
|
925
|
+
sourceType?: undefined;
|
|
926
|
+
includeDeleted?: undefined;
|
|
896
927
|
csvText?: undefined;
|
|
897
928
|
rawText?: undefined;
|
|
898
929
|
name?: undefined;
|
|
@@ -900,7 +931,6 @@ export declare const leadToolDefinitions: ({
|
|
|
900
931
|
exclude?: undefined;
|
|
901
932
|
seedCompanies?: undefined;
|
|
902
933
|
seedDomains?: undefined;
|
|
903
|
-
limit?: undefined;
|
|
904
934
|
sort?: undefined;
|
|
905
935
|
previewOnly?: undefined;
|
|
906
936
|
companySearchToken?: undefined;
|
|
@@ -917,6 +947,7 @@ export declare const leadToolDefinitions: ({
|
|
|
917
947
|
mode?: undefined;
|
|
918
948
|
targetEngagerCount?: undefined;
|
|
919
949
|
maxPostsToScrape?: undefined;
|
|
950
|
+
allowInvalidSignalPosts?: undefined;
|
|
920
951
|
tableId?: undefined;
|
|
921
952
|
campaignName?: undefined;
|
|
922
953
|
keepInSync?: undefined;
|
|
@@ -930,6 +961,110 @@ export declare const leadToolDefinitions: ({
|
|
|
930
961
|
};
|
|
931
962
|
required: string[];
|
|
932
963
|
};
|
|
964
|
+
} | {
|
|
965
|
+
name: string;
|
|
966
|
+
description: string;
|
|
967
|
+
inputSchema: {
|
|
968
|
+
type: string;
|
|
969
|
+
properties: {
|
|
970
|
+
page: {
|
|
971
|
+
type: string;
|
|
972
|
+
description: string;
|
|
973
|
+
};
|
|
974
|
+
limit: {
|
|
975
|
+
type: string;
|
|
976
|
+
description: string;
|
|
977
|
+
};
|
|
978
|
+
search: {
|
|
979
|
+
type: string;
|
|
980
|
+
description: string;
|
|
981
|
+
};
|
|
982
|
+
listName: {
|
|
983
|
+
type: string;
|
|
984
|
+
description: string;
|
|
985
|
+
};
|
|
986
|
+
sourceType: {
|
|
987
|
+
type: string;
|
|
988
|
+
enum: string[];
|
|
989
|
+
description: string;
|
|
990
|
+
};
|
|
991
|
+
includeDeleted: {
|
|
992
|
+
type: string;
|
|
993
|
+
description: string;
|
|
994
|
+
};
|
|
995
|
+
provider?: undefined;
|
|
996
|
+
campaignOfferId?: undefined;
|
|
997
|
+
confirmed?: undefined;
|
|
998
|
+
searchMode?: undefined;
|
|
999
|
+
organization_num_employees_ranges?: undefined;
|
|
1000
|
+
organization_locations?: undefined;
|
|
1001
|
+
organization_not_locations?: undefined;
|
|
1002
|
+
q_organization_keyword_tags?: undefined;
|
|
1003
|
+
organization_industry_tag_ids?: undefined;
|
|
1004
|
+
latest_funding_amount_min?: undefined;
|
|
1005
|
+
latest_funding_amount_max?: undefined;
|
|
1006
|
+
organization_revenue_min?: undefined;
|
|
1007
|
+
organization_revenue_max?: undefined;
|
|
1008
|
+
person_titles?: undefined;
|
|
1009
|
+
person_seniorities?: undefined;
|
|
1010
|
+
person_locations?: undefined;
|
|
1011
|
+
include_similar_titles?: undefined;
|
|
1012
|
+
q_keywords?: undefined;
|
|
1013
|
+
filters?: undefined;
|
|
1014
|
+
companyFilters?: undefined;
|
|
1015
|
+
contactFilters?: undefined;
|
|
1016
|
+
searchId?: undefined;
|
|
1017
|
+
searchName?: undefined;
|
|
1018
|
+
companySearchMode?: undefined;
|
|
1019
|
+
uploadedDomains?: undefined;
|
|
1020
|
+
currentStep?: undefined;
|
|
1021
|
+
filterType?: undefined;
|
|
1022
|
+
query?: undefined;
|
|
1023
|
+
keywords?: undefined;
|
|
1024
|
+
filePath?: undefined;
|
|
1025
|
+
domainColumn?: undefined;
|
|
1026
|
+
selectedColumns?: undefined;
|
|
1027
|
+
confirmationToken?: undefined;
|
|
1028
|
+
leadListId?: undefined;
|
|
1029
|
+
leadListName?: undefined;
|
|
1030
|
+
linkedInColumn?: undefined;
|
|
1031
|
+
csvText?: undefined;
|
|
1032
|
+
rawText?: undefined;
|
|
1033
|
+
name?: undefined;
|
|
1034
|
+
include?: undefined;
|
|
1035
|
+
exclude?: undefined;
|
|
1036
|
+
seedCompanies?: undefined;
|
|
1037
|
+
seedDomains?: undefined;
|
|
1038
|
+
sort?: undefined;
|
|
1039
|
+
previewOnly?: undefined;
|
|
1040
|
+
companySearchToken?: undefined;
|
|
1041
|
+
selectedCompanyIds?: undefined;
|
|
1042
|
+
domainFilterId?: undefined;
|
|
1043
|
+
type?: undefined;
|
|
1044
|
+
profileUrl?: undefined;
|
|
1045
|
+
postUrl?: undefined;
|
|
1046
|
+
companyUrl?: undefined;
|
|
1047
|
+
headlineICPCriteria?: undefined;
|
|
1048
|
+
rubricGuidelines?: undefined;
|
|
1049
|
+
sourceLeadListId?: undefined;
|
|
1050
|
+
targetLeadCount?: undefined;
|
|
1051
|
+
mode?: undefined;
|
|
1052
|
+
targetEngagerCount?: undefined;
|
|
1053
|
+
maxPostsToScrape?: undefined;
|
|
1054
|
+
allowInvalidSignalPosts?: undefined;
|
|
1055
|
+
tableId?: undefined;
|
|
1056
|
+
campaignName?: undefined;
|
|
1057
|
+
keepInSync?: undefined;
|
|
1058
|
+
jobId?: undefined;
|
|
1059
|
+
reviewBatchLimit?: undefined;
|
|
1060
|
+
allowPartialSourceList?: undefined;
|
|
1061
|
+
includeRawImportResult?: undefined;
|
|
1062
|
+
selections?: undefined;
|
|
1063
|
+
selectionMode?: undefined;
|
|
1064
|
+
scrapePlanMode?: undefined;
|
|
1065
|
+
};
|
|
1066
|
+
required: never[];
|
|
1067
|
+
};
|
|
933
1068
|
} | {
|
|
934
1069
|
name: string;
|
|
935
1070
|
description: string;
|
|
@@ -1000,11 +1135,15 @@ export declare const leadToolDefinitions: ({
|
|
|
1000
1135
|
selectedColumns?: undefined;
|
|
1001
1136
|
leadListId?: undefined;
|
|
1002
1137
|
leadListName?: undefined;
|
|
1138
|
+
limit?: undefined;
|
|
1139
|
+
search?: undefined;
|
|
1140
|
+
listName?: undefined;
|
|
1141
|
+
sourceType?: undefined;
|
|
1142
|
+
includeDeleted?: undefined;
|
|
1003
1143
|
include?: undefined;
|
|
1004
1144
|
exclude?: undefined;
|
|
1005
1145
|
seedCompanies?: undefined;
|
|
1006
1146
|
seedDomains?: undefined;
|
|
1007
|
-
limit?: undefined;
|
|
1008
1147
|
sort?: undefined;
|
|
1009
1148
|
previewOnly?: undefined;
|
|
1010
1149
|
companySearchToken?: undefined;
|
|
@@ -1021,6 +1160,7 @@ export declare const leadToolDefinitions: ({
|
|
|
1021
1160
|
mode?: undefined;
|
|
1022
1161
|
targetEngagerCount?: undefined;
|
|
1023
1162
|
maxPostsToScrape?: undefined;
|
|
1163
|
+
allowInvalidSignalPosts?: undefined;
|
|
1024
1164
|
tableId?: undefined;
|
|
1025
1165
|
campaignName?: undefined;
|
|
1026
1166
|
keepInSync?: undefined;
|
|
@@ -1091,12 +1231,16 @@ export declare const leadToolDefinitions: ({
|
|
|
1091
1231
|
leadListId?: undefined;
|
|
1092
1232
|
leadListName?: undefined;
|
|
1093
1233
|
linkedInColumn?: undefined;
|
|
1234
|
+
limit?: undefined;
|
|
1235
|
+
search?: undefined;
|
|
1236
|
+
listName?: undefined;
|
|
1237
|
+
sourceType?: undefined;
|
|
1238
|
+
includeDeleted?: undefined;
|
|
1094
1239
|
csvText?: undefined;
|
|
1095
1240
|
rawText?: undefined;
|
|
1096
1241
|
name?: undefined;
|
|
1097
1242
|
seedCompanies?: undefined;
|
|
1098
1243
|
seedDomains?: undefined;
|
|
1099
|
-
limit?: undefined;
|
|
1100
1244
|
sort?: undefined;
|
|
1101
1245
|
previewOnly?: undefined;
|
|
1102
1246
|
companySearchToken?: undefined;
|
|
@@ -1113,6 +1257,7 @@ export declare const leadToolDefinitions: ({
|
|
|
1113
1257
|
mode?: undefined;
|
|
1114
1258
|
targetEngagerCount?: undefined;
|
|
1115
1259
|
maxPostsToScrape?: undefined;
|
|
1260
|
+
allowInvalidSignalPosts?: undefined;
|
|
1116
1261
|
tableId?: undefined;
|
|
1117
1262
|
campaignName?: undefined;
|
|
1118
1263
|
keepInSync?: undefined;
|
|
@@ -1978,6 +2123,10 @@ export declare const leadToolDefinitions: ({
|
|
|
1978
2123
|
leadListId?: undefined;
|
|
1979
2124
|
leadListName?: undefined;
|
|
1980
2125
|
linkedInColumn?: undefined;
|
|
2126
|
+
search?: undefined;
|
|
2127
|
+
listName?: undefined;
|
|
2128
|
+
sourceType?: undefined;
|
|
2129
|
+
includeDeleted?: undefined;
|
|
1981
2130
|
csvText?: undefined;
|
|
1982
2131
|
rawText?: undefined;
|
|
1983
2132
|
name?: undefined;
|
|
@@ -1997,6 +2146,7 @@ export declare const leadToolDefinitions: ({
|
|
|
1997
2146
|
mode?: undefined;
|
|
1998
2147
|
targetEngagerCount?: undefined;
|
|
1999
2148
|
maxPostsToScrape?: undefined;
|
|
2149
|
+
allowInvalidSignalPosts?: undefined;
|
|
2000
2150
|
tableId?: undefined;
|
|
2001
2151
|
campaignName?: undefined;
|
|
2002
2152
|
keepInSync?: undefined;
|
|
@@ -2077,13 +2227,17 @@ export declare const leadToolDefinitions: ({
|
|
|
2077
2227
|
leadListId?: undefined;
|
|
2078
2228
|
leadListName?: undefined;
|
|
2079
2229
|
linkedInColumn?: undefined;
|
|
2230
|
+
limit?: undefined;
|
|
2231
|
+
search?: undefined;
|
|
2232
|
+
listName?: undefined;
|
|
2233
|
+
sourceType?: undefined;
|
|
2234
|
+
includeDeleted?: undefined;
|
|
2080
2235
|
csvText?: undefined;
|
|
2081
2236
|
rawText?: undefined;
|
|
2082
2237
|
include?: undefined;
|
|
2083
2238
|
exclude?: undefined;
|
|
2084
2239
|
seedCompanies?: undefined;
|
|
2085
2240
|
seedDomains?: undefined;
|
|
2086
|
-
limit?: undefined;
|
|
2087
2241
|
sort?: undefined;
|
|
2088
2242
|
previewOnly?: undefined;
|
|
2089
2243
|
domainFilterId?: undefined;
|
|
@@ -2098,6 +2252,7 @@ export declare const leadToolDefinitions: ({
|
|
|
2098
2252
|
mode?: undefined;
|
|
2099
2253
|
targetEngagerCount?: undefined;
|
|
2100
2254
|
maxPostsToScrape?: undefined;
|
|
2255
|
+
allowInvalidSignalPosts?: undefined;
|
|
2101
2256
|
tableId?: undefined;
|
|
2102
2257
|
campaignName?: undefined;
|
|
2103
2258
|
keepInSync?: undefined;
|
|
@@ -3114,6 +3269,11 @@ export declare const leadToolDefinitions: ({
|
|
|
3114
3269
|
leadListId?: undefined;
|
|
3115
3270
|
leadListName?: undefined;
|
|
3116
3271
|
linkedInColumn?: undefined;
|
|
3272
|
+
limit?: undefined;
|
|
3273
|
+
search?: undefined;
|
|
3274
|
+
listName?: undefined;
|
|
3275
|
+
sourceType?: undefined;
|
|
3276
|
+
includeDeleted?: undefined;
|
|
3117
3277
|
csvText?: undefined;
|
|
3118
3278
|
rawText?: undefined;
|
|
3119
3279
|
name?: undefined;
|
|
@@ -3121,7 +3281,6 @@ export declare const leadToolDefinitions: ({
|
|
|
3121
3281
|
exclude?: undefined;
|
|
3122
3282
|
seedCompanies?: undefined;
|
|
3123
3283
|
seedDomains?: undefined;
|
|
3124
|
-
limit?: undefined;
|
|
3125
3284
|
sort?: undefined;
|
|
3126
3285
|
previewOnly?: undefined;
|
|
3127
3286
|
companySearchToken?: undefined;
|
|
@@ -3137,6 +3296,7 @@ export declare const leadToolDefinitions: ({
|
|
|
3137
3296
|
mode?: undefined;
|
|
3138
3297
|
targetEngagerCount?: undefined;
|
|
3139
3298
|
maxPostsToScrape?: undefined;
|
|
3299
|
+
allowInvalidSignalPosts?: undefined;
|
|
3140
3300
|
tableId?: undefined;
|
|
3141
3301
|
campaignName?: undefined;
|
|
3142
3302
|
keepInSync?: undefined;
|
|
@@ -3264,6 +3424,10 @@ export declare const leadToolDefinitions: ({
|
|
|
3264
3424
|
leadListId?: undefined;
|
|
3265
3425
|
leadListName?: undefined;
|
|
3266
3426
|
linkedInColumn?: undefined;
|
|
3427
|
+
search?: undefined;
|
|
3428
|
+
listName?: undefined;
|
|
3429
|
+
sourceType?: undefined;
|
|
3430
|
+
includeDeleted?: undefined;
|
|
3267
3431
|
csvText?: undefined;
|
|
3268
3432
|
rawText?: undefined;
|
|
3269
3433
|
name?: undefined;
|
|
@@ -3281,6 +3445,7 @@ export declare const leadToolDefinitions: ({
|
|
|
3281
3445
|
mode?: undefined;
|
|
3282
3446
|
targetEngagerCount?: undefined;
|
|
3283
3447
|
maxPostsToScrape?: undefined;
|
|
3448
|
+
allowInvalidSignalPosts?: undefined;
|
|
3284
3449
|
tableId?: undefined;
|
|
3285
3450
|
campaignName?: undefined;
|
|
3286
3451
|
keepInSync?: undefined;
|
|
@@ -3355,6 +3520,10 @@ export declare const leadToolDefinitions: ({
|
|
|
3355
3520
|
type: string;
|
|
3356
3521
|
description: string;
|
|
3357
3522
|
};
|
|
3523
|
+
allowInvalidSignalPosts: {
|
|
3524
|
+
type: string;
|
|
3525
|
+
description: string;
|
|
3526
|
+
};
|
|
3358
3527
|
rubricGuidelines: {
|
|
3359
3528
|
type: string;
|
|
3360
3529
|
items: {
|
|
@@ -3396,6 +3565,11 @@ export declare const leadToolDefinitions: ({
|
|
|
3396
3565
|
confirmationToken?: undefined;
|
|
3397
3566
|
leadListId?: undefined;
|
|
3398
3567
|
linkedInColumn?: undefined;
|
|
3568
|
+
limit?: undefined;
|
|
3569
|
+
search?: undefined;
|
|
3570
|
+
listName?: undefined;
|
|
3571
|
+
sourceType?: undefined;
|
|
3572
|
+
includeDeleted?: undefined;
|
|
3399
3573
|
csvText?: undefined;
|
|
3400
3574
|
rawText?: undefined;
|
|
3401
3575
|
name?: undefined;
|
|
@@ -3403,7 +3577,6 @@ export declare const leadToolDefinitions: ({
|
|
|
3403
3577
|
exclude?: undefined;
|
|
3404
3578
|
seedCompanies?: undefined;
|
|
3405
3579
|
seedDomains?: undefined;
|
|
3406
|
-
limit?: undefined;
|
|
3407
3580
|
sort?: undefined;
|
|
3408
3581
|
previewOnly?: undefined;
|
|
3409
3582
|
companySearchToken?: undefined;
|
|
@@ -3480,6 +3653,11 @@ export declare const leadToolDefinitions: ({
|
|
|
3480
3653
|
leadListId?: undefined;
|
|
3481
3654
|
leadListName?: undefined;
|
|
3482
3655
|
linkedInColumn?: undefined;
|
|
3656
|
+
limit?: undefined;
|
|
3657
|
+
search?: undefined;
|
|
3658
|
+
listName?: undefined;
|
|
3659
|
+
sourceType?: undefined;
|
|
3660
|
+
includeDeleted?: undefined;
|
|
3483
3661
|
csvText?: undefined;
|
|
3484
3662
|
rawText?: undefined;
|
|
3485
3663
|
name?: undefined;
|
|
@@ -3487,7 +3665,6 @@ export declare const leadToolDefinitions: ({
|
|
|
3487
3665
|
exclude?: undefined;
|
|
3488
3666
|
seedCompanies?: undefined;
|
|
3489
3667
|
seedDomains?: undefined;
|
|
3490
|
-
limit?: undefined;
|
|
3491
3668
|
sort?: undefined;
|
|
3492
3669
|
previewOnly?: undefined;
|
|
3493
3670
|
companySearchToken?: undefined;
|
|
@@ -3504,6 +3681,7 @@ export declare const leadToolDefinitions: ({
|
|
|
3504
3681
|
mode?: undefined;
|
|
3505
3682
|
targetEngagerCount?: undefined;
|
|
3506
3683
|
maxPostsToScrape?: undefined;
|
|
3684
|
+
allowInvalidSignalPosts?: undefined;
|
|
3507
3685
|
campaignName?: undefined;
|
|
3508
3686
|
keepInSync?: undefined;
|
|
3509
3687
|
jobId?: undefined;
|
|
@@ -3600,6 +3778,11 @@ export declare const leadToolDefinitions: ({
|
|
|
3600
3778
|
leadListId?: undefined;
|
|
3601
3779
|
leadListName?: undefined;
|
|
3602
3780
|
linkedInColumn?: undefined;
|
|
3781
|
+
limit?: undefined;
|
|
3782
|
+
search?: undefined;
|
|
3783
|
+
listName?: undefined;
|
|
3784
|
+
sourceType?: undefined;
|
|
3785
|
+
includeDeleted?: undefined;
|
|
3603
3786
|
csvText?: undefined;
|
|
3604
3787
|
rawText?: undefined;
|
|
3605
3788
|
name?: undefined;
|
|
@@ -3607,7 +3790,6 @@ export declare const leadToolDefinitions: ({
|
|
|
3607
3790
|
exclude?: undefined;
|
|
3608
3791
|
seedCompanies?: undefined;
|
|
3609
3792
|
seedDomains?: undefined;
|
|
3610
|
-
limit?: undefined;
|
|
3611
3793
|
sort?: undefined;
|
|
3612
3794
|
previewOnly?: undefined;
|
|
3613
3795
|
companySearchToken?: undefined;
|
|
@@ -3622,6 +3804,7 @@ export declare const leadToolDefinitions: ({
|
|
|
3622
3804
|
mode?: undefined;
|
|
3623
3805
|
targetEngagerCount?: undefined;
|
|
3624
3806
|
maxPostsToScrape?: undefined;
|
|
3807
|
+
allowInvalidSignalPosts?: undefined;
|
|
3625
3808
|
tableId?: undefined;
|
|
3626
3809
|
selections?: undefined;
|
|
3627
3810
|
selectionMode?: undefined;
|
|
@@ -3725,6 +3908,11 @@ export declare const leadToolDefinitions: ({
|
|
|
3725
3908
|
leadListId?: undefined;
|
|
3726
3909
|
leadListName?: undefined;
|
|
3727
3910
|
linkedInColumn?: undefined;
|
|
3911
|
+
limit?: undefined;
|
|
3912
|
+
search?: undefined;
|
|
3913
|
+
listName?: undefined;
|
|
3914
|
+
sourceType?: undefined;
|
|
3915
|
+
includeDeleted?: undefined;
|
|
3728
3916
|
csvText?: undefined;
|
|
3729
3917
|
rawText?: undefined;
|
|
3730
3918
|
name?: undefined;
|
|
@@ -3732,7 +3920,6 @@ export declare const leadToolDefinitions: ({
|
|
|
3732
3920
|
exclude?: undefined;
|
|
3733
3921
|
seedCompanies?: undefined;
|
|
3734
3922
|
seedDomains?: undefined;
|
|
3735
|
-
limit?: undefined;
|
|
3736
3923
|
sort?: undefined;
|
|
3737
3924
|
previewOnly?: undefined;
|
|
3738
3925
|
companySearchToken?: undefined;
|
|
@@ -3746,6 +3933,7 @@ export declare const leadToolDefinitions: ({
|
|
|
3746
3933
|
sourceLeadListId?: undefined;
|
|
3747
3934
|
targetLeadCount?: undefined;
|
|
3748
3935
|
mode?: undefined;
|
|
3936
|
+
allowInvalidSignalPosts?: undefined;
|
|
3749
3937
|
tableId?: undefined;
|
|
3750
3938
|
campaignName?: undefined;
|
|
3751
3939
|
keepInSync?: undefined;
|
|
@@ -3814,6 +4002,11 @@ export declare const leadToolDefinitions: ({
|
|
|
3814
4002
|
leadListId?: undefined;
|
|
3815
4003
|
leadListName?: undefined;
|
|
3816
4004
|
linkedInColumn?: undefined;
|
|
4005
|
+
limit?: undefined;
|
|
4006
|
+
search?: undefined;
|
|
4007
|
+
listName?: undefined;
|
|
4008
|
+
sourceType?: undefined;
|
|
4009
|
+
includeDeleted?: undefined;
|
|
3817
4010
|
csvText?: undefined;
|
|
3818
4011
|
rawText?: undefined;
|
|
3819
4012
|
name?: undefined;
|
|
@@ -3821,7 +4014,6 @@ export declare const leadToolDefinitions: ({
|
|
|
3821
4014
|
exclude?: undefined;
|
|
3822
4015
|
seedCompanies?: undefined;
|
|
3823
4016
|
seedDomains?: undefined;
|
|
3824
|
-
limit?: undefined;
|
|
3825
4017
|
sort?: undefined;
|
|
3826
4018
|
previewOnly?: undefined;
|
|
3827
4019
|
companySearchToken?: undefined;
|
|
@@ -3837,6 +4029,7 @@ export declare const leadToolDefinitions: ({
|
|
|
3837
4029
|
mode?: undefined;
|
|
3838
4030
|
targetEngagerCount?: undefined;
|
|
3839
4031
|
maxPostsToScrape?: undefined;
|
|
4032
|
+
allowInvalidSignalPosts?: undefined;
|
|
3840
4033
|
tableId?: undefined;
|
|
3841
4034
|
campaignName?: undefined;
|
|
3842
4035
|
keepInSync?: undefined;
|
|
@@ -4162,6 +4355,33 @@ export declare function loadCsvDncEntriesTool(input: LoadCsvDncEntriesInput): Pr
|
|
|
4162
4355
|
}[];
|
|
4163
4356
|
guidance: string;
|
|
4164
4357
|
}>;
|
|
4358
|
+
export declare function listDncEntriesTool(input?: ListDncEntriesInput): Promise<{
|
|
4359
|
+
ok: boolean;
|
|
4360
|
+
workspaceId: string;
|
|
4361
|
+
workspaceName: string;
|
|
4362
|
+
pagination: {
|
|
4363
|
+
total: number;
|
|
4364
|
+
page: number;
|
|
4365
|
+
limit: number;
|
|
4366
|
+
totalPages: number;
|
|
4367
|
+
};
|
|
4368
|
+
listNames: string[];
|
|
4369
|
+
entries: {
|
|
4370
|
+
id: string | null;
|
|
4371
|
+
type: string;
|
|
4372
|
+
domain: string | null;
|
|
4373
|
+
linkedin: string | null;
|
|
4374
|
+
linkedinUsername: string | null;
|
|
4375
|
+
name: string | null;
|
|
4376
|
+
source: {
|
|
4377
|
+
type: string;
|
|
4378
|
+
label: string;
|
|
4379
|
+
listName: string | null;
|
|
4380
|
+
};
|
|
4381
|
+
createdAt: string | null;
|
|
4382
|
+
}[];
|
|
4383
|
+
guidance: string;
|
|
4384
|
+
}>;
|
|
4165
4385
|
export declare function saveDomainFilters(input: SaveDomainFiltersInput): Promise<unknown>;
|
|
4166
4386
|
export declare function lookupSalesNavFilter(input: LookupSalesNavFilterInput): Promise<{
|
|
4167
4387
|
filterType: string;
|
|
@@ -4229,13 +4449,21 @@ export declare function importLeads(input: ImportLeadsInput): Promise<{
|
|
|
4229
4449
|
error?: undefined;
|
|
4230
4450
|
needsModeSelection?: undefined;
|
|
4231
4451
|
modeOptions?: undefined;
|
|
4452
|
+
invalidPostCount?: undefined;
|
|
4453
|
+
invalidPosts?: undefined;
|
|
4454
|
+
validSelectedPostCount?: undefined;
|
|
4455
|
+
recommendedValidPostCount?: undefined;
|
|
4456
|
+
estimatedValidEngagers?: undefined;
|
|
4457
|
+
targetEngagerCount?: undefined;
|
|
4458
|
+
needsInvalidPostConfirmation?: undefined;
|
|
4232
4459
|
jobId?: undefined;
|
|
4233
4460
|
estimatedEngagers?: undefined;
|
|
4234
4461
|
selectedPostCount?: undefined;
|
|
4235
4462
|
availableSelectedPostCount?: undefined;
|
|
4236
|
-
targetEngagerCount?: undefined;
|
|
4237
4463
|
maxPostsToScrape?: undefined;
|
|
4238
4464
|
limitedSelectedPosts?: undefined;
|
|
4465
|
+
invalidSelectedPostCount?: undefined;
|
|
4466
|
+
warnings?: undefined;
|
|
4239
4467
|
targetLeadCount?: undefined;
|
|
4240
4468
|
existingCount?: undefined;
|
|
4241
4469
|
createdLeadList?: undefined;
|
|
@@ -4260,6 +4488,7 @@ export declare function importLeads(input: ImportLeadsInput): Promise<{
|
|
|
4260
4488
|
headlineICPCriteria?: string[];
|
|
4261
4489
|
targetEngagerCount?: number;
|
|
4262
4490
|
maxPostsToScrape?: number;
|
|
4491
|
+
allowInvalidSignalPosts?: boolean;
|
|
4263
4492
|
rubricGuidelines?: string[];
|
|
4264
4493
|
};
|
|
4265
4494
|
}[];
|
|
@@ -4268,13 +4497,21 @@ export declare function importLeads(input: ImportLeadsInput): Promise<{
|
|
|
4268
4497
|
reusedExistingSourceList?: undefined;
|
|
4269
4498
|
needsModeSelection?: undefined;
|
|
4270
4499
|
modeOptions?: undefined;
|
|
4500
|
+
invalidPostCount?: undefined;
|
|
4501
|
+
invalidPosts?: undefined;
|
|
4502
|
+
validSelectedPostCount?: undefined;
|
|
4503
|
+
recommendedValidPostCount?: undefined;
|
|
4504
|
+
estimatedValidEngagers?: undefined;
|
|
4505
|
+
targetEngagerCount?: undefined;
|
|
4506
|
+
needsInvalidPostConfirmation?: undefined;
|
|
4271
4507
|
jobId?: undefined;
|
|
4272
4508
|
estimatedEngagers?: undefined;
|
|
4273
4509
|
selectedPostCount?: undefined;
|
|
4274
4510
|
availableSelectedPostCount?: undefined;
|
|
4275
|
-
targetEngagerCount?: undefined;
|
|
4276
4511
|
maxPostsToScrape?: undefined;
|
|
4277
4512
|
limitedSelectedPosts?: undefined;
|
|
4513
|
+
invalidSelectedPostCount?: undefined;
|
|
4514
|
+
warnings?: undefined;
|
|
4278
4515
|
targetLeadCount?: undefined;
|
|
4279
4516
|
existingCount?: undefined;
|
|
4280
4517
|
createdLeadList?: undefined;
|
|
@@ -4302,18 +4539,116 @@ export declare function importLeads(input: ImportLeadsInput): Promise<{
|
|
|
4302
4539
|
headlineICPCriteria?: string[];
|
|
4303
4540
|
targetEngagerCount?: number;
|
|
4304
4541
|
maxPostsToScrape?: number;
|
|
4542
|
+
allowInvalidSignalPosts?: boolean;
|
|
4305
4543
|
rubricGuidelines?: string[];
|
|
4306
4544
|
};
|
|
4307
4545
|
}[];
|
|
4308
4546
|
reusedExistingSourceList?: undefined;
|
|
4309
4547
|
error?: undefined;
|
|
4548
|
+
invalidPostCount?: undefined;
|
|
4549
|
+
invalidPosts?: undefined;
|
|
4550
|
+
validSelectedPostCount?: undefined;
|
|
4551
|
+
recommendedValidPostCount?: undefined;
|
|
4552
|
+
estimatedValidEngagers?: undefined;
|
|
4553
|
+
targetEngagerCount?: undefined;
|
|
4554
|
+
needsInvalidPostConfirmation?: undefined;
|
|
4555
|
+
jobId?: undefined;
|
|
4556
|
+
estimatedEngagers?: undefined;
|
|
4557
|
+
selectedPostCount?: undefined;
|
|
4558
|
+
availableSelectedPostCount?: undefined;
|
|
4559
|
+
maxPostsToScrape?: undefined;
|
|
4560
|
+
limitedSelectedPosts?: undefined;
|
|
4561
|
+
invalidSelectedPostCount?: undefined;
|
|
4562
|
+
warnings?: undefined;
|
|
4563
|
+
targetLeadCount?: undefined;
|
|
4564
|
+
existingCount?: undefined;
|
|
4565
|
+
createdLeadList?: undefined;
|
|
4566
|
+
jobResult?: undefined;
|
|
4567
|
+
} | {
|
|
4568
|
+
provider: string;
|
|
4569
|
+
error: string;
|
|
4570
|
+
message: string;
|
|
4571
|
+
invalidPostCount: number;
|
|
4572
|
+
invalidPosts: {
|
|
4573
|
+
id: string;
|
|
4574
|
+
url: string;
|
|
4575
|
+
authorName: string;
|
|
4576
|
+
keyword: string;
|
|
4577
|
+
reason: string;
|
|
4578
|
+
}[];
|
|
4579
|
+
validSelectedPostCount: number;
|
|
4580
|
+
recommendedValidPostCount: number;
|
|
4581
|
+
estimatedValidEngagers: number;
|
|
4582
|
+
targetEngagerCount: number;
|
|
4583
|
+
suggestedToolCalls: never[];
|
|
4584
|
+
leadListId?: undefined;
|
|
4585
|
+
existingLeadListId?: undefined;
|
|
4586
|
+
reusedExistingSourceList?: undefined;
|
|
4587
|
+
needsModeSelection?: undefined;
|
|
4588
|
+
modeOptions?: undefined;
|
|
4589
|
+
needsInvalidPostConfirmation?: undefined;
|
|
4310
4590
|
jobId?: undefined;
|
|
4311
4591
|
estimatedEngagers?: undefined;
|
|
4312
4592
|
selectedPostCount?: undefined;
|
|
4313
4593
|
availableSelectedPostCount?: undefined;
|
|
4314
|
-
targetEngagerCount?: undefined;
|
|
4315
4594
|
maxPostsToScrape?: undefined;
|
|
4316
4595
|
limitedSelectedPosts?: undefined;
|
|
4596
|
+
invalidSelectedPostCount?: undefined;
|
|
4597
|
+
warnings?: undefined;
|
|
4598
|
+
targetLeadCount?: undefined;
|
|
4599
|
+
existingCount?: undefined;
|
|
4600
|
+
createdLeadList?: undefined;
|
|
4601
|
+
jobResult?: undefined;
|
|
4602
|
+
} | {
|
|
4603
|
+
provider: string;
|
|
4604
|
+
needsInvalidPostConfirmation: boolean;
|
|
4605
|
+
invalidPostCount: number;
|
|
4606
|
+
invalidPosts: {
|
|
4607
|
+
id: string;
|
|
4608
|
+
url: string;
|
|
4609
|
+
authorName: string;
|
|
4610
|
+
keyword: string;
|
|
4611
|
+
reason: string;
|
|
4612
|
+
}[];
|
|
4613
|
+
validSelectedPostCount: number;
|
|
4614
|
+
recommendedValidPostCount: number;
|
|
4615
|
+
estimatedValidEngagers: number;
|
|
4616
|
+
targetEngagerCount: number;
|
|
4617
|
+
message: string;
|
|
4618
|
+
suggestedToolCalls: {
|
|
4619
|
+
tool: string;
|
|
4620
|
+
args: {
|
|
4621
|
+
campaignOfferId: string;
|
|
4622
|
+
provider: string;
|
|
4623
|
+
confirmed: boolean;
|
|
4624
|
+
allowInvalidSignalPosts: boolean;
|
|
4625
|
+
currentStep?: string | null;
|
|
4626
|
+
sourceLeadListId?: string;
|
|
4627
|
+
searchId?: string;
|
|
4628
|
+
targetLeadCount?: number;
|
|
4629
|
+
mode?: "add" | "replace";
|
|
4630
|
+
searchName?: string;
|
|
4631
|
+
leadListName?: string;
|
|
4632
|
+
headlineICPCriteria?: string[];
|
|
4633
|
+
targetEngagerCount?: number;
|
|
4634
|
+
maxPostsToScrape?: number;
|
|
4635
|
+
rubricGuidelines?: string[];
|
|
4636
|
+
};
|
|
4637
|
+
}[];
|
|
4638
|
+
leadListId?: undefined;
|
|
4639
|
+
existingLeadListId?: undefined;
|
|
4640
|
+
reusedExistingSourceList?: undefined;
|
|
4641
|
+
error?: undefined;
|
|
4642
|
+
needsModeSelection?: undefined;
|
|
4643
|
+
modeOptions?: undefined;
|
|
4644
|
+
jobId?: undefined;
|
|
4645
|
+
estimatedEngagers?: undefined;
|
|
4646
|
+
selectedPostCount?: undefined;
|
|
4647
|
+
availableSelectedPostCount?: undefined;
|
|
4648
|
+
maxPostsToScrape?: undefined;
|
|
4649
|
+
limitedSelectedPosts?: undefined;
|
|
4650
|
+
invalidSelectedPostCount?: undefined;
|
|
4651
|
+
warnings?: undefined;
|
|
4317
4652
|
targetLeadCount?: undefined;
|
|
4318
4653
|
existingCount?: undefined;
|
|
4319
4654
|
createdLeadList?: undefined;
|
|
@@ -4328,6 +4663,8 @@ export declare function importLeads(input: ImportLeadsInput): Promise<{
|
|
|
4328
4663
|
targetEngagerCount: number;
|
|
4329
4664
|
maxPostsToScrape: number | null;
|
|
4330
4665
|
limitedSelectedPosts: boolean;
|
|
4666
|
+
invalidSelectedPostCount: number;
|
|
4667
|
+
warnings: string[];
|
|
4331
4668
|
targetLeadCount: number | null;
|
|
4332
4669
|
message: string;
|
|
4333
4670
|
existingLeadListId?: undefined;
|
|
@@ -4336,6 +4673,12 @@ export declare function importLeads(input: ImportLeadsInput): Promise<{
|
|
|
4336
4673
|
error?: undefined;
|
|
4337
4674
|
needsModeSelection?: undefined;
|
|
4338
4675
|
modeOptions?: undefined;
|
|
4676
|
+
invalidPostCount?: undefined;
|
|
4677
|
+
invalidPosts?: undefined;
|
|
4678
|
+
validSelectedPostCount?: undefined;
|
|
4679
|
+
recommendedValidPostCount?: undefined;
|
|
4680
|
+
estimatedValidEngagers?: undefined;
|
|
4681
|
+
needsInvalidPostConfirmation?: undefined;
|
|
4339
4682
|
existingCount?: undefined;
|
|
4340
4683
|
createdLeadList?: undefined;
|
|
4341
4684
|
jobResult?: undefined;
|
|
@@ -4363,18 +4706,27 @@ export declare function importLeads(input: ImportLeadsInput): Promise<{
|
|
|
4363
4706
|
headlineICPCriteria?: string[];
|
|
4364
4707
|
targetEngagerCount?: number;
|
|
4365
4708
|
maxPostsToScrape?: number;
|
|
4709
|
+
allowInvalidSignalPosts?: boolean;
|
|
4366
4710
|
rubricGuidelines?: string[];
|
|
4367
4711
|
};
|
|
4368
4712
|
}[];
|
|
4369
4713
|
reusedExistingSourceList?: undefined;
|
|
4370
4714
|
error?: undefined;
|
|
4715
|
+
invalidPostCount?: undefined;
|
|
4716
|
+
invalidPosts?: undefined;
|
|
4717
|
+
validSelectedPostCount?: undefined;
|
|
4718
|
+
recommendedValidPostCount?: undefined;
|
|
4719
|
+
estimatedValidEngagers?: undefined;
|
|
4720
|
+
targetEngagerCount?: undefined;
|
|
4721
|
+
needsInvalidPostConfirmation?: undefined;
|
|
4371
4722
|
jobId?: undefined;
|
|
4372
4723
|
estimatedEngagers?: undefined;
|
|
4373
4724
|
selectedPostCount?: undefined;
|
|
4374
4725
|
availableSelectedPostCount?: undefined;
|
|
4375
|
-
targetEngagerCount?: undefined;
|
|
4376
4726
|
maxPostsToScrape?: undefined;
|
|
4377
4727
|
limitedSelectedPosts?: undefined;
|
|
4728
|
+
invalidSelectedPostCount?: undefined;
|
|
4729
|
+
warnings?: undefined;
|
|
4378
4730
|
targetLeadCount?: undefined;
|
|
4379
4731
|
createdLeadList?: undefined;
|
|
4380
4732
|
jobResult?: undefined;
|
|
@@ -4392,12 +4744,20 @@ export declare function importLeads(input: ImportLeadsInput): Promise<{
|
|
|
4392
4744
|
error?: undefined;
|
|
4393
4745
|
needsModeSelection?: undefined;
|
|
4394
4746
|
modeOptions?: undefined;
|
|
4747
|
+
invalidPostCount?: undefined;
|
|
4748
|
+
invalidPosts?: undefined;
|
|
4749
|
+
validSelectedPostCount?: undefined;
|
|
4750
|
+
recommendedValidPostCount?: undefined;
|
|
4751
|
+
estimatedValidEngagers?: undefined;
|
|
4752
|
+
targetEngagerCount?: undefined;
|
|
4753
|
+
needsInvalidPostConfirmation?: undefined;
|
|
4395
4754
|
estimatedEngagers?: undefined;
|
|
4396
4755
|
selectedPostCount?: undefined;
|
|
4397
4756
|
availableSelectedPostCount?: undefined;
|
|
4398
|
-
targetEngagerCount?: undefined;
|
|
4399
4757
|
maxPostsToScrape?: undefined;
|
|
4400
4758
|
limitedSelectedPosts?: undefined;
|
|
4759
|
+
invalidSelectedPostCount?: undefined;
|
|
4760
|
+
warnings?: undefined;
|
|
4401
4761
|
existingCount?: undefined;
|
|
4402
4762
|
}>;
|
|
4403
4763
|
export declare function cancelLeadImport(input: CancelLeadImportInput): Promise<{
|