@sellable/mcp 0.1.504 → 0.1.506
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/api.d.ts +5 -5
- package/dist/api.js +10 -10
- package/dist/index-dev.js +0 -0
- package/dist/index.js +0 -0
- package/dist/server.js +2 -2
- package/dist/tools/campaign-fill-routing.d.ts +5 -0
- package/dist/tools/campaign-fill-routing.js +13 -3
- package/dist/tools/campaign-message-preparation.d.ts +33 -23
- package/dist/tools/campaign-message-preparation.js +31 -30
- package/dist/tools/campaign-processing.d.ts +19 -0
- package/dist/tools/campaign-processing.js +31 -8
- package/dist/tools/campaign-refill-state.d.ts +5 -0
- package/dist/tools/campaign-refill-state.js +13 -3
- package/dist/tools/leads.d.ts +6 -47
- package/dist/tools/leads.js +26 -30
- package/dist/tools/prompts.js +1 -1
- package/dist/tools/readiness.d.ts +6 -0
- package/dist/tools/readiness.js +12 -5
- package/dist/tools/refill-sends.d.ts +112 -29
- package/dist/tools/refill-sends.js +222 -569
- package/dist/tools/refill-target-plan.d.ts +5 -0
- package/dist/tools/refill-target-plan.js +32 -65
- package/dist/tools/registry.d.ts +232 -48
- package/dist/tools/scheduler-fill-capacity.d.ts +5 -0
- package/dist/tools/scheduler-fill-capacity.js +13 -3
- package/dist/tools/sender-routing.d.ts +8 -1
- package/dist/tools/sender-routing.js +12 -3
- package/dist/tools/senders.d.ts +14 -1
- package/dist/tools/senders.js +31 -5
- package/dist/tools/workspace-context.d.ts +36 -0
- package/dist/tools/workspace-context.js +39 -0
- package/package.json +1 -1
- package/skills/refill-sends/SKILL.md +53 -29
- package/skills/refill-sends-workflow/SKILL.md +19 -12
|
@@ -12,6 +12,7 @@ type GetRefillTargetPlanInput = {
|
|
|
12
12
|
senders?: string[];
|
|
13
13
|
actionTypes?: string[];
|
|
14
14
|
approvalMode?: RefillTargetPlanApprovalMode;
|
|
15
|
+
workspaceId?: string;
|
|
15
16
|
};
|
|
16
17
|
export declare const refillTargetPlanToolDefinitions: {
|
|
17
18
|
name: string;
|
|
@@ -82,6 +83,10 @@ export declare const refillTargetPlanToolDefinitions: {
|
|
|
82
83
|
enum: string[];
|
|
83
84
|
description: string;
|
|
84
85
|
};
|
|
86
|
+
workspaceId: {
|
|
87
|
+
type: string;
|
|
88
|
+
description: string;
|
|
89
|
+
};
|
|
85
90
|
};
|
|
86
91
|
required: never[];
|
|
87
92
|
additionalProperties: boolean;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { getApi } from "../api.js";
|
|
2
|
+
import { normalizeExplicitWorkspaceId, workspaceRequestOptions, } from "./workspace-context.js";
|
|
2
3
|
const REFILL_TARGET_ACTION_TYPES = [
|
|
3
4
|
"send_invite",
|
|
4
5
|
"send_inmail_closed",
|
|
@@ -9,13 +10,6 @@ const SAFE_PACKET_ACTION_TYPES = new Set([
|
|
|
9
10
|
"approve_messages",
|
|
10
11
|
"start_paused_campaign",
|
|
11
12
|
"wait_for_scheduler",
|
|
12
|
-
"wait_for_active_work",
|
|
13
|
-
"wait_for_source_import",
|
|
14
|
-
"copy_selected_source_rows",
|
|
15
|
-
"continue_signal_discovery_source",
|
|
16
|
-
"continue_sales_nav_source",
|
|
17
|
-
"continue_prospeo_source",
|
|
18
|
-
"manual_source_replenishment",
|
|
19
13
|
"refresh_paid_inmail_credits",
|
|
20
14
|
"lower_paid_inmail_threshold",
|
|
21
15
|
"switch_to_connection_lane",
|
|
@@ -25,14 +19,6 @@ const MANUAL_ONLY_PACKET_ACTION_TYPES = new Set([
|
|
|
25
19
|
"lower_paid_inmail_threshold",
|
|
26
20
|
"switch_to_connection_lane",
|
|
27
21
|
"create_connection_campaign",
|
|
28
|
-
"continue_sales_nav_source",
|
|
29
|
-
"continue_prospeo_source",
|
|
30
|
-
"manual_source_replenishment",
|
|
31
|
-
]);
|
|
32
|
-
const TERMINAL_NO_ACTION_BLOCKER_CODES = new Set([
|
|
33
|
-
"paid_inmail_below_threshold",
|
|
34
|
-
"paid_inmail_credit_missing",
|
|
35
|
-
"paid_inmail_credit_stale",
|
|
36
22
|
]);
|
|
37
23
|
const SOURCE_PLAN_STATES = new Set([
|
|
38
24
|
"not_needed",
|
|
@@ -41,16 +27,17 @@ const SOURCE_PLAN_STATES = new Set([
|
|
|
41
27
|
"needs_signal_import",
|
|
42
28
|
"waiting_for_import",
|
|
43
29
|
"needs_confirm",
|
|
44
|
-
"needs_same_source_copy",
|
|
45
|
-
"needs_provider_continuation",
|
|
46
30
|
"source_shortfall",
|
|
47
31
|
"provider_exhausted",
|
|
48
32
|
"provider_missing",
|
|
49
33
|
"blocked",
|
|
50
34
|
]);
|
|
51
|
-
async function postRefillTargetPlan(body) {
|
|
35
|
+
async function postRefillTargetPlan(body, workspaceId) {
|
|
52
36
|
const api = getApi();
|
|
53
|
-
|
|
37
|
+
const requestOptions = workspaceRequestOptions(workspaceId);
|
|
38
|
+
return requestOptions
|
|
39
|
+
? api.post("/api/v3/mcp/refill-target-plan", body, requestOptions)
|
|
40
|
+
: api.post("/api/v3/mcp/refill-target-plan", body);
|
|
54
41
|
}
|
|
55
42
|
function isRecord(value) {
|
|
56
43
|
return Boolean(value && typeof value === "object" && !Array.isArray(value));
|
|
@@ -169,16 +156,6 @@ function sanitizeActionCandidate(candidate) {
|
|
|
169
156
|
tableId: stringValue(candidate.tableId),
|
|
170
157
|
tableName: stringValue(candidate.tableName) ?? null,
|
|
171
158
|
columnId: stringValue(candidate.columnId) ?? null,
|
|
172
|
-
sourceLeadListId: stringValue(candidate.sourceLeadListId) ?? null,
|
|
173
|
-
leadSourceProvider: stringValue(candidate.leadSourceProvider) ?? null,
|
|
174
|
-
sourceFingerprint: stringValue(candidate.sourceFingerprint) ?? null,
|
|
175
|
-
sourceInventoryStatus: stringValue(candidate.sourceInventoryStatus) ?? null,
|
|
176
|
-
sourceRowIds: stringArray(candidate.sourceRowIds),
|
|
177
|
-
sourceRowLimit: typeof candidate.sourceRowLimit === "number"
|
|
178
|
-
? candidate.sourceRowLimit
|
|
179
|
-
: undefined,
|
|
180
|
-
activeJobId: stringValue(candidate.activeJobId) ?? null,
|
|
181
|
-
activeImportStatus: stringValue(candidate.activeImportStatus) ?? null,
|
|
182
159
|
targetRows: typeof candidate.targetRows === "number" ? candidate.targetRows : undefined,
|
|
183
160
|
columnRole: stringValue(candidate.columnRole),
|
|
184
161
|
rowSelector: sanitizeRowSelector(candidate.rowSelector),
|
|
@@ -213,25 +190,9 @@ function sanitizeToolInput(value) {
|
|
|
213
190
|
return {};
|
|
214
191
|
return {
|
|
215
192
|
senderId: stringValue(value.senderId),
|
|
216
|
-
actionType: allowedActionType(value.actionType),
|
|
217
193
|
campaignId: stringValue(value.campaignId),
|
|
218
194
|
tableId: stringValue(value.tableId),
|
|
219
195
|
columnId: stringValue(value.columnId) ?? null,
|
|
220
|
-
sourceLeadListId: stringValue(value.sourceLeadListId) ?? null,
|
|
221
|
-
leadSourceProvider: stringValue(value.leadSourceProvider) ?? null,
|
|
222
|
-
sourceFingerprint: stringValue(value.sourceFingerprint) ?? null,
|
|
223
|
-
activeJobId: stringValue(value.activeJobId) ?? null,
|
|
224
|
-
activeImportStatus: stringValue(value.activeImportStatus) ?? null,
|
|
225
|
-
sourceInventoryStatus: stringValue(value.sourceInventoryStatus) ?? null,
|
|
226
|
-
sourceRowIds: stringArray(value.sourceRowIds),
|
|
227
|
-
sourceRowLimit: typeof value.sourceRowLimit === "number"
|
|
228
|
-
? value.sourceRowLimit
|
|
229
|
-
: undefined,
|
|
230
|
-
campaignOfferId: stringValue(value.campaignOfferId),
|
|
231
|
-
provider: stringValue(value.provider),
|
|
232
|
-
allowDifferentSourceLeadList: typeof value.allowDifferentSourceLeadList === "boolean"
|
|
233
|
-
? value.allowDifferentSourceLeadList
|
|
234
|
-
: undefined,
|
|
235
196
|
targetPreparedMessages: typeof value.targetPreparedMessages === "number"
|
|
236
197
|
? value.targetPreparedMessages
|
|
237
198
|
: undefined,
|
|
@@ -258,10 +219,6 @@ function sanitizePacketIds(value) {
|
|
|
258
219
|
campaignId: stringValue(value.campaignId),
|
|
259
220
|
tableId: stringValue(value.tableId),
|
|
260
221
|
columnId: stringValue(value.columnId) ?? null,
|
|
261
|
-
sourceLeadListId: stringValue(value.sourceLeadListId) ?? null,
|
|
262
|
-
leadSourceProvider: stringValue(value.leadSourceProvider) ?? null,
|
|
263
|
-
sourceFingerprint: stringValue(value.sourceFingerprint) ?? null,
|
|
264
|
-
activeJobId: stringValue(value.activeJobId) ?? null,
|
|
265
222
|
};
|
|
266
223
|
}
|
|
267
224
|
function sanitizeStructuredAction(action, selectedBySender, mode, rank) {
|
|
@@ -284,7 +241,6 @@ function sanitizeStructuredAction(action, selectedBySender, mode, rank) {
|
|
|
284
241
|
return {
|
|
285
242
|
rank,
|
|
286
243
|
type: action.type,
|
|
287
|
-
actionType: allowedActionType(action.actionType),
|
|
288
244
|
toolName: stringValue(action.toolName) ?? null,
|
|
289
245
|
sideEffectClass: stringValue(action.sideEffectClass),
|
|
290
246
|
ids,
|
|
@@ -382,9 +338,6 @@ function sanitizeSourcePlan(value) {
|
|
|
382
338
|
reason: stringValue(value.reason),
|
|
383
339
|
campaignId: stringValue(value.campaignId),
|
|
384
340
|
tableId: stringValue(value.tableId),
|
|
385
|
-
sourceLeadListId: stringValue(value.sourceLeadListId) ?? null,
|
|
386
|
-
leadSourceProvider: stringValue(value.leadSourceProvider) ?? null,
|
|
387
|
-
sourceFingerprint: stringValue(value.sourceFingerprint) ?? null,
|
|
388
341
|
remainingRowsNeeded: typeof value.remainingRowsNeeded === "number"
|
|
389
342
|
? value.remainingRowsNeeded
|
|
390
343
|
: undefined,
|
|
@@ -633,16 +586,14 @@ function sanitizeRefillTargetPlanResult(result) {
|
|
|
633
586
|
const eligibleSenderLedger = sanitizeEligibleSenderLedger(target.eligibleSenderLedger, selectedBySender);
|
|
634
587
|
const senderRefillPlans = sanitizeStructuredSenderPlans(target.senderRefillPlans, selectedBySender);
|
|
635
588
|
const globalActionQueue = buildSanitizedGlobalActionQueue(senderRefillPlans);
|
|
636
|
-
const
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
: hasTerminalNoActionBlocker
|
|
645
|
-
? "blocked"
|
|
589
|
+
const status = blockers.some((blocker) => ["sender_disconnected", "sender_sales_nav_disconnected"].includes(String(blocker.code)))
|
|
590
|
+
? "blocked"
|
|
591
|
+
: remainingProjectedGap === 0
|
|
592
|
+
? "complete"
|
|
593
|
+
: grossTarget <= 0
|
|
594
|
+
? "blocked"
|
|
595
|
+
: remainingReadyOrProjectedGap === 0
|
|
596
|
+
? "awaiting_scheduler_after_ready_buffer"
|
|
646
597
|
: "needs_refill";
|
|
647
598
|
return {
|
|
648
599
|
...result,
|
|
@@ -745,6 +696,10 @@ export const refillTargetPlanToolDefinitions = [
|
|
|
745
696
|
enum: ["approve", "mark_ready"],
|
|
746
697
|
description: 'Requested downstream approval mode. Use "approve" only for explicit fill/schedule requests.',
|
|
747
698
|
},
|
|
699
|
+
workspaceId: {
|
|
700
|
+
type: "string",
|
|
701
|
+
description: "Explicit request-scoped workspace id for scheduled/yolo refill automation. Pass this instead of switching the shared active workspace.",
|
|
702
|
+
},
|
|
748
703
|
},
|
|
749
704
|
required: [],
|
|
750
705
|
additionalProperties: false,
|
|
@@ -752,6 +707,7 @@ export const refillTargetPlanToolDefinitions = [
|
|
|
752
707
|
},
|
|
753
708
|
];
|
|
754
709
|
export async function getRefillTargetPlan(input = {}) {
|
|
710
|
+
const workspaceId = normalizeExplicitWorkspaceId(input.workspaceId);
|
|
755
711
|
const result = await postRefillTargetPlan({
|
|
756
712
|
intent: input.intent,
|
|
757
713
|
horizonSendDays: input.horizonSendDays,
|
|
@@ -764,6 +720,17 @@ export async function getRefillTargetPlan(input = {}) {
|
|
|
764
720
|
senders: input.senders,
|
|
765
721
|
actionTypes: input.actionTypes,
|
|
766
722
|
approvalMode: input.approvalMode,
|
|
767
|
-
|
|
768
|
-
|
|
723
|
+
...(workspaceId ? { workspaceId } : {}),
|
|
724
|
+
}, workspaceId ?? undefined);
|
|
725
|
+
const sanitized = sanitizeRefillTargetPlanResult(result);
|
|
726
|
+
if (!workspaceId || !isRecord(sanitized))
|
|
727
|
+
return sanitized;
|
|
728
|
+
return {
|
|
729
|
+
...sanitized,
|
|
730
|
+
request: isRecord(sanitized.request)
|
|
731
|
+
? { ...sanitized.request, workspaceId }
|
|
732
|
+
: { workspaceId },
|
|
733
|
+
workspaceId,
|
|
734
|
+
workspaceResolution: "explicit",
|
|
735
|
+
};
|
|
769
736
|
}
|
package/dist/tools/registry.d.ts
CHANGED
|
@@ -499,6 +499,10 @@ export declare const allTools: ({
|
|
|
499
499
|
maximum: number;
|
|
500
500
|
description: string;
|
|
501
501
|
};
|
|
502
|
+
workspaceId: {
|
|
503
|
+
type: string;
|
|
504
|
+
description: string;
|
|
505
|
+
};
|
|
502
506
|
};
|
|
503
507
|
required: string[];
|
|
504
508
|
additionalProperties: boolean;
|
|
@@ -580,6 +584,89 @@ export declare const allTools: ({
|
|
|
580
584
|
required: string[];
|
|
581
585
|
additionalProperties: boolean;
|
|
582
586
|
};
|
|
587
|
+
} | {
|
|
588
|
+
name: string;
|
|
589
|
+
description: string;
|
|
590
|
+
inputSchema: {
|
|
591
|
+
type: string;
|
|
592
|
+
properties: {
|
|
593
|
+
campaignId: {
|
|
594
|
+
type: string;
|
|
595
|
+
description: string;
|
|
596
|
+
};
|
|
597
|
+
tableId: {
|
|
598
|
+
type: string;
|
|
599
|
+
};
|
|
600
|
+
targetPreparedMessages: {
|
|
601
|
+
type: string;
|
|
602
|
+
minimum: number;
|
|
603
|
+
maximum: number;
|
|
604
|
+
};
|
|
605
|
+
maxRowsToCheck: {
|
|
606
|
+
type: string;
|
|
607
|
+
minimum: number;
|
|
608
|
+
maximum: number;
|
|
609
|
+
description: string;
|
|
610
|
+
};
|
|
611
|
+
batchSize: {
|
|
612
|
+
type: string;
|
|
613
|
+
minimum: number;
|
|
614
|
+
maximum: number;
|
|
615
|
+
description: string;
|
|
616
|
+
};
|
|
617
|
+
maxBatchRows: {
|
|
618
|
+
type: string;
|
|
619
|
+
minimum: number;
|
|
620
|
+
maximum: number;
|
|
621
|
+
description: string;
|
|
622
|
+
};
|
|
623
|
+
approvalMode: {
|
|
624
|
+
type: string;
|
|
625
|
+
enum: string[];
|
|
626
|
+
description: string;
|
|
627
|
+
};
|
|
628
|
+
autoContinue: {
|
|
629
|
+
type: string;
|
|
630
|
+
};
|
|
631
|
+
disableLowPassRateStop: {
|
|
632
|
+
type: string;
|
|
633
|
+
description: string;
|
|
634
|
+
};
|
|
635
|
+
rowSelector: {
|
|
636
|
+
type: string;
|
|
637
|
+
description: string;
|
|
638
|
+
properties: {
|
|
639
|
+
type: {
|
|
640
|
+
type: string;
|
|
641
|
+
enum: string[];
|
|
642
|
+
};
|
|
643
|
+
basisHash: {
|
|
644
|
+
type: string;
|
|
645
|
+
};
|
|
646
|
+
rowIds: {
|
|
647
|
+
type: string;
|
|
648
|
+
items: {
|
|
649
|
+
type: string;
|
|
650
|
+
};
|
|
651
|
+
};
|
|
652
|
+
limit: {
|
|
653
|
+
type: string;
|
|
654
|
+
minimum: number;
|
|
655
|
+
maximum: number;
|
|
656
|
+
};
|
|
657
|
+
};
|
|
658
|
+
required: string[];
|
|
659
|
+
additionalProperties: boolean;
|
|
660
|
+
};
|
|
661
|
+
workspaceId: {
|
|
662
|
+
type: string;
|
|
663
|
+
description: string;
|
|
664
|
+
};
|
|
665
|
+
jobId?: undefined;
|
|
666
|
+
};
|
|
667
|
+
required: string[];
|
|
668
|
+
additionalProperties: boolean;
|
|
669
|
+
};
|
|
583
670
|
} | {
|
|
584
671
|
name: string;
|
|
585
672
|
description: string;
|
|
@@ -596,16 +683,18 @@ export declare const allTools: ({
|
|
|
596
683
|
tableId: {
|
|
597
684
|
type: string;
|
|
598
685
|
};
|
|
686
|
+
workspaceId: {
|
|
687
|
+
type: string;
|
|
688
|
+
description?: undefined;
|
|
689
|
+
};
|
|
599
690
|
targetPreparedMessages?: undefined;
|
|
600
691
|
maxRowsToCheck?: undefined;
|
|
601
692
|
batchSize?: undefined;
|
|
602
693
|
maxBatchRows?: undefined;
|
|
603
694
|
approvalMode?: undefined;
|
|
604
|
-
rowSelector?: undefined;
|
|
605
695
|
autoContinue?: undefined;
|
|
606
|
-
senderId?: undefined;
|
|
607
|
-
actionType?: undefined;
|
|
608
696
|
disableLowPassRateStop?: undefined;
|
|
697
|
+
rowSelector?: undefined;
|
|
609
698
|
};
|
|
610
699
|
additionalProperties: boolean;
|
|
611
700
|
required?: undefined;
|
|
@@ -655,6 +744,10 @@ export declare const allTools: ({
|
|
|
655
744
|
enum: string[];
|
|
656
745
|
description: string;
|
|
657
746
|
};
|
|
747
|
+
workspaceId: {
|
|
748
|
+
type: string;
|
|
749
|
+
description: string;
|
|
750
|
+
};
|
|
658
751
|
};
|
|
659
752
|
required: string[];
|
|
660
753
|
additionalProperties: boolean;
|
|
@@ -688,6 +781,7 @@ export declare const allTools: ({
|
|
|
688
781
|
};
|
|
689
782
|
leadListId?: undefined;
|
|
690
783
|
campaignOfferId?: undefined;
|
|
784
|
+
workspaceId?: undefined;
|
|
691
785
|
provider?: undefined;
|
|
692
786
|
jobId?: undefined;
|
|
693
787
|
targetLeadCount?: undefined;
|
|
@@ -708,6 +802,9 @@ export declare const allTools: ({
|
|
|
708
802
|
tableId: {
|
|
709
803
|
type: string;
|
|
710
804
|
};
|
|
805
|
+
workspaceId: {
|
|
806
|
+
type: string;
|
|
807
|
+
};
|
|
711
808
|
columnRole?: undefined;
|
|
712
809
|
rowSelector?: undefined;
|
|
713
810
|
limit?: undefined;
|
|
@@ -738,6 +835,9 @@ export declare const allTools: ({
|
|
|
738
835
|
tableId: {
|
|
739
836
|
type: string;
|
|
740
837
|
};
|
|
838
|
+
workspaceId: {
|
|
839
|
+
type: string;
|
|
840
|
+
};
|
|
741
841
|
columnRole: {
|
|
742
842
|
type: string;
|
|
743
843
|
enum: string[];
|
|
@@ -795,6 +895,9 @@ export declare const allTools: ({
|
|
|
795
895
|
tableId: {
|
|
796
896
|
type: string;
|
|
797
897
|
};
|
|
898
|
+
workspaceId: {
|
|
899
|
+
type: string;
|
|
900
|
+
};
|
|
798
901
|
columnRole: {
|
|
799
902
|
type: string;
|
|
800
903
|
enum: string[];
|
|
@@ -856,6 +959,9 @@ export declare const allTools: ({
|
|
|
856
959
|
tableId: {
|
|
857
960
|
type: string;
|
|
858
961
|
};
|
|
962
|
+
workspaceId: {
|
|
963
|
+
type: string;
|
|
964
|
+
};
|
|
859
965
|
minPassedCount: {
|
|
860
966
|
type: string;
|
|
861
967
|
};
|
|
@@ -894,6 +1000,9 @@ export declare const allTools: ({
|
|
|
894
1000
|
tableId: {
|
|
895
1001
|
type: string;
|
|
896
1002
|
};
|
|
1003
|
+
workspaceId: {
|
|
1004
|
+
type: string;
|
|
1005
|
+
};
|
|
897
1006
|
rowIds: {
|
|
898
1007
|
type: string;
|
|
899
1008
|
items: {
|
|
@@ -935,6 +1044,9 @@ export declare const allTools: ({
|
|
|
935
1044
|
tableId: {
|
|
936
1045
|
type: string;
|
|
937
1046
|
};
|
|
1047
|
+
workspaceId: {
|
|
1048
|
+
type: string;
|
|
1049
|
+
};
|
|
938
1050
|
templateMarkdown: {
|
|
939
1051
|
type: string;
|
|
940
1052
|
};
|
|
@@ -2360,6 +2472,10 @@ export declare const allTools: ({
|
|
|
2360
2472
|
type: string;
|
|
2361
2473
|
description: string;
|
|
2362
2474
|
};
|
|
2475
|
+
workspaceId: {
|
|
2476
|
+
type: string;
|
|
2477
|
+
description: string;
|
|
2478
|
+
};
|
|
2363
2479
|
};
|
|
2364
2480
|
required: string[];
|
|
2365
2481
|
additionalProperties: boolean;
|
|
@@ -2412,6 +2528,96 @@ export declare const allTools: ({
|
|
|
2412
2528
|
required: string[];
|
|
2413
2529
|
additionalProperties: boolean;
|
|
2414
2530
|
};
|
|
2531
|
+
} | {
|
|
2532
|
+
name: string;
|
|
2533
|
+
description: string;
|
|
2534
|
+
inputSchema: {
|
|
2535
|
+
type: string;
|
|
2536
|
+
properties: {
|
|
2537
|
+
markdown: {
|
|
2538
|
+
type: string;
|
|
2539
|
+
description: string;
|
|
2540
|
+
};
|
|
2541
|
+
senderId: {
|
|
2542
|
+
type: string;
|
|
2543
|
+
description: string;
|
|
2544
|
+
};
|
|
2545
|
+
keyword?: undefined;
|
|
2546
|
+
totalReturned?: undefined;
|
|
2547
|
+
postsYielded?: undefined;
|
|
2548
|
+
name?: undefined;
|
|
2549
|
+
linkedinUrl?: undefined;
|
|
2550
|
+
reason?: undefined;
|
|
2551
|
+
fromSenderId?: undefined;
|
|
2552
|
+
toSenderId?: undefined;
|
|
2553
|
+
};
|
|
2554
|
+
required: string[];
|
|
2555
|
+
additionalProperties: boolean;
|
|
2556
|
+
};
|
|
2557
|
+
} | {
|
|
2558
|
+
name: string;
|
|
2559
|
+
description: string;
|
|
2560
|
+
inputSchema: {
|
|
2561
|
+
type: string;
|
|
2562
|
+
properties: {
|
|
2563
|
+
keyword: {
|
|
2564
|
+
type: string;
|
|
2565
|
+
description: string;
|
|
2566
|
+
};
|
|
2567
|
+
totalReturned: {
|
|
2568
|
+
type: string;
|
|
2569
|
+
description: string;
|
|
2570
|
+
};
|
|
2571
|
+
postsYielded: {
|
|
2572
|
+
type: string;
|
|
2573
|
+
description: string;
|
|
2574
|
+
};
|
|
2575
|
+
senderId: {
|
|
2576
|
+
type: string;
|
|
2577
|
+
description: string;
|
|
2578
|
+
};
|
|
2579
|
+
markdown?: undefined;
|
|
2580
|
+
name?: undefined;
|
|
2581
|
+
linkedinUrl?: undefined;
|
|
2582
|
+
reason?: undefined;
|
|
2583
|
+
fromSenderId?: undefined;
|
|
2584
|
+
toSenderId?: undefined;
|
|
2585
|
+
};
|
|
2586
|
+
required: string[];
|
|
2587
|
+
additionalProperties: boolean;
|
|
2588
|
+
};
|
|
2589
|
+
} | {
|
|
2590
|
+
name: string;
|
|
2591
|
+
description: string;
|
|
2592
|
+
inputSchema: {
|
|
2593
|
+
type: string;
|
|
2594
|
+
properties: {
|
|
2595
|
+
name: {
|
|
2596
|
+
type: string;
|
|
2597
|
+
description: string;
|
|
2598
|
+
};
|
|
2599
|
+
linkedinUrl: {
|
|
2600
|
+
type: string;
|
|
2601
|
+
description: string;
|
|
2602
|
+
};
|
|
2603
|
+
reason: {
|
|
2604
|
+
type: string;
|
|
2605
|
+
description: string;
|
|
2606
|
+
};
|
|
2607
|
+
senderId: {
|
|
2608
|
+
type: string;
|
|
2609
|
+
description: string;
|
|
2610
|
+
};
|
|
2611
|
+
markdown?: undefined;
|
|
2612
|
+
keyword?: undefined;
|
|
2613
|
+
totalReturned?: undefined;
|
|
2614
|
+
postsYielded?: undefined;
|
|
2615
|
+
fromSenderId?: undefined;
|
|
2616
|
+
toSenderId?: undefined;
|
|
2617
|
+
};
|
|
2618
|
+
required: string[];
|
|
2619
|
+
additionalProperties: boolean;
|
|
2620
|
+
};
|
|
2415
2621
|
} | {
|
|
2416
2622
|
name: string;
|
|
2417
2623
|
description: string;
|
|
@@ -2438,6 +2644,29 @@ export declare const allTools: ({
|
|
|
2438
2644
|
required: string[];
|
|
2439
2645
|
additionalProperties: boolean;
|
|
2440
2646
|
};
|
|
2647
|
+
} | {
|
|
2648
|
+
name: string;
|
|
2649
|
+
description: string;
|
|
2650
|
+
inputSchema: {
|
|
2651
|
+
type: string;
|
|
2652
|
+
properties: {
|
|
2653
|
+
senderId: {
|
|
2654
|
+
type: string;
|
|
2655
|
+
description: string;
|
|
2656
|
+
};
|
|
2657
|
+
markdown?: undefined;
|
|
2658
|
+
keyword?: undefined;
|
|
2659
|
+
totalReturned?: undefined;
|
|
2660
|
+
postsYielded?: undefined;
|
|
2661
|
+
name?: undefined;
|
|
2662
|
+
linkedinUrl?: undefined;
|
|
2663
|
+
reason?: undefined;
|
|
2664
|
+
fromSenderId?: undefined;
|
|
2665
|
+
toSenderId?: undefined;
|
|
2666
|
+
};
|
|
2667
|
+
required: string[];
|
|
2668
|
+
additionalProperties: boolean;
|
|
2669
|
+
};
|
|
2441
2670
|
} | {
|
|
2442
2671
|
name: string;
|
|
2443
2672
|
description: string;
|
|
@@ -2902,8 +3131,6 @@ export declare const allTools: ({
|
|
|
2902
3131
|
keepInSync?: undefined;
|
|
2903
3132
|
jobId?: undefined;
|
|
2904
3133
|
reviewBatchLimit?: undefined;
|
|
2905
|
-
sourceRowIds?: undefined;
|
|
2906
|
-
sourceRowLimit?: undefined;
|
|
2907
3134
|
allowPartialSourceList?: undefined;
|
|
2908
3135
|
includeRawImportResult?: undefined;
|
|
2909
3136
|
selections?: undefined;
|
|
@@ -3098,8 +3325,6 @@ export declare const allTools: ({
|
|
|
3098
3325
|
keepInSync?: undefined;
|
|
3099
3326
|
jobId?: undefined;
|
|
3100
3327
|
reviewBatchLimit?: undefined;
|
|
3101
|
-
sourceRowIds?: undefined;
|
|
3102
|
-
sourceRowLimit?: undefined;
|
|
3103
3328
|
allowPartialSourceList?: undefined;
|
|
3104
3329
|
includeRawImportResult?: undefined;
|
|
3105
3330
|
selections?: undefined;
|
|
@@ -3193,8 +3418,6 @@ export declare const allTools: ({
|
|
|
3193
3418
|
keepInSync?: undefined;
|
|
3194
3419
|
jobId?: undefined;
|
|
3195
3420
|
reviewBatchLimit?: undefined;
|
|
3196
|
-
sourceRowIds?: undefined;
|
|
3197
|
-
sourceRowLimit?: undefined;
|
|
3198
3421
|
allowPartialSourceList?: undefined;
|
|
3199
3422
|
includeRawImportResult?: undefined;
|
|
3200
3423
|
selections?: undefined;
|
|
@@ -3360,8 +3583,6 @@ export declare const allTools: ({
|
|
|
3360
3583
|
keepInSync?: undefined;
|
|
3361
3584
|
jobId?: undefined;
|
|
3362
3585
|
reviewBatchLimit?: undefined;
|
|
3363
|
-
sourceRowIds?: undefined;
|
|
3364
|
-
sourceRowLimit?: undefined;
|
|
3365
3586
|
allowPartialSourceList?: undefined;
|
|
3366
3587
|
includeRawImportResult?: undefined;
|
|
3367
3588
|
selections?: undefined;
|
|
@@ -3469,8 +3690,6 @@ export declare const allTools: ({
|
|
|
3469
3690
|
keepInSync?: undefined;
|
|
3470
3691
|
jobId?: undefined;
|
|
3471
3692
|
reviewBatchLimit?: undefined;
|
|
3472
|
-
sourceRowIds?: undefined;
|
|
3473
|
-
sourceRowLimit?: undefined;
|
|
3474
3693
|
allowPartialSourceList?: undefined;
|
|
3475
3694
|
includeRawImportResult?: undefined;
|
|
3476
3695
|
selections?: undefined;
|
|
@@ -3587,8 +3806,6 @@ export declare const allTools: ({
|
|
|
3587
3806
|
keepInSync?: undefined;
|
|
3588
3807
|
jobId?: undefined;
|
|
3589
3808
|
reviewBatchLimit?: undefined;
|
|
3590
|
-
sourceRowIds?: undefined;
|
|
3591
|
-
sourceRowLimit?: undefined;
|
|
3592
3809
|
allowPartialSourceList?: undefined;
|
|
3593
3810
|
includeRawImportResult?: undefined;
|
|
3594
3811
|
selections?: undefined;
|
|
@@ -3694,8 +3911,6 @@ export declare const allTools: ({
|
|
|
3694
3911
|
keepInSync?: undefined;
|
|
3695
3912
|
jobId?: undefined;
|
|
3696
3913
|
reviewBatchLimit?: undefined;
|
|
3697
|
-
sourceRowIds?: undefined;
|
|
3698
|
-
sourceRowLimit?: undefined;
|
|
3699
3914
|
allowPartialSourceList?: undefined;
|
|
3700
3915
|
includeRawImportResult?: undefined;
|
|
3701
3916
|
selections?: undefined;
|
|
@@ -3806,8 +4021,6 @@ export declare const allTools: ({
|
|
|
3806
4021
|
keepInSync?: undefined;
|
|
3807
4022
|
jobId?: undefined;
|
|
3808
4023
|
reviewBatchLimit?: undefined;
|
|
3809
|
-
sourceRowIds?: undefined;
|
|
3810
|
-
sourceRowLimit?: undefined;
|
|
3811
4024
|
allowPartialSourceList?: undefined;
|
|
3812
4025
|
includeRawImportResult?: undefined;
|
|
3813
4026
|
selections?: undefined;
|
|
@@ -3906,8 +4119,6 @@ export declare const allTools: ({
|
|
|
3906
4119
|
keepInSync?: undefined;
|
|
3907
4120
|
jobId?: undefined;
|
|
3908
4121
|
reviewBatchLimit?: undefined;
|
|
3909
|
-
sourceRowIds?: undefined;
|
|
3910
|
-
sourceRowLimit?: undefined;
|
|
3911
4122
|
allowPartialSourceList?: undefined;
|
|
3912
4123
|
includeRawImportResult?: undefined;
|
|
3913
4124
|
selections?: undefined;
|
|
@@ -4798,8 +5009,6 @@ export declare const allTools: ({
|
|
|
4798
5009
|
keepInSync?: undefined;
|
|
4799
5010
|
jobId?: undefined;
|
|
4800
5011
|
reviewBatchLimit?: undefined;
|
|
4801
|
-
sourceRowIds?: undefined;
|
|
4802
|
-
sourceRowLimit?: undefined;
|
|
4803
5012
|
allowPartialSourceList?: undefined;
|
|
4804
5013
|
includeRawImportResult?: undefined;
|
|
4805
5014
|
selections?: undefined;
|
|
@@ -4907,8 +5116,6 @@ export declare const allTools: ({
|
|
|
4907
5116
|
keepInSync?: undefined;
|
|
4908
5117
|
jobId?: undefined;
|
|
4909
5118
|
reviewBatchLimit?: undefined;
|
|
4910
|
-
sourceRowIds?: undefined;
|
|
4911
|
-
sourceRowLimit?: undefined;
|
|
4912
5119
|
allowPartialSourceList?: undefined;
|
|
4913
5120
|
includeRawImportResult?: undefined;
|
|
4914
5121
|
selections?: undefined;
|
|
@@ -5954,8 +6161,6 @@ export declare const allTools: ({
|
|
|
5954
6161
|
keepInSync?: undefined;
|
|
5955
6162
|
jobId?: undefined;
|
|
5956
6163
|
reviewBatchLimit?: undefined;
|
|
5957
|
-
sourceRowIds?: undefined;
|
|
5958
|
-
sourceRowLimit?: undefined;
|
|
5959
6164
|
allowPartialSourceList?: undefined;
|
|
5960
6165
|
includeRawImportResult?: undefined;
|
|
5961
6166
|
selections?: undefined;
|
|
@@ -6110,8 +6315,6 @@ export declare const allTools: ({
|
|
|
6110
6315
|
keepInSync?: undefined;
|
|
6111
6316
|
jobId?: undefined;
|
|
6112
6317
|
reviewBatchLimit?: undefined;
|
|
6113
|
-
sourceRowIds?: undefined;
|
|
6114
|
-
sourceRowLimit?: undefined;
|
|
6115
6318
|
allowPartialSourceList?: undefined;
|
|
6116
6319
|
includeRawImportResult?: undefined;
|
|
6117
6320
|
selections?: undefined;
|
|
@@ -6253,8 +6456,6 @@ export declare const allTools: ({
|
|
|
6253
6456
|
keepInSync?: undefined;
|
|
6254
6457
|
jobId?: undefined;
|
|
6255
6458
|
reviewBatchLimit?: undefined;
|
|
6256
|
-
sourceRowIds?: undefined;
|
|
6257
|
-
sourceRowLimit?: undefined;
|
|
6258
6459
|
allowPartialSourceList?: undefined;
|
|
6259
6460
|
includeRawImportResult?: undefined;
|
|
6260
6461
|
selections?: undefined;
|
|
@@ -6351,8 +6552,6 @@ export declare const allTools: ({
|
|
|
6351
6552
|
keepInSync?: undefined;
|
|
6352
6553
|
jobId?: undefined;
|
|
6353
6554
|
reviewBatchLimit?: undefined;
|
|
6354
|
-
sourceRowIds?: undefined;
|
|
6355
|
-
sourceRowLimit?: undefined;
|
|
6356
6555
|
allowPartialSourceList?: undefined;
|
|
6357
6556
|
includeRawImportResult?: undefined;
|
|
6358
6557
|
selections?: undefined;
|
|
@@ -6399,17 +6598,6 @@ export declare const allTools: ({
|
|
|
6399
6598
|
type: string;
|
|
6400
6599
|
description: string;
|
|
6401
6600
|
};
|
|
6402
|
-
sourceRowIds: {
|
|
6403
|
-
type: string;
|
|
6404
|
-
items: {
|
|
6405
|
-
type: string;
|
|
6406
|
-
};
|
|
6407
|
-
description: string;
|
|
6408
|
-
};
|
|
6409
|
-
sourceRowLimit: {
|
|
6410
|
-
type: string;
|
|
6411
|
-
description: string;
|
|
6412
|
-
};
|
|
6413
6601
|
allowPartialSourceList: {
|
|
6414
6602
|
type: string;
|
|
6415
6603
|
description: string;
|
|
@@ -6619,8 +6807,6 @@ export declare const allTools: ({
|
|
|
6619
6807
|
keepInSync?: undefined;
|
|
6620
6808
|
jobId?: undefined;
|
|
6621
6809
|
reviewBatchLimit?: undefined;
|
|
6622
|
-
sourceRowIds?: undefined;
|
|
6623
|
-
sourceRowLimit?: undefined;
|
|
6624
6810
|
allowPartialSourceList?: undefined;
|
|
6625
6811
|
includeRawImportResult?: undefined;
|
|
6626
6812
|
};
|
|
@@ -6718,8 +6904,6 @@ export declare const allTools: ({
|
|
|
6718
6904
|
keepInSync?: undefined;
|
|
6719
6905
|
jobId?: undefined;
|
|
6720
6906
|
reviewBatchLimit?: undefined;
|
|
6721
|
-
sourceRowIds?: undefined;
|
|
6722
|
-
sourceRowLimit?: undefined;
|
|
6723
6907
|
allowPartialSourceList?: undefined;
|
|
6724
6908
|
includeRawImportResult?: undefined;
|
|
6725
6909
|
selections?: undefined;
|