@sellable/mcp 0.1.549 → 0.1.550
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.js +6 -3
- package/dist/auth.d.ts +6 -0
- package/dist/auth.js +44 -2
- package/dist/index-dev.js +0 -0
- package/dist/index.js +0 -0
- package/dist/refill-date-window.d.ts +34 -0
- package/dist/refill-date-window.js +210 -0
- package/dist/server.js +1 -1
- package/dist/tools/auth.d.ts +5 -0
- package/dist/tools/auth.js +49 -12
- package/dist/tools/campaigns.d.ts +8 -57
- package/dist/tools/campaigns.js +5 -30
- package/dist/tools/csv-dnc.js +2 -2
- package/dist/tools/leads.d.ts +0 -22
- package/dist/tools/leads.js +1 -6
- package/dist/tools/refill-sends-evergreen.d.ts +28 -0
- package/dist/tools/refill-sends-evergreen.js +47 -0
- package/dist/tools/registry.d.ts +9 -88
- package/dist/tools/sequencer.d.ts +3 -16
- package/dist/tools/sequencer.js +36 -72
- package/dist/tools/setup-evergreen-campaigns.d.ts +0 -21
- package/dist/tools/setup-evergreen-campaigns.js +3 -22
- package/dist/tools/workspace-context.d.ts +1 -1
- package/dist/tools/workspace-context.js +8 -3
- package/dist/tools/workspace-export.js +2 -2
- package/dist/tools/workspaces.d.ts +48 -2
- package/dist/tools/workspaces.js +48 -5
- package/package.json +1 -1
- package/skills/create-campaign-v2/references/tier-routing-matrix.md +0 -5
- package/skills/create-evergreen-campaigns/SKILL.md +8 -57
- package/skills/refill-sends/SKILL.md +0 -5
- package/skills/refill-sends-v2/SKILL.md +0 -5
- package/skills/refill-sends-v2-workflow/SKILL.md +0 -7
- package/skills/refill-sends-v2-workflow/core/flow.v1.json +0 -1
package/dist/tools/campaigns.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { getApi } from "../api.js";
|
|
2
|
-
import { getConfig } from "../auth.js";
|
|
2
|
+
import { getConfig, getEffectiveConfiguredWorkspaceId } from "../auth.js";
|
|
3
3
|
import { assertCreateCampaignPromptLoaded, assertNetNewCreateCampaignResearchReady, } from "./flow-preflight.js";
|
|
4
4
|
import { setCampaignInteractionMode, } from "./interaction-mode.js";
|
|
5
5
|
import { isLinkedInProfileInput, normalizeLinkedInProfileInput, } from "./linkedin-url.js";
|
|
@@ -114,7 +114,7 @@ function normalizeLeadSourceProvider(input) {
|
|
|
114
114
|
: null;
|
|
115
115
|
}
|
|
116
116
|
export function buildWatchUrl(config, path) {
|
|
117
|
-
const workspaceId = config
|
|
117
|
+
const workspaceId = getEffectiveConfiguredWorkspaceId(config);
|
|
118
118
|
const url = new URL(path, config.apiUrl);
|
|
119
119
|
if (workspaceId && !url.searchParams.has("workspaceId")) {
|
|
120
120
|
url.searchParams.set("workspaceId", workspaceId);
|
|
@@ -206,7 +206,7 @@ export const campaignToolDefinitions = [
|
|
|
206
206
|
},
|
|
207
207
|
{
|
|
208
208
|
name: "duplicate_campaign",
|
|
209
|
-
description: "Duplicate a campaign by calling Sellable's existing duplicate endpoint.
|
|
209
|
+
description: "Duplicate a campaign by calling Sellable's existing duplicate endpoint. Returns campaignOfferId, campaignName, and workflowTableId for the new copy.",
|
|
210
210
|
inputSchema: {
|
|
211
211
|
type: "object",
|
|
212
212
|
properties: {
|
|
@@ -214,11 +214,6 @@ export const campaignToolDefinitions = [
|
|
|
214
214
|
type: "string",
|
|
215
215
|
description: "Source campaign ID to duplicate.",
|
|
216
216
|
},
|
|
217
|
-
name: {
|
|
218
|
-
type: "string",
|
|
219
|
-
maxLength: 200,
|
|
220
|
-
description: "Optional exact name for the duplicated campaign and workflow table.",
|
|
221
|
-
},
|
|
222
217
|
},
|
|
223
218
|
required: ["campaignId"],
|
|
224
219
|
additionalProperties: false,
|
|
@@ -400,11 +395,6 @@ export const campaignToolDefinitions = [
|
|
|
400
395
|
type: "string",
|
|
401
396
|
description: "Campaign ID to update",
|
|
402
397
|
},
|
|
403
|
-
name: {
|
|
404
|
-
type: "string",
|
|
405
|
-
maxLength: 200,
|
|
406
|
-
description: "Optional campaign name.",
|
|
407
|
-
},
|
|
408
398
|
offerPositioning: {
|
|
409
399
|
type: "object",
|
|
410
400
|
description: "Updated offer positioning JSON",
|
|
@@ -1052,24 +1042,9 @@ export async function archiveCampaign(campaignId) {
|
|
|
1052
1042
|
const api = getApi();
|
|
1053
1043
|
return api.post(`/api/v3/campaigns/${campaignId}/archive`);
|
|
1054
1044
|
}
|
|
1055
|
-
export async function duplicateCampaign(campaignId
|
|
1045
|
+
export async function duplicateCampaign(campaignId) {
|
|
1056
1046
|
const api = getApi();
|
|
1057
|
-
|
|
1058
|
-
const duplicated = normalizedName
|
|
1059
|
-
? await api.post(`/api/v3/campaigns/${campaignId}/duplicate`, {
|
|
1060
|
-
name: normalizedName,
|
|
1061
|
-
})
|
|
1062
|
-
: await api.post(`/api/v3/campaigns/${campaignId}/duplicate`);
|
|
1063
|
-
if (normalizedName) {
|
|
1064
|
-
const renamed = await api.put(`/api/v2/campaign-offers/${duplicated.campaignOfferId}`, {
|
|
1065
|
-
name: normalizedName,
|
|
1066
|
-
});
|
|
1067
|
-
return {
|
|
1068
|
-
...duplicated,
|
|
1069
|
-
campaignName: renamed.name ?? normalizedName,
|
|
1070
|
-
};
|
|
1071
|
-
}
|
|
1072
|
-
return duplicated;
|
|
1047
|
+
return api.post(`/api/v3/campaigns/${campaignId}/duplicate`);
|
|
1073
1048
|
}
|
|
1074
1049
|
export async function updateCampaignBrief(campaignId, campaignBrief) {
|
|
1075
1050
|
const api = getApi();
|
package/dist/tools/csv-dnc.js
CHANGED
|
@@ -3,7 +3,7 @@ import { createHash, createHmac, randomBytes } from "node:crypto";
|
|
|
3
3
|
import { readFileSync, statSync } from "node:fs";
|
|
4
4
|
import { dirname, isAbsolute, resolve } from "node:path";
|
|
5
5
|
import { getApi } from "../api.js";
|
|
6
|
-
import { getConfig } from "../auth.js";
|
|
6
|
+
import { getConfig, getEffectiveConfiguredWorkspaceId } from "../auth.js";
|
|
7
7
|
import { resolveWorkspaceRoot } from "../utils/workspace-root.js";
|
|
8
8
|
import { sanitizeCsvDomainCandidate } from "./csv-domains.js";
|
|
9
9
|
import { validateAndNormalizeLinkedInUrl } from "./csv-linkedin.js";
|
|
@@ -324,7 +324,7 @@ function dedupeCandidates(candidates) {
|
|
|
324
324
|
}
|
|
325
325
|
async function getVerifiedActiveWorkspace() {
|
|
326
326
|
const config = getConfig();
|
|
327
|
-
const activeWorkspaceId = config
|
|
327
|
+
const activeWorkspaceId = getEffectiveConfiguredWorkspaceId(config);
|
|
328
328
|
if (!activeWorkspaceId) {
|
|
329
329
|
throw new Error("No active workspace selected. Run list_workspaces then set_active_workspace for the exact workspace whose Sellable DNC list should be read or updated.");
|
|
330
330
|
}
|
package/dist/tools/leads.d.ts
CHANGED
|
@@ -184,7 +184,6 @@ export type ConfirmLeadListInput = {
|
|
|
184
184
|
reviewBatchLimit?: number;
|
|
185
185
|
includeRawImportResult?: boolean;
|
|
186
186
|
allowPartialSourceList?: boolean;
|
|
187
|
-
allowDifferentSourceLeadList?: boolean;
|
|
188
187
|
sourceRowIds?: string[];
|
|
189
188
|
sourceRowLimit?: number;
|
|
190
189
|
/**
|
|
@@ -306,7 +305,6 @@ export declare const leadToolDefinitions: ({
|
|
|
306
305
|
sourceRowIds?: undefined;
|
|
307
306
|
sourceRowLimit?: undefined;
|
|
308
307
|
allowPartialSourceList?: undefined;
|
|
309
|
-
allowDifferentSourceLeadList?: undefined;
|
|
310
308
|
includeRawImportResult?: undefined;
|
|
311
309
|
selections?: undefined;
|
|
312
310
|
selectionMode?: undefined;
|
|
@@ -504,7 +502,6 @@ export declare const leadToolDefinitions: ({
|
|
|
504
502
|
sourceRowIds?: undefined;
|
|
505
503
|
sourceRowLimit?: undefined;
|
|
506
504
|
allowPartialSourceList?: undefined;
|
|
507
|
-
allowDifferentSourceLeadList?: undefined;
|
|
508
505
|
includeRawImportResult?: undefined;
|
|
509
506
|
selections?: undefined;
|
|
510
507
|
selectionMode?: undefined;
|
|
@@ -601,7 +598,6 @@ export declare const leadToolDefinitions: ({
|
|
|
601
598
|
sourceRowIds?: undefined;
|
|
602
599
|
sourceRowLimit?: undefined;
|
|
603
600
|
allowPartialSourceList?: undefined;
|
|
604
|
-
allowDifferentSourceLeadList?: undefined;
|
|
605
601
|
includeRawImportResult?: undefined;
|
|
606
602
|
selections?: undefined;
|
|
607
603
|
selectionMode?: undefined;
|
|
@@ -770,7 +766,6 @@ export declare const leadToolDefinitions: ({
|
|
|
770
766
|
sourceRowIds?: undefined;
|
|
771
767
|
sourceRowLimit?: undefined;
|
|
772
768
|
allowPartialSourceList?: undefined;
|
|
773
|
-
allowDifferentSourceLeadList?: undefined;
|
|
774
769
|
includeRawImportResult?: undefined;
|
|
775
770
|
selections?: undefined;
|
|
776
771
|
selectionMode?: undefined;
|
|
@@ -881,7 +876,6 @@ export declare const leadToolDefinitions: ({
|
|
|
881
876
|
sourceRowIds?: undefined;
|
|
882
877
|
sourceRowLimit?: undefined;
|
|
883
878
|
allowPartialSourceList?: undefined;
|
|
884
|
-
allowDifferentSourceLeadList?: undefined;
|
|
885
879
|
includeRawImportResult?: undefined;
|
|
886
880
|
selections?: undefined;
|
|
887
881
|
selectionMode?: undefined;
|
|
@@ -1001,7 +995,6 @@ export declare const leadToolDefinitions: ({
|
|
|
1001
995
|
sourceRowIds?: undefined;
|
|
1002
996
|
sourceRowLimit?: undefined;
|
|
1003
997
|
allowPartialSourceList?: undefined;
|
|
1004
|
-
allowDifferentSourceLeadList?: undefined;
|
|
1005
998
|
includeRawImportResult?: undefined;
|
|
1006
999
|
selections?: undefined;
|
|
1007
1000
|
selectionMode?: undefined;
|
|
@@ -1110,7 +1103,6 @@ export declare const leadToolDefinitions: ({
|
|
|
1110
1103
|
sourceRowIds?: undefined;
|
|
1111
1104
|
sourceRowLimit?: undefined;
|
|
1112
1105
|
allowPartialSourceList?: undefined;
|
|
1113
|
-
allowDifferentSourceLeadList?: undefined;
|
|
1114
1106
|
includeRawImportResult?: undefined;
|
|
1115
1107
|
selections?: undefined;
|
|
1116
1108
|
selectionMode?: undefined;
|
|
@@ -1224,7 +1216,6 @@ export declare const leadToolDefinitions: ({
|
|
|
1224
1216
|
sourceRowIds?: undefined;
|
|
1225
1217
|
sourceRowLimit?: undefined;
|
|
1226
1218
|
allowPartialSourceList?: undefined;
|
|
1227
|
-
allowDifferentSourceLeadList?: undefined;
|
|
1228
1219
|
includeRawImportResult?: undefined;
|
|
1229
1220
|
selections?: undefined;
|
|
1230
1221
|
selectionMode?: undefined;
|
|
@@ -1326,7 +1317,6 @@ export declare const leadToolDefinitions: ({
|
|
|
1326
1317
|
sourceRowIds?: undefined;
|
|
1327
1318
|
sourceRowLimit?: undefined;
|
|
1328
1319
|
allowPartialSourceList?: undefined;
|
|
1329
|
-
allowDifferentSourceLeadList?: undefined;
|
|
1330
1320
|
includeRawImportResult?: undefined;
|
|
1331
1321
|
selections?: undefined;
|
|
1332
1322
|
selectionMode?: undefined;
|
|
@@ -2220,7 +2210,6 @@ export declare const leadToolDefinitions: ({
|
|
|
2220
2210
|
sourceRowIds?: undefined;
|
|
2221
2211
|
sourceRowLimit?: undefined;
|
|
2222
2212
|
allowPartialSourceList?: undefined;
|
|
2223
|
-
allowDifferentSourceLeadList?: undefined;
|
|
2224
2213
|
includeRawImportResult?: undefined;
|
|
2225
2214
|
selections?: undefined;
|
|
2226
2215
|
selectionMode?: undefined;
|
|
@@ -2331,7 +2320,6 @@ export declare const leadToolDefinitions: ({
|
|
|
2331
2320
|
sourceRowIds?: undefined;
|
|
2332
2321
|
sourceRowLimit?: undefined;
|
|
2333
2322
|
allowPartialSourceList?: undefined;
|
|
2334
|
-
allowDifferentSourceLeadList?: undefined;
|
|
2335
2323
|
includeRawImportResult?: undefined;
|
|
2336
2324
|
selections?: undefined;
|
|
2337
2325
|
selectionMode?: undefined;
|
|
@@ -3383,7 +3371,6 @@ export declare const leadToolDefinitions: ({
|
|
|
3383
3371
|
sourceRowIds?: undefined;
|
|
3384
3372
|
sourceRowLimit?: undefined;
|
|
3385
3373
|
allowPartialSourceList?: undefined;
|
|
3386
|
-
allowDifferentSourceLeadList?: undefined;
|
|
3387
3374
|
includeRawImportResult?: undefined;
|
|
3388
3375
|
selections?: undefined;
|
|
3389
3376
|
selectionMode?: undefined;
|
|
@@ -3541,7 +3528,6 @@ export declare const leadToolDefinitions: ({
|
|
|
3541
3528
|
sourceRowIds?: undefined;
|
|
3542
3529
|
sourceRowLimit?: undefined;
|
|
3543
3530
|
allowPartialSourceList?: undefined;
|
|
3544
|
-
allowDifferentSourceLeadList?: undefined;
|
|
3545
3531
|
includeRawImportResult?: undefined;
|
|
3546
3532
|
selections?: undefined;
|
|
3547
3533
|
selectionMode?: undefined;
|
|
@@ -3689,7 +3675,6 @@ export declare const leadToolDefinitions: ({
|
|
|
3689
3675
|
sourceRowIds?: undefined;
|
|
3690
3676
|
sourceRowLimit?: undefined;
|
|
3691
3677
|
allowPartialSourceList?: undefined;
|
|
3692
|
-
allowDifferentSourceLeadList?: undefined;
|
|
3693
3678
|
includeRawImportResult?: undefined;
|
|
3694
3679
|
selections?: undefined;
|
|
3695
3680
|
selectionMode?: undefined;
|
|
@@ -3792,7 +3777,6 @@ export declare const leadToolDefinitions: ({
|
|
|
3792
3777
|
sourceRowIds?: undefined;
|
|
3793
3778
|
sourceRowLimit?: undefined;
|
|
3794
3779
|
allowPartialSourceList?: undefined;
|
|
3795
|
-
allowDifferentSourceLeadList?: undefined;
|
|
3796
3780
|
includeRawImportResult?: undefined;
|
|
3797
3781
|
selections?: undefined;
|
|
3798
3782
|
selectionMode?: undefined;
|
|
@@ -3857,10 +3841,6 @@ export declare const leadToolDefinitions: ({
|
|
|
3857
3841
|
type: string;
|
|
3858
3842
|
description: string;
|
|
3859
3843
|
};
|
|
3860
|
-
allowDifferentSourceLeadList: {
|
|
3861
|
-
type: string;
|
|
3862
|
-
description: string;
|
|
3863
|
-
};
|
|
3864
3844
|
confirmed: {
|
|
3865
3845
|
type: string;
|
|
3866
3846
|
description: string;
|
|
@@ -4070,7 +4050,6 @@ export declare const leadToolDefinitions: ({
|
|
|
4070
4050
|
sourceRowIds?: undefined;
|
|
4071
4051
|
sourceRowLimit?: undefined;
|
|
4072
4052
|
allowPartialSourceList?: undefined;
|
|
4073
|
-
allowDifferentSourceLeadList?: undefined;
|
|
4074
4053
|
includeRawImportResult?: undefined;
|
|
4075
4054
|
};
|
|
4076
4055
|
required: string[];
|
|
@@ -4171,7 +4150,6 @@ export declare const leadToolDefinitions: ({
|
|
|
4171
4150
|
sourceRowIds?: undefined;
|
|
4172
4151
|
sourceRowLimit?: undefined;
|
|
4173
4152
|
allowPartialSourceList?: undefined;
|
|
4174
|
-
allowDifferentSourceLeadList?: undefined;
|
|
4175
4153
|
includeRawImportResult?: undefined;
|
|
4176
4154
|
selections?: undefined;
|
|
4177
4155
|
selectionMode?: undefined;
|
package/dist/tools/leads.js
CHANGED
|
@@ -2239,10 +2239,6 @@ export const leadToolDefinitions = [
|
|
|
2239
2239
|
type: "boolean",
|
|
2240
2240
|
description: "Explicit override for user-approved early continuation. Default false. When true, confirm_lead_list may copy the currently materialized rows from a still-running source import; use only after the user explicitly asks to keep going with the partial list.",
|
|
2241
2241
|
},
|
|
2242
|
-
allowDifferentSourceLeadList: {
|
|
2243
|
-
type: "boolean",
|
|
2244
|
-
description: "Explicit override for bounded recovery/refill copies from a source list different from the campaign.selectedLeadListId. Use only when the operator intentionally approved that exact alternate source list.",
|
|
2245
|
-
},
|
|
2246
2242
|
confirmed: {
|
|
2247
2243
|
type: "boolean",
|
|
2248
2244
|
description: "Set true after user approval when interaction mode requires confirmation for confirm/import.",
|
|
@@ -4206,7 +4202,7 @@ export async function confirmLeadList(input) {
|
|
|
4206
4202
|
const api = getApi();
|
|
4207
4203
|
const workspaceId = normalizeExplicitWorkspaceId(input.workspaceId);
|
|
4208
4204
|
const requestOptions = workspaceRequestOptions(workspaceId);
|
|
4209
|
-
const { campaignOfferId, currentStep, confirmed, sourceLeadListId, campaignName, keepInSync, jobId, reviewBatchLimit, includeRawImportResult, allowPartialSourceList,
|
|
4205
|
+
const { campaignOfferId, currentStep, confirmed, sourceLeadListId, campaignName, keepInSync, jobId, reviewBatchLimit, includeRawImportResult, allowPartialSourceList, targetLeadCount, sourceRowIds, sourceRowLimit, } = input;
|
|
4210
4206
|
assertInteractionApproval({
|
|
4211
4207
|
campaignId: campaignOfferId,
|
|
4212
4208
|
action: "confirm-lead-list",
|
|
@@ -4418,7 +4414,6 @@ export async function confirmLeadList(input) {
|
|
|
4418
4414
|
currentStep: null,
|
|
4419
4415
|
sourceRowIds,
|
|
4420
4416
|
sourceRowLimit,
|
|
4421
|
-
allowDifferentSourceLeadList,
|
|
4422
4417
|
...(workspaceId ? { workspaceId } : {}),
|
|
4423
4418
|
};
|
|
4424
4419
|
const importResult = await (requestOptions
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
type RefillSendsEvergreenInput = {
|
|
2
|
+
workspaceId?: string;
|
|
3
|
+
};
|
|
4
|
+
export declare const refillSendsEvergreenToolDefinitions: {
|
|
5
|
+
name: string;
|
|
6
|
+
description: string;
|
|
7
|
+
inputSchema: {
|
|
8
|
+
type: string;
|
|
9
|
+
properties: {
|
|
10
|
+
workspaceId: {
|
|
11
|
+
type: string;
|
|
12
|
+
description: string;
|
|
13
|
+
};
|
|
14
|
+
};
|
|
15
|
+
required: string[];
|
|
16
|
+
additionalProperties: boolean;
|
|
17
|
+
};
|
|
18
|
+
}[];
|
|
19
|
+
export declare function refillSendsEvergreenCommand(input: RefillSendsEvergreenInput): {
|
|
20
|
+
readOnly: boolean;
|
|
21
|
+
workspaceId: string | null;
|
|
22
|
+
firstOperationalSteps: string[];
|
|
23
|
+
approvalContract: string;
|
|
24
|
+
forbiddenActions: string[];
|
|
25
|
+
fillWindow: string;
|
|
26
|
+
hostExamples: string[];
|
|
27
|
+
};
|
|
28
|
+
export {};
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
export const refillSendsEvergreenToolDefinitions = [
|
|
2
|
+
{
|
|
3
|
+
name: "refill_sends_evergreen",
|
|
4
|
+
description: "Read-only Phase 85 evergreen refill command contract. It performs no mutations and only tells the operator to call get_evergreen_refill_plan for a dry-run packet and journal.",
|
|
5
|
+
inputSchema: {
|
|
6
|
+
type: "object",
|
|
7
|
+
properties: {
|
|
8
|
+
workspaceId: {
|
|
9
|
+
type: "string",
|
|
10
|
+
description: "Explicit request-scoped workspace id.",
|
|
11
|
+
},
|
|
12
|
+
},
|
|
13
|
+
required: ["workspaceId"],
|
|
14
|
+
additionalProperties: false,
|
|
15
|
+
},
|
|
16
|
+
},
|
|
17
|
+
];
|
|
18
|
+
export function refillSendsEvergreenCommand(input) {
|
|
19
|
+
return {
|
|
20
|
+
readOnly: true,
|
|
21
|
+
workspaceId: input.workspaceId ?? null,
|
|
22
|
+
firstOperationalSteps: [
|
|
23
|
+
"Call get_evergreen_refill_plan with the explicit workspaceId.",
|
|
24
|
+
"Read the returned packet, globalActionQueue, per-sender plans, and itinerary before taking any action.",
|
|
25
|
+
"Review the dry-run journal file path returned by get_evergreen_refill_plan.",
|
|
26
|
+
"Phase 85 is PLAN-ONLY; execution arrives in Phase 86.",
|
|
27
|
+
],
|
|
28
|
+
approvalContract: "Nothing is approved or executable in Phase 85. The evergreen command is read-only; Phase 86 introduces execution approval.",
|
|
29
|
+
forbiddenActions: [
|
|
30
|
+
"Do not schedule sends.",
|
|
31
|
+
"Do not send messages.",
|
|
32
|
+
"Do not approve messages.",
|
|
33
|
+
"Do not prepare messages.",
|
|
34
|
+
"Do not start or launch campaigns.",
|
|
35
|
+
"Do not create campaigns.",
|
|
36
|
+
"Do not switch providers or source families.",
|
|
37
|
+
"Do not lower paid InMail thresholds.",
|
|
38
|
+
"Do not refresh paid InMail credits.",
|
|
39
|
+
"Do not write scheduler fields.",
|
|
40
|
+
],
|
|
41
|
+
fillWindow: "Use only the target window and caps returned by get_evergreen_refill_plan.",
|
|
42
|
+
hostExamples: [
|
|
43
|
+
"refill_sends_evergreen({ workspaceId })",
|
|
44
|
+
"get_evergreen_refill_plan({ workspaceId })",
|
|
45
|
+
],
|
|
46
|
+
};
|
|
47
|
+
}
|
package/dist/tools/registry.d.ts
CHANGED
|
@@ -1094,55 +1094,12 @@ export declare const allTools: ({
|
|
|
1094
1094
|
type: string;
|
|
1095
1095
|
description: string;
|
|
1096
1096
|
};
|
|
1097
|
-
name?: undefined;
|
|
1098
|
-
limit?: undefined;
|
|
1099
|
-
tableId?: undefined;
|
|
1100
|
-
leadLimit?: undefined;
|
|
1101
|
-
page?: undefined;
|
|
1102
|
-
filters?: undefined;
|
|
1103
|
-
clientProspectId?: undefined;
|
|
1104
|
-
senderLinkedinUrl?: undefined;
|
|
1105
|
-
offerPositioning?: undefined;
|
|
1106
|
-
campaignBrief?: undefined;
|
|
1107
|
-
messageGenerationMode?: undefined;
|
|
1108
|
-
currentStep?: undefined;
|
|
1109
|
-
watchNarration?: undefined;
|
|
1110
|
-
leadSourceType?: undefined;
|
|
1111
|
-
leadSourceProvider?: undefined;
|
|
1112
|
-
selectedLeadListId?: undefined;
|
|
1113
|
-
senderIds?: undefined;
|
|
1114
|
-
currentStepTransition?: undefined;
|
|
1115
|
-
clearCurrentStepIfMatches?: undefined;
|
|
1116
|
-
interactionMode?: undefined;
|
|
1117
|
-
enableICPFilters?: undefined;
|
|
1118
|
-
useMessagingTemplate?: undefined;
|
|
1119
|
-
rubric?: undefined;
|
|
1120
|
-
flowVersion?: undefined;
|
|
1121
|
-
workspaceId?: undefined;
|
|
1122
|
-
};
|
|
1123
|
-
required: string[];
|
|
1124
|
-
additionalProperties: boolean;
|
|
1125
|
-
};
|
|
1126
|
-
} | {
|
|
1127
|
-
name: string;
|
|
1128
|
-
description: string;
|
|
1129
|
-
inputSchema: {
|
|
1130
|
-
type: string;
|
|
1131
|
-
properties: {
|
|
1132
|
-
campaignId: {
|
|
1133
|
-
type: string;
|
|
1134
|
-
description: string;
|
|
1135
|
-
};
|
|
1136
|
-
name: {
|
|
1137
|
-
type: string;
|
|
1138
|
-
maxLength: number;
|
|
1139
|
-
description: string;
|
|
1140
|
-
};
|
|
1141
1097
|
limit?: undefined;
|
|
1142
1098
|
tableId?: undefined;
|
|
1143
1099
|
leadLimit?: undefined;
|
|
1144
1100
|
page?: undefined;
|
|
1145
1101
|
filters?: undefined;
|
|
1102
|
+
name?: undefined;
|
|
1146
1103
|
clientProspectId?: undefined;
|
|
1147
1104
|
senderLinkedinUrl?: undefined;
|
|
1148
1105
|
offerPositioning?: undefined;
|
|
@@ -1177,11 +1134,11 @@ export declare const allTools: ({
|
|
|
1177
1134
|
description: string;
|
|
1178
1135
|
};
|
|
1179
1136
|
campaignId?: undefined;
|
|
1180
|
-
name?: undefined;
|
|
1181
1137
|
tableId?: undefined;
|
|
1182
1138
|
leadLimit?: undefined;
|
|
1183
1139
|
page?: undefined;
|
|
1184
1140
|
filters?: undefined;
|
|
1141
|
+
name?: undefined;
|
|
1185
1142
|
clientProspectId?: undefined;
|
|
1186
1143
|
senderLinkedinUrl?: undefined;
|
|
1187
1144
|
offerPositioning?: undefined;
|
|
@@ -1215,12 +1172,12 @@ export declare const allTools: ({
|
|
|
1215
1172
|
type: string;
|
|
1216
1173
|
description: string;
|
|
1217
1174
|
};
|
|
1218
|
-
name?: undefined;
|
|
1219
1175
|
limit?: undefined;
|
|
1220
1176
|
tableId?: undefined;
|
|
1221
1177
|
leadLimit?: undefined;
|
|
1222
1178
|
page?: undefined;
|
|
1223
1179
|
filters?: undefined;
|
|
1180
|
+
name?: undefined;
|
|
1224
1181
|
clientProspectId?: undefined;
|
|
1225
1182
|
senderLinkedinUrl?: undefined;
|
|
1226
1183
|
offerPositioning?: undefined;
|
|
@@ -1301,8 +1258,8 @@ export declare const allTools: ({
|
|
|
1301
1258
|
additionalProperties: boolean;
|
|
1302
1259
|
};
|
|
1303
1260
|
};
|
|
1304
|
-
name?: undefined;
|
|
1305
1261
|
limit?: undefined;
|
|
1262
|
+
name?: undefined;
|
|
1306
1263
|
clientProspectId?: undefined;
|
|
1307
1264
|
senderLinkedinUrl?: undefined;
|
|
1308
1265
|
offerPositioning?: undefined;
|
|
@@ -1339,7 +1296,6 @@ export declare const allTools: ({
|
|
|
1339
1296
|
name: {
|
|
1340
1297
|
type: string;
|
|
1341
1298
|
description: string;
|
|
1342
|
-
maxLength?: undefined;
|
|
1343
1299
|
};
|
|
1344
1300
|
clientProspectId: {
|
|
1345
1301
|
type: string;
|
|
@@ -1532,11 +1488,6 @@ export declare const allTools: ({
|
|
|
1532
1488
|
type: string;
|
|
1533
1489
|
description: string;
|
|
1534
1490
|
};
|
|
1535
|
-
name: {
|
|
1536
|
-
type: string;
|
|
1537
|
-
maxLength: number;
|
|
1538
|
-
description: string;
|
|
1539
|
-
};
|
|
1540
1491
|
offerPositioning: {
|
|
1541
1492
|
type: string;
|
|
1542
1493
|
description: string;
|
|
@@ -1724,6 +1675,7 @@ export declare const allTools: ({
|
|
|
1724
1675
|
leadLimit?: undefined;
|
|
1725
1676
|
page?: undefined;
|
|
1726
1677
|
filters?: undefined;
|
|
1678
|
+
name?: undefined;
|
|
1727
1679
|
clientProspectId?: undefined;
|
|
1728
1680
|
senderLinkedinUrl?: undefined;
|
|
1729
1681
|
messageGenerationMode?: undefined;
|
|
@@ -1746,12 +1698,12 @@ export declare const allTools: ({
|
|
|
1746
1698
|
type: string;
|
|
1747
1699
|
description: string;
|
|
1748
1700
|
};
|
|
1749
|
-
name?: undefined;
|
|
1750
1701
|
limit?: undefined;
|
|
1751
1702
|
tableId?: undefined;
|
|
1752
1703
|
leadLimit?: undefined;
|
|
1753
1704
|
page?: undefined;
|
|
1754
1705
|
filters?: undefined;
|
|
1706
|
+
name?: undefined;
|
|
1755
1707
|
clientProspectId?: undefined;
|
|
1756
1708
|
senderLinkedinUrl?: undefined;
|
|
1757
1709
|
offerPositioning?: undefined;
|
|
@@ -1788,12 +1740,12 @@ export declare const allTools: ({
|
|
|
1788
1740
|
type: string;
|
|
1789
1741
|
description: string;
|
|
1790
1742
|
};
|
|
1791
|
-
name?: undefined;
|
|
1792
1743
|
limit?: undefined;
|
|
1793
1744
|
tableId?: undefined;
|
|
1794
1745
|
leadLimit?: undefined;
|
|
1795
1746
|
page?: undefined;
|
|
1796
1747
|
filters?: undefined;
|
|
1748
|
+
name?: undefined;
|
|
1797
1749
|
clientProspectId?: undefined;
|
|
1798
1750
|
senderLinkedinUrl?: undefined;
|
|
1799
1751
|
offerPositioning?: undefined;
|
|
@@ -3234,7 +3186,6 @@ export declare const allTools: ({
|
|
|
3234
3186
|
sourceRowIds?: undefined;
|
|
3235
3187
|
sourceRowLimit?: undefined;
|
|
3236
3188
|
allowPartialSourceList?: undefined;
|
|
3237
|
-
allowDifferentSourceLeadList?: undefined;
|
|
3238
3189
|
includeRawImportResult?: undefined;
|
|
3239
3190
|
selections?: undefined;
|
|
3240
3191
|
selectionMode?: undefined;
|
|
@@ -3432,7 +3383,6 @@ export declare const allTools: ({
|
|
|
3432
3383
|
sourceRowIds?: undefined;
|
|
3433
3384
|
sourceRowLimit?: undefined;
|
|
3434
3385
|
allowPartialSourceList?: undefined;
|
|
3435
|
-
allowDifferentSourceLeadList?: undefined;
|
|
3436
3386
|
includeRawImportResult?: undefined;
|
|
3437
3387
|
selections?: undefined;
|
|
3438
3388
|
selectionMode?: undefined;
|
|
@@ -3529,7 +3479,6 @@ export declare const allTools: ({
|
|
|
3529
3479
|
sourceRowIds?: undefined;
|
|
3530
3480
|
sourceRowLimit?: undefined;
|
|
3531
3481
|
allowPartialSourceList?: undefined;
|
|
3532
|
-
allowDifferentSourceLeadList?: undefined;
|
|
3533
3482
|
includeRawImportResult?: undefined;
|
|
3534
3483
|
selections?: undefined;
|
|
3535
3484
|
selectionMode?: undefined;
|
|
@@ -3698,7 +3647,6 @@ export declare const allTools: ({
|
|
|
3698
3647
|
sourceRowIds?: undefined;
|
|
3699
3648
|
sourceRowLimit?: undefined;
|
|
3700
3649
|
allowPartialSourceList?: undefined;
|
|
3701
|
-
allowDifferentSourceLeadList?: undefined;
|
|
3702
3650
|
includeRawImportResult?: undefined;
|
|
3703
3651
|
selections?: undefined;
|
|
3704
3652
|
selectionMode?: undefined;
|
|
@@ -3809,7 +3757,6 @@ export declare const allTools: ({
|
|
|
3809
3757
|
sourceRowIds?: undefined;
|
|
3810
3758
|
sourceRowLimit?: undefined;
|
|
3811
3759
|
allowPartialSourceList?: undefined;
|
|
3812
|
-
allowDifferentSourceLeadList?: undefined;
|
|
3813
3760
|
includeRawImportResult?: undefined;
|
|
3814
3761
|
selections?: undefined;
|
|
3815
3762
|
selectionMode?: undefined;
|
|
@@ -3929,7 +3876,6 @@ export declare const allTools: ({
|
|
|
3929
3876
|
sourceRowIds?: undefined;
|
|
3930
3877
|
sourceRowLimit?: undefined;
|
|
3931
3878
|
allowPartialSourceList?: undefined;
|
|
3932
|
-
allowDifferentSourceLeadList?: undefined;
|
|
3933
3879
|
includeRawImportResult?: undefined;
|
|
3934
3880
|
selections?: undefined;
|
|
3935
3881
|
selectionMode?: undefined;
|
|
@@ -4038,7 +3984,6 @@ export declare const allTools: ({
|
|
|
4038
3984
|
sourceRowIds?: undefined;
|
|
4039
3985
|
sourceRowLimit?: undefined;
|
|
4040
3986
|
allowPartialSourceList?: undefined;
|
|
4041
|
-
allowDifferentSourceLeadList?: undefined;
|
|
4042
3987
|
includeRawImportResult?: undefined;
|
|
4043
3988
|
selections?: undefined;
|
|
4044
3989
|
selectionMode?: undefined;
|
|
@@ -4152,7 +4097,6 @@ export declare const allTools: ({
|
|
|
4152
4097
|
sourceRowIds?: undefined;
|
|
4153
4098
|
sourceRowLimit?: undefined;
|
|
4154
4099
|
allowPartialSourceList?: undefined;
|
|
4155
|
-
allowDifferentSourceLeadList?: undefined;
|
|
4156
4100
|
includeRawImportResult?: undefined;
|
|
4157
4101
|
selections?: undefined;
|
|
4158
4102
|
selectionMode?: undefined;
|
|
@@ -4254,7 +4198,6 @@ export declare const allTools: ({
|
|
|
4254
4198
|
sourceRowIds?: undefined;
|
|
4255
4199
|
sourceRowLimit?: undefined;
|
|
4256
4200
|
allowPartialSourceList?: undefined;
|
|
4257
|
-
allowDifferentSourceLeadList?: undefined;
|
|
4258
4201
|
includeRawImportResult?: undefined;
|
|
4259
4202
|
selections?: undefined;
|
|
4260
4203
|
selectionMode?: undefined;
|
|
@@ -5148,7 +5091,6 @@ export declare const allTools: ({
|
|
|
5148
5091
|
sourceRowIds?: undefined;
|
|
5149
5092
|
sourceRowLimit?: undefined;
|
|
5150
5093
|
allowPartialSourceList?: undefined;
|
|
5151
|
-
allowDifferentSourceLeadList?: undefined;
|
|
5152
5094
|
includeRawImportResult?: undefined;
|
|
5153
5095
|
selections?: undefined;
|
|
5154
5096
|
selectionMode?: undefined;
|
|
@@ -5259,7 +5201,6 @@ export declare const allTools: ({
|
|
|
5259
5201
|
sourceRowIds?: undefined;
|
|
5260
5202
|
sourceRowLimit?: undefined;
|
|
5261
5203
|
allowPartialSourceList?: undefined;
|
|
5262
|
-
allowDifferentSourceLeadList?: undefined;
|
|
5263
5204
|
includeRawImportResult?: undefined;
|
|
5264
5205
|
selections?: undefined;
|
|
5265
5206
|
selectionMode?: undefined;
|
|
@@ -6311,7 +6252,6 @@ export declare const allTools: ({
|
|
|
6311
6252
|
sourceRowIds?: undefined;
|
|
6312
6253
|
sourceRowLimit?: undefined;
|
|
6313
6254
|
allowPartialSourceList?: undefined;
|
|
6314
|
-
allowDifferentSourceLeadList?: undefined;
|
|
6315
6255
|
includeRawImportResult?: undefined;
|
|
6316
6256
|
selections?: undefined;
|
|
6317
6257
|
selectionMode?: undefined;
|
|
@@ -6469,7 +6409,6 @@ export declare const allTools: ({
|
|
|
6469
6409
|
sourceRowIds?: undefined;
|
|
6470
6410
|
sourceRowLimit?: undefined;
|
|
6471
6411
|
allowPartialSourceList?: undefined;
|
|
6472
|
-
allowDifferentSourceLeadList?: undefined;
|
|
6473
6412
|
includeRawImportResult?: undefined;
|
|
6474
6413
|
selections?: undefined;
|
|
6475
6414
|
selectionMode?: undefined;
|
|
@@ -6617,7 +6556,6 @@ export declare const allTools: ({
|
|
|
6617
6556
|
sourceRowIds?: undefined;
|
|
6618
6557
|
sourceRowLimit?: undefined;
|
|
6619
6558
|
allowPartialSourceList?: undefined;
|
|
6620
|
-
allowDifferentSourceLeadList?: undefined;
|
|
6621
6559
|
includeRawImportResult?: undefined;
|
|
6622
6560
|
selections?: undefined;
|
|
6623
6561
|
selectionMode?: undefined;
|
|
@@ -6720,7 +6658,6 @@ export declare const allTools: ({
|
|
|
6720
6658
|
sourceRowIds?: undefined;
|
|
6721
6659
|
sourceRowLimit?: undefined;
|
|
6722
6660
|
allowPartialSourceList?: undefined;
|
|
6723
|
-
allowDifferentSourceLeadList?: undefined;
|
|
6724
6661
|
includeRawImportResult?: undefined;
|
|
6725
6662
|
selections?: undefined;
|
|
6726
6663
|
selectionMode?: undefined;
|
|
@@ -6785,10 +6722,6 @@ export declare const allTools: ({
|
|
|
6785
6722
|
type: string;
|
|
6786
6723
|
description: string;
|
|
6787
6724
|
};
|
|
6788
|
-
allowDifferentSourceLeadList: {
|
|
6789
|
-
type: string;
|
|
6790
|
-
description: string;
|
|
6791
|
-
};
|
|
6792
6725
|
confirmed: {
|
|
6793
6726
|
type: string;
|
|
6794
6727
|
description: string;
|
|
@@ -6998,7 +6931,6 @@ export declare const allTools: ({
|
|
|
6998
6931
|
sourceRowIds?: undefined;
|
|
6999
6932
|
sourceRowLimit?: undefined;
|
|
7000
6933
|
allowPartialSourceList?: undefined;
|
|
7001
|
-
allowDifferentSourceLeadList?: undefined;
|
|
7002
6934
|
includeRawImportResult?: undefined;
|
|
7003
6935
|
};
|
|
7004
6936
|
required: string[];
|
|
@@ -7099,7 +7031,6 @@ export declare const allTools: ({
|
|
|
7099
7031
|
sourceRowIds?: undefined;
|
|
7100
7032
|
sourceRowLimit?: undefined;
|
|
7101
7033
|
allowPartialSourceList?: undefined;
|
|
7102
|
-
allowDifferentSourceLeadList?: undefined;
|
|
7103
7034
|
includeRawImportResult?: undefined;
|
|
7104
7035
|
selections?: undefined;
|
|
7105
7036
|
selectionMode?: undefined;
|
|
@@ -8019,10 +7950,9 @@ export declare const allTools: ({
|
|
|
8019
7950
|
};
|
|
8020
7951
|
tableId?: undefined;
|
|
8021
7952
|
template?: undefined;
|
|
8022
|
-
templateRef?: undefined;
|
|
8023
7953
|
confirmed?: undefined;
|
|
8024
|
-
currentStep?: undefined;
|
|
8025
7954
|
campaignId?: undefined;
|
|
7955
|
+
currentStep?: undefined;
|
|
8026
7956
|
};
|
|
8027
7957
|
required: string[];
|
|
8028
7958
|
};
|
|
@@ -8040,25 +7970,17 @@ export declare const allTools: ({
|
|
|
8040
7970
|
type: string;
|
|
8041
7971
|
description: string;
|
|
8042
7972
|
};
|
|
8043
|
-
templateRef: {
|
|
8044
|
-
type: string;
|
|
8045
|
-
enum: string[];
|
|
8046
|
-
description: string;
|
|
8047
|
-
};
|
|
8048
7973
|
confirmed: {
|
|
8049
7974
|
type: string;
|
|
8050
7975
|
description: string;
|
|
8051
7976
|
};
|
|
8052
|
-
currentStep: {
|
|
8053
|
-
type: string;
|
|
8054
|
-
description: string;
|
|
8055
|
-
};
|
|
8056
7977
|
name?: undefined;
|
|
8057
7978
|
senderId?: undefined;
|
|
8058
7979
|
clientProspectId?: undefined;
|
|
8059
7980
|
senderLinkedinUrl?: undefined;
|
|
8060
7981
|
sequenceActions?: undefined;
|
|
8061
7982
|
campaignId?: undefined;
|
|
7983
|
+
currentStep?: undefined;
|
|
8062
7984
|
};
|
|
8063
7985
|
required: string[];
|
|
8064
7986
|
};
|
|
@@ -8087,7 +8009,6 @@ export declare const allTools: ({
|
|
|
8087
8009
|
sequenceActions?: undefined;
|
|
8088
8010
|
tableId?: undefined;
|
|
8089
8011
|
template?: undefined;
|
|
8090
|
-
templateRef?: undefined;
|
|
8091
8012
|
};
|
|
8092
8013
|
required: string[];
|
|
8093
8014
|
};
|