@smartytalent/mcp-tools 0.1.33-dev.6 → 0.1.33-dev.8
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 +30 -36
- package/package.json +1 -1
package/dist/tools.json
CHANGED
|
@@ -6745,6 +6745,16 @@
|
|
|
6745
6745
|
"type": "boolean",
|
|
6746
6746
|
"description": "Return only emails the system (broker / classifier) flagged as spam. Used by the Spam folder's `isSystemSpam=true` leg - the other leg comes from `/v1/states?folder=spam`. Backed by a filter-expression scan across shards for v1; promote to a sparse `SystemSpamIndex` if load warrants. Mutually exclusive with the other index-backed filters at the pagination layer."
|
|
6747
6747
|
},
|
|
6748
|
+
"sort": {
|
|
6749
|
+
"type": "string",
|
|
6750
|
+
"description": "Order results by a time field. Leading `-` means descending\n(newest-first). Accepted values:\n `-created` newest-first by creation time (CreatedIndex)\n `created` oldest-first by creation time\n `-modified` most-recently-modified first (ModifiedIndex)\n `modified` least-recently-modified first\nTakes effect only when no equality filter (filterStatus,\nfilterConversationId, filterDirection) dictates a different\nindex; equality filters win. Compatible with date-range filters\n(filterCreatedFrom/To, filterModifiedFrom/To) which already use\nthe same indexes; sort just picks the direction.",
|
|
6751
|
+
"enum": [
|
|
6752
|
+
"-created",
|
|
6753
|
+
"created",
|
|
6754
|
+
"-modified",
|
|
6755
|
+
"modified"
|
|
6756
|
+
]
|
|
6757
|
+
},
|
|
6748
6758
|
"filterCreatedFrom": {
|
|
6749
6759
|
"type": "string",
|
|
6750
6760
|
"description": "Filters results to include only those created from the specified date and time. The value must be in ISO 8601 format."
|
|
@@ -6858,26 +6868,18 @@
|
|
|
6858
6868
|
"description": "BCC recipients. Each entry is an RFC 5322 address string."
|
|
6859
6869
|
},
|
|
6860
6870
|
"subject": {
|
|
6861
|
-
"
|
|
6862
|
-
|
|
6863
|
-
|
|
6864
|
-
|
|
6865
|
-
|
|
6866
|
-
"type": "object",
|
|
6867
|
-
"additionalProperties": true
|
|
6868
|
-
}
|
|
6869
|
-
]
|
|
6871
|
+
"type": "object",
|
|
6872
|
+
"additionalProperties": {
|
|
6873
|
+
"type": "string"
|
|
6874
|
+
},
|
|
6875
|
+
"description": "Multilingual subject keyed by IETF BCP 47 locale code (e.g. `en-US`, `pl-PL`). The DAL writes per-locale entries from the AI analyze + translate steps; the UI picks the right key based on `conversationLanguageCode`."
|
|
6870
6876
|
},
|
|
6871
6877
|
"body": {
|
|
6872
|
-
"
|
|
6873
|
-
|
|
6874
|
-
|
|
6875
|
-
|
|
6876
|
-
|
|
6877
|
-
"type": "object",
|
|
6878
|
-
"additionalProperties": true
|
|
6879
|
-
}
|
|
6880
|
-
]
|
|
6878
|
+
"type": "object",
|
|
6879
|
+
"additionalProperties": {
|
|
6880
|
+
"type": "string"
|
|
6881
|
+
},
|
|
6882
|
+
"description": "Multilingual HTML body keyed by IETF BCP 47 locale code. Same shape as `subject`. Body values are HTML strings; plain-text fallback is derived on send."
|
|
6881
6883
|
},
|
|
6882
6884
|
"shortCode": {
|
|
6883
6885
|
"type": "string"
|
|
@@ -7198,26 +7200,18 @@
|
|
|
7198
7200
|
"description": "BCC recipients. Each entry is an RFC 5322 address string."
|
|
7199
7201
|
},
|
|
7200
7202
|
"subject": {
|
|
7201
|
-
"
|
|
7202
|
-
|
|
7203
|
-
|
|
7204
|
-
|
|
7205
|
-
|
|
7206
|
-
"type": "object",
|
|
7207
|
-
"additionalProperties": true
|
|
7208
|
-
}
|
|
7209
|
-
]
|
|
7203
|
+
"type": "object",
|
|
7204
|
+
"additionalProperties": {
|
|
7205
|
+
"type": "string"
|
|
7206
|
+
},
|
|
7207
|
+
"description": "Multilingual subject keyed by IETF BCP 47 locale code (e.g. `en-US`, `pl-PL`). The DAL writes per-locale entries from the AI analyze + translate steps; the UI picks the right key based on `conversationLanguageCode`."
|
|
7210
7208
|
},
|
|
7211
7209
|
"body": {
|
|
7212
|
-
"
|
|
7213
|
-
|
|
7214
|
-
|
|
7215
|
-
|
|
7216
|
-
|
|
7217
|
-
"type": "object",
|
|
7218
|
-
"additionalProperties": true
|
|
7219
|
-
}
|
|
7220
|
-
]
|
|
7210
|
+
"type": "object",
|
|
7211
|
+
"additionalProperties": {
|
|
7212
|
+
"type": "string"
|
|
7213
|
+
},
|
|
7214
|
+
"description": "Multilingual HTML body keyed by IETF BCP 47 locale code. Same shape as `subject`. Body values are HTML strings; plain-text fallback is derived on send."
|
|
7221
7215
|
},
|
|
7222
7216
|
"shortCode": {
|
|
7223
7217
|
"type": "string"
|