@sellable/mcp 0.1.503 → 0.1.504
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 +0 -5
- package/dist/tools/campaign-fill-routing.js +3 -13
- package/dist/tools/campaign-message-preparation.d.ts +48 -7
- package/dist/tools/campaign-message-preparation.js +44 -21
- package/dist/tools/campaign-processing.d.ts +0 -19
- package/dist/tools/campaign-processing.js +8 -31
- package/dist/tools/campaign-refill-state.d.ts +0 -5
- package/dist/tools/campaign-refill-state.js +3 -13
- package/dist/tools/leads.d.ts +47 -6
- package/dist/tools/leads.js +30 -26
- package/dist/tools/prompts.js +1 -1
- package/dist/tools/readiness.d.ts +0 -6
- package/dist/tools/readiness.js +5 -12
- package/dist/tools/refill-sends.d.ts +32 -34
- package/dist/tools/refill-sends.js +608 -67
- package/dist/tools/refill-target-plan.d.ts +0 -5
- package/dist/tools/refill-target-plan.js +65 -32
- package/dist/tools/registry.d.ts +48 -205
- package/dist/tools/scheduler-fill-capacity.d.ts +0 -5
- package/dist/tools/scheduler-fill-capacity.js +3 -13
- package/dist/tools/sender-routing.d.ts +1 -8
- package/dist/tools/sender-routing.js +3 -12
- package/dist/tools/senders.d.ts +1 -14
- package/dist/tools/senders.js +5 -31
- package/package.json +1 -1
- package/skills/refill-sends/SKILL.md +28 -49
- package/skills/refill-sends-workflow/SKILL.md +10 -15
- package/dist/tools/workspace-context.d.ts +0 -36
- package/dist/tools/workspace-context.js +0 -39
|
@@ -12,7 +12,6 @@ type GetRefillTargetPlanInput = {
|
|
|
12
12
|
senders?: string[];
|
|
13
13
|
actionTypes?: string[];
|
|
14
14
|
approvalMode?: RefillTargetPlanApprovalMode;
|
|
15
|
-
workspaceId?: string;
|
|
16
15
|
};
|
|
17
16
|
export declare const refillTargetPlanToolDefinitions: {
|
|
18
17
|
name: string;
|
|
@@ -83,10 +82,6 @@ export declare const refillTargetPlanToolDefinitions: {
|
|
|
83
82
|
enum: string[];
|
|
84
83
|
description: string;
|
|
85
84
|
};
|
|
86
|
-
workspaceId: {
|
|
87
|
-
type: string;
|
|
88
|
-
description: string;
|
|
89
|
-
};
|
|
90
85
|
};
|
|
91
86
|
required: never[];
|
|
92
87
|
additionalProperties: boolean;
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import { getApi } from "../api.js";
|
|
2
|
-
import { normalizeExplicitWorkspaceId, workspaceRequestOptions, } from "./workspace-context.js";
|
|
3
2
|
const REFILL_TARGET_ACTION_TYPES = [
|
|
4
3
|
"send_invite",
|
|
5
4
|
"send_inmail_closed",
|
|
@@ -10,6 +9,13 @@ const SAFE_PACKET_ACTION_TYPES = new Set([
|
|
|
10
9
|
"approve_messages",
|
|
11
10
|
"start_paused_campaign",
|
|
12
11
|
"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",
|
|
13
19
|
"refresh_paid_inmail_credits",
|
|
14
20
|
"lower_paid_inmail_threshold",
|
|
15
21
|
"switch_to_connection_lane",
|
|
@@ -19,6 +25,14 @@ const MANUAL_ONLY_PACKET_ACTION_TYPES = new Set([
|
|
|
19
25
|
"lower_paid_inmail_threshold",
|
|
20
26
|
"switch_to_connection_lane",
|
|
21
27
|
"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",
|
|
22
36
|
]);
|
|
23
37
|
const SOURCE_PLAN_STATES = new Set([
|
|
24
38
|
"not_needed",
|
|
@@ -27,17 +41,16 @@ const SOURCE_PLAN_STATES = new Set([
|
|
|
27
41
|
"needs_signal_import",
|
|
28
42
|
"waiting_for_import",
|
|
29
43
|
"needs_confirm",
|
|
44
|
+
"needs_same_source_copy",
|
|
45
|
+
"needs_provider_continuation",
|
|
30
46
|
"source_shortfall",
|
|
31
47
|
"provider_exhausted",
|
|
32
48
|
"provider_missing",
|
|
33
49
|
"blocked",
|
|
34
50
|
]);
|
|
35
|
-
async function postRefillTargetPlan(body
|
|
51
|
+
async function postRefillTargetPlan(body) {
|
|
36
52
|
const api = getApi();
|
|
37
|
-
|
|
38
|
-
return requestOptions
|
|
39
|
-
? api.post("/api/v3/mcp/refill-target-plan", body, requestOptions)
|
|
40
|
-
: api.post("/api/v3/mcp/refill-target-plan", body);
|
|
53
|
+
return api.post("/api/v3/mcp/refill-target-plan", body);
|
|
41
54
|
}
|
|
42
55
|
function isRecord(value) {
|
|
43
56
|
return Boolean(value && typeof value === "object" && !Array.isArray(value));
|
|
@@ -156,6 +169,16 @@ function sanitizeActionCandidate(candidate) {
|
|
|
156
169
|
tableId: stringValue(candidate.tableId),
|
|
157
170
|
tableName: stringValue(candidate.tableName) ?? null,
|
|
158
171
|
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,
|
|
159
182
|
targetRows: typeof candidate.targetRows === "number" ? candidate.targetRows : undefined,
|
|
160
183
|
columnRole: stringValue(candidate.columnRole),
|
|
161
184
|
rowSelector: sanitizeRowSelector(candidate.rowSelector),
|
|
@@ -190,9 +213,25 @@ function sanitizeToolInput(value) {
|
|
|
190
213
|
return {};
|
|
191
214
|
return {
|
|
192
215
|
senderId: stringValue(value.senderId),
|
|
216
|
+
actionType: allowedActionType(value.actionType),
|
|
193
217
|
campaignId: stringValue(value.campaignId),
|
|
194
218
|
tableId: stringValue(value.tableId),
|
|
195
219
|
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,
|
|
196
235
|
targetPreparedMessages: typeof value.targetPreparedMessages === "number"
|
|
197
236
|
? value.targetPreparedMessages
|
|
198
237
|
: undefined,
|
|
@@ -219,6 +258,10 @@ function sanitizePacketIds(value) {
|
|
|
219
258
|
campaignId: stringValue(value.campaignId),
|
|
220
259
|
tableId: stringValue(value.tableId),
|
|
221
260
|
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,
|
|
222
265
|
};
|
|
223
266
|
}
|
|
224
267
|
function sanitizeStructuredAction(action, selectedBySender, mode, rank) {
|
|
@@ -241,6 +284,7 @@ function sanitizeStructuredAction(action, selectedBySender, mode, rank) {
|
|
|
241
284
|
return {
|
|
242
285
|
rank,
|
|
243
286
|
type: action.type,
|
|
287
|
+
actionType: allowedActionType(action.actionType),
|
|
244
288
|
toolName: stringValue(action.toolName) ?? null,
|
|
245
289
|
sideEffectClass: stringValue(action.sideEffectClass),
|
|
246
290
|
ids,
|
|
@@ -338,6 +382,9 @@ function sanitizeSourcePlan(value) {
|
|
|
338
382
|
reason: stringValue(value.reason),
|
|
339
383
|
campaignId: stringValue(value.campaignId),
|
|
340
384
|
tableId: stringValue(value.tableId),
|
|
385
|
+
sourceLeadListId: stringValue(value.sourceLeadListId) ?? null,
|
|
386
|
+
leadSourceProvider: stringValue(value.leadSourceProvider) ?? null,
|
|
387
|
+
sourceFingerprint: stringValue(value.sourceFingerprint) ?? null,
|
|
341
388
|
remainingRowsNeeded: typeof value.remainingRowsNeeded === "number"
|
|
342
389
|
? value.remainingRowsNeeded
|
|
343
390
|
: undefined,
|
|
@@ -586,14 +633,16 @@ function sanitizeRefillTargetPlanResult(result) {
|
|
|
586
633
|
const eligibleSenderLedger = sanitizeEligibleSenderLedger(target.eligibleSenderLedger, selectedBySender);
|
|
587
634
|
const senderRefillPlans = sanitizeStructuredSenderPlans(target.senderRefillPlans, selectedBySender);
|
|
588
635
|
const globalActionQueue = buildSanitizedGlobalActionQueue(senderRefillPlans);
|
|
589
|
-
const
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
636
|
+
const hasTerminalNoActionBlocker = globalActionQueue.length === 0 &&
|
|
637
|
+
blockers.some((blocker) => TERMINAL_NO_ACTION_BLOCKER_CODES.has(String(blocker.code)));
|
|
638
|
+
const status = remainingProjectedGap === 0
|
|
639
|
+
? "complete"
|
|
640
|
+
: grossTarget <= 0
|
|
641
|
+
? "blocked"
|
|
642
|
+
: remainingReadyOrProjectedGap === 0
|
|
643
|
+
? "awaiting_scheduler_after_ready_buffer"
|
|
644
|
+
: hasTerminalNoActionBlocker
|
|
645
|
+
? "blocked"
|
|
597
646
|
: "needs_refill";
|
|
598
647
|
return {
|
|
599
648
|
...result,
|
|
@@ -696,10 +745,6 @@ export const refillTargetPlanToolDefinitions = [
|
|
|
696
745
|
enum: ["approve", "mark_ready"],
|
|
697
746
|
description: 'Requested downstream approval mode. Use "approve" only for explicit fill/schedule requests.',
|
|
698
747
|
},
|
|
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
|
-
},
|
|
703
748
|
},
|
|
704
749
|
required: [],
|
|
705
750
|
additionalProperties: false,
|
|
@@ -707,7 +752,6 @@ export const refillTargetPlanToolDefinitions = [
|
|
|
707
752
|
},
|
|
708
753
|
];
|
|
709
754
|
export async function getRefillTargetPlan(input = {}) {
|
|
710
|
-
const workspaceId = normalizeExplicitWorkspaceId(input.workspaceId);
|
|
711
755
|
const result = await postRefillTargetPlan({
|
|
712
756
|
intent: input.intent,
|
|
713
757
|
horizonSendDays: input.horizonSendDays,
|
|
@@ -720,17 +764,6 @@ export async function getRefillTargetPlan(input = {}) {
|
|
|
720
764
|
senders: input.senders,
|
|
721
765
|
actionTypes: input.actionTypes,
|
|
722
766
|
approvalMode: input.approvalMode,
|
|
723
|
-
|
|
724
|
-
|
|
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
|
-
};
|
|
767
|
+
});
|
|
768
|
+
return sanitizeRefillTargetPlanResult(result);
|
|
736
769
|
}
|
package/dist/tools/registry.d.ts
CHANGED
|
@@ -499,10 +499,6 @@ export declare const allTools: ({
|
|
|
499
499
|
maximum: number;
|
|
500
500
|
description: string;
|
|
501
501
|
};
|
|
502
|
-
workspaceId: {
|
|
503
|
-
type: string;
|
|
504
|
-
description: string;
|
|
505
|
-
};
|
|
506
502
|
};
|
|
507
503
|
required: string[];
|
|
508
504
|
additionalProperties: boolean;
|
|
@@ -584,63 +580,6 @@ export declare const allTools: ({
|
|
|
584
580
|
required: string[];
|
|
585
581
|
additionalProperties: boolean;
|
|
586
582
|
};
|
|
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
|
-
workspaceId: {
|
|
636
|
-
type: string;
|
|
637
|
-
description: string;
|
|
638
|
-
};
|
|
639
|
-
jobId?: undefined;
|
|
640
|
-
};
|
|
641
|
-
required: string[];
|
|
642
|
-
additionalProperties: boolean;
|
|
643
|
-
};
|
|
644
583
|
} | {
|
|
645
584
|
name: string;
|
|
646
585
|
description: string;
|
|
@@ -657,16 +596,15 @@ export declare const allTools: ({
|
|
|
657
596
|
tableId: {
|
|
658
597
|
type: string;
|
|
659
598
|
};
|
|
660
|
-
workspaceId: {
|
|
661
|
-
type: string;
|
|
662
|
-
description?: undefined;
|
|
663
|
-
};
|
|
664
599
|
targetPreparedMessages?: undefined;
|
|
665
600
|
maxRowsToCheck?: undefined;
|
|
666
601
|
batchSize?: undefined;
|
|
667
602
|
maxBatchRows?: undefined;
|
|
668
603
|
approvalMode?: undefined;
|
|
604
|
+
rowSelector?: undefined;
|
|
669
605
|
autoContinue?: undefined;
|
|
606
|
+
senderId?: undefined;
|
|
607
|
+
actionType?: undefined;
|
|
670
608
|
disableLowPassRateStop?: undefined;
|
|
671
609
|
};
|
|
672
610
|
additionalProperties: boolean;
|
|
@@ -717,10 +655,6 @@ export declare const allTools: ({
|
|
|
717
655
|
enum: string[];
|
|
718
656
|
description: string;
|
|
719
657
|
};
|
|
720
|
-
workspaceId: {
|
|
721
|
-
type: string;
|
|
722
|
-
description: string;
|
|
723
|
-
};
|
|
724
658
|
};
|
|
725
659
|
required: string[];
|
|
726
660
|
additionalProperties: boolean;
|
|
@@ -754,7 +688,6 @@ export declare const allTools: ({
|
|
|
754
688
|
};
|
|
755
689
|
leadListId?: undefined;
|
|
756
690
|
campaignOfferId?: undefined;
|
|
757
|
-
workspaceId?: undefined;
|
|
758
691
|
provider?: undefined;
|
|
759
692
|
jobId?: undefined;
|
|
760
693
|
targetLeadCount?: undefined;
|
|
@@ -775,9 +708,6 @@ export declare const allTools: ({
|
|
|
775
708
|
tableId: {
|
|
776
709
|
type: string;
|
|
777
710
|
};
|
|
778
|
-
workspaceId: {
|
|
779
|
-
type: string;
|
|
780
|
-
};
|
|
781
711
|
columnRole?: undefined;
|
|
782
712
|
rowSelector?: undefined;
|
|
783
713
|
limit?: undefined;
|
|
@@ -808,9 +738,6 @@ export declare const allTools: ({
|
|
|
808
738
|
tableId: {
|
|
809
739
|
type: string;
|
|
810
740
|
};
|
|
811
|
-
workspaceId: {
|
|
812
|
-
type: string;
|
|
813
|
-
};
|
|
814
741
|
columnRole: {
|
|
815
742
|
type: string;
|
|
816
743
|
enum: string[];
|
|
@@ -868,9 +795,6 @@ export declare const allTools: ({
|
|
|
868
795
|
tableId: {
|
|
869
796
|
type: string;
|
|
870
797
|
};
|
|
871
|
-
workspaceId: {
|
|
872
|
-
type: string;
|
|
873
|
-
};
|
|
874
798
|
columnRole: {
|
|
875
799
|
type: string;
|
|
876
800
|
enum: string[];
|
|
@@ -932,9 +856,6 @@ export declare const allTools: ({
|
|
|
932
856
|
tableId: {
|
|
933
857
|
type: string;
|
|
934
858
|
};
|
|
935
|
-
workspaceId: {
|
|
936
|
-
type: string;
|
|
937
|
-
};
|
|
938
859
|
minPassedCount: {
|
|
939
860
|
type: string;
|
|
940
861
|
};
|
|
@@ -973,9 +894,6 @@ export declare const allTools: ({
|
|
|
973
894
|
tableId: {
|
|
974
895
|
type: string;
|
|
975
896
|
};
|
|
976
|
-
workspaceId: {
|
|
977
|
-
type: string;
|
|
978
|
-
};
|
|
979
897
|
rowIds: {
|
|
980
898
|
type: string;
|
|
981
899
|
items: {
|
|
@@ -1017,9 +935,6 @@ export declare const allTools: ({
|
|
|
1017
935
|
tableId: {
|
|
1018
936
|
type: string;
|
|
1019
937
|
};
|
|
1020
|
-
workspaceId: {
|
|
1021
|
-
type: string;
|
|
1022
|
-
};
|
|
1023
938
|
templateMarkdown: {
|
|
1024
939
|
type: string;
|
|
1025
940
|
};
|
|
@@ -2445,10 +2360,6 @@ export declare const allTools: ({
|
|
|
2445
2360
|
type: string;
|
|
2446
2361
|
description: string;
|
|
2447
2362
|
};
|
|
2448
|
-
workspaceId: {
|
|
2449
|
-
type: string;
|
|
2450
|
-
description: string;
|
|
2451
|
-
};
|
|
2452
2363
|
};
|
|
2453
2364
|
required: string[];
|
|
2454
2365
|
additionalProperties: boolean;
|
|
@@ -2501,96 +2412,6 @@ export declare const allTools: ({
|
|
|
2501
2412
|
required: string[];
|
|
2502
2413
|
additionalProperties: boolean;
|
|
2503
2414
|
};
|
|
2504
|
-
} | {
|
|
2505
|
-
name: string;
|
|
2506
|
-
description: string;
|
|
2507
|
-
inputSchema: {
|
|
2508
|
-
type: string;
|
|
2509
|
-
properties: {
|
|
2510
|
-
markdown: {
|
|
2511
|
-
type: string;
|
|
2512
|
-
description: string;
|
|
2513
|
-
};
|
|
2514
|
-
senderId: {
|
|
2515
|
-
type: string;
|
|
2516
|
-
description: string;
|
|
2517
|
-
};
|
|
2518
|
-
keyword?: undefined;
|
|
2519
|
-
totalReturned?: undefined;
|
|
2520
|
-
postsYielded?: undefined;
|
|
2521
|
-
name?: undefined;
|
|
2522
|
-
linkedinUrl?: undefined;
|
|
2523
|
-
reason?: undefined;
|
|
2524
|
-
fromSenderId?: undefined;
|
|
2525
|
-
toSenderId?: undefined;
|
|
2526
|
-
};
|
|
2527
|
-
required: string[];
|
|
2528
|
-
additionalProperties: boolean;
|
|
2529
|
-
};
|
|
2530
|
-
} | {
|
|
2531
|
-
name: string;
|
|
2532
|
-
description: string;
|
|
2533
|
-
inputSchema: {
|
|
2534
|
-
type: string;
|
|
2535
|
-
properties: {
|
|
2536
|
-
keyword: {
|
|
2537
|
-
type: string;
|
|
2538
|
-
description: string;
|
|
2539
|
-
};
|
|
2540
|
-
totalReturned: {
|
|
2541
|
-
type: string;
|
|
2542
|
-
description: string;
|
|
2543
|
-
};
|
|
2544
|
-
postsYielded: {
|
|
2545
|
-
type: string;
|
|
2546
|
-
description: string;
|
|
2547
|
-
};
|
|
2548
|
-
senderId: {
|
|
2549
|
-
type: string;
|
|
2550
|
-
description: string;
|
|
2551
|
-
};
|
|
2552
|
-
markdown?: undefined;
|
|
2553
|
-
name?: undefined;
|
|
2554
|
-
linkedinUrl?: undefined;
|
|
2555
|
-
reason?: undefined;
|
|
2556
|
-
fromSenderId?: undefined;
|
|
2557
|
-
toSenderId?: undefined;
|
|
2558
|
-
};
|
|
2559
|
-
required: string[];
|
|
2560
|
-
additionalProperties: boolean;
|
|
2561
|
-
};
|
|
2562
|
-
} | {
|
|
2563
|
-
name: string;
|
|
2564
|
-
description: string;
|
|
2565
|
-
inputSchema: {
|
|
2566
|
-
type: string;
|
|
2567
|
-
properties: {
|
|
2568
|
-
name: {
|
|
2569
|
-
type: string;
|
|
2570
|
-
description: string;
|
|
2571
|
-
};
|
|
2572
|
-
linkedinUrl: {
|
|
2573
|
-
type: string;
|
|
2574
|
-
description: string;
|
|
2575
|
-
};
|
|
2576
|
-
reason: {
|
|
2577
|
-
type: string;
|
|
2578
|
-
description: string;
|
|
2579
|
-
};
|
|
2580
|
-
senderId: {
|
|
2581
|
-
type: string;
|
|
2582
|
-
description: string;
|
|
2583
|
-
};
|
|
2584
|
-
markdown?: undefined;
|
|
2585
|
-
keyword?: undefined;
|
|
2586
|
-
totalReturned?: undefined;
|
|
2587
|
-
postsYielded?: undefined;
|
|
2588
|
-
fromSenderId?: undefined;
|
|
2589
|
-
toSenderId?: undefined;
|
|
2590
|
-
};
|
|
2591
|
-
required: string[];
|
|
2592
|
-
additionalProperties: boolean;
|
|
2593
|
-
};
|
|
2594
2415
|
} | {
|
|
2595
2416
|
name: string;
|
|
2596
2417
|
description: string;
|
|
@@ -2617,29 +2438,6 @@ export declare const allTools: ({
|
|
|
2617
2438
|
required: string[];
|
|
2618
2439
|
additionalProperties: boolean;
|
|
2619
2440
|
};
|
|
2620
|
-
} | {
|
|
2621
|
-
name: string;
|
|
2622
|
-
description: string;
|
|
2623
|
-
inputSchema: {
|
|
2624
|
-
type: string;
|
|
2625
|
-
properties: {
|
|
2626
|
-
senderId: {
|
|
2627
|
-
type: string;
|
|
2628
|
-
description: string;
|
|
2629
|
-
};
|
|
2630
|
-
markdown?: undefined;
|
|
2631
|
-
keyword?: undefined;
|
|
2632
|
-
totalReturned?: undefined;
|
|
2633
|
-
postsYielded?: undefined;
|
|
2634
|
-
name?: undefined;
|
|
2635
|
-
linkedinUrl?: undefined;
|
|
2636
|
-
reason?: undefined;
|
|
2637
|
-
fromSenderId?: undefined;
|
|
2638
|
-
toSenderId?: undefined;
|
|
2639
|
-
};
|
|
2640
|
-
required: string[];
|
|
2641
|
-
additionalProperties: boolean;
|
|
2642
|
-
};
|
|
2643
2441
|
} | {
|
|
2644
2442
|
name: string;
|
|
2645
2443
|
description: string;
|
|
@@ -3104,6 +2902,8 @@ export declare const allTools: ({
|
|
|
3104
2902
|
keepInSync?: undefined;
|
|
3105
2903
|
jobId?: undefined;
|
|
3106
2904
|
reviewBatchLimit?: undefined;
|
|
2905
|
+
sourceRowIds?: undefined;
|
|
2906
|
+
sourceRowLimit?: undefined;
|
|
3107
2907
|
allowPartialSourceList?: undefined;
|
|
3108
2908
|
includeRawImportResult?: undefined;
|
|
3109
2909
|
selections?: undefined;
|
|
@@ -3298,6 +3098,8 @@ export declare const allTools: ({
|
|
|
3298
3098
|
keepInSync?: undefined;
|
|
3299
3099
|
jobId?: undefined;
|
|
3300
3100
|
reviewBatchLimit?: undefined;
|
|
3101
|
+
sourceRowIds?: undefined;
|
|
3102
|
+
sourceRowLimit?: undefined;
|
|
3301
3103
|
allowPartialSourceList?: undefined;
|
|
3302
3104
|
includeRawImportResult?: undefined;
|
|
3303
3105
|
selections?: undefined;
|
|
@@ -3391,6 +3193,8 @@ export declare const allTools: ({
|
|
|
3391
3193
|
keepInSync?: undefined;
|
|
3392
3194
|
jobId?: undefined;
|
|
3393
3195
|
reviewBatchLimit?: undefined;
|
|
3196
|
+
sourceRowIds?: undefined;
|
|
3197
|
+
sourceRowLimit?: undefined;
|
|
3394
3198
|
allowPartialSourceList?: undefined;
|
|
3395
3199
|
includeRawImportResult?: undefined;
|
|
3396
3200
|
selections?: undefined;
|
|
@@ -3556,6 +3360,8 @@ export declare const allTools: ({
|
|
|
3556
3360
|
keepInSync?: undefined;
|
|
3557
3361
|
jobId?: undefined;
|
|
3558
3362
|
reviewBatchLimit?: undefined;
|
|
3363
|
+
sourceRowIds?: undefined;
|
|
3364
|
+
sourceRowLimit?: undefined;
|
|
3559
3365
|
allowPartialSourceList?: undefined;
|
|
3560
3366
|
includeRawImportResult?: undefined;
|
|
3561
3367
|
selections?: undefined;
|
|
@@ -3663,6 +3469,8 @@ export declare const allTools: ({
|
|
|
3663
3469
|
keepInSync?: undefined;
|
|
3664
3470
|
jobId?: undefined;
|
|
3665
3471
|
reviewBatchLimit?: undefined;
|
|
3472
|
+
sourceRowIds?: undefined;
|
|
3473
|
+
sourceRowLimit?: undefined;
|
|
3666
3474
|
allowPartialSourceList?: undefined;
|
|
3667
3475
|
includeRawImportResult?: undefined;
|
|
3668
3476
|
selections?: undefined;
|
|
@@ -3779,6 +3587,8 @@ export declare const allTools: ({
|
|
|
3779
3587
|
keepInSync?: undefined;
|
|
3780
3588
|
jobId?: undefined;
|
|
3781
3589
|
reviewBatchLimit?: undefined;
|
|
3590
|
+
sourceRowIds?: undefined;
|
|
3591
|
+
sourceRowLimit?: undefined;
|
|
3782
3592
|
allowPartialSourceList?: undefined;
|
|
3783
3593
|
includeRawImportResult?: undefined;
|
|
3784
3594
|
selections?: undefined;
|
|
@@ -3884,6 +3694,8 @@ export declare const allTools: ({
|
|
|
3884
3694
|
keepInSync?: undefined;
|
|
3885
3695
|
jobId?: undefined;
|
|
3886
3696
|
reviewBatchLimit?: undefined;
|
|
3697
|
+
sourceRowIds?: undefined;
|
|
3698
|
+
sourceRowLimit?: undefined;
|
|
3887
3699
|
allowPartialSourceList?: undefined;
|
|
3888
3700
|
includeRawImportResult?: undefined;
|
|
3889
3701
|
selections?: undefined;
|
|
@@ -3994,6 +3806,8 @@ export declare const allTools: ({
|
|
|
3994
3806
|
keepInSync?: undefined;
|
|
3995
3807
|
jobId?: undefined;
|
|
3996
3808
|
reviewBatchLimit?: undefined;
|
|
3809
|
+
sourceRowIds?: undefined;
|
|
3810
|
+
sourceRowLimit?: undefined;
|
|
3997
3811
|
allowPartialSourceList?: undefined;
|
|
3998
3812
|
includeRawImportResult?: undefined;
|
|
3999
3813
|
selections?: undefined;
|
|
@@ -4092,6 +3906,8 @@ export declare const allTools: ({
|
|
|
4092
3906
|
keepInSync?: undefined;
|
|
4093
3907
|
jobId?: undefined;
|
|
4094
3908
|
reviewBatchLimit?: undefined;
|
|
3909
|
+
sourceRowIds?: undefined;
|
|
3910
|
+
sourceRowLimit?: undefined;
|
|
4095
3911
|
allowPartialSourceList?: undefined;
|
|
4096
3912
|
includeRawImportResult?: undefined;
|
|
4097
3913
|
selections?: undefined;
|
|
@@ -4982,6 +4798,8 @@ export declare const allTools: ({
|
|
|
4982
4798
|
keepInSync?: undefined;
|
|
4983
4799
|
jobId?: undefined;
|
|
4984
4800
|
reviewBatchLimit?: undefined;
|
|
4801
|
+
sourceRowIds?: undefined;
|
|
4802
|
+
sourceRowLimit?: undefined;
|
|
4985
4803
|
allowPartialSourceList?: undefined;
|
|
4986
4804
|
includeRawImportResult?: undefined;
|
|
4987
4805
|
selections?: undefined;
|
|
@@ -5089,6 +4907,8 @@ export declare const allTools: ({
|
|
|
5089
4907
|
keepInSync?: undefined;
|
|
5090
4908
|
jobId?: undefined;
|
|
5091
4909
|
reviewBatchLimit?: undefined;
|
|
4910
|
+
sourceRowIds?: undefined;
|
|
4911
|
+
sourceRowLimit?: undefined;
|
|
5092
4912
|
allowPartialSourceList?: undefined;
|
|
5093
4913
|
includeRawImportResult?: undefined;
|
|
5094
4914
|
selections?: undefined;
|
|
@@ -6134,6 +5954,8 @@ export declare const allTools: ({
|
|
|
6134
5954
|
keepInSync?: undefined;
|
|
6135
5955
|
jobId?: undefined;
|
|
6136
5956
|
reviewBatchLimit?: undefined;
|
|
5957
|
+
sourceRowIds?: undefined;
|
|
5958
|
+
sourceRowLimit?: undefined;
|
|
6137
5959
|
allowPartialSourceList?: undefined;
|
|
6138
5960
|
includeRawImportResult?: undefined;
|
|
6139
5961
|
selections?: undefined;
|
|
@@ -6288,6 +6110,8 @@ export declare const allTools: ({
|
|
|
6288
6110
|
keepInSync?: undefined;
|
|
6289
6111
|
jobId?: undefined;
|
|
6290
6112
|
reviewBatchLimit?: undefined;
|
|
6113
|
+
sourceRowIds?: undefined;
|
|
6114
|
+
sourceRowLimit?: undefined;
|
|
6291
6115
|
allowPartialSourceList?: undefined;
|
|
6292
6116
|
includeRawImportResult?: undefined;
|
|
6293
6117
|
selections?: undefined;
|
|
@@ -6429,6 +6253,8 @@ export declare const allTools: ({
|
|
|
6429
6253
|
keepInSync?: undefined;
|
|
6430
6254
|
jobId?: undefined;
|
|
6431
6255
|
reviewBatchLimit?: undefined;
|
|
6256
|
+
sourceRowIds?: undefined;
|
|
6257
|
+
sourceRowLimit?: undefined;
|
|
6432
6258
|
allowPartialSourceList?: undefined;
|
|
6433
6259
|
includeRawImportResult?: undefined;
|
|
6434
6260
|
selections?: undefined;
|
|
@@ -6525,6 +6351,8 @@ export declare const allTools: ({
|
|
|
6525
6351
|
keepInSync?: undefined;
|
|
6526
6352
|
jobId?: undefined;
|
|
6527
6353
|
reviewBatchLimit?: undefined;
|
|
6354
|
+
sourceRowIds?: undefined;
|
|
6355
|
+
sourceRowLimit?: undefined;
|
|
6528
6356
|
allowPartialSourceList?: undefined;
|
|
6529
6357
|
includeRawImportResult?: undefined;
|
|
6530
6358
|
selections?: undefined;
|
|
@@ -6571,6 +6399,17 @@ export declare const allTools: ({
|
|
|
6571
6399
|
type: string;
|
|
6572
6400
|
description: string;
|
|
6573
6401
|
};
|
|
6402
|
+
sourceRowIds: {
|
|
6403
|
+
type: string;
|
|
6404
|
+
items: {
|
|
6405
|
+
type: string;
|
|
6406
|
+
};
|
|
6407
|
+
description: string;
|
|
6408
|
+
};
|
|
6409
|
+
sourceRowLimit: {
|
|
6410
|
+
type: string;
|
|
6411
|
+
description: string;
|
|
6412
|
+
};
|
|
6574
6413
|
allowPartialSourceList: {
|
|
6575
6414
|
type: string;
|
|
6576
6415
|
description: string;
|
|
@@ -6780,6 +6619,8 @@ export declare const allTools: ({
|
|
|
6780
6619
|
keepInSync?: undefined;
|
|
6781
6620
|
jobId?: undefined;
|
|
6782
6621
|
reviewBatchLimit?: undefined;
|
|
6622
|
+
sourceRowIds?: undefined;
|
|
6623
|
+
sourceRowLimit?: undefined;
|
|
6783
6624
|
allowPartialSourceList?: undefined;
|
|
6784
6625
|
includeRawImportResult?: undefined;
|
|
6785
6626
|
};
|
|
@@ -6877,6 +6718,8 @@ export declare const allTools: ({
|
|
|
6877
6718
|
keepInSync?: undefined;
|
|
6878
6719
|
jobId?: undefined;
|
|
6879
6720
|
reviewBatchLimit?: undefined;
|
|
6721
|
+
sourceRowIds?: undefined;
|
|
6722
|
+
sourceRowLimit?: undefined;
|
|
6880
6723
|
allowPartialSourceList?: undefined;
|
|
6881
6724
|
includeRawImportResult?: undefined;
|
|
6882
6725
|
selections?: undefined;
|
|
@@ -10,7 +10,6 @@ type GetSchedulerFillCapacityInput = {
|
|
|
10
10
|
capacityRequests: SchedulerFillCapacityRequest[];
|
|
11
11
|
targetDate?: string;
|
|
12
12
|
mode?: SchedulerFillCapacityMode;
|
|
13
|
-
workspaceId?: string;
|
|
14
13
|
};
|
|
15
14
|
export declare const schedulerFillCapacityToolDefinitions: {
|
|
16
15
|
name: string;
|
|
@@ -57,10 +56,6 @@ export declare const schedulerFillCapacityToolDefinitions: {
|
|
|
57
56
|
enum: string[];
|
|
58
57
|
description: string;
|
|
59
58
|
};
|
|
60
|
-
workspaceId: {
|
|
61
|
-
type: string;
|
|
62
|
-
description: string;
|
|
63
|
-
};
|
|
64
59
|
};
|
|
65
60
|
required: string[];
|
|
66
61
|
additionalProperties: boolean;
|