@smartytalent/mcp-tools 0.1.33-dev.8 → 0.1.33-dev.9
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/tools.json +16 -0
- package/package.json +1 -1
package/dist/tools.json
CHANGED
|
@@ -6953,6 +6953,14 @@
|
|
|
6953
6953
|
"type": "boolean",
|
|
6954
6954
|
"description": "System-level spam verdict on this email. Set by the broker (or a future classifier) at inbound time; never reflects a single user's opinion. Distinct from `status=suppressed`, which is SES reporting we cannot deliver on OUTBOUND. Frontend's Spam folder unions (my states where isSpam=true) with (emails where isSystemSpam=true)."
|
|
6955
6955
|
},
|
|
6956
|
+
"scheduleId": {
|
|
6957
|
+
"type": "string",
|
|
6958
|
+
"description": "Foreign key to the Schedule resource driving this email's send. Populated by the wait:process workflow action right after it creates the Schedule. Null when no delayed send is pending (drafts, already-sent rows, inbound mail). To cancel the scheduled send, call DELETE /v1/schedules/{scheduleId} - the email eventbus handler listens for SCHEDULE_CANCELLED and reverts the row back to draft automatically."
|
|
6959
|
+
},
|
|
6960
|
+
"scheduledFireAt": {
|
|
6961
|
+
"type": "string",
|
|
6962
|
+
"description": "Denormalised copy of the owning Schedule's `fireAt` timestamp (ISO 8601). The scheduled-send banner reads this directly so the UI never has to round-trip to /v1/schedules just to render 'Send scheduled for X'. Source of truth is the Schedule; this field stays stable because Schedule.fireAt is immutable post-create."
|
|
6963
|
+
},
|
|
6956
6964
|
"ttl": {
|
|
6957
6965
|
"type": "string"
|
|
6958
6966
|
},
|
|
@@ -7285,6 +7293,14 @@
|
|
|
7285
7293
|
"type": "boolean",
|
|
7286
7294
|
"description": "System-level spam verdict on this email. Set by the broker (or a future classifier) at inbound time; never reflects a single user's opinion. Distinct from `status=suppressed`, which is SES reporting we cannot deliver on OUTBOUND. Frontend's Spam folder unions (my states where isSpam=true) with (emails where isSystemSpam=true)."
|
|
7287
7295
|
},
|
|
7296
|
+
"scheduleId": {
|
|
7297
|
+
"type": "string",
|
|
7298
|
+
"description": "Foreign key to the Schedule resource driving this email's send. Populated by the wait:process workflow action right after it creates the Schedule. Null when no delayed send is pending (drafts, already-sent rows, inbound mail). To cancel the scheduled send, call DELETE /v1/schedules/{scheduleId} - the email eventbus handler listens for SCHEDULE_CANCELLED and reverts the row back to draft automatically."
|
|
7299
|
+
},
|
|
7300
|
+
"scheduledFireAt": {
|
|
7301
|
+
"type": "string",
|
|
7302
|
+
"description": "Denormalised copy of the owning Schedule's `fireAt` timestamp (ISO 8601). The scheduled-send banner reads this directly so the UI never has to round-trip to /v1/schedules just to render 'Send scheduled for X'. Source of truth is the Schedule; this field stays stable because Schedule.fireAt is immutable post-create."
|
|
7303
|
+
},
|
|
7288
7304
|
"ttl": {
|
|
7289
7305
|
"type": "string"
|
|
7290
7306
|
},
|