@smartytalent/mcp-tools 0.1.26 → 0.1.28
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 +29 -20
- package/package.json +1 -1
package/dist/tools.json
CHANGED
|
@@ -13129,6 +13129,18 @@
|
|
|
13129
13129
|
"type": "string",
|
|
13130
13130
|
"description": "Filter by workflow name."
|
|
13131
13131
|
},
|
|
13132
|
+
"filterCategory": {
|
|
13133
|
+
"type": "string",
|
|
13134
|
+
"description": "Filter by category (sourcing, screening, assessment, onboarding, operational, general). Uses CategoryIndex GSI — efficient at scale.",
|
|
13135
|
+
"enum": [
|
|
13136
|
+
"sourcing",
|
|
13137
|
+
"screening",
|
|
13138
|
+
"assessment",
|
|
13139
|
+
"onboarding",
|
|
13140
|
+
"operational",
|
|
13141
|
+
"general"
|
|
13142
|
+
]
|
|
13143
|
+
},
|
|
13132
13144
|
"filterCreatedFrom": {
|
|
13133
13145
|
"type": "string",
|
|
13134
13146
|
"description": "Filters results to include only those created from the specified date and time. The value must be in ISO 8601 format."
|
|
@@ -13400,31 +13412,28 @@
|
|
|
13400
13412
|
"title": "RunRelationshipsSchema",
|
|
13401
13413
|
"type": "object",
|
|
13402
13414
|
"required": [
|
|
13403
|
-
"
|
|
13415
|
+
"workflow"
|
|
13404
13416
|
],
|
|
13405
13417
|
"properties": {
|
|
13406
|
-
"
|
|
13418
|
+
"workflow": {
|
|
13407
13419
|
"type": "object",
|
|
13408
13420
|
"properties": {
|
|
13409
13421
|
"data": {
|
|
13410
|
-
"type": "
|
|
13411
|
-
"
|
|
13412
|
-
"type"
|
|
13413
|
-
"
|
|
13414
|
-
|
|
13415
|
-
|
|
13416
|
-
|
|
13417
|
-
|
|
13418
|
-
"
|
|
13419
|
-
"
|
|
13420
|
-
|
|
13421
|
-
|
|
13422
|
-
|
|
13423
|
-
|
|
13424
|
-
"
|
|
13425
|
-
"type": "string",
|
|
13426
|
-
"description": "The workflow ID to run."
|
|
13427
|
-
}
|
|
13422
|
+
"type": "object",
|
|
13423
|
+
"required": [
|
|
13424
|
+
"type",
|
|
13425
|
+
"id"
|
|
13426
|
+
],
|
|
13427
|
+
"properties": {
|
|
13428
|
+
"type": {
|
|
13429
|
+
"type": "string",
|
|
13430
|
+
"enum": [
|
|
13431
|
+
"workflows"
|
|
13432
|
+
]
|
|
13433
|
+
},
|
|
13434
|
+
"id": {
|
|
13435
|
+
"type": "string",
|
|
13436
|
+
"description": "The workflow ID to run."
|
|
13428
13437
|
}
|
|
13429
13438
|
}
|
|
13430
13439
|
}
|