@sellable/mcp 0.1.361 → 0.1.362
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/package.json
CHANGED
|
@@ -207,6 +207,83 @@ not a parent-thread summary. The receipt must include:
|
|
|
207
207
|
planRevision, selectedActionIds, receipts })` call/result used before the
|
|
208
208
|
parent reports completion.
|
|
209
209
|
|
|
210
|
+
Use these canonical receipt leaf names exactly. Do not substitute looser aliases
|
|
211
|
+
like `generateMessagesPromptLoad`, `requiredAssetLoads`,
|
|
212
|
+
`validationPromptLoad`, `reviewBatchBasisHash`, `reviewRowIds`,
|
|
213
|
+
`sequenceActionTypes`, or `pass:true` unless you also include the canonical
|
|
214
|
+
fields below:
|
|
215
|
+
|
|
216
|
+
```json
|
|
217
|
+
{
|
|
218
|
+
"status": "succeeded",
|
|
219
|
+
"planRevision": "<original planRevision>",
|
|
220
|
+
"laneKey": "<lane key>",
|
|
221
|
+
"laneType": "<lane type>",
|
|
222
|
+
"workspaceId": "<workspace id>",
|
|
223
|
+
"senderIds": ["<sender id>"],
|
|
224
|
+
"campaignId": "<campaign id>",
|
|
225
|
+
"tableId": "<workflow table id>",
|
|
226
|
+
"createCampaignStepReceipt": {
|
|
227
|
+
"campaignBriefReceipt": {
|
|
228
|
+
"campaignId": "<campaign id>",
|
|
229
|
+
"workflowTableId": "<workflow table id>",
|
|
230
|
+
"briefHash": "<brief/currentApprovedBriefHash>",
|
|
231
|
+
"deliveryFormat": "single message",
|
|
232
|
+
"tokenRules": true,
|
|
233
|
+
"hardAvoids": true,
|
|
234
|
+
"sourceUseRules": true,
|
|
235
|
+
"firstMessageTemplate": "<template or template state>"
|
|
236
|
+
},
|
|
237
|
+
"sourceDecisionReceipt": {
|
|
238
|
+
"sourceId": "<source id>",
|
|
239
|
+
"sourceListId": "<source/list id>",
|
|
240
|
+
"cursorOrInventoryState": "<cursor/inventory/import state>",
|
|
241
|
+
"dedupeDncProviderExclusions": true,
|
|
242
|
+
"sourceLadderReason": "<why the current source is valid before colder sources>"
|
|
243
|
+
},
|
|
244
|
+
"filterDecisionReceipt": {
|
|
245
|
+
"status": "skipped",
|
|
246
|
+
"workflowTableId": "<workflow table id>"
|
|
247
|
+
},
|
|
248
|
+
"messageDraftingReceipt": {
|
|
249
|
+
"promptLoadedToHasMoreFalse": true,
|
|
250
|
+
"requiredAssetsLoaded": true,
|
|
251
|
+
"validationLoaded": true,
|
|
252
|
+
"campaignId": "<campaign id>",
|
|
253
|
+
"workflowTableId": "<workflow table id>",
|
|
254
|
+
"selectedLeadListId": "<source/list id>",
|
|
255
|
+
"reviewBatchRowHash": "<review row ids hash>",
|
|
256
|
+
"messageDraftRecommendation": {"basis": "generate-messages"},
|
|
257
|
+
"sampleMessages[].verdict": "pass",
|
|
258
|
+
"sampleMessages": [
|
|
259
|
+
{"rowId": "<row id>", "generatedMessageText": "<message>", "verdict": "pass"}
|
|
260
|
+
]
|
|
261
|
+
},
|
|
262
|
+
"reviewBatchReceipt": {
|
|
263
|
+
"rowIdsHash": "<review row ids hash>",
|
|
264
|
+
"generatedCount": 3
|
|
265
|
+
},
|
|
266
|
+
"sequenceReceipt": {
|
|
267
|
+
"workflowTableId": "<workflow table id>",
|
|
268
|
+
"hasSequence": true,
|
|
269
|
+
"sequenceReceipt.actionTypes": ["send_invite"],
|
|
270
|
+
"sequenceReceipt.nonPaid": true,
|
|
271
|
+
"actionTypes": ["send_invite"],
|
|
272
|
+
"nonPaid": true
|
|
273
|
+
},
|
|
274
|
+
"finalPausedSendProof": {
|
|
275
|
+
"currentStep": "send",
|
|
276
|
+
"campaignStatus": "PAUSED"
|
|
277
|
+
},
|
|
278
|
+
"verifyCall": {
|
|
279
|
+
"mode": "verify",
|
|
280
|
+
"planRevision": "<original planRevision>",
|
|
281
|
+
"selectedActionIds": ["<all original selected action ids>"]
|
|
282
|
+
}
|
|
283
|
+
}
|
|
284
|
+
}
|
|
285
|
+
```
|
|
286
|
+
|
|
210
287
|
Verification always uses the original execution planRevision and original
|
|
211
288
|
selectedActionIds from the plan packets that were dispatched before mutation.
|
|
212
289
|
The parent must preserve the original selectedActionIds exactly.
|