@smartytalent/mcp-tools 0.1.33-dev.102 → 0.1.33-dev.104
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 +57 -14
- package/package.json +1 -1
package/dist/tools.json
CHANGED
|
@@ -9567,7 +9567,8 @@
|
|
|
9567
9567
|
"received",
|
|
9568
9568
|
"processing",
|
|
9569
9569
|
"processed",
|
|
9570
|
-
"failed"
|
|
9570
|
+
"failed",
|
|
9571
|
+
"waiting"
|
|
9571
9572
|
]
|
|
9572
9573
|
},
|
|
9573
9574
|
"language": {
|
|
@@ -9763,12 +9764,13 @@
|
|
|
9763
9764
|
"properties": {
|
|
9764
9765
|
"filterStatus": {
|
|
9765
9766
|
"type": "string",
|
|
9766
|
-
"description": "Returns submissions with the current status.",
|
|
9767
|
+
"description": "Returns submissions with the current status. `waiting` = parked until the target job activates (released by submission:release).",
|
|
9767
9768
|
"enum": [
|
|
9768
9769
|
"received",
|
|
9769
9770
|
"processing",
|
|
9770
9771
|
"processed",
|
|
9771
|
-
"failed"
|
|
9772
|
+
"failed",
|
|
9773
|
+
"waiting"
|
|
9772
9774
|
]
|
|
9773
9775
|
},
|
|
9774
9776
|
"filterEmail": {
|
|
@@ -10080,7 +10082,8 @@
|
|
|
10080
10082
|
"received",
|
|
10081
10083
|
"processing",
|
|
10082
10084
|
"processed",
|
|
10083
|
-
"failed"
|
|
10085
|
+
"failed",
|
|
10086
|
+
"waiting"
|
|
10084
10087
|
]
|
|
10085
10088
|
},
|
|
10086
10089
|
"language": {
|
|
@@ -18385,15 +18388,35 @@
|
|
|
18385
18388
|
"attributes": {
|
|
18386
18389
|
"title": "OperationAttributesSchema",
|
|
18387
18390
|
"type": "object",
|
|
18388
|
-
"required": [
|
|
18389
|
-
"name",
|
|
18390
|
-
"email"
|
|
18391
|
-
],
|
|
18392
18391
|
"properties": {
|
|
18393
18392
|
"name": {
|
|
18394
|
-
"type": "string"
|
|
18393
|
+
"type": "string",
|
|
18394
|
+
"description": "Required on create. Human-readable operation name."
|
|
18395
|
+
},
|
|
18396
|
+
"event": {
|
|
18397
|
+
"type": "string",
|
|
18398
|
+
"description": "Required on create. Colon-notation ATS event code (e.g. rcrt:event:candidate:created); the prefix derives source."
|
|
18399
|
+
},
|
|
18400
|
+
"eventDetails": {
|
|
18401
|
+
"type": "string",
|
|
18402
|
+
"description": "Required on create. JSON STRING (max 4096) carrying the per-event payload, e.g. {\"talent\":{\"shortCode\":\"123\"},\"job\":{\"shortCode\":\"456\"}}. Parsed to an object in the service:operation:created event copy."
|
|
18403
|
+
},
|
|
18404
|
+
"source": {
|
|
18405
|
+
"type": "string",
|
|
18406
|
+
"description": "Derived server-side from the event prefix (erecruiter, lever). Read-only."
|
|
18395
18407
|
},
|
|
18396
18408
|
"status": {
|
|
18409
|
+
"type": "string",
|
|
18410
|
+
"enum": [
|
|
18411
|
+
"active",
|
|
18412
|
+
"inactive",
|
|
18413
|
+
"pending",
|
|
18414
|
+
"hold",
|
|
18415
|
+
"archived",
|
|
18416
|
+
"failed"
|
|
18417
|
+
]
|
|
18418
|
+
},
|
|
18419
|
+
"parentOperationId": {
|
|
18397
18420
|
"type": "string"
|
|
18398
18421
|
},
|
|
18399
18422
|
"timestamps": {
|
|
@@ -18521,15 +18544,35 @@
|
|
|
18521
18544
|
"attributes": {
|
|
18522
18545
|
"title": "OperationAttributesSchema",
|
|
18523
18546
|
"type": "object",
|
|
18524
|
-
"required": [
|
|
18525
|
-
"name",
|
|
18526
|
-
"email"
|
|
18527
|
-
],
|
|
18528
18547
|
"properties": {
|
|
18529
18548
|
"name": {
|
|
18530
|
-
"type": "string"
|
|
18549
|
+
"type": "string",
|
|
18550
|
+
"description": "Required on create. Human-readable operation name."
|
|
18551
|
+
},
|
|
18552
|
+
"event": {
|
|
18553
|
+
"type": "string",
|
|
18554
|
+
"description": "Required on create. Colon-notation ATS event code (e.g. rcrt:event:candidate:created); the prefix derives source."
|
|
18555
|
+
},
|
|
18556
|
+
"eventDetails": {
|
|
18557
|
+
"type": "string",
|
|
18558
|
+
"description": "Required on create. JSON STRING (max 4096) carrying the per-event payload, e.g. {\"talent\":{\"shortCode\":\"123\"},\"job\":{\"shortCode\":\"456\"}}. Parsed to an object in the service:operation:created event copy."
|
|
18559
|
+
},
|
|
18560
|
+
"source": {
|
|
18561
|
+
"type": "string",
|
|
18562
|
+
"description": "Derived server-side from the event prefix (erecruiter, lever). Read-only."
|
|
18531
18563
|
},
|
|
18532
18564
|
"status": {
|
|
18565
|
+
"type": "string",
|
|
18566
|
+
"enum": [
|
|
18567
|
+
"active",
|
|
18568
|
+
"inactive",
|
|
18569
|
+
"pending",
|
|
18570
|
+
"hold",
|
|
18571
|
+
"archived",
|
|
18572
|
+
"failed"
|
|
18573
|
+
]
|
|
18574
|
+
},
|
|
18575
|
+
"parentOperationId": {
|
|
18533
18576
|
"type": "string"
|
|
18534
18577
|
},
|
|
18535
18578
|
"timestamps": {
|