@smartytalent/mcp-tools 0.1.33-dev.96 → 0.1.33-dev.98

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 +71 -0
  2. package/package.json +1 -1
package/dist/tools.json CHANGED
@@ -16912,6 +16912,14 @@
16912
16912
  "archived"
16913
16913
  ]
16914
16914
  },
16915
+ "filterTalentId": {
16916
+ "type": "string",
16917
+ "description": "Returns the conversations owned by a talent (the comms hub - all the talent's\nconversations across jobs/candidates, for the talent-details Communication tab).\nServed by the conversation TalentIndex GSI."
16918
+ },
16919
+ "filterCandidateId": {
16920
+ "type": "string",
16921
+ "description": "Returns the conversations for a single candidate (the per-job view of comms - one\nrecruitment context). Served by the conversation CandidateIndex GSI. (filterJobId\narrives once its GSI is deployed.)"
16922
+ },
16915
16923
  "filterCreatedFrom": {
16916
16924
  "type": "string",
16917
16925
  "description": "Filters results to include only those created from the specified date and time. The value must be in ISO 8601 format."
@@ -17092,6 +17100,69 @@
17092
17100
  }
17093
17101
  }
17094
17102
  },
17103
+ "chats": {
17104
+ "title": "ConversationRelationshipsChatsSchema",
17105
+ "type": "object",
17106
+ "properties": {
17107
+ "data": {
17108
+ "type": "array",
17109
+ "items": {
17110
+ "title": "ConversationRelationshipsChatsDataSchema",
17111
+ "type": "object",
17112
+ "properties": {
17113
+ "type": {
17114
+ "type": "string"
17115
+ },
17116
+ "id": {
17117
+ "type": "string"
17118
+ }
17119
+ }
17120
+ }
17121
+ }
17122
+ }
17123
+ },
17124
+ "calls": {
17125
+ "title": "ConversationRelationshipsCallsSchema",
17126
+ "type": "object",
17127
+ "properties": {
17128
+ "data": {
17129
+ "type": "array",
17130
+ "items": {
17131
+ "title": "ConversationRelationshipsCallsDataSchema",
17132
+ "type": "object",
17133
+ "properties": {
17134
+ "type": {
17135
+ "type": "string"
17136
+ },
17137
+ "id": {
17138
+ "type": "string"
17139
+ }
17140
+ }
17141
+ }
17142
+ }
17143
+ }
17144
+ },
17145
+ "meetings": {
17146
+ "title": "ConversationRelationshipsMeetingsSchema",
17147
+ "type": "object",
17148
+ "properties": {
17149
+ "data": {
17150
+ "type": "array",
17151
+ "items": {
17152
+ "title": "ConversationRelationshipsMeetingsDataSchema",
17153
+ "type": "object",
17154
+ "properties": {
17155
+ "type": {
17156
+ "type": "string"
17157
+ },
17158
+ "id": {
17159
+ "type": "string"
17160
+ }
17161
+ }
17162
+ }
17163
+ }
17164
+ }
17165
+ },
17095
17166
  "talent": {
17096
17167
  "title": "ConversationRelationshipsTalentSchema",
17097
17168
  "type": "object",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smartytalent/mcp-tools",
3
- "version": "0.1.33-dev.96",
3
+ "version": "0.1.33-dev.98",
4
4
  "description": "MCP tool definitions for SmartyTalent API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",