@smartytalent/mcp-tools 0.1.33-dev.22 → 0.1.33-dev.23
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 +34 -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."
|
|
@@ -11405,6 +11417,28 @@
|
|
|
11405
11417
|
}
|
|
11406
11418
|
}
|
|
11407
11419
|
}
|
|
11420
|
+
},
|
|
11421
|
+
"conversations": {
|
|
11422
|
+
"title": "ChatRelationshipsConversationsSchema",
|
|
11423
|
+
"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.",
|
|
11424
|
+
"type": "object",
|
|
11425
|
+
"properties": {
|
|
11426
|
+
"data": {
|
|
11427
|
+
"type": "array",
|
|
11428
|
+
"items": {
|
|
11429
|
+
"title": "ChatRelationshipsConversationsDataSchema",
|
|
11430
|
+
"type": "object",
|
|
11431
|
+
"properties": {
|
|
11432
|
+
"type": {
|
|
11433
|
+
"type": "string"
|
|
11434
|
+
},
|
|
11435
|
+
"id": {
|
|
11436
|
+
"type": "string"
|
|
11437
|
+
}
|
|
11438
|
+
}
|
|
11439
|
+
}
|
|
11440
|
+
}
|
|
11441
|
+
}
|
|
11408
11442
|
}
|
|
11409
11443
|
}
|
|
11410
11444
|
},
|