@smartytalent/mcp-tools 0.8.18 → 0.9.1

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 +239 -19
  2. package/package.json +1 -1
package/dist/tools.json CHANGED
@@ -2771,12 +2771,12 @@
2771
2771
  },
2772
2772
  "permissions": {
2773
2773
  "title": "RoleRelationshipsPermissionsSchema",
2774
+ "description": "Written only by the system-tenant bootstrap (sysowner roles); empty for every tenant-created role. The permission service itself is an unwired scaffold.",
2774
2775
  "type": "object",
2775
2776
  "properties": {
2776
2777
  "data": {
2777
2778
  "type": "array",
2778
2779
  "items": {
2779
- "title": "RoleRelationshipsPermissionsDataSchema",
2780
2780
  "type": "object",
2781
2781
  "properties": {
2782
2782
  "type": {
@@ -3102,6 +3102,8 @@
3102
3102
  "properties": {
3103
3103
  "data": {
3104
3104
  "type": "array",
3105
+ "maxItems": 1,
3106
+ "description": "Exactly one entry: the key authenticates AS this single user. Kept as an array (maxItems 1) for wire compatibility - decision 2026-08-14, PLAN_RELATIONSHIP_CONTRACT.md.",
3105
3107
  "items": {
3106
3108
  "title": "ApikeyRelationshipsUsersDataSchema",
3107
3109
  "type": "object",
@@ -3884,6 +3886,26 @@
3884
3886
  }
3885
3887
  }
3886
3888
  }
3889
+ },
3890
+ "tasks": {
3891
+ "title": "TalentRelationshipsTasksSchema",
3892
+ "type": "object",
3893
+ "properties": {
3894
+ "data": {
3895
+ "type": "array",
3896
+ "items": {
3897
+ "type": "object",
3898
+ "properties": {
3899
+ "type": {
3900
+ "type": "string"
3901
+ },
3902
+ "id": {
3903
+ "type": "string"
3904
+ }
3905
+ }
3906
+ }
3907
+ }
3908
+ }
3887
3909
  }
3888
3910
  }
3889
3911
  },
@@ -5081,6 +5103,48 @@
5081
5103
  }
5082
5104
  }
5083
5105
  }
5106
+ },
5107
+ "meta": {
5108
+ "title": "JobRelationshipsCandidatesMetaSchema",
5109
+ "type": "object",
5110
+ "description": "Live candidate counters maintained on the job row by the candidate\nlifecycle events (created/stage-changed/deleted), clamped to >= 0.\nPresent on both list and show responses. Server-maintained: any\nvalue sent in a request body is ignored. The scalable companion to\n`GET /v1/candidates?filterJobId=` - render badges from here, rows\nfrom the list.",
5111
+ "properties": {
5112
+ "total": {
5113
+ "type": "integer",
5114
+ "description": "Number of candidates on this job."
5115
+ },
5116
+ "byStage": {
5117
+ "title": "JobRelationshipsCandidatesMetaByStageSchema",
5118
+ "type": "object",
5119
+ "description": "Candidate count per v2 pipeline stage, in funnel order.\nDeprecated v1 stage values still stored on older candidate\nrows are folded into their v2 bucket by the counter\n(screened -> screening, interviewed -> interview, ...), so\nthese eight keys are the complete vocabulary. A missing key\nmeans zero. The values are designed to sum to `total`; a\npersistent mismatch means counter drift and is worth\nsurfacing, not hiding.",
5120
+ "properties": {
5121
+ "sourcing": {
5122
+ "type": "integer"
5123
+ },
5124
+ "screening": {
5125
+ "type": "integer"
5126
+ },
5127
+ "assessment": {
5128
+ "type": "integer"
5129
+ },
5130
+ "interview": {
5131
+ "type": "integer"
5132
+ },
5133
+ "offer": {
5134
+ "type": "integer"
5135
+ },
5136
+ "hired": {
5137
+ "type": "integer"
5138
+ },
5139
+ "onboarding": {
5140
+ "type": "integer"
5141
+ },
5142
+ "evaluation": {
5143
+ "type": "integer"
5144
+ }
5145
+ }
5146
+ }
5147
+ }
5084
5148
  }
