@sellable/mcp 0.1.509 → 0.1.511

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.
@@ -17,33 +17,18 @@ type RefillSendsCommandInput = {
17
17
  intent?: RefillSendsIntent;
18
18
  approvalMode?: RefillSendsApprovalMode;
19
19
  };
20
- type YoloLoopStatus = "complete" | "no_action" | "read_only_reread" | "executed_and_reread" | "refused" | "max_actions_reached" | "target_shape_drift";
21
- type YoloLoopStopReason = "target_complete" | "no_global_action" | "primitive_refused" | "max_actions_reached" | "target_shape_drift";
22
- type YoloPlanSummary = {
23
- status?: string | null;
24
- targetShapeRevision?: string | null;
25
- stateRevision?: string | null;
26
- grossTarget?: number | null;
27
- sent?: number | null;
28
- scheduled?: number | null;
29
- projected?: number | null;
30
- readyBuffer?: number | null;
31
- remainingProjectedGap?: number | null;
32
- remainingReadyOrProjectedGap?: number | null;
20
+ type PaidInmailRefreshApprovalPacket = {
21
+ approvalSource: "explicit_yolo_flag";
22
+ workspaceId?: string | null;
23
+ senderId: string;
24
+ actionKey?: string | null;
33
25
  actionType?: string | null;
34
- };
35
- type YoloActionReceipt = {
36
- attempt: number;
37
- selectedAction: Record<string, unknown> | null;
38
- before: YoloPlanSummary;
39
- primitive: YoloPrimitiveAttempt;
40
- after: YoloPlanSummary | null;
41
- postActionFirstAction?: Record<string, unknown> | null;
42
- };
43
- type YoloPrimitiveAttempt = {
44
- status: "no_action" | "read_only_reread" | "executed_and_reread" | "refused";
45
- result?: unknown;
46
- refusalReason?: string;
26
+ campaignId?: string | null;
27
+ tableId?: string | null;
28
+ columnId?: string | null;
29
+ threshold?: number | null;
30
+ maxStalenessSeconds?: number | null;
31
+ targetPlanFingerprint: Record<string, unknown>;
47
32
  };
48
33
  export declare const refillSendsToolDefinitions: {
49
34
  name: string;
@@ -133,6 +118,10 @@ export declare function refillSendsCommand(input?: RefillSendsCommandInput): {
133
118
  tool: string;
134
119
  promptName: string;
135
120
  workflowPromptName: string;
121
+ workflowAsset: {
122
+ subskillName: string;
123
+ assetPath: string;
124
+ };
136
125
  yolo: boolean;
137
126
  executionMode: RefillSendsExecutionMode;
138
127
  workspaceId: string | null;
@@ -215,11 +204,18 @@ export declare function executeRefillSendsCommand(input?: RefillSendsCommandInpu
215
204
  status: "not_run_without_yolo";
216
205
  selectedAction: null;
217
206
  targetPlanReread: false;
207
+ result?: undefined;
208
+ refusalReason?: undefined;
209
+ postActionFirstAction?: undefined;
218
210
  };
219
211
  command: string;
220
212
  tool: string;
221
213
  promptName: string;
222
214
  workflowPromptName: string;
215
+ workflowAsset: {
216
+ subskillName: string;
217
+ assetPath: string;
218
+ };
223
219
  yolo: boolean;
224
220
  executionMode: RefillSendsExecutionMode;
225
221
  workspaceId: string | null;
@@ -302,6 +298,8 @@ export declare function executeRefillSendsCommand(input?: RefillSendsCommandInpu
302
298
  actionKey: string | null;
303
299
  attempts: number;
304
300
  retryErrors: string[];
301
+ approvalSource: string;
302
+ approvalPacket: PaidInmailRefreshApprovalPacket;
305
303
  receipt: import("./senders.js").RefreshPaidInmailCreditsResponse;
306
304
  }[];
307
305
  attemptedSenderIds: string[];
@@ -312,25 +310,29 @@ export declare function executeRefillSendsCommand(input?: RefillSendsCommandInpu
312
310
  };
313
311
  yoloExecution: {
314
312
  enabled: true;
315
- status: YoloLoopStatus;
316
- stopReason: YoloLoopStopReason;
313
+ status: "skipped_after_paid_refresh";
314
+ selectedAction: null;
315
+ targetPlanReread: true;
316
+ result?: undefined;
317
+ refusalReason?: undefined;
318
+ postActionFirstAction?: undefined;
319
+ } | {
320
+ enabled: true;
321
+ status: "no_action" | "read_only_reread" | "executed_and_reread" | "refused";
317
322
  selectedAction: Record<string, unknown> | null;
318
- actions: YoloActionReceipt[];
319
- actionCount: number;
320
- result?: unknown;
323
+ result: unknown;
321
324
  targetPlanReread: boolean;
322
- targetPlanRereads: number;
323
- initialTargetShapeRevision?: string | null;
324
- finalTargetShapeRevision?: string | null;
325
- finalStateRevision?: string | null;
326
- maxActions: number;
327
- refusalReason?: string;
328
- postActionFirstAction?: unknown;
325
+ refusalReason: string | undefined;
326
+ postActionFirstAction: Record<string, unknown> | null;
329
327
  };
330
328
  command: string;
331
329
  tool: string;
332
330
  promptName: string;
333
331
  workflowPromptName: string;
332
+ workflowAsset: {
333
+ subskillName: string;
334
+ assetPath: string;
335
+ };
334
336
  yolo: boolean;
335
337
  executionMode: RefillSendsExecutionMode;
336
338
  workspaceId: string | null;