@smartytalent/mcp-tools 0.1.25 → 0.1.26

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 +210 -33
  2. package/package.json +1 -1
package/dist/tools.json CHANGED
@@ -4566,14 +4566,10 @@
4566
4566
  "attributes": {
4567
4567
  "title": "CandidateAttributesSchema",
4568
4568
  "type": "object",
4569
- "required": [
4570
- "name",
4571
- "email"
4572
- ],
4573
4569
  "properties": {
4574
4570
  "name": {
4575
4571
  "type": "string",
4576
- "description": "Full name of the candidate"
4572
+ "description": "Full name of the candidate. Required on create."
4577
4573
  },
4578
4574
  "email": {
4579
4575
  "type": "string",
@@ -5106,8 +5102,7 @@
5106
5102
  "type": "object",
5107
5103
  "required": [
5108
5104
  "type",
5109
- "id",
5110
- "attributes"
5105
+ "id"
5111
5106
  ],
5112
5107
  "properties": {
5113
5108
  "type": {
@@ -5122,14 +5117,10 @@
5122
5117
  "attributes": {
5123
5118
  "title": "CandidateAttributesSchema",
5124
5119
  "type": "object",
5125
- "required": [
5126
- "name",
5127
- "email"
5128
- ],
5129
5120
  "properties": {
5130
5121
  "name": {
5131
5122
  "type": "string",
5132
- "description": "Full name of the candidate"
5123
+ "description": "Full name of the candidate. Required on create."
5133
5124
  },
5134
5125
  "email": {
5135
5126
  "type": "string",
@@ -5468,6 +5459,132 @@
5468
5459
  "additionalProperties": true
5469
5460
  }
5470
5461
  }
5462
+ },
5463
+ "relationships": {
5464
+ "title": "CandidateRelationshipsSchema",
5465
+ "type": "object",
5466
+ "properties": {
5467
+ "job": {
5468
+ "title": "CandidateRelationshipsJobSchema",
5469
+ "type": "object",
5470
+ "properties": {
5471
+ "data": {
5472
+ "title": "CandidateRelationshipsJobDataSchema",
5473
+ "type": "object",
5474
+ "properties": {
5475
+ "type": {
5476
+ "type": "string"
5477
+ },
5478
+ "id": {
5479
+ "type": "string"
5480
+ }
5481
+ }
5482
+ }
5483
+ }
5484
+ },
5485
+ "talent": {
5486
+ "title": "CandidateRelationshipsTalentSchema",
5487
+ "type": "object",
5488
+ "properties": {
5489
+ "data": {
5490
+ "title": "CandidateRelationshipsTalentDataSchema",
5491
+ "type": "object",
5492
+ "properties": {
5493
+ "type": {
5494
+ "type": "string"
5495
+ },
5496
+ "id": {
5497
+ "type": "string"
5498
+ }
5499
+ }
5500
+ }
5501
+ }
5502
+ },
5503
+ "files": {
5504
+ "title": "CandidateRelationshipsFilesSchema",
5505
+ "type": "object",
5506
+ "properties": {
5507
+ "data": {
5508
+ "type": "array",
5509
+ "items": {
5510
+ "title": "CandidateRelationshipsFilesDataSchema",
5511
+ "type": "object",
5512
+ "properties": {
5513
+ "type": {
5514
+ "type": "string"
5515
+ },
5516
+ "id": {
5517
+ "type": "string"
5518
+ }
5519
+ }
5520
+ }
5521
+ }
5522
+ }
5523
+ },
5524
+ "forms": {
5525
+ "title": "CandidateRelationshipsFormsSchema",
5526
+ "type": "object",
5527
+ "properties": {
5528
+ "data": {
5529
+ "type": "array",
5530
+ "items": {
5531
+ "title": "CandidateRelationshipsFormsDataSchema",
5532
+ "type": "object",
5533
+ "properties": {
5534
+ "type": {
5535
+ "type": "string"
5536
+ },
5537
+ "id": {
5538
+ "type": "string"
5539
+ }
5540
+ }
5541
+ }
5542
+ }
5543
+ }
5544
+ },
5545
+ "translations": {
5546
+ "title": "CandidateRelationshipsTranslationsSchema",
5547
+ "type": "object",
5548
+ "properties": {
5549
+ "data": {
5550
+ "type": "array",
5551
+ "items": {
5552
+ "title": "CandidateRelationshipsTranslationsDataSchema",
5553
+ "type": "object",
5554
+ "properties": {
5555
+ "type": {
5556
+ "type": "string"
5557
+ },
5558
+ "id": {
5559
+ "type": "string"
5560
+ }
5561
+ }
5562
+ }
5563
+ }
5564
+ }
5565
+ },
5566
+ "operations": {
5567
+ "title": "CandidateRelationshipsOperationsSchema",
5568
+ "type": "object",
5569
+ "properties": {
5570
+ "data": {
5571
+ "type": "array",
5572
+ "items": {
5573
+ "title": "CandidateRelationshipsOperationsDataSchema",
5574
+ "type": "object",
5575
+ "properties": {
5576
+ "type": {
5577
+ "type": "string"
5578
+ },
5579
+ "id": {
5580
+ "type": "string"
5581
+ }
5582
+ }
5583
+ }
5584
+ }
5585
+ }
5586
+ }
5587
+ }
5471
5588
  }
5472
5589
  }
5473
5590
  }
@@ -7725,28 +7842,33 @@
7725
7842
  "attributes": {
7726
7843
  "title": "SubmissionAttributesSchema",
7727
7844
  "type": "object",
7728
- "required": [
7729
- "name",
7730
- "email"
7731
- ],
7732
7845
  "properties": {
7733
7846
  "name": {
7734
- "type": "string"
7847
+ "type": "string",
7848
+ "description": "Required on create"
7735
7849
  },
7736
7850
  "email": {
7737
- "type": "string"
7851
+ "type": "string",
7852
+ "description": "Required on create"
7738
7853
  },
7739
7854
  "phone": {
7740
7855
  "type": "string"
7741
7856
  },
7742
- "source": {
7857
+ "channel": {
7743
7858
  "type": "string",
7744
7859
  "enum": [
7745
7860
  "form",
7746
7861
  "email",
7747
7862
  "call",
7748
- "api"
7749
- ]
7863
+ "chat",
7864
+ "api",
7865
+ "agent"
7866
+ ],
7867
+ "description": "How the submission entered the system"
7868
+ },
7869
+ "source": {
7870
+ "type": "string",
7871
+ "description": "Where the candidate originated (e.g., careerPage, jobBoard, linkedin, talentPool)"
7750
7872
  },
7751
7873
  "type": {
7752
7874
  "type": "string",
@@ -8087,6 +8209,10 @@
8087
8209
  }
8088
8210
  }
8089
8211
  },
8212
+ "source": {
8213
+ "type": "string",
8214
+ "description": "Where the candidate found the job (e.g., careerPage, jobBoard, linkedin)"
8215
+ },
8090
8216
  "consentCurrent": {
8091
8217
  "type": "boolean"
8092
8218
  },
@@ -8202,8 +8328,7 @@
8202
8328
  "type": "object",
8203
8329
  "required": [
8204
8330
  "type",
8205
- "id",
8206
- "attributes"
8331
+ "id"
8207
8332
  ],
8208
8333
  "properties": {
8209
8334
  "type": {
@@ -8218,28 +8343,33 @@
8218
8343
  "attributes": {
8219
8344
  "title": "SubmissionAttributesSchema",
8220
8345
  "type": "object",
8221
- "required": [
8222
- "name",
8223
- "email"
8224
- ],
8225
8346
  "properties": {
8226
8347
  "name": {
8227
- "type": "string"
8348
+ "type": "string",
8349
+ "description": "Required on create"
8228
8350
  },
8229
8351
  "email": {
8230
- "type": "string"
8352
+ "type": "string",
8353
+ "description": "Required on create"
8231
8354
  },
8232
8355
  "phone": {
8233
8356
  "type": "string"
8234
8357
  },
8235
- "source": {
8358
+ "channel": {
8236
8359
  "type": "string",
8237
8360
  "enum": [
8238
8361
  "form",
8239
8362
  "email",
8240
8363
  "call",
8241
- "api"
8242
- ]
8364
+ "chat",
8365
+ "api",
8366
+ "agent"
8367
+ ],
8368
+ "description": "How the submission entered the system"
8369
+ },
8370
+ "source": {
8371
+ "type": "string",
8372
+ "description": "Where the candidate originated (e.g., careerPage, jobBoard, linkedin, talentPool)"
8243
8373
  },
8244
8374
  "type": {
8245
8375
  "type": "string",
@@ -13329,8 +13459,55 @@
13329
13459
  "name": "update_run",
13330
13460
  "description": "Update Run",
13331
13461
  "inputSchema": {
13462
+ "title": "UpdateRunRequestBody",
13332
13463
  "type": "object",
13333
- "properties": {}
13464
+ "required": [
13465
+ "data"
13466
+ ],
13467
+ "properties": {
13468
+ "data": {
13469
+ "title": "UpdateRunRequestBodyData",
13470
+ "type": "object",
13471
+ "required": [
13472
+ "type",
13473
+ "id",
13474
+ "attributes"
13475
+ ],
13476
+ "properties": {
13477
+ "type": {
13478
+ "type": "string",
13479
+ "enum": [
13480
+ "runs"
13481
+ ]
13482
+ },
13483
+ "id": {
13484
+ "type": "string"
13485
+ },
13486
+ "attributes": {
13487
+ "title": "UpdateRunAttributesSchema",
13488
+ "type": "object",
13489
+ "required": [
13490
+ "status"
13491
+ ],
13492
+ "properties": {
13493
+ "status": {
13494
+ "type": "string",
13495
+ "enum": [
13496
+ "running",
13497
+ "aborted"
13498
+ ],
13499
+ "description": "Target status. 'running' redrives a failed/paused/completed run; 'aborted' cancels a pending/running run."
13500
+ },
13501
+ "fromStep": {
13502
+ "type": "integer",
13503
+ "minimum": 0,
13504
+ "description": "Only valid when status=running. Zero-based index of the step to redrive from. All step results from this index onwards are discarded. If omitted, resumes from the last failed/paused step (legacy behavior)."
13505
+ }
13506
+ }
13507
+ }
13508
+ }
13509
+ }
13510
+ }
13334
13511
  },
13335
13512
  "_meta": {
13336
13513
  "method": "PATCH",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smartytalent/mcp-tools",
3
- "version": "0.1.25",
3
+ "version": "0.1.26",
4
4
  "description": "MCP tool definitions for SmartyTalent API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",