5085
5149
  }
5086
5150
  },
@@ -6471,6 +6535,26 @@
6471
6535
  }
6472
6536
  }
6473
6537
  }
6538
+ },
6539
+ "tasks": {
6540
+ "title": "CandidateRelationshipsTasksSchema",
6541
+ "type": "object",
6542
+ "properties": {
6543
+ "data": {
6544
+ "type": "array",
6545
+ "items": {
6546
+ "type": "object",
6547
+ "properties": {
6548
+ "type": {
6549
+ "type": "string"
6550
+ },
6551
+ "id": {
6552
+ "type": "string"
6553
+ }
6554
+ }
6555
+ }
6556
+ }
6557
+ }
6474
6558
  }
6475
6559
  }
6476
6560
  },
@@ -7005,6 +7089,26 @@
7005
7089
  }
7006
7090
  }
7007
7091
  }
7092
+ },
7093
+ "tasks": {
7094
+ "title": "CandidateRelationshipsTasksSchema",
7095
+ "type": "object",
7096
+ "properties": {
7097
+ "data": {
7098
+ "type": "array",
7099
+ "items": {
7100
+ "type": "object",
7101
+ "properties": {
7102
+ "type": {
7103
+ "type": "string"
7104
+ },
7105
+ "id": {
7106
+ "type": "string"
7107
+ }
7108
+ }
7109
+ }
7110
+ }
7111
+ }
7008
7112
  }
7009
7113
  }
7010
7114
  }
@@ -8183,6 +8287,86 @@
8183
8287
  }
8184
8288
  }
8185
8289
  }
8290
+ },
8291
+ "users": {
8292
+ "title": "EmailRelationshipsUsersSchema",
8293
+ "type": "object",
8294
+ "properties": {
8295
+ "data": {
8296
+ "type": "array",
8297
+ "items": {
8298
+ "type": "object",
8299
+ "properties": {
8300
+ "type": {
8301
+ "type": "string"
8302
+ },
8303
+ "id": {
8304
+ "type": "string"
8305
+ }
8306
+ }
8307
+ }
8308
+ }
8309
+ }
8310
+ },
8311
+ "jobs": {
8312
+ "title": "EmailRelationshipsJobsSchema",
8313
+ "type": "object",
8314
+ "properties": {
8315
+ "data": {
8316
+ "type": "array",
8317
+ "items": {
8318
+ "type": "object",
8319
+ "properties": {
8320
+ "type": {
8321
+ "type": "string"
8322
+ },
8323
+ "id": {
8324
+ "type": "string"
8325
+ }
8326
+ }
8327
+ }
8328
+ }
8329
+ }
8330
+ },
8331
+ "assessments": {
8332
+ "title": "EmailRelationshipsAssessmentsSchema",
8333
+ "type": "object",
8334
+ "properties": {
8335
+ "data": {
8336
+ "type": "array",
8337
+ "items": {
8338
+ "type": "object",
8339
+ "properties": {
8340
+ "type": {
8341
+ "type": "string"
8342
+ },
8343
+ "id": {
8344
+ "type": "string"
8345
+ }
8346
+ }
8347
+ }
8348
+ }
8349
+ }
8350
+ },
8351
+ "ads": {
8352
+ "title": "EmailRelationshipsAdsSchema",
8353
+ "type": "object",
8354
+ "properties": {
8355
+ "data": {
8356
+ "type": "array",
8357
+ "items": {
8358
+ "type": "object",
8359
+ "properties": {
8360
+ "type": {
8361
+ "type": "string"
8362
+ },
8363
+ "id": {
8364
+ "type": "string"
8365
+ }
8366
+ }
8367
+ }
8368
+ }
8369
+ }
8186
8370
  }
8187
8371
  }
8188
8372
  },
@@ -8633,8 +8817,9 @@
8633
8817
  }
8634
8818
  },
