@smartytalent/mcp-tools 0.9.25 → 0.9.27
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.
- package/dist/tools.json +305 -6
- package/package.json +1 -1
package/dist/tools.json
CHANGED
|
@@ -26387,6 +26387,41 @@
|
|
|
26387
26387
|
"filterTalentId": {
|
|
26388
26388
|
"type": "string",
|
|
26389
26389
|
"description": "filterTalentId parameter"
|
|
26390
|
+
},
|
|
26391
|
+
"filterStatus": {
|
|
26392
|
+
"type": "string",
|
|
26393
|
+
"description": "filterStatus parameter",
|
|
26394
|
+
"enum": [
|
|
26395
|
+
"draft",
|
|
26396
|
+
"active",
|
|
26397
|
+
"closed"
|
|
26398
|
+
]
|
|
26399
|
+
},
|
|
26400
|
+
"pageSize": {
|
|
26401
|
+
"type": "integer",
|
|
26402
|
+
"description": "Specifies the number of items to retrieve per page. The maximum value is 100."
|
|
26403
|
+
},
|
|
26404
|
+
"pageNumber": {
|
|
26405
|
+
"type": "integer",
|
|
26406
|
+
"description": "Specifies the page number to retrieve. Used for traditional pagination."
|
|
26407
|
+
},
|
|
26408
|
+
"pageAfter": {
|
|
26409
|
+
"type": "string",
|
|
26410
|
+
"description": "Opaque base64-encoded cursor returned by a previous list response, used for forward cursor-based pagination. Pass the value verbatim; do not decode or mutate it."
|
|
26411
|
+
},
|
|
26412
|
+
"pageBefore": {
|
|
26413
|
+
"type": "string",
|
|
26414
|
+
"description": "Returns the data encoded in Base64 format, used for cursor-based pagination"
|
|
26415
|
+
},
|
|
26416
|
+
"sort": {
|
|
26417
|
+
"type": "string",
|
|
26418
|
+
"description": "Order results by a time field. Leading `-` means descending\n(newest-first). Accepted values:\n `-created` newest-first by creation time (CreatedIndex)\n `created` oldest-first by creation time\n `-modified` most-recently-modified first (ModifiedIndex)\n `modified` least-recently-modified first\nWith `filterStatus` the order is honoured on page-number\npagination (pageNumber): the matching ids are read from the\nstatus index with the sort field and ordered globally before the\npage is cut (since 2026-09-06). Cursor pagination (pageAfter /\npageBefore) and the other equality filters (filterCandidate,\nfilterHost, filterJob, filterShortCode, etc.) keep their own\nindex order; there sort has no effect. Compatible with\ndate-range filters (filterCreatedFrom/To, filterModifiedFrom/To)\nwhich already use the same indexes; sort just picks the\ndirection. On a capped list (meta.page.totalItemsCapped) the\norder applies within the capped window.",
|
|
26419
|
+
"enum": [
|
|
26420
|
+
"-created",
|
|
26421
|
+
"created",
|
|
26422
|
+
"-modified",
|
|
26423
|
+
"modified"
|
|
26424
|
+
]
|
|
26390
26425
|
}
|
|
26391
26426
|
}
|
|
26392
26427
|
},
|
|
@@ -26396,6 +26431,162 @@
|
|
|
26396
26431
|
"operationId": "listInvitations"
|
|
26397
26432
|
}
|
|
26398
26433
|
},
|
|
26434
|
+
{
|
|
26435
|
+
"name": "create_invitation",
|
|
26436
|
+
"description": "Create Invitation",
|
|
26437
|
+
"inputSchema": {
|
|
26438
|
+
"title": "CreateInvitationRequestBody",
|
|
26439
|
+
"type": "object",
|
|
26440
|
+
"required": [
|
|
26441
|
+
"data"
|
|
26442
|
+
],
|
|
26443
|
+
"properties": {
|
|
26444
|
+
"data": {
|
|
26445
|
+
"title": "CreateInvitationRequestBodyData",
|
|
26446
|
+
"type": "object",
|
|
26447
|
+
"required": [
|
|
26448
|
+
"type",
|
|
26449
|
+
"relationships"
|
|
26450
|
+
],
|
|
26451
|
+
"properties": {
|
|
26452
|
+
"type": {
|
|
26453
|
+
"type": "string",
|
|
26454
|
+
"enum": [
|
|
26455
|
+
"invitations"
|
|
26456
|
+
]
|
|
26457
|
+
},
|
|
26458
|
+
"attributes": {
|
|
26459
|
+
"title": "CreateInvitationRequestBodyAttributes",
|
|
26460
|
+
"type": "object",
|
|
26461
|
+
"properties": {
|
|
26462
|
+
"name": {
|
|
26463
|
+
"type": "string",
|
|
26464
|
+
"maxLength": 160
|
|
26465
|
+
},
|
|
26466
|
+
"status": {
|
|
26467
|
+
"type": "string",
|
|
26468
|
+
"enum": [
|
|
26469
|
+
"draft",
|
|
26470
|
+
"active"
|
|
26471
|
+
],
|
|
26472
|
+
"description": "draft (default) to compose first, active to send right away."
|
|
26473
|
+
},
|
|
26474
|
+
"channels": {
|
|
26475
|
+
"type": "array",
|
|
26476
|
+
"items": {
|
|
26477
|
+
"type": "string",
|
|
26478
|
+
"enum": [
|
|
26479
|
+
"email",
|
|
26480
|
+
"sms",
|
|
26481
|
+
"call"
|
|
26482
|
+
]
|
|
26483
|
+
}
|
|
26484
|
+
},
|
|
26485
|
+
"languageCode": {
|
|
26486
|
+
"type": "string"
|
|
26487
|
+
},
|
|
26488
|
+
"source": {
|
|
26489
|
+
"type": "string",
|
|
26490
|
+
"enum": [
|
|
26491
|
+
"sourcing",
|
|
26492
|
+
"manual"
|
|
26493
|
+
]
|
|
26494
|
+
}
|
|
26495
|
+
}
|
|
26496
|
+
},
|
|
26497
|
+
"relationships": {
|
|
26498
|
+
"title": "CreateInvitationRequestBodyRelationships",
|
|
26499
|
+
"type": "object",
|
|
26500
|
+
"required": [
|
|
26501
|
+
"job"
|
|
26502
|
+
],
|
|
26503
|
+
"properties": {
|
|
26504
|
+
"job": {
|
|
26505
|
+
"title": "InvitationRelationshipsJobSchema",
|
|
26506
|
+
"type": "object",
|
|
26507
|
+
"properties": {
|
|
26508
|
+
"data": {
|
|
26509
|
+
"title": "InvitationRelationshipsJobDataSchema",
|
|
26510
|
+
"type": "object",
|
|
26511
|
+
"properties": {
|
|
26512
|
+
"type": {
|
|
26513
|
+
"type": "string",
|
|
26514
|
+
"enum": [
|
|
26515
|
+
"jobs"
|
|
26516
|
+
]
|
|
26517
|
+
},
|
|
26518
|
+
"id": {
|
|
26519
|
+
"type": "string"
|
|
26520
|
+
}
|
|
26521
|
+
}
|
|
26522
|
+
}
|
|
26523
|
+
}
|
|
26524
|
+
},
|
|
26525
|
+
"task": {
|
|
26526
|
+
"title": "InvitationRelationshipsTaskSchema",
|
|
26527
|
+
"type": "object",
|
|
26528
|
+
"properties": {
|
|
26529
|
+
"data": {
|
|
26530
|
+
"title": "InvitationRelationshipsTaskDataSchema",
|
|
26531
|
+
"type": "object",
|
|
26532
|
+
"properties": {
|
|
26533
|
+
"type": {
|
|
26534
|
+
"type": "string",
|
|
26535
|
+
"enum": [
|
|
26536
|
+
"tasks"
|
|
26537
|
+
]
|
|
26538
|
+
},
|
|
26539
|
+
"id": {
|
|
26540
|
+
"type": "string"
|
|
26541
|
+
}
|
|
26542
|
+
}
|
|
26543
|
+
}
|
|
26544
|
+
}
|
|
26545
|
+
},
|
|
26546
|
+
"talents": {
|
|
26547
|
+
"title": "CreateInvitationRequestBodyTalents",
|
|
26548
|
+
"type": "object",
|
|
26549
|
+
"description": "The people to put on the list (identifiers, no meta).",
|
|
26550
|
+
"properties": {
|
|
26551
|
+
"data": {
|
|
26552
|
+
"type": "array",
|
|
26553
|
+
"items": {
|
|
26554
|
+
"title": "ResourceIdentifierSchema",
|
|
26555
|
+
"type": "object",
|
|
26556
|
+
"required": [
|
|
26557
|
+
"type",
|
|
26558
|
+
"id"
|
|
26559
|
+
],
|
|
26560
|
+
"properties": {
|
|
26561
|
+
"type": {
|
|
26562
|
+
"type": "string"
|
|
26563
|
+
},
|
|
26564
|
+
"id": {
|
|
26565
|
+
"type": "string",
|
|
26566
|
+
"pattern": "^[a-f0-9]{32}-[1-9]$"
|
|
26567
|
+
},
|
|
26568
|
+
"meta": {
|
|
26569
|
+
"title": "ResourceMetaSchema",
|
|
26570
|
+
"type": "object",
|
|
26571
|
+
"additionalProperties": true
|
|
26572
|
+
}
|
|
26573
|
+
}
|
|
26574
|
+
}
|
|
26575
|
+
}
|
|
26576
|
+
}
|
|
26577
|
+
}
|
|
26578
|
+
}
|
|
26579
|
+
}
|
|
26580
|
+
}
|
|
26581
|
+
}
|
|
26582
|
+
}
|
|
26583
|
+
},
|
|
26584
|
+
"_meta": {
|
|
26585
|
+
"method": "POST",
|
|
26586
|
+
"path": "/v1/invitations",
|
|
26587
|
+
"operationId": "createInvitation"
|
|
26588
|
+
}
|
|
26589
|
+
},
|
|
26399
26590
|
{
|
|
26400
26591
|
"name": "invitations_options",
|
|
26401
26592
|
"description": "CORS support",
|
|
@@ -26437,7 +26628,7 @@
|
|
|
26437
26628
|
"type": "object",
|
|
26438
26629
|
"required": [
|
|
26439
26630
|
"type",
|
|
26440
|
-
"
|
|
26631
|
+
"id"
|
|
26441
26632
|
],
|
|
26442
26633
|
"properties": {
|
|
26443
26634
|
"type": {
|
|
@@ -26446,18 +26637,87 @@
|
|
|
26446
26637
|
"invitations"
|
|
26447
26638
|
]
|
|
26448
26639
|
},
|
|
26640
|
+
"id": {
|
|
26641
|
+
"type": "string"
|
|
26642
|
+
},
|
|
26449
26643
|
"attributes": {
|
|
26450
26644
|
"title": "UpdateInvitationRequestBodyAttributes",
|
|
26451
26645
|
"type": "object",
|
|
26452
|
-
"required": [
|
|
26453
|
-
"status"
|
|
26454
|
-
],
|
|
26455
26646
|
"properties": {
|
|
26647
|
+
"name": {
|
|
26648
|
+
"type": "string",
|
|
26649
|
+
"maxLength": 160
|
|
26650
|
+
},
|
|
26456
26651
|
"status": {
|
|
26457
26652
|
"type": "string",
|
|
26458
26653
|
"enum": [
|
|
26459
|
-
"
|
|
26460
|
-
|
|
26654
|
+
"active",
|
|
26655
|
+
"closed"
|
|
26656
|
+
],
|
|
26657
|
+
"description": "active starts the sending (draft -> active); active on an already active list is a re-drive (\"send again\") - the people no run ever took (added, queued) and the ones whose claim lease ran out are handed to the send workflow again, a live claim and a failed person are left alone; closed ends it."
|
|
26658
|
+
},
|
|
26659
|
+
"channels": {
|
|
26660
|
+
"type": "array",
|
|
26661
|
+
"items": {
|
|
26662
|
+
"type": "string",
|
|
26663
|
+
"enum": [
|
|
26664
|
+
"email",
|
|
26665
|
+
"sms",
|
|
26666
|
+
"call"
|
|
26667
|
+
]
|
|
26668
|
+
}
|
|
26669
|
+
},
|
|
26670
|
+
"languageCode": {
|
|
26671
|
+
"type": "string"
|
|
26672
|
+
},
|
|
26673
|
+
"claimTalentIds": {
|
|
26674
|
+
"type": "array",
|
|
26675
|
+
"items": {
|
|
26676
|
+
"type": "string"
|
|
26677
|
+
},
|
|
26678
|
+
"description": "The send action's claim - each named person flips queued -> sending in its own conditional write (the invitation must be active in that same write); the response's `meta.claimed` lists the ids THIS call claimed (a second run of the same activation claims none). Not for the FE."
|
|
26679
|
+
},
|
|
26680
|
+
"claimOwner": {
|
|
26681
|
+
"type": "string",
|
|
26682
|
+
"description": "Who claims (the send action's run and step). A retry of the same run takes its own `sending` people back at once; anyone may take a `sending` person whose claim is older than the 5-minute lease (a run that never finished). Not for the FE."
|
|
26683
|
+
}
|
|
26684
|
+
}
|
|
26685
|
+
},
|
|
26686
|
+
"relationships": {
|
|
26687
|
+
"title": "UpdateInvitationRequestBodyRelationships",
|
|
26688
|
+
"type": "object",
|
|
26689
|
+
"properties": {
|
|
26690
|
+
"talents": {
|
|
26691
|
+
"title": "UpdateInvitationRequestBodyTalents",
|
|
26692
|
+
"type": "object",
|
|
26693
|
+
"description": "The FULL list of people wanted on the list; a contacted person cannot be left out (409).",
|
|
26694
|
+
"properties": {
|
|
26695
|
+
"data": {
|
|
26696
|
+
"type": "array",
|
|
26697
|
+
"items": {
|
|
26698
|
+
"title": "ResourceIdentifierSchema",
|
|
26699
|
+
"type": "object",
|
|
26700
|
+
"required": [
|
|
26701
|
+
"type",
|
|
26702
|
+
"id"
|
|
26703
|
+
],
|
|
26704
|
+
"properties": {
|
|
26705
|
+
"type": {
|
|
26706
|
+
"type": "string"
|
|
26707
|
+
},
|
|
26708
|
+
"id": {
|
|
26709
|
+
"type": "string",
|
|
26710
|
+
"pattern": "^[a-f0-9]{32}-[1-9]$"
|
|
26711
|
+
},
|
|
26712
|
+
"meta": {
|
|
26713
|
+
"title": "ResourceMetaSchema",
|
|
26714
|
+
"type": "object",
|
|
26715
|
+
"additionalProperties": true
|
|
26716
|
+
}
|
|
26717
|
+
}
|
|
26718
|
+
}
|
|
26719
|
+
}
|
|
26720
|
+
}
|
|
26461
26721
|
}
|
|
26462
26722
|
}
|
|
26463
26723
|
}
|
|
@@ -26471,6 +26731,19 @@
|
|
|
26471
26731
|
"operationId": "updateInvitation"
|
|
26472
26732
|
}
|
|
26473
26733
|
},
|
|
26734
|
+
{
|
|
26735
|
+
"name": "delete_invitation",
|
|
26736
|
+
"description": "Delete Invitation",
|
|
26737
|
+
"inputSchema": {
|
|
26738
|
+
"type": "object",
|
|
26739
|
+
"properties": {}
|
|
26740
|
+
},
|
|
26741
|
+
"_meta": {
|
|
26742
|
+
"method": "DELETE",
|
|
26743
|
+
"path": "/v1/invitations/{invitationId}",
|
|
26744
|
+
"operationId": "deleteInvitation"
|
|
26745
|
+
}
|
|
26746
|
+
},
|
|
26474
26747
|
{
|
|
26475
26748
|
"name": "invitation_options",
|
|
26476
26749
|
"description": "CORS support",
|
|
@@ -26484,6 +26757,32 @@
|
|
|
26484
26757
|
"operationId": "invitationOptions"
|
|
26485
26758
|
}
|
|
26486
26759
|
},
|
|
26760
|
+
{
|
|
26761
|
+
"name": "list_invitation_talents_relationship",
|
|
26762
|
+
"description": "List Invitation Talents Relationship",
|
|
26763
|
+
"inputSchema": {
|
|
26764
|
+
"type": "object",
|
|
26765
|
+
"properties": {}
|
|
26766
|
+
},
|
|
26767
|
+
"_meta": {
|
|
26768
|
+
"method": "GET",
|
|
26769
|
+
"path": "/v1/invitations/{invitationId}/relationships/talents",
|
|
26770
|
+
"operationId": "listInvitationTalentsRelationship"
|
|
26771
|
+
}
|
|
26772
|
+
},
|
|
26773
|
+
{
|
|
26774
|
+
"name": "invitation_talents_relationship_options",
|
|
26775
|
+
"description": "CORS support",
|
|
26776
|
+
"inputSchema": {
|
|
26777
|
+
"type": "object",
|
|
26778
|
+
"properties": {}
|
|
26779
|
+
},
|
|
26780
|
+
"_meta": {
|
|
26781
|
+
"method": "OPTIONS",
|
|
26782
|
+
"path": "/v1/invitations/{invitationId}/relationships/talents",
|
|
26783
|
+
"operationId": "invitationTalentsRelationshipOptions"
|
|
26784
|
+
}
|
|
26785
|
+
},
|
|
26487
26786
|
{
|
|
26488
26787
|
"name": "show_finder",
|
|
26489
26788
|
"description": "Show Finder",
|