@smartytalent/mcp-tools 0.1.33-dev.100 → 0.1.33-dev.101

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 +88 -0
  2. package/package.json +1 -1
package/dist/tools.json CHANGED
@@ -7268,6 +7268,28 @@
7268
7268
  "title": "EmailRelationshipsSchema",
7269
7269
  "type": "object",
7270
7270
  "properties": {
7271
+ "files": {
7272
+ "title": "EmailRelationshipsFilesSchema",
7273
+ "description": "File attachments on this email (File entities). To-many; container-owns-files.",
7274
+ "type": "object",
7275
+ "properties": {
7276
+ "data": {
7277
+ "type": "array",
7278
+ "items": {
7279
+ "title": "EmailRelationshipsFilesDataSchema",
7280
+ "type": "object",
7281
+ "properties": {
7282
+ "type": {
7283
+ "type": "string"
7284
+ },
7285
+ "id": {
7286
+ "type": "string"
7287
+ }
7288
+ }
7289
+ }
7290
+ }
7291
+ }
7292
+ },
7271
7293
  "links": {
7272
7294
  "title": "EmailRelationshipsLinksSchema",
7273
7295
  "description": "URLs shared in this email, each fetched to markdown (Crawl4AI Link). To-many; container-owns-links.",
@@ -11812,6 +11834,28 @@
11812
11834
  "type": "object",
11813
11835
  "description": "Relationship slots on the call resource. Principal slots are\nto-one (`links`, shared URLs, is to-many). Direction\n+ attributes.fromType / toType tell you which side of the\nconversation each principal occupies. Mirror of chat's slot\nset with two voice-specific additions: `job` (call about a\nspecific opening) and `brief` (call collecting / clarifying\na specific brief). `boeUser` is split from `user` so the AI\nagent has a dedicated slot - `user` is reserved for human\ncounterparties (3-way conference recruiter, future user-to-\nuser webapp/Teams chat).",
11814
11836
  "properties": {
11837
+ "files": {
11838
+ "title": "CallRelationshipsFilesSchema",
11839
+ "description": "File attachments shared on this call (File entities). To-many; container-owns-files.",
11840
+ "type": "object",
11841
+ "properties": {
11842
+ "data": {
11843
+ "type": "array",
11844
+ "items": {
11845
+ "title": "CallRelationshipsFilesDataSchema",
11846
+ "type": "object",
11847
+ "properties": {
11848
+ "type": {
11849
+ "type": "string"
11850
+ },
11851
+ "id": {
11852
+ "type": "string"
11853
+ }
11854
+ }
11855
+ }
11856
+ }
11857
+ }
11858
+ },
11815
11859
  "links": {
11816
11860
  "title": "CallRelationshipsLinksSchema",
11817
11861
  "description": "URLs shared during this call, each fetched to markdown (Crawl4AI Link). To-many; container-owns-links.",
@@ -12927,6 +12971,28 @@
12927
12971
  "type": "object",
12928
12972
  "description": "Relationship slots for a chat row. Principal slots are to-one\n(`links`, shared URLs, is to-many). Direction +\nattributes.fromType / toType tell you which side of the\nconversation each principal is on - we don't duplicate that\ninto directional relationship names. For boe-mediated flows\nat most two of {user, candidate, talent} are populated per\nrow: the external party (candidate or talent) and, on outbound,\nthe boe user that signed the message.",
12929
12973
  "properties": {
12974
+ "files": {
12975
+ "title": "ChatRelationshipsFilesSchema",
12976
+ "description": "File attachments sent in this chat (File entities). To-many; container-owns-files.",
12977
+ "type": "object",
12978
+ "properties": {
12979
+ "data": {
12980
+ "type": "array",
12981
+ "items": {
12982
+ "title": "ChatRelationshipsFilesDataSchema",
12983
+ "type": "object",
12984
+ "properties": {
12985
+ "type": {
12986
+ "type": "string"
12987
+ },
12988
+ "id": {
12989
+ "type": "string"
12990
+ }
12991
+ }
12992
+ }
12993
+ }
12994
+ }
12995
+ },
12930
12996
  "links": {
12931
12997
  "title": "ChatRelationshipsLinksSchema",
12932
12998
  "description": "URLs shared in this chat, each fetched to markdown (Crawl4AI Link). To-many; container-owns-links.",
@@ -15373,6 +15439,28 @@
15373
15439
  "title": "MeetingRelationshipsSchema",
15374
15440
  "type": "object",
15375
15441
  "properties": {
15442
+ "files": {
15443
+ "title": "MeetingRelationshipsFilesSchema",
15444
+ "description": "File attachments shared in this meeting (File entities). To-many; container-owns-files.",
15445
+ "type": "object",
15446
+ "properties": {
15447
+ "data": {
15448
+ "type": "array",
15449
+ "items": {
15450
+ "title": "MeetingRelationshipsFilesDataSchema",
15451
+ "type": "object",
15452
+ "properties": {
15453
+ "type": {
15454
+ "type": "string"
15455
+ },
15456
+ "id": {
15457
+ "type": "string"
15458
+ }
15459
+ }
15460
+ }
15461
+ }
15462
+ }
15463
+ },
15376
15464
  "links": {
15377
15465
  "title": "MeetingRelationshipsLinksSchema",
15378
15466
  "description": "URLs shared in this meeting, each fetched to markdown (Crawl4AI Link). To-many; container-owns-links.",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smartytalent/mcp-tools",
3
- "version": "0.1.33-dev.100",
3
+ "version": "0.1.33-dev.101",
4
4
  "description": "MCP tool definitions for SmartyTalent API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",