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

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 +112 -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.",
@@ -9577,6 +9599,14 @@
9577
9599
  },
9578
9600
  "contentType": {
9579
9601
  "type": "string"
9602
+ },
9603
+ "fileKey": {
9604
+ "type": "string",
9605
+ "description": "S3 key in the submission bucket. The screening workflow reads files.N.fileKey."
9606
+ },
9607
+ "originalFilename": {
9608
+ "type": "string",
9609
+ "description": "Original filename as uploaded/imported. The screening workflow reads files.N.originalFilename."
9580
9610
  }
9581
9611
  }
9582
9612
  }
@@ -9609,6 +9639,10 @@
9609
9639
  }
9610
9640
  }
9611
9641
  },
9642
+ "meta": {
9643
+ "type": "object",
9644
+ "description": "Free-form metadata. meta.external carries ATS import correlation ({source, jobShortCode, talentShortCode, applicationShortCode, ttl}); meta.userId is stamped server-side on create. CREATE-ONLY today: the update path ignores meta."
9645
+ },
9612
9646
  "timestamps": {
9613
9647
  "title": "ResourceTimestampsSchema",
9614
9648
  "type": "object",
@@ -10078,6 +10112,14 @@
10078
10112
  },
10079
10113
  "contentType": {
10080
10114
  "type": "string"
10115
+ },
10116
+ "fileKey": {
10117
+ "type": "string",
10118
+ "description": "S3 key in the submission bucket. The screening workflow reads files.N.fileKey."
10119
+ },
10120
+ "originalFilename": {
10121
+ "type": "string",
10122
+ "description": "Original filename as uploaded/imported. The screening workflow reads files.N.originalFilename."
10081
10123
  }
10082
10124
  }
10083
10125
  }
@@ -10110,6 +10152,10 @@
10110
10152
  }
10111
10153
  }
10112
10154
  },
10155
+ "meta": {
10156
+ "type": "object",
10157
+ "description": "Free-form metadata. meta.external carries ATS import correlation ({source, jobShortCode, talentShortCode, applicationShortCode, ttl}); meta.userId is stamped server-side on create. CREATE-ONLY today: the update path ignores meta."
10158
+ },
10113
10159
  "timestamps": {
10114
10160
  "title": "ResourceTimestampsSchema",
10115
10161
  "type": "object",
@@ -11812,6 +11858,28 @@
11812
11858
  "type": "object",
11813
11859
  "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
11860
  "properties": {
11861
+ "files": {
11862
+ "title": "CallRelationshipsFilesSchema",
11863
+ "description": "File attachments shared on this call (File entities). To-many; container-owns-files.",
11864
+ "type": "object",
11865
+ "properties": {
11866
+ "data": {
11867
+ "type": "array",
11868
+ "items": {
11869
+ "title": "CallRelationshipsFilesDataSchema",
11870
+ "type": "object",
11871
+ "properties": {
11872
+ "type": {
11873
+ "type": "string"
11874
+ },
11875
+ "id": {
11876
+ "type": "string"
11877
+ }
11878
+ }
11879
+ }
11880
+ }
11881
+ }
11882
+ },
11815
11883
  "links": {
11816
11884
  "title": "CallRelationshipsLinksSchema",
11817
11885
  "description": "URLs shared during this call, each fetched to markdown (Crawl4AI Link). To-many; container-owns-links.",
@@ -12927,6 +12995,28 @@
12927
12995
  "type": "object",
12928
12996
  "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
12997
  "properties": {
12998
+ "files": {
12999
+ "title": "ChatRelationshipsFilesSchema",
13000
+ "description": "File attachments sent in this chat (File entities). To-many; container-owns-files.",
13001
+ "type": "object",
13002
+ "properties": {
13003
+ "data": {
13004
+ "type": "array",
13005
+ "items": {
13006
+ "title": "ChatRelationshipsFilesDataSchema",
13007
+ "type": "object",
13008
+ "properties": {
13009
+ "type": {
13010
+ "type": "string"
13011
+ },
13012
+ "id": {
13013
+ "type": "string"
13014
+ }
13015
+ }
13016
+ }
13017
+ }
13018
+ }
13019
+ },
12930
13020
  "links": {
12931
13021
  "title": "ChatRelationshipsLinksSchema",
12932
13022
  "description": "URLs shared in this chat, each fetched to markdown (Crawl4AI Link). To-many; container-owns-links.",
@@ -15373,6 +15463,28 @@
15373
15463
  "title": "MeetingRelationshipsSchema",
15374
15464
  "type": "object",
15375
15465
  "properties": {
15466
+ "files": {
15467
+ "title": "MeetingRelationshipsFilesSchema",
15468
+ "description": "File attachments shared in this meeting (File entities). To-many; container-owns-files.",
15469
+ "type": "object",
15470
+ "properties": {
15471
+ "data": {
15472
+ "type": "array",
15473
+ "items": {
15474
+ "title": "MeetingRelationshipsFilesDataSchema",
15475
+ "type": "object",
15476
+ "properties": {
15477
+ "type": {
15478
+ "type": "string"
15479
+ },
15480
+ "id": {
15481
+ "type": "string"
15482
+ }
15483
+ }
15484
+ }
15485
+ }
15486
+ }
15487
+ },
15376
15488
  "links": {
15377
15489
  "title": "MeetingRelationshipsLinksSchema",
15378
15490
  "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.102",
4
4
  "description": "MCP tool definitions for SmartyTalent API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",