@smartytalent/mcp-tools 0.1.33-dev.0 → 0.1.33-dev.1

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.
Files changed (2) hide show
  1. package/dist/tools.json +12 -3
  2. package/package.json +1 -1
package/dist/tools.json CHANGED
@@ -6714,12 +6714,21 @@
6714
6714
  "properties": {
6715
6715
  "filterStatus": {
6716
6716
  "type": "string",
6717
- "description": "Returns emails with the current status (active, archived). If not provided, the default value will be set to 'active'.",
6717
+ "description": "Filter by the email's lifecycle status. Omit to return all statuses.",
6718
6718
  "enum": [
6719
- "active",
6720
- "archived"
6719
+ "draft",
6720
+ "scheduled",
6721
+ "sent",
6722
+ "suppressed",
6723
+ "archived",
6724
+ "failed",
6725
+ "pending"
6721
6726
  ]
6722
6727
  },
6728
+ "filterConversationId": {
6729
+ "type": "string",
6730
+ "description": "Return only emails belonging to this conversation. Resolved via the ConversationIdIndex GSI (top-level denormalisation of relationships.conversations[0].data.id). Pass the full conversation id (e.g. `980434e7...-2`)."
6731
+ },
6723
6732
  "filterCreatedFrom": {
6724
6733
  "type": "string",
6725
6734
  "description": "Filters results to include only those created from the specified date and time. The value must be in ISO 8601 format."
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smartytalent/mcp-tools",
3
- "version": "0.1.33-dev.0",
3
+ "version": "0.1.33-dev.1",
4
4
  "description": "MCP tool definitions for SmartyTalent API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",