@sellable/mcp 0.1.426 → 0.1.428
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index-dev.js
CHANGED
|
File without changes
|
package/dist/index.js
CHANGED
|
File without changes
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
type SetupEvergreenCampaignsInput = {
|
|
2
2
|
mode?: "plan" | "verify";
|
|
3
3
|
depth?: "structure_only" | "customer_visible";
|
|
4
|
+
handoffMode?: "create_campaign_goals";
|
|
4
5
|
yolo?: boolean;
|
|
5
6
|
allConnectedSenders?: boolean;
|
|
6
7
|
selectedSenderIds?: string[];
|
|
@@ -31,6 +32,11 @@ export declare const setupEvergreenCampaignsToolDefinitions: {
|
|
|
31
32
|
enum: string[];
|
|
32
33
|
description: string;
|
|
33
34
|
};
|
|
35
|
+
handoffMode: {
|
|
36
|
+
type: string;
|
|
37
|
+
enum: string[];
|
|
38
|
+
description: string;
|
|
39
|
+
};
|
|
34
40
|
yolo: {
|
|
35
41
|
type: string;
|
|
36
42
|
description: string;
|
|
@@ -20,6 +20,11 @@ export const setupEvergreenCampaignsToolDefinitions = [
|
|
|
20
20
|
enum: ["structure_only", "customer_visible"],
|
|
21
21
|
description: 'Use "customer_visible" for full setup proof or "structure_only" when only ensuring lane shells/config.',
|
|
22
22
|
},
|
|
23
|
+
handoffMode: {
|
|
24
|
+
type: "string",
|
|
25
|
+
enum: ["create_campaign_goals"],
|
|
26
|
+
description: 'plan mode only. When set to "create_campaign_goals", returns concise per-lane `$sellable:create-campaign` goal prompts and required inputs for testing simplified worker handoffs without changing verification behavior.',
|
|
27
|
+
},
|
|
23
28
|
yolo: {
|
|
24
29
|
type: "boolean",
|
|
25
30
|
description: "plan mode only. Requests auto-executable lane packets when state is safe; never authorizes cleanup, launch, scheduling, sending, or ambiguous target choice.",
|
|
@@ -88,6 +93,7 @@ export function setupEvergreenCampaigns(input) {
|
|
|
88
93
|
mode: input.mode,
|
|
89
94
|
yolo: input.mode === "verify" ? undefined : input.yolo,
|
|
90
95
|
depth: input.depth,
|
|
96
|
+
handoffMode: input.mode === "verify" ? undefined : input.handoffMode,
|
|
91
97
|
allConnectedSenders: input.allConnectedSenders,
|
|
92
98
|
selectedSenderIds: input.selectedSenderIds,
|
|
93
99
|
postEngagerSenderIds: input.postEngagerSenderIds,
|