@smartytalent/mcp-tools 0.1.33-dev.22 → 0.1.33-dev.24
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 +42 -0
- package/package.json +1 -1
package/dist/tools.json
CHANGED
|
@@ -2168,6 +2168,10 @@
|
|
|
2168
2168
|
"type": "string",
|
|
2169
2169
|
"description": "Specifies the email address to filter the results."
|
|
2170
2170
|
},
|
|
2171
|
+
"filterPhone": {
|
|
2172
|
+
"type": "string",
|
|
2173
|
+
"description": "Filter results by exact phone number. Numbers should be in E.164 format\n(e.g. `+48123456789`). Phone-based principal lookup is the SMS channel's\nidentity check, so listing candidates / talents by phone aligns admin\nUI views with what the SMS inbound gate sees. Backed by the PhoneIndex\nGSI on each table."
|
|
2174
|
+
},
|
|
2171
2175
|
"filterCreatedFrom": {
|
|
2172
2176
|
"type": "string",
|
|
2173
2177
|
"description": "Filters results to include only those created from the specified date and time. The value must be in ISO 8601 format."
|
|
@@ -4650,6 +4654,14 @@
|
|
|
4650
4654
|
"type": "string",
|
|
4651
4655
|
"description": "Filter candidates by exact shortCode value."
|
|
4652
4656
|
},
|
|
4657
|
+
"filterEmail": {
|
|
4658
|
+
"type": "string",
|
|
4659
|
+
"description": "Specifies the email address to filter the results."
|
|
4660
|
+
},
|
|
4661
|
+
"filterPhone": {
|
|
4662
|
+
"type": "string",
|
|
4663
|
+
"description": "Filter results by exact phone number. Numbers should be in E.164 format\n(e.g. `+48123456789`). Phone-based principal lookup is the SMS channel's\nidentity check, so listing candidates / talents by phone aligns admin\nUI views with what the SMS inbound gate sees. Backed by the PhoneIndex\nGSI on each table."
|
|
4664
|
+
},
|
|
4653
4665
|
"filterCreatedFrom": {
|
|
4654
4666
|
"type": "string",
|
|
4655
4667
|
"description": "Filters results to include only those created from the specified date and time. The value must be in ISO 8601 format."
|
|
@@ -11255,6 +11267,14 @@
|
|
|
11255
11267
|
"type": "string",
|
|
11256
11268
|
"description": "Filter chats by sender phone number (e.g. +48535517222)."
|
|
11257
11269
|
},
|
|
11270
|
+
"filterConversationId": {
|
|
11271
|
+
"type": "string",
|
|
11272
|
+
"description": "Returns all chat rows belonging to one conversation (thread).\nUsed by the chat web app's thread view to render messages\nchronologically. Backed by ConversationIdIndex GSI."
|
|
11273
|
+
},
|
|
11274
|
+
"sort": {
|
|
11275
|
+
"type": "string",
|
|
11276
|
+
"description": "Sort order. `created` for oldest-first, `-created` for newest-first.\nUse `created` for thread views (oldest-first message rendering)."
|
|
11277
|
+
},
|
|
11258
11278
|
"filterCreatedFrom": {
|
|
11259
11279
|
"type": "string",
|
|
11260
11280
|
"description": "Filters results to include only those created from the specified date and time. The value must be in ISO 8601 format."
|
|
@@ -11405,6 +11425,28 @@
|
|
|
11405
11425
|
}
|
|
11406
11426
|
}
|
|
11407
11427
|
}
|
|
11428
|
+
},
|
|
11429
|
+
"conversations": {
|
|
11430
|
+
"title": "ChatRelationshipsConversationsSchema",
|
|
11431
|
+
"description": "Thread the chat row belongs to. SMS replies on the same boe\nnumber share a conversation; the workflow engine parks runs\non the conversation's meta and reads parkedRunContext to\nresume on inbound. Mirror of EmailRelationshipsConversations.\nThe conversation id is also denormalised onto the chat row's\ninternal `conversationId` attribute (indexed by\nConversationIdIndex) for cheap per-thread history queries -\nAPI consumers should read it from this relationship, not\nfrom attributes.",
|
|
11432
|
+
"type": "object",
|
|
11433
|
+
"properties": {
|
|
11434
|
+
"data": {
|
|
11435
|
+
"type": "array",
|
|
11436
|
+
"items": {
|
|
11437
|
+
"title": "ChatRelationshipsConversationsDataSchema",
|
|
11438
|
+
"type": "object",
|
|
11439
|
+
"properties": {
|
|
11440
|
+
"type": {
|
|
11441
|
+
"type": "string"
|
|
11442
|
+
},
|
|
11443
|
+
"id": {
|
|
11444
|
+
"type": "string"
|
|
11445
|
+
}
|
|
11446
|
+
}
|
|
11447
|
+
}
|
|
11448
|
+
}
|
|
11449
|
+
}
|
|
11408
11450
|
}
|
|
11409
11451
|
}
|
|
11410
11452
|
},
|