8635
8819
  "relationships": {
8636
- "title": "FormRelationshipsSchema",
8820
+ "title": "FormWriteRelationshipsSchema",
8637
8821
  "type": "object",
8822
+ "description": "WRITE shape for request bodies: the storage-convention plural keys the services and the existing SDK writer classes use. Responses use the wire-shaped <X>RelationshipsSchema instead - the two deliberately differ (PLAN_RELATIONSHIP_CONTRACT.md).",
8638
8823
  "properties": {}
8639
8824
  }
8640
8825
  }
@@ -9204,8 +9389,9 @@
9204
9389
  }
9205
9390
  },
9206
9391
  "relationships": {
9207
- "title": "FeedbackRelationshipsSchema",
9392
+ "title": "FeedbackWriteRelationshipsSchema",
9208
9393
  "type": "object",
9394
+ "description": "WRITE shape for request bodies: the storage-convention plural keys the services and the existing SDK writer classes use. Responses use the wire-shaped <X>RelationshipsSchema instead - the two deliberately differ (PLAN_RELATIONSHIP_CONTRACT.md).",
9209
9395
  "properties": {
9210
9396
  "jobs": {
9211
9397
  "title": "FeedbackRelationshipsJobsSchema",
@@ -9619,8 +9805,9 @@
9619
9805
  }
9620
9806
  },
9621
9807
  "relationships": {
9622
- "title": "FeedbackRelationshipsSchema",
9808
+ "title": "FeedbackWriteRelationshipsSchema",
9623
9809
  "type": "object",
9810
+ "description": "WRITE shape for request bodies: the storage-convention plural keys the services and the existing SDK writer classes use. Responses use the wire-shaped <X>RelationshipsSchema instead - the two deliberately differ (PLAN_RELATIONSHIP_CONTRACT.md).",
9624
9811
  "properties": {
9625
9812
  "jobs": {
9626
9813
  "title": "FeedbackRelationshipsJobsSchema",
@@ -12149,8 +12336,9 @@
12149
12336
  }
12150
12337
  },
12151
12338
  "relationships": {
12152
- "title": "SubmissionRelationshipsSchema",
12339
+ "title": "SubmissionWriteRelationshipsSchema",
12153
12340
  "type": "object",
12341
+ "description": "WRITE shape for request bodies: the storage-convention plural keys the services and the existing SDK writer classes use. Responses use the wire-shaped <X>RelationshipsSchema instead - the two deliberately differ (PLAN_RELATIONSHIP_CONTRACT.md).",
12154
12342
  "properties": {
12155
12343
  "forms": {
12156
12344
  "title": "SubmissionRelationshipsFormsSchema",
@@ -12664,8 +12852,9 @@
12664
12852
  }
12665
12853
  },
12666
12854
  "relationships": {
12667
- "title": "SubmissionRelationshipsSchema",
12855
+ "title": "SubmissionWriteRelationshipsSchema",
12668
12856
  "type": "object",
12857
+ "description": "WRITE shape for request bodies: the storage-convention plural keys the services and the existing SDK writer classes use. Responses use the wire-shaped <X>RelationshipsSchema instead - the two deliberately differ (PLAN_RELATIONSHIP_CONTRACT.md).",
12669
12858
  "properties": {
12670
12859
  "forms": {
12671
12860
  "title": "SubmissionRelationshipsFormsSchema",
@@ -13065,8 +13254,9 @@
13065
13254
  }
13066
13255
  },
13067
13256
  "relationships": {
13068
- "title": "BriefRelationshipsSchema",
13257
+ "title": "BriefWriteRelationshipsSchema",
13069
13258
  "type": "object",
13259
+ "description": "WRITE shape for request bodies: the storage-convention plural keys the services and the existing SDK writer classes use. Responses use the wire-shaped <X>RelationshipsSchema instead - the two deliberately differ (PLAN_RELATIONSHIP_CONTRACT.md).",
13070
13260
  "properties": {
13071
13261
  "jobs": {
13072
13262
  "title": "BriefRelationshipsJobsSchema",
@@ -13491,8 +13681,9 @@
13491
13681
  }
13492
13682
  },
13493
13683
  "relationships": {
13494
- "title": "BriefRelationshipsSchema",
13684
+ "title": "BriefWriteRelationshipsSchema",
13495
13685
  "type": "object",
13686
+ "description": "WRITE shape for request bodies: the storage-convention plural keys the services and the existing SDK writer classes use. Responses use the wire-shaped <X>RelationshipsSchema instead - the two deliberately differ (PLAN_RELATIONSHIP_CONTRACT.md).",
13496
13687
  "properties": {
13497
13688
  "jobs": {
13498
13689
  "title": "BriefRelationshipsJobsSchema",
@@ -20695,8 +20886,9 @@
20695
20886
  }
20696
20887
  },
20697
20888
  "relationships": {
20698
- "title": "ReportRelationshipsSchema",
20889
+ "title": "ReportWriteRelationshipsSchema",
20699
20890
  "type": "object",
20891
+ "description": "WRITE shape for request bodies: the storage-convention plural keys the services and the existing SDK writer classes use. Responses use the wire-shaped <X>RelationshipsSchema instead - the two deliberately differ (PLAN_RELATIONSHIP_CONTRACT.md).",
20700
20892
  "properties": {
20701
20893
  "tenants": {
20702
20894
  "title": "ReportRelationshipsTenantsSchema",
@@ -20910,6 +21102,10 @@
20910
21102
  "archived"
20911
21103
  ]
20912
21104
  },
21105
+ "filterJobId": {
21106
+ "type": "string",
21107
+ "description": "Returns the ads generated for the given job (JobIndex lookup)."
21108
+ },
20913
21109
  "filterCreatedFrom": {
20914
21110
  "type": "string",
20915
21111
  "description": "Filters results to include only those created from the specified date and time. The value must be in ISO 8601 format."
@@ -21955,19 +22151,23 @@
21955
22151
  "title": "AssessmentRelationshipsSchema",
21956
22152
  "type": "object",
21957
22153
  "properties": {
21958
- "candidate": {
21959
- "title": "AssessmentRelationshipsCandidateSchema",
22154
+ "candidates": {
22155
+ "title": "AssessmentRelationshipsCandidatesSchema",
22156
+ "description": "Candidate-mode assessments stamp the candidates they screen; to-many on rows and on the wire.",
21960
22157
  "type": "object",
21961
22158
  "properties": {
21962
22159
  "data": {
21963
- "title": "AssessmentRelationshipsCandidateDataSchema",
21964
- "type": "object",
21965
- "properties": {
21966
- "type": {
21967
- "type": "string"
21968
- },
21969
- "id": {
21970
- "type": "string"
22160
+ "type": "array",
22161
+ "items": {
22162
+ "title": "AssessmentRelationshipsCandidatesDataSchema",
22163
+ "type": "object",
22164
+ "properties": {
22165
+ "type": {
22166
+ "type": "string"
22167
+ },
22168
+ "id": {
22169
+ "type": "string"
22170
+ }
21971
22171
  }
21972
22172
  }
21973
22173
  }
@@ -25215,6 +25415,26 @@
25215
25415
  }
25216
25416
  }
25217
25417
  }
25418
+ },
25419
+ "calls": {
25420
+ "title": "NotificationRelationshipsCallsSchema",
25421
+ "type": "object",
25422
+ "properties": {
25423
+ "data": {
25424
+ "type": "array",
25425
+ "items": {
25426
+ "type": "object",
25427
+ "properties": {
25428
+ "type": {
25429
+ "type": "string"
25430
+ },
25431
+ "id": {
25432
+ "type": "string"
25433
+ }
25434
+ }
25435
+ }
25436
+ }
25437
+ }
25218
25438
  }
25219
25439
  }
25220
25440
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smartytalent/mcp-tools",
3
- "version": "0.8.18",
3
+ "version": "0.9.1",
4
4
  "description": "MCP tool definitions for SmartyTalent API